From 01eae7fec739a49c24feff886ffadd195f99ce9d Mon Sep 17 00:00:00 2001 From: a Date: Wed, 26 Feb 2025 21:56:30 -0600 Subject: [PATCH] commit --- .editorconfig | 10 + .gitattributes | 4 + .gitea/workflows/commit_tag.yml | 40 + .gitea/workflows/release_tag.yml | 42 + .gitignore | 16 + .yarnrc.yml | 1 + Dockerfile | 13 + README.md | 1 + barrelsby.json | 11 + cli | 2 + docker-compose.yaml | 9 + package.json | 39 + scratch/test.ts | 21 + src/activities/database.ts | 18 + src/activities/fullresult.json | 1 + src/activities/guild.ts | 95 + src/activities/index.ts | 7 + src/activities/players.ts | 119 + src/bot/common/guild.ts | 90 + src/bot/index.ts | 47 + src/botevent/index.ts | 77 + src/botevent/slash_commands.ts | 39 + src/botevent/types.ts | 11 + src/cmd/bot.ts | 28 + src/cmd/worker.ts | 133 ++ src/cmd/wynn.ts | 20 + src/config/index.ts | 21 + src/constants/index.ts | 3 + src/di/index.ts | 6 + src/lib/tabwriter.ts | 40 + src/lib/types.ts | 272 +++ src/lib/types.zod.ts | 299 +++ src/lib/wapi.ts | 26 + src/main.ts | 12 + src/mux/index.ts | 9 + src/services/pg/index.ts | 23 + src/services/pg/migrations.ts | 121 + src/services/temporal/index.ts | 22 + src/slashcommands/admin.ts | 20 + src/slashcommands/guild_overview.ts | 26 + src/slashcommands/index.ts | 6 + src/utils/index.ts | 14 + src/workflows/guilds.ts | 24 + src/workflows/index.ts | 6 + src/workflows/players.ts | 14 + tsconfig.json | 25 + yarn.lock | 3427 +++++++++++++++++++++++++++ 47 files changed, 5310 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitea/workflows/commit_tag.yml create mode 100644 .gitea/workflows/release_tag.yml create mode 100644 .gitignore create mode 100644 .yarnrc.yml create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 barrelsby.json create mode 100755 cli create mode 100644 docker-compose.yaml create mode 100644 package.json create mode 100644 scratch/test.ts create mode 100644 src/activities/database.ts create mode 100644 src/activities/fullresult.json create mode 100644 src/activities/guild.ts create mode 100644 src/activities/index.ts create mode 100644 src/activities/players.ts create mode 100644 src/bot/common/guild.ts create mode 100644 src/bot/index.ts create mode 100644 src/botevent/index.ts create mode 100644 src/botevent/slash_commands.ts create mode 100644 src/botevent/types.ts create mode 100644 src/cmd/bot.ts create mode 100644 src/cmd/worker.ts create mode 100644 src/cmd/wynn.ts create mode 100644 src/config/index.ts create mode 100644 src/constants/index.ts create mode 100644 src/di/index.ts create mode 100644 src/lib/tabwriter.ts create mode 100644 src/lib/types.ts create mode 100644 src/lib/types.zod.ts create mode 100644 src/lib/wapi.ts create mode 100644 src/main.ts create mode 100644 src/mux/index.ts create mode 100644 src/services/pg/index.ts create mode 100644 src/services/pg/migrations.ts create mode 100644 src/services/temporal/index.ts create mode 100644 src/slashcommands/admin.ts create mode 100644 src/slashcommands/guild_overview.ts create mode 100644 src/slashcommands/index.ts create mode 100644 src/utils/index.ts create mode 100644 src/workflows/guilds.ts create mode 100644 src/workflows/index.ts create mode 100644 src/workflows/players.ts create mode 100644 tsconfig.json create mode 100644 yarn.lock diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1ed453a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.{js,json,yml}] +charset = utf-8 +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..af3ad12 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.yarn/** linguist-vendored +/.yarn/releases/* binary +/.yarn/plugins/**/* binary +/.pnp.* binary linguist-generated diff --git a/.gitea/workflows/commit_tag.yml b/.gitea/workflows/commit_tag.yml new file mode 100644 index 0000000..5330abe --- /dev/null +++ b/.gitea/workflows/commit_tag.yml @@ -0,0 +1,40 @@ +name: commit-tag +on: + push +jobs: + commit-tag-image: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + env: + DOCKER_LATEST: nightly + RUNNER_TOOL_CACHE: /toolcache + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v3 + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + registry: https://tuxpa.in + username: actions_token + password: ${{ secrets.ACTIONS_TOKEN }} + - name: Get Meta + id: meta + run: | + echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT + echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT + + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + file: ./Dockerfile + platforms: | + linux/amd64 + linux/arm64 + push: true + tags: | + tuxpa.in/a/wynn:${{ steps.meta.outputs.REPO_VERSION }} + diff --git a/.gitea/workflows/release_tag.yml b/.gitea/workflows/release_tag.yml new file mode 100644 index 0000000..0537f04 --- /dev/null +++ b/.gitea/workflows/release_tag.yml @@ -0,0 +1,42 @@ +name: release-tag +on: + push: + tags: + - 'v*' +jobs: + release-image: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + env: + DOCKER_LATEST: nightly + RUNNER_TOOL_CACHE: /toolcache + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + registry: https://tuxpa.in + username: actions_token + password: ${{ secrets.ACTIONS_TOKEN }} + - name: Get Meta + id: meta + run: | + echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT + echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT + + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + file: ./Dockerfile + platforms: | + linux/amd64 + linux/arm64 + push: true + tags: | + tuxpa.in/a/wynn:${{ gitea.ref_name }} + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1084ce5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Swap the comments on the following lines if you wish to use zero-installs +# In that case, don't forget to run `yarn config set enableGlobalCache false`! +# Documentation here: https://yarnpkg.com/features/caching#zero-installs + +#!.yarn/cache +.pnp.* +node_modules/ + +.env diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..3186f3f --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dbe912c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:23 + +WORKDIR /app + +RUN npm i -g tsx + +COPY package.json yarn.lock .yarnrc.yml . + +RUN corepack yarn install + +COPY . . + +ENTRYPOINT ["/app/cli"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca98c3b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# wynn diff --git a/barrelsby.json b/barrelsby.json new file mode 100644 index 0000000..dbf0dcd --- /dev/null +++ b/barrelsby.json @@ -0,0 +1,11 @@ +{ + "delete": true, + "directory": [ + "./src/activities", + "./src/workflows", + "./src/slashcommands" + ], + "exclude": [ + "types.ts" + ] +} diff --git a/cli b/cli new file mode 100755 index 0000000..4b37258 --- /dev/null +++ b/cli @@ -0,0 +1,2 @@ +#!/usr/bin/env tsx +import "./src/main.ts"; diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..4081538 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,9 @@ +version: '3' +services: + db: + image: postgres + restart: always + environment: + POSTGRES_PASSWORD: postgres + ports: + - 54327:5432 diff --git a/package.json b/package.json new file mode 100644 index 0000000..29aca42 --- /dev/null +++ b/package.json @@ -0,0 +1,39 @@ +{ + "name": "backend", + "packageManager": "yarn@4.6.0", + "scripts": { + "barrels": "barrelsby -c barrelsby.json --delete" + }, + "devDependencies": { + "@types/object-hash": "^3", + "barrelsby": "^2.8.1", + "rollup": "^4.34.8", + "typescript": "5.7.3" + }, + "dependencies": { + "@needle-di/core": "^0.10.1", + "@temporalio/activity": "^1.11.7", + "@temporalio/client": "^1.11.7", + "@temporalio/common": "^1.11.7", + "@temporalio/worker": "^1.11.7", + "@temporalio/workflow": "^1.11.7", + "@types/node": "^22.13.4", + "any-date-parser": "^2.0.3", + "arktype": "2.0.4", + "axios": "^1.7.9", + "chrono-node": "^2.7.8", + "clipanion": "^4.0.0-rc.4", + "cloudevents": "^8.0.2", + "discordeno": "^21.0.0", + "dotenv": "^16.4.7", + "hash-wasm": "^4.12.0", + "json-stable-stringify": "^1.2.1", + "object-hash": "^3.0.0", + "postgres": "^3.4.5", + "ts-markdown-builder": "^0.4.0", + "why-is-node-running": "^3.2.2", + "znv": "^0.4.0", + "zod": "^3.24.1", + "zod-config": "^0.1.2" + } +} diff --git a/scratch/test.ts b/scratch/test.ts new file mode 100644 index 0000000..7fc2eb8 --- /dev/null +++ b/scratch/test.ts @@ -0,0 +1,21 @@ +import {ArkErrors, type} from "arktype"; + + +const tupleType = type(["number","string"]) +const tupleArrayType = tupleType.array() +const unionType = tupleType.or(tupleArrayType) + +// good +tupleType.assert([1,"2"]) +// good +tupleArrayType.assert([[1,"2"]]) + +// no good! +const resp = unionType([[1,"2"]]) +if(resp instanceof ArkErrors) { + const err = resp[0] + console.log(err.data) + console.log(err.problem) + console.log(err.message) + console.log(err.path) +} diff --git a/src/activities/database.ts b/src/activities/database.ts new file mode 100644 index 0000000..ff48512 --- /dev/null +++ b/src/activities/database.ts @@ -0,0 +1,18 @@ + +import { WApiV3ItemDatabase } from "#/lib/types"; +import { WApi } from "#/lib/wapi"; +import { ArkError, ArkErrors } from "arktype"; + +export async function update_wynn_items() { + const api = new WApi() + const ans = await api.get('/v3/item/database', {fullResult: ''}) + if(ans.status !== 200){ + throw new Error('Failed to get wynn items') + } + const parsed = WApiV3ItemDatabase(ans.data) + if(parsed instanceof ArkErrors){ + console.log(parsed[0].problem) + console.log(parsed[0].path) + console.log(parsed[0].data) + } +} diff --git a/src/activities/fullresult.json b/src/activities/fullresult.json new file mode 100644 index 0000000..340d1cc --- /dev/null +++ b/src/activities/fullresult.json @@ -0,0 +1 @@ +{"Dernic Grains 2":{"internalName":"Refined Dernic Grains 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainDernic"}},"tier":2},"Dernic Gem 3":{"internalName":"Refined Dernic Gem 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"74","name":"profession.gemDernic"}},"tier":3},"Dernic Paper 1":{"internalName":"Refined Dernic Paper 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDernic"}},"tier":1},"Dernic Gem 1":{"internalName":"Refined Dernic Gem 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"74","name":"profession.gemDernic"}},"tier":1},"Dernic String 3":{"internalName":"Refined Dernic String 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDernic"}},"tier":3},"Dernic Grains 3":{"internalName":"Refined Dernic Grains 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainDernic"}},"tier":3},"Dernic Wood 2":{"internalName":"Refined Dernic Wood 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ea9072622fbf8c6ff05c896968bd16bd903563836af682d3b544f0534c3da387"},"tier":2},"Dernic Grains 1":{"internalName":"Refined Dernic Grains 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainDernic"}},"tier":1},"Dernic Wood 1":{"internalName":"Refined Dernic Wood 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ea9072622fbf8c6ff05c896968bd16bd903563836af682d3b544f0534c3da387"},"tier":1},"Dernic Oil 2":{"internalName":"Refined Dernic Oil 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilDernic"}},"tier":2},"Dernic Paper 2":{"internalName":"Refined Dernic Paper 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDernic"}},"tier":2},"Dernic Oil 1":{"internalName":"Refined Dernic Oil 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilDernic"}},"tier":1},"Dernic Gem 2":{"internalName":"Refined Dernic Gem 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"74","name":"profession.gemDernic"}},"tier":2},"Dernic Oil 3":{"internalName":"Refined Dernic Oil 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilDernic"}},"tier":3},"Dernic Paper 3":{"internalName":"Refined Dernic Paper 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDernic"}},"tier":3},"Dernic Wood 3":{"internalName":"Refined Dernic Wood 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ea9072622fbf8c6ff05c896968bd16bd903563836af682d3b544f0534c3da387"},"tier":3},"Dernic Meat 1":{"internalName":"Refined Dernic Meat 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatDernic"}},"tier":1},"Dernic Ingot 2":{"internalName":"Refined Dernic Ingot 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"62","name":"profession.ingotDernic"}},"tier":2},"Dernic Ingot 1":{"internalName":"Refined Dernic Ingot 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"62","name":"profession.ingotDernic"}},"tier":1},"Dernic Meat 3":{"internalName":"Refined Dernic Meat 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatDernic"}},"tier":3},"Dernic Ingot 3":{"internalName":"Refined Dernic Ingot 3","type":"material","identified":true,"requirements":{"level":110},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"62","name":"profession.ingotDernic"}},"tier":3},"Dernic Meat 2":{"internalName":"Refined Dernic Meat 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatDernic"}},"tier":2},"Dernic String 1":{"internalName":"Refined Dernic String 1","type":"material","identified":true,"requirements":{"level":110},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDernic"}},"tier":1},"Dernic String 2":{"internalName":"Refined Dernic String 2","type":"material","identified":true,"requirements":{"level":110},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDernic"}},"tier":2},"Blunt Force":{"internalName":"Blunt Force","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":620,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"warrior","strength":65,"defence":45,"agility":45},"majorIds":{"Vitriol":"+Vitriol: Uncontainable Corruption decreases Corrupted duration by 75% and gives drastically more damage, but disables Enraged Blow. Massacre has no cooldown."},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.earth3"}},"identifications":{"mainAttackDamage":{"min":12,"raw":40,"max":52},"rawSpellDamage":{"min":-15600,"raw":-12000,"max":-8400},"criticalDamageBonus":{"min":-39,"raw":-30,"max":-21},"knockback":{"min":6,"raw":20,"max":26},"weakenEnemy":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":0,"raw":0,"max":10},"baseEarthDamage":{"min":50,"raw":50,"max":80},"baseFireDamage":{"min":60,"raw":60,"max":70},"baseAirDamage":{"min":40,"raw":40,"max":90}},"rarity":"fabled"},"Gathering Scythe T12":{"internalName":"Gathering Scythe 12","type":"tool","toolType":"scythe","gatheringSpeed":330,"identified":true,"requirements":{"level":105},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"65","name":"gatheringTool.scythe12"}},"rarity":"common"},"Gathering Axe T12":{"internalName":"Gathering Axe 12","type":"tool","toolType":"axe","gatheringSpeed":330,"identified":true,"requirements":{"level":105},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"50","name":"gatheringTool.axe12"}},"rarity":"common"},"Gathering Pickaxe T12":{"internalName":"Gathering Pickaxe 12","type":"tool","toolType":"pickaxe","gatheringSpeed":330,"identified":true,"requirements":{"level":105},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"55","name":"gatheringTool.pickaxe12"}},"rarity":"common"},"Gathering Rod T12":{"internalName":"Gathering Rod 12","type":"tool","toolType":"rod","gatheringSpeed":330,"identified":true,"requirements":{"level":105},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"60","name":"gatheringTool.rod12"}},"rarity":"common"},"Expelled Shrapnel":{"internalName":"Expelled Shrapnel","type":"ingredient","requirements":{"level":105,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawMainAttackDamage":{"min":35,"raw":35,"max":40},"rawHealth":{"min":-275,"raw":-275,"max":-250}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":8,"dexterityRequirement":8,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":8},"droppedBy":[{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]},{"name":"Void Hole?","coords":[1198,74,-1029,85]},{"name":"Leg Eater","coords":[1382,142,-1008,30]},{"name":"Tenebrous Alnamar","coords":[1196,135,-1120,40]}]},"Gruesome Carnassial":{"internalName":"Gruesome Carnassial","type":"ingredient","requirements":{"level":105,"skills":["jeweling"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawAgility":{"min":-3,"raw":-3,"max":-2},"rawHealth":{"min":-180,"raw":-180,"max":-165}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20},"droppedBy":[{"name":"§Fool Eater","coords":null}]},"Plane of Nonexistence":{"internalName":"Plane of Nonexistence","type":"ingredient","requirements":{"level":105,"skills":["scribing"]},"icon":{"format":"legacy","value":"160:15"},"identifications":{"earthDamage":{"min":15,"raw":15,"max":18},"thunderDamage":{"min":15,"raw":15,"max":18},"waterDamage":{"min":15,"raw":15,"max":18},"fireDamage":{"min":15,"raw":15,"max":18},"airDamage":{"min":15,"raw":15,"max":18}},"tier":3,"consumableOnlyIDs":{"duration":-325,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Void Hole?","coords":[1198,74,-1029,85]}]},"Depurinated Genome":{"internalName":"Depurinated Genome","type":"ingredient","requirements":{"level":105,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"441:0"},"identifications":{"rawStrength":{"min":-4,"raw":-4,"max":-4},"rawDexterity":{"min":-4,"raw":-4,"max":-4},"rawIntelligence":{"min":-4,"raw":-4,"max":-4},"rawDefence":{"min":-4,"raw":-4,"max":-4},"rawAgility":{"min":-4,"raw":-4,"max":-4},"spellDamage":{"min":22,"raw":22,"max":24},"mainAttackDamage":{"min":22,"raw":22,"max":24}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-162000,"strengthRequirement":-10,"dexterityRequirement":-10,"intelligenceRequirement":-10,"defenceRequirement":-10,"agilityRequirement":-10},"droppedBy":[{"name":"Refusal of Death","coords":null}]},"Subjoined Brain":{"internalName":"Subjoined Brain","type":"ingredient","requirements":{"level":105,"skills":["jeweling","cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"earthDamage":{"min":3,"raw":3,"max":4},"thunderDamage":{"min":2,"raw":2,"max":5},"waterDamage":{"min":2,"raw":2,"max":4},"fireDamage":{"min":-6,"raw":-6,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":-600,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-109000,"strengthRequirement":9,"dexterityRequirement":9,"intelligenceRequirement":9,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lesionary Warlock","coords":null},{"name":"Lesionary Sagittarii","coords":null}]},"Frenetic Heart":{"internalName":"Frenetic Heart","type":"ingredient","requirements":{"level":105,"skills":["alchemism","cooking"]},"icon":{"format":"skin","value":"de0df32d906a27a0586f347cae5281eb064b89f44239012be463a38c99275616"},"tier":3,"consumableOnlyIDs":{"duration":-330,"charges":2},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":50,"notTouching":-35},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Glow Bulb Seeds":{"internalName":"Glow Bulb Seeds","type":"ingredient","requirements":{"level":105,"skills":["tailoring","weaponsmithing"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"rawIntelligence":{"min":9,"raw":9,"max":10},"healthRegenRaw":{"min":110,"raw":110,"max":120},"mainAttackDamage":{"min":-12,"raw":-12,"max":-9}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":30,"agilityRequirement":0},"droppedBy":[{"name":"Void Soul Roamer","coords":[1196,135,-1120,40]},{"name":"Leg Eater","coords":[1382,142,-1008,30]},{"name":"Repurposed Host","coords":[1196,135,-1120,40]},{"name":"Crystal of Insanity","coords":[1382,142,-1008,30]},{"name":"Tenebrous Alnamar","coords":[1196,135,-1120,40]},{"name":"Reality Swimmer","coords":[1196,135,-1120,40]},{"name":"Cursed Shrieker","coords":[1175,101,-1053,6]},{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]},{"name":"§Fool Eater","coords":null}]},"Photophobic Kelp":{"internalName":"Photophobic Kelp","type":"ingredient","requirements":{"level":105,"skills":["jeweling"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":3},"rawDexterity":{"min":1,"raw":1,"max":3},"rawDefence":{"min":-2,"raw":-2,"max":-2},"rawAgility":{"min":-2,"raw":-2,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-108000,"strengthRequirement":12,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Blueshift Beacon":{"internalName":"Blueshift Beacon","type":"ingredient","requirements":{"level":105,"skills":["armouring","tailoring"]},"icon":{"format":"skin","value":"3fd996356b3571e94d32287f8f520f340174ec75214927519395b25e38fc67d8"},"identifications":{"rawHealth":{"min":-1600,"raw":-1600,"max":-1450},"damage":{"min":18,"raw":18,"max":18}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-179000,"strengthRequirement":38,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Portal Rift":{"internalName":"Portal Rift","type":"ingredient","requirements":{"level":105,"skills":["tailoring"]},"icon":{"format":"legacy","value":"95:15"},"identifications":{"rawAgility":{"min":8,"raw":8,"max":10},"manaSteal":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-108000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20},"droppedBy":[{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]}]},"Electromagnetic Shield Plating":{"internalName":"Electromagnetic Shield Plating","type":"ingredient","requirements":{"level":105,"skills":["tailoring"]},"icon":{"format":"legacy","value":"95:15"},"identifications":{"rawAgility":{"min":5,"raw":5,"max":6},"rawDefence":{"min":5,"raw":5,"max":6},"rawHealth":{"min":425,"raw":425,"max":475}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-156000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":25,"agilityRequirement":20}},"Malignant Nuclei":{"internalName":"Malignant Nuclei","type":"ingredient","requirements":{"level":105,"skills":["armouring"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"healingEfficiency":{"min":4,"raw":4,"max":4},"earthDamage":{"min":13,"raw":13,"max":16},"earthDefence":{"min":-15,"raw":-15,"max":-12}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":20,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Refusal of Death","coords":null},{"name":"Caustic Crystallite","coords":null},{"name":"Fermented Captive","coords":null},{"name":"Nucleated Observer","coords":null},{"name":"Molarcephale","coords":null},{"name":"Pulsatile Mass","coords":null},{"name":"Festering Titan","coords":null}]},"Inverted Grotesque":{"internalName":"Inverted Grotesque","type":"ingredient","requirements":{"level":105,"skills":["armouring"]},"icon":{"format":"legacy","value":"408:0"},"identifications":{"rawIntelligence":{"min":7,"raw":7,"max":8},"rawAgility":{"min":7,"raw":7,"max":7},"thorns":{"min":-15,"raw":-15,"max":-12},"rawHealth":{"min":-400,"raw":-400,"max":-300}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-162000,"strengthRequirement":-10,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":-10,"agilityRequirement":15}},"Gaze of Darkness":{"internalName":"Gaze of Darkness","type":"ingredient","requirements":{"level":105,"skills":["scribing"]},"icon":{"format":"skin","value":"387e4792ff6542dcab18f9f49f49333f13eb10394c448ac1453967862c8f38"},"identifications":{"gatherSpeed":{"min":6,"raw":6,"max":7},"lifeSteal":{"min":140,"raw":140,"max":160},"healthRegenRaw":{"min":90,"raw":90,"max":110}},"tier":3,"consumableOnlyIDs":{"duration":-300,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Blinders","coords":[837,80,-540,100]},{"name":"Face of Fear","coords":[837,80,-540,100]},{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]},{"name":"§Fool Eater","coords":null}]},"Solid Ultraviolet Ray":{"internalName":"Solid Ultraviolet Ray","type":"ingredient","requirements":{"level":105,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"245:0"},"identifications":{"healthRegenRaw":{"min":90,"raw":90,"max":100},"manaRegen":{"min":8,"raw":8,"max":10},"rawIntelligence":{"min":5,"raw":5,"max":5},"rawDefence":{"min":5,"raw":5,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-175000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":30,"defenceRequirement":30,"agilityRequirement":0}},"Disturbed Dye":{"internalName":"Disturbed Dye","type":"ingredient","requirements":{"level":105,"skills":["armouring"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"rawSpellDamage":{"min":100,"raw":100,"max":105}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-50,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-144000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":35,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lost Eye","coords":null}]},"Unsettling Void":{"internalName":"Unsettling Void","type":"ingredient","requirements":{"level":105,"skills":["tailoring","weaponsmithing"]},"icon":{"format":"skin","value":"7451d0b290dae3bc232adcb102bf66b36f52d5c370ee0238fda84e7274bad786"},"identifications":{"rawSpellDamage":{"min":-55,"raw":-55,"max":-50},"manaRegen":{"min":-9,"raw":-9,"max":-7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-150,"right":-150,"above":0,"under":0,"touching":-50,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":-25,"defenceRequirement":0,"agilityRequirement":0}},"Vortexian Event Horizon":{"internalName":"Vortexian Event Horizon","type":"ingredient","requirements":{"level":105,"skills":["jeweling"]},"icon":{"format":"skin","value":"9ddebbb062f6a385a91ca05f18f5c0acbe33e2d06ee9e7416cef6ee43dfe2fb"},"identifications":{"rawAttackSpeed":{"min":1,"raw":1,"max":1},"mainAttackDamage":{"min":-24,"raw":-24,"max":-24}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-180000,"strengthRequirement":40,"dexterityRequirement":40,"intelligenceRequirement":40,"defenceRequirement":40,"agilityRequirement":40},"droppedBy":[{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]}]},"Rigid Fin":{"internalName":"Rigid Fin","type":"ingredient","requirements":{"level":105,"skills":["cooking"]},"icon":{"format":"legacy","value":"168:2"},"identifications":{"sprintRegen":{"min":4,"raw":4,"max":6},"waterDamage":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":-600,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Reality Swimmer","coords":[1196,135,-1120,40]},{"name":"§Fool Eater","coords":null}]},"Shrieker's Head":{"internalName":"Shrieker's Head","type":"ingredient","requirements":{"level":105,"skills":["armouring"]},"icon":{"format":"skin","value":"abb7c6961d7b94d84d04f641c4c08302096bc1f2d0cdb87b10700a910c047b29"},"identifications":{"rawIntelligence":{"min":-9,"raw":-9,"max":-7},"walkSpeed":{"min":-7,"raw":-7,"max":-5},"rawHealth":{"min":1100,"raw":1100,"max":1150}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-108000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":-12,"defenceRequirement":16,"agilityRequirement":0},"droppedBy":[{"name":"Cursed Shrieker","coords":[1175,101,-1053,6]},{"name":"§Fool Eater","coords":null}]},"Dizzying Void":{"internalName":"Dizzying Void","type":"ingredient","requirements":{"level":105,"skills":["armouring","woodworking"]},"icon":{"format":"skin","value":"6954a9d4f4553ef811daf3f676f916aa89c63fc25f77165775af8d99163a8249"},"identifications":{"rawHealth":{"min":-1350,"raw":-1350,"max":-1150}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":115,"under":115,"touching":-115,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-175000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-25,"agilityRequirement":0}},"Negative Rafflesia":{"internalName":"Negative Rafflesia","type":"ingredient","requirements":{"level":105,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"200:0"},"identifications":{"rawHealth":{"min":-650,"raw":-650,"max":-575},"rawNeutralDamage":{"min":-40,"raw":-40,"max":-40}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-160,"right":140,"above":0,"under":0,"touching":15,"notTouching":-15},"itemOnlyIDs":{"durabilityModifier":-154000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-10,"agilityRequirement":0}},"Coalescence":{"internalName":"Coalescence","type":"ingredient","requirements":{"level":105,"skills":["alchemism"]},"icon":{"format":"skin","value":"9c77a296f678733218c1b9ed9bc6aacf84150b81369d9fe15e37b32946f8512a"},"tier":3,"consumableOnlyIDs":{"duration":-350,"charges":0},"ingredientPositionModifiers":{"left":-160,"right":-160,"above":80,"under":80,"touching":-80,"notTouching":-80},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Panic Zealot","coords":null}]},"Dernic Sludgebomb":{"internalName":"Dernic Sludgebomb","type":"ingredient","requirements":{"level":105,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"245:0"},"identifications":{"manaRegen":{"min":-3,"raw":-3,"max":-3},"poison":{"min":3000,"raw":3000,"max":3000},"lifeSteal":{"min":140,"raw":140,"max":150}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-120000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Nuclear Emesis":{"internalName":"Nuclear Emesis","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":105,"strength":60,"defence":50},"majorIds":{"Napalm":"+Napalm: Fire Creep increases Arrow Bomb damage and self-damage but reduces velocity. Scorched Earth damage and radius are increased."},"powderSlots":3,"identifications":{"rawStrength":5,"rawDefence":5,"healthRegenRaw":{"min":-325,"raw":-250,"max":-175},"poison":{"min":3300,"raw":11000,"max":14300},"raw3rdSpellCost":{"min":-1,"raw":-2,"max":-3},"earthDamage":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":4500,"baseEarthDefence":175,"baseThunderDefence":-200,"baseFireDefence":175},"rarity":"fabled"},"Watchman's Vendetta":{"internalName":"Watchman's Vendetta","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":772,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"archer","dexterity":75,"intelligence":55},"majorIds":{"Vedette":"+Vedette: Focus is stronger, and caps at 2. Crepuscular Ray can be cast at 2 Focus with decreased Focus drain, launching you into the air and immobilizing you."},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":15,"lifeSteal":{"min":208,"raw":692,"max":900},"exploding":{"min":14,"raw":46,"max":60},"weakenEnemy":{"min":3,"raw":11,"max":14},"waterSpellDamage":{"min":15,"raw":50,"max":65},"airDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseDamage":{"min":50,"raw":50,"max":100},"baseThunderDamage":{"min":110,"raw":110,"max":290},"baseWaterDamage":{"min":70,"raw":70,"max":130}},"rarity":"fabled"},"Adherence":{"internalName":"Adherence","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":105,"intelligence":65,"defence":65,"agility":65},"powderSlots":2,"lore":"Adherence to the laws of good is important- it’s why one fights the spread of corruption, after all. Though whether to follow the spirit or the letter… perhaps they too can be bent to your will.","identifications":{"rawSpellDamage":{"min":65,"raw":215,"max":280},"healthRegen":{"min":15,"raw":50,"max":65},"healingEfficiency":{"min":3,"raw":10,"max":13},"manaRegen":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":8,"raw":27,"max":35}},"base":{"baseEarthDefence":150,"baseThunderDefence":150,"baseWaterDefence":150,"baseFireDefence":150,"baseAirDefence":150},"rarity":"legendary"},"Detachment":{"internalName":"Detachment","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":105,"dexterity":55,"agility":60},"lore":"An anomaly of separation, for the wanderers who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawMainAttackDamage":{"min":-110,"raw":-85,"max":-59},"rawSpellDamage":{"min":-104,"raw":-80,"max":-56},"4thSpellCost":{"min":-5,"raw":-16,"max":-21},"walkSpeed":{"min":4,"raw":13,"max":17}},"base":{"baseThunderDefence":60,"baseAirDefence":60},"rarity":"fabled"},"Thought Energy":{"internalName":"Thought Energy","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":105,"dexterity":45,"intelligence":45,"agility":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawStrength":-15,"rawMainAttackDamage":{"min":-227,"raw":-175,"max":-122},"spellDamage":{"min":5,"raw":16,"max":21},"manaRegen":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-26,"raw":-20,"max":-14},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":-785,"baseEarthDefence":-75},"rarity":"legendary"},"Breakthrough":{"internalName":"Breakthrough","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":105,"intelligence":45,"agility":45},"lore":"An anomaly of destruction, for the conquerors who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawStrength":-3,"rawDexterity":-3,"rawDefence":-5,"spellDamage":{"min":4,"raw":12,"max":16},"rawSpellDamage":{"min":20,"raw":65,"max":85},"manaSteal":{"min":1,"raw":4,"max":5},"raw2ndSpellCost":{"min":-1,"raw":-4,"max":-5}},"base":{"baseEarthDefence":-45,"baseThunderDefence":-45,"baseFireDefence":-30},"rarity":"fabled"},"Infinitesimal":{"internalName":"Infinitesimal","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":654,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"assassin","defence":70},"powderSlots":1,"lore":"For when one needs to carve the smallest stone or pick the smallest lock, the subtleties of precision approach impossibility.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":11,"mainAttackDamage":{"min":-14,"raw":-11,"max":-8},"rawSpellDamage":{"min":45,"raw":151,"max":196},"manaSteal":{"min":3,"raw":11,"max":14},"fireDamage":{"min":3,"raw":11,"max":14},"earthDefence":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":51,"raw":51,"max":101},"baseFireDamage":{"min":51,"raw":51,"max":101}},"rarity":"set"},"Fool's Errand":{"internalName":"Fool's Errand","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":105,"strength":40,"dexterity":45,"intelligence":40,"agility":45},"majorIds":{"Pounce":"+Pounce: Escape becomes a forward lunge."},"identifications":{"rawDefence":-50,"healthRegenRaw":{"min":-305,"raw":-235,"max":-164},"lifeSteal":{"min":112,"raw":373,"max":485},"rawDamage":{"min":69,"raw":231,"max":300},"2ndSpellCost":{"min":-10,"raw":-35,"max":-45},"jumpHeight":{"min":1,"raw":3,"max":4},"elementalDefence":{"min":-186,"raw":-143,"max":-100}},"base":{"baseHealth":2800,"baseEarthDefence":100,"baseThunderDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"fabled"},"Inconceivably Deranged Paper Mask of Legendary Victory":{"internalName":"Inconceivably Deranged Paper Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"lore":"This cheap paper mask drawn in the likeness of Herbert von Legendary as he was having a complete nervous breakdown after having his life threatened by people who would not stop challenging him, is handed over in the ill-conceived hope of easing the murderous tendencies of those who have spent unnecessary amounts of time, broken the mold, gone even further beyond, pushed onward to prove that they will not stop, ultimately garnered an unhealthy obsession, and then came to blows in Doctor Legendary's house demanding further prizes all for the singularly unsettling and quite possibly sociopathic purpose of spending unnecessary amounts of time completing the Legendary Challenge. The inside has the names and addresses of multiple notable psychoanalysts written with a hastily-scrawled note from Doctor Legendary himself begging that you stop completing the Legendary Challenge and go get therapy before you do something to him that would constitute legal action against you.","icon":{"format":"skin","value":"8883ef0dd8855c83874046a5f569f98b9666d7b0410caf3c93b6d3b3fff27352"},"rarity":"legendary"},"Continuum":{"internalName":"Continuum","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":374,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"mage","strength":70},"powderSlots":2,"lore":"From nothing to everything, forever past to forever more, the vastness of eternity is obscured by the sameness of tomorrow.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":15,"mainAttackDamage":{"min":14,"raw":45,"max":59},"spellDamage":{"min":14,"raw":45,"max":59},"manaRegen":{"min":-18,"raw":-14,"max":-10},"walkSpeed":{"min":-18,"raw":-14,"max":-10},"fireDefence":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":0,"raw":0,"max":100},"baseEarthDamage":{"min":100,"raw":100,"max":700}},"rarity":"set"},"Ingress":{"internalName":"Ingress","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":105,"strength":55,"agility":55},"lore":"An anomaly of invasion, for the explorers who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawDexterity":3,"rawIntelligence":2,"rawDefence":3,"rawSpellDamage":{"min":12,"raw":40,"max":52},"earthDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDefence":55,"baseAirDefence":55},"rarity":"fabled"},"Simulacrum":{"internalName":"Simulacrum","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":105,"strength":55,"defence":45},"lore":"An anomaly of replication, for the assemblers who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawSpellDamage":{"min":45,"raw":150,"max":195},"healthRegenRaw":{"min":-195,"raw":-150,"max":-105},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":-800,"baseEarthDefence":-70,"baseFireDefence":-90},"rarity":"fabled"},"Forbearance":{"internalName":"Forbearance","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":105,"dexterity":60,"intelligence":60},"lore":"An anomaly of restriction, for the protectors who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"rawIntelligence":4,"lifeSteal":{"min":36,"raw":120,"max":156},"manaRegen":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":-16,"raw":-12,"max":-8},"waterDamage":{"min":-16,"raw":-12,"max":-8}},"rarity":"fabled"},"Null Plating":{"internalName":"Null Plating","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":105},"identifications":{"rawIntelligence":-20,"neutralDamage":{"min":10,"raw":32,"max":42},"rawNeutralDamage":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":8,"raw":25,"max":33},"elementalDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":3500,"baseEarthDefence":125,"baseThunderDefence":125,"baseWaterDefence":125,"baseFireDefence":125,"baseAirDefence":125},"rarity":"rare"},"Recursion":{"internalName":"Recursion","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":700,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"archer","defence":70},"powderSlots":3,"lore":"To call an end a new beginning implies there ever was a beginning, or ever will be an end.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"manaRegen":{"min":5,"raw":17,"max":22},"raw2ndSpellCost":{"min":13,"raw":10,"max":7},"fireDamage":{"min":7,"raw":22,"max":29},"fireDefence":{"min":13,"raw":44,"max":57}},"base":{"baseDamage":{"min":140,"raw":140,"max":140},"baseFireDamage":{"min":140,"raw":140,"max":140}},"rarity":"set"},"Aleph Null":{"internalName":"Aleph Null","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":105,"dexterity":30,"intelligence":60},"powderSlots":1,"lore":"It's a strange feeling, running forever to reach the horizon knowing another lies just as far past.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"identifications":{"rawStrength":5,"rawDefence":5,"rawAgility":5,"rawMainAttackDamage":{"min":75,"raw":250,"max":325},"rawSpellDamage":{"min":60,"raw":200,"max":260},"healthRegen":{"min":8,"raw":25,"max":33},"elementalDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2000,"baseEarthDefence":-150,"baseFireDefence":-150,"baseAirDefence":-150},"rarity":"set"},"Divergence":{"internalName":"Divergence","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":443,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"warrior","strength":70},"powderSlots":3,"lore":"Strangers held together by shared past, entwined in a fray, never to unite again.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawMainAttackDamage":{"min":38,"raw":125,"max":163},"2ndSpellCost":{"min":-4,"raw":-15,"max":-19},"rawAttackSpeed":1,"earthDamage":{"min":6,"raw":20,"max":26},"airDefence":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":0,"raw":0,"max":30},"baseEarthDamage":{"min":0,"raw":0,"max":400}},"rarity":"set"},"Nonexistence":{"internalName":"Nonexistence","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":105,"dexterity":60,"intelligence":30},"powderSlots":4,"lore":"What lies beneath the brim of all that never was, that overflowing vastness which cannot spill?","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":69,"raw":231,"max":300},"manaSteal":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":4000,"baseThunderDefence":200,"baseWaterDefence":200},"rarity":"set"},"Fractal":{"internalName":"Fractal","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":720,"dropRestriction":"never","requirements":{"level":105,"classRequirement":"shaman","agility":70},"powderSlots":4,"lore":"Curious, isn't it, that unending complexity can feel so plain in one's hand, yet pull deeper than eyes can see and minds can fathom?","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":1,"raw":4,"max":5},"manaSteal":{"min":1,"raw":2,"max":3},"walkSpeed":{"min":10,"raw":32,"max":42},"jumpHeight":1,"airDamage":{"min":5,"raw":16,"max":21},"airDefence":{"min":19,"raw":64,"max":83}},"base":{"baseDamage":{"min":32,"raw":32,"max":32},"baseAirDamage":{"min":256,"raw":256,"max":256}},"rarity":"set"},"Collection":{"internalName":"Exhibition","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":105,"intelligence":50,"defence":60},"lore":"An anomaly of adoption, for the caretakers who seek purpose outside of reality.","dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"healthRegenRaw":{"min":-136,"raw":-105,"max":-73},"lifeSteal":{"min":-195,"raw":-150,"max":-105},"manaRegen":{"min":2,"raw":5,"max":7},"manaSteal":{"min":2,"raw":5,"max":7},"raw3rdSpellCost":-1},"base":{"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":-60,"baseFireDefence":-60,"baseAirDefence":30},"rarity":"fabled"},"Charm of the Void":{"internalName":"Charm of the Void","type":"charm","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105,"levelRange":{"max":110,"min":100}},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"sprint":{"min":16,"raw":20,"max":23},"sprintRegen":{"min":16,"raw":20,"max":23}},"base":{"damageFromMobs":{"min":4,"raw":12,"max":16}},"rarity":"fabled"},"Tome of Parrying Expertise III":{"internalName":"Tome of Parrying Expertise III","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"reflection":{"min":4,"raw":12,"max":16}},"rarity":"fabled"},"Tome of Triage Expertise III":{"internalName":"Tome of Triage Expertise III","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13}},"rarity":"fabled"},"Tome of Countering Expertise III":{"internalName":"Tome of Countering Expertise III","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"thorns":{"min":4,"raw":12,"max":16}},"rarity":"fabled"},"Tome of Scavenging Expertise III":{"internalName":"Tome of Scavenging Expertise III","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"stealing":{"min":1,"raw":4,"max":5}},"rarity":"fabled"},"Tome of Remedial Expertise III":{"internalName":"Tome of Remedial Expertise III","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"healingEfficiency":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Fighter's Tome of Combat Mastery III":{"internalName":"Fighter's Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Cyclonic Tome of Combat Mastery III":{"internalName":"Cyclonic Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Infernal Tome of Combat Mastery III":{"internalName":"Infernal Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5},"fireDamage":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Sorcerer's Tome of Combat Mastery III":{"internalName":"Sorcerer's Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Abyssal Tome of Combat Mastery III":{"internalName":"Abyssal Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5},"waterDamage":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Seismic Tome of Combat Mastery III":{"internalName":"Seismic Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5},"earthDamage":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Esoteric Tome of Combat Mastery III":{"internalName":"Esoteric Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawSpellDamage":{"min":17,"raw":56,"max":73}},"rarity":"fabled"},"Nimble Tome of Combat Mastery III":{"internalName":"Nimble Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawMainAttackDamage":{"min":22,"raw":73,"max":95}},"rarity":"fabled"},"Voltaic Tome of Combat Mastery III":{"internalName":"Voltaic Tome of Combat Mastery III","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":105},"dropMeta":{"name":"The Nameless Anomaly","type":"raid","coordinates":[1193,64,-947]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":2,"raw":7,"max":9}},"rarity":"mythic"},"Psych Starfruit":{"internalName":"Psych Starfruit","type":"ingredient","requirements":{"level":105,"skills":["cooking"]},"icon":{"format":"skin","value":"378f2c31e1d7946a342ee5f816b7841359d80031fc02b1ab1cc1fbaffd6b006c"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":3},"rawDexterity":{"min":2,"raw":2,"max":3},"rawIntelligence":{"min":2,"raw":2,"max":3},"rawDefence":{"min":2,"raw":2,"max":3},"rawAgility":{"min":2,"raw":2,"max":3},"earthDamage":{"min":5,"raw":5,"max":6},"thunderDamage":{"min":4,"raw":4,"max":7},"waterDamage":{"min":5,"raw":5,"max":6},"fireDamage":{"min":4,"raw":4,"max":5},"airDamage":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":-550,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Umami":{"internalName":"Umami","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":104,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"lore":"Rumors circulate of a once-cook from Lutho who managed to achieve the perfect meal. In their final days, they preserved its essence in this necklace, in a hope that someone else would be able to share the experience they had.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"elementalDamage":{"min":2,"raw":7,"max":9},"rawMaxMana":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":3,"raw":9,"max":12}},"rarity":"legendary"},"Albatross":{"internalName":"Albatross","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":104,"dexterity":50,"defence":50},"lore":"And lo, a single bolt did fly, ensured the bird's grace ever lost, and pierced its wings out from the sky, the day you shot the albatross.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawElementalMainAttackDamage":{"min":195,"raw":650,"max":845},"lifeSteal":{"min":53,"raw":175,"max":228},"raw2ndSpellCost":{"min":10,"raw":8,"max":6},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":750,"baseWaterDefence":-100},"rarity":"legendary"},"Ad Terram":{"internalName":"Ad Terram","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":104,"strength":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":4,"earthMainAttackDamage":{"min":8,"raw":25,"max":33},"rawThunderDamage":{"min":-97,"raw":-75,"max":-52},"rawAirDamage":{"min":-97,"raw":-75,"max":-52},"rawAttackSpeed":{"min":-10,"raw":-8,"max":-6},"mainAttackRange":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-500,"baseEarthDefence":75,"baseThunderDefence":-50,"baseAirDefence":-50},"rarity":"rare"},"Giant Teratoma":{"internalName":"Giant Teratoma","type":"ingredient","requirements":{"level":104,"skills":["tailoring","cooking"]},"icon":{"format":"skin","value":"26de58d583c103c1cd34824380c8a477e898fde2eb9a74e71f1a985053b96"},"identifications":{"rawMainAttackDamage":{"min":115,"raw":115,"max":135},"rawHealth":{"min":-105,"raw":-105,"max":-90},"healthRegen":{"min":-7,"raw":-7,"max":-8}},"tier":2,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":22,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Refusal of Death","coords":null}]},"Dense Void Hole Chunk":{"internalName":"Dense Void Hole Chunk","type":"ingredient","requirements":{"level":104,"skills":["jeweling"]},"icon":{"format":"legacy","value":"251:15"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":5},"walkSpeed":{"min":-5,"raw":-5,"max":-5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":15,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Void Hole?","coords":[1198,74,-1029,85]}]},"Dernic Parasite":{"internalName":"Dernic Parasite","type":"ingredient","requirements":{"level":104,"skills":["cooking"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":4},"gatherSpeed":{"min":-4,"raw":-4,"max":-3},"manaSteal":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":-590,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Blinders","coords":[837,80,-540,100]},{"name":"Face of Fear","coords":[837,80,-540,100]},{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]},{"name":"§Fool Eater","coords":null}]},"Sentient Leukocyte":{"internalName":"Sentient Leukocyte","type":"ingredient","requirements":{"level":104,"skills":["tailoring"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"healingEfficiency":{"min":5,"raw":5,"max":5},"walkSpeed":{"min":-4,"raw":-4,"max":-3},"reflection":{"min":5,"raw":5,"max":6},"thorns":{"min":5,"raw":5,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-151000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":18,"defenceRequirement":18,"agilityRequirement":0},"droppedBy":[{"name":"Leukocytic Growth","coords":[[983,41,-442,11],[981,38,-416,5],[938,41,-469,5],[1044,37,-463,5],[1041,40,-409,15],[1041,40,-409,15],[939,39,-524,15],[939,39,-524,15],[1044,39,-512,15],[1044,39,-512,15]]}]},"Retinal Barbs":{"internalName":"Retinal Barbs","type":"ingredient","requirements":{"level":104,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"thorns":{"min":15,"raw":15,"max":20},"rawDefence":{"min":10,"raw":10,"max":13}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-107000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":16,"agilityRequirement":0},"droppedBy":[{"name":"Face of Fear","coords":[837,80,-540,100]}]},"Vim Veins":{"internalName":"Vim Veins","type":"ingredient","requirements":{"level":104,"skills":["scribing","jeweling"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"rawHealth":{"min":175,"raw":175,"max":200},"rawDefence":{"min":2,"raw":2,"max":3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-20,"agilityRequirement":0},"droppedBy":[{"name":"Face of Fear","coords":[837,80,-540,100]},{"name":"Blinders","coords":[837,80,-540,100]}]},"Migratory Coconut":{"internalName":"Migratory Coconut","type":"ingredient","requirements":{"level":104,"skills":["cooking"]},"icon":{"format":"skin","value":"596db72263449cde22f9060fa6bb69299c32d5f4dacbaf74e2eba4216d2dd260"},"identifications":{"earthDefence":{"min":10,"raw":10,"max":12},"thunderDefence":{"min":10,"raw":10,"max":12},"waterDefence":{"min":10,"raw":10,"max":12},"fireDefence":{"min":10,"raw":10,"max":12},"airDefence":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":380,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Neon Seawater":{"internalName":"Neon Seawater","type":"ingredient","requirements":{"level":104,"skills":["alchemism"]},"icon":{"format":"legacy","value":"326:0"},"identifications":{"lifeSteal":{"min":-80,"raw":-80,"max":-65},"rawMainAttackDamage":{"min":110,"raw":110,"max":135}},"tier":1,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Cavitated Bone":{"internalName":"Cavitated Bone","type":"ingredient","requirements":{"level":104,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"exploding":{"min":7,"raw":7,"max":8},"rawDexterity":{"min":-8,"raw":-8,"max":-5},"rawStrength":{"min":-7,"raw":-7,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-107000,"strengthRequirement":-15,"dexterityRequirement":-15,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fermented Captive","coords":null},{"name":"Refusal of Death","coords":null},{"name":"Molarcephale","coords":null}]},"Infected Mass":{"internalName":"Infected Mass","type":"ingredient","requirements":{"level":104,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"351:5"},"tier":2,"consumableOnlyIDs":{"duration":200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":-25,"under":-25,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Repurposed Host","coords":[1196,135,-1120,40]}]},"Acidulous Plating":{"internalName":"Acidulous Plating","type":"ingredient","requirements":{"level":104,"skills":["armouring"]},"icon":{"format":"legacy","value":"148:0"},"identifications":{"rawDefence":{"min":6,"raw":6,"max":7},"healthRegenRaw":{"min":-50,"raw":-50,"max":-40},"manaRegen":{"min":6,"raw":6,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-112000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":18,"agilityRequirement":0},"droppedBy":[{"name":"Festering Titan","coords":null},{"name":"Refusal of Death","coords":null},{"name":"Caustic Crystallite","coords":null}]},"Eyes Yet Open":{"internalName":"Eyes Yet Open","type":"ingredient","requirements":{"level":104,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"a4198b776aa791502775feb0e8b9e355ee4ccca01f86f7b7bec4fdf996abc9cf"},"identifications":{"lootBonus":{"min":8,"raw":8,"max":9},"lootQuality":{"min":1,"raw":1,"max":2},"rawHealth":{"min":-430,"raw":-430,"max":-375}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-126000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pulsatile Mass","coords":null},{"name":"Refusal of Death","coords":null},{"name":"Nucleated Observer","coords":null}]},"Dernic Hydroid":{"internalName":"Dernic Hydroid","type":"ingredient","requirements":{"level":104,"skills":["woodworking"]},"icon":{"format":"legacy","value":"280:0"},"identifications":{"manaRegen":{"min":-6,"raw":-6,"max":-5},"waterDamage":{"min":8,"raw":8,"max":10},"rawWaterSpellDamage":{"min":45,"raw":45,"max":55}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-109000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":25,"defenceRequirement":0,"agilityRequirement":0}},"Rejected Geode":{"internalName":"Rejected Geode","type":"ingredient","requirements":{"level":104,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"121:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":5},"rawHealth":{"min":845,"raw":845,"max":903},"healthRegenRaw":{"min":-75,"raw":-75,"max":-60}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":14,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":25,"agilityRequirement":0}},"Ultramarine Minnow":{"internalName":"Ultramarine Minnow","type":"ingredient","requirements":{"level":104,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"349:2"},"identifications":{"waterDamage":{"min":16,"raw":16,"max":19},"healingEfficiency":{"min":-4,"raw":-4,"max":-3}},"tier":2,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Extremophile Pelt":{"internalName":"Extremophile Pelt","type":"ingredient","requirements":{"level":104,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"elementalDamage":{"min":11,"raw":11,"max":14},"elementalDefence":{"min":-14,"raw":-14,"max":-11}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":10,"defenceRequirement":10,"agilityRequirement":10}},"Tendril Talon":{"internalName":"Tendril Talon","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":430,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"assassin","strength":40,"dexterity":40,"defence":40,"agility":40},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawIntelligence":-70,"healthRegen":{"min":23,"raw":77,"max":100},"manaRegen":{"min":-21,"raw":-16,"max":-11},"rawDamage":{"min":69,"raw":231,"max":300},"walkSpeed":{"min":6,"raw":19,"max":25},"elementalDefence":{"min":9,"raw":31,"max":40}},"base":{"baseEarthDamage":{"min":25,"raw":25,"max":25},"baseThunderDamage":{"min":0,"raw":0,"max":50},"baseFireDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":15,"raw":15,"max":35}},"rarity":"rare"},"Roridula":{"internalName":"Roridula","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":104,"strength":55,"intelligence":35},"powderSlots":2,"identifications":{"rawStrength":10,"manaSteal":{"min":2,"raw":6,"max":8},"4thSpellCost":{"min":26,"raw":20,"max":14},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":-39,"raw":-30,"max":-21},"waterDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3675,"baseEarthDefence":150,"baseFireDefence":-150},"rarity":"unique"},"Bone-Dry Breastplate":{"internalName":"Bone-Dry Breastplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":104,"strength":55,"dexterity":55},"identifications":{"rawIntelligence":-10,"lifeSteal":{"min":98,"raw":327,"max":425},"rawEarthMainAttackDamage":{"min":45,"raw":150,"max":195},"rawThunderMainAttackDamage":{"min":45,"raw":150,"max":195},"rawMaxMana":{"min":-38,"raw":-29,"max":-20},"knockback":{"min":12,"raw":40,"max":52},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":3000,"baseEarthDefence":80,"baseThunderDefence":80},"rarity":"rare"},"Resonance":{"internalName":"Resonance","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":876,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"shaman","strength":75,"intelligence":75},"majorIds":{"Lifestream":"+Lifestream: Increases Blood Sorrow's damage and overhealth, but shortens its duration by 75%."},"powderSlots":3,"lore":"The power to join oneself with the lifeblood of the earth has long eluded sects of fanatical druids and shamans. One such cult found a way, and subsequently wiped itself out in the process, their flesh turning to stone and veins forming new rivers.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawDefence":25,"elementalSpellDamage":{"min":8,"raw":28,"max":36},"healthRegen":{"min":18,"raw":60,"max":78},"manaRegen":{"min":5,"raw":15,"max":20},"4thSpellCost":{"min":-6,"raw":-19,"max":-25},"sprint":{"min":-36,"raw":-28,"max":-20},"airDefence":{"min":-58,"raw":-45,"max":-31}},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseEarthDamage":{"min":190,"raw":190,"max":200},"baseWaterDamage":{"min":170,"raw":170,"max":220}},"rarity":"mythic"},"Trance":{"internalName":"Trance","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":413,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"mage","dexterity":80,"defence":70},"majorIds":{"Fixate":"+Fixate: All Winded effects are stronger, but Winded applies slowly."},"powderSlots":3,"lore":"Down. Your enemies will fall slack. Deeper. Do you know this compulsion you bring? Deeper still. This implement, reaching from within and without. Even deeper. Souls and wills to command at the flex of a finger. Almost gone. It is my compulsion, too great to ignore. It is my implement, too strong to resist. My puppets, too deep to escape. Drop.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"lifeSteal":{"min":225,"raw":750,"max":975},"manaSteal":{"min":9,"raw":30,"max":39},"rawAttackSpeed":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":52},"baseThunderDamage":{"min":10,"raw":10,"max":50},"baseFireDamage":{"min":25,"raw":25,"max":35}},"rarity":"mythic"},"Drowned Pride":{"internalName":"Drowned Pride","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":270,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"mage","intelligence":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"waterSpellDamage":{"min":12,"raw":40,"max":52},"rawHealth":{"min":-1950,"raw":-1500,"max":-1050},"manaRegen":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"healingEfficiency":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":60,"raw":60,"max":100},"baseWaterDamage":{"min":80,"raw":80,"max":120}},"rarity":"unique"},"Malicious Maw":{"internalName":"Malicious Maw","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":420,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"warrior","strength":40,"dexterity":40,"intelligence":40,"defence":40},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawAgility":-70,"healthRegenRaw":{"min":54,"raw":181,"max":235},"rawHealth":{"min":525,"raw":1750,"max":2275},"manaSteal":{"min":3,"raw":9,"max":12},"damage":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-39,"raw":-30,"max":-21}},"base":{"baseEarthDamage":{"min":70,"raw":70,"max":70},"baseThunderDamage":{"min":0,"raw":0,"max":140},"baseWaterDamage":{"min":30,"raw":30,"max":110},"baseFireDamage":{"min":50,"raw":50,"max":90}},"rarity":"rare"},"Anaerobic":{"internalName":"Anaerobic","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":104,"strength":60,"agility":60},"powderSlots":4,"identifications":{"manaRegen":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"reflection":{"min":14,"raw":48,"max":62},"rawAttackSpeed":-1,"earthDamage":{"min":7,"raw":24,"max":31},"airDamage":{"min":10,"raw":32,"max":42}},"base":{"baseHealth":3850,"baseEarthDefence":100,"baseWaterDefence":-150,"baseAirDefence":100},"rarity":"legendary"},"Agglomerate Apex":{"internalName":"Agglomerate Apex","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":600,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"archer","dexterity":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawStrength":-70,"rawElementalSpellDamage":{"min":65,"raw":215,"max":280},"healthRegenRaw":{"min":-585,"raw":-450,"max":-315},"lifeSteal":{"min":166,"raw":554,"max":720},"manaRegen":{"min":4,"raw":14,"max":18},"sprint":{"min":6,"raw":21,"max":27}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":120},"baseWaterDamage":{"min":35,"raw":35,"max":85},"baseFireDamage":{"min":50,"raw":50,"max":70},"baseAirDamage":{"min":20,"raw":20,"max":100}},"rarity":"rare"},"Transplanted Psyche":{"internalName":"Transplanted Psyche","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":104,"dexterity":55,"intelligence":40,"defence":55},"identifications":{"rawDexterity":5,"rawIntelligence":10,"rawMainAttackDamage":{"min":-286,"raw":-220,"max":-154},"spellDamage":{"min":6,"raw":19,"max":25},"rawSpellDamage":{"min":58,"raw":192,"max":250},"healthRegenRaw":{"min":-182,"raw":-140,"max":-98},"manaSteal":{"min":3,"raw":10,"max":13},"reflection":{"min":-25,"raw":-19,"max":-13}},"base":{"baseHealth":4000,"baseEarthDefence":-175,"baseThunderDefence":150,"baseWaterDefence":-125,"baseFireDefence":150,"baseAirDefence":-175},"rarity":"legendary"},"Inscrutable Illusion":{"internalName":"Inscrutable Illusion","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":558,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"shaman","strength":40,"dexterity":40,"intelligence":40,"agility":40},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawDefence":-70,"rawHealth":{"min":-2600,"raw":-2000,"max":-1400},"manaRegen":{"min":6,"raw":19,"max":25},"elementalDamage":{"min":9,"raw":31,"max":40},"rawAttackSpeed":1,"knockback":{"min":12,"raw":40,"max":52}},"base":{"baseEarthDamage":{"min":45,"raw":45,"max":45},"baseThunderDamage":{"min":0,"raw":0,"max":90},"baseWaterDamage":{"min":35,"raw":35,"max":55},"baseAirDamage":{"min":25,"raw":25,"max":65}},"rarity":"rare"},"Static Wisdom":{"internalName":"Static Wisdom","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":387,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"assassin","dexterity":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"raw3rdSpellCost":{"min":-3,"raw":-10,"max":-13},"sprintRegen":{"min":8,"raw":25,"max":33},"knockback":{"min":-39,"raw":-30,"max":-21},"thunderDamage":{"min":12,"raw":40,"max":52},"elementalDefence":{"min":-78,"raw":-60,"max":-42}},"base":{"baseDamage":{"min":5,"raw":5,"max":55},"baseThunderDamage":{"min":15,"raw":15,"max":105}},"rarity":"unique"},"Pneumatic Grace":{"internalName":"Pneumatic Grace","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":542,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"archer","agility":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"healthRegen":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":-650,"raw":-500,"max":-350},"walkSpeed":{"min":6,"raw":20,"max":26},"jumpHeight":1,"rawAirDamage":{"min":38,"raw":128,"max":166}},"base":{"baseDamage":{"min":45,"raw":45,"max":105},"baseAirDamage":{"min":55,"raw":55,"max":145}},"rarity":"unique"},"Frameshift":{"internalName":"Frameshift","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":299,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"mage","strength":40,"defence":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":20,"mainAttackDamage":{"min":8,"raw":25,"max":33},"lifeSteal":{"min":114,"raw":380,"max":494},"manaRegen":{"min":2,"raw":8,"max":10},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"waterDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseEarthDamage":{"min":150,"raw":150,"max":210},"baseFireDamage":{"min":160,"raw":160,"max":200}},"rarity":"rare"},"Outlandish Replica Face Mask of Legendary Victory":{"internalName":"Outlandish Replica Face Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":104},"lore":"This perfect-to-the-point-of-indistinguishability replica mask of Herbert von Legendary's face, painstakingly crafted by Corkus's most powerful machines with only the most expensive materials and featuring real moustache hair plucked from Doctor Legendary's face, is desperately handed over to attempt to placate those who have spent an unnecessary amount of time completing the Legendary Challenge, broken the mold by continuing to spend an unnecessary amount of time completing the Legendary Challenge, gone even further beyond spending unnecessary amounts of time completing the Legendary Challenge, pushed onward to prove that they will not stop spending unnecessary amounts of time completing the Legendary Challenge, and then ultimately garnered an unhealthy obsession for spending unnecessary amounts of time completing the Legendary Challenge.","icon":{"format":"skin","value":"f4caff4072ef1a611eed6b0bcae71cacef03f814f64a12b854c90b866589534b"},"rarity":"legendary"},"Sclera Swathe":{"internalName":"Sclera Swathe","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":365,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"mage","strength":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawDexterity":-70,"mainAttackDamage":{"min":23,"raw":77,"max":100},"healthRegen":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":-1170,"raw":-900,"max":-630},"sprintRegen":{"min":9,"raw":30,"max":39},"healingEfficiency":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":110,"raw":110,"max":110},"baseWaterDamage":{"min":90,"raw":90,"max":130},"baseFireDamage":{"min":100,"raw":100,"max":120},"baseAirDamage":{"min":80,"raw":80,"max":140}},"rarity":"rare"},"Buried Glory":{"internalName":"Buried Glory","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":434,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"warrior","strength":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawSpellDamage":{"min":-182,"raw":-140,"max":-98},"rawEarthMainAttackDamage":{"min":180,"raw":600,"max":780},"poison":{"min":2550,"raw":8500,"max":11050},"2ndSpellCost":{"min":39,"raw":30,"max":21},"rawAttackSpeed":{"min":-3,"raw":-2,"max":-1}},"base":{"baseDamage":{"min":250,"raw":250,"max":350},"baseEarthDamage":{"min":450,"raw":450,"max":650}},"rarity":"unique"},"Labyrinth":{"internalName":"Labyrinth","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":830,"dropRestriction":"never","requirements":{"level":104,"classRequirement":"archer","strength":70,"defence":85},"majorIds":{"Twisting Threads":"+Twisting Threads: Tangled Trap ropes become much stronger, and can overlap up to 4 times. Gain +12 traps that cannot be triggered by enemies."},"powderSlots":2,"lore":"Left. Right. Left. Right. They are desperate for an escape, merely playthings in a maze of your design. Left. Left. Right. Turn back. When mountains of stone can shift at your command, their world is reduced to a single path. Left. Right. Does it ever end?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawDefence":20,"manaSteal":{"min":3,"raw":11,"max":14},"3rdSpellCost":{"min":-6,"raw":-19,"max":-25},"slowEnemy":{"min":3,"raw":11,"max":14},"earthDamage":{"min":7,"raw":23,"max":30},"fireDamage":{"min":7,"raw":23,"max":30}},"base":{"baseEarthDamage":{"min":485,"raw":485,"max":515},"baseFireDamage":{"min":470,"raw":470,"max":530}},"rarity":"mythic"},"Convergence":{"internalName":"Convergence","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":577,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"warrior","intelligence":65,"defence":75},"powderSlots":3,"lore":"As the void approaches nearer and nearer, the barrier between realms thins almost to a point... And yet, no matter how far you fall or how fast you fly, it will always lie just out of reach. Such is the indeterminate nature of the void, and its power that you harness.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"healthRegen":{"min":13,"raw":43,"max":56},"3rdSpellCost":{"min":-13,"raw":-45,"max":-58},"sprintRegen":{"min":13,"raw":43,"max":56},"earthDamage":{"min":17,"raw":55,"max":72},"thunderDamage":{"min":17,"raw":55,"max":72},"airDefence":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":50,"raw":50,"max":90},"baseWaterDamage":{"min":95,"raw":95,"max":115},"baseFireDamage":{"min":100,"raw":100,"max":110}},"rarity":"mythic"},"Burning Passion":{"internalName":"Burning Passion","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":546,"dropRestriction":"normal","requirements":{"level":104,"classRequirement":"shaman","defence":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawFireSpellDamage":{"min":45,"raw":150,"max":195},"rawHealth":{"min":-1755,"raw":-1350,"max":-945},"manaRegen":{"min":-13,"raw":-10,"max":-7},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"exploding":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":80,"raw":80,"max":120},"baseFireDamage":{"min":160,"raw":160,"max":170}},"rarity":"unique"},"Mesmerizing Madness":{"internalName":"Mesmerizing Madness","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":104,"strength":45,"intelligence":45,"agility":45},"powderSlots":2,"identifications":{"rawStrength":5,"rawAgility":5,"elementalSpellDamage":{"min":7,"raw":23,"max":30},"manaRegen":{"min":3,"raw":9,"max":12},"manaSteal":{"min":2,"raw":7,"max":9},"sprint":{"min":7,"raw":23,"max":30},"thunderDamage":{"min":-30,"raw":-23,"max":-16},"fireDamage":{"min":-30,"raw":-23,"max":-16}},"base":{"baseHealth":3200,"baseThunderDefence":-125,"baseFireDefence":-125},"rarity":"legendary"},"Darkness's Dogma":{"internalName":"Darkness's Dogma","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":714,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"archer","intelligence":60,"defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawHealth":{"min":450,"raw":1500,"max":1950},"lifeSteal":{"min":-910,"raw":-700,"max":-490},"manaSteal":{"min":3,"raw":10,"max":13},"reflection":{"min":8,"raw":25,"max":33},"waterDefence":{"min":-65,"raw":-50,"max":-35},"fireDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseWaterDamage":{"min":650,"raw":650,"max":750},"baseFireDamage":{"min":600,"raw":600,"max":800}},"rarity":"rare"},"Animosity":{"internalName":"Animosity","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":753,"dropRestriction":"never","requirements":{"level":103,"classRequirement":"assassin","strength":63,"dexterity":63},"majorIds":{"Insoluble":"+Insoluble: Dissolution now lasts 2.5 seconds, but grants only 35% resistance."},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.basicWood"}},"identifications":{"lifeSteal":{"min":161,"raw":535,"max":696},"manaRegen":{"min":-26,"raw":-20,"max":-14},"rawAttackSpeed":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":-30,"raw":-23,"max":-16},"knockback":{"min":10,"raw":33,"max":43},"elementalMainAttackDamage":{"min":8,"raw":28,"max":36}},"base":{"baseDamage":{"min":133,"raw":133,"max":166},"baseEarthDamage":{"min":666,"raw":666,"max":666},"baseThunderDamage":{"min":360,"raw":360,"max":960}},"rarity":"fabled"},"Death Grasp":{"internalName":"Death Grasp","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":103,"strength":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"lifeSteal":{"min":58,"raw":192,"max":250},"earthMainAttackDamage":{"min":8,"raw":25,"max":33},"rawAttackSpeed":{"min":-23,"raw":-18,"max":-13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"mainAttackRange":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":500,"baseEarthDefence":80},"rarity":"legendary"},"Wanderlust":{"internalName":"Wanderlust","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":103,"dexterity":45,"agility":55},"powderSlots":2,"lore":"Are your heart, soul, and mind one? The ones who love are the most vulnerable. The ones who persist are the most detached. The ones who forget are the most naive. Only when you remove these impurities from your body could you reach the end. ","identifications":{"rawSpellDamage":{"min":62,"raw":208,"max":270},"healthRegen":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":69,"raw":230,"max":299},"manaSteal":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":8,"raw":25,"max":33},"waterDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3200,"baseThunderDefence":75,"baseWaterDefence":100,"baseFireDefence":-75,"baseAirDefence":100},"rarity":"legendary"},"Toxxulous Ripper’s Legs":{"internalName":"Toxxulous Ripper’s Legs","type":"ingredient","requirements":{"level":103,"skills":["tailoring","cooking"]},"icon":{"format":"legacy","value":"6:4"},"identifications":{"rawMainAttackDamage":{"min":35,"raw":35,"max":35},"rawDefence":{"min":-6,"raw":-6,"max":-4},"walkSpeed":{"min":7,"raw":7,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-580,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":15},"droppedBy":[{"name":"Toxxulous Ripper","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Leg Eater","coords":[1382,142,-1008,30]},{"name":"§Fool Eater","coords":null}]},"Gunkfueled Core":{"internalName":"Gunkfueled Core","type":"ingredient","requirements":{"level":103,"skills":["armouring","woodworking"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"healthRegenRaw":{"min":-125,"raw":-125,"max":-110},"rawStrength":{"min":7,"raw":7,"max":10},"exploding":{"min":20,"raw":20,"max":25}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-25,"agilityRequirement":0},"droppedBy":[{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Plutonium Waste":{"internalName":"Plutonium Waste","type":"ingredient","requirements":{"level":103,"skills":["jeweling"]},"icon":{"format":"legacy","value":"295:0"},"identifications":{"poison":{"min":560,"raw":560,"max":600},"walkSpeed":{"min":-6,"raw":-6,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-106000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Alnamar Meat":{"internalName":"Alnamar Meat","type":"ingredient","requirements":{"level":103,"skills":["cooking"]},"icon":{"format":"legacy","value":"411:0"},"identifications":{"earthDefence":{"min":-9,"raw":-9,"max":-7},"thunderDefence":{"min":7,"raw":7,"max":10},"fireDefence":{"min":7,"raw":7,"max":8}},"tier":0,"consumableOnlyIDs":{"duration":-290,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tenebrous Alnamar","coords":[1196,135,-1120,40]},{"name":"Lichenous Alnamar","coords":[1490,55,-1077,15]},{"name":"§Fool Eater","coords":null}]},"Soul Essence":{"internalName":"Soul Essence","type":"ingredient","requirements":{"level":103,"skills":["scribing"]},"icon":{"format":"legacy","value":"80:0"},"identifications":{"mainAttackDamage":{"min":5,"raw":5,"max":6},"rawMainAttackDamage":{"min":23,"raw":23,"max":27}},"tier":0,"consumableOnlyIDs":{"duration":-97,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Void Soul Roamer","coords":[1196,135,-1120,40]},{"name":"Crystal of Insanity","coords":[1382,142,-1008,30]},{"name":"Cursed Shrieker","coords":[1175,101,-1053,6]},{"name":"§Fool Eater","coords":null}]},"Lactic Acid Crystal":{"internalName":"Lactic Acid Crystal","type":"ingredient","requirements":{"level":103,"skills":["woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"poison":{"min":1700,"raw":1700,"max":1825},"healthRegen":{"min":-7,"raw":-7,"max":-4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-71000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Caustic Crystallite","coords":null}]},"Voidtossed Memory":{"internalName":"Voidtossed Memory","type":"ingredient","requirements":{"level":103,"skills":["armouring"]},"icon":{"format":"legacy","value":"259:34"},"identifications":{"rawAgility":{"min":10,"raw":10,"max":11},"rawThunderDamage":{"min":21,"raw":21,"max":27}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-159000,"strengthRequirement":0,"dexterityRequirement":9,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":25}},"Doom Stone":{"internalName":"Doom Stone","type":"ingredient","requirements":{"level":103,"skills":["tailoring","jeweling"]},"icon":{"format":"legacy","value":"129:0"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-100,"right":-100,"above":60,"under":60,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mutated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Aberrated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Toxxulous Ripper","coords":null},{"name":"Pathogenesis","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Larbonic Canker","coords":null},{"name":"Poison Tendril","coords":[937,4,-979,30]},{"name":"Toxitack","coords":null},{"name":"Spewer","coords":[[1014,80,-887,8],[929,74,-848,6],[1010,126,-1109,10],[1100,77,-952,5]]},{"name":"Green Foot","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Pluripotent Tissue":{"internalName":"Pluripotent Tissue","type":"ingredient","requirements":{"level":103,"skills":["jeweling"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"earthDamage":{"min":-2,"raw":-2,"max":-1},"mainAttackDamage":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Terra-Toma","coords":null},{"name":"Festering Titan","coords":null},{"name":"Refusal of Death","coords":null}]},"Decaying Arteries":{"internalName":"Decaying Arteries","type":"ingredient","requirements":{"level":103,"skills":["alchemism"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"spellDamage":{"min":8,"raw":8,"max":9},"healthRegenRaw":{"min":-60,"raw":-60,"max":-55}},"tier":0,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Repurposed Host","coords":[1196,135,-1120,40]},{"name":"Tenebrous Alnamar","coords":[1196,135,-1120,40]},{"name":"Reality Swimmer","coords":[1196,135,-1120,40]},{"name":"Molarcephale","coords":null}]},"Leg Eater Tooth":{"internalName":"Leg Eater Tooth","type":"ingredient","requirements":{"level":103,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"154:0"},"identifications":{"earthDamage":{"min":6,"raw":6,"max":9},"thunderDamage":{"min":6,"raw":6,"max":9},"healthRegen":{"min":-12,"raw":-12,"max":-8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Leg Eater","coords":[1382,142,-1008,30]},{"name":"Molarcephale","coords":null},{"name":"Refusal of Death","coords":null}]},"Larbonic Sheddings":{"internalName":"Larbonic Sheddings","type":"ingredient","requirements":{"level":103,"skills":["tailoring"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"waterDefence":{"min":12,"raw":12,"max":15},"airDefence":{"min":-8,"raw":-8,"max":-6},"earthDefence":{"min":-8,"raw":-8,"max":-6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Larbonic Canker","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Green Foot":{"internalName":"Green Foot","type":"ingredient","requirements":{"level":103,"skills":["tailoring"]},"icon":{"format":"legacy","value":"111:0"},"identifications":{"rawDefence":{"min":5,"raw":5,"max":6},"rawHealth":{"min":500,"raw":500,"max":550},"walkSpeed":{"min":-8,"raw":-8,"max":-6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":-10},"droppedBy":[{"name":"Green Foot","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Festering Titan","coords":null}]},"Fleshbark":{"internalName":"Fleshbark","type":"ingredient","requirements":{"level":103,"skills":["armouring","tailoring"]},"icon":{"format":"skin","value":"f09d831bf7d6d1d212e6503bf5c275d582d9a48a44d94137f264dd1cd6ed12d9"},"identifications":{"rawStrength":{"min":4,"raw":4,"max":5},"earthDefence":{"min":20,"raw":20,"max":25}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-111000,"strengthRequirement":18,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Scopaesthesia":{"internalName":"Scopaesthesia","type":"ingredient","requirements":{"level":103,"skills":["scribing"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"fireDefence":{"min":11,"raw":11,"max":15},"waterDefence":{"min":11,"raw":11,"max":15},"airDefence":{"min":11,"raw":11,"max":15},"thunderDefence":{"min":11,"raw":11,"max":15},"earthDefence":{"min":11,"raw":11,"max":15},"healthRegen":{"min":11,"raw":11,"max":15}},"tier":2,"consumableOnlyIDs":{"duration":-195,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Panic Zealot","coords":null}]},"Insanity Star":{"internalName":"Insanity Star","type":"ingredient","requirements":{"level":103,"skills":["woodworking","jeweling"]},"icon":{"format":"legacy","value":"19:0"},"identifications":{"elementalDamage":{"min":3,"raw":3,"max":5},"earthDefence":{"min":-5,"raw":-5,"max":-3},"thunderDefence":{"min":-5,"raw":-5,"max":-3},"waterDefence":{"min":-5,"raw":-5,"max":-3},"fireDefence":{"min":-5,"raw":-5,"max":-3},"airDefence":{"min":-5,"raw":-5,"max":-3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-80000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":10,"defenceRequirement":10,"agilityRequirement":10},"droppedBy":[{"name":"Crystal of Insanity","coords":[1382,142,-1008,30]},{"name":"§Fool Eater","coords":null}]},"Olmic Artifact":{"internalName":"Olmic Artifact","type":"ingredient","requirements":{"level":103,"skills":["woodworking"]},"icon":{"format":"legacy","value":"145:0"},"identifications":{"healthRegenRaw":{"min":50,"raw":50,"max":60},"rawAgility":{"min":4,"raw":4,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-80000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Blinders","coords":[837,80,-540,100]},{"name":"Face of Fear","coords":[837,80,-540,100]},{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Vortexian Voidgap","coords":[1382,142,-1008,30]}]},"Renegade":{"internalName":"Renegade","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":666,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"archer","strength":60,"agility":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawDexterity":-40,"rawEarthMainAttackDamage":{"min":58,"raw":192,"max":250},"rawHealth":{"min":-2275,"raw":-1750,"max":-1225},"raw2ndSpellCost":{"min":-3,"raw":-10,"max":-13},"walkSpeed":{"min":6,"raw":20,"max":26},"sprintRegen":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseEarthDamage":{"min":55,"raw":55,"max":145},"baseAirDamage":{"min":35,"raw":35,"max":85}},"rarity":"legendary"},"Sulfur Expulser":{"internalName":"Sulfur Expulser","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":774,"dropRestriction":"never","requirements":{"level":103,"classRequirement":"archer","strength":60,"dexterity":60},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"elementalSpellDamage":{"min":-78,"raw":-60,"max":-42},"rawEarthMainAttackDamage":{"min":21,"raw":70,"max":91},"rawThunderMainAttackDamage":{"min":21,"raw":70,"max":91},"rawHealth":{"min":-2600,"raw":-2000,"max":-1400},"poison":{"min":3600,"raw":12000,"max":15600},"lifeSteal":{"min":140,"raw":465,"max":605},"knockback":{"min":-45,"raw":-35,"max":-24}},"base":{"baseEarthDamage":{"min":80,"raw":80,"max":100},"baseThunderDamage":{"min":45,"raw":45,"max":135}},"rarity":"legendary"},"Bygg":{"internalName":"Bygg","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":103,"strength":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawStrength":4,"rawDefence":2,"damage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":595,"baseEarthDefence":35},"rarity":"unique"},"Sacrilege":{"internalName":"Sacrilege","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":330,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"mage","strength":45,"dexterity":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawIntelligence":-40,"rawMainAttackDamage":{"min":42,"raw":140,"max":182},"rawSpellDamage":{"min":-260,"raw":-200,"max":-140},"lifeSteal":{"min":131,"raw":435,"max":566},"manaSteal":{"min":-26,"raw":-20,"max":-14},"rawAttackSpeed":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":5,"raw":5,"max":55},"baseEarthDamage":{"min":25,"raw":25,"max":75},"baseThunderDamage":{"min":25,"raw":25,"max":135}},"rarity":"legendary"},"Cnidarian Hellspawn":{"internalName":"Cnidarian Hellspawn","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":103,"dexterity":49,"defence":57},"identifications":{"rawDexterity":7,"healthRegen":{"min":-35,"raw":-27,"max":-19},"healthRegenRaw":{"min":-196,"raw":-151,"max":-106},"lifeSteal":{"min":87,"raw":291,"max":378},"1stSpellCost":{"min":-4,"raw":-15,"max":-19},"2ndSpellCost":{"min":17,"raw":13,"max":9},"3rdSpellCost":{"min":-4,"raw":-13,"max":-17},"4thSpellCost":{"min":-3,"raw":-11,"max":-14}},"base":{"baseHealth":4500,"baseThunderDefence":130,"baseWaterDefence":-115,"baseFireDefence":130},"rarity":"legendary"},"Swindler's Charm":{"internalName":"Swindler's Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":103,"dexterity":45,"defence":45,"agility":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"3rdSpellCost":{"min":-2,"raw":-7,"max":-9},"raw4thSpellCost":{"min":-1,"raw":-2,"max":-3},"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7}},"rarity":"legendary"},"Ornate Shadow Cowl":{"internalName":"Ornate Shadow Cowl","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":103},"powderSlots":3,"identifications":{"mainAttackDamage":20,"rawMainAttackDamage":250,"spellDamage":20,"rawSpellDamage":190,"healthRegen":-15,"walkSpeed":15},"base":{"baseHealth":4500,"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"fabled"},"Empyreal Emberplate":{"internalName":"Empyreal Emberplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":103,"intelligence":50,"defence":75},"majorIds":{"Divine Honor":"+Divine Honor: Increases the bonus from Radiance by 10%. Bash deals -15% per hit."},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawIntelligence":6,"spellDamage":{"min":-45,"raw":-35,"max":-24},"manaSteal":{"min":2,"raw":8,"max":10},"raw4thSpellCost":{"min":-2,"raw":-6,"max":-8},"fireDamage":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":5300},"rarity":"fabled"},"Treasured Diamond Mask of Legendary Victory":{"internalName":"Treasured Diamond Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":103},"lore":"This excessively ornate to-the-point-of-being-wasteful decorative mask, laser-cut from a meter's worth of pure diamond, is given to those who have spent an unnecessary amount of time completing the Legendary Challenge, broken the mold by continuing to spend an unnecessary amount of time completing the Legendary Challenge, gone even further beyond spending unnecessary amounts of time completing the Legendary Challenge, and then pushed onward to prove that they will not stop spending unnecessary amounts of time completing the Legendary Challenge.","icon":{"format":"skin","value":"d89343b672a08850af91abaf394a2fdf3034f6bea0e4d9cd24ef27d2c7e7c626"},"rarity":"legendary"},"Delusion":{"internalName":"Delusion","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":103,"strength":50,"intelligence":40},"powderSlots":3,"identifications":{"rawDefence":10,"healthRegenRaw":{"min":53,"raw":175,"max":228},"lifeSteal":{"min":-338,"raw":-260,"max":-182},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"fireDefence":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":4000,"baseFireDefence":150},"rarity":"rare"},"Phantasmal Hostage":{"internalName":"Phantasmal Hostage","type":"armour","armourType":"chestplate","armourColor":"rgb(167,50,38)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":103,"strength":50,"intelligence":65,"agility":50},"lore":"A soul sacrificed willingly, to an eternity in captivity. Imprints and memories; all that remain of a hero of the lands.","identifications":{"rawDamage":220,"spellDamage":35,"lifeSteal":450,"manaSteal":10,"walkSpeed":-25,"waterSpellDamage":15},"base":{"baseHealth":3575,"baseEarthDefence":85,"baseWaterDefence":85,"baseAirDefence":85},"rarity":"legendary"},"Ornate Shadow Garb":{"internalName":"Ornate Shadow Garb","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":103},"powderSlots":3,"identifications":{"mainAttackDamage":20,"rawMainAttackDamage":250,"spellDamage":20,"rawSpellDamage":190,"healthRegen":-15,"walkSpeed":15},"base":{"baseHealth":4500,"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"fabled"},"Petulance":{"internalName":"Petulance","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":548,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"assassin","dexterity":65,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawDefence":-40,"rawMainAttackDamage":{"min":90,"raw":300,"max":390},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"poison":{"min":3000,"raw":10000,"max":13000},"manaSteal":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":80,"raw":80,"max":90},"baseThunderDamage":{"min":165,"raw":165,"max":175},"baseAirDamage":{"min":105,"raw":105,"max":115}},"rarity":"legendary"},"Malevolent Urge":{"internalName":"Malevolent Urge","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":397,"dropRestriction":"never","requirements":{"level":103,"classRequirement":"mage","strength":45,"defence":75},"majorIds":{"Sorcery":"+Sorcery: 30% chance for spells and attacks to cast a second time at no additional cost."},"powderSlots":3,"lore":"You wouldn't even think of committing these atrocities, would you? But what if you weren't the one in control?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawStrength":15,"rawDefence":-15,"damage":{"min":6,"raw":19,"max":25},"lifeSteal":{"min":-585,"raw":-450,"max":-315},"manaSteal":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":9,"raw":31,"max":40},"stealing":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":40,"raw":40,"max":55},"baseEarthDamage":{"min":60,"raw":60,"max":85},"baseFireDamage":{"min":60,"raw":60,"max":85}},"rarity":"fabled"},"Ornate Shadow Cover":{"internalName":"Ornate Shadow Cover","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":103},"powderSlots":3,"identifications":{"mainAttackDamage":20,"rawMainAttackDamage":250,"spellDamage":20,"rawSpellDamage":190,"healthRegen":-15,"walkSpeed":15},"base":{"baseHealth":4500,"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"fabled"},"Schadenfreude":{"internalName":"Schadenfreude","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":103,"dexterity":65,"intelligence":55},"majorIds":{"Strings of Fate":"+Strings of Fate: Your puppets have a lifetime of 3 seconds, and deal double damage with attacks and explosions."},"powderSlots":3,"identifications":{"lifeSteal":{"min":98,"raw":327,"max":425},"healingEfficiency":{"min":-26,"raw":-20,"max":-14},"rawThunderDamage":{"min":35,"raw":115,"max":150},"rawWaterDamage":{"min":35,"raw":115,"max":150},"thunderDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3500,"baseEarthDefence":-175,"baseThunderDefence":150,"baseWaterDefence":150},"rarity":"fabled"},"Brutality":{"internalName":"Brutality","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":790,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"shaman","strength":45,"defence":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawAgility":-40,"mainAttackDamage":{"min":18,"raw":60,"max":78},"healthRegenRaw":{"min":-279,"raw":-215,"max":-150},"lifeSteal":{"min":-565,"raw":-435,"max":-304},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":24,"raw":80,"max":104}},"base":{"baseDamage":{"min":250,"raw":250,"max":450},"baseEarthDamage":{"min":350,"raw":350,"max":650},"baseFireDamage":{"min":450,"raw":450,"max":950}},"rarity":"legendary"},"Dissonance":{"internalName":"Dissonance","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":103,"dexterity":50,"intelligence":50},"powderSlots":2,"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"lifeSteal":{"min":-357,"raw":-275,"max":-192},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"sprint":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3050,"baseThunderDefence":100,"baseWaterDefence":100,"baseAirDefence":-175},"rarity":"unique"},"Bloodbath":{"internalName":"Bloodbath","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":608,"dropRestriction":"never","requirements":{"level":103,"classRequirement":"warrior","strength":80,"dexterity":80},"powderSlots":3,"lore":"Blood. Carnage. Death. Destruction. This is all Annihilation knows. A fury written into its very core, a violent rage building from an endless War. If it were to have its way, all of Wynn would fall to chaos.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":30,"rawDexterity":30,"rawHealth":{"min":-5200,"raw":-4000,"max":-2800},"lifeSteal":{"min":150,"raw":500,"max":650},"manaRegen":{"min":-130,"raw":-100,"max":-70},"raw1stSpellCost":{"min":-3,"raw":-10,"max":-13},"walkSpeed":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":0,"raw":0,"max":20},"baseEarthDamage":{"min":175,"raw":175,"max":220},"baseThunderDamage":{"min":100,"raw":100,"max":295}},"rarity":"mythic"},"Ornate Shadow Cloud":{"internalName":"Ornate Shadow Cloud","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":103},"powderSlots":3,"identifications":{"mainAttackDamage":20,"rawMainAttackDamage":250,"spellDamage":20,"rawSpellDamage":190,"healthRegen":-15,"walkSpeed":15},"base":{"baseHealth":4500,"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"fabled"},"Quetzalcoatl":{"internalName":"Quetzalcoatl","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"mage","strength":70,"agility":70},"powderSlots":4,"lore":"The great serpent of Ahms was said to be a bringer of wisdom in days long past, revered by the inhabitants of the region. Totems like this one were crafted as an act of worship, though as belief faded over time, so too were these idols lost and destroyed. Only one remains.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"rawSpellDamage":{"min":77,"raw":255,"max":332},"lifeSteal":{"min":300,"raw":1000,"max":1300},"healingEfficiency":{"min":-52,"raw":-40,"max":-28},"walkSpeed":{"min":8,"raw":28,"max":36},"jumpHeight":{"min":1,"raw":2,"max":3}},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseEarthDamage":{"min":40,"raw":40,"max":70},"baseAirDamage":{"min":35,"raw":35,"max":75}},"rarity":"mythic"},"Abhorrence":{"internalName":"Abhorrence","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":506,"dropRestriction":"normal","requirements":{"level":103,"classRequirement":"warrior","dexterity":45,"defence":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.fire3"}},"identifications":{"rawStrength":-40,"rawMainAttackDamage":{"min":150,"raw":500,"max":650},"healthRegen":{"min":-45,"raw":-35,"max":-24},"lifeSteal":{"min":143,"raw":477,"max":620},"4thSpellCost":{"min":-7,"raw":-25,"max":-32},"elementalDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":100,"raw":100,"max":120},"baseThunderDamage":{"min":150,"raw":150,"max":350},"baseFireDamage":{"min":190,"raw":190,"max":310}},"rarity":"legendary"},"Lost Seconds":{"internalName":"Lost Seconds","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":102,"dexterity":60,"defence":40},"lore":"This ring is set with a beautiful, mesmerizing gem. You could look at it for hours. Hours and hours and hours.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawMainAttackDamage":{"min":90,"raw":300,"max":390},"spellDamage":{"min":-39,"raw":-30,"max":-21},"4thSpellCost":{"min":-2,"raw":-7,"max":-9},"reflection":{"min":-65,"raw":-50,"max":-35},"rawAttackSpeed":{"min":-3,"raw":-2,"max":-1}},"base":{"baseHealth":600,"baseThunderDefence":80},"rarity":"legendary"},"Hypoxia":{"internalName":"Hypoxia","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":102},"lore":"You need to keep moving. You can't stop here. You can't. You can't breathe. You can't run. You're dying. You can't keep on. You can't. You can't.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawStrength":3,"rawDexterity":3,"damage":{"min":2,"raw":8,"max":10},"rawMaxMana":{"min":6,"raw":19,"max":25},"manaRegen":{"min":-10,"raw":-8,"max":-6},"sprint":{"min":-19,"raw":-15,"max":-10}},"base":{"baseAirDefence":-80},"rarity":"legendary"},"Surveillance":{"internalName":"Surveillance","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":690,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"archer","dexterity":45,"defence":45,"agility":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawDamage":{"min":60,"raw":200,"max":260},"manaRegen":{"min":-19,"raw":-15,"max":-10},"3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"4thSpellCost":{"min":-7,"raw":-25,"max":-32},"walkSpeed":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":55,"raw":55,"max":75},"baseThunderDamage":{"min":65,"raw":65,"max":115},"baseFireDamage":{"min":85,"raw":85,"max":95},"baseAirDamage":{"min":75,"raw":75,"max":105}},"rarity":"legendary"},"Viral Tentacle":{"internalName":"Viral Tentacle","type":"ingredient","requirements":{"level":102,"skills":["cooking"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4},"earthDamage":{"min":6,"raw":6,"max":9}},"tier":1,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Poison Tendril","coords":[937,4,-979,30]},{"name":"Pulsatile Mass","coords":null},{"name":"Refusal of Death","coords":null}]},"Popped Pustule":{"internalName":"Popped Pustule","type":"ingredient","requirements":{"level":102,"skills":["scribing"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"waterDamage":{"min":11,"raw":11,"max":13},"fireDamage":{"min":11,"raw":11,"max":13}},"tier":2,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Larbonic Canker","coords":null}]},"Condensed Darkness":{"internalName":"Condensed Darkness","type":"ingredient","requirements":{"level":102,"skills":["jeweling","alchemism"]},"icon":{"format":"legacy","value":"245:0"},"identifications":{"manaSteal":{"min":4,"raw":4,"max":4},"rawHealth":{"min":-260,"raw":-260,"max":-240},"rawSpellDamage":{"min":-40,"raw":-40,"max":-35}},"tier":2,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-106000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":-20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dusk Kanter","coords":[837,80,-540,100]},{"name":"Dusk Kantyr","coords":[837,80,-540,100]},{"name":"Chalky Kanter","coords":[837,80,-540,100]},{"name":"Chalky Kantyri Calf","coords":[837,80,-540,100]},{"name":"Blinder","coords":[837,80,-540,100]},{"name":"Eyebawl","coords":[837,80,-540,100]},{"name":"§Fool Eater","coords":null}]},"Vile Stone":{"internalName":"Vile Stone","type":"ingredient","requirements":{"level":102,"skills":["armouring","woodworking"]},"icon":{"format":"legacy","value":"73:0"},"identifications":{"rawIntelligence":{"min":-5,"raw":-5,"max":-3},"walkSpeed":{"min":5,"raw":5,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":-15,"defenceRequirement":0,"agilityRequirement":15},"droppedBy":[{"name":"Pathogenesis","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Skybound Remnant":{"internalName":"Skybound Remnant","type":"ingredient","requirements":{"level":102,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"rawAgility":{"min":11,"raw":11,"max":12},"spellDamage":{"min":7,"raw":7,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-159000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":22},"droppedBy":[{"name":"Pegasus","coords":[[1015,133,-4850,55],[921,155,-4789,55],[1302,190,-4476,55]]},{"name":"Rukh","coords":[[1014,108,-4718,40],[1090,111,-4659,30]]},{"name":"Minokawa","coords":[[1251,151,-4560,70],[1158,147,-4431,70],[899,71,-4689,55]]},{"name":"Void Spirula","coords":false},{"name":"Umbral Singularity","coords":false}]},"Calcified Ligament":{"internalName":"Calcified Ligament","type":"ingredient","requirements":{"level":102,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":3},"spellDamage":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-53000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dusk Kanter","coords":[837,80,-540,100]},{"name":"Dusk Kantyr","coords":[837,80,-540,100]},{"name":"Chalky Kanter","coords":[837,80,-540,100]},{"name":"Chalky Kantyri Calf","coords":[837,80,-540,100]},{"name":"Longleg Gripper","coords":null}]},"Cystic Lard":{"internalName":"Cystic Lard","type":"ingredient","requirements":{"level":102,"skills":["alchemism","woodworking"]},"icon":{"format":"legacy","value":"383:55"},"identifications":{"poison":{"min":1000,"raw":1000,"max":1100}},"tier":0,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Remnant of the Ruined":{"internalName":"Remnant of the Ruined","type":"ingredient","requirements":{"level":102,"skills":["jeweling"]},"icon":{"format":"skin","value":"f8d3e0577fe5963219940fd4b621b8a6161586371f797ac94240ac80fe5386eb"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":3},"manaRegen":{"min":4,"raw":4,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-172000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":25,"defenceRequirement":0,"agilityRequirement":0}},"Toxic Lumps":{"internalName":"Toxic Lumps","type":"ingredient","requirements":{"level":102,"skills":["alchemism"]},"icon":{"format":"legacy","value":"81:0"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":10},"thunderDamage":{"min":5,"raw":5,"max":6},"healthRegen":{"min":-15,"raw":-15,"max":-12}},"tier":0,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mutated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Aberrated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Acidic Remains":{"internalName":"Acidic Remains","type":"ingredient","requirements":{"level":102,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"healthRegenRaw":{"min":-60,"raw":-60,"max":-50},"fireDamage":{"min":8,"raw":8,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-74000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spewer","coords":[[1014,80,-887,8],[929,74,-848,6],[1010,126,-1109,10],[1100,77,-952,5]]},{"name":"Fermented Captive","coords":null},{"name":"§Fool Eater","coords":null}]},"Sludge Parasite":{"internalName":"Sludge Parasite","type":"ingredient","requirements":{"level":102,"skills":["armouring"]},"icon":{"format":"legacy","value":"111:0"},"identifications":{"poison":{"min":1050,"raw":1050,"max":1150},"rawDefence":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-53000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mutated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Aberrated Lutho Citizen","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Toxxulous Ripper","coords":null},{"name":"Pathogenesis","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Larbonic Canker","coords":null},{"name":"Poison Tendril","coords":[937,4,-979,30]},{"name":"Toxitack","coords":null},{"name":"Spewer","coords":[[1014,80,-887,8],[929,74,-848,6],[1010,126,-1109,10],[1100,77,-952,5]]},{"name":"Green Foot","coords":[[918,91,-955,70],[1062,129,-973,70]]},{"name":"Atomic Gunk","coords":[[918,91,-955,70],[1062,129,-973,70]]}]},"Consolidate":{"internalName":"Consolidate","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":309,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"mage","strength":45,"intelligence":45,"agility":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawElementalDamage":{"min":60,"raw":200,"max":260},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"manaSteal":{"min":3,"raw":10,"max":13},"1stSpellCost":{"min":-4,"raw":-15,"max":-19},"healingEfficiency":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":30},"baseEarthDamage":{"min":40,"raw":40,"max":40},"baseWaterDamage":{"min":40,"raw":40,"max":40},"baseAirDamage":{"min":40,"raw":40,"max":40}},"rarity":"legendary"},"Withstand":{"internalName":"Withstand","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":102,"defence":55,"agility":55},"powderSlots":3,"identifications":{"rawElementalDamage":{"min":56,"raw":185,"max":241},"healthRegenRaw":{"min":66,"raw":220,"max":286},"raw2ndSpellCost":{"min":5,"raw":4,"max":3},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":9,"raw":30,"max":39},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":3350,"baseFireDefence":150,"baseAirDefence":150},"rarity":"legendary"},"Third Wish":{"internalName":"Third Wish","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":482,"dropRestriction":"never","requirements":{"level":102,"classRequirement":"mage","dexterity":60,"intelligence":60},"majorIds":{"Perfect Recall":"+Perfect Recall: Memory Recollection adds 1 extra spell. Increases Chaos Explosion's mana bank requirement to 150."},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawAgility":-15,"rawHealth":{"min":-1443,"raw":-1110,"max":-777},"raw3rdSpellCost":{"min":12,"raw":9,"max":6},"rawThunderSpellDamage":{"min":60,"raw":201,"max":261}},"base":{"baseDamage":{"min":75,"raw":75,"max":81},"baseThunderDamage":{"min":75,"raw":75,"max":81},"baseWaterDamage":{"min":75,"raw":75,"max":81}},"rarity":"fabled"},"Venerated Gold Mask of Legendary Victory":{"internalName":"Venerated Gold Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":102},"lore":"This excessively ornate decorative mask, moulded from 24 carat gold, is awarded to those who have both spent an unnecessary amount of time completing the Legendary Challenge and broken the mold by continuing to spend an unnecessary amount of time completing the Legendary Challenge, and then gone even further beyond spending unnecessary amounts of time completing the Legendary Challenge.","icon":{"format":"skin","value":"871c640dcc9db49215bd28acb62c494536dda4055997f527e7445aba85441c56"},"rarity":"legendary"},"Azeotrope":{"internalName":"Azeotrope","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":102,"intelligence":65},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawMainAttackDamage":{"min":-117,"raw":-90,"max":-63},"spellDamage":{"min":2,"raw":8,"max":10},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6}},"base":{"baseHealth":-400,"baseWaterDefence":60},"rarity":"legendary"},"Hanafubuki":{"internalName":"Hanafubuki","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":817,"dropRestriction":"never","requirements":{"level":102,"classRequirement":"assassin","intelligence":65,"agility":85},"majorIds":{"Efflorescence":"+Efflorescence: Jasmine Bloom deals increased damage but has reduced vertical range."},"lore":"The most dangerous enemy is one you cannot see. Hidden amidst a flurry of petals comes an avalanche of blows, in one moment dissolving mountains and forests into a growing amalgam, leaving a wake of vibrant bloom in the next.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawStrength":15,"elementalDamage":{"min":77,"raw":256,"max":333},"3rdSpellCost":{"min":33,"raw":25,"max":18},"4thSpellCost":{"min":20,"raw":15,"max":11},"jumpHeight":{"min":1,"raw":3,"max":4},"earthDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":160,"raw":160,"max":220}},"rarity":"mythic"},"Pareidolia":{"internalName":"Pareidolia","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":798,"dropRestriction":"never","requirements":{"level":102,"classRequirement":"shaman","dexterity":55,"intelligence":55,"agility":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawIntelligence":-5,"rawDefence":-5,"rawAgility":5,"elementalSpellDamage":{"min":8,"raw":27,"max":35},"healthRegen":{"min":-35,"raw":-27,"max":-19},"manaRegen":{"min":-35,"raw":-27,"max":-19},"4thSpellCost":{"min":-8,"raw":-27,"max":-35},"walkSpeed":{"min":8,"raw":27,"max":35}},"base":{"baseDamage":{"min":140,"raw":140,"max":150},"baseThunderDamage":{"min":0,"raw":0,"max":75},"baseWaterDamage":{"min":0,"raw":0,"max":75},"baseAirDamage":{"min":0,"raw":0,"max":75}},"rarity":"legendary"},"Epoch":{"internalName":"Epoch","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":803,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"archer","dexterity":70,"agility":70},"powderSlots":3,"lore":"This ornate bow holds a sinister beauty. Each rediscovery marks impending disaster, against any force that attempts to overcome it. Such is the inevitability of fate: irreverent to the will of masses, an epoch starts anew.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":92,"raw":308,"max":400},"spellDamage":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":233,"raw":775,"max":1008},"manaSteal":{"min":-8,"raw":-6,"max":-4},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"sprint":{"min":21,"raw":70,"max":91}},"base":{"baseDamage":{"min":450,"raw":450,"max":620},"baseThunderDamage":{"min":440,"raw":440,"max":600},"baseAirDamage":{"min":480,"raw":480,"max":560}},"rarity":"mythic"},"Viridian":{"internalName":"Viridian","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":712,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"assassin","strength":45,"dexterity":45,"intelligence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.earth3"}},"identifications":{"healthRegenRaw":{"min":-299,"raw":-230,"max":-161},"poison":{"min":2550,"raw":8500,"max":11050},"elementalDamage":{"min":9,"raw":30,"max":39},"1stSpellCost":{"min":26,"raw":20,"max":14},"2ndSpellCost":{"min":26,"raw":20,"max":14}},"base":{"baseDamage":{"min":30,"raw":30,"max":200},"baseEarthDamage":{"min":80,"raw":80,"max":160},"baseThunderDamage":{"min":40,"raw":40,"max":200},"baseWaterDamage":{"min":60,"raw":60,"max":180}},"rarity":"legendary"},"Atomizer":{"internalName":"Atomizer","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":102,"agility":75},"powderSlots":3,"identifications":{"rawAgility":8,"healthRegen":{"min":11,"raw":37,"max":48},"poison":{"min":1028,"raw":3425,"max":4453},"thorns":{"min":8,"raw":25,"max":33},"jumpHeight":1,"waterDefence":{"min":9,"raw":31,"max":40},"fireDefence":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":4350,"baseWaterDefence":120,"baseFireDefence":120,"baseAirDefence":200},"rarity":"unique"},"Idealogue":{"internalName":"Idealogue","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":494,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"warrior","dexterity":45,"intelligence":45,"defence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"manaRegen":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":-2,"raw":-6,"max":-8},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":20,"raw":20,"max":40},"baseThunderDamage":{"min":60,"raw":60,"max":80},"baseWaterDamage":{"min":60,"raw":60,"max":80},"baseFireDamage":{"min":60,"raw":60,"max":80}},"rarity":"legendary"},"Helminth":{"internalName":"Helminth","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":430,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"warrior","dexterity":65},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"lifeSteal":{"min":150,"raw":500,"max":650},"rawAttackSpeed":1,"thunderDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-45,"raw":-35,"max":-24},"airDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":199}},"rarity":"rare"},"Acidosis":{"internalName":"Acidosis","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":102,"strength":60},"powderSlots":3,"identifications":{"healthRegen":{"min":-36,"raw":-28,"max":-20},"poison":{"min":1935,"raw":6450,"max":8385},"4thSpellCost":{"min":-4,"raw":-15,"max":-19},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":9,"raw":30,"max":39},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3600,"baseEarthDefence":125,"baseWaterDefence":-150,"baseFireDefence":125},"rarity":"rare"},"Expedition's End":{"internalName":"Expedition's End","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":102,"intelligence":40,"defence":65},"powderSlots":3,"identifications":{"healthRegenRaw":{"min":45,"raw":150,"max":195},"xpBonus":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":6,"raw":20,"max":26},"rawThunderDamage":{"min":-1300,"raw":-1000,"max":-700},"rawWaterDamage":{"min":30,"raw":100,"max":130},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":4750,"baseThunderDefence":-150,"baseWaterDefence":100,"baseFireDefence":100},"rarity":"rare"},"Unshackled Spirit":{"internalName":"Unshackled Spirit","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":102,"strength":45,"dexterity":35,"defence":35,"agility":45},"dropMeta":{"name":"Aerie of the Recluse","type":"altar","coordinates":[-1746,65,-3069]},"identifications":{"rawIntelligence":-25,"damage":{"min":-32,"raw":-25,"max":-17},"healthRegen":{"min":15,"raw":50,"max":65},"manaSteal":{"min":3,"raw":10,"max":13},"3rdSpellCost":{"min":-5,"raw":-18,"max":-23},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2525,"baseEarthDefence":170,"baseThunderDefence":120,"baseWaterDefence":-200,"baseFireDefence":120,"baseAirDefence":170},"rarity":"rare"},"Danse Macabre":{"internalName":"Danse Macabre","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":738,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"shaman","dexterity":55,"defence":50},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawSpellDamage":{"min":55,"raw":184,"max":239},"healthRegenRaw":{"min":-265,"raw":-204,"max":-143},"rawHealth":{"min":-1495,"raw":-1150,"max":-805},"manaSteal":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":-2,"raw":-7,"max":-9},"rawAttackSpeed":1},"base":{"baseThunderDamage":{"min":24,"raw":24,"max":214},"baseFireDamage":{"min":97,"raw":97,"max":141}},"rarity":"rare"},"Flagellant":{"internalName":"Flagellant","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":780,"dropRestriction":"normal","requirements":{"level":102,"classRequirement":"shaman","strength":45,"defence":45,"agility":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"healthRegenRaw":{"min":-299,"raw":-230,"max":-161},"poison":{"min":3150,"raw":10500,"max":13650},"lifeSteal":{"min":152,"raw":505,"max":657},"damage":{"min":9,"raw":30,"max":39},"raw3rdSpellCost":{"min":7,"raw":5,"max":4}},"base":{"baseDamage":{"min":55,"raw":55,"max":145},"baseEarthDamage":{"min":105,"raw":105,"max":175},"baseFireDamage":{"min":95,"raw":95,"max":185},"baseAirDamage":{"min":85,"raw":85,"max":195}},"rarity":"legendary"},"Ancient Currency":{"internalName":"Ancient Currency","type":"ingredient","requirements":{"level":102,"skills":["tailoring"]},"icon":{"format":"legacy","value":"400:0"},"identifications":{"lootQuality":{"min":4,"raw":4,"max":5},"lootBonus":{"min":5,"raw":5,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Scared Eye","coords":[855,75,-583,60]},{"name":"Shrieking Observer","coords":null},{"name":"Nucleated Observer","coords":null}]},"Keratoconus":{"internalName":"Keratoconus","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":101,"intelligence":65,"agility":65},"powderSlots":3,"lore":"The unearthly wood of eyestalk is durable, but with horrific cost. Pieces severed from the trunk continue to collect and cultivate the essence of abandoned eyes, and the unfortunate wearer becomes a catalyst for growth.","identifications":{"rawIntelligence":15,"rawDefence":-10,"healthRegen":{"min":-65,"raw":-50,"max":-35},"manaRegen":{"min":3,"raw":10,"max":13},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"thunderDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":11,"raw":35,"max":46},"waterDefence":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":3900,"baseThunderDefence":-150,"baseFireDefence":-150,"baseAirDefence":250},"rarity":"legendary"},"Panic Zealot":{"internalName":"Panic Zealot","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":490,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":101,"classRequirement":"shaman","agility":85},"majorIds":{"Furious Effigy":"+Furious Effigy: Totem effects are twice as fast, but duration is halved."},"powderSlots":3,"lore":"They must know what you went through. They must suffer the same as you did.","dropMeta":{"name":"Bottomless Pit","type":"altar","coordinates":[1332,11,-516]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawHealth":{"min":-6500,"raw":-5000,"max":-3500},"1stSpellCost":{"min":-43,"raw":-143,"max":-186},"2ndSpellCost":{"min":-43,"raw":-143,"max":-186},"3rdSpellCost":{"min":-43,"raw":-143,"max":-186},"rawAttackSpeed":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":54,"raw":54,"max":60},"baseAirDamage":{"min":48,"raw":48,"max":66}},"rarity":"fabled"},"Optic Fiber":{"internalName":"Optic Fiber","type":"ingredient","requirements":{"level":101,"skills":["armouring"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"reflection":{"min":9,"raw":9,"max":18}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-53000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Giant Sword Shard":{"internalName":"Giant Sword Shard","type":"ingredient","requirements":{"level":101,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"452:0"},"identifications":{"rawAttackSpeed":{"min":-2,"raw":-2,"max":-2},"rawMainAttackDamage":{"min":120,"raw":120,"max":130},"rawDefence":{"min":4,"raw":4,"max":6},"mainAttackDamage":{"min":35,"raw":35,"max":45}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":35,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":20,"agilityRequirement":0}},"Fragmentation":{"internalName":"Fragmentation","type":"ingredient","requirements":{"level":101,"skills":["armouring","woodworking"]},"icon":{"format":"legacy","value":"97:4"},"identifications":{"rawAgility":{"min":6,"raw":6,"max":8},"rawHealth":{"min":-59,"raw":-59,"max":-31}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-74000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Panic Zealot","coords":null}]},"Void Particulates":{"internalName":"Void Particulates","type":"ingredient","requirements":{"level":101,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"263:0"},"identifications":{"gatherXpBonus":{"min":4,"raw":4,"max":4},"spellDamage":{"min":11,"raw":11,"max":11},"rawStrength":{"min":-2,"raw":-2,"max":-2},"rawDexterity":{"min":-2,"raw":-2,"max":-2},"rawIntelligence":{"min":-2,"raw":-2,"max":-2},"rawDefence":{"min":-2,"raw":-2,"max":-2},"rawAgility":{"min":-2,"raw":-2,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pegasus","coords":[[1015,133,-4850,55],[921,155,-4789,55],[1302,190,-4476,55]]},{"name":"Rukh","coords":[[1014,108,-4718,40],[1090,111,-4659,30]]},{"name":"Minokawa","coords":[[1251,151,-4560,70],[1158,147,-4431,70],[899,71,-4689,55]]},{"name":"Void Spirula","coords":false},{"name":"Umbral Singularity","coords":false}]},"Revered Silver Mask of Legendary Victory":{"internalName":"Revered Silver Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":101},"lore":"This ornate decorative mask, fashioned from pure silver, is awarded to those who have spent an unnecessary amount of time completing the Legendary Challenge and broken the mold by continuing to spend an unnecessary amount of time completing the Legendary Challenge.","icon":{"format":"skin","value":"3b1acfb3756a41dd0d55c081fc9048dc1919bd771158f91baa66ea48efa26bdb"},"rarity":"legendary"},"Misalignment":{"internalName":"Misalignment","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":101,"strength":35,"dexterity":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":3,"rawIntelligence":3,"manaRegen":{"min":1,"raw":4,"max":5},"earthDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":3,"raw":10,"max":13}},"rarity":"unique"},"Pyrrhic Respite":{"internalName":"Pyrrhic Respite","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":101,"dexterity":40,"intelligence":55,"defence":55},"majorIds":{"Gentle Glow":"+Gentle Glow: Orphion's Pulse and Fluid Healing restore more health, especially to allies, but at a slower speed."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawStrength":-12,"rawIntelligence":6,"rawDefence":12,"rawSpellDamage":{"min":-234,"raw":-180,"max":-126},"healthRegen":{"min":11,"raw":35,"max":46},"lifeSteal":{"min":-390,"raw":-300,"max":-210},"waterDamage":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":4650,"baseEarthDefence":100,"baseAirDefence":100},"rarity":"fabled"},"Ysengrim":{"internalName":"Ysengrim","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":675,"dropRestriction":"never","requirements":{"level":101,"classRequirement":"assassin","dexterity":50,"defence":65},"majorIds":{"Soul Eater":"+Soul Eater: Devour and Harvester grant double mana. Decreases maximum marks by 1."},"powderSlots":1,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawHealth":{"min":405,"raw":1350,"max":1755},"lifeSteal":{"min":135,"raw":450,"max":585},"manaRegen":{"min":-5,"raw":-4,"max":-3},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":25,"raw":25,"max":75},"baseThunderDamage":{"min":0,"raw":0,"max":200},"baseFireDamage":{"min":250,"raw":250,"max":350}},"rarity":"fabled"},"Black Space":{"internalName":"Black Space","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":101},"majorIds":{"Find Thyself":"+Find Thyself: Masquerade now grants 75 Mana after switching between Masks 3 times."},"lore":"Give yourself to darkness, and in darkness, answers will take shape.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"neutralDamage":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"walkSpeed":{"min":2,"raw":8,"max":10},"elementalDefence":{"min":-13,"raw":-10,"max":-7}},"rarity":"fabled"},"Gravitron":{"internalName":"Gravitron","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":101,"strength":50,"agility":30},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawIntelligence":-6,"mainAttackDamage":{"min":2,"raw":8,"max":10},"sprint":{"min":3,"raw":10,"max":13},"knockback":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":525,"baseEarthDefence":30,"baseAirDefence":30},"rarity":"legendary"},"Oblivion":{"internalName":"Oblivion","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":816,"dropRestriction":"normal","requirements":{"level":101,"classRequirement":"assassin","dexterity":75,"intelligence":65},"powderSlots":4,"lore":"This sacrificial kris, fallen from the peak of the Tower of Ascension, is completely hollow. To wield it is to invite to yourself the same hollowness. To become such an aberration, to unwrite yourself in pursuit of power...it must be fed of its wielder til only the barest existence remains.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawDexterity":15,"rawSpellDamage":{"min":74,"raw":245,"max":319},"manaRegen":{"min":-39,"raw":-30,"max":-21},"manaSteal":{"min":5,"raw":15,"max":20},"raw2ndSpellCost":{"min":-6,"raw":-20,"max":-26},"exploding":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":1,"raw":1,"max":200},"baseThunderDamage":{"min":500,"raw":500,"max":999},"baseWaterDamage":{"min":500,"raw":500,"max":999}},"rarity":"mythic"},"Wasteland Azalea":{"internalName":"Wasteland Azalea","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":101,"strength":45,"agility":50},"powderSlots":3,"identifications":{"rawSpellDamage":{"min":42,"raw":140,"max":182},"poison":{"min":1013,"raw":3375,"max":4388},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"rawAttackSpeed":-1,"sprint":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":8,"raw":25,"max":33},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2750,"baseEarthDefence":75,"baseFireDefence":-75},"rarity":"unique"},"Lanternfly Leg":{"internalName":"Lanternfly Leg","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":101,"classRequirement":"assassin","defence":50,"agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawHealth":{"min":300,"raw":1000,"max":1300},"raw2ndSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":9,"raw":30,"max":39},"jumpHeight":1,"fireDamage":{"min":7,"raw":23,"max":30},"airDamage":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":150,"raw":150,"max":210}},"rarity":"rare"},"Tranquility":{"internalName":"Tranquility","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":101,"intelligence":45,"defence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawStrength":-3,"rawDexterity":-3,"spellDamage":{"min":2,"raw":5,"max":7},"healthRegen":{"min":5,"raw":17,"max":22},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":550,"baseWaterDefence":50,"baseFireDefence":50},"rarity":"unique"},"Anxiolytic":{"internalName":"Anxiolytic","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":101,"strength":35,"dexterity":40,"intelligence":50,"defence":35,"agility":50},"powderSlots":4,"dropMeta":{"name":"Bottomless Pit","type":"altar","coordinates":[1332,11,-516]},"identifications":{"rawDexterity":15,"rawIntelligence":10,"rawAgility":12,"manaRegen":{"min":7,"raw":24,"max":31},"raw1stSpellCost":{"min":5,"raw":4,"max":3},"raw3rdSpellCost":{"min":5,"raw":4,"max":3},"raw4thSpellCost":{"min":5,"raw":4,"max":3},"sprintRegen":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":3880,"baseEarthDefence":-175,"baseThunderDefence":125,"baseWaterDefence":150,"baseFireDefence":-125,"baseAirDefence":150},"rarity":"legendary"},"Grafted Eyestalk":{"internalName":"Grafted Eyestalk","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":101,"defence":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawDefence":4,"rawAgility":4,"spellDamage":{"min":2,"raw":8,"max":10},"healthRegen":{"min":-16,"raw":-12,"max":-8},"raw1stSpellCost":-1},"base":{"baseHealth":-600,"baseEarthDefence":-40,"baseThunderDefence":-40},"rarity":"unique"},"Dissociation":{"internalName":"Dissociation","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":101},"dropMeta":{"name":"Bottomless Pit","type":"altar","coordinates":[1332,11,-516]},"identifications":{"rawStrength":-35,"rawIntelligence":-20,"rawDefence":-35,"mainAttackDamage":{"min":18,"raw":60,"max":78},"rawSpellDamage":{"min":69,"raw":231,"max":300},"rawHealth":{"min":1065,"raw":3550,"max":4615},"manaRegen":{"min":4,"raw":12,"max":16},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"thunderDefence":{"min":23,"raw":75,"max":98},"airDefence":{"min":23,"raw":75,"max":98}},"rarity":"rare"},"Immolation":{"internalName":"Immolation","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":1020,"dropRestriction":"normal","requirements":{"level":101,"classRequirement":"shaman","defence":75,"agility":75},"powderSlots":3,"lore":"The act of self-immolation is never taken lightly, and is always a sacrifice. This idol was carved to honor one such instance, in which a master of flame burned through his life force in a final act of heroism—purging an encroaching army of the undead, saving the people of the jungle from destruction.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawDefence":75,"rawAgility":75,"healthRegen":{"min":-234,"raw":-180,"max":-126},"healingEfficiency":{"min":-650,"raw":-500,"max":-350},"3rdSpellCost":{"min":-6,"raw":-20,"max":-26},"fireDamage":{"min":14,"raw":45,"max":59},"airDamage":{"min":14,"raw":45,"max":59}},"base":{"baseFireDamage":{"min":205,"raw":205,"max":475},"baseAirDamage":{"min":325,"raw":325,"max":355}},"rarity":"mythic"},"Cannonade":{"internalName":"Cannonade","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"defence":115},"powderSlots":2,"lore":"An impenetrable fortress’ greatest strength is psychological, a mythos built on the backs of a thousand attackers it has withstood. Your greatest strength is the belief that not one of those thousand could hold a candle to you.","identifications":{"rawStrength":15,"damage":{"min":9,"raw":31,"max":40},"walkSpeed":{"min":-45,"raw":-35,"max":-24},"exploding":{"min":14,"raw":46,"max":60},"healingEfficiency":{"min":-25,"raw":-19,"max":-13},"rawFireDamage":{"min":65,"raw":215,"max":280},"elementalDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":5000,"baseThunderDefence":-175,"baseFireDefence":125},"rarity":"legendary"},"Etiolation":{"internalName":"Etiolation","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"dexterity":50,"agility":65},"lore":"Despite the absence of natural light, in the deepest reaches of the Void grows foliage and flora capable of sustaining itself by absorbing latent energy. Such an accomplishment is to be admired, ideally from a keen distance.","identifications":{"rawDexterity":8,"healthRegen":{"min":-35,"raw":-27,"max":-19},"lifeSteal":{"min":-325,"raw":-250,"max":-175},"manaSteal":{"min":3,"raw":10,"max":13},"damage":{"min":5,"raw":15,"max":20},"rawDamage":{"min":52,"raw":173,"max":225},"walkSpeed":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":3500,"baseThunderDefence":175,"baseFireDefence":-200,"baseAirDefence":175},"rarity":"legendary"},"Darkened Mind":{"internalName":"Darkened Mind","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"dexterity":65,"intelligence":45},"powderSlots":3,"identifications":{"rawDexterity":5,"rawIntelligence":5,"manaSteal":{"min":3,"raw":10,"max":13},"1stSpellCost":{"min":-4,"raw":-12,"max":-16},"healingEfficiency":{"min":-26,"raw":-20,"max":-14},"rawThunderDamage":{"min":42,"raw":140,"max":182},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2950,"baseThunderDefence":120,"baseWaterDefence":90},"rarity":"set"},"Titanomachia":{"internalName":"Titanomachia","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":100,"strength":65,"defence":70},"majorIds":{"Dauntless Inferno":"+Dauntless Inferno: Courage casts a series of 5 infernos, dealing 125% each, and grants 20% resistance instead of a damage boost."},"powderSlots":2,"lore":"This is futile, a fight against odds so great you may as well challenge the force of fate itself. Yet there is pride to be found in delaying the inevitable, so stand your ground and fight to the end.","identifications":{"rawStrength":12,"rawDefence":12,"criticalDamageBonus":{"min":-200,"raw":-154,"max":-108},"healthRegenRaw":{"min":65,"raw":215,"max":280},"rawAttackSpeed":{"min":-99,"raw":-76,"max":-53},"fireDamage":{"min":11,"raw":37,"max":48},"rawFireMainAttackDamage":{"min":450,"raw":1500,"max":1950},"rawFireDamage":{"min":84,"raw":281,"max":365}},"base":{"baseHealth":5250,"baseEarthDefence":150,"baseThunderDefence":-250,"baseFireDefence":150},"rarity":"fabled"},"Insignia":{"internalName":"Insignia","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":100,"dexterity":75,"defence":65},"majorIds":{"Superconductor":"+Superconductor: Chain Lightning channels three massive lightning bolts through you, arcing to enemies within 8 blocks for 225% and stunning them for 1s. You take 15% more damage for 4s."},"powderSlots":4,"lore":"To wear the mark is more than a show of allegiance. It is a willingness to channel the might of the gods at whatever cost, as the fate of the battle is worth more than surviving to see its end.","identifications":{"damage":{"min":7,"raw":23,"max":30},"manaSteal":{"min":2,"raw":8,"max":10},"raw3rdSpellCost":{"min":10,"raw":8,"max":6},"sprint":{"min":-18,"raw":-14,"max":-10},"rawThunderDamage":{"min":58,"raw":192,"max":250}},"base":{"baseHealth":3750,"baseThunderDefence":175,"baseWaterDefence":-150,"baseFireDefence":125},"rarity":"fabled"},"Resolution":{"internalName":"Resolution","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"intelligence":110},"powderSlots":2,"lore":"In the moments before an all but inescapable death, time slows down, and the pace of battle becomes yours. By mastering the escape, you can face death on command, reaping the benefits at will before the reaper reaches you.","identifications":{"rawStrength":3,"rawDexterity":3,"rawDefence":3,"rawAgility":3,"spellDamage":{"min":6,"raw":20,"max":26},"lifeSteal":{"min":-279,"raw":-215,"max":-150},"rawMaxMana":{"min":23,"raw":77,"max":100},"healingEfficiency":{"min":-39,"raw":-30,"max":-21},"rawWaterSpellDamage":{"min":60,"raw":200,"max":260}},"base":{"baseHealth":3500,"baseEarthDefence":75,"baseThunderDefence":75,"baseWaterDefence":125,"baseFireDefence":75,"baseAirDefence":75},"rarity":"legendary"},"Windborne":{"internalName":"Windborne","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"agility":105},"powderSlots":2,"lore":"Orders, cannonfire, calls for surrender—the wind carries all. To ride the winds is to harness the lifeblood of battle, infiltrating up the veins of command with mere token resistance.","identifications":{"rawAgility":20,"reflection":{"min":14,"raw":46,"max":60},"rawAttackSpeed":1,"walkSpeed":{"min":7,"raw":23,"max":30},"rawAirDamage":{"min":58,"raw":192,"max":250},"rawAirMainAttackDamage":{"min":65,"raw":215,"max":280}},"base":{"baseHealth":3100,"baseEarthDefence":-125,"baseAirDefence":175},"rarity":"legendary"},"Mazeweaver":{"internalName":"Mazeweaver","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"strength":105},"powderSlots":3,"lore":"The strong can hammer foe and nature alike into submission, waging war with indiscriminate force. The truly powerful pit them against each other on a whim, weaving stone and verdure into an elaborate web of attrition that beats with the heart of an entire world. What is an enemy compared to all the might of the Earth?","identifications":{"rawStrength":35,"rawMainAttackDamage":{"min":131,"raw":435,"max":566},"criticalDamageBonus":{"min":-18,"raw":-14,"max":-10},"manaSteal":{"min":4,"raw":13,"max":17},"rawAttackSpeed":-1,"earthDamage":{"min":8,"raw":27,"max":35},"airDefence":{"min":-30,"raw":-23,"max":-16}},"base":{"baseHealth":3375,"baseEarthDefence":175,"baseAirDefence":-175},"rarity":"legendary"},"Antebellum":{"internalName":"Antebellum","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"dexterity":110},"powderSlots":3,"lore":"Only the naive celebrate a ceasefire. Not a second wasted, a merciless arms race against the inevitability of war has left you ready to unleash hell the moment the armistice breaks.","identifications":{"rawDexterity":15,"rawMainAttackDamage":{"min":52,"raw":173,"max":225},"rawSpellDamage":{"min":39,"raw":131,"max":170},"manaSteal":{"min":3,"raw":11,"max":14},"1stSpellCost":{"min":18,"raw":14,"max":10},"3rdSpellCost":{"min":27,"raw":21,"max":15},"rawThunderDamage":{"min":46,"raw":154,"max":200}},"base":{"baseHealth":3300,"baseThunderDefence":150},"rarity":"legendary"},"Cerberus":{"internalName":"Cerberus","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":368,"dropRestriction":"never","requirements":{"level":100,"classRequirement":"mage","dexterity":60,"defence":65},"majorIds":{"Meteor Crash":"+Meteor Crash: Burning Sigil deals more damage in a massively increased radius, but lasts half as long."},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.fire3"}},"identifications":{"rawIntelligence":-8,"rawFireSpellDamage":{"min":69,"raw":231,"max":300},"thunderSpellDamage":{"min":6,"raw":19,"max":25},"manaSteal":{"min":4,"raw":14,"max":18},"4thSpellCost":{"min":39,"raw":30,"max":21},"lootBonus":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseDamage":{"min":50,"raw":50,"max":80},"baseThunderDamage":{"min":30,"raw":30,"max":130},"baseFireDamage":{"min":90,"raw":90,"max":110}},"rarity":"fabled"},"Fog of Creation":{"internalName":"Fog of Creation","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":705,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"archer","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"rawSpellDamage":{"min":42,"raw":140,"max":182},"healthRegenRaw":{"min":60,"raw":200,"max":260},"elementalDefence":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":165,"raw":165,"max":200},"baseEarthDamage":{"min":55,"raw":55,"max":60},"baseThunderDamage":{"min":55,"raw":55,"max":60},"baseWaterDamage":{"min":55,"raw":55,"max":60},"baseFireDamage":{"min":55,"raw":55,"max":60},"baseAirDamage":{"min":55,"raw":55,"max":60}},"rarity":"rare"},"Sky Wood 1":{"internalName":"Refined Sky Wood 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"2f571ca9c902a36e4327bd07285df795e90d213156601762664ce0cd485be74a"},"tier":1},"Voidstone Ingot 1":{"internalName":"Refined Voidstone Ingot 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"61","name":"profession.ingotVoidstone"}},"tier":1},"Voidstone Ingot 3":{"internalName":"Refined Voidstone Ingot 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"61","name":"profession.ingotVoidstone"}},"tier":3},"Voidstone Gem 2":{"internalName":"Refined Voidstone Gem 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"73","name":"profession.gemVoidstone"}},"tier":2},"Starfish Meat 2":{"internalName":"Refined Starfish Meat 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatStar"}},"tier":2},"Starfish Meat 1":{"internalName":"Refined Starfish Meat 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatStar"}},"tier":1},"Starfish Oil 3":{"internalName":"Refined Starfish Oil 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilStar"}},"tier":3},"Voidstone Gem 1":{"internalName":"Refined Voidstone Gem 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"73","name":"profession.gemVoidstone"}},"tier":1},"Voidstone Gem 3":{"internalName":"Refined Voidstone Gem 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"73","name":"profession.gemVoidstone"}},"tier":3},"Sky Wood 3":{"internalName":"Refined Sky Wood 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"2f571ca9c902a36e4327bd07285df795e90d213156601762664ce0cd485be74a"},"tier":3},"Hemp String 1":{"internalName":"Refined Hemp String 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHemp"}},"tier":1},"Sky Wood 2":{"internalName":"Refined Sky Wood 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"2f571ca9c902a36e4327bd07285df795e90d213156601762664ce0cd485be74a"},"tier":2},"Hemp Grains 3":{"internalName":"Refined Hemp Grains 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHemp"}},"tier":3},"Hemp String 2":{"internalName":"Refined Hemp String 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHemp"}},"tier":2},"Sky Paper 3":{"internalName":"Refined Sky Paper 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperSky"}},"tier":3},"Voidstone Ingot 2":{"internalName":"Refined Voidstone Ingot 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"61","name":"profession.ingotVoidstone"}},"tier":2},"Starfish Oil 1":{"internalName":"Refined Starfish Oil 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilStar"}},"tier":1},"Hemp String 3":{"internalName":"Refined Hemp String 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHemp"}},"tier":3},"Sky Paper 1":{"internalName":"Refined Sky Paper 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperSky"}},"tier":1},"Hemp Grains 1":{"internalName":"Refined Hemp Grains 1","type":"material","identified":true,"requirements":{"level":100},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHemp"}},"tier":1},"Hemp Grains 2":{"internalName":"Refined Hemp Grains 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHemp"}},"tier":2},"Sky Paper 2":{"internalName":"Refined Sky Paper 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperSky"}},"tier":2},"Starfish Meat 3":{"internalName":"Refined Starfish Meat 3","type":"material","identified":true,"requirements":{"level":100},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatStar"}},"tier":3},"Darkened Heart":{"internalName":"Darkened Heart","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"intelligence":45,"defence":65},"powderSlots":3,"identifications":{"rawIntelligence":5,"rawDefence":5,"healthRegen":{"min":6,"raw":20,"max":26},"manaRegen":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"rawMaxMana":{"min":9,"raw":31,"max":40},"rawFireDamage":{"min":36,"raw":120,"max":156}},"base":{"baseHealth":4000,"baseWaterDefence":90,"baseFireDefence":120},"rarity":"set"},"Starfish Oil 2":{"internalName":"Refined Starfish Oil 2","type":"material","identified":true,"requirements":{"level":100},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilStar"}},"tier":2},"Psionic Quill":{"internalName":"Psionic Quill","type":"ingredient","requirements":{"level":100,"skills":["armouring","scribing"]},"icon":{"format":"legacy","value":"296:0"},"identifications":{"walkSpeed":{"min":5,"raw":5,"max":6},"thunderDamage":{"min":5,"raw":5,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-107000,"strengthRequirement":0,"dexterityRequirement":20,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Serafite":{"internalName":"Serafite","type":"ingredient","requirements":{"level":100,"skills":["jeweling"]},"icon":{"format":"legacy","value":"199:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"spellDamage":{"min":3,"raw":3,"max":4},"rawHealth":{"min":-150,"raw":-150,"max":-120}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-73000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pegasus","coords":[[1015,133,-4850,55],[921,155,-4789,55],[1302,190,-4476,55]]},{"name":"Rukh","coords":[[1014,108,-4718,40],[1090,111,-4659,30]]},{"name":"Minokawa","coords":[[1251,151,-4560,70],[1158,147,-4431,70],[899,71,-4689,55]]},{"name":"Void Spirula","coords":false},{"name":"Umbral Singularity","coords":false}]},"Undiscovered Plant":{"internalName":"Undiscovered Plant","type":"ingredient","requirements":{"level":100,"skills":["alchemism"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"rawHealth":{"min":1400,"raw":1400,"max":1550},"gatherXpBonus":{"min":5,"raw":5,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Borange Fluff":{"internalName":"Borange Fluff","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","woodworking","armouring","tailoring","jeweling","cooking","alchemism","scribing"]},"icon":{"format":"skin","value":"a0fb4e6a61322a4185e7b41a643f6a4cb69a317ebe39396fb27627e3614c69"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":15,"notTouching":15},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Orange Wybel","coords":null}]},"Urdar's Stone":{"internalName":"Urdar's Stone","type":"ingredient","requirements":{"level":100,"skills":["woodworking","tailoring"]},"icon":{"format":"skin","value":"96c33b2b3bf5d3f0582c2be3bcdbf3245bdcc4263b665238fbd1bf486bcc"},"identifications":{"earthDamage":{"min":15,"raw":15,"max":17},"fireDefence":{"min":-24,"raw":-24,"max":-20}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-140000,"strengthRequirement":25,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Adamastor","coords":null}]},"Wind Ornament":{"internalName":"Wind Ornament","type":"ingredient","requirements":{"level":100,"skills":["jeweling"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"walkSpeed":{"min":5,"raw":5,"max":6},"earthDefence":{"min":-10,"raw":-10,"max":-8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":18},"droppedBy":[{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Minokawa","coords":[[1251,151,-4560,70],[1158,147,-4431,70],[899,71,-4689,55]]},{"name":"Sky Phoenix","coords":null}]},"Retinal Membrane":{"internalName":"Retinal Membrane","type":"ingredient","requirements":{"level":100,"skills":["scribing"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"lootQuality":{"min":1,"raw":1,"max":1}},"tier":0,"consumableOnlyIDs":{"duration":-95,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Scared Eye","coords":[855,75,-583,60]},{"name":"Blinders","coords":[837,80,-540,100]}]},"Peculiar Oddity":{"internalName":"Peculiar Oddity","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"10691b561df4911c4926344668d74171c990901ebda62f1a6f89d8a437c12ae4"},"identifications":{"rawSpellDamage":{"min":50,"raw":50,"max":50}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-60,"right":-60,"above":-120,"under":-120,"touching":120,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-115000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Deep Ice Core":{"internalName":"Deep Ice Core","type":"ingredient","requirements":{"level":100,"skills":["tailoring","armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"332:0"},"identifications":{"spellDamage":{"min":5,"raw":5,"max":6},"waterDamage":{"min":14,"raw":14,"max":16},"fireDefence":{"min":-24,"raw":-24,"max":-16}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-156000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":37,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Minokawa","coords":[[1251,151,-4560,70],[1158,147,-4431,70],[899,71,-4689,55]]}]},"Aspect of the Void":{"internalName":"Aspect of the Void","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","scribing"]},"icon":{"format":"legacy","value":"383:58"},"tier":3,"consumableOnlyIDs":{"duration":-275,"charges":0},"ingredientPositionModifiers":{"left":110,"right":110,"above":110,"under":110,"touching":-110,"notTouching":15},"itemOnlyIDs":{"durabilityModifier":-160000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Umbral Singularity","coords":false}]},"Vista Mist":{"internalName":"Vista Mist","type":"ingredient","requirements":{"level":100,"skills":["alchemism"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"manaRegen":{"min":6,"raw":6,"max":8},"walkSpeed":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Dogun Alert Sigil":{"internalName":"Dogun Alert Sigil","type":"ingredient","requirements":{"level":100,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"152:0"},"identifications":{"rawFireSpellDamage":{"min":55,"raw":55,"max":60},"healthRegenRaw":{"min":58,"raw":58,"max":64},"rawDefence":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":35,"agilityRequirement":0}},"Flow of Fate":{"internalName":"Flow of Fate","type":"ingredient","requirements":{"level":100,"skills":["alchemism"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"waterDamage":{"min":16,"raw":16,"max":20},"lifeSteal":{"min":-100,"raw":-100,"max":-90}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Abyss Rukh","coords":false},{"name":"Abyss Rukh","coords":null}]},"Green Opal":{"internalName":"Green Opal","type":"ingredient","requirements":{"level":100,"skills":["jeweling"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"earthDefence":{"min":4,"raw":4,"max":6},"healthRegenRaw":{"min":35,"raw":35,"max":40}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Angel Of Nature","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]}]},"Cataratite":{"internalName":"Cataratite","type":"ingredient","requirements":{"level":100,"skills":["armouring","jeweling"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"healthRegen":{"min":-6,"raw":-6,"max":-4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":39000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Eyebawl","coords":[837,80,-540,100]},{"name":"Watchers","coords":[837,80,-540,100]}]},"Dark Iris":{"internalName":"Dark Iris","type":"ingredient","requirements":{"level":100,"skills":["alchemism"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"xpBonus":{"min":-15,"raw":-15,"max":-15},"healthRegenRaw":{"min":100,"raw":100,"max":130}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Longleg Gripper","coords":null},{"name":"Blinder","coords":[837,80,-540,100]},{"name":"Blinders","coords":[837,80,-540,100]},{"name":"Festering Titan","coords":null},{"name":"Caustic Crystallite","coords":null}]},"Engored Oculus":{"internalName":"Engored Oculus","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","tailoring"]},"icon":{"format":"skin","value":"743ecd8e17a3daa665db3db082272c6297798ebb50964026ce7f85458bf5566c"},"identifications":{"lifeSteal":{"min":120,"raw":120,"max":180},"walkSpeed":{"min":8,"raw":8,"max":11},"healthRegen":{"min":-24,"raw":-24,"max":-20}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":18,"dexterityRequirement":-10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Longleg Gripper","coords":null},{"name":"Blinder","coords":[837,80,-540,100]},{"name":"Scared Eye","coords":[855,75,-583,60]},{"name":"Blinders","coords":[837,80,-540,100]}]},"Dark Energy":{"internalName":"Dark Matter","type":"ingredient","requirements":{"level":100,"skills":["woodworking"]},"icon":{"format":"legacy","value":"173:0"},"identifications":{"rawMainAttackDamage":{"min":90,"raw":90,"max":100},"manaRegen":{"min":-1,"raw":-1,"max":-1}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Void Spirula","coords":false}]},"Claw of Demise":{"internalName":"Claw of Demise","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"rawDefence":{"min":3,"raw":3,"max":5},"fireDamage":{"min":23,"raw":23,"max":26},"healthRegen":{"min":-20,"raw":-20,"max":-15}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":-65},"itemOnlyIDs":{"durabilityModifier":-165000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":35,"agilityRequirement":0}},"Crystallized Organ":{"internalName":"Crystallized Organ","type":"ingredient","requirements":{"level":100,"skills":["cooking"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"lootQuality":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Shrieking Observer","coords":null},{"name":"Face of Fear","coords":[837,80,-540,100]},{"name":"Nucleated Observer","coords":null},{"name":"Refusal of Death","coords":null},{"name":"§Fool Eater","coords":null}]},"Black Hole":{"internalName":"Black Hole","type":"ingredient","requirements":{"level":100,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"173:0"},"identifications":{"rawAttackSpeed":{"min":1,"raw":1,"max":1},"mainAttackDamage":{"min":-20,"raw":-20,"max":-15}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":65,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Void Spirula","coords":false}]},"Obsidian-Framed Helmet":{"internalName":"Obsidian-Framed Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"dexterity":40,"defence":40},"powderSlots":2,"lore":"Made of dark minerals and adorned with pure obsidian, this ornately-crafted helmet is given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawIntelligence":-30,"rawAgility":-30,"rawMainAttackDamage":2000,"lifeSteal":450,"manaSteal":12,"rawAttackSpeed":-14,"earthDamage":15,"thunderDamage":15,"fireDamage":15,"earthDefence":20,"thunderDefence":20,"fireDefence":20},"base":{"baseHealth":5400,"baseEarthDefence":225,"baseThunderDefence":225,"baseFireDefence":225},"rarity":"legendary"},"Chaos-Woven Greaves":{"internalName":"Chaos-Woven Greaves","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"dexterity":40,"intelligence":40},"powderSlots":2,"lore":"With threads of fundamentally opposing magic delicately woven together, these ornately-crafted greaves are given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDefence":-30,"rawAgility":-30,"mainAttackDamage":50,"spellDamage":50,"poison":7250,"manaSteal":12,"earthDamage":30,"thunderDamage":30,"waterDamage":30,"earthDefence":5,"thunderDefence":5,"waterDefence":5},"base":{"baseHealth":4200,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":100},"rarity":"legendary"},"Brilliant Diamond Chestplate":{"internalName":"Brilliant Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100},"powderSlots":3,"base":{"baseHealth":2600},"rarity":"common"},"Prism":{"internalName":"Prism","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":100,"quest":"The Realm of Light","strength":25,"dexterity":25,"intelligence":25,"defence":25,"agility":25},"lore":"The jewel on this ring is found very rarely deep beneath the Light Forest. It has the power to manipulate light itself.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"reflection":{"min":2,"raw":5,"max":7},"elementalDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-1200,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Medeis":{"internalName":"Medeis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"dexterity":40,"intelligence":40,"defence":40},"powderSlots":3,"identifications":{"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"spellDamage":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-97,"raw":-75,"max":-52},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":-97,"raw":-75,"max":-52}},"base":{"baseHealth":2950,"baseEarthDefence":-100,"baseThunderDefence":75,"baseWaterDefence":75,"baseFireDefence":75,"baseAirDefence":-100},"rarity":"unique"},"Abrasion":{"internalName":"Abrasion","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":100},"lore":"\"The fractures have ground the land to dust, our home to ruin, and our people to nothing.\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-48,"raw":-37,"max":-26},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDefence":40,"baseFireDefence":40},"rarity":"fabled"},"Rhythm of the Seasons":{"internalName":"Rhythm of the Seasons","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":512,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"warrior","strength":80,"defence":60},"majorIds":{"Rally":"+Rally: Charge heals you by 10% and nearby allies by 15% on impact, but becomes harmless."},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawDefence":12,"healthRegenRaw":{"min":-858,"raw":-660,"max":-462},"rawHealth":{"min":540,"raw":1800,"max":2340},"manaRegen":{"min":5,"raw":18,"max":23},"healingEfficiency":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseEarthDamage":{"min":100,"raw":100,"max":140}},"rarity":"fabled"},"Skidbladnir":{"internalName":"Skidbladnir","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"agility":70},"powderSlots":3,"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"mainAttackDamage":-35,"rawSpellDamage":200,"healthRegenRaw":200,"walkSpeed":35,"sprintRegen":35,"airDamage":35},"base":{"baseHealth":3500,"baseAirDefence":180},"rarity":"legendary"},"Elysium-Engraved Aegis":{"internalName":"Elysium-Engraved Aegis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"defence":40,"agility":40},"powderSlots":2,"lore":"Dedicated to a place of courage revered by all warriors, this ornately-crafted chestplate is given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":-30,"rawIntelligence":-30,"mainAttackDamage":15,"rawMainAttackDamage":500,"healthRegenRaw":275,"walkSpeed":20,"earthDamage":20,"fireDamage":20,"airDamage":20,"earthDefence":15,"fireDefence":15,"airDefence":15},"base":{"baseHealth":4200,"baseEarthDefence":200,"baseFireDefence":200,"baseAirDefence":200},"rarity":"legendary"},"The End":{"internalName":"The End","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":784,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"shaman","strength":55,"agility":55},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawAgility":10,"mainAttackDamage":{"min":11,"raw":35,"max":46},"rawMainAttackDamage":{"min":110,"raw":365,"max":475},"rawSpellDamage":{"min":-273,"raw":-210,"max":-147},"lifeSteal":{"min":135,"raw":450,"max":585},"walkSpeed":{"min":8,"raw":25,"max":33},"waterDefence":{"min":-58,"raw":-45,"max":-31}},"base":{"baseEarthDamage":{"min":260,"raw":260,"max":290},"baseAirDamage":{"min":235,"raw":235,"max":260}},"rarity":"legendary"},"Diaminar":{"internalName":"Diaminar","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":374,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"warrior","defence":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":8,"rawHealth":{"min":450,"raw":1500,"max":1950},"lifeSteal":{"min":95,"raw":315,"max":410},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"weakenEnemy":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-18,"raw":-14,"max":-10},"thunderDamage":{"min":-18,"raw":-14,"max":-10},"waterDamage":{"min":-18,"raw":-14,"max":-10},"airDamage":{"min":-18,"raw":-14,"max":-10}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseFireDamage":{"min":335,"raw":335,"max":415}},"rarity":"unique"},"Compliance":{"internalName":"Compliance","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":100,"dexterity":35,"intelligence":35},"lore":"\"All of our faith, all of our worship, and we were rewarded with the apocalypse.\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"lifeSteal":{"min":58,"raw":192,"max":250},"manaRegen":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":700,"baseEarthDefence":100,"baseFireDefence":60,"baseAirDefence":80},"rarity":"fabled"},"Anya's Penumbra":{"internalName":"Anya's Penumbra","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"lore":"\"The lightest light will never defeat the darkest dark. Only those who understand both can survive.\"","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":12,"raw2ndSpellCost":{"min":7,"raw":5,"max":4}},"base":{"baseThunderDefence":30,"baseWaterDefence":30},"rarity":"fabled"},"Xebec":{"internalName":"Xebec","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"intelligence":80},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"raw1stSpellCost":-2,"raw2ndSpellCost":-2,"raw3rdSpellCost":-2,"raw4thSpellCost":-2},"base":{"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":60,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"legendary"},"Infused Hive Relik":{"internalName":"Infused Hive Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":688,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"shaman","quest":"The Qira Hive"},"powderSlots":5,"lore":"Deceptively plain-looking, this relik has been infused with energy from all five known elements. The head gleams in a spectrum of colors.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"manaRegen":5,"manaSteal":5,"elementalDamage":20},"base":{"baseDamage":{"min":260,"raw":260,"max":290}},"rarity":"legendary"},"Gaping Cavity":{"internalName":"Gaping Cavity","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"dexterity":10},"powderSlots":3,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"identifications":{"lifeSteal":1200,"manaSteal":16},"base":{"baseFireDefence":-80},"rarity":"legendary"},"Infused Hive Dagger":{"internalName":"Infused Hive Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":575,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"assassin","quest":"The Qira Hive"},"powderSlots":5,"lore":"Deceptively plain-looking, this dagger has been infused with energy from all five known elements. It leaves afterimages that pulsate in a spectrum of colors.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"manaRegen":5,"manaSteal":5,"elementalDamage":20},"base":{"baseDamage":{"min":200,"raw":200,"max":260}},"rarity":"legendary"},"Timeworn Tassets":{"internalName":"Timeworn Tassets","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":100,"strength":45,"agility":60},"powderSlots":2,"identifications":{"rawStrength":15,"rawAirMainAttackDamage":{"min":600,"raw":2000,"max":2600},"rawThunderMainAttackDamage":{"min":-1300,"raw":-1000,"max":-700},"lifeSteal":{"min":75,"raw":250,"max":325},"rawAttackSpeed":{"min":-65,"raw":-50,"max":-35},"sprint":{"min":6,"raw":21,"max":27},"knockback":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":3400,"baseEarthDefence":100,"baseThunderDefence":-175,"baseAirDefence":200},"rarity":"legendary"},"Blur":{"internalName":"Blur","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":555,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"assassin","dexterity":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDexterity":9,"rawAgility":9,"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":-27,"raw":-21,"max":-15},"airDamage":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseThunderDamage":{"min":40,"raw":40,"max":90},"baseAirDamage":{"min":55,"raw":55,"max":73}},"rarity":"rare"},"Infused Hive Wand":{"internalName":"Infused Hive Wand","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":344,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"mage","quest":"The Qira Hive"},"powderSlots":5,"lore":"Deceptively plain-looking, this wand has been infused with energy from all five known elements. It subtly glows in a spectrum of colors.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"manaRegen":5,"manaSteal":5,"elementalDamage":20},"base":{"baseDamage":{"min":125,"raw":125,"max":150}},"rarity":"legendary"},"Recalcitrance":{"internalName":"Recalcitrance","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":100,"strength":45},"lore":"\"The omens, the warnings, they were right there, and we stood by and did nothing.\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":6,"healthRegen":{"min":3,"raw":9,"max":12},"rawAttackSpeed":1,"jumpHeight":1,"earthDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":-2600,"baseEarthDefence":65,"baseAirDefence":-45},"rarity":"fabled"},"Photon Projector":{"internalName":"Photon Projector","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":490,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"shaman","intelligence":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"healthRegenRaw":{"min":47,"raw":155,"max":202},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":8,"raw":25,"max":33},"reflection":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":4,"raw":12,"max":16},"waterDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":12,"raw":40,"max":52}},"base":{"baseWaterDamage":{"min":150,"raw":150,"max":177},"baseAirDamage":{"min":150,"raw":150,"max":177}},"rarity":"unique"},"Cyclone":{"internalName":"Cyclone","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":285,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"mage","defence":45,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.air3"}},"identifications":{"rawAgility":10,"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"healthRegenRaw":{"min":-156,"raw":-120,"max":-84},"walkSpeed":{"min":8,"raw":25,"max":33},"knockback":{"min":8,"raw":25,"max":33},"fireDamage":{"min":9,"raw":30,"max":39},"fireDefence":{"min":8,"raw":25,"max":33},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":10,"raw":10,"max":45},"baseAirDamage":{"min":30,"raw":30,"max":99}},"rarity":"unique"},"Hephaestus-Forged Sabatons":{"internalName":"Hephaestus-Forged Sabatons","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","dexterity":40,"defence":40,"agility":40},"powderSlots":2,"lore":"Honoring a mythical dwarven smith lost to the legends, these ornately-crafted boots are given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":-30,"rawIntelligence":-30,"lifeSteal":500,"manaSteal":16,"3rdSpellCost":-36,"walkSpeed":25,"thunderDamage":10,"fireDamage":10,"airDamage":10,"thunderDefence":25,"fireDefence":25,"airDefence":25},"base":{"baseHealth":5400,"baseThunderDefence":250,"baseFireDefence":250,"baseAirDefence":250},"rarity":"legendary"},"Gravity":{"internalName":"Gravity","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":55,"dexterity":55,"intelligence":55,"defence":55,"agility":55},"majorIds":{"Magnet":"+Magnet: Pulls items dropped by mobs towards you."},"powderSlots":5,"lore":"No one knows how this extremely dense chestplate can even logically exist. It is almost paradoxical in nature, and affects its wearers in unfathomable ways.","identifications":{"rawSpellDamage":{"min":-214,"raw":-165,"max":-115},"healthRegenRaw":{"min":84,"raw":280,"max":364},"lifeSteal":{"min":120,"raw":400,"max":520},"manaSteal":{"min":3,"raw":10,"max":13},"thorns":{"min":9,"raw":30,"max":39},"reflection":{"min":9,"raw":30,"max":39},"rawAttackSpeed":-1,"walkSpeed":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":5850,"baseEarthDefence":350,"baseThunderDefence":350,"baseWaterDefence":350,"baseFireDefence":350,"baseAirDefence":350},"rarity":"legendary"},"Pisces":{"internalName":"Pisces","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":60,"intelligence":60},"powderSlots":2,"lore":"The oddly uncomfortable helmet was hand sculpted from a mystic clay found only in the depths of Molten Heights. Not much is known about the substance.","identifications":{"rawStrength":10,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":71,"raw":235,"max":306},"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":4,"raw":12,"max":16},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":3800,"baseEarthDefence":100,"baseWaterDefence":100},"rarity":"legendary"},"Infused Hive Bow":{"internalName":"Infused Hive Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":688,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"archer","quest":"The Qira Hive"},"powderSlots":5,"lore":"Deceptively plain-looking, this bow has been infused with energy from all five known elements. Its string radiates a spectrum of colors.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"manaRegen":5,"manaSteal":5,"elementalDamage":20},"base":{"baseDamage":{"min":250,"raw":250,"max":300}},"rarity":"legendary"},"Anima-Infused Cuirass":{"internalName":"Boreal-Patterned Aegis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","dexterity":40,"intelligence":40,"defence":40},"powderSlots":2,"lore":"Infused with the classical magicks of fire, water, and thunder, this ornately-crafted chestplate is given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":-30,"rawAgility":-30,"manaRegen":10,"raw1stSpellCost":-5,"raw3rdSpellCost":-5,"raw4thSpellCost":-5,"thunderDamage":20,"waterDamage":20,"fireDamage":20,"thunderDefence":15,"waterDefence":15,"fireDefence":15},"base":{"baseHealth":3800,"baseThunderDefence":200,"baseWaterDefence":200,"baseFireDefence":200},"rarity":"legendary"},"Reborn":{"internalName":"Reborn","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":100,"strength":45,"dexterity":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"rawIntelligence":-4,"rawDefence":-2,"rawAgility":-2,"rawMainAttackDamage":{"min":15,"raw":50,"max":65},"earthDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-125},"rarity":"unique"},"Planet Healer":{"internalName":"Planet Healer","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":100},"lore":"The jewels in this necklace naturally draw darkness and corruption into its wearer, purifying the land around them at the cost of their own life.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":-104,"raw":-80,"max":-56},"poison":{"min":855,"raw":2850,"max":3705},"manaSteal":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":2,"raw":7,"max":9}},"rarity":"legendary"},"Sequoia":{"internalName":"Sequoia","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":11,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"mage","strength":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":20,"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":390,"raw":1300,"max":1690},"poison":{"min":4725,"raw":15750,"max":20475},"healingEfficiency":{"min":4,"raw":12,"max":16},"thorns":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-39,"raw":-30,"max":-21},"earthDefence":{"min":6,"raw":20,"max":26},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":9,"raw":9,"max":17}},"rarity":"unique"},"Intensity":{"internalName":"Intensity","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive"},"lore":"The runes carved into this simple gold ring translate into various words meaning power. It amplifies elemental energies in inexplicable ways.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"spellDamage":12,"elementalDamage":12},"base":{"baseHealth":425},"rarity":"legendary"},"The Exploited":{"internalName":"The Exploited","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":559,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"assassin","defence":65,"agility":40},"majorIds":{"Greed":"+Greed: Picking up emeralds heals you and nearby players for 8% max health."},"powderSlots":3,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawMainAttackDamage":135,"spellDamage":-30,"raw4thSpellCost":-15,"walkSpeed":12,"stealing":10},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseFireDamage":{"min":45,"raw":45,"max":65},"baseAirDamage":{"min":25,"raw":25,"max":85}},"rarity":"legendary"},"The Watched":{"internalName":"The Watched","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":719,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"shaman","strength":30,"dexterity":30,"intelligence":30,"defence":30,"agility":30},"powderSlots":3,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"spellDamage":-25,"rawHealth":5000,"raw1stSpellCost":-5,"waterDamage":35,"elementalDefence":25},"base":{"baseEarthDamage":{"min":57,"raw":57,"max":63},"baseThunderDamage":{"min":57,"raw":57,"max":63},"baseWaterDamage":{"min":45,"raw":45,"max":50},"baseFireDamage":{"min":57,"raw":57,"max":63},"baseAirDamage":{"min":57,"raw":57,"max":63}},"rarity":"legendary"},"Writhing Growth":{"internalName":"Writhing Growth","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"strength":49,"dexterity":31,"defence":37},"powderSlots":3,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"identifications":{"rawAgility":-43,"rawMainAttackDamage":2987,"poison":6842,"1stSpellCost":21,"2ndSpellCost":13,"3rdSpellCost":28,"4thSpellCost":21,"thorns":51,"rawAttackSpeed":-6},"base":{"baseHealth":4204,"baseEarthDefence":106,"baseThunderDefence":97,"baseFireDefence":129},"rarity":"legendary"},"Far Cosmos":{"internalName":"Far Cosmos","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":30,"dexterity":30,"intelligence":30,"defence":30,"agility":30},"powderSlots":5,"identifications":{"rawStrength":8,"rawDexterity":8,"rawIntelligence":8,"rawDefence":8,"rawAgility":8,"2ndSpellCost":{"min":-2,"raw":-6,"max":-8}},"base":{"baseHealth":3500},"rarity":"rare"},"Kivilu":{"internalName":"Kivilu","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":635,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"shaman","intelligence":45,"defence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawIntelligence":20,"rawDefence":-20,"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":140,"raw":465,"max":605},"rawHealth":{"min":-5070,"raw":-3900,"max":-2730},"manaRegen":{"min":4,"raw":12,"max":16},"healingEfficiency":{"min":5,"raw":15,"max":20},"waterDamage":{"min":9,"raw":31,"max":40},"fireDamage":{"min":9,"raw":31,"max":40}},"base":{"baseWaterDamage":{"min":0,"raw":0,"max":765},"baseFireDamage":{"min":0,"raw":0,"max":765}},"rarity":"unique"},"Eden-Blessed Guards":{"internalName":"Hephaestus-Forged Greaves","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","intelligence":40,"defence":40,"agility":40},"powderSlots":2,"lore":"Consecrated by Qira herself with blessings unknown to all but her, these ornately-crafted leggings are given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":-30,"rawDexterity":-30,"healthRegen":50,"healthRegenRaw":325,"manaRegen":25,"healingEfficiency":25,"waterDamage":5,"fireDamage":5,"airDamage":5,"waterDefence":30,"fireDefence":30,"airDefence":30},"base":{"baseHealth":4600,"baseWaterDefence":300,"baseFireDefence":300,"baseAirDefence":300},"rarity":"legendary"},"Esteemed Bronze Mask of Legendary Victory":{"internalName":"Esteemed Bronze Mask of Legendary Victory","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"lore":"This decorative mask, crafted of bronze alloys, is awarded only to those who have spent an unnecessary amount of time completing the Legendary Challenge.","icon":{"format":"skin","value":"ce27f538d22b15277ea47e6556ea8fda8a0b1cda3f0c38f52d3fceaa5f0cf570"},"rarity":"legendary"},"Enmity":{"internalName":"Enmity","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":100,"strength":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":17,"raw":55,"max":72},"rawSpellDamage":{"min":16,"raw":53,"max":69},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-23,"raw":-18,"max":-13},"fireDefence":{"min":-23,"raw":-18,"max":-13},"airDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseEarthDefence":-40,"baseThunderDefence":-80},"rarity":"rare"},"Twilight-Gilded Cloak":{"internalName":"Twilight-Gilded Cloak","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"dexterity":40,"agility":40},"powderSlots":2,"lore":"An ephemeral moment in time captured by sheer force of magic, this ornately-crafted cloak is given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawIntelligence":-30,"rawDefence":-30,"rawMainAttackDamage":90,"spellDamage":-40,"rawAttackSpeed":2,"walkSpeed":20,"earthDamage":25,"thunderDamage":25,"airDamage":25,"earthDefence":10,"thunderDefence":10,"airDefence":10},"base":{"baseHealth":3000,"baseEarthDefence":175,"baseThunderDefence":175,"baseAirDefence":175},"rarity":"legendary"},"Morph-Stardust":{"internalName":"Morph-Stardust","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":45,"dexterity":45,"intelligence":45,"defence":45,"agility":45},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"rawMainAttackDamage":{"min":41,"raw":135,"max":176},"rawSpellDamage":{"min":42,"raw":140,"max":182},"healthRegenRaw":{"min":60,"raw":200,"max":260},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3250,"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":60},"rarity":"set"},"Ambivalence":{"internalName":"Ambivalence","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"dexterity":40,"defence":40,"agility":40},"lore":"\"It's all doomed anyway. If you don't care, nothing can hurt you.\" - Zamugnia, Lost Lutho Citizen","dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":-100,"spellDamage":50,"1stSpellCost":100,"2ndSpellCost":100,"3rdSpellCost":100,"4thSpellCost":100,"waterDamage":25},"base":{"baseThunderDefence":70,"baseFireDefence":70,"baseAirDefence":70},"rarity":"legendary"},"Infused Hive Spear":{"internalName":"Infused Hive Spear","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":462,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"warrior","quest":"The Qira Hive"},"powderSlots":5,"lore":"Deceptively plain-looking, this spear has been infused with energy from all five known elements. Its tip shimmers in a spectrum of colors.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"manaRegen":5,"manaSteal":5,"elementalDamage":20},"base":{"baseDamage":{"min":160,"raw":160,"max":210}},"rarity":"legendary"},"Neutrino":{"internalName":"Neutrino","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":40,"dexterity":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":6,"identifications":{"healthRegen":{"min":9,"raw":30,"max":39},"poison":{"min":-13585,"raw":-10450,"max":-7315},"thorns":{"min":8,"raw":25,"max":33},"reflection":{"min":8,"raw":25,"max":33},"exploding":{"min":-130,"raw":-100,"max":-70},"elementalDefence":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":4750},"rarity":"rare"},"Succession":{"internalName":"Succession","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":100,"strength":30,"dexterity":30,"intelligence":60,"defence":30,"agility":30},"lore":"\"I pray that those who have heeded the wise one’s warning have survived. The canyon must not meet this fate.\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"rawSpellDamage":{"min":17,"raw":55,"max":72},"healthRegenRaw":{"min":24,"raw":80,"max":104},"manaRegen":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":4,"raw":12,"max":16}},"rarity":"fabled"},"Contrast":{"internalName":"Contrast","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive"},"lore":"The runes carved onto the gold beads strung along this simple necklace translate into various words meaning variance. It provides many abilities though unexplainable means.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"healthRegenRaw":115,"poison":2150,"lifeSteal":170,"manaRegen":12,"walkSpeed":12},"base":{"baseHealth":725},"rarity":"legendary"},"Obstinance":{"internalName":"Obstinance","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":100,"intelligence":50,"agility":50},"lore":"\"The protector will keep us safe even after this! It has to, it must, it—\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":-10,"raw":-8,"max":-6},"reflection":{"min":4,"raw":12,"max":16},"waterDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseWaterDefence":50,"baseFireDefence":-60,"baseAirDefence":50},"rarity":"fabled"},"Aquamarine":{"internalName":"Aquamarine","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":40,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":7,"rawIntelligence":7,"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"rawSpellDamage":{"min":32,"raw":105,"max":137},"healthRegenRaw":{"min":45,"raw":150,"max":195},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":5,"raw":18,"max":23},"stealing":{"min":2,"raw":6,"max":8},"fireDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":2900,"baseEarthDefence":60,"baseWaterDefence":60},"rarity":"unique"},"Dondasch":{"internalName":"Dondasch","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":100,"strength":50,"agility":50},"lore":"The sheer bond between Adamastor and Urdar has manifested itself into a physical form due to their duress. Such power is not to be abused...","dropMeta":{"name":"Aerie of the Recluse","type":"altar","coordinates":[-1746,65,-3069]},"identifications":{"rawStrength":20,"rawMainAttackDamage":{"min":84,"raw":280,"max":364},"walkSpeed":{"min":8,"raw":27,"max":35},"earthDamage":{"min":8,"raw":25,"max":33},"fireDamage":{"min":-130,"raw":-100,"max":-70},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3375,"baseEarthDefence":150,"baseAirDefence":150},"rarity":"legendary"},"The Forsaken":{"internalName":"The Forsaken","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":529,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"warrior","intelligence":60,"agility":60},"powderSlots":3,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":10,"rawWaterSpellDamage":210,"manaRegen":-24,"manaSteal":16,"3rdSpellCost":-25,"walkSpeed":20,"elementalDefence":-30},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseWaterDamage":{"min":38,"raw":38,"max":75},"baseAirDamage":{"min":38,"raw":38,"max":75}},"rarity":"legendary"},"The Nothing":{"internalName":"The Nothing","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":2,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"mage","dexterity":55,"defence":55},"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawIntelligence":-25,"lifeSteal":700,"manaSteal":12,"raw3rdSpellCost":-10,"walkSpeed":10,"rawThunderSpellDamage":425,"rawFireSpellDamage":425,"rawAirSpellDamage":425},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":1},"baseFireDamage":{"min":0,"raw":0,"max":1},"baseAirDamage":{"min":0,"raw":0,"max":1}},"rarity":"legendary"},"Dispersion":{"internalName":"Dispersion","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":100,"strength":45,"agility":55},"lore":"\"The lucky ones perished in the abyss. It’s only a matter of time before the land picks us survivors off one by one.\"","dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"poison":{"min":750,"raw":2500,"max":3250},"walkSpeed":{"min":3,"raw":9,"max":12},"sprintRegen":{"min":4,"raw":12,"max":16}},"base":{"baseAirDefence":60},"rarity":"fabled"},"Boreal-Patterned Crown":{"internalName":"Anima-Infused Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","dexterity":40,"intelligence":40,"agility":40},"powderSlots":2,"lore":"Engraved with the beauty and mystery of the boreal lights, this ornately-crafted crown is given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":-30,"rawDefence":-30,"mainAttackDamage":-40,"spellDamage":20,"rawSpellDamage":300,"manaRegen":10,"thunderDamage":25,"waterDamage":25,"airDamage":25,"thunderDefence":10,"waterDefence":10,"airDefence":10},"base":{"baseHealth":3000,"baseThunderDefence":150,"baseWaterDefence":150,"baseAirDefence":150},"rarity":"legendary"},"Syncope":{"internalName":"Syncope","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":622,"dropRestriction":"never","requirements":{"level":100,"classRequirement":"assassin","dexterity":46,"defence":66},"majorIds":{"Heat Shimmer":"+Heat Shimmer: Your Clones are reduced to a maximum of 1 with no damage penalties and Mirror Image's cooldown is greatly shortened."},"powderSlots":4,"lore":"The soul of a Devil is so hot with hatred that their bodies melt like candle wax, coming off in molten globs of flesh until only black bones remain.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"healthRegenRaw":{"min":-195,"raw":-150,"max":-105},"lifeSteal":{"min":150,"raw":500,"max":650},"manaSteal":{"min":5,"raw":15,"max":20},"raw1stSpellCost":{"min":7,"raw":5,"max":4},"sprint":{"min":-19,"raw":-15,"max":-10},"rawThunderMainAttackDamage":{"min":75,"raw":250,"max":325},"fireSpellDamage":{"min":8,"raw":25,"max":33}},"base":{"baseThunderDamage":{"min":66,"raw":66,"max":166},"baseFireDamage":{"min":100,"raw":100,"max":166}},"rarity":"fabled"},"Gaea-Hewn Boots":{"internalName":"Gaea-Hewn Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"intelligence":40,"defence":40},"powderSlots":2,"lore":"Forged in direct tribute to the earth and its aspects, these ornately-crafted boots are given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":-30,"rawAgility":-30,"spellDamage":15,"healthRegenRaw":300,"manaRegen":18,"exploding":20,"earthDamage":10,"waterDamage":10,"fireDamage":10,"earthDefence":25,"waterDefence":25,"fireDefence":25},"base":{"baseHealth":5000,"baseEarthDefence":225,"baseWaterDefence":225,"baseFireDefence":225},"rarity":"legendary"},"Crack the Skies":{"internalName":"Crack the Skies","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":443,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"warrior","dexterity":35,"agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawDexterity":7,"rawAgility":13,"spellDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-21,"raw":-16,"max":-11}},"base":{"baseThunderDamage":{"min":80,"raw":80,"max":110},"baseAirDamage":{"min":80,"raw":80,"max":160}},"rarity":"rare"},"Abyss-Imbued Leggings":{"internalName":"Abyss-Imbued Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive","strength":40,"intelligence":40,"agility":40},"powderSlots":2,"lore":"Steeped in the deepest energies of the Ahms region void, these ornately-crafted leggings are given only to those who have bested the Mistress of the Hive.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":-30,"rawDefence":-30,"rawMainAttackDamage":320,"rawSpellDamage":265,"lifeSteal":425,"manaSteal":16,"earthDamage":20,"waterDamage":20,"airDamage":20,"earthDefence":15,"waterDefence":15,"airDefence":15},"base":{"baseHealth":3400,"baseEarthDefence":175,"baseWaterDefence":175,"baseAirDefence":175},"rarity":"legendary"},"Legendary Medallion":{"internalName":"Legendary Medallion","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"lore":"This medallion marks its wearer as a true champion. It is awarded to those who have put an unnecessary amount of time into attempting the Legendary Challenge.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"rarity":"legendary"},"Prowess":{"internalName":"Prowess","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"quest":"The Qira Hive"},"lore":"The runes carved into this simple gold cuff translate into various words meaning mastery. It amplifies the ability of the wearer in mysterious ways.","dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4},"rarity":"legendary"},"Fermion":{"internalName":"Fermion","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":100,"strength":40,"dexterity":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":3,"identifications":{"damage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":5,"raw":15,"max":20},"thorns":{"min":6,"raw":20,"max":26},"reflection":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3775,"baseEarthDefence":150,"baseThunderDefence":150,"baseWaterDefence":150,"baseFireDefence":150,"baseAirDefence":150},"rarity":"unique"},"Marionette":{"internalName":"Marionette","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":806,"dropRestriction":"never","requirements":{"level":100,"classRequirement":"shaman","strength":40,"intelligence":45,"defence":30},"majorIds":{"Strings of Fate":"+Strings of Fate: Your puppets have a lifetime of 3 seconds, and deal double damage with attacks and explosions."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"spellDamage":{"min":9,"raw":31,"max":40},"rawHealth":{"min":-1560,"raw":-1200,"max":-840},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"fireSpellDamage":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":25,"raw":25,"max":25},"baseEarthDamage":{"min":105,"raw":105,"max":145},"baseWaterDamage":{"min":100,"raw":100,"max":120}},"rarity":"fabled"},"The Evolved":{"internalName":"The Evolved","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":140,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"classRequirement":"archer","strength":75},"powderSlots":2,"dropMeta":{"name":"Eldritch Outlook","type":"dungeonMerchant","coordinates":[1290,55,-738]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":25,"rawMainAttackDamage":550,"healthRegen":-80,"rawHealth":2250,"poison":19000,"raw1stSpellCost":-20},"base":{"baseEarthDamage":{"min":40,"raw":40,"max":50}},"rarity":"legendary"},"Atakebune":{"internalName":"Atakebune","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":100,"strength":65},"powderSlots":4,"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawSpellDamage":180,"raw3rdSpellCost":3,"walkSpeed":-10,"earthDamage":40,"fireDamage":20},"base":{"baseHealth":3500,"baseEarthDefence":90,"baseThunderDefence":60,"baseWaterDefence":120,"baseFireDefence":90,"baseAirDefence":60},"rarity":"legendary"},"Pencuri":{"internalName":"Pencuri","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":462,"dropRestriction":"normal","requirements":{"level":100,"classRequirement":"assassin","defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawDefence":13,"rawHealth":{"min":420,"raw":1400,"max":1820},"lifeSteal":{"min":102,"raw":340,"max":442},"thorns":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":70,"raw":70,"max":110},"baseFireDamage":{"min":70,"raw":70,"max":120}},"rarity":"unique"},"Charm of the Stone":{"internalName":"Charm of the Stone","type":"charm","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100,"levelRange":{"max":110,"min":90}},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"legacy","value":"337:0"},"base":{"leveledLootBonus":{"min":24,"raw":30,"max":35},"damageFromMobs":{"min":21,"raw":70,"max":91}},"rarity":"fabled"},"Sycophant's Tome of Allegiance":{"internalName":"Sycophant's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawIntelligence":2,"rawAgility":2},"rarity":"legendary"},"Freelancer's Tome of Allegiance":{"internalName":"Freelancer's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawDexterity":2,"rawAgility":2},"rarity":"legendary"},"Brute's Tome of Allegiance":{"internalName":"Brute's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":4},"rarity":"legendary"},"Alchemist's Tome of Allegiance":{"internalName":"Alchemist's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawIntelligence":2,"rawDefence":2},"rarity":"legendary"},"Sadist's Tome of Allegiance":{"internalName":"Sadist's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawDexterity":4},"rarity":"legendary"},"Devil's Tome of Allegiance":{"internalName":"Devil's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawDexterity":2,"rawDefence":2},"rarity":"legendary"},"Psychopath's Tome of Allegiance":{"internalName":"Psychopath's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":2,"rawDexterity":2},"rarity":"legendary"},"Destroyer's Tome of Allegiance":{"internalName":"Destroyer's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":2,"rawDefence":2},"rarity":"legendary"},"Barbarian's Tome of Allegiance":{"internalName":"Barbarian's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":2,"rawAgility":2},"rarity":"legendary"},"Fanatic's Tome of Allegiance":{"internalName":"Fanatic's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawAgility":2,"rawDefence":2},"rarity":"legendary"},"Ghost's Tome of Allegiance":{"internalName":"Ghost's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawAgility":4},"rarity":"legendary"},"Loner's Tome of Allegiance":{"internalName":"Loner's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":2,"rawIntelligence":2},"rarity":"legendary"},"Arsonist's Tome of Allegiance":{"internalName":"Arsonist's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawDefence":4},"rarity":"legendary"},"Mastermind's Tome of Allegiance":{"internalName":"Mastermind's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawIntelligence":4},"rarity":"legendary"},"Assimilator's Tome of Allegiance":{"internalName":"Assimilator's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"rarity":"legendary"},"Warlock's Tome of Allegiance":{"internalName":"Warlock's Tome of Allegiance","type":"tome","tomeType":"guild_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"Guild Rewards","type":"guild","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"84","name":"tome.guild"}},"identifications":{"rawDexterity":2,"rawIntelligence":2},"rarity":"legendary"},"Surefooted Tome of the Marathon II":{"internalName":"Surefooted Tome of the Marathon II","type":"tome","tomeType":"marathon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"87","name":"tome.movement"}},"identifications":{"sprint":{"min":4,"raw":14,"max":18},"sprintRegen":{"min":4,"raw":14,"max":18}},"rarity":"fabled"},"Fleetfooted Tome of the Marathon II":{"internalName":"Fleetfooted Tome of the Marathon II","type":"tome","tomeType":"marathon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"87","name":"tome.movement"}},"identifications":{"walkSpeed":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Dragon's Tome of Mysticism II":{"internalName":"Dragon's Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"3rdSpellCost":{"min":-1,"raw":-4,"max":-5}},"rarity":"mythic"},"Golem's Tome of Mysticism II":{"internalName":"Golem's Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"4thSpellCost":{"min":-1,"raw":-4,"max":-5}},"rarity":"mythic"},"Harvester's Tome of Mysticism II":{"internalName":"Harvester's Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"manaSteal":{"min":1,"raw":3,"max":4}},"rarity":"fabled"},"Ephemeral Tome of Mysticism II":{"internalName":"Ephemeral Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"manaRegen":{"min":1,"raw":3,"max":4}},"rarity":"fabled"},"Faerie's Tome of Mysticism II":{"internalName":"Faerie's Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"1stSpellCost":{"min":-1,"raw":-4,"max":-5}},"rarity":"mythic"},"Pegasus' Tome of Mysticism II":{"internalName":"Pegasus' Tome of Mysticism II","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"2ndSpellCost":{"min":-1,"raw":-4,"max":-5}},"rarity":"mythic"},"Courageous Tome of Defensive Mastery II":{"internalName":"Courageous Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":80,"raw":265,"max":345},"fireDefence":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Pulsing Tome of Defensive Mastery II":{"internalName":"Pulsing Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":80,"raw":265,"max":345},"thunderDefence":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Vampiric Tome of Defensive Mastery II":{"internalName":"Vampiric Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":90,"raw":300,"max":390},"lifeSteal":{"min":21,"raw":70,"max":91}},"rarity":"mythic"},"Blooming Tome of Defensive Mastery II":{"internalName":"Blooming Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":80,"raw":265,"max":345},"earthDefence":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Oceanic Tome of Defensive Mastery II":{"internalName":"Oceanic Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":80,"raw":265,"max":345},"waterDefence":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Clouded Tome of Defensive Mastery II":{"internalName":"Clouded Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":80,"raw":265,"max":345},"airDefence":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Everlasting Tome of Defensive Mastery II":{"internalName":"Everlasting Tome of Defensive Mastery II","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":100},"dropMeta":{"name":"The Canyon Colossus","type":"raid","coordinates":[662,49,-4448]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":90,"raw":300,"max":390},"healthRegenRaw":{"min":14,"raw":45,"max":59}},"rarity":"mythic"},"Vortex Expulsion":{"internalName":"Vortex Expulsion","type":"ingredient","requirements":{"level":100,"skills":["armouring","tailoring","scribing"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"reflection":{"min":19,"raw":19,"max":23},"exploding":{"min":17,"raw":17,"max":21}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-104000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":-17},"droppedBy":[{"name":"Umbral Singularity","coords":false}]},"Adamastor's Faceplate":{"internalName":"Adamastor's Faceplate","type":"ingredient","requirements":{"level":100,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"airDefence":{"min":25,"raw":25,"max":30},"rawHealth":{"min":725,"raw":725,"max":875},"earthDefence":{"min":-20,"raw":-20,"max":-15}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-157000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":-10},"droppedBy":[{"name":"Adamastor","coords":null}]},"Crust Crusher":{"internalName":"Crust Crusher","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":583,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"archer","strength":35,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawStrength":10,"rawDefence":10,"spellDamage":{"min":-26,"raw":-20,"max":-14},"earthMainAttackDamage":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":6,"raw":20,"max":26},"slowEnemy":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":195,"raw":195,"max":210},"baseEarthDamage":{"min":220,"raw":220,"max":280},"baseFireDamage":{"min":220,"raw":220,"max":280}},"rarity":"unique"},"Blues Whistle":{"internalName":"Blues Whistle","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":588,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"archer","strength":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":6,"rawAgility":12,"lifeSteal":{"min":-383,"raw":-295,"max":-206},"manaSteal":{"min":2,"raw":8,"max":10},"earthSpellDamage":{"min":7,"raw":23,"max":30},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":140,"raw":140,"max":160},"baseEarthDamage":{"min":70,"raw":70,"max":100}},"rarity":"unique"},"Voidglass Crown":{"internalName":"Voidglass Crown","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":99,"agility":75},"powderSlots":3,"identifications":{"healthRegen":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":95,"raw":315,"max":410},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":6,"raw":20,"max":26},"airDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3100,"baseFireDefence":-125,"baseAirDefence":100},"rarity":"set"},"Titanium Grievers":{"internalName":"Titanium Grievers","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":60,"defence":50},"lore":"Crudely misshapen greaves made from haphazard scrap found about the Starfield. You sense a foreboding notion that donning such a thing would be the end of sensing anything at all.","identifications":{"rawDefence":10,"healthRegen":{"min":8,"raw":27,"max":35},"healthRegenRaw":{"min":54,"raw":181,"max":235},"damage":{"min":-23,"raw":-18,"max":-13},"rawAttackSpeed":1,"walkSpeed":{"min":-23,"raw":-18,"max":-13},"elementalDefence":{"min":10,"raw":32,"max":42}},"base":{"baseHealth":4350,"baseEarthDefence":125,"baseFireDefence":100},"rarity":"legendary"},"The Extinguished":{"internalName":"The Extinguished","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":99,"defence":80},"lore":"Everything that’s fallen down here has a purpose. Or at least, it used to. Being too far removed from said purpose will eventually smother it, but it can always be rekindled... and that’s where you come in.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegenRaw":{"min":30,"raw":100,"max":130},"rawFireDamage":{"min":30,"raw":100,"max":130},"4thSpellCost":{"min":16,"raw":12,"max":8},"mainAttackRange":{"min":-13,"raw":-10,"max":-7}},"base":{"baseFireDefence":60},"rarity":"legendary"},"Tessera-laden Moccasins":{"internalName":"Tessera-laden Moccasins","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":40,"intelligence":35,"agility":40},"powderSlots":3,"identifications":{"rawStrength":4,"rawAgility":4,"manaSteal":{"min":4,"raw":12,"max":16},"damage":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":5,"raw":15,"max":20},"rawMaxMana":{"min":12,"raw":40,"max":52},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":3475,"baseEarthDefence":100,"baseWaterDefence":75,"baseAirDefence":100},"rarity":"rare"},"Voidstone Capelet":{"internalName":"Voidstone Capelet","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":45,"agility":45},"powderSlots":2,"identifications":{"manaSteal":{"min":3,"raw":10,"max":13},"earthSpellDamage":{"min":6,"raw":20,"max":26},"airSpellDamage":{"min":6,"raw":20,"max":26},"thorns":{"min":5,"raw":15,"max":20},"rawAttackSpeed":-1,"mainAttackRange":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3450,"baseEarthDefence":100,"baseAirDefence":100},"rarity":"rare"},"Doomsday Omen":{"internalName":"Doomsday Omen","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":55,"defence":55},"powderSlots":3,"lore":"Something is lurking—it must be, in the eerie silence that leaves you so utterly alone. And these remains… Are they a reminder of one who didn’t stay quiet, or does what lurks in the unknown already know you’re here?","identifications":{"rawStrength":12,"rawAgility":-12,"mainAttackDamage":{"min":23,"raw":77,"max":100},"rawAttackSpeed":{"min":-18,"raw":-14,"max":-10},"exploding":{"min":9,"raw":31,"max":40},"mainAttackRange":{"min":6,"raw":19,"max":25},"earthDamage":{"min":9,"raw":31,"max":40},"fireDamage":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":4000,"baseEarthDefence":120,"baseFireDefence":120,"baseAirDefence":-80},"rarity":"legendary"},"Cluster":{"internalName":"Cluster","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":602,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"archer","dexterity":65},"powderSlots":4,"lore":"Perhaps one is weak. To be ignored. Perhaps two are not much better. But what of five? Ten? Twenty?...","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"lifeSteal":{"min":176,"raw":585,"max":761},"manaSteal":{"min":3,"raw":9,"max":12},"rawThunderDamage":{"min":40,"raw":133,"max":173},"exploding":{"min":20,"raw":65,"max":85},"stealing":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseThunderDamage":{"min":40,"raw":40,"max":240}},"rarity":"legendary"},"Cursed Wings":{"internalName":"Cursed Wings","type":"ingredient","requirements":{"level":99,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"278:26"},"identifications":{"rawHealth":{"min":-650,"raw":-650,"max":-500},"earthDamage":{"min":15,"raw":15,"max":17},"thunderDamage":{"min":17,"raw":17,"max":21}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-157000,"strengthRequirement":21,"dexterityRequirement":21,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Angel Of Battle","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Nature","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Dying Angel","coords":[1123,122,-4878,20]}]},"Impure Nullity":{"internalName":"Impure Nullity","type":"ingredient","requirements":{"level":99,"skills":["armouring"]},"icon":{"format":"legacy","value":"16:0"},"identifications":{"mainAttackDamage":{"min":5,"raw":5,"max":8},"rawThunderMainAttackDamage":{"min":19,"raw":19,"max":25}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-73000,"strengthRequirement":0,"dexterityRequirement":16,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Skyraider Coin":{"internalName":"Skyraider Coin","type":"ingredient","requirements":{"level":99,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"rawMainAttackDamage":{"min":9,"raw":9,"max":10},"stealing":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":7,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Adventuring Skyraider","coords":[[1100,122,-4309,20],[1192,106,-4270,15],[1360,142,-4511,10],[1273,122,-4705,10],[817,43,-4767,20],[817,43,-4767,30]]}]},"Sky Flux":{"internalName":"Sky Flux","type":"ingredient","requirements":{"level":99,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"airDamage":{"min":6,"raw":6,"max":10},"airDefence":{"min":14,"raw":14,"max":18}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rukh","coords":[[1014,108,-4718,40],[1090,111,-4659,30]]}]},"Demonic Blood":{"internalName":"Demonic Blood","type":"ingredient","requirements":{"level":99,"skills":["cooking","armouring","tailoring"]},"icon":{"format":"legacy","value":"331:0"},"identifications":{"lifeSteal":{"min":70,"raw":70,"max":80},"poison":{"min":530,"raw":530,"max":580}},"tier":1,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-73000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spined Devil","coords":[[893,63,-4691,5],[890,72,-4655,0],[836,63,-4599,5],[868,54,-4600,5]]}]},"Haphazard Serum":{"internalName":"Haphazard Serum","type":"ingredient","requirements":{"level":99,"skills":["alchemism"]},"icon":{"format":"legacy","value":"373:0"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":4},"earthDamage":{"min":-14,"raw":-14,"max":-8},"airDamage":{"min":4,"raw":4,"max":18}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Adventuring Skyraider","coords":[[1100,122,-4309,20],[1192,106,-4270,15],[1360,142,-4511,10],[1273,122,-4705,10],[817,43,-4767,20],[817,43,-4767,30]]},{"name":"Skyraider","coords":[[1439,91,-4308,3],[1398,91,-4311,3],[1479,98,-4304,3],[1490,91,-4355,3],[1471,83,-4413,3],[1482,83,-4441,3]]}]},"Extremely Dense Pebble":{"internalName":"Extremely Dense Pebble","type":"ingredient","requirements":{"level":99,"skills":["jeweling"]},"icon":{"format":"legacy","value":"77:0"},"identifications":{"exploding":{"min":8,"raw":8,"max":9},"earthDamage":{"min":3,"raw":3,"max":4},"knockback":{"min":1,"raw":1,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":9,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Fairy Powder":{"internalName":"Fairy Powder","type":"ingredient","requirements":{"level":99,"skills":["alchemism"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"manaRegen":{"min":3,"raw":3,"max":4},"spellDamage":{"min":10,"raw":10,"max":13},"rawSpellDamage":{"min":45,"raw":45,"max":60}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sylphid Gatekeeper","coords":null},{"name":"Sylphid Ghost","coords":[1359,100,-4705,6]}]},"Essence of Dissolution":{"internalName":"Essence of Dissolution","type":"ingredient","requirements":{"level":99,"skills":["cooking"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"airDamage":{"min":3,"raw":3,"max":4},"rawAgility":{"min":0,"raw":0,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":-410,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Rocky Spirit":{"internalName":"Rocky Spirit","type":"ingredient","requirements":{"level":99,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"351:12"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4},"knockback":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Infernal Antifreeze":{"internalName":"Infernal Antifreeze","type":"ingredient","requirements":{"level":99,"skills":["armouring"]},"icon":{"format":"legacy","value":"373:0"},"identifications":{"rawIntelligence":{"min":3,"raw":3,"max":6},"rawDefence":{"min":4,"raw":4,"max":5},"rawWaterDamage":{"min":8,"raw":8,"max":10},"rawFireDamage":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-115000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":18,"defenceRequirement":18,"agilityRequirement":0}},"Farcor's Trust":{"internalName":"Farcor's Trust","type":"ingredient","requirements":{"level":99,"skills":["alchemism"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"fireDefence":{"min":25,"raw":25,"max":40},"rawHealth":{"min":1900,"raw":1900,"max":2150}},"tier":3,"consumableOnlyIDs":{"duration":-280,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rukh","coords":[[1014,108,-4718,40],[1090,111,-4659,30]]}]},"Sparkling Plate":{"internalName":"Sparkling Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"dexterity":50,"agility":50},"powderSlots":2,"identifications":{"rawIntelligence":-30,"rawDefence":8,"healthRegenRaw":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":66,"raw":220,"max":286},"1stSpellCost":{"min":-3,"raw":-9,"max":-12},"2ndSpellCost":{"min":-4,"raw":-13,"max":-17},"3rdSpellCost":{"min":-4,"raw":-13,"max":-17},"reflection":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":3750,"baseEarthDefence":-50,"baseThunderDefence":100,"baseWaterDefence":-50,"baseFireDefence":50,"baseAirDefence":100},"rarity":"unique"},"Stinger":{"internalName":"Stinger","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":703,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":99,"classRequirement":"archer"},"powderSlots":3,"lore":"If it weren't for that stray mark, this would be spelled correctly...","dropMeta":{"name":"??????????","type":"altar","coordinates":[1296,19,-4670]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"healthRegenRaw":{"min":-312,"raw":-240,"max":-168},"poison":{"min":2700,"raw":9000,"max":11700},"lifeSteal":{"min":221,"raw":735,"max":956},"manaSteal":{"min":-5,"raw":-4,"max":-3},"rawAttackSpeed":{"min":-129,"raw":-99,"max":-69},"exploding":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":1200,"raw":1200,"max":1555}},"rarity":"legendary"},"Knucklebones":{"internalName":"Knucklebones","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":99},"lore":"An old Nemract saying is engraved along the metal. \"A single toss of the knucklebones can make or break a gambling man.\"","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"lifeSteal":{"min":-2385,"raw":-1835,"max":-1284},"manaSteal":{"min":-208,"raw":-160,"max":-112},"rawAttackSpeed":{"min":1,"raw":2,"max":3},"exploding":{"min":6,"raw":20,"max":26},"xpBonus":{"min":8,"raw":25,"max":33},"lootBonus":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":5,"max":7}},"rarity":"legendary"},"Vaward":{"internalName":"Vaward","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99},"powderSlots":3,"lore":"A once-great hero left behind these sturdy, reliable greaves, trusting those after her to be able to use their power to protect others, should they don them. Her courage fuels their wearers.","identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3900},"rarity":"legendary"},"Corsair":{"internalName":"Corsair","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"dexterity":55,"agility":35},"powderSlots":2,"identifications":{"rawDexterity":8,"manaSteal":{"min":1,"raw":4,"max":5},"1stSpellCost":{"min":-3,"raw":-10,"max":-13},"4thSpellCost":{"min":-4,"raw":-14,"max":-18},"walkSpeed":{"min":3,"raw":11,"max":14},"stealing":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2900,"baseEarthDefence":-140,"baseThunderDefence":80,"baseAirDefence":110},"rarity":"unique"},"Brigantine":{"internalName":"Brigantine","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":99,"intelligence":75},"powderSlots":3,"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawIntelligence":8,"spellDamage":20,"manaSteal":12,"lootBonus":25,"earthDamage":-10,"thunderDamage":6,"waterDamage":10},"base":{"baseHealth":3500,"baseWaterDefence":125,"baseFireDefence":-100},"rarity":"rare"},"Serrae":{"internalName":"Serrae","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":431,"dropRestriction":"never","requirements":{"level":99,"classRequirement":"mage","strength":75},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawStrength":8,"spellDamage":{"min":-26,"raw":-20,"max":-14},"earthMainAttackDamage":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":111,"raw":369,"max":480},"rawAttackSpeed":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":-39,"raw":-30,"max":-21},"knockback":{"min":23,"raw":77,"max":100},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":825,"raw":825,"max":865}},"rarity":"legendary"},"Antim":{"internalName":"Antim","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":99},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawMainAttackDamage":{"min":7,"raw":23,"max":30},"rawSpellDamage":{"min":6,"raw":21,"max":27},"healthRegenRaw":{"min":14,"raw":45,"max":59}},"rarity":"unique"},"Despondence":{"internalName":"Despondence","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"dexterity":70},"powderSlots":2,"identifications":{"rawDexterity":5,"rawIntelligence":-15,"lifeSteal":{"min":65,"raw":215,"max":280},"raw2ndSpellCost":{"min":-2,"raw":-7,"max":-9},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":5,"raw":15,"max":20},"thunderMainAttackDamage":{"min":5,"raw":15,"max":20},"rawThunderMainAttackDamage":{"min":57,"raw":190,"max":247}},"base":{"baseHealth":3000},"rarity":"rare"},"Stratiformis":{"internalName":"Stratiformis","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":862,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"archer","agility":115},"powderSlots":3,"lore":"The Elves managed to harness the power of air itself, forming a bow made entirely of air currents, allowing the user to move swift like the wind, but vulnerable to attacks.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAgility":25,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-2600,"raw":-2000,"max":-1400},"reflection":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":23,"raw":76,"max":99}},"base":{"baseDamage":{"min":75,"raw":75,"max":175},"baseAirDamage":{"min":140,"raw":140,"max":300}},"rarity":"mythic"},"Slider":{"internalName":"Slider","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":589,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":99,"classRequirement":"assassin"},"powderSlots":3,"lore":"The spelling seems to have been botched.","dropMeta":{"name":"??????????","type":"altar","coordinates":[1296,19,-4670]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDexterity":-30,"rawAgility":15,"rawMainAttackDamage":{"min":-65,"raw":-50,"max":-35},"rawSpellDamage":{"min":48,"raw":160,"max":208},"manaSteal":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":12,"raw":40,"max":52},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":140,"raw":140,"max":240}},"rarity":"legendary"},"Acid":{"internalName":"Acid","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":99},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawDefence":-2,"poison":{"min":690,"raw":2300,"max":2990}},"base":{"baseHealth":-250,"baseWaterDefence":-30},"rarity":"unique"},"Conrupt":{"internalName":"Conrupt","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"strength":50,"dexterity":50},"powderSlots":3,"identifications":{"rawStrength":8,"rawDexterity":8,"mainAttackDamage":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":-162,"raw":-125,"max":-87},"poison":{"min":1200,"raw":4000,"max":5200},"lifeSteal":{"min":89,"raw":295,"max":384},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2950,"baseEarthDefence":110,"baseThunderDefence":110,"baseWaterDefence":-100,"baseAirDefence":-100},"rarity":"rare"},"Capricorn":{"internalName":"Capricorn","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"intelligence":65,"agility":65},"powderSlots":3,"lore":"During a spiritual journey to Kato temple, the sage Capian was presented with powerful spiritual boots with the intention to be used for peaceful magic, and not hard combat.","identifications":{"rawIntelligence":12,"rawAgility":12,"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":3250,"baseEarthDefence":-100,"baseThunderDefence":-100,"baseWaterDefence":100,"baseAirDefence":100},"rarity":"legendary"},"Sitis":{"internalName":"Sitis","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":544,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"assassin","intelligence":65},"powderSlots":3,"lore":"Wielding it for too long will leave one a dessicated husk, as this dull blade slowly absorbs all liquids around it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-240,"raw":-185,"max":-129},"lifeSteal":{"min":90,"raw":300,"max":390},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":75,"raw":75,"max":105},"baseWaterDamage":{"min":75,"raw":75,"max":180}},"rarity":"legendary"},"Tidebinder":{"internalName":"Tidebinder","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":435,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"warrior","intelligence":66},"powderSlots":3,"lore":"This mysterious, half-liquid trident apparently holds the secret magics to control the ocean's ebb and flow. It is incapable of touching solid ground.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":22,"mainAttackDamage":{"min":-129,"raw":-99,"max":-69},"manaRegen":{"min":8,"raw":25,"max":33},"reflection":{"min":10,"raw":33,"max":43},"rawMaxMana":{"min":23,"raw":76,"max":99},"waterDefence":{"min":30,"raw":99,"max":129},"fireDefence":{"min":20,"raw":66,"max":86}},"base":{"baseWaterDamage":{"min":250,"raw":250,"max":330}},"rarity":"legendary"},"Philophilia":{"internalName":"Philophilia","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99},"powderSlots":2,"identifications":{"rawIntelligence":-10,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":50,"raw":165,"max":215},"rawHealth":{"min":231,"raw":769,"max":1000},"lifeSteal":{"min":74,"raw":245,"max":319},"thorns":{"min":-39,"raw":-30,"max":-21},"reflection":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":3400},"rarity":"rare"},"Ration":{"internalName":"Ration","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"intelligence":45,"defence":45},"powderSlots":3,"identifications":{"rawIntelligence":9,"mainAttackDamage":{"min":-23,"raw":-18,"max":-13},"spellDamage":{"min":-23,"raw":-18,"max":-13},"healthRegenRaw":{"min":45,"raw":150,"max":195},"manaRegen":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":3600,"baseEarthDefence":-75,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":-75},"rarity":"unique"},"Silver Sound":{"internalName":"Silver Sound","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":627,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"shaman","defence":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawIntelligence":-20,"rawDefence":10,"rawAgility":10,"manaRegen":{"min":-8,"raw":-6,"max":-4},"raw3rdSpellCost":{"min":-3,"raw":-10,"max":-13},"waterDamage":{"min":-55,"raw":-42,"max":-29},"fireDamage":{"min":9,"raw":29,"max":38},"airDamage":{"min":9,"raw":29,"max":38}},"base":{"baseFireDamage":{"min":375,"raw":375,"max":380},"baseAirDamage":{"min":375,"raw":375,"max":380}},"rarity":"rare"},"Bylvis' Pitchfork":{"internalName":"Bylvis' Pitchfork","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":390,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"warrior","intelligence":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":5,"raw":17,"max":22},"airDamage":{"min":5,"raw":17,"max":22},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":70,"raw":70,"max":130},"baseWaterDamage":{"min":70,"raw":70,"max":90},"baseAirDamage":{"min":70,"raw":70,"max":90}},"rarity":"unique"},"Event Horizon":{"internalName":"Event Horizon","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":434,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"mage","strength":55,"dexterity":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawHealth":{"min":1500,"raw":5000,"max":6500},"healingEfficiency":{"min":-23,"raw":-18,"max":-13},"elementalDefence":{"min":-99,"raw":-76,"max":-53}},"base":{"baseEarthDamage":{"min":0,"raw":0,"max":140},"baseThunderDamage":{"min":0,"raw":0,"max":140}},"rarity":"legendary"},"Soulflare":{"internalName":"Soulflare","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":99,"intelligence":40,"defence":50},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawIntelligence":10,"rawDefence":10,"lifeSteal":440,"manaRegen":10,"manaSteal":10,"thunderDefence":-25,"waterDefence":20},"base":{"baseHealth":3800,"baseThunderDefence":-125,"baseWaterDefence":125,"baseFireDefence":150},"rarity":"rare"},"Brilliant Diamond Leggings":{"internalName":"Brilliant Diamond Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99},"powderSlots":3,"base":{"baseHealth":2530},"rarity":"common"},"Revenant":{"internalName":"Revenant","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"strength":70,"agility":70},"powderSlots":3,"lore":"Those whose souls are lost to the Canyon of the Lost eternally seek form. They inhabit those who wear these boots, unknowingly dragging the soul of the wearer into their ranks if worn for too long, leaving a wandering husk.","identifications":{"mainAttackDamage":{"min":-91,"raw":-70,"max":-49},"rawMainAttackDamage":{"min":156,"raw":520,"max":676},"rawHealth":{"min":-3250,"raw":-2500,"max":-1750},"manaSteal":{"min":3,"raw":10,"max":13},"4thSpellCost":{"min":-8,"raw":-28,"max":-36},"reflection":{"min":36,"raw":120,"max":156},"walkSpeed":{"min":12,"raw":40,"max":52},"earthDamage":{"min":12,"raw":40,"max":52},"airDamage":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":7000,"baseEarthDefence":140,"baseAirDefence":140},"rarity":"mythic"},"Curador Boots":{"internalName":"Curador Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"intelligence":45,"defence":45},"powderSlots":3,"identifications":{"rawDexterity":8,"rawIntelligence":5,"rawDefence":5,"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":48,"raw":160,"max":208},"lifeSteal":{"min":77,"raw":255,"max":332},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":-39,"raw":-30,"max":-21},"earthDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3300,"baseThunderDefence":-150,"baseWaterDefence":120,"baseFireDefence":120},"rarity":"unique"},"Black":{"internalName":"Black","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":625,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"assassin","dexterity":55,"defence":55},"powderSlots":3,"lore":"Hewn from the great obsidian spires surrounding the massive Nether gate, this fiercely-hooked dagger absorbs light and magic energy alike to create a desolate void wherever it is wielded.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"spellDamage":{"min":6,"raw":19,"max":25},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":6,"raw":19,"max":25},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":6,"raw":19,"max":25},"earthDefence":{"min":-52,"raw":-40,"max":-28},"airDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseThunderDamage":{"min":30,"raw":30,"max":150},"baseFireDamage":{"min":65,"raw":65,"max":115}},"rarity":"legendary"},"Predposledni":{"internalName":"Predposledni","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":300,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"mage","intelligence":40,"agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-21,"raw":-16,"max":-11}},"base":{"baseWaterDamage":{"min":50,"raw":50,"max":60},"baseAirDamage":{"min":40,"raw":40,"max":90}},"rarity":"rare"},"Braker":{"internalName":"Braker","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":720,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":99,"classRequirement":"warrior"},"powderSlots":3,"lore":"Seems like the name is misspelled a little bit.","dropMeta":{"name":"??????????","type":"altar","coordinates":[1296,19,-4670]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":13,"spellDamage":{"min":-130,"raw":-100,"max":-70},"rawHealth":{"min":-2665,"raw":-2050,"max":-1435},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":23,"raw":77,"max":100},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":405,"raw":405,"max":555}},"rarity":"legendary"},"Singularity":{"internalName":"Singularity","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":465,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"mage","strength":42,"dexterity":42,"intelligence":42,"defence":42,"agility":42},"powderSlots":15,"lore":"The existence of all things is reflected in the otherworldly jewels of this grand staff, dense enough to have its own gravitational pull. Users have reported their limbs being stretched after usage.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawDexterity":35,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":133,"raw":444,"max":577},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":67,"raw":222,"max":289},"healthRegenRaw":{"min":75,"raw":250,"max":325},"walkSpeed":{"min":-52,"raw":-40,"max":-28}},"base":{"baseEarthDamage":{"min":160,"raw":160,"max":205},"baseThunderDamage":{"min":60,"raw":60,"max":305},"baseWaterDamage":{"min":135,"raw":135,"max":230},"baseFireDamage":{"min":110,"raw":110,"max":255},"baseAirDamage":{"min":85,"raw":85,"max":280}},"rarity":"mythic"},"Quinque":{"internalName":"Quinque","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":542,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"warrior","dexterity":65},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"rawSpellDamage":{"min":53,"raw":175,"max":228},"poison":{"min":2700,"raw":9000,"max":11700},"manaRegen":{"min":-16,"raw":-12,"max":-8},"rawAttackSpeed":1,"walkSpeed":{"min":-26,"raw":-20,"max":-14},"earthDamage":{"min":15,"raw":50,"max":65}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":7},"baseThunderDamage":{"min":5,"raw":5,"max":235}},"rarity":"legendary"},"Privateer":{"internalName":"Privateer","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":99},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawMainAttackDamage":100,"spellDamage":-10,"lifeSteal":185,"stealing":5},"rarity":"rare"},"Facile":{"internalName":"Facile","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":99,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":-8,"raw":-6,"max":-4},"healthRegen":{"min":-10,"raw":-8,"max":-6}},"rarity":"rare"},"Warp":{"internalName":"Warp","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":589,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"mage","agility":125},"powderSlots":3,"lore":"The notorious and erratic magical inventor Gawrick once attempted to make teleportation scrolls obsolete, by creating items which would allow the user to phase into an ethereal state to move unhindered. He did not account for the physical ramifications of this process, however.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawAgility":25,"healthRegen":{"min":-260,"raw":-200,"max":-140},"healthRegenRaw":{"min":-585,"raw":-450,"max":-315},"manaRegen":{"min":-58,"raw":-45,"max":-31},"healingEfficiency":{"min":-39,"raw":-30,"max":-21},"raw2ndSpellCost":{"min":-90,"raw":-299,"max":-389},"reflection":{"min":27,"raw":90,"max":117},"walkSpeed":{"min":54,"raw":180,"max":234},"exploding":{"min":15,"raw":50,"max":65},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseAirDamage":{"min":135,"raw":135,"max":155}},"rarity":"mythic"},"Novarupta":{"internalName":"Novarupta","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":60,"defence":45,"agility":45},"powderSlots":2,"identifications":{"rawDefence":5,"rawAgility":5,"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawFireMainAttackDamage":{"min":35,"raw":115,"max":150},"rawAirMainAttackDamage":{"min":35,"raw":115,"max":150},"elementalMainAttackDamage":{"min":8,"raw":25,"max":33},"healthRegen":{"min":-36,"raw":-28,"max":-20},"knockback":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":3500,"baseEarthDefence":100,"baseWaterDefence":-250,"baseFireDefence":100,"baseAirDefence":100},"rarity":"rare"},"Cytotoxic Striders":{"internalName":"Cytotoxic Striders","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"strength":60,"dexterity":45},"majorIds":{"Plague":"+Plague: Poisoned mobs spread their poison to nearby mobs."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"healthRegenRaw":{"min":-325,"raw":-250,"max":-175},"poison":{"min":3195,"raw":10650,"max":13845},"walkSpeed":{"min":6,"raw":20,"max":26},"earthDamage":{"min":7,"raw":24,"max":31},"thunderDamage":{"min":8,"raw":28,"max":36}},"base":{"baseHealth":3500,"baseEarthDefence":150,"baseThunderDefence":100},"rarity":"fabled"},"Briars' Embrace":{"internalName":"Briars' Embrace","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":712,"dropRestriction":"never","requirements":{"level":99,"classRequirement":"archer","strength":85},"majorIds":{"Forest's Blessing":"+Forest's Blessing: Your archer summons have increased movement speed, attack speed, and vision. Arrow Bomb's damage is reduced by -30%. "},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawHealth":{"min":525,"raw":1750,"max":2275},"poison":{"min":1575,"raw":5250,"max":6825},"manaRegen":{"min":5,"raw":18,"max":23},"thorns":{"min":18,"raw":60,"max":78},"slowEnemy":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":20,"raw":20,"max":50},"baseEarthDamage":{"min":230,"raw":230,"max":270}},"rarity":"fabled"},"Nebulous":{"internalName":"Nebulous","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":99,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"rawSpellDamage":{"min":14,"raw":45,"max":59}},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"unique"},"Bonder":{"internalName":"Bonder","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":360,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":99,"classRequirement":"mage"},"powderSlots":4,"lore":"It looks like they spelled the name wrong...","dropMeta":{"name":"??????????","type":"altar","coordinates":[1296,19,-4670]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":60,"raw":200,"max":260},"manaRegen":{"min":7,"raw":24,"max":31},"exploding":{"min":-650,"raw":-500,"max":-350}},"base":{"baseDamage":{"min":210,"raw":210,"max":270}},"rarity":"legendary"},"Rekkr":{"internalName":"Rekkr","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"strength":45,"defence":60},"powderSlots":3,"identifications":{"rawStrength":13,"rawDefence":13,"mainAttackDamage":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":4500,"baseEarthDefence":100,"baseFireDefence":130},"rarity":"legendary"},"Yol":{"internalName":"Yol","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":544,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"shaman","defence":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawDefence":15,"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":50,"raw":165,"max":215},"rawHealth":{"min":795,"raw":2650,"max":3445},"elementalDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":110,"raw":110,"max":116},"baseFireDamage":{"min":240,"raw":240,"max":260}},"rarity":"rare"},"Crestfallen":{"internalName":"Crestfallen","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"strength":50,"agility":40},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":51,"raw":170,"max":221},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2900,"baseAirDefence":-90},"rarity":"unique"},"Pandemonium":{"internalName":"Pandemonium","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":99,"quest":"???֎","strength":45,"dexterity":45,"intelligence":45,"defence":45,"agility":45},"majorIds":{"Madness":"+Madness: Casts a random spell of your class every 3 seconds."},"lore":"Power, but at what cost?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"mainAttackDamage":{"min":5,"raw":16,"max":21},"rawMainAttackDamage":{"min":11,"raw":35,"max":46},"spellDamage":{"min":5,"raw":16,"max":21},"rawSpellDamage":{"min":17,"raw":55,"max":72},"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"lifeSteal":{"min":-78,"raw":-60,"max":-42},"walkSpeed":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":-300,"baseEarthDefence":-200,"baseThunderDefence":-200,"baseWaterDefence":-200,"baseFireDefence":-200,"baseAirDefence":-200},"rarity":"legendary"},"Dreadnought":{"internalName":"Dreadnought","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":99,"defence":100},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"healthRegen":-40,"raw1stSpellCost":-4,"raw3rdSpellCost":-6,"rawAttackSpeed":-2,"walkSpeed":-15,"exploding":60,"fireDamage":25},"base":{"baseHealth":4200,"baseFireDefence":120,"baseAirDefence":-120},"rarity":"legendary"},"Psionic Pretense":{"internalName":"Psionic Pretense","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":99,"dexterity":30,"intelligence":50},"majorIds":{"Expunge":"+Expunge: When using Heal, cast one instant pulse that heals 15% of your max health."},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawIntelligence":9,"healingEfficiency":{"min":-13,"raw":-10,"max":-7},"manaSteal":{"min":2,"raw":6,"max":8},"raw1stSpellCost":{"min":-1,"raw":-2,"max":-3},"reflection":{"min":3,"raw":10,"max":13},"thunderSpellDamage":{"min":5,"raw":18,"max":23},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3500,"baseThunderDefence":75,"baseWaterDefence":125},"rarity":"fabled"},"Kickback":{"internalName":"Kickback","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":99,"agility":80},"powderSlots":2,"identifications":{"rawStrength":5,"rawDefence":5,"rawAgility":5,"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawMainAttackDamage":{"min":78,"raw":260,"max":338},"walkSpeed":{"min":4,"raw":12,"max":16},"jumpHeight":1,"airDamage":{"min":7,"raw":22,"max":29},"thunderDefence":{"min":-17,"raw":-13,"max":-9},"waterDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseHealth":3125,"baseEarthDefence":-75,"baseFireDefence":-75,"baseAirDefence":140},"rarity":"rare"},"Lower":{"internalName":"Lower","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":585,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":99,"classRequirement":"shaman"},"powderSlots":3,"lore":"The name has got to be misspelled... It doesn't even make any sense! ","dropMeta":{"name":"??????????","type":"altar","coordinates":[1296,19,-4670]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawStrength":10,"raw1stSpellCost":{"min":72,"raw":55,"max":39},"raw2ndSpellCost":{"min":-4,"raw":-15,"max":-19},"raw3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"raw4thSpellCost":{"min":-4,"raw":-15,"max":-19}},"base":{"baseDamage":{"min":350,"raw":350,"max":430}},"rarity":"legendary"},"Fatal":{"internalName":"Fatal","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":529,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"mage","dexterity":110},"powderSlots":3,"lore":"A mage by the name of Lero claims to have harnessed the sheer power of lightning using a magical staff, however, the weapon is very unreliable in a pinch.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":25,"spellDamage":{"min":8,"raw":25,"max":33},"manaSteal":{"min":2,"raw":6,"max":8},"1stSpellCost":{"min":36,"raw":28,"max":20},"2ndSpellCost":{"min":-15,"raw":-49,"max":-64},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":340}},"rarity":"mythic"},"Anvil Crawler":{"internalName":"Backburner","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":495,"dropRestriction":"normal","requirements":{"level":99,"classRequirement":"assassin","dexterity":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawDexterity":15,"rawMainAttackDamage":{"min":173,"raw":575,"max":748},"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":50,"raw":50,"max":190},"baseThunderDamage":{"min":0,"raw":0,"max":1700}},"rarity":"unique"},"Span of the Starfield":{"internalName":"Span of the Starfield","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":98,"agility":85},"lore":"Infinitesimal specks of matter wane in and out of view among the darkness of this clasp. Even a glance reminds you of what little exists in the expanses of the Void from which the materials of this were scavenged from.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"damage":{"min":-34,"raw":-26,"max":-18},"2ndSpellCost":{"min":-2,"raw":-8,"max":-10},"rawAttackSpeed":1,"knockback":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":700,"baseThunderDefence":-20,"baseWaterDefence":-40,"baseFireDefence":-40},"rarity":"legendary"},"Arrester Pot":{"internalName":"Arrester Pot","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":98,"strength":45,"dexterity":50},"powderSlots":2,"identifications":{"lifeSteal":{"min":105,"raw":350,"max":455},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-4,"raw":-3,"max":-2},"mainAttackRange":{"min":7,"raw":23,"max":30},"thunderDefence":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":2600,"baseEarthDefence":100,"baseThunderDefence":150},"rarity":"rare"},"Voidglass Cloak":{"internalName":"Voidglass Cloak","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":98,"agility":70},"powderSlots":3,"identifications":{"healthRegenRaw":{"min":-91,"raw":-70,"max":-49},"airSpellDamage":{"min":5,"raw":15,"max":20},"rawAirMainAttackDamage":{"min":77,"raw":258,"max":335},"sprintRegen":{"min":8,"raw":25,"max":33},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3000,"baseFireDefence":-100,"baseAirDefence":150},"rarity":"set"},"Void Scavenger's Brace":{"internalName":"Void Scavenger's Brace","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":98,"strength":60,"intelligence":40,"agility":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":4,"healthRegen":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":38,"raw":125,"max":163},"manaSteal":{"min":2,"raw":8,"max":10},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":80,"baseWaterDefence":50,"baseAirDefence":80},"rarity":"rare"},"Sweet Memories":{"internalName":"Sweet Memories","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":98,"dexterity":45,"defence":40,"agility":40},"lore":"The feel of cool cream. The savory satisfaction of fatty stew. The bittersweetness of chocolate. Luxuries long since lost alongside what once was, tastes and sensations you can't find anymore. It's enough to bring a man to bitter, bitter tears.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"damage":{"min":-18,"raw":-14,"max":-10},"healthRegenRaw":{"min":27,"raw":90,"max":117},"lifeSteal":{"min":39,"raw":130,"max":169},"healingEfficiency":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":2,"raw":8,"max":10}},"base":{"baseThunderDefence":45,"baseFireDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Anthracite Ballista":{"internalName":"Anthracite Ballista","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":622,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer","defence":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawMainAttackDamage":{"min":228,"raw":760,"max":988},"spellDamage":{"min":-39,"raw":-30,"max":-21},"rawHealth":{"min":600,"raw":2000,"max":2600},"lifeSteal":{"min":150,"raw":500,"max":650},"exploding":{"min":9,"raw":30,"max":39},"fireDefence":{"min":8,"raw":25,"max":33},"airDefence":{"min":8,"raw":25,"max":33}},"base":{"baseFireDamage":{"min":545,"raw":545,"max":675},"baseAirDamage":{"min":545,"raw":545,"max":675}},"rarity":"rare"},"Ascendant Starwalkers":{"internalName":"Ascendant Starwalkers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":98,"dexterity":50,"agility":45},"powderSlots":3,"identifications":{"rawAgility":8,"healthRegenRaw":{"min":-156,"raw":-120,"max":-84},"manaSteal":{"min":3,"raw":10,"max":13},"rawDamage":{"min":50,"raw":165,"max":215},"reflection":{"min":8,"raw":25,"max":33},"jumpHeight":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":2750,"baseEarthDefence":-100,"baseThunderDefence":75,"baseAirDefence":75},"rarity":"rare"},"Earthsky Equinox":{"internalName":"Earthsky Equinox","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":662,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer","strength":50,"agility":50},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawStrength":16,"rawAgility":16,"rawEarthDamage":{"min":26,"raw":85,"max":111},"rawAirDamage":{"min":26,"raw":85,"max":111},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseEarthDamage":{"min":120,"raw":120,"max":145},"baseAirDamage":{"min":100,"raw":100,"max":165}},"rarity":"rare"},"Chestplate of Ineptitude":{"internalName":"Chestplate of Ineptitude","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98},"powderSlots":3,"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawIntelligence":-2,"rawDefence":-2,"rawAgility":-2,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":60,"raw":200,"max":260},"spellDamage":{"min":-39,"raw":-30,"max":-21},"rawAttackSpeed":1,"mainAttackRange":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3375},"rarity":"rare"},"Angelic Gem":{"internalName":"Angelic Gem","type":"ingredient","requirements":{"level":98,"skills":["jeweling"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"airDefence":{"min":4,"raw":4,"max":5},"waterDefence":{"min":4,"raw":4,"max":5},"fireDefence":{"min":4,"raw":4,"max":5},"earthDefence":{"min":4,"raw":4,"max":5},"thunderDefence":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-103000,"strengthRequirement":12,"dexterityRequirement":12,"intelligenceRequirement":12,"defenceRequirement":12,"agilityRequirement":12},"droppedBy":[{"name":"Angel Of Battle","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Nature","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]}]},"Fissured Tablet":{"internalName":"Fissured Tablet","type":"ingredient","requirements":{"level":98,"skills":["woodworking"]},"icon":{"format":"legacy","value":"340:0"},"identifications":{"manaRegen":{"min":6,"raw":6,"max":8},"rawDefence":{"min":5,"raw":5,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-99000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":12,"agilityRequirement":0}},"Dragon Aura":{"internalName":"Dragon Aura","type":"ingredient","requirements":{"level":98,"skills":["scribing"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"rawSpellDamage":{"min":60,"raw":60,"max":75},"rawMainAttackDamage":{"min":60,"raw":60,"max":75}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gale Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Emerald Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Sky Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]}]},"Red Mercury":{"internalName":"Red Mercury","type":"ingredient","requirements":{"level":98,"skills":["cooking"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"rawHealth":{"min":600,"raw":600,"max":800},"healthRegenRaw":{"min":-96,"raw":-96,"max":-72}},"tier":1,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Angel Of Battle","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]}]},"Ghostly Plume":{"internalName":"Ghostly Plume","type":"ingredient","requirements":{"level":98,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Sylphid Ghost","coords":[1359,100,-4705,6]},{"name":"Sylphid Servant","coords":[1359,100,-4705,6]},{"name":"Sylphid Gatekeeper","coords":null}]},"Sylphid Tears":{"internalName":"Sylphid Tears","type":"ingredient","requirements":{"level":98,"skills":["alchemism"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"airDamage":{"min":8,"raw":8,"max":16},"airDefence":{"min":10,"raw":10,"max":18}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":15},"droppedBy":[{"name":"Sylphid Servant","coords":[1359,100,-4705,6]},{"name":"Sylphid Gatekeeper","coords":null},{"name":"Sylphid Ghost","coords":[1359,100,-4705,6]}]},"Ocea Steel":{"internalName":"Ocea Steel","type":"ingredient","requirements":{"level":98,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"earthDamage":{"min":15,"raw":15,"max":18},"thunderDamage":{"min":15,"raw":15,"max":18},"waterDamage":{"min":15,"raw":15,"max":18},"fireDamage":{"min":15,"raw":15,"max":18},"airDamage":{"min":15,"raw":15,"max":18}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-154000,"strengthRequirement":12,"dexterityRequirement":12,"intelligenceRequirement":12,"defenceRequirement":12,"agilityRequirement":12},"droppedBy":[{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]}]},"Dragonling Scale":{"internalName":"Dragonling Scale","type":"ingredient","requirements":{"level":98,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"waterDefence":{"min":3,"raw":3,"max":7},"thunderDefence":{"min":-8,"raw":-8,"max":-6},"earthDefence":{"min":5,"raw":5,"max":8}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gale Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Emerald Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Sky Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Shadow Dragonling","coords":null},{"name":"Sapphire Dragonling","coords":null},{"name":"Black Dragonling","coords":null},{"name":"Amethyst Dragonling","coords":null},{"name":"White Dragonling","coords":null},{"name":"Dragonling Of The Depths","coords":null},{"name":"Red Dragonling","coords":null},{"name":"Crystal Dragonling","coords":null},{"name":"Golden Dragonling","coords":null},{"name":"Earth Dragonling","coords":null}]},"Dragonling Egg":{"internalName":"Dragonling Egg","type":"ingredient","requirements":{"level":98,"skills":["cooking"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"airDefence":{"min":6,"raw":6,"max":12},"earthDefence":{"min":8,"raw":8,"max":13},"thunderDefence":{"min":5,"raw":5,"max":11}},"tier":1,"consumableOnlyIDs":{"duration":-350,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gale Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Emerald Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]},{"name":"Sky Dragonling","coords":[[1239,48,-4349,15],[1251,64,-4386,16],[1242,82,-4425,20]]}]},"Float Stone":{"internalName":"Float Stone","type":"ingredient","requirements":{"level":98,"skills":["tailoring"]},"icon":{"format":"legacy","value":"155:2"},"identifications":{"jumpHeight":{"min":1,"raw":1,"max":1},"airDamage":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":22}},"Impeccable Light Jungle Relik":{"internalName":"Impeccable Light Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":432,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":170,"raw":170,"max":176}},"rarity":"common"},"Drumstick":{"internalName":"Drumstick","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":297,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","dexterity":40,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"rawDexterity":13,"rawMainAttackDamage":{"min":12,"raw":41,"max":53},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":0,"raw":0,"max":34},"baseThunderDamage":{"min":34,"raw":34,"max":70}},"rarity":"unique"},"Valhalla":{"internalName":"Valhalla","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":40,"defence":40,"agility":40},"powderSlots":2,"identifications":{"rawStrength":9,"rawDefence":9,"rawAgility":9,"lifeSteal":{"min":65,"raw":215,"max":280},"walkSpeed":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-32,"raw":-25,"max":-17},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":3525,"baseEarthDefence":80,"baseFireDefence":80,"baseAirDefence":80},"rarity":"unique"},"Dragon Dance":{"internalName":"Paradox","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"dexterity":45,"intelligence":45,"defence":45,"agility":45},"powderSlots":4,"identifications":{"rawStrength":-99,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"spellDamage":{"min":6,"raw":21,"max":27},"rawSpellDamage":{"min":53,"raw":175,"max":228},"healthRegenRaw":{"min":-253,"raw":-195,"max":-136},"lifeSteal":{"min":-305,"raw":-235,"max":-164},"manaRegen":{"min":5,"raw":18,"max":23},"manaSteal":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":6,"raw":20,"max":26},"jumpHeight":1,"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2300,"baseEarthDefence":-150,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":150},"rarity":"rare"},"Contrail Shock":{"internalName":"Contrail Shock","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":98,"dexterity":55,"intelligence":55,"agility":50},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawMainAttackDamage":{"min":-46429,"raw":-35715,"max":-25000},"spellDamage":{"min":7,"raw":23,"max":30},"lifeSteal":{"min":101,"raw":335,"max":436},"manaSteal":{"min":4,"raw":14,"max":18},"rawAttackSpeed":{"min":2,"raw":6,"max":8},"exploding":{"min":9,"raw":30,"max":39},"sprint":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2950,"baseEarthDefence":-250,"baseThunderDefence":100,"baseWaterDefence":100,"baseAirDefence":80},"rarity":"legendary"},"Volcano":{"internalName":"Volcano","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":532,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin","strength":40,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawStrength":13,"rawDefence":13,"walkSpeed":{"min":-32,"raw":-25,"max":-17},"exploding":{"min":6,"raw":20,"max":26},"earthDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":5,"raw":18,"max":23},"fireDefence":{"min":5,"raw":18,"max":23}},"base":{"baseEarthDamage":{"min":155,"raw":155,"max":200},"baseFireDamage":{"min":135,"raw":135,"max":220}},"rarity":"unique"},"Paradox":{"internalName":"One For All","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":45,"dexterity":45,"defence":45,"agility":45},"powderSlots":4,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":-99,"rawDefence":5,"rawAgility":5,"rawMainAttackDamage":{"min":78,"raw":260,"max":338},"spellDamage":{"min":7,"raw":24,"max":31},"healthRegen":{"min":-195,"raw":-150,"max":-105},"lifeSteal":{"min":71,"raw":235,"max":306},"manaSteal":{"min":5,"raw":16,"max":21},"earthDefence":{"min":-65,"raw":-50,"max":-35},"thunderDefence":{"min":15,"raw":50,"max":65},"fireDefence":{"min":15,"raw":50,"max":65},"airDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseHealth":2200,"baseEarthDefence":100,"baseThunderDefence":-250,"baseFireDefence":-250,"baseAirDefence":100},"rarity":"rare"},"Bastille":{"internalName":"Bastille","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"defence":50},"powderSlots":3,"identifications":{"rawDexterity":13,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":-6,"raw":-5,"max":-3},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":5,"raw":17,"max":22},"elementalDefence":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":3600,"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":60},"rarity":"unique"},"The Parasite":{"internalName":"The Parasite","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":442,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior","strength":45,"dexterity":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"rawHealth":{"min":-1755,"raw":-1350,"max":-945},"lifeSteal":{"min":129,"raw":430,"max":559},"manaRegen":{"min":-23,"raw":-18,"max":-13},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":8,"raw":25,"max":33},"earthDamage":{"min":5,"raw":17,"max":22},"thunderDamage":{"min":5,"raw":17,"max":22},"fireDefence":{"min":-36,"raw":-28,"max":-20}},"base":{"baseDamage":{"min":50,"raw":50,"max":150},"baseEarthDamage":{"min":70,"raw":70,"max":125},"baseThunderDamage":{"min":20,"raw":20,"max":175}},"rarity":"rare"},"Seipodon":{"internalName":"Seipodon","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"intelligence":75},"powderSlots":2,"identifications":{"rawIntelligence":14,"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-32,"raw":-25,"max":-17},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3000,"baseThunderDefence":-90,"baseWaterDefence":140},"rarity":"rare"},"Yggdrasil":{"internalName":"Yggdrasil","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":284,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","strength":35,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":9,"rawIntelligence":5,"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":45,"raw":45,"max":65},"baseEarthDamage":{"min":76,"raw":76,"max":90}},"rarity":"unique"},"Warchief":{"internalName":"Warchief","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":80,"dexterity":80},"powderSlots":3,"lore":"Sheer strength exudes from these Orcish relics, simple sandals ill-fitting to humans or Villagers. Enchanted with power and rage rather than magic, the strength that is provided when they are worn is unparalleled.","identifications":{"rawStrength":20,"rawDexterity":10,"mainAttackDamage":{"min":15,"raw":50,"max":65},"rawMainAttackDamage":{"min":95,"raw":315,"max":410},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":11,"raw":35,"max":46},"earthDamage":{"min":9,"raw":29,"max":38},"thunderDamage":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":5225,"baseEarthDefence":-150,"baseThunderDefence":-150,"baseWaterDefence":-100,"baseFireDefence":-100,"baseAirDefence":-100},"rarity":"mythic"},"Achromatic Gloom":{"internalName":"Achromatic Gloom","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":98},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"rawStrength":-4,"rawDexterity":-4,"rawIntelligence":-4,"rawDefence":-4,"rawAgility":-4,"mainAttackDamage":{"min":4,"raw":14,"max":18},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"spellDamage":{"min":4,"raw":14,"max":18},"rawSpellDamage":{"min":26,"raw":85,"max":111}},"rarity":"rare"},"Skipjack":{"internalName":"Skipjack","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":98},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"walkSpeed":7,"sprint":100,"sprintRegen":-80},"rarity":"rare"},"The Queen's Headpiece":{"internalName":"The Queen's Headpiece","type":"armour","armourType":"helmet","armourColor":"rgb(91,21,81)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":98,"quest":"Royal Trials","dexterity":25,"agility":50},"powderSlots":2,"identifications":{"rawAgility":9,"rawMainAttackDamage":{"min":78,"raw":260,"max":338},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":6,"raw":19,"max":25},"stealing":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-32,"raw":-25,"max":-17},"fireDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":2700,"baseThunderDefence":75,"baseAirDefence":100},"rarity":"rare"},"Impeccable Light Jungle Spear":{"internalName":"Impeccable Light Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":289,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":131,"raw":131,"max":150}},"rarity":"common"},"Tremorcaller":{"internalName":"Tremorcaller","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":848,"dropRestriction":"never","requirements":{"level":98,"classRequirement":"shaman","strength":85},"majorIds":{"Dead Weight":"+Dead Weight: Totem's horizontal velocity is greatly increased at the cost of vertical movement."},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":10,"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"rawAttackSpeed":{"min":-6,"raw":-5,"max":-3},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"jumpHeight":-1,"earthSpellDamage":{"min":6,"raw":20,"max":26},"airSpellDamage":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":1550,"raw":1550,"max":1775}},"rarity":"fabled"},"Ensa's Failure":{"internalName":"Ensa's Failure","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":98,"strength":40,"dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"poison":{"min":360,"raw":1200,"max":1560},"thorns":{"min":3,"raw":11,"max":14},"earthDamage":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":3,"raw":11,"max":14},"waterDefence":{"min":-10,"raw":-8,"max":-6},"airDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":-250},"rarity":"rare"},"Lustrous":{"internalName":"Lustrous","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":423,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior","strength":40,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawStrength":7,"rawIntelligence":-12,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":84,"raw":280,"max":364},"rawHealth":{"min":-3120,"raw":-2400,"max":-1680},"earthDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":50,"raw":50,"max":150},"baseEarthDamage":{"min":170,"raw":170,"max":240},"baseFireDamage":{"min":140,"raw":140,"max":270}},"rarity":"unique"},"Cinderchain":{"internalName":"Cinderchain","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":98,"dexterity":30,"defence":60},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":10,"rawDefence":7,"rawMainAttackDamage":420,"spellDamage":10,"rawAttackSpeed":-1,"exploding":25,"earthDamage":-65,"thunderDamage":40,"fireDamage":45,"airDamage":-65},"base":{"baseHealth":2875,"baseEarthDefence":-150,"baseThunderDefence":150,"baseWaterDefence":-150,"baseFireDefence":150},"rarity":"rare"},"Necklace of a Thousand Storms":{"internalName":"Necklace of a Thousand Storms","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":98,"agility":50},"lore":"Sealed away by the Avos of the old days to prevent it from falling into the wrong hands, this necklace was enchanted to strengthen its wearers spiritual link to nature itself.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"rawStrength":-5,"rawAgility":10,"healthRegen":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":4,"raw":14,"max":18},"waterDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":-300,"baseAirDefence":60},"rarity":"fabled"},"Mistico":{"internalName":"Mistico","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":98,"dexterity":45},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawAgility":7,"lifeSteal":240,"manaSteal":7,"walkSpeed":24,"stealing":7,"thunderDamage":24},"base":{"baseHealth":2400,"baseEarthDefence":-100,"baseThunderDefence":100},"rarity":"rare"},"Sizzling Shawl":{"internalName":"Sizzling Shawl","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"intelligence":45,"defence":55},"powderSlots":2,"identifications":{"spellDamage":{"min":7,"raw":23,"max":30},"rawSpellDamage":{"min":46,"raw":152,"max":198},"healthRegen":{"min":-45,"raw":-35,"max":-24},"healthRegenRaw":{"min":-195,"raw":-150,"max":-105},"exploding":{"min":8,"raw":25,"max":33},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":3050,"baseThunderDefence":-180,"baseWaterDefence":80,"baseFireDefence":60},"rarity":"rare"},"Battleground Dancer":{"internalName":"Battleground Dancer","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":50,"agility":60},"powderSlots":2,"identifications":{"rawStrength":6,"rawAgility":6,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"rawMainAttackDamage":{"min":41,"raw":135,"max":176},"spellDamage":{"min":-32,"raw":-25,"max":-17},"thorns":{"min":6,"raw":20,"max":26},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":2750,"baseEarthDefence":80,"baseFireDefence":-120,"baseAirDefence":80},"rarity":"unique"},"Impeccable Granite Dagger":{"internalName":"Impeccable Granite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":363,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":162,"raw":162,"max":190}},"rarity":"common"},"Phantasmagoria":{"internalName":"Phantasmagoria","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":45,"dexterity":45,"intelligence":45,"agility":45},"powderSlots":4,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":-99,"rawAgility":5,"rawMainAttackDamage":{"min":60,"raw":200,"max":260},"spellDamage":{"min":9,"raw":31,"max":40},"lifeSteal":{"min":-461,"raw":-355,"max":-248},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":4,"raw":12,"max":16},"earthDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":2100,"baseThunderDefence":70,"baseFireDefence":-150,"baseAirDefence":70},"rarity":"rare"},"Cascade":{"internalName":"Cascade","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":423,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","strength":25,"dexterity":25,"intelligence":25,"defence":25,"agility":25},"powderSlots":3,"lore":"A great magical cataclysm at Mage Island brought on by a strange, seemingly disconnected series of events resulted in this wand absorbing nearly uncontrollably high levels of magic.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":-6,"rawDexterity":-6,"rawIntelligence":-6,"rawDefence":-6,"rawAgility":-6,"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"spellDamage":{"min":9,"raw":30,"max":39},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":9,"raw":30,"max":39},"exploding":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":18,"raw":18,"max":30},"baseEarthDamage":{"min":15,"raw":15,"max":30},"baseThunderDamage":{"min":15,"raw":15,"max":30},"baseWaterDamage":{"min":15,"raw":15,"max":30},"baseFireDamage":{"min":15,"raw":15,"max":30},"baseAirDamage":{"min":15,"raw":15,"max":30}},"rarity":"legendary"},"Misconduct":{"internalName":"Misconduct","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":628,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":-39,"raw":-30,"max":-21},"healthRegenRaw":{"min":-182,"raw":-140,"max":-98},"rawHealth":{"min":-1430,"raw":-1100,"max":-770},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseThunderDamage":{"min":20,"raw":20,"max":126},"baseWaterDamage":{"min":46,"raw":46,"max":100}},"rarity":"unique"},"Guillotine":{"internalName":"Guillotine","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":45,"dexterity":45,"intelligence":45,"defence":45},"powderSlots":4,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":-99,"mainAttackDamage":{"min":7,"raw":23,"max":30},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":45,"raw":150,"max":195},"rawHealth":{"min":-1738,"raw":-1337,"max":-936},"lifeSteal":{"min":65,"raw":215,"max":280},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":2,"raw":8,"max":10},"airDamage":{"min":-65,"raw":-50,"max":-35},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1000,"baseEarthDefence":70,"baseThunderDefence":70,"baseWaterDefence":70,"baseFireDefence":70,"baseAirDefence":-220},"rarity":"rare"},"Ophiolite":{"internalName":"Ophiolite","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":45,"intelligence":45,"defence":45,"agility":45},"powderSlots":4,"identifications":{"rawStrength":5,"rawDexterity":-99,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"mainAttackDamage":{"min":12,"raw":40,"max":52},"spellDamage":{"min":4,"raw":14,"max":18},"healthRegenRaw":{"min":51,"raw":170,"max":221},"lifeSteal":{"min":-305,"raw":-235,"max":-164},"manaRegen":{"min":7,"raw":24,"max":31},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2400,"baseEarthDefence":-60,"baseThunderDefence":-120,"baseWaterDefence":-60,"baseFireDefence":80,"baseAirDefence":80},"rarity":"rare"},"Impeccable Granite Wand":{"internalName":"Impeccable Granite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":218,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":130,"raw":130,"max":160}},"rarity":"common"},"Olive":{"internalName":"Olive","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":98,"strength":40,"intelligence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":3,"raw":9,"max":12},"earthDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":600,"baseEarthDefence":40,"baseWaterDefence":40,"baseFireDefence":-30},"rarity":"rare"},"Downfall":{"internalName":"Downfall","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":98,"strength":60,"defence":55},"lore":"\\[Community Event Winner\\] A fallen link from a chainmail hauberk of an older time, this ring fell from a giant taller than a mountain. As it sped through the air and gained momentum, it traveled so fast that it was battered to a tenth of its size.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawStrength":5,"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":4,"raw":12,"max":16},"earthDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":-600,"baseWaterDefence":-35,"baseAirDefence":-35},"rarity":"legendary"},"Impeccable Granite Bow":{"internalName":"Impeccable Granite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":438,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":500,"raw":500,"max":555}},"rarity":"common"},"Luto Aquarum":{"internalName":"Luto Aquarum","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":349,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","strength":50,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawMainAttackDamage":{"min":51,"raw":169,"max":220},"rawHealth":{"min":900,"raw":3000,"max":3900},"lifeSteal":{"min":81,"raw":269,"max":350},"manaSteal":{"min":4,"raw":12,"max":16},"healingEfficiency":{"min":6,"raw":20,"max":26},"3rdSpellCost":{"min":-7,"raw":-22,"max":-29},"walkSpeed":{"min":-32,"raw":-25,"max":-17},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":20,"raw":20,"max":25},"baseEarthDamage":{"min":190,"raw":190,"max":220},"baseWaterDamage":{"min":5,"raw":5,"max":5}},"rarity":"rare"},"Frigate":{"internalName":"Frigate","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":98,"intelligence":60,"agility":45},"dropMeta":{"name":"Corrupted Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"healthRegen":-25,"rawAttackSpeed":1,"walkSpeed":15,"sprint":15,"waterDamage":35,"airDamage":30},"base":{"baseHealth":2500,"baseEarthDefence":-75},"rarity":"rare"},"Facetious":{"internalName":"Facetious","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":98,"strength":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":2,"raw":5,"max":7},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseThunderDefence":-20,"baseAirDefence":40},"rarity":"unique"},"Noble Phantasm":{"internalName":"Noble Phantasm","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":443,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin","defence":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":30,"healthRegenRaw":{"min":46,"raw":153,"max":199},"rawHealth":{"min":810,"raw":2700,"max":3510},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-78,"raw":-60,"max":-42},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":70,"raw":70,"max":130},"baseFireDamage":{"min":85,"raw":85,"max":145}},"rarity":"rare"},"Dancing Blade":{"internalName":"Dancing Blade","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":452,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin","agility":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":10,"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":35,"raw":35,"max":55},"baseAirDamage":{"min":50,"raw":50,"max":70}},"rarity":"unique"},"Monster":{"internalName":"Monster","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":442,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","defence":110},"powderSlots":3,"lore":"This wand merges with the user on touch, bringing about horrific changes to them. Elongated nails, sharp teeth and the ability to breathe fire are trademarks of the beast.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":40,"mainAttackDamage":{"min":12,"raw":40,"max":52},"rawHealth":{"min":900,"raw":3000,"max":3900},"lifeSteal":{"min":140,"raw":465,"max":605},"manaSteal":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":5,"raw":4,"max":3},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":90,"raw":90,"max":140},"baseFireDamage":{"min":150,"raw":150,"max":210}},"rarity":"mythic"},"Ex Nihilo":{"internalName":"Ex Nihilo","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":50,"agility":50},"powderSlots":2,"identifications":{"rawIntelligence":15,"rawDefence":-15,"rawMainAttackDamage":{"min":71,"raw":235,"max":306},"spellDamage":{"min":8,"raw":25,"max":33},"lifeSteal":{"min":84,"raw":280,"max":364},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":4000,"baseWaterDefence":-100,"baseFireDefence":-100},"rarity":"legendary"},"Aphotic":{"internalName":"Aphotic","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"intelligence":100},"powderSlots":2,"lore":"This dark relic was found at the very bottom of the deepest trench of the ocean. It drains all light surrounding it, blinding everything in a strange abyssal darkness.","identifications":{"rawDexterity":-80,"rawIntelligence":5,"spellDamage":{"min":15,"raw":50,"max":65},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"rawAttackSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":3200,"baseThunderDefence":-150,"baseWaterDefence":150},"rarity":"legendary"},"Mephistophelian":{"internalName":"Mephistophelian","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":730,"dropRestriction":"never","requirements":{"level":98,"classRequirement":"shaman","dexterity":50,"agility":30},"majorIds":{"Faustian Gambit":"+Faustian Gambit: Frog Dance triggers only once but has increased vertical velocity, damage, and knockback."},"powderSlots":3,"lore":"When the two opposing Realms come to blows, War lashes out with blind enmity. Such is the nature of a Devil, each born from the hate those two Beasts bear.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawAgility":20,"jumpHeight":{"min":1,"raw":2,"max":3},"slowEnemy":{"min":4,"raw":14,"max":18},"knockback":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":7,"raw":24,"max":31},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":66,"raw":66,"max":66},"baseThunderDamage":{"min":66,"raw":66,"max":202},"baseAirDamage":{"min":66,"raw":66,"max":118}},"rarity":"fabled"},"Impeccable Light Jungle Dagger":{"internalName":"Impeccable Light Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":360,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":102,"raw":102,"max":130}},"rarity":"common"},"Veritas":{"internalName":"Veritas","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":464,"dropRestriction":"never","requirements":{"level":98,"classRequirement":"warrior","defence":55,"agility":55},"majorIds":{"Divine Honor":"+Divine Honor: Increases the bonus from Radiance by 10%. Bash deals -15% per hit."},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":8,"healthRegenRaw":{"min":75,"raw":250,"max":325},"lifeSteal":{"min":-325,"raw":-250,"max":-175},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"elementalDefence":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":25,"raw":25,"max":25},"baseFireDamage":{"min":75,"raw":75,"max":125},"baseAirDamage":{"min":75,"raw":75,"max":125}},"rarity":"fabled"},"Hetusol":{"internalName":"Hetusol","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"defence":55},"powderSlots":2,"lore":"\\[Community Event Winner\\] The make of this massive cloak is unlike anything seen before among the provinces. Foreign images shift and melt in ethereal projections within the inside.","identifications":{"rawDefence":10,"healthRegen":{"min":18,"raw":60,"max":78},"healthRegenRaw":{"min":30,"raw":100,"max":130},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":4200,"baseEarthDefence":-100,"baseThunderDefence":-160,"baseWaterDefence":80,"baseFireDefence":180},"rarity":"legendary"},"Resolve":{"internalName":"Resolve","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"defence":40,"agility":40},"powderSlots":2,"identifications":{"rawIntelligence":-20,"rawDefence":7,"rawAgility":7,"manaSteal":{"min":1,"raw":4,"max":5},"1stSpellCost":{"min":-4,"raw":-13,"max":-17},"3rdSpellCost":{"min":-4,"raw":-13,"max":-17},"waterDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3425,"baseThunderDefence":-150,"baseFireDefence":100,"baseAirDefence":100},"rarity":"unique"},"Dogun Sautoir":{"internalName":"Dogun Sautoir","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":98,"strength":50,"defence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":5,"mainAttackDamage":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":28,"raw":92,"max":120},"rawAttackSpeed":{"min":-10,"raw":-8,"max":-6},"sprint":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":700,"baseEarthDefence":60,"baseFireDefence":60},"rarity":"legendary"},"Rodoroc's Pride":{"internalName":"Rodoroc's Pride","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":40,"defence":40},"powderSlots":3,"identifications":{"rawStrength":8,"rawDefence":8,"rawHealth":{"min":210,"raw":700,"max":910},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3700,"baseEarthDefence":125,"baseWaterDefence":-175,"baseFireDefence":125},"rarity":"unique"},"Magnitude":{"internalName":"Magnitude","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":398,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior","strength":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":2,"raw":5,"max":7},"earthDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":260,"raw":260,"max":300},"baseEarthDamage":{"min":150,"raw":150,"max":250}},"rarity":"unique"},"Propeller Hat":{"internalName":"Propeller Hat","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":98,"agility":70},"majorIds":{"Windsurf":"+Windsurf: Righting Reflex lasts twice as long and is affected stronger by movement speed."},"powderSlots":3,"lore":"A tag on the inside of the hat reads: \"Do not fly during thunderstorms! The wearer is liable for all injuries sustained while using this product.\"","dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawDexterity":-5,"rawAgility":15,"spellDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":8,"max":10},"reflection":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":5,"raw":15,"max":20},"jumpHeight":{"min":1,"raw":2,"max":3},"airSpellDamage":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":3700,"baseThunderDefence":-125,"baseAirDefence":200},"rarity":"fabled"},"Arakadicus' Maw":{"internalName":"Arakadicus' Maw","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":555,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"assassin","strength":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawStrength":12,"rawMainAttackDamage":{"min":66,"raw":220,"max":286},"poison":{"min":2400,"raw":8000,"max":10400},"manaSteal":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":140,"raw":140,"max":190},"baseEarthDamage":{"min":150,"raw":150,"max":260}},"rarity":"rare"},"Arkhalis":{"internalName":"Arkhalis","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":654,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"shaman","dexterity":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawStrength":-15,"rawDexterity":15,"rawMainAttackDamage":{"min":93,"raw":310,"max":403},"rawHealth":{"min":-1755,"raw":-1350,"max":-945},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":-1,"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseThunderDamage":{"min":122,"raw":122,"max":182}},"rarity":"rare"},"Impeccable Granite Spear":{"internalName":"Impeccable Granite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":288,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":320,"raw":320,"max":375}},"rarity":"common"},"Stratosphere":{"internalName":"Stratosphere","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"dexterity":65,"intelligence":65},"powderSlots":3,"identifications":{"spellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":4,"raw":12,"max":16},"jumpHeight":{"min":1,"raw":3,"max":4},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3200,"baseEarthDefence":-120,"baseThunderDefence":120,"baseWaterDefence":120,"baseFireDefence":-60,"baseAirDefence":-60},"rarity":"legendary"},"Ace of Spades":{"internalName":"Ace of Spades","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"warrior","defence":45,"agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawDefence":10,"rawAgility":13,"rawHealth":{"min":810,"raw":2700,"max":3510},"manaRegen":{"min":-23,"raw":-18,"max":-13},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseFireDamage":{"min":75,"raw":75,"max":75},"baseAirDamage":{"min":0,"raw":0,"max":150}},"rarity":"rare"},"Impeccable Light Jungle Bow":{"internalName":"Impeccable Light Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":433,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":198,"raw":198,"max":222}},"rarity":"common"},"Brilliant Diamond Boots":{"internalName":"Brilliant Diamond Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98},"powderSlots":3,"base":{"baseHealth":2460},"rarity":"common"},"Spring":{"internalName":"Spring","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":824,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"archer","intelligence":120},"powderSlots":3,"lore":"Arrows fired by this bow are pure ice, but when they hit the enemy, burst into magical water, flash-freezing all that it touches. The frost burns will never heal.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawStrength":15,"rawDexterity":-40,"rawIntelligence":15,"manaRegen":{"min":9,"raw":30,"max":39},"slowEnemy":{"min":6,"raw":19,"max":25},"weakenEnemy":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":-65,"raw":-50,"max":-35},"waterDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":135,"raw":135,"max":185},"baseWaterDamage":{"min":170,"raw":170,"max":310}},"rarity":"mythic"},"Dupliblaze":{"internalName":"Dupliblaze","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":98,"defence":60},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":6,"exploding":18,"fireDamage":24,"waterDefence":-12},"base":{"baseHealth":500,"baseWaterDefence":-80,"baseFireDefence":40},"rarity":"rare"},"Impeccable Granite Relik":{"internalName":"Impeccable Granite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":434,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":280,"raw":280,"max":298}},"rarity":"common"},"Impeccable Light Jungle Wand":{"internalName":"Impeccable Light Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":216,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":80,"raw":80,"max":93}},"rarity":"common"},"Ophiuchus":{"internalName":"Ophiuchus","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"intelligence":70,"defence":70},"powderSlots":2,"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":3800,"baseEarthDefence":-200,"baseWaterDefence":100,"baseFireDefence":100},"rarity":"legendary"},"Necrosis":{"internalName":"Cancer","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"dexterity":90},"powderSlots":3,"lore":"450 years ago a demonic plague like no other spread through Gavel, killing thousands. That is, until a priest encased the disease inside a helmet and warned everyone never to wear it.","identifications":{"rawMainAttackDamage":{"min":-279,"raw":-215,"max":-150},"spellDamage":{"min":-26,"raw":-20,"max":-14},"poison":{"min":3192,"raw":10640,"max":13832},"lifeSteal":{"min":116,"raw":385,"max":501},"manaSteal":{"min":3,"raw":10,"max":13},"rawAttackSpeed":1},"base":{"baseHealth":3200,"baseThunderDefence":100,"baseAirDefence":-150},"rarity":"legendary"},"Timthriall":{"internalName":"Timthriall","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":628,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"shaman","strength":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":15,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":4,"raw":12,"max":16},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":152,"raw":152,"max":153},"baseEarthDamage":{"min":152,"raw":152,"max":153}},"rarity":"rare"},"Petrichor":{"internalName":"Petrichor","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"strength":30,"agility":30},"powderSlots":3,"lore":"\\[Community Event Winner\\]","identifications":{"rawStrength":7,"rawAgility":7,"manaSteal":{"min":2,"raw":8,"max":10},"rawMaxMana":{"min":6,"raw":20,"max":26},"earthDamage":{"min":6,"raw":20,"max":26},"waterDamage":{"min":8,"raw":25,"max":33},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3050,"baseEarthDefence":75,"baseWaterDefence":75,"baseAirDefence":75},"rarity":"unique"},"Cancer֎":{"internalName":"Cancer֎","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":98,"defence":80},"powderSlots":3,"identifications":{"rawIntelligence":10,"rawDefence":15,"healthRegenRaw":{"min":90,"raw":300,"max":390},"rawMaxMana":{"min":12,"raw":40,"max":52},"waterDefence":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":5200,"baseFireDefence":180},"rarity":"legendary"},"Female Pirate Wig":{"internalName":"Female Pirate Wig","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"allowCraftsman":true,"requirements":{"level":98},"identifications":{"walkSpeed":5,"xpBonus":10,"lootBonus":15,"stealing":3},"base":{"baseHealth":3075},"rarity":"unique"},"Waking Vigil":{"internalName":"The Lethe","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":300,"dropRestriction":"normal","requirements":{"level":98,"classRequirement":"mage","strength":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"mainAttackDamage":{"min":9,"raw":31,"max":40},"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"spellDamage":{"min":-65,"raw":-50,"max":-35},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseEarthDamage":{"min":30,"raw":30,"max":65},"baseAirDamage":{"min":30,"raw":30,"max":65}},"rarity":"rare"},"Holy Powder":{"internalName":"Holy Powder","type":"ingredient","requirements":{"level":98,"skills":["alchemism"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"healthRegenRaw":{"min":70,"raw":70,"max":75},"reflection":{"min":8,"raw":8,"max":12}},"tier":0,"consumableOnlyIDs":{"duration":-93,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Angel Of Nature","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Wind","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Angel Of Battle","coords":[[1396,124,-4730,40],[1381,120,-4772,30],[1479,106,-4772,20],[1010,107,-4678,20],[1024,107,-4742,20],[1112,107,-4733,20],[1098,111,-4652,30],[1112,107,-4733,40],[1098,111,-4652,40],[1421,138,-4783,40],[1357,141,-4626,20],[1505,102,-4845,20],[1491,111,-4664,30]]},{"name":"Dying Angel","coords":[1123,122,-4878,20]}]},"Shajaea":{"internalName":"Shajaea","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":548,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"archer","intelligence":45,"defence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawIntelligence":10,"rawDefence":10,"healthRegen":{"min":12,"raw":40,"max":52},"rawHealth":{"min":600,"raw":2000,"max":2600},"manaRegen":{"min":4,"raw":12,"max":16},"damage":{"min":-21,"raw":-16,"max":-11},"waterDefence":{"min":7,"raw":23,"max":30},"fireDefence":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":65,"raw":65,"max":115},"baseWaterDamage":{"min":100,"raw":100,"max":175},"baseFireDamage":{"min":100,"raw":100,"max":175}},"rarity":"rare"},"Void-Drenched Bauble":{"internalName":"Void-Drenched Bauble","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":97,"strength":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawAgility":3,"rawMainAttackDamage":{"min":23,"raw":76,"max":99},"walkSpeed":{"min":4,"raw":12,"max":16},"mainAttackRange":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-250,"baseEarthDefence":45,"baseAirDefence":45},"rarity":"rare"},"Slimy Shako":{"internalName":"Slimy Shako","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"strength":60},"powderSlots":2,"identifications":{"rawDefence":-10,"healthRegen":{"min":-65,"raw":-50,"max":-35},"poison":{"min":3900,"raw":13000,"max":16900},"rawEarthMainAttackDamage":{"min":65,"raw":215,"max":280},"sprintRegen":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3625,"baseEarthDefence":140},"rarity":"rare"},"Voidglass Greaves":{"internalName":"Voidglass Greaves","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":97,"agility":65},"powderSlots":3,"identifications":{"healthRegen":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":69,"raw":231,"max":300},"manaSteal":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":6,"raw":20,"max":26},"airDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2900,"baseFireDefence":-75,"baseAirDefence":200},"rarity":"set"},"Suspended Soliloquy":{"internalName":"Suspended Soliloquy","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":408,"dropRestriction":"never","requirements":{"level":97,"classRequirement":"mage","agility":85},"majorIds":{"Inversion":"+Inversion: Teleport will grant you 2 seconds of levitation."},"powderSlots":2,"lore":"No one can hold you down anymore.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.air3"}},"identifications":{"rawStrength":15,"rawHealth":{"min":-2600,"raw":-2000,"max":-1400},"airMainAttackDamage":{"min":23,"raw":77,"max":100},"3rdSpellCost":{"min":65,"raw":50,"max":35},"rawAttackSpeed":{"min":-23,"raw":-18,"max":-13},"jumpHeight":{"min":1,"raw":3,"max":4},"mainAttackRange":{"min":23,"raw":77,"max":100}},"base":{"baseAirDamage":{"min":675,"raw":675,"max":925}},"rarity":"fabled"},"Grand Design":{"internalName":"Grand Design","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":746,"dropRestriction":"never","requirements":{"level":97,"classRequirement":"shaman","strength":45,"defence":65},"majorIds":{"Ergosphere":"+Ergosphere: Storm Dance instead lets your Totems pull enemies within their radius. Totem duration is decreased."},"powderSlots":3,"lore":"It’s a gravity as abstract as it is physical, of phenomena so fascinating one can’t help but be pulled in.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.fire3"}},"identifications":{"rawStrength":20,"rawHealth":{"min":485,"raw":1615,"max":2100},"damage":{"min":5,"raw":15,"max":20},"1stSpellCost":{"min":85,"raw":65,"max":46},"knockback":{"min":-84,"raw":-65,"max":-45},"slowEnemy":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":0,"raw":0,"max":125},"baseEarthDamage":{"min":615,"raw":615,"max":785},"baseFireDamage":{"min":545,"raw":545,"max":855}},"rarity":"fabled"},"Adhered Plate":{"internalName":"Adhered Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"strength":45,"defence":50},"powderSlots":2,"identifications":{"rawStrength":7,"rawDexterity":-5,"rawDefence":7,"mainAttackDamage":{"min":7,"raw":23,"max":30},"healthRegen":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"knockback":{"min":15,"raw":50,"max":65},"earthDefence":{"min":12,"raw":40,"max":52},"fireDefence":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":3625,"baseEarthDefence":225,"baseThunderDefence":-100,"baseFireDefence":225},"rarity":"rare"},"Ghostly Quasar":{"internalName":"Ghostly Quasar","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"strength":45,"agility":65},"powderSlots":2,"lore":"An eerie glimpse into what once was, shining beautifully in the infinite expanse of the Void. As tragic a tale it is, perhaps it is better left a wisp.","identifications":{"rawStrength":8,"manaSteal":{"min":-10,"raw":-8,"max":-6},"rawAttackSpeed":1,"walkSpeed":{"min":4,"raw":14,"max":18},"mainAttackRange":{"min":6,"raw":20,"max":26},"knockback":{"min":12,"raw":40,"max":52},"rawMaxMana":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":3250,"baseEarthDefence":100,"baseWaterDefence":-275,"baseAirDefence":100},"rarity":"legendary"},"Fehu":{"internalName":"Fehu","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":97},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"xpBonus":{"min":4,"raw":14,"max":18},"lootBonus":{"min":4,"raw":13,"max":17}},"rarity":"unique"},"Hydrofluoric Acid":{"internalName":"Hydrofluoric Acid","type":"ingredient","requirements":{"level":97,"skills":["woodworking","scribing"]},"icon":{"format":"legacy","value":"374:0"},"identifications":{"poison":{"min":1600,"raw":1600,"max":1700},"waterDamage":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"U-45tabot","coords":[[-1737,75,-2650,180],[-1496,75,-2529,220]]}]},"Soulfire Matterweave":{"internalName":"Soulfire Matterweave","type":"ingredient","requirements":{"level":97,"skills":["armouring"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"gatherXpBonus":{"min":4,"raw":4,"max":5},"fireDamage":{"min":15,"raw":15,"max":16}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-153000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":20,"agilityRequirement":0},"droppedBy":[{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]},{"name":"Pyroclastic Hydra","coords":null}]},"Inactive Rune":{"internalName":"Inactive Rune","type":"ingredient","requirements":{"level":97,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"1eb2c56a18849a118d00dedcd8f1df50e698107fa6eafb32bfb291ebb02d3b1f"},"identifications":{"rawSpellDamage":{"min":40,"raw":40,"max":50},"rawMainAttackDamage":{"min":60,"raw":60,"max":65},"healthRegenRaw":{"min":25,"raw":25,"max":30}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Contorted Stone":{"internalName":"Contorted Stone","type":"ingredient","requirements":{"level":97,"skills":["weaponsmithing"]},"icon":{"format":"skin","value":"7840b87d52271d2a755dedc82877e0ed3df67dcc42ea479ec146176b02779a5"},"identifications":{"healthRegenRaw":{"min":-30,"raw":-30,"max":-10},"rawStrength":{"min":9,"raw":9,"max":12},"rawEarthMainAttackDamage":{"min":40,"raw":40,"max":50}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-155000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Umbral Sentinel","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"Dernic Lurker","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]}]},"Angel's Blessing":{"internalName":"Angel's Blessing","type":"ingredient","requirements":{"level":97,"skills":["jeweling"]},"icon":{"format":"legacy","value":"339:0"},"identifications":{"healingEfficiency":{"min":2,"raw":2,"max":2},"elementalDamage":{"min":-3,"raw":-3,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":10,"defenceRequirement":10,"agilityRequirement":10},"droppedBy":[{"name":"Youthful Angel","coords":[[1083,79,-4660,9],[1087,72,-4677,8],[1430,121,-4631,17]]},{"name":"Youthful Angel","coords":[1070,77,-4714,20]}]},"Hollow Psyche":{"internalName":"Hollow Psyche","type":"ingredient","requirements":{"level":97,"skills":["armouring","weaponsmithing"]},"icon":{"format":"skin","value":"d9e54e818d617835eaf81552a94d8bb05b0e50e7cc44fd99ebef27e4f511ade2"},"identifications":{"manaSteal":{"min":3,"raw":3,"max":5},"spellDamage":{"min":5,"raw":5,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-115000,"strengthRequirement":0,"dexterityRequirement":30,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hollow Grovetender","coords":false}]},"Glimmering Beak":{"internalName":"Glimmering Beak","type":"ingredient","requirements":{"level":97,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"airDamage":{"min":10,"raw":10,"max":16},"lootBonus":{"min":3,"raw":3,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-101000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20},"droppedBy":[{"name":"Sky Conure","coords":[[1195,137,-4526,20],[1204,141,-4600,20],[1203,131,-4684,20],[1331,153,-4576,20],[1390,157,-4528,30],[1270,122,-4798,30],[1206,152,-4857,30],[1206,152,-4857,40],[1398,114,-4616,20],[1250,152,-4576,20]]}]},"Plasteel Plating":{"internalName":"Plasteel Plating","type":"ingredient","requirements":{"level":97,"skills":["weaponsmithing","tailoring"]},"icon":{"format":"legacy","value":"160:15"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":-160,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-154000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"U-45tabot","coords":[[-1737,75,-2650,180],[-1496,75,-2529,220]]}]},"Calidade Mail":{"internalName":"Calidade Mail","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":55,"defence":50},"powderSlots":3,"identifications":{"rawDexterity":5,"rawDefence":4,"rawAgility":6,"mainAttackDamage":{"min":9,"raw":30,"max":39},"rawMainAttackDamage":{"min":-147,"raw":-113,"max":-79},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":-188,"raw":-145,"max":-101},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":1,"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2700,"baseThunderDefence":-80,"baseFireDefence":-80,"baseAirDefence":-80},"rarity":"unique"},"Genoxyde":{"internalName":"Genoxyde","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":456,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin","defence":40,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"lifeSteal":{"min":87,"raw":290,"max":377},"walkSpeed":{"min":4,"raw":12,"max":16},"exploding":{"min":5,"raw":15,"max":20},"fireDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":170,"raw":170,"max":310},"baseAirDamage":{"min":290,"raw":290,"max":330}},"rarity":"unique"},"King of Hearts":{"internalName":"King of Hearts","type":"weapon","weaponType":"wand","attackSpeed":"normal","dropRestriction":"normal","requirements":{"level":97,"classRequirement":"mage","intelligence":75,"defence":65},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawMainAttackDamage":{"min":-32500,"raw":-25000,"max":-17500},"rawSpellDamage":{"min":-32500,"raw":-25000,"max":-17500},"healthRegenRaw":{"min":60,"raw":200,"max":260},"rawHealth":{"min":1108,"raw":3692,"max":4800},"poison":{"min":-65000,"raw":-50000,"max":-35000},"manaRegen":{"min":5,"raw":18,"max":23},"healingEfficiency":{"min":13,"raw":42,"max":55},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6}},"rarity":"rare"},"Sapphire":{"internalName":"Sapphire","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"strength":40,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":5,"rawIntelligence":5,"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"rawSpellDamage":{"min":42,"raw":140,"max":182},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":5,"raw":18,"max":23},"stealing":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":3050,"baseEarthDefence":-80,"baseWaterDefence":-80},"rarity":"unique"},"Collapse":{"internalName":"Collapse","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":641,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"warrior","strength":35,"dexterity":35,"intelligence":35,"defence":35,"agility":35},"majorIds":{"Fission":"+Fission: Explosions from your Exploding ID are twice as big and twice as strong."},"powderSlots":3,"lore":"Despite the light weight of the weapon, the spearhead has been made from incredibly dense cosmic stone. A strong enough impact can directly destroy matter. Due to this danger, it is sought after to be destroyed.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":45,"mainAttackDamage":{"min":20,"raw":65,"max":85},"manaSteal":{"min":5,"raw":18,"max":23},"exploding":{"min":75,"raw":250,"max":325},"elementalDefence":{"min":-84,"raw":-65,"max":-45}},"base":{"baseDamage":{"min":35,"raw":35,"max":60},"baseEarthDamage":{"min":0,"raw":0,"max":290},"baseThunderDamage":{"min":0,"raw":0,"max":290},"baseWaterDamage":{"min":0,"raw":0,"max":290},"baseFireDamage":{"min":0,"raw":0,"max":290},"baseAirDamage":{"min":0,"raw":0,"max":290}},"rarity":"mythic"},"Shaggy Boots":{"internalName":"Shaggy Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":60},"powderSlots":2,"identifications":{"rawDexterity":10,"rawMainAttackDamage":{"min":390,"raw":1300,"max":1690},"rawHealth":{"min":-1040,"raw":-800,"max":-560},"lifeSteal":{"min":90,"raw":300,"max":390},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":3000,"baseEarthDefence":-150,"baseThunderDefence":150},"rarity":"rare"},"Virgo":{"internalName":"Virgo","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"strength":70,"dexterity":70},"powderSlots":2,"lore":"These common leather boots were once owned by a barbarian with no magical prowess. Instead of enchanting it, he coated the soles in corrupted shards to punish those who opposed him.","identifications":{"rawDefence":-20,"rawAgility":-20,"mainAttackDamage":{"min":-58,"raw":-45,"max":-31},"thorns":1,"reflection":1,"rawAttackSpeed":{"min":1,"raw":2,"max":3},"exploding":{"min":20,"raw":65,"max":85},"earthDamage":{"min":5,"raw":16,"max":21},"thunderDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":5},"rarity":"legendary"},"Absolution":{"internalName":"Absolution","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":817,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"shaman","defence":115},"lore":"A deep regret stains this weapon—once a healing implement of the scholar-priest, its gentle power was turned and twisted as his ideals and resolve were tested, and faltered. With its wielder long passed, perhaps it can finally be absolved of the atrocities committed by his hand... and remember the peace it has long forgotten.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawHealth":{"min":900,"raw":3000,"max":3900},"manaRegen":{"min":5,"raw":16,"max":21},"healingEfficiency":{"min":23,"raw":77,"max":100},"raw1stSpellCost":{"min":-6,"raw":-20,"max":-26},"fireDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":14,"raw":45,"max":59},"thunderDefence":{"min":14,"raw":45,"max":59}},"base":{"baseFireDamage":{"min":185,"raw":185,"max":195}},"rarity":"mythic"},"Sharpened Harpoon":{"internalName":"Sharpened Harpoon","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":419,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"warrior","dexterity":35,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawDexterity":9,"rawIntelligence":9,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":6,"raw":20,"max":26},"rawHealth":{"min":-1365,"raw":-1050,"max":-735},"walkSpeed":{"min":-25,"raw":-19,"max":-13},"lootBonus":{"min":3,"raw":11,"max":14},"earthDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":105,"raw":105,"max":205},"baseThunderDamage":{"min":50,"raw":50,"max":300},"baseWaterDamage":{"min":150,"raw":150,"max":200}},"rarity":"unique"},"Impeccable Jungle Bow":{"internalName":"Impeccable Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":439,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":280,"raw":280,"max":305}},"rarity":"common"},"Manablast":{"internalName":"Manablast","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":328,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"mage","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawMainAttackDamage":{"min":-305,"raw":-235,"max":-164},"spellDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":69,"raw":231,"max":300},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":180,"raw":180,"max":215},"baseWaterDamage":{"min":180,"raw":180,"max":215}},"rarity":"rare"},"Gaia":{"internalName":"Gaia","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":502,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"mage","strength":105},"powderSlots":3,"lore":"The Dernel tribes revere various nature deities, each in their own unique fashions. One of the most notable was that of a lost tribe, who fashioned this blossoming stave as tribute to their deity of the earth itself.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":25,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":173,"raw":575,"max":748},"poison":{"min":4500,"raw":15000,"max":19500},"raw4thSpellCost":{"min":-3,"raw":-9,"max":-12},"thorns":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":140,"raw":140,"max":220},"baseEarthDamage":{"min":370,"raw":370,"max":480}},"rarity":"mythic"},"Apex":{"internalName":"Apex","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"dexterity":70,"agility":70},"majorIds":{"Alter Ego":"+Alter Ego: Awakened can be activated after saving 40% less mana, but its duration is reduced by 25%."},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"spellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":12,"raw":40,"max":52},"sprintRegen":{"min":-39,"raw":-30,"max":-21},"jumpHeight":1,"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":4150,"baseThunderDefence":120,"baseWaterDefence":-150,"baseFireDefence":-150,"baseAirDefence":120},"rarity":"fabled"},"Sigil of Resistance":{"internalName":"Sigil of Resistance","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":536,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"shaman","strength":40,"defence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawStrength":8,"rawDefence":12,"healthRegen":{"min":29,"raw":95,"max":124},"rawHealth":{"min":900,"raw":3000,"max":3900},"earthDefence":{"min":9,"raw":31,"max":40},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":9,"raw":31,"max":40},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":83,"raw":83,"max":89},"baseEarthDamage":{"min":84,"raw":84,"max":90},"baseFireDamage":{"min":84,"raw":84,"max":90}},"rarity":"rare"},"Cryoseism":{"internalName":"Cryoseism","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":645,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"shaman","intelligence":70},"powderSlots":3,"lore":"One of the first dwarven theories of the increasing quakes in east Gavel was that the freezing of a Dogun town in the Heights also froze a massive underground spring, disrupting the earth and chain-reacting across the province.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawIntelligence":15,"mainAttackDamage":{"min":-45,"raw":-35,"max":-24},"manaRegen":{"min":4,"raw":12,"max":16},"raw1stSpellCost":{"min":7,"raw":5,"max":4},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"raw4thSpellCost":{"min":7,"raw":5,"max":4},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":8,"raw":25,"max":33}},"base":{"baseWaterDamage":{"min":241,"raw":241,"max":275}},"rarity":"legendary"},"Blank Stare":{"internalName":"Blank Stare","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"strength":45,"dexterity":40,"defence":45},"identifications":{"rawStrength":6,"rawDexterity":5,"rawHealth":{"min":450,"raw":1500,"max":1950},"reflection":{"min":-32,"raw":-25,"max":-17},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":7,"raw":24,"max":31},"thunderDamage":{"min":7,"raw":24,"max":31},"fireDamage":{"min":7,"raw":24,"max":31}},"base":{"baseHealth":3750,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":-120,"baseFireDefence":100,"baseAirDefence":-120},"rarity":"legendary"},"Air In A Can":{"internalName":"Air In A Can","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":688,"dropRestriction":"never","requirements":{"level":97,"classRequirement":"archer","agility":75},"majorIds":{"Freerunner":"+Freerunner: When your sprint bar is under 30% full, increase your sprint speed by +150%."},"powderSlots":3,"lore":"Contents under pressure.","dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"1stSpellCost":{"min":-6,"raw":-19,"max":-25},"2ndSpellCost":{"min":-15,"raw":-50,"max":-65},"stealing":{"min":2,"raw":5,"max":7},"sprint":{"min":18,"raw":60,"max":78},"jumpHeight":{"min":1,"raw":4,"max":5}},"base":{"baseAirDamage":{"min":100,"raw":100,"max":220}},"rarity":"fabled"},"Ionosphere":{"internalName":"Ionosphere","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":55},"powderSlots":3,"identifications":{"rawDexterity":7,"healthRegen":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":57,"raw":190,"max":247},"manaSteal":{"min":1,"raw":4,"max":5},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":6,"raw":21,"max":27},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2850,"baseThunderDefence":90,"baseFireDefence":70,"baseAirDefence":-110},"rarity":"unique"},"Impeccable Jungle Spear":{"internalName":"Impeccable Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":287,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":163,"raw":163,"max":220}},"rarity":"common"},"Resistance":{"internalName":"Resistance","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":60},"powderSlots":3,"identifications":{"manaSteal":{"min":4,"raw":12,"max":16},"thorns":{"min":4,"raw":13,"max":17},"reflection":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3200,"baseEarthDefence":175,"baseThunderDefence":100},"rarity":"unique"},"Ahms' Remains":{"internalName":"Ahms' Remains","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":97,"strength":65},"powderSlots":4,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"identifications":{"rawStrength":8,"mainAttackDamage":12,"spellDamage":15,"rawSpellDamage":205,"manaSteal":8,"earthDamage":10,"airDefence":-15},"base":{"baseHealth":2550,"baseEarthDefence":90,"baseAirDefence":-120},"rarity":"unique"},"Dying Lobelia":{"internalName":"Dying Lobelia","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":97,"strength":65},"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"mainAttackDamage":13,"healthRegen":-20,"poison":2560,"waterDamage":-25},"base":{"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Highrise":{"internalName":"Highrise","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":563,"dropRestriction":"never","identified":true,"requirements":{"level":97,"classRequirement":"shaman","agility":50},"powderSlots":2,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawHealth":-1200,"manaSteal":4,"jumpHeight":2,"airDamage":20,"fireDefence":-20},"base":{"baseAirDamage":{"min":120,"raw":120,"max":142}},"rarity":"unique"},"The Specialist":{"internalName":"The Specialist","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawStrength":15,"rawDexterity":15,"rawIntelligence":15,"rawDefence":15,"rawAgility":15,"xpBonus":{"min":6,"raw":20,"max":26},"earthDamage":{"min":267,"raw":889,"max":1156},"thunderDamage":{"min":227,"raw":756,"max":983},"waterDamage":{"min":353,"raw":1176,"max":1529},"fireDamage":{"min":300,"raw":1000,"max":1300},"airDamage":{"min":300,"raw":1000,"max":1300}},"rarity":"rare"},"Yverlian Blade":{"internalName":"Yverlian Blade","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":481,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"healthRegenRaw":{"min":45,"raw":150,"max":195},"reflection":{"min":8,"raw":25,"max":33},"elementalDefence":{"min":5,"raw":16,"max":21}},"base":{"baseEarthDamage":{"min":36,"raw":36,"max":41},"baseThunderDamage":{"min":10,"raw":10,"max":67},"baseWaterDamage":{"min":29,"raw":29,"max":48},"baseFireDamage":{"min":23,"raw":23,"max":54},"baseAirDamage":{"min":18,"raw":18,"max":59}},"rarity":"unique"},"Soarfae":{"internalName":"Soarfae","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"agility":65},"powderSlots":3,"identifications":{"rawAgility":20,"reflection":{"min":5,"raw":17,"max":22},"rawAttackSpeed":1,"walkSpeed":{"min":9,"raw":30,"max":39},"airDamage":{"min":9,"raw":30,"max":39},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2650,"baseFireDefence":-125,"baseAirDefence":150},"rarity":"rare"},"Spectrum":{"internalName":"Spectrum","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":2,"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"elementalDamage":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":3300,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"rare"},"The Rainmaker":{"internalName":"The Rainmaker","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":654,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"archer","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawMainAttackDamage":{"min":29,"raw":95,"max":124},"rawSpellDamage":{"min":47,"raw":155,"max":202},"lifeSteal":{"min":-474,"raw":-365,"max":-255},"manaSteal":{"min":-10,"raw":-8,"max":-6},"rawAttackSpeed":1,"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":152},"baseWaterDamage":{"min":0,"raw":0,"max":152}},"rarity":"rare"},"Divzer":{"internalName":"Divzer","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":1163,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"archer","dexterity":115},"powderSlots":3,"lore":"Unruly magics of void and darkness are tamed within this bow's string. While those energies are never to be released, arrows fired from it fire at such blinding speeds so as to phase out of existence when they hit their target.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":37,"rawDefence":-73,"rawAgility":-550,"rawMainAttackDamage":{"min":161,"raw":536,"max":697},"rawSpellDamage":{"min":76,"raw":253,"max":329},"lifeSteal":{"min":274,"raw":912,"max":1186},"manaSteal":{"min":9,"raw":30,"max":39},"rawAttackSpeed":1,"waterDamage":{"min":-715,"raw":-550,"max":-385},"fireDamage":{"min":-715,"raw":-550,"max":-385}},"base":{"baseDamage":{"min":35,"raw":35,"max":36},"baseThunderDamage":{"min":235,"raw":235,"max":235}},"rarity":"mythic"},"Impeccable Jungle Relik":{"internalName":"Impeccable Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":433,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":204,"raw":204,"max":216}},"rarity":"common"},"Praesidium":{"internalName":"Praesidium","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":340,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"warrior","defence":80},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawDefence":50,"spellDamage":{"min":-520,"raw":-400,"max":-280},"rawHealth":{"min":1200,"raw":4000,"max":5200},"manaSteal":{"min":-21,"raw":-16,"max":-11},"thorns":{"min":15,"raw":50,"max":65},"reflection":{"min":15,"raw":50,"max":65},"elementalDefence":{"min":23,"raw":77,"max":100}},"base":{"baseDamage":{"min":320,"raw":320,"max":500}},"rarity":"rare"},"Brilliant Diamond Helmet":{"internalName":"Brilliant Diamond Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97},"powderSlots":3,"base":{"baseHealth":2400},"rarity":"common"},"Fate's Shear":{"internalName":"Fate's Shear","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":570,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin","strength":45,"intelligence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"rawSpellDamage":{"min":54,"raw":180,"max":234},"healthRegenRaw":{"min":-390,"raw":-300,"max":-210},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseEarthDamage":{"min":65,"raw":65,"max":105},"baseWaterDamage":{"min":45,"raw":45,"max":50}},"rarity":"rare"},"Leviathan":{"internalName":"Leviathan","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"strength":45,"intelligence":45},"powderSlots":2,"identifications":{"rawStrength":12,"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"rawAttackSpeed":1,"stealing":{"min":2,"raw":7,"max":9},"earthDamage":{"min":6,"raw":19,"max":25},"waterDamage":{"min":6,"raw":19,"max":25},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2850,"baseEarthDefence":100,"baseThunderDefence":-100,"baseWaterDefence":90,"baseAirDefence":-90},"rarity":"rare"},"Mantlewalkers":{"internalName":"Mantlewalkers","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":97,"strength":25,"defence":50},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":7,"rawDefence":7,"thorns":25,"exploding":50,"earthDamage":40,"waterDamage":-20,"fireDamage":40},"base":{"baseHealth":4000,"baseEarthDefence":150,"baseFireDefence":125},"rarity":"rare"},"Nirvana":{"internalName":"Nirvana","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":685,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin","intelligence":110},"majorIds":{"Transcendence":"+Transcendence: 30% chance for spells to cost no mana when casted."},"powderSlots":3,"lore":"Spiritual enlightenment is a goal that many monks hope to one day grasp the barest glimpse of, often thought to be a goal that must be worked towards over a lifetime. Holding this polished, translucent blade will instantly induce that lofty state until it is let go.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawIntelligence":40,"mainAttackDamage":{"min":-104,"raw":-80,"max":-56},"spellDamage":{"min":8,"raw":25,"max":33},"rawHealth":{"min":-2600,"raw":-2000,"max":-1400},"manaRegen":{"min":3,"raw":10,"max":13},"manaSteal":{"min":-26,"raw":-20,"max":-14},"reflection":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":300,"raw":300,"max":365}},"rarity":"mythic"},"The Golem":{"internalName":"The Golem","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"defence":100},"powderSlots":2,"identifications":{"rawDefence":15,"rawAgility":10,"healthRegenRaw":{"min":60,"raw":200,"max":260},"lifeSteal":{"min":90,"raw":300,"max":390},"thorns":{"min":15,"raw":50,"max":65},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":-32,"raw":-25,"max":-17},"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":4300,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":-150,"baseFireDefence":200,"baseAirDefence":150},"rarity":"rare"},"Inferno":{"internalName":"Inferno","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":739,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin","defence":105},"powderSlots":3,"lore":"The Dogun God Garaheth was actually an immense fire demon occupying the bowels of Molten Heights. Although unwise, the Dwarves forged a demonic dagger using his tooth in celebration of his slaughter.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":15,"mainAttackDamage":{"min":8,"raw":25,"max":33},"rawMainAttackDamage":{"min":168,"raw":560,"max":728},"healthRegen":{"min":-58,"raw":-45,"max":-31},"rawHealth":{"min":450,"raw":1500,"max":1950},"manaRegen":{"min":-8,"raw":-6,"max":-4},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":8,"raw":25,"max":33},"fireDamage":{"min":11,"raw":35,"max":46},"waterDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseFireDamage":{"min":795,"raw":795,"max":985}},"rarity":"mythic"},"Clockwork":{"internalName":"Clockwork","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":97,"defence":60},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"healthRegen":20,"thorns":20,"reflection":20},"base":{"baseHealth":1500,"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":60,"baseAirDefence":30},"rarity":"rare"},"Founder":{"internalName":"Founder","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":97,"strength":25,"defence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":5,"rawDefence":4,"healthRegen":{"min":4,"raw":12,"max":16},"rawHealth":{"min":81,"raw":270,"max":351},"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":500,"baseEarthDefence":50,"baseAirDefence":-50},"rarity":"unique"},"Albacore":{"internalName":"Albacore","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"intelligence":45,"defence":35},"powderSlots":3,"identifications":{"rawIntelligence":5,"rawDefence":5,"rawSpellDamage":{"min":46,"raw":154,"max":200},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":8,"max":10},"waterDamage":{"min":4,"raw":13,"max":17},"fireDamage":{"min":4,"raw":13,"max":17},"earthDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":3000,"baseWaterDefence":80,"baseFireDefence":80},"rarity":"unique"},"Tesla":{"internalName":"Tesla","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":80},"powderSlots":3,"identifications":{"rawDexterity":13,"rawSpellDamage":{"min":56,"raw":185,"max":241},"lifeSteal":{"min":84,"raw":280,"max":364},"manaSteal":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-39,"raw":-30,"max":-21},"thunderDamage":{"min":12,"raw":40,"max":52},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":-1100,"baseThunderDefence":120,"baseWaterDefence":180},"rarity":"rare"},"Harwrol":{"internalName":"Harwrol","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"warrior","strength":55,"agility":55},"powderSlots":3,"lore":"The runes carved onto the spear shift appearance so quickly as to be illegible, but those who wield it supposedly will learn their meaning.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":13,"rawAgility":13,"mainAttackDamage":{"min":6,"raw":19,"max":25},"rawHealth":{"min":750,"raw":2500,"max":3250},"walkSpeed":{"min":7,"raw":23,"max":30},"thunderDamage":{"min":-32,"raw":-25,"max":-17},"waterDamage":{"min":-32,"raw":-25,"max":-17},"thunderDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":20,"raw":20,"max":50},"baseEarthDamage":{"min":60,"raw":60,"max":85},"baseAirDamage":{"min":60,"raw":60,"max":85}},"rarity":"legendary"},"Impeccable Jungle Wand":{"internalName":"Impeccable Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":120}},"rarity":"common"},"Darksteel Centrifuge":{"internalName":"Darksteel Centrifuge","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"dexterity":50,"defence":55},"powderSlots":2,"identifications":{"rawDexterity":5,"rawIntelligence":-35,"rawDefence":5,"lifeSteal":{"min":81,"raw":269,"max":350},"rawThunderMainAttackDamage":{"min":375,"raw":1250,"max":1625},"elementalMainAttackDamage":{"min":12,"raw":40,"max":52},"rawAttackSpeed":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"knockback":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":4325,"baseThunderDefence":200,"baseWaterDefence":-175,"baseFireDefence":200},"rarity":"legendary"},"Stardew":{"internalName":"Stardew","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":97,"dexterity":65,"intelligence":75},"powderSlots":2,"lore":"Wybels have a strange attraction to cosmic magic, and many an owner will find them staring through the window at night. One, however, claims to have seen her Wybel making something out of white stardust. The abode was robbed shortly after, and the supposed item gone missing without confirmation of its existence.","identifications":{"rawSpellDamage":{"min":94,"raw":313,"max":407},"manaRegen":{"min":-12,"raw":-9,"max":-6},"manaSteal":{"min":5,"raw":15,"max":20},"reflection":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":11,"raw":35,"max":46},"waterDamage":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":4075,"baseEarthDefence":-100,"baseThunderDefence":150,"baseWaterDefence":150,"baseFireDefence":-100,"baseAirDefence":-100},"rarity":"mythic"},"Impeccable Jungle Dagger":{"internalName":"Impeccable Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":356,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":130,"raw":130,"max":155}},"rarity":"common"},"Agave":{"internalName":"Agave","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":97,"strength":35,"dexterity":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"rawSpellDamage":{"min":18,"raw":59,"max":77},"thorns":{"min":3,"raw":10,"max":13},"rawAttackSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":-275,"baseEarthDefence":30,"baseThunderDefence":30},"rarity":"rare"},"Repurposed Vessels":{"internalName":"Repurposed Vessels","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":97,"dexterity":45,"defence":45},"majorIds":{"Dead Weight":"+Dead Weight: Totem's horizontal velocity is greatly increased at the cost of vertical movement."},"powderSlots":2,"identifications":{"rawStrength":30,"rawDexterity":-3,"rawIntelligence":-3,"rawDefence":-3,"rawAgility":-3,"healthRegen":{"min":-19,"raw":-15,"max":-10},"sprintRegen":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":4650,"baseEarthDefence":180,"baseThunderDefence":-60,"baseWaterDefence":-60,"baseFireDefence":-60,"baseAirDefence":-60},"rarity":"fabled"},"Snail Mail":{"internalName":"Snail Mail","type":"armour","armourType":"chestplate","armourColor":"rgb(0,51,51)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":97,"strength":65,"defence":90},"powderSlots":3,"identifications":{"rawAgility":-10,"healthRegen":{"min":6,"raw":20,"max":26},"thorns":{"min":5,"raw":15,"max":20},"earthDefence":{"min":3,"raw":9,"max":12},"fireDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":3950,"baseEarthDefence":75,"baseFireDefence":100},"rarity":"set"},"Demon's Will":{"internalName":"Demon's Will","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":581,"dropRestriction":"normal","requirements":{"level":97,"classRequirement":"archer","dexterity":35,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"lifeSteal":{"min":132,"raw":440,"max":572},"manaSteal":{"min":2,"raw":8,"max":10},"weakenEnemy":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":8,"raw":27,"max":35},"fireDamage":{"min":8,"raw":27,"max":35},"waterDefence":{"min":-22,"raw":-17,"max":-12},"airDefence":{"min":-22,"raw":-17,"max":-12}},"base":{"baseDamage":{"min":110,"raw":110,"max":145},"baseThunderDamage":{"min":90,"raw":90,"max":170},"baseFireDamage":{"min":90,"raw":90,"max":170}},"rarity":"unique"},"Ominous Pearl":{"internalName":"Ominous Pearl","type":"ingredient","requirements":{"level":97,"skills":["alchemism"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"xpBonus":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-94,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Umbral Sentinel","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"Dernic Lurker","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"§Fool Eater","coords":null}]},"Voidglass Striders":{"internalName":"Voidglass Striders","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":96,"agility":60},"powderSlots":3,"identifications":{"healthRegenRaw":{"min":-91,"raw":-70,"max":-49},"rawAirSpellDamage":{"min":54,"raw":181,"max":235},"airMainAttackDamage":{"min":7,"raw":23,"max":30},"sprint":{"min":8,"raw":25,"max":33},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2800,"baseFireDefence":-50,"baseAirDefence":250},"rarity":"set"},"Voidwarped Wrappings":{"internalName":"Voidwarped Wrappings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":96,"strength":40,"agility":50},"powderSlots":2,"identifications":{"rawStrength":8,"lifeSteal":{"min":74,"raw":246,"max":320},"rawAirMainAttackDamage":{"min":69,"raw":231,"max":300},"2ndSpellCost":{"min":-10,"raw":-35,"max":-45},"sprintRegen":{"min":6,"raw":20,"max":26},"mainAttackRange":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":3375,"baseEarthDefence":85,"baseFireDefence":-120,"baseAirDefence":85},"rarity":"rare"},"Ephemeris":{"internalName":"Ephemeris","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":96,"dexterity":60,"intelligence":50,"agility":60},"powderSlots":3,"lore":"A pair of glowing sabatons crafted from time-lost relics. Somehow, despite just creating them, you get the feeling that you've worn these before...","identifications":{"rawStrength":-40,"elementalSpellDamage":{"min":9,"raw":31,"max":40},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"1stSpellCost":{"min":-7,"raw":-23,"max":-30},"walkSpeed":{"min":7,"raw":23,"max":30},"earthDefence":{"min":-38,"raw":-29,"max":-20}},"base":{"baseHealth":3500,"baseThunderDefence":80,"baseWaterDefence":80,"baseAirDefence":80},"rarity":"legendary"},"Song of Solitude":{"internalName":"Song of Solitude","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":701,"dropRestriction":"never","requirements":{"level":96,"classRequirement":"archer","intelligence":95},"majorIds":{"Pioneer's Echo":"+Pioneer's Echo: Phantom Ray deals two bursts of 150%, 60% over 1.1 seconds. Decimator's increase and cap are raised to 100%."},"powderSlots":2,"lore":"It is an apathy born from lonely desperation with which one sends a blinding ray as their signal flare, uncaring if it hails friend or foe.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":30,"healthRegenRaw":{"min":52,"raw":173,"max":225},"manaRegen":{"min":5,"raw":15,"max":20},"sprintRegen":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":7,"raw":23,"max":30},"elementalDefence":{"min":-30,"raw":-23,"max":-16}},"base":{"baseWaterDamage":{"min":1250,"raw":1250,"max":1500}},"rarity":"fabled"},"Gearbox Stave":{"internalName":"Gearbox Stave","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":244,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage"},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"347","name":"wand.multi3"}},"identifications":{"manaRegen":{"min":6,"raw":20,"max":26},"rawMaxMana":{"min":9,"raw":31,"max":40},"xpBonus":{"min":8,"raw":25,"max":33},"lootBonus":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":80,"raw":80,"max":115}},"rarity":"unique"},"Thunderbird":{"internalName":"Thunderbird","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":706,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"archer","dexterity":40,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":10,"rawAgility":10,"spellDamage":{"min":4,"raw":14,"max":18},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":1,"walkSpeed":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDamage":{"min":115,"raw":115,"max":195},"baseAirDamage":{"min":105,"raw":105,"max":150}},"rarity":"unique"},"Voltage":{"internalName":"Voltage","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":96,"dexterity":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"lifeSteal":{"min":-175,"raw":-135,"max":-94},"manaSteal":{"min":1,"raw":4,"max":5},"rawThunderMainAttackDamage":{"min":72,"raw":240,"max":312},"rawAttackSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseThunderDefence":40,"baseWaterDefence":-60},"rarity":"rare"},"Ensa's Resolve":{"internalName":"Ensa's Resolve","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":587,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"archer","intelligence":40,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawAgility":10,"rawMainAttackDamage":{"min":-123,"raw":-95,"max":-66},"healthRegenRaw":{"min":54,"raw":180,"max":234},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":5,"raw":15,"max":20},"xpBonus":{"min":6,"raw":19,"max":25},"waterDefence":{"min":7,"raw":23,"max":30},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":10,"raw":10,"max":10},"baseWaterDamage":{"min":120,"raw":120,"max":155},"baseAirDamage":{"min":100,"raw":100,"max":175}},"rarity":"rare"},"Broken Pick":{"internalName":"Broken Pick","type":"ingredient","requirements":{"level":96,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"69:0"},"identifications":{"rawMainAttackDamage":{"min":22,"raw":22,"max":30},"earthDamage":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-61000,"strengthRequirement":15,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Stormscarred Miner","coords":[[1237,80,-4760,15],[1255,51,-4874,36],[1371,52,-4876,13],[1381,58,-4810,13],[1305,137,-4474,13],[1202,52,-4713,33],[1172,53,-4709,15],[1192,52,-4700,25],[1151,53,-4647,10],[1249,65,-4823,43],[1223,113,-4725,23],[1271,123,-4912,23],[1318,103,-4886,33],[1145,105,-4798,23],[1214,57,-4905,10],[972,67,-4780,20]]},{"name":"Stormscarred Miner","coords":[[1237,80,-4760,15],[1255,51,-4874,36],[1371,52,-4876,13],[1381,58,-4810,13],[1305,137,-4474,13],[1202,52,-4713,33],[1172,53,-4709,15],[1192,52,-4700,25],[1151,53,-4647,10],[1249,65,-4823,43],[1223,113,-4725,23],[1271,123,-4912,23],[1318,103,-4886,33],[1145,105,-4798,23],[1214,57,-4905,10],[972,67,-4780,20]]}]},"Blighted Skull":{"internalName":"Blighted Skull","type":"ingredient","requirements":{"level":96,"skills":["armouring"]},"icon":{"format":"skin","value":"7953b6c68448e7e6b6bf8fb273d7203acd8e1be19e81481ead51f45de59a8"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":22000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wildered Miner","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"§Fool Eater","coords":null}]},"Grey Cloud":{"internalName":"Grey Cloud","type":"ingredient","requirements":{"level":96,"skills":["alchemism"]},"icon":{"format":"legacy","value":"30:0"},"identifications":{"waterDefence":{"min":4,"raw":4,"max":8},"airDefence":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cirrus Cloud","coords":[[1021,146,-4933,20],[940,177,-4749,20],[927,120,-4797,20],[1378,169,-4538,20],[962,157,-4780,20]]}]},"Storm Horn":{"internalName":"Storm Horn","type":"ingredient","requirements":{"level":96,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"198:0"},"identifications":{"thunderDamage":{"min":2,"raw":2,"max":6},"airDamage":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Thunder-Charged Goat","coords":[[779,84,-4736,10],[763,89,-4730,7],[760,125,-4760,4]]},{"name":"Rain Cloud Ram","coords":[[779,84,-4736,10],[763,89,-4730,7],[760,125,-4760,4]]}]},"Voidstone Sample":{"internalName":"Voidstone Sample","type":"ingredient","requirements":{"level":96,"skills":["alchemism","jeweling"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"lifeSteal":{"min":30,"raw":30,"max":35},"walkSpeed":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-72000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Stormscarred Miner","coords":[[1237,80,-4760,15],[1255,51,-4874,36],[1371,52,-4876,13],[1381,58,-4810,13],[1305,137,-4474,13],[1202,52,-4713,33],[1172,53,-4709,15],[1192,52,-4700,25],[1151,53,-4647,10],[1249,65,-4823,43],[1223,113,-4725,23],[1271,123,-4912,23],[1318,103,-4886,33],[1145,105,-4798,23],[1214,57,-4905,10],[972,67,-4780,20]]},{"name":"Stormscarred Miner","coords":[[1237,80,-4760,15],[1255,51,-4874,36],[1371,52,-4876,13],[1381,58,-4810,13],[1305,137,-4474,13],[1202,52,-4713,33],[1172,53,-4709,15],[1192,52,-4700,25],[1151,53,-4647,10],[1249,65,-4823,43],[1223,113,-4725,23],[1271,123,-4912,23],[1318,103,-4886,33],[1145,105,-4798,23],[1214,57,-4905,10],[972,67,-4780,20]]}]},"Forgotten Pickaxe":{"internalName":"Forgotten Pickaxe","type":"ingredient","requirements":{"level":96,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"257:0"},"identifications":{"earthDamage":{"min":6,"raw":6,"max":7},"rawMainAttackDamage":{"min":40,"raw":40,"max":50}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-71000,"strengthRequirement":14,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wildered Miner","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"Emerald-Enthralled","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"Fermented Captive","coords":null}]},"Stolen Burnmilk":{"internalName":"Stolen Burnmilk","type":"ingredient","requirements":{"level":96,"skills":["cooking"]},"icon":{"format":"legacy","value":"282:0"},"identifications":{"healingEfficiency":{"min":-10,"raw":-10,"max":-8},"healthRegenRaw":{"min":-70,"raw":-70,"max":-60},"walkSpeed":{"min":12,"raw":12,"max":13}},"tier":3,"consumableOnlyIDs":{"duration":-900,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Humyn Worker","coords":false},{"name":"Humyn Bystander","coords":false}]},"Sought-After Ore":{"internalName":"Sought-After Ore","type":"ingredient","requirements":{"level":96,"skills":["jeweling"]},"icon":{"format":"legacy","value":"129:0"},"identifications":{"lootQuality":{"min":1,"raw":1,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wildered Miner","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]},{"name":"Emerald-Enthralled","coords":[[665,84,-1056,28],[660,81,-993,28],[649,79,-1012,28],[515,91,-825,38],[677,82,-809,38],[772,82,-820,80],[742,105,-698,80],[702,123,-872,40]]}]},"Silver Feather":{"internalName":"Silver Feather","type":"ingredient","requirements":{"level":96,"skills":["scribing"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawAgility":{"min":1,"raw":1,"max":4},"lootBonus":{"min":0,"raw":0,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":-93,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sky Conure","coords":[[1195,137,-4526,20],[1204,141,-4600,20],[1203,131,-4684,20],[1331,153,-4576,20],[1390,157,-4528,30],[1270,122,-4798,30],[1206,152,-4857,30],[1206,152,-4857,40],[1398,114,-4616,20],[1250,152,-4576,20]]},{"name":"Sky Conure","coords":[[1195,137,-4526,20],[1204,141,-4600,20],[1203,131,-4684,20],[1331,153,-4576,20],[1390,157,-4528,30],[1270,122,-4798,30],[1206,152,-4857,30],[1206,152,-4857,40],[1398,114,-4616,20],[1250,152,-4576,20]]}]},"Kindled Orchid":{"internalName":"Kindled Orchid","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":96,"dexterity":50,"defence":45},"powderSlots":3,"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeon","coordinates":[-861,123,-4896]},"identifications":{"rawDefence":10,"mainAttackDamage":10,"rawSpellDamage":-75,"healthRegen":-30,"lifeSteal":265,"manaRegen":-6,"rawAttackSpeed":1},"base":{"baseHealth":2725,"baseEarthDefence":-80,"baseWaterDefence":-80},"rarity":"rare"},"Chef Hamsey's Apron":{"internalName":"Chef Hamsey's Apron","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":96,"quest":"Recipe For Disaster"},"powderSlots":3,"identifications":{"rawIntelligence":7,"rawDefence":7,"healthRegen":{"min":8,"raw":25,"max":33},"manaRegen":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2900,"baseThunderDefence":150,"baseWaterDefence":-150,"baseFireDefence":-150},"rarity":"rare"},"Misfit":{"internalName":"Misfit","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":705,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"shaman","strength":60,"dexterity":60},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"mainAttackDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":-16,"raw":-12,"max":-8},"raw4thSpellCost":{"min":-3,"raw":-10,"max":-13},"exploding":{"min":8,"raw":25,"max":33},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":81,"raw":81,"max":83},"baseThunderDamage":{"min":81,"raw":81,"max":83}},"rarity":"rare"},"Poison Ivy":{"internalName":"Poison Ivy","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":419,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"warrior","strength":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":15,"mainAttackDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":2265,"raw":7550,"max":9815},"thorns":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":200,"raw":200,"max":300},"baseEarthDamage":{"min":235,"raw":235,"max":275}},"rarity":"rare"},"Heura":{"internalName":"Heura","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":50},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"thorns":{"min":10,"raw":34,"max":44},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3025,"baseEarthDefence":110,"baseWaterDefence":80,"baseFireDefence":-110},"rarity":"unique"},"Weathered":{"internalName":"Weathered","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":713,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","agility":110},"majorIds":{"Roving Assassin":"+Roving Assassin: Vanish will no longer block mana and health regeneration."},"powderSlots":3,"lore":"A relic of the past in Time Valley was weathered down to a dagger by the sheer power of the wind. When used in battle, mysterious intertwined wind and time magic give it no physical presence.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":20,"manaSteal":{"min":5,"raw":16,"max":21},"reflection":{"min":8,"raw":25,"max":33},"rawAttackSpeed":1,"walkSpeed":{"min":8,"raw":25,"max":33},"exploding":{"min":-65,"raw":-50,"max":-35},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":30,"raw":30,"max":80},"baseAirDamage":{"min":130,"raw":130,"max":220}},"rarity":"mythic"},"A16-L31 Handheld Mortar":{"internalName":"A16-L31 Handheld Mortar","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":820,"dropRestriction":"never","requirements":{"level":96,"classRequirement":"shaman","strength":45,"dexterity":45,"defence":45},"majorIds":{"Totemic Fuse":"+Totemic Fuse: Totemic Smash deals far greater damage but Totem lasts half as long."},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawIntelligence":-30,"mainAttackDamage":{"min":9,"raw":30,"max":39},"raw1stSpellCost":{"min":-5,"raw":-17,"max":-22},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":18,"raw":60,"max":78}},"base":{"baseEarthDamage":{"min":525,"raw":525,"max":575},"baseThunderDamage":{"min":495,"raw":495,"max":610},"baseFireDamage":{"min":480,"raw":480,"max":530}},"rarity":"fabled"},"Mycelium Plating":{"internalName":"Mycelium Plating","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":50},"powderSlots":2,"identifications":{"rawStrength":7,"healthRegenRaw":{"min":45,"raw":150,"max":195},"poison":{"min":1200,"raw":4000,"max":5200},"lifeSteal":{"min":-130,"raw":-100,"max":-70},"manaSteal":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":3025,"baseEarthDefence":130,"baseWaterDefence":-60,"baseAirDefence":-80},"rarity":"unique"},"Overgrown":{"internalName":"Overgrown","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":324,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage","strength":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":10,"poison":{"min":1950,"raw":6500,"max":8450},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-32,"raw":-25,"max":-17},"earthDamage":{"min":6,"raw":19,"max":25},"fireDamage":{"min":-52,"raw":-40,"max":-28},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":150,"raw":150,"max":165}},"rarity":"rare"},"Tropics":{"internalName":"Tropics","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":596,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"archer","strength":35,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawStrength":7,"rawIntelligence":7,"damage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-1950,"raw":-1500,"max":-1050},"manaSteal":{"min":2,"raw":8,"max":10},"slowEnemy":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseEarthDamage":{"min":323,"raw":323,"max":395},"baseWaterDamage":{"min":323,"raw":323,"max":395}},"rarity":"unique"},"Dawnbreak":{"internalName":"Dawnbreak","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"dexterity":65,"defence":65},"powderSlots":2,"lore":"Many prophecies foretell of new eras. Most are fabricated or proven false in time. One passed through the Dogun caverns, however, tells of a dawn soon to break, in which the earth shall run red and return to flame. Fanatical sects whisper the coming of a new demonic god.","identifications":{"rawMainAttackDamage":{"min":810,"raw":2700,"max":3510},"lifeSteal":{"min":105,"raw":350,"max":455},"manaSteal":{"min":4,"raw":12,"max":16},"rawAttackSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":7,"raw":23,"max":30},"thunderDamage":{"min":8,"raw":27,"max":35},"fireDamage":{"min":8,"raw":27,"max":35}},"base":{"baseHealth":4225,"baseThunderDefence":200,"baseWaterDefence":-125,"baseFireDefence":200,"baseAirDefence":-125},"rarity":"mythic"},"Brainwash":{"internalName":"Brainwash","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":40,"dexterity":70},"identifications":{"rawStrength":13,"rawIntelligence":-50,"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":57,"raw":190,"max":247},"healthRegen":{"min":-52,"raw":-40,"max":-28},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":2800,"baseEarthDefence":70,"baseThunderDefence":100,"baseWaterDefence":-220},"rarity":"rare"},"Ivory":{"internalName":"Ivory","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":550,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","agility":35},"powderSlots":3,"lore":"The holy blade of the House of Talor was crafted of pure unicorn horns, and consecrated by a hundred priests. Evil spirits are driven away by its mere presence.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":13,"healthRegenRaw":{"min":68,"raw":225,"max":293},"poison":{"min":-5200,"raw":-4000,"max":-2800},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":-52,"raw":-40,"max":-28},"thunderDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":95,"raw":95,"max":130},"baseAirDamage":{"min":55,"raw":55,"max":75}},"rarity":"legendary"},"Justice":{"internalName":"Justice","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":96,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":5,"healthRegen":{"min":4,"raw":12,"max":16},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":600,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":50},"rarity":"unique"},"Cypress Amber":{"internalName":"Cypress Amber","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":96,"dexterity":80},"majorIds":{"Perilous Flare":"+Perilous Flare: Pyrokinesis moves much slower, but has an increased Area of Effect and +50%."},"powderSlots":2,"identifications":{"rawDexterity":5,"lifeSteal":{"min":58,"raw":192,"max":250},"rawThunderMainAttackDamage":{"min":75,"raw":250,"max":325},"walkSpeed":{"min":5,"raw":15,"max":20},"exploding":{"min":12,"raw":40,"max":52},"knockback":{"min":-96,"raw":-74,"max":-52},"fireDefence":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":3075,"baseEarthDefence":-150,"baseThunderDefence":100},"rarity":"fabled"},"Orange Lily":{"internalName":"Orange Lily","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":709,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":96,"classRequirement":"archer","strength":50,"intelligence":60},"powderSlots":3,"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"manaRegen":12,"raw3rdSpellCost":-10,"raw4thSpellCost":50,"earthDamage":20,"waterDamage":20,"airDamage":-150,"airDefence":-100},"base":{"baseDamage":{"min":65,"raw":65,"max":120},"baseEarthDamage":{"min":160,"raw":160,"max":220},"baseWaterDamage":{"min":160,"raw":160,"max":220}},"rarity":"legendary"},"Perch of the Shrouded Sun":{"internalName":"Perch of the Shrouded Sun","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":96,"dexterity":40,"intelligence":40,"agility":60},"powderSlots":2,"lore":"Able to withstand the grasp of claws of pure steel, the perch of the Minokawa thrums with the might of a beast that can devour the sun. Given free reign of the skies, even the brightest of stars are no match.","identifications":{"rawStrength":-35,"rawDexterity":7,"rawAgility":7,"rawSpellDamage":{"min":50,"raw":165,"max":215},"manaSteal":{"min":2,"raw":8,"max":10},"waterSpellDamage":{"min":7,"raw":23,"max":30},"airDefence":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":3000,"baseEarthDefence":-85,"baseThunderDefence":85,"baseWaterDefence":85,"baseAirDefence":145},"rarity":"legendary"},"Frenzy":{"internalName":"Frenzy","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":381,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"warrior","agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawMainAttackDamage":{"min":15,"raw":50,"max":65},"rawAttackSpeed":1,"walkSpeed":{"min":7,"raw":23,"max":30},"airDefence":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":39,"raw":39,"max":109},"baseAirDamage":{"min":29,"raw":29,"max":69}},"rarity":"unique"},"Burnout":{"internalName":"Burnout","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"defence":60,"agility":40},"identifications":{"rawDefence":10,"spellDamage":{"min":-18,"raw":-14,"max":-10},"healthRegenRaw":{"min":53,"raw":175,"max":228},"manaRegen":{"min":-8,"raw":-6,"max":-4},"rawAttackSpeed":1,"walkSpeed":{"min":4,"raw":12,"max":16},"sprint":{"min":5,"raw":16,"max":21},"sprintRegen":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3200,"baseFireDefence":-80,"baseAirDefence":-80},"rarity":"rare"},"Salvation":{"internalName":"Salvation","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":242,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage","intelligence":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawDefence":5,"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":375,"raw":1250,"max":1625},"reflection":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-65,"raw":-50,"max":-35},"waterDefence":{"min":4,"raw":12,"max":16},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":24,"raw":24,"max":24},"baseWaterDamage":{"min":27,"raw":27,"max":27},"baseFireDamage":{"min":27,"raw":27,"max":27}},"rarity":"unique"},"Grimtrap":{"internalName":"Grimtrap","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":802,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","strength":100},"powderSlots":3,"lore":"Found at the site of the Caritat Mansion, this simple-looking glove is bathed in dark presence. It wracks those who wear it with pain, and instills the belief that the only way to end the pain is not to remove the item, but to inflict that same torment upon all others.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":15,"poison":{"min":3000,"raw":10000,"max":13000},"lifeSteal":{"min":183,"raw":610,"max":793},"manaSteal":{"min":-13,"raw":-10,"max":-7},"raw2ndSpellCost":{"min":5,"raw":4,"max":3},"raw4thSpellCost":{"min":-3,"raw":-10,"max":-13},"thorns":{"min":21,"raw":70,"max":91}},"base":{"baseDamage":{"min":160,"raw":160,"max":220},"baseEarthDamage":{"min":285,"raw":285,"max":405}},"rarity":"mythic"},"Sky Chef's Apron":{"internalName":"Sky Chef's Apron","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":96,"quest":"Recipe For Disaster"},"powderSlots":4,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3200,"baseAirDefence":75},"rarity":"rare"},"Sparkweaver":{"internalName":"Sparkweaver","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":96,"defence":50},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":20,"rawDefence":10,"manaSteal":12,"waterDamage":-15,"thunderDefence":30,"fireDefence":20},"base":{"baseHealth":3850,"baseThunderDefence":200,"baseFireDefence":150},"rarity":"rare"},"Heroism":{"internalName":"Heroism","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"defence":60,"agility":60},"powderSlots":2,"identifications":{"rawDefence":10,"rawAgility":10,"healthRegen":{"min":-186,"raw":-143,"max":-100},"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":300,"raw":1000,"max":1300},"lifeSteal":{"min":90,"raw":300,"max":390},"thorns":{"min":9,"raw":31,"max":40},"reflection":{"min":9,"raw":31,"max":40},"walkSpeed":{"min":7,"raw":23,"max":30},"sprint":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3500,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":120,"baseAirDefence":120},"rarity":"rare"},"Staccato":{"internalName":"Staccato","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":96,"strength":45,"dexterity":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":9,"raw":29,"max":38},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseEarthDefence":20,"baseThunderDefence":40,"baseWaterDefence":-60},"rarity":"rare"},"Toxoplasmosis":{"internalName":"Toxoplasmosis","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":9,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"shaman","strength":110},"powderSlots":2,"lore":"Can you feel the burning inside? Something has made itself at home. Time to tuck away the parts of you it has no need for, to shuffle your little brain around so you may Carry. Carry and Spread. Give it a new home—melting you down is how it says thank you. Be grateful, won't you?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":40,"poison":{"min":11700,"raw":39000,"max":50700},"lifeSteal":{"min":150,"raw":500,"max":650},"manaSteal":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":3,"raw":3,"max":3}},"rarity":"mythic"},"Restorator":{"internalName":"Restorator","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":278,"dropRestriction":"never","identified":true,"requirements":{"level":96,"classRequirement":"mage","defence":55},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":7,"rawDefence":4,"healthRegen":40,"healthRegenRaw":230,"rawHealth":2500,"earthDefence":15,"waterDefence":20},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseFireDamage":{"min":80,"raw":80,"max":100}},"rarity":"rare"},"Fantasia":{"internalName":"Fantasia","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":934,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"shaman","strength":45,"dexterity":45,"intelligence":45,"defence":45,"agility":45},"powderSlots":3,"lore":"The confusion of sentience creates unknown and marvelous threads and soundscapes. Joy, grief, hate, love, shock, calm, they reflect back into the pattern and song of the universe. The glow of the Weave, and this brilliant, breathtaking, pale imitation of it, too, resounds in the chorus of existence—one extra layer.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"rawIntelligence":50,"spellDamage":{"min":9,"raw":30,"max":39},"manaRegen":{"min":-26,"raw":-20,"max":-14},"manaSteal":{"min":-26,"raw":-20,"max":-14},"1stSpellCost":{"min":-13,"raw":-42,"max":-55},"2ndSpellCost":{"min":-13,"raw":-42,"max":-55},"3rdSpellCost":{"min":-13,"raw":-42,"max":-55},"4thSpellCost":{"min":-13,"raw":-42,"max":-55}},"base":{"baseEarthDamage":{"min":155,"raw":155,"max":295},"baseThunderDamage":{"min":215,"raw":215,"max":235},"baseWaterDamage":{"min":185,"raw":185,"max":265},"baseFireDamage":{"min":170,"raw":170,"max":280},"baseAirDamage":{"min":200,"raw":200,"max":250}},"rarity":"mythic"},"Thrundacrack":{"internalName":"Thrundacrack","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":589,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"warrior","dexterity":105},"powderSlots":4,"lore":"The raw aspect of thunder, though claimed to be harnessed by a mage in a wand, has only been truly tamed by this mighty blade. Combined electric and life-draining magic intertwine and bring forth the truest, most frightening power of all Thunder.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawDexterity":35,"healthRegen":{"min":-78,"raw":-60,"max":-42},"raw3rdSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":8,"raw":25,"max":33},"waterDamage":{"min":18,"raw":60,"max":78}},"base":{"baseDamage":{"min":40,"raw":40,"max":90},"baseThunderDamage":{"min":40,"raw":40,"max":210}},"rarity":"mythic"},"Royal Hydrangea":{"internalName":"Royal Hydrangea","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":838,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":96,"classRequirement":"shaman","intelligence":65,"agility":65},"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawIntelligence":15,"rawAgility":25,"spellDamage":40,"manaRegen":12,"healingEfficiency":-13,"1stSpellCost":-150,"reflection":50},"base":{"baseDamage":{"min":8,"raw":8,"max":12},"baseWaterDamage":{"min":150,"raw":150,"max":175},"baseAirDamage":{"min":140,"raw":140,"max":185}},"rarity":"legendary"},"Cockleburr":{"internalName":"Cockleburr","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":480,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","strength":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"lifeSteal":{"min":87,"raw":290,"max":377},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":11,"raw":35,"max":46},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":7,"max":9},"fireDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":145,"raw":145,"max":235},"baseEarthDamage":{"min":105,"raw":105,"max":155}},"rarity":"unique"},"Smoldering Apron":{"internalName":"Smoldering Apron","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":96,"quest":"Recipe For Disaster"},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":9,"raw":30,"max":39},"spellDamage":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"walkSpeed":{"min":6,"raw":20,"max":26},"exploding":{"min":8,"raw":25,"max":33},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":2550,"baseWaterDefence":-180,"baseFireDefence":80},"rarity":"rare"},"Taurus":{"internalName":"Taurus","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":90},"lore":"The hide of the Touroto, an almost invincible Bull-like creature, is said to be pierced only by the horn of the Touroto itself, making it extremely valuable.","identifications":{"rawStrength":15,"mainAttackDamage":{"min":15,"raw":50,"max":65},"rawMainAttackDamage":{"min":450,"raw":1500,"max":1950},"rawAttackSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":4000,"baseEarthDefence":200,"baseFireDefence":-80},"rarity":"legendary"},"Silver":{"internalName":"Silver","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":493,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","intelligence":50,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawIntelligence":9,"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":4,"raw":14,"max":18},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":45,"raw":45,"max":80},"baseAirDamage":{"min":79,"raw":79,"max":114}},"rarity":"rare"},"Magma Chalice":{"internalName":"Magma Chalice","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":262,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage","strength":40,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"healthRegen":{"min":9,"raw":31,"max":40},"rawHealth":{"min":701,"raw":2335,"max":3036},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":50,"raw":50,"max":70},"baseFireDamage":{"min":110,"raw":110,"max":120}},"rarity":"unique"},"Morrowind":{"internalName":"Morrowind","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":338,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage","agility":45},"powderSlots":3,"lore":"One of many lost artifacts from the legendary Wind Fortress, the engraving appears to be a cryptic clue to where the Fortress fell. \"We shall be found among the dark winds of the morrow.\"","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawAgility":14,"rawSpellDamage":{"min":44,"raw":145,"max":189},"reflection":{"min":14,"raw":46,"max":60},"walkSpeed":{"min":7,"raw":23,"max":30},"earthDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":7,"raw":23,"max":30},"airDefence":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseAirDamage":{"min":45,"raw":45,"max":135}},"rarity":"legendary"},"Magnet Repulsor":{"internalName":"Magnet Repulsor","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"dexterity":55,"intelligence":60},"powderSlots":2,"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawSpellDamage":{"min":62,"raw":205,"max":267},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3225,"baseEarthDefence":-100,"baseThunderDefence":-175,"baseWaterDefence":100,"baseFireDefence":-100},"rarity":"legendary"},"Hurricane Recurve":{"internalName":"Hurricane Recurve","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":740,"dropRestriction":"never","requirements":{"level":96,"classRequirement":"archer","agility":90},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAirMainAttackDamage":{"min":330,"raw":1100,"max":1430},"rawHealth":{"min":-2145,"raw":-1650,"max":-1155},"rawAttackSpeed":{"min":-12,"raw":-9,"max":-6},"walkSpeed":{"min":6,"raw":20,"max":26},"jumpHeight":{"min":1,"raw":2,"max":3},"knockback":{"min":20,"raw":65,"max":85}},"base":{"baseDamage":{"min":195,"raw":195,"max":705},"baseAirDamage":{"min":425,"raw":425,"max":1575}},"rarity":"legendary"},"Darksteel Ring":{"internalName":"Darksteel Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":96,"dexterity":20,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDexterity":4,"rawDefence":3,"rawHealth":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":450,"baseEarthDefence":-30,"baseThunderDefence":40,"baseWaterDefence":-30,"baseFireDefence":40},"rarity":"rare"},"Dionaea":{"internalName":"Dionaea","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":40,"defence":40},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":59,"raw":195,"max":254},"spellDamage":{"min":-10,"raw":-8,"max":-6},"lifeSteal":{"min":68,"raw":225,"max":293},"thorns":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":8,"raw":25,"max":33},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3850,"baseEarthDefence":110,"baseFireDefence":80},"rarity":"rare"},"Lament":{"internalName":"Lament","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":375,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"mage","intelligence":110},"powderSlots":3,"lore":"When the lost city of Sarnfic sunk beneath the depths, nothing but the bubbles of screams and this single wand surfaced. When used, you can still hear the towns lament.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawIntelligence":20,"lifeSteal":{"min":-650,"raw":-500,"max":-350},"manaSteal":{"min":12,"raw":40,"max":52},"healingEfficiency":{"min":4,"raw":14,"max":18},"1stSpellCost":{"min":-10,"raw":-35,"max":-45},"waterDamage":{"min":24,"raw":80,"max":104}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseWaterDamage":{"min":160,"raw":160,"max":190}},"rarity":"mythic"},"Cataclysm":{"internalName":"Cataclysm","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":903,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"assassin","dexterity":120},"powderSlots":3,"lore":"Despite the existence of the Nether Portal, few believe that it is possible to open such rifts with sheer force alone. None believe that a tool with enough power to accomplish such a monumental feat could exist. And yet...","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawDexterity":20,"rawHealth":{"min":-7800,"raw":-6000,"max":-4200},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"thorns":{"min":6,"raw":21,"max":27},"stealing":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":5,"raw":17,"max":22}},"base":{"baseDamage":{"min":25,"raw":25,"max":110},"baseThunderDamage":{"min":45,"raw":45,"max":240}},"rarity":"mythic"},"Island Sniper":{"internalName":"Island Sniper","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":534,"dropRestriction":"never","identified":true,"requirements":{"level":96,"classRequirement":"archer","agility":50},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawDexterity":7,"mainAttackDamage":15,"rawHealth":-1750,"manaSteal":8,"rawAttackSpeed":-1,"mainAttackRange":75,"thunderDamage":15},"base":{"baseDamage":{"min":425,"raw":425,"max":845},"baseAirDamage":{"min":400,"raw":400,"max":425}},"rarity":"unique"},"Vagabond's Disgrace":{"internalName":"Vagabond's Disgrace","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":708,"dropRestriction":"never","identified":true,"requirements":{"level":96,"classRequirement":"shaman","strength":65,"dexterity":70},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"mainAttackDamage":30,"4thSpellCost":35,"stealing":5,"earthDamage":20,"thunderDamage":20,"waterDamage":-50,"waterDefence":-50},"base":{"baseDamage":{"min":200,"raw":200,"max":225},"baseEarthDamage":{"min":300,"raw":300,"max":340},"baseThunderDamage":{"min":300,"raw":300,"max":340}},"rarity":"rare"},"Hamsey's Brilliance":{"internalName":"Hamsey's Brilliance","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":96,"intelligence":30,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"healthRegenRaw":{"min":18,"raw":60,"max":78},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":720,"baseWaterDefence":30,"baseFireDefence":30},"rarity":"rare"},"Updraft":{"internalName":"Updraft","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"agility":45},"powderSlots":2,"identifications":{"rawDexterity":6,"rawAgility":6,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":16,"max":21},"jumpHeight":1,"thunderDamage":{"min":7,"raw":24,"max":31},"airDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2825,"baseEarthDefence":-110,"baseThunderDefence":120,"baseFireDefence":-70,"baseAirDefence":80},"rarity":"unique"},"Clear Diamond Chestplate":{"internalName":"Clear Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96},"powderSlots":3,"base":{"baseHealth":2335},"rarity":"common"},"Sunray":{"internalName":"Sunray","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"dexterity":20,"defence":20},"powderSlots":2,"identifications":{"rawDexterity":5,"rawDefence":5,"rawSpellDamage":{"min":48,"raw":160,"max":208},"healthRegen":{"min":5,"raw":18,"max":23},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2900,"baseThunderDefence":90,"baseFireDefence":90},"rarity":"unique"},"Reminder":{"internalName":"Reminder","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":96,"intelligence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawIntelligence":6,"manaRegen":1,"rawMaxMana":{"min":7,"raw":23,"max":30}},"rarity":"unique"},"Spleen Splitter":{"internalName":"Spleen Splitter","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":8,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"shaman","strength":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":10,"healthRegenRaw":{"min":-273,"raw":-210,"max":-147},"poison":{"min":5400,"raw":18000,"max":23400},"lifeSteal":{"min":84,"raw":280,"max":364},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5}},"rarity":"unique"},"Harbinger of Fate":{"internalName":"Harbinger of Fate","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"warrior","dexterity":40,"defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawDexterity":13,"rawDefence":13,"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"exploding":{"min":12,"raw":40,"max":52},"thunderDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":65,"raw":65,"max":125},"baseFireDamage":{"min":95,"raw":95,"max":95}},"rarity":"rare"},"Rano Raraku":{"internalName":"Rano Raraku","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":474,"dropRestriction":"never","requirements":{"level":96,"classRequirement":"warrior","strength":60,"intelligence":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":8,"rawIntelligence":8,"rawHealth":{"min":346,"raw":1154,"max":1500},"manaRegen":{"min":4,"raw":12,"max":16},"earthMainAttackDamage":{"min":12,"raw":40,"max":52},"waterSpellDamage":{"min":12,"raw":40,"max":52},"2ndSpellCost":{"min":26,"raw":20,"max":14},"walkSpeed":{"min":-40,"raw":-31,"max":-22}},"base":{"baseDamage":{"min":220,"raw":220,"max":240},"baseEarthDamage":{"min":325,"raw":325,"max":375},"baseWaterDamage":{"min":275,"raw":275,"max":425}},"rarity":"legendary"},"Hard Light":{"internalName":"Hard Light","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":675,"dropRestriction":"normal","requirements":{"level":96,"classRequirement":"shaman","strength":23,"dexterity":23,"intelligence":23,"defence":23,"agility":23},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"rawStrength":17,"rawDexterity":17,"rawIntelligence":17,"rawDefence":17,"rawAgility":17,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":3,"raw":9,"max":12},"manaSteal":{"min":3,"raw":9,"max":12},"elementalDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseEarthDamage":{"min":51,"raw":51,"max":57},"baseThunderDamage":{"min":51,"raw":51,"max":57},"baseWaterDamage":{"min":51,"raw":51,"max":57},"baseFireDamage":{"min":51,"raw":51,"max":57},"baseAirDamage":{"min":51,"raw":51,"max":57}},"rarity":"rare"},"Satellite":{"internalName":"Satellite","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":96,"strength":35,"dexterity":50,"intelligence":30,"defence":40,"agility":45},"powderSlots":3,"identifications":{"rawElementalDamage":{"min":82,"raw":274,"max":356},"manaRegen":{"min":2,"raw":8,"max":10},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":2000,"baseEarthDefence":50,"baseThunderDefence":125,"baseWaterDefence":25,"baseFireDefence":75,"baseAirDefence":100},"rarity":"legendary"},"Calmed Thunder":{"internalName":"Calmed Thunder","type":"ingredient","requirements":{"level":96,"skills":["tailoring","scribing"]},"icon":{"format":"legacy","value":"382:0"},"identifications":{"thunderDefence":{"min":12,"raw":12,"max":18},"earthDefence":{"min":10,"raw":10,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-101000,"strengthRequirement":0,"dexterityRequirement":20,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cirrus Cloud","coords":[[1021,146,-4933,20],[940,177,-4749,20],[927,120,-4797,20],[1378,169,-4538,20],[962,157,-4780,20]]}]},"Stalactite":{"internalName":"Stalactite","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":96,"strength":60,"dexterity":50},"powderSlots":2,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"identifications":{"lifeSteal":285,"1stSpellCost":-18,"3rdSpellCost":-18,"4thSpellCost":35,"lootBonus":10,"earthDamage":14,"thunderDamage":14,"airDefence":-12},"base":{"baseHealth":2875,"baseEarthDefence":140,"baseThunderDefence":140,"baseWaterDefence":-70,"baseAirDefence":-100},"rarity":"rare"},"Draconic Bone Marrow":{"internalName":"Draconic Bone Marrow","type":"ingredient","requirements":{"level":96,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"437:0"},"tier":3,"consumableOnlyIDs":{"duration":-300,"charges":2},"ingredientPositionModifiers":{"left":30,"right":30,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pyroclastic Hydra","coords":null}]},"Voidstone Recteps":{"internalName":"Voidstone Recteps","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":336,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"mage","quest":"One Thousand Meters Under","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"spellDamage":20,"healthRegen":-20,"rawHealth":-1250,"lifeSteal":305,"manaSteal":8,"walkSpeed":20,"mainAttackRange":20},"base":{"baseDamage":{"min":75,"raw":75,"max":85},"baseEarthDamage":{"min":150,"raw":150,"max":175},"baseAirDamage":{"min":100,"raw":100,"max":225}},"rarity":"rare"},"Diamond Fusion Bracelet":{"internalName":"Diamond Fusion Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"lore":"This bracelet opens up its wearers spirit, filling it with pure elemental knowledge. The ornaments decorating it are without peer.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawMaxMana":25,"lootBonus":16,"elementalDefence":16},"base":{"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":60},"rarity":"legendary"},"The Hearth":{"internalName":"The Hearth","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":518,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"archer","defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":5,"healthRegen":25,"healthRegenRaw":210,"lifeSteal":650,"damage":-15,"waterDamage":-12},"base":{"baseDamage":{"min":175,"raw":175,"max":225},"baseFireDamage":{"min":125,"raw":125,"max":165}},"rarity":"unique"},"Heatwave":{"internalName":"Heatwave","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":293,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"mage","defence":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":15,"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":9,"raw":30,"max":39},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseFireDamage":{"min":400,"raw":400,"max":750}},"rarity":"rare"},"Gemini":{"internalName":"Gemini","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"dexterity":55,"agility":55},"powderSlots":4,"lore":"The gods of air and thunder, frustrated with being physically insubstantial alone, decided to band together to forge the ultimate leggings of defense.","identifications":{"rawDexterity":10,"rawAgility":10,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":93,"raw":310,"max":403},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":8,"max":10},"earthDefence":{"min":8,"raw":25,"max":33},"waterDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":4550},"rarity":"legendary"},"Silver Steam Bracelet":{"internalName":"Silver Steam Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":50},"lore":"Users who have worn this early model of the Steam Bracelet have reported that they have felt \"one with the wind\" while wearing it.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":2,"walkSpeed":10,"airDamage":4,"airDefence":8},"base":{"baseAirDefence":90},"rarity":"legendary"},"Diamond Hydro Bracelet":{"internalName":"Diamond Hydro Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":100},"lore":"You'll fight strong like the tide, the merchant said, and no word was a lie. With this bracelet on your arm you could ride a wave with your bare feet.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":6,"spellDamage":8,"manaSteal":12,"waterDamage":12},"base":{"baseWaterDefence":70},"rarity":"legendary"},"Diamond Solar Ring":{"internalName":"Diamond Solar Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":100},"lore":"The device forged into this flawless ring draws all heat from its surrounding. Though it almost burns, you can feel your abilites enhance.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":3,"mainAttackDamage":-2,"spellDamage":-5,"healthRegen":16,"healthRegenRaw":110,"fireDefence":7},"base":{"baseHealth":1000,"baseFireDefence":60},"rarity":"legendary"},"Ominous Wind":{"internalName":"Ominous Wind","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":95,"quest":"One Thousand Meters Under"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"spellDamage":{"min":2,"raw":6,"max":8},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":11,"max":14},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-400,"baseEarthDefence":55,"baseAirDefence":55},"rarity":"rare"},"Gold Static Bracelet":{"internalName":"Gold Static Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":75},"lore":"The painful shock coming from this improved version of the ring is a small price for its power, but it has yet to reach its peak.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":5,"spellDamage":5,"rawSpellDamage":40,"thunderDamage":12,"thunderDefence":7},"base":{"baseHealth":-350,"baseThunderDefence":75},"rarity":"legendary"},"Fractured":{"internalName":"Fractured","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":95,"dexterity":40,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawIntelligence":-4,"rawHealth":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":50,"raw":165,"max":215},"thorns":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":300,"baseThunderDefence":20,"baseWaterDefence":-60,"baseFireDefence":30},"rarity":"legendary"},"Black Amaranth":{"internalName":"Black Amaranth","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":480,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"warrior","strength":60},"powderSlots":3,"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":10,"healthRegenRaw":-150,"rawHealth":1500,"raw1stSpellCost":-10,"earthDamage":30,"earthDefence":30},"base":{"baseDamage":{"min":60,"raw":60,"max":120},"baseEarthDamage":{"min":210,"raw":210,"max":250}},"rarity":"rare"},"Stillwater Blue":{"internalName":"Stillwater Blue","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":60},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawIntelligence":10,"manaRegen":24,"reflection":30,"thunderDamage":-20,"waterDamage":25,"waterDefence":20},"base":{"baseHealth":2500,"baseThunderDefence":-100,"baseWaterDefence":180},"rarity":"rare"},"Silkweb Mail":{"internalName":"Silkweb Mail","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"strength":50,"agility":20},"powderSlots":3,"identifications":{"rawStrength":9,"lifeSteal":{"min":72,"raw":240,"max":312},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":-1,"walkSpeed":{"min":-12,"raw":-9,"max":-6},"earthDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":9,"raw":30,"max":39},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3000,"baseEarthDefence":120,"baseFireDefence":-110,"baseAirDefence":90},"rarity":"rare"},"Diamond Static Necklace":{"internalName":"Diamond Static Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":100},"lore":"The lethal amount of electricity emmited from this often desired necklace fails to kill you, as its pure energy runs through your veins.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawMainAttackDamage":29,"rawAttackSpeed":1,"walkSpeed":5,"thunderDamage":6},"base":{"baseThunderDefence":50},"rarity":"legendary"},"Silver Fusion Necklace":{"internalName":"Silver Fusion Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"lore":"This necklace, decorated with bright jewels, uses built-in micro-devices to boost its users elemental abilites. There are many upgrades to be made before it reaches its full potential.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2},"rarity":"legendary"},"Gold Solar Bracelet":{"internalName":"Gold Solar Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":75},"lore":"The device forged into this improved bracelet seems to gather heat. You can feel a warming sensation all over your arm...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":5,"exploding":5,"fireDamage":9,"fireDefence":4},"base":{"baseHealth":1100,"baseFireDefence":65},"rarity":"legendary"},"Diamond Hydro Ring":{"internalName":"Diamond Hydro Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":100},"lore":"You'll move quick like a river, the merchant said, and no word was a lie. With this ring on your finger, you could catch a gnat without looking.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":5,"manaRegen":6,"manaSteal":4,"waterDamage":10,"waterDefence":10},"base":{"baseWaterDefence":70},"rarity":"legendary"},"Turquoise":{"internalName":"Turquoise","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"strength":30,"intelligence":30},"powderSlots":2,"identifications":{"rawStrength":5,"rawIntelligence":5,"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"spellDamage":{"min":3,"raw":10,"max":13},"thorns":{"min":5,"raw":18,"max":23},"xpBonus":{"min":3,"raw":10,"max":13},"stealing":{"min":2,"raw":8,"max":10},"airDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":3175,"baseEarthDefence":90,"baseWaterDefence":90},"rarity":"unique"},"Gold Solar Necklace":{"internalName":"Gold Solar Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":75},"lore":"The device forged into this advanced necklace seems to gather heat. You can feel a warming sensation all over your neck...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":8,"healthRegen":10,"fireDamage":5,"fireDefence":15},"base":{"baseHealth":825,"baseFireDefence":90},"rarity":"legendary"},"Impeccable Light Spruce Dagger":{"internalName":"Impeccable Light Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":355,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":102,"raw":102,"max":127}},"rarity":"common"},"Gold Fusion Necklace":{"internalName":"Gold Fusion Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"lore":"This necklace, decorated with bright jewels, uses advanced nano-technology to boost its users elemental abilities. Though powerful, there are still a few flaws to be fixed.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3},"base":{"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"legendary"},"Black Lily":{"internalName":"Black Lily","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":95,"defence":80},"powderSlots":2,"identifications":{"rawFireMainAttackDamage":{"min":76,"raw":254,"max":330},"healthRegenRaw":{"min":50,"raw":165,"max":215},"manaRegen":{"min":-8,"raw":-6,"max":-4},"3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3800,"baseEarthDefence":-75,"baseFireDefence":200,"baseAirDefence":-75},"rarity":"legendary"},"Shawl of Gaea":{"internalName":"Shawl of Gaea","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"strength":75,"defence":60},"powderSlots":2,"lore":"Despite being thin enough to blow away in the wind, this mineral-blended shawl holds the force of a supervolcano within its soft fabric.","identifications":{"rawStrength":9,"rawDefence":13,"rawMainAttackDamage":{"min":90,"raw":300,"max":390},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":9,"raw":30,"max":39},"earthDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":8,"raw":27,"max":35},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":3700,"baseEarthDefence":125,"baseFireDefence":125,"baseAirDefence":-150},"rarity":"legendary"},"Undying":{"internalName":"Undying","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":370,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior","strength":35,"defence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":20,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":59,"raw":196,"max":255},"rawHealth":{"min":750,"raw":2500,"max":3250},"lifeSteal":{"min":120,"raw":400,"max":520},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":10,"raw":10,"max":40},"baseEarthDamage":{"min":300,"raw":300,"max":400},"baseFireDamage":{"min":300,"raw":300,"max":400}},"rarity":"rare"},"Limbo":{"internalName":"Limbo","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":612,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"assassin","strength":45,"dexterity":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawStrength":9,"rawDexterity":13,"mainAttackDamage":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":-325,"raw":-250,"max":-175},"manaRegen":{"min":-31,"raw":-24,"max":-17},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":15,"raw":50,"max":65}},"base":{"baseDamage":{"min":155,"raw":155,"max":275},"baseEarthDamage":{"min":385,"raw":385,"max":385},"baseThunderDamage":{"min":0,"raw":0,"max":1200}},"rarity":"rare"},"Grandmother":{"internalName":"Grandmother","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":1009,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer","strength":110},"powderSlots":4,"lore":"The very first crossbow in existence was claimed to be utterly indestructible, but it is only true to a fault. The item cannot be broken, but solely because all damage to it is instead reflected onto the user. As its age is uncountably ancient, wielders will find themselves rapidly aging and withering away with even a mere touch.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":15,"rawAgility":55,"mainAttackDamage":{"min":6,"raw":21,"max":27},"spellDamage":{"min":6,"raw":21,"max":27},"healthRegen":{"min":-45,"raw":-35,"max":-24},"healthRegenRaw":{"min":-786,"raw":-605,"max":-423},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":120,"raw":120,"max":250},"baseEarthDamage":{"min":410,"raw":410,"max":565}},"rarity":"mythic"},"Gold Fiber Bracelet":{"internalName":"Gold Fiber Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":75},"lore":"This rough looking bracelet utilizes electromagic to expose its wearer to earth's heartbeat. You can feel a rhythm with each step...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":4,"mainAttackDamage":12,"earthDamage":11},"base":{"baseEarthDefence":50},"rarity":"legendary"},"Nether's Scar":{"internalName":"Nether's Scar","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"dexterity":50,"defence":50},"powderSlots":2,"lore":"Forged directly from the bloody red stone mined from the Nether, they were locked away for fear of inciting insanity in those who wore them.","identifications":{"rawDexterity":12,"rawDefence":12,"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":42,"raw":140,"max":182},"healthRegenRaw":{"min":-742,"raw":-571,"max":-400},"poison":{"min":998,"raw":3325,"max":4323},"rawAttackSpeed":1,"exploding":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3350,"baseEarthDefence":-140,"baseThunderDefence":140,"baseFireDefence":140,"baseAirDefence":-140},"rarity":"legendary"},"Aquarius":{"internalName":"Aquarius","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"intelligence":100},"powderSlots":3,"lore":"“The symbol of the river” is a name that is often synonymous with this garment, with many water like qualities surrounding it, heavily bathed in magical meaning.","identifications":{"mainAttackDamage":{"min":-43,"raw":-33,"max":-23},"manaRegen":{"min":13,"raw":42,"max":55},"waterSpellDamage":{"min":5,"raw":15,"max":20},"rawMaxMana":{"min":9,"raw":31,"max":40},"waterDefence":{"min":20,"raw":65,"max":85}},"base":{"baseHealth":3000,"baseThunderDefence":-175,"baseWaterDefence":230},"rarity":"legendary"},"Iron Will":{"internalName":"Iron Will","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawDefence":4,"spellDamage":-5,"healthRegen":15,"healthRegenRaw":50},"rarity":"rare"},"Gold Steam Bracelet":{"internalName":"Gold Steam Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":75},"lore":"This impressive bracelet is in high demand. Those who have obtained it say that they feel as if they're \"one with the wind\" when wearing it.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawAgility":4,"walkSpeed":14,"airDamage":6,"airDefence":10},"base":{"baseAirDefence":105},"rarity":"legendary"},"Boiler":{"internalName":"Boiler","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":320,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior","intelligence":30,"defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawIntelligence":5,"rawDefence":10,"healthRegen":{"min":6,"raw":20,"max":26},"manaRegen":{"min":4,"raw":12,"max":16},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":12,"raw":40,"max":52},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseWaterDamage":{"min":30,"raw":30,"max":48},"baseFireDamage":{"min":30,"raw":30,"max":48}},"rarity":"unique"},"Leadlights":{"internalName":"Leadlights","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"strength":25,"dexterity":25,"intelligence":25,"defence":25,"agility":25},"powderSlots":5,"identifications":{"manaSteal":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":3,"raw":11,"max":14},"elementalDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":4500},"rarity":"rare"},"Gold Solar Ring":{"internalName":"Gold Solar Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":75},"lore":"The device forged into this advanced ring seems to absorb heat. You can feel a warming sensation all over your hand...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":2,"spellDamage":-3,"healthRegen":12,"healthRegenRaw":70,"fireDefence":4},"base":{"baseHealth":775,"baseFireDefence":50},"rarity":"legendary"},"Alkahest":{"internalName":"Alkahest","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"strength":70,"defence":30},"powderSlots":2,"identifications":{"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":2610,"raw":8700,"max":11310},"lifeSteal":{"min":44,"raw":145,"max":189},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":{"min":-23,"raw":-18,"max":-13},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2500},"rarity":"rare"},"Gold Static Necklace":{"internalName":"Gold Static Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":75},"lore":"The strong shock coming from this improved version of the necklace is a small price for its strength, but it has yet to reach its peak.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawMainAttackDamage":25,"walkSpeed":2,"thunderDamage":4},"base":{"baseThunderDefence":40},"rarity":"legendary"},"Neuron":{"internalName":"Neuron","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"dexterity":50,"intelligence":20},"powderSlots":1,"identifications":{"rawDexterity":7,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":3,"raw":11,"max":14},"waterDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":2150,"baseThunderDefence":-150,"baseWaterDefence":100},"rarity":"unique"},"Gold Fiber Necklace":{"internalName":"Gold Fiber Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":75},"lore":"This improved version of a bracelet utilizes rare electromagic to expose its wearer to earth's heartbeat. You notice a rhythm with each step...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":8,"earthDamage":7,"earthDefence":12},"base":{"baseEarthDefence":60},"rarity":"legendary"},"Impeccable Light Spruce Spear":{"internalName":"Impeccable Light Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":285,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":132,"raw":132,"max":145}},"rarity":"common"},"Silver Hydro Ring":{"internalName":"Silver Hydro Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":50},"lore":"You'll move quick like a river, the merchant said. Although you notice the built-in device's abilities, you feel space for an upgrade.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":3,"manaSteal":4,"waterDamage":5,"waterDefence":5},"base":{"baseWaterDefence":40},"rarity":"legendary"},"Silver Steam Necklace":{"internalName":"Silver Steam Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":50},"lore":"Despite the size of the large jewel hanging from this necklace, it doesn't feel heavy at all. However, the necklace's mechanisms seem incomplete.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"177","name":"necklace.air1"}},"identifications":{"rawAgility":4,"reflection":4,"walkSpeed":10,"airDefence":5},"base":{"baseHealth":-120,"baseAirDefence":60},"rarity":"legendary"},"Arc Rifle":{"internalName":"Arc Rifle","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":646,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer","dexterity":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":10,"rawHealth":{"min":-2015,"raw":-1550,"max":-1085},"damage":{"min":4,"raw":12,"max":16},"1stSpellCost":{"min":-4,"raw":-14,"max":-18},"xpBonus":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":27,"raw":27,"max":80},"baseThunderDamage":{"min":70,"raw":70,"max":240}},"rarity":"rare"},"Gold Fiber Ring":{"internalName":"Gold Fiber Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":75},"lore":"This improved ring utilizes electromagic to expose its wearer to earth's heartbeat. You can sense a rhythm with each step...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":5,"mainAttackDamage":11,"rawMainAttackDamage":80,"walkSpeed":-4,"exploding":8},"base":{"baseEarthDefence":40},"rarity":"legendary"},"Eidolon":{"internalName":"Eidolon","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":280,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":95,"classRequirement":"mage","agility":60},"powderSlots":5,"dropMeta":{"name":"Aerie of the Recluse","type":"altar","coordinates":[-1746,65,-3069]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawAgility":20,"manaSteal":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":12,"raw":40,"max":52},"xpBonus":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-78,"raw":-60,"max":-42},"airDamage":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":15,"raw":50,"max":65}},"base":{"baseAirDamage":{"min":525,"raw":525,"max":575}},"rarity":"rare"},"Fallbreakers":{"internalName":"Fallbreakers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":40},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"identifications":{"rawDefence":10,"healthRegenRaw":195,"thorns":15,"reflection":15,"earthDefence":25,"thunderDefence":20,"waterDefence":15,"fireDefence":10,"airDefence":30},"base":{"baseHealth":3600,"baseEarthDefence":90,"baseThunderDefence":100,"baseWaterDefence":110,"baseFireDefence":120,"baseAirDefence":80},"rarity":"rare"},"Charcoal":{"internalName":"Charcoal","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":20,"defence":60},"powderSlots":2,"identifications":{"rawStrength":6,"rawDefence":6,"healthRegenRaw":195,"lifeSteal":285,"thorns":10,"reflection":20,"fireDamage":10,"earthDefence":25,"airDefence":15},"base":{"baseHealth":3425,"baseFireDefence":120,"baseAirDefence":120},"rarity":"rare"},"Idol":{"internalName":"Idol","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":536,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior","intelligence":120},"powderSlots":3,"lore":"Intricate carvings and images, almost like that of a totem pole, cover the shaft of this marvelous trident, dredged up from the Seavale Reef. Foreign magics heighten the senses of its user in battle, but also instills a longing for the ocean. Many have succumbed to this urge and drowned themselves.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":26,"rawSpellDamage":{"min":79,"raw":264,"max":343},"manaRegen":{"min":3,"raw":10,"max":13},"raw2ndSpellCost":{"min":-15,"raw":-50,"max":-65},"reflection":{"min":9,"raw":30,"max":39},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":220,"raw":220,"max":300}},"rarity":"mythic"},"Shield Buster":{"internalName":"Shield Buster","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":405,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior","strength":35,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":48,"raw":160,"max":208},"rawSpellDamage":{"min":33,"raw":110,"max":143},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":6,"raw":20,"max":26},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":20,"raw":20,"max":120},"baseEarthDamage":{"min":85,"raw":85,"max":115},"baseWaterDamage":{"min":75,"raw":75,"max":125}},"rarity":"unique"},"Silver Hydro Necklace":{"internalName":"Silver Hydro Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":50},"lore":"You'll be wise like the sea, the merchant said. Although you notice the built-in device's abilities, you feel space for an upgrade.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"185","name":"necklace.water1"}},"identifications":{"rawIntelligence":3,"rawSpellDamage":35},"base":{"baseWaterDefence":55},"rarity":"legendary"},"Silver Fiber Necklace":{"internalName":"Silver Fiber Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":50},"lore":"This crude looking necklace utilizes electromagic to expose its wearer to earth's heartbeat. Though for now, it remains quiet.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":6,"earthDamage":5,"earthDefence":8},"base":{"baseEarthDefence":50},"rarity":"legendary"},"Spearmint":{"internalName":"Spearmint","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":350,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"warrior","agility":35},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawAgility":10,"4thSpellCost":-20,"walkSpeed":20,"rawAirMainAttackDamage":150,"rawAirSpellDamage":175},"base":{"baseDamage":{"min":60,"raw":60,"max":110},"baseAirDamage":{"min":40,"raw":40,"max":70}},"rarity":"unique"},"Diamond Steam Ring":{"internalName":"Diamond Steam Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":100},"lore":"Users of this perfect model of Legendary Island's steam-powered ring have reported feeling weightless in combat. The jewel of the ring is a perfectly clear diamond.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"walkSpeed":12,"airDamage":18,"airDefence":7},"base":{"baseHealth":-240,"baseAirDefence":50},"rarity":"legendary"},"Stellar":{"internalName":"Stellar","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":95,"strength":45,"dexterity":45,"intelligence":45,"defence":45,"agility":45},"lore":"Elementally attuned gemstones are melded together to form the singular marvel found on this pendant. Despite the violent smithing process, the jewel is utterly flawless.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":17,"max":22},"spellDamage":{"min":5,"raw":17,"max":22},"rawHealth":{"min":195,"raw":650,"max":845},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Gold Steam Necklace":{"internalName":"Gold Steam Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":75},"lore":"The jewel hanging from this necklace is said to be weightless. While still very powerful, its full potential has yet to be achieved.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":8,"reflection":8,"walkSpeed":12,"airDamage":4,"airDefence":10},"base":{"baseHealth":-180,"baseAirDefence":75},"rarity":"legendary"},"Diamond Static Bracelet":{"internalName":"Diamond Static Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":100},"lore":"The heavy shocks coming from this perfected bracelet would be lethal under normal circumstances, but the only thing its wearer senses is the enhancement of power.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":6,"spellDamage":8,"rawSpellDamage":60,"thunderDamage":16,"thunderDefence":10},"base":{"baseHealth":-450,"baseThunderDefence":100},"rarity":"legendary"},"Impeccable Light Spruce Wand":{"internalName":"Impeccable Light Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":212,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":80,"raw":80,"max":90}},"rarity":"common"},"Waterspout":{"internalName":"Waterspout","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":450,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"assassin","dexterity":35,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.water3"}},"identifications":{"mainAttackDamage":{"min":-78,"raw":-60,"max":-42},"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":7,"raw":22,"max":29},"waterDefence":{"min":7,"raw":22,"max":29}},"base":{"baseDamage":{"min":45,"raw":45,"max":95},"baseThunderDamage":{"min":45,"raw":45,"max":185},"baseWaterDamage":{"min":105,"raw":105,"max":125}},"rarity":"unique"},"Snowdrift":{"internalName":"Snowdrift","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":435,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"assassin","intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawIntelligence":8,"spellDamage":20,"manaRegen":6,"walkSpeed":-8,"waterDamage":10,"waterDefence":20},"base":{"baseDamage":{"min":95,"raw":95,"max":135},"baseWaterDamage":{"min":155,"raw":155,"max":195}},"rarity":"unique"},"Caldera":{"internalName":"Caldera","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":432,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"assassin","intelligence":35,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawIntelligence":5,"rawDefence":7,"spellDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-1560,"raw":-1200,"max":-840},"waterDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":36,"raw":36,"max":60},"baseWaterDamage":{"min":55,"raw":55,"max":70},"baseFireDamage":{"min":40,"raw":40,"max":85}},"rarity":"unique"},"Earth Drift":{"internalName":"Earth Drift","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":392,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"warrior","strength":50,"agility":30},"powderSlots":2,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":4,"rawAgility":8,"mainAttackDamage":12,"rawMainAttackDamage":50,"rawSpellDamage":-45,"walkSpeed":12,"earthDamage":20},"base":{"baseEarthDamage":{"min":32,"raw":32,"max":50},"baseAirDamage":{"min":70,"raw":70,"max":101}},"rarity":"unique"},"Impeccable Light Spruce Bow":{"internalName":"Impeccable Light Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":428,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":190,"raw":190,"max":226}},"rarity":"common"},"Voidstone Elrik":{"internalName":"Voidstone Elrik","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":674,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"shaman","quest":"One Thousand Meters Under","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"spellDamage":20,"healthRegen":-20,"rawHealth":-1250,"lifeSteal":305,"manaSteal":8,"walkSpeed":20,"mainAttackRange":20},"base":{"baseDamage":{"min":160,"raw":160,"max":165},"baseEarthDamage":{"min":320,"raw":320,"max":330},"baseAirDamage":{"min":310,"raw":310,"max":340}},"rarity":"rare"},"Stormcloud":{"internalName":"Stormcloud","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":519,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"archer","intelligence":55},"powderSlots":2,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":10,"mainAttackDamage":-30,"manaRegen":18,"rawMaxMana":50,"thunderDefence":30,"waterDefence":30,"fireDefence":-15,"airDefence":30},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseWaterDamage":{"min":145,"raw":145,"max":170}},"rarity":"rare"},"Diamond Solar Bracelet":{"internalName":"Diamond Solar Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":100},"lore":"The device forged into this perfected bracelet drains all heat from its surroundings. Though it almost burns, you can feel your power growing","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":7,"exploding":15,"fireDamage":14,"fireDefence":7},"base":{"baseHealth":1500,"baseFireDefence":80},"rarity":"legendary"},"Gift of the Magi":{"internalName":"Gift of the Magi","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":506,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"shaman","defence":60,"agility":60},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawDefence":15,"rawAgility":15,"healthRegenRaw":135,"rawHealth":2500,"manaRegen":6,"earthDamage":-50,"thunderDamage":-50,"waterDefence":30},"base":{"baseDamage":{"min":130,"raw":130,"max":145},"baseFireDamage":{"min":30,"raw":30,"max":35},"baseAirDamage":{"min":30,"raw":30,"max":35}},"rarity":"unique"},"Nether's Reach":{"internalName":"Nether's Reach","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"dexterity":20,"defence":40},"powderSlots":2,"identifications":{"rawStrength":8,"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":42,"raw":140,"max":182},"rawHealth":{"min":135,"raw":450,"max":585},"thunderDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":3000,"baseEarthDefence":-120,"baseThunderDefence":100,"baseWaterDefence":-80,"baseFireDefence":100},"rarity":"unique"},"Sunstar":{"internalName":"Sunstar","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":996,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"shaman","dexterity":115},"powderSlots":3,"lore":"Once known as the Doomsday Weapon, it was ultimately never used for its intended purpose - its solar focus was cracked upon the day of its completion. All but a fraction of its energy was expelled, obliterating its creators, but overwhelming magical force still pulses and thrums through the web of fractures in its design.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawMainAttackDamage":{"min":306,"raw":1019,"max":1325},"lifeSteal":{"min":188,"raw":625,"max":813},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"thorns":{"min":9,"raw":30,"max":39},"reflection":{"min":27,"raw":90,"max":117},"rawAttackSpeed":1,"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":245,"raw":245,"max":355},"baseThunderDamage":{"min":785,"raw":785,"max":1015}},"rarity":"mythic"},"Diamond Solar Necklace":{"internalName":"Diamond Solar Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":100},"lore":"The masterpiece of a necklace gathers all heat from its surrounding. It is fed to its wearer to maximize the strength of attacks.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":10,"healthRegen":20,"fireDamage":8,"fireDefence":20},"base":{"baseHealth":900,"baseFireDefence":120},"rarity":"legendary"},"Silver Hydro Bracelet":{"internalName":"Silver Hydro Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":50},"lore":"You'll fight strong like the tide, the merchant said. Although you notice the built-in device's abilities, you feel space for an upgrade.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawIntelligence":4,"spellDamage":3,"manaSteal":4,"waterDamage":5},"base":{"baseWaterDefence":40},"rarity":"legendary"},"The Stokers":{"internalName":"The Stokers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"defence":75},"powderSlots":2,"identifications":{"rawDefence":15,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"rawMainAttackDamage":{"min":86,"raw":285,"max":371},"healthRegenRaw":{"min":41,"raw":135,"max":176},"manaRegen":{"min":2,"raw":6,"max":8},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3100},"rarity":"unique"},"Diamond Static Ring":{"internalName":"Diamond Static Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":100},"lore":"The heavy electrical impulses coming from this ring would be lethal under normal circumstances, but the only thing its wearer senses is pure power. A true masterpiece of engineering.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":8,"healthRegen":-10,"thorns":10,"thunderDamage":16},"base":{"baseHealth":-350,"baseThunderDefence":70},"rarity":"legendary"},"Silver Static Bracelet":{"internalName":"Silver Static Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":50},"lore":"Though it's hard to touch the simple, mechanical bracelet without experiencing a little shock, its capabilities intrigue you...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":3,"spellDamage":3,"rawSpellDamage":25,"thunderDamage":8,"thunderDefence":5},"base":{"baseHealth":-280,"baseThunderDefence":50},"rarity":"legendary"},"One Thousand Voices":{"internalName":"One Thousand Voices","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":675,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"shaman","dexterity":44,"agility":44},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawDexterity":8,"rawAgility":8,"rawSpellDamage":{"min":45,"raw":150,"max":195},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"3rdSpellCost":{"min":-7,"raw":-23,"max":-30},"exploding":{"min":30,"raw":100,"max":130},"earthDamage":{"min":-32,"raw":-25,"max":-17},"waterDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":14,"raw":45,"max":59}},"base":{"baseDamage":{"min":145,"raw":145,"max":155},"baseThunderDamage":{"min":145,"raw":145,"max":155},"baseAirDamage":{"min":145,"raw":145,"max":155}},"rarity":"rare"},"Silver Solar Ring":{"internalName":"Silver Solar Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":50},"lore":"The device forged into this simple ring seems to absorb heat. You feel a bit lukewarm when wearing it...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":1,"healthRegen":8,"healthRegenRaw":40},"base":{"baseHealth":550,"baseFireDefence":40},"rarity":"legendary"},"Diamond Fiber Necklace":{"internalName":"Diamond Fiber Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":100},"lore":"This ultimate version of a necklace was given to less than a handful of adventurers. Once on your neck, you can communicate with the ground below as if you grew roots.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":10,"earthDamage":10,"earthDefence":16},"base":{"baseEarthDefence":80},"rarity":"legendary"},"Gold Hydro Ring":{"internalName":"Gold Hydro Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":75},"lore":"You'll move quick like a river, the merchant insisted. Indeed, you begin to notice how your senses sharpen. But is that the limit...?","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":4,"manaRegen":6,"waterDamage":7,"waterDefence":7},"base":{"baseWaterDefence":55},"rarity":"legendary"},"Errant":{"internalName":"Errant","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":95,"agility":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-6,"raw":-5,"max":-3},"airDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":500,"baseFireDefence":-60,"baseAirDefence":60},"rarity":"unique"},"Forest Aconite":{"internalName":"Forest Aconite","type":"weapon","weaponType":"dagger","attackSpeed":"normal","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"assassin","strength":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawElementalSpellDamage":1275,"rawHealth":-1000,"poison":14500,"4thSpellCost":28,"airDefence":-25},"rarity":"rare"},"Diamond Steam Necklace":{"internalName":"Diamond Steam Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":100},"lore":"This necklace is the pinnacle of steam-powered technology. Despite the size of the large jewel hanging from the necklace, it doesn't feel heavy at all.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":10,"reflection":16,"walkSpeed":16,"airDamage":8,"airDefence":16},"base":{"baseHealth":-240,"baseAirDefence":100},"rarity":"legendary"},"Gale's Force":{"internalName":"Gale's Force","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":691,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer","agility":60},"powderSlots":3,"lore":"Those who have used this near-weightless bow all seem to tell tales of how they see Gale's spirit fighting alongside them.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawDexterity":10,"rawAgility":10,"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":9,"raw":30,"max":39},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-65,"raw":-50,"max":-35},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":65,"raw":65,"max":158},"baseAirDamage":{"min":65,"raw":65,"max":158}},"rarity":"legendary"},"Sleeping Beast":{"internalName":"Sleeping Beast","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":634,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer","strength":40,"dexterity":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":10,"poison":{"min":1980,"raw":6600,"max":8580},"manaSteal":{"min":2,"raw":8,"max":10},"damage":{"min":6,"raw":20,"max":26},"4thSpellCost":{"min":-6,"raw":-20,"max":-26},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":145,"raw":145,"max":200},"baseEarthDamage":{"min":95,"raw":95,"max":155},"baseThunderDamage":{"min":50,"raw":50,"max":200}},"rarity":"unique"},"Diamond Fiber Bracelet":{"internalName":"Diamond Fiber Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":100},"lore":"Desired by many of the countless challengers, this bracelet allows you to sense movements over thousands of meters away. It is decorated with rough yet beautiful jewels.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":6,"mainAttackDamage":16,"earthDamage":16,"earthDefence":5},"base":{"baseEarthDefence":65},"rarity":"legendary"},"Time Rift":{"internalName":"Time Rift","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"intelligence":120},"majorIds":{"Sorcery":"+Sorcery: 30% chance for spells and attacks to cast a second time at no additional cost."},"powderSlots":3,"lore":"\\[Community Event Winner\\] You only have limited time. But what if, you could experience that time again? And again, and again...","identifications":{"spellDamage":{"min":14,"raw":46,"max":60},"manaRegen":{"min":-23,"raw":-18,"max":-13},"manaSteal":{"min":-21,"raw":-16,"max":-11},"reflection":{"min":9,"raw":30,"max":39},"rawAttackSpeed":-1},"base":{"baseHealth":3000,"baseWaterDefence":-250},"rarity":"fabled"},"Diamond Fusion Necklace":{"internalName":"Diamond Fusion Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"lore":"Unlike any other invention this necklace enhances your power and understanding of the elements tenfold. The colorful jewels used are almost dizzying you.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4},"base":{"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Starglass":{"internalName":"Starglass","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"intelligence":40,"agility":40},"powderSlots":2,"identifications":{"rawIntelligence":7,"rawDefence":7,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":9,"raw":30,"max":39},"reflection":{"min":6,"raw":20,"max":26},"waterDamage":{"min":2,"raw":5,"max":7},"fireDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":3125,"baseThunderDefence":-40,"baseWaterDefence":60,"baseFireDefence":-100,"baseAirDefence":140},"rarity":"rare"},"Silver Fiber Ring":{"internalName":"Silver Fiber Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":50},"lore":"This crude looking ring utilizes electromagic to expose its wearer to earth's heartbeat. Though for now, it remains a whispering.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":3,"mainAttackDamage":8,"rawMainAttackDamage":65,"walkSpeed":-3},"base":{"baseEarthDefence":20},"rarity":"legendary"},"Summa":{"internalName":"Summa","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","requirements":{"level":95},"lore":"An auxiliary power core of the powerful TERA-4M Mining robot line. It controls the robots by giving the bearer a compulsion to break new grounds and progress further without heed.","dropMeta":{"name":"Geyser Pit","type":"altar","coordinates":[-1573,27,-3204]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawStrength":1,"rawDexterity":3,"rawDefence":3,"rawAgility":1,"healthRegenRaw":{"min":-45,"raw":-35,"max":-24},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseThunderDefence":-25,"baseFireDefence":-25},"rarity":"legendary"},"Diamond Hydro Necklace":{"internalName":"Diamond Hydro Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":100},"lore":"You'll be wise like the sea, the merchant said and every word was true. With this necklace equipped, you could hear the ocean whisper.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":7,"rawSpellDamage":55,"manaRegen":12,"reflection":15},"base":{"baseWaterDefence":80},"rarity":"legendary"},"Silver Solar Necklace":{"internalName":"Silver Solar Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":50},"lore":"The device forged into this basic necklace seems to gather heat. You can feel a warm sting when holding it.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"181","name":"necklace.fire1"}},"identifications":{"rawDefence":6,"fireDefence":10},"base":{"baseHealth":750,"baseFireDefence":70},"rarity":"legendary"},"Moontower":{"internalName":"Moontower","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"intelligence":70,"agility":80},"powderSlots":3,"lore":"For the belief of the cosmos’ defilement, the moon was noted to remain unchanged. Those with this belief live only for the light of the moon, desperately seeking to maintain it through means that would only darken the soul of the most devout. Such from them comes the word lunacy.","identifications":{"rawStrength":-10,"rawDexterity":-10,"rawIntelligence":35,"rawDefence":-40,"rawAgility":60,"walkSpeed":{"min":8,"raw":25,"max":33},"waterDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":4150,"baseEarthDefence":75,"baseThunderDefence":225,"baseWaterDefence":125,"baseFireDefence":75,"baseAirDefence":125},"rarity":"mythic"},"Bottled Sky":{"internalName":"Bottled Sky","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"agility":60},"powderSlots":2,"identifications":{"rawDexterity":6,"rawIntelligence":-24,"rawDefence":6,"rawAgility":6,"1stSpellCost":{"min":-3,"raw":-9,"max":-12},"3rdSpellCost":{"min":-3,"raw":-9,"max":-12},"4thSpellCost":{"min":-4,"raw":-14,"max":-18},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":5,"raw":18,"max":23},"waterDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":2700,"baseEarthDefence":-100,"baseAirDefence":150},"rarity":"rare"},"Snail Leggings":{"internalName":"Snail Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(0,51,51)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":95,"strength":60,"defence":80},"powderSlots":2,"identifications":{"rawDefence":9,"healthRegen":{"min":6,"raw":20,"max":26},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":3575,"baseEarthDefence":65,"baseFireDefence":90},"rarity":"set"},"Silver Static Ring":{"internalName":"Silver Static Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":50},"lore":"Though it's hard to touch the plain, mechanical ring without experiencing a little shock, its capabilities intrigue you...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":6,"thunderDamage":8},"base":{"baseHealth":-210,"baseThunderDefence":30},"rarity":"legendary"},"Silver Solar Bracelet":{"internalName":"Silver Solar Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"defence":50},"lore":"The device forged into this simple bracelet seems to gather heat. You feel a bit lukewarm when wearing it...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawDefence":3,"fireDamage":6,"fireDefence":2},"base":{"baseHealth":900,"baseFireDefence":50},"rarity":"legendary"},"Gold Static Ring":{"internalName":"Gold Static Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":75},"lore":"The strong shock coming from this advanced version of the ring is a small price for its power, but it has yet to reach its peak.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":7,"healthRegen":-7,"thorns":4,"thunderDamage":12},"base":{"baseHealth":-280,"baseThunderDefence":50},"rarity":"legendary"},"Ignition":{"internalName":"Ignition","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":460,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"warrior","defence":65},"powderSlots":3,"lore":"\\[Community Event Winner\\] Forged with flaming scales shorn from Ozoth, the fabled Golden Ninja of the Canyon of the Lost hunted his prey relentlessly using this lightweight, yet harder than steel, polearm.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":15,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":131,"raw":435,"max":566},"exploding":{"min":12,"raw":40,"max":52},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":22,"raw":22,"max":55},"baseFireDamage":{"min":85,"raw":85,"max":135}},"rarity":"legendary"},"Impeccable Light Spruce Relik":{"internalName":"Impeccable Light Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":428,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":168,"raw":168,"max":174}},"rarity":"common"},"Eradian Cuissards":{"internalName":"Eradian Cuissards","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":95,"strength":60,"dexterity":60,"agility":45},"powderSlots":2,"lore":"Abandoned by the dwarven Ramriders in their heyday, this hefty armor forged to protect a steed sees little use but littering the steppes of the upper heights. A memento of a slaughter, in days long past.","identifications":{"mainAttackDamage":{"min":7,"raw":23,"max":30},"rawMainAttackDamage":{"min":92,"raw":308,"max":400},"lifeSteal":{"min":75,"raw":250,"max":325},"2ndSpellCost":{"min":36,"raw":28,"max":20},"3rdSpellCost":{"min":65,"raw":50,"max":35},"reflection":{"min":12,"raw":40,"max":52},"sprintRegen":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3000,"baseEarthDefence":100,"baseThunderDefence":100,"baseFireDefence":-300,"baseAirDefence":75},"rarity":"legendary"},"Yellow Rose":{"internalName":"Yellow Rose","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":384,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"mage","dexterity":60},"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawStrength":30,"rawIntelligence":30,"rawDefence":-30,"rawAgility":-30,"mainAttackDamage":15,"lifeSteal":400,"thorns":80},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":925}},"rarity":"rare"},"Arc Bracer":{"internalName":"Arc Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":95,"dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":5,"thorns":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDefence":-40,"baseThunderDefence":50,"baseWaterDefence":-20},"rarity":"unique"},"Diamond Steam Bracelet":{"internalName":"Diamond Steam Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":100},"lore":"This steam-powered bracelet is sought by many challengers of the Legendary Challenge. They say that they feel as if they're \"one with the wind\" when wearing it.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawAgility":6,"walkSpeed":18,"airDamage":8,"airDefence":12},"base":{"baseAirDefence":135},"rarity":"legendary"},"Halation":{"internalName":"Halation","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":269,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"mage","dexterity":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":6,"spellDamage":10,"reflection":33,"xpBonus":15,"airDamage":15,"thunderDefence":10},"base":{"baseThunderDamage":{"min":90,"raw":90,"max":125}},"rarity":"unique"},"Desperado":{"internalName":"Requiem","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":322,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"mage","dexterity":40,"defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawAgility":-10,"rawSpellDamage":{"min":35,"raw":115,"max":150},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":7,"raw":23,"max":30},"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":12,"raw":12,"max":40},"baseThunderDamage":{"min":22,"raw":22,"max":30},"baseFireDamage":{"min":13,"raw":13,"max":91}},"rarity":"rare"},"Silver Steam Ring":{"internalName":"Silver Steam Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":50},"lore":"This prototype model of the Steam Ring increases the user's agility in combat. The jewel of the ring is crystal clear.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":1,"walkSpeed":6,"airDamage":10,"airDefence":3},"base":{"baseHealth":-120,"baseAirDefence":20},"rarity":"legendary"},"Gold Steam Ring":{"internalName":"Gold Steam Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"agility":75},"lore":"While this model of the Steam Ring is far superior to its predecessor, there still lies the capacity for one more upgrade. The jewel of the ring is crystal clear.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":3,"walkSpeed":9,"airDamage":14,"airDefence":5},"base":{"baseHealth":-180,"baseAirDefence":35},"rarity":"legendary"},"Gold Hydro Necklace":{"internalName":"Gold Hydro Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":75},"lore":"You'll be wise like the sea, the merchant said. Indeed, you begin to notice how your senses sharpen. But is that the limit...?","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":5,"rawSpellDamage":40,"manaRegen":6,"reflection":5},"base":{"baseWaterDefence":65},"rarity":"legendary"},"Vapor Fang":{"internalName":"Vapor Fang","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":525,"dropRestriction":"never","requirements":{"level":95,"classRequirement":"assassin","intelligence":45,"defence":50,"agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":8,"rawAgility":8,"healthRegenRaw":{"min":65,"raw":215,"max":280},"rawHealth":{"min":531,"raw":1769,"max":2300},"damage":{"min":-18,"raw":-14,"max":-10},"4thSpellCost":{"min":-6,"raw":-20,"max":-26},"sprint":{"min":11,"raw":35,"max":46},"slowEnemy":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseWaterDamage":{"min":55,"raw":55,"max":85},"baseFireDamage":{"min":70,"raw":70,"max":70},"baseAirDamage":{"min":40,"raw":40,"max":100}},"rarity":"legendary"},"Leictreach Makani":{"internalName":"Leictreach Makani","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95,"dexterity":60,"agility":60},"powderSlots":3,"identifications":{"rawDexterity":12,"rawAgility":12,"spellDamage":{"min":6,"raw":19,"max":25},"thorns":{"min":11,"raw":35,"max":46},"reflection":{"min":11,"raw":35,"max":46},"rawAttackSpeed":1,"walkSpeed":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-195,"raw":-150,"max":-105}},"base":{"baseThunderDefence":150,"baseAirDefence":150},"rarity":"rare"},"Gold Hydro Bracelet":{"internalName":"Gold Hydro Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"intelligence":75},"lore":"You'll fight strong like the tide, the merchant said. Indeed, you begin to notice how your senses sharpen. But is that the limit...?","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":5,"spellDamage":6,"manaSteal":8,"waterDamage":8},"base":{"baseWaterDefence":55},"rarity":"legendary"},"Diamond Fiber Ring":{"internalName":"Diamond Fiber Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":100},"lore":"This masterpiece of a ring utilizes powerful electromagic to expose its wearer to earth's heartbeat. Wearing it, you can feel a deep connection to the ground below.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":14,"rawMainAttackDamage":95,"walkSpeed":-5,"exploding":12},"base":{"baseEarthDefence":60},"rarity":"legendary"},"Nona":{"internalName":"Nona","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":632,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":95,"classRequirement":"assassin","strength":50,"agility":40},"powderSlots":3,"dropMeta":{"name":"Aerie of the Recluse","type":"altar","coordinates":[-1746,65,-3069]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawAgility":13,"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"rawSpellDamage":{"min":27,"raw":90,"max":117},"healthRegenRaw":{"min":-234,"raw":-180,"max":-126},"rawAttackSpeed":1,"walkSpeed":{"min":8,"raw":25,"max":33},"xpBonus":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-130,"raw":-100,"max":-70}},"base":{"baseEarthDamage":{"min":62,"raw":62,"max":85},"baseAirDamage":{"min":62,"raw":62,"max":85}},"rarity":"legendary"},"Silver Static Necklace":{"internalName":"Silver Static Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"dexterity":50},"lore":"Though it's hard to touch the plain, tech-enhanced necklace without experiencing a little shock, its capabilities intrigue you...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"183","name":"necklace.thunder1"}},"identifications":{"rawMainAttackDamage":20,"thunderDamage":2},"base":{"baseThunderDefence":30},"rarity":"legendary"},"Silver Fiber Bracelet":{"internalName":"Silver Fiber Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":50},"lore":"This rough looking bracelet utilizes electromagic to expose its wearer to earth's heartbeat. Though for now, it remains a whispering.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"rawStrength":2,"mainAttackDamage":8,"earthDamage":7},"base":{"baseEarthDefence":40},"rarity":"legendary"},"Clear Diamond Leggings":{"internalName":"Clear Diamond Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":95},"powderSlots":3,"base":{"baseHealth":2270},"rarity":"common"},"Mixed Mineral Deposit":{"internalName":"Mixed Mineral Deposit","type":"ingredient","requirements":{"level":95,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"15:0"},"identifications":{"mainAttackDamage":{"min":7,"raw":7,"max":10},"rawHealth":{"min":600,"raw":600,"max":660},"rawSpellDamage":{"min":-75,"raw":-75,"max":-60}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-96000,"strengthRequirement":18,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mining Mech TERA-4M","coords":null}]},"Luu Luu Vertebrae":{"internalName":"Luu Luu Vertebrae","type":"ingredient","requirements":{"level":95,"skills":["tailoring"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"rawHealth":{"min":380,"raw":380,"max":420}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Luu Luu Snake","coords":[[-1585,37,-3421,10],[-1546,100,-3304,10],[-1216,57,-3252,25],[-1246,88,-3240,25],[-1293,73,-3223,25],[-1593,40,-3259,25],[-1578,46,-3291,25]]}]},"Mural Shard":{"internalName":"Mural Shard","type":"ingredient","requirements":{"level":95,"skills":["armouring"]},"icon":{"format":"legacy","value":"179:1"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"rawDefence":{"min":3,"raw":3,"max":4},"fireDefence":{"min":5,"raw":5,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-71000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0}},"Silver Bullet":{"internalName":"Silver Bullet","type":"ingredient","requirements":{"level":95,"skills":["jeweling"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"thunderDamage":{"min":4,"raw":4,"max":5},"rawMainAttackDamage":{"min":25,"raw":25,"max":30}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-95000,"strengthRequirement":0,"dexterityRequirement":14,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"MM-0actical Unit","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]}]},"Void Essence":{"internalName":"Void Essence","type":"ingredient","requirements":{"level":95,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:5"},"identifications":{"spellDamage":{"min":2,"raw":2,"max":4},"rawAgility":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Abyss Rukh","coords":null},{"name":"Abyss Rukh","coords":null},{"name":"Spectre of Emptiness ","coords":false},{"name":"Spectre of Regret","coords":false},{"name":"Photophobic Devourer","coords":false},{"name":"Phantasm of Regret","coords":false},{"name":"Phantasm of Emptiness","coords":false},{"name":"Void Spirula","coords":false},{"name":"Crystal Guardian","coords":false},{"name":"Hollow Grovetender","coords":false},{"name":"Distorted Body","coords":null}]},"Gravitation Crystal":{"internalName":"Gravitation Crystal","type":"ingredient","requirements":{"level":95,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"264:0"},"identifications":{"rawAttackSpeed":{"min":-1,"raw":-1,"max":-1},"spellDamage":{"min":15,"raw":15,"max":17}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kaian Observer","coords":[1087,159,-4693,0]}]},"Mixed Jewel Deposit":{"internalName":"Mixed Jewel Deposit","type":"ingredient","requirements":{"level":95,"skills":["jeweling"]},"icon":{"format":"legacy","value":"21:0"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":4},"mainAttackDamage":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mining Mech TERA-4M","coords":null}]},"Demonic Ashes":{"internalName":"Demonic Ashes","type":"ingredient","requirements":{"level":95,"skills":["alchemism"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"fireDamage":{"min":2,"raw":2,"max":9},"rawDefence":{"min":1,"raw":1,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-93,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ifrit","coords":[[1353,157,-5569,10],[1308,161,-5520,10],[1303,155,-5576,10],[1468,136,-5205,20]]},{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]}]},"Pride of the Heights":{"internalName":"Pride of the Heights","type":"ingredient","requirements":{"level":95,"skills":["tailoring","woodworking","alchemism"]},"icon":{"format":"skin","value":"9c2e9d8395cacd9922869c15373cf7cb16da0a5ce5f3c632b19ceb3929c9a11"},"tier":3,"consumableOnlyIDs":{"duration":-280,"charges":0},"ingredientPositionModifiers":{"left":130,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-157000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Linear Accelerator":{"internalName":"Linear Accelerator","type":"ingredient","requirements":{"level":95,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"198:0"},"identifications":{"rawHealth":{"min":-820,"raw":-820,"max":-780},"rawSpellDamage":{"min":55,"raw":55,"max":80},"thunderDamage":{"min":12,"raw":12,"max":16}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":0,"dexterityRequirement":25,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"MM-0actical Unit","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]},{"name":"Marksman Drone","coords":[[-1268,59,-3370,2],[-1337,74,-3365,2],[-1575,52,-3446,2],[-1596,48,-3319,2],[-1668,62,-3135,2],[-1710,90,-2701,2],[-1768,86,-2542,2],[-1363,102,-2625,2],[-1871,93,-2802,2],[-1795,90,-2727,2],[-1475,78,-2629,2],[-1345,35,-2745,2],[-1306,46,-2662,1]]}]},"Sky Snail Shell":{"internalName":"Sky Snail Shell","type":"ingredient","requirements":{"level":95,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"thorns":{"min":9,"raw":9,"max":14},"reflection":{"min":10,"raw":10,"max":13},"healthRegen":{"min":7,"raw":7,"max":9}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Sky Snail","coords":[996,160,-4844,35]}]},"Manis Carapace":{"internalName":"Manis Carapace","type":"ingredient","requirements":{"level":95,"skills":["cooking"]},"icon":{"format":"legacy","value":"281:0"},"identifications":{"thorns":{"min":4,"raw":4,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":-280,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Astrochelys Manis","coords":[[-1736,132,-3376,10],[-1841,110,-3265,10],[-1871,109,-3254,10],[-1865,108,-3258,10],[-1858,94,-3238,10],[-1862,94,-3231,10],[-1839,80,-3225,10],[-1659,48,-3150,10],[-1479,41,-3200,10],[-1473,43,-3141,10],[-1453,46,-3189,10],[-1429,49,-3182,10],[-1257,76,-3274,10],[-1289,66,-3264,10],[-1329,99,-3280,10],[-1365,111,-3290,10],[-1414,134,-3292,10],[-1445,132,-3283,20],[-1444,132,-3273,10],[-1440,132,-3297,10],[-1427,134,-3299,10],[-1437,134,-3315,25],[-1437,134,-3315,25],[-1437,134,-3315,25],[-1437,138,-3315,25],[-1437,136,-3315,25],[-1508,90,-3299,25],[-1508,90,-3299,25],[-1551,60,-3393,10],[-1579,36,-3430,10],[-1386,163,-3344,10],[-1569,40,-3317,10]]}]},"Shiny Mineral Deposit":{"internalName":"Shiny Mineral Deposit","type":"ingredient","requirements":{"level":95,"skills":["jeweling"]},"icon":{"format":"legacy","value":"14:0"},"identifications":{"rawStrength":{"min":0,"raw":0,"max":1},"rawDefence":{"min":0,"raw":0,"max":1},"rawIntelligence":{"min":0,"raw":0,"max":1},"rawDexterity":{"min":0,"raw":0,"max":1},"rawAgility":{"min":0,"raw":0,"max":1}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":8,"dexterityRequirement":8,"intelligenceRequirement":8,"defenceRequirement":8,"agilityRequirement":8},"droppedBy":[{"name":"Mining Mech TERA-4M","coords":null}]},"Remedial Paste":{"internalName":"Remedial Paste","type":"ingredient","requirements":{"level":95,"skills":["cooking"]},"icon":{"format":"legacy","value":"281:0"},"identifications":{"healingEfficiency":{"min":2,"raw":2,"max":2},"earthDefence":{"min":3,"raw":3,"max":4},"airDefence":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":-560,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Avos Shaman","coords":[[-1795,58,-3204,4],[-1792,67,-3226,4],[-1788,87,-3129,16]]},{"name":"Avos Warrior","coords":[[-1713,53,-3229,4],[-1766,64,-3299,4],[-1769,71,-3180,4],[-1795,68,-3204,4],[-1792,67,-3226,4],[-1792,67,-3226,4],[-1794,79,-3156,4],[-1794,79,-3156,4],[-1788,87,-3129,16],[-1788,87,-3129,16],[-1788,87,-3129,16]]},{"name":"Fallen Avos Warrior","coords":false},{"name":"Bitter Avos Berserker","coords":[-2222,51,-3234,30]},{"name":"Young Avos Soldier","coords":[[-1816,134,-3076,12],[-1826,117,-3123,5],[-1885,117,-3179,10],[-1803,108,-3276,10],[-1953,132,-3255,10],[-1950,155,-3298,10],[-1887,142,-3353,10],[-1821,145,-3353,10],[-1747,133,-3378,10]]},{"name":"Avos Warrior","coords":null},{"name":"Bitter Avo Shaman","coords":[-2222,51,-3234,30]},{"name":"Avos Young Soldier","coords":null},{"name":"Bitter Avo Exile","coords":[-2222,51,-3234,30]},{"name":"Avos Shaman","coords":null},{"name":"Avos Guard","coords":[[-1816,134,-3076,12],[-1826,117,-3123,5],[-1885,117,-3179,10],[-1803,108,-3276,10],[-1953,132,-3255,10],[-1950,155,-3298,10],[-1887,142,-3353,10],[-1821,145,-3353,10],[-1747,133,-3378,10]]}]},"Gathering Axe T11":{"internalName":"Gathering Axe 11","type":"tool","toolType":"axe","gatheringSpeed":275,"identified":true,"requirements":{"level":95},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"50","name":"gatheringTool.axe11"}},"rarity":"common"},"Gathering Scythe T11":{"internalName":"Gathering Scythe 11","type":"tool","toolType":"scythe","gatheringSpeed":275,"identified":true,"requirements":{"level":95},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"65","name":"gatheringTool.scythe11"}},"rarity":"common"},"Gathering Pickaxe T11":{"internalName":"Gathering Pickaxe 11","type":"tool","toolType":"pickaxe","gatheringSpeed":275,"identified":true,"requirements":{"level":95},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"55","name":"gatheringTool.pickaxe11"}},"rarity":"common"},"Gathering Rod T11":{"internalName":"Gathering Rod 11","type":"tool","toolType":"rod","gatheringSpeed":275,"identified":true,"requirements":{"level":95},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"60","name":"gatheringTool.rod11"}},"rarity":"common"},"Ignis":{"internalName":"Ignis","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":726,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"archer","defence":105},"majorIds":{"Altruism":"+Altruism: Nearby players gain 100% of the health you gain from Health Regen and Life Steal."},"powderSlots":3,"lore":"This bow, used by the dwarves to land the final blow in the slaughter of Garaheth, is extremely powerful. Special fire resistant gloves must be worn at all times to prevent burns to the user.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":20,"healthRegen":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":104,"raw":345,"max":449},"rawHealth":{"min":900,"raw":3000,"max":3900},"4thSpellCost":{"min":-10,"raw":-35,"max":-45},"fireDefence":{"min":30,"raw":100,"max":130},"airDefence":{"min":15,"raw":50,"max":65}},"base":{"baseDamage":{"min":130,"raw":130,"max":210},"baseFireDamage":{"min":140,"raw":140,"max":225}},"rarity":"mythic"},"Voidstone Lersing":{"internalName":"Voidstone Lensing","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":685,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"archer","quest":"One Thousand Meters Under","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"spellDamage":20,"healthRegen":-20,"rawHealth":-1250,"lifeSteal":305,"manaSteal":8,"walkSpeed":20,"mainAttackRange":20},"base":{"baseDamage":{"min":130,"raw":130,"max":200},"baseEarthDamage":{"min":300,"raw":300,"max":360},"baseAirDamage":{"min":300,"raw":300,"max":360}},"rarity":"rare"},"Gold Fusion Bracelet":{"internalName":"Gold Fusion Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"lore":"This bracelet, decorated with complex ornaments, uses built-in micro-devices to boost its users elemental abilites. Though powerful, there's still a lot to improve.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawMaxMana":20,"lootBonus":12,"elementalDefence":12},"base":{"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"legendary"},"Diamond Fusion Ring":{"internalName":"Diamond Fusion Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"lore":"This mighty ring is the crown jewel amongst elemental rings. Wearing it, your knowledge is no longer limited to a few elements.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"mainAttackDamage":7,"spellDamage":7,"rawHealth":500,"thorns":10,"reflection":10,"rawMaxMana":20},"base":{"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":30},"rarity":"legendary"},"Silver Fusion Ring":{"internalName":"Silver Fusion Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"lore":"This ring, covered in colorful artifical gems, seems to awaken a strong elemental affinity in you. With some improvements to its core, it could become even better...","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"156","name":"ring.multi1"}},"identifications":{"mainAttackDamage":3,"spellDamage":3,"rawHealth":250,"thorns":5,"reflection":5,"rawMaxMana":10},"rarity":"legendary"},"Nullification":{"internalName":"Nullification","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":750,"dropRestriction":"normal","requirements":{"level":95,"classRequirement":"assassin","strength":30,"dexterity":30,"intelligence":30,"defence":30,"agility":30},"majorIds":{"Punishment":"+Punishment: Reflected damage blinds enemies for 1s and makes them 10% more vulnerable to attacks for 3s."},"powderSlots":3,"lore":"The diminutive stature of this item belies its abilities. Absorbing and expelling magical energy in precise bursts, it protects the user from all manner of attacks while punishing those who dare strike.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.basicGold"}},"identifications":{"rawDefence":40,"poison":{"min":-13000,"raw":-10000,"max":-7000},"lifeSteal":{"min":140,"raw":465,"max":605},"manaSteal":{"min":5,"raw":16,"max":21},"reflection":{"min":24,"raw":80,"max":104},"elementalDefence":{"min":46,"raw":154,"max":200}},"base":{"baseEarthDamage":{"min":55,"raw":55,"max":65},"baseThunderDamage":{"min":15,"raw":15,"max":105},"baseWaterDamage":{"min":45,"raw":45,"max":75},"baseFireDamage":{"min":35,"raw":35,"max":85},"baseAirDamage":{"min":25,"raw":25,"max":95}},"rarity":"mythic"},"Silver Fusion Bracelet":{"internalName":"Silver Fusion Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"lore":"This bracelet, decorated with simple ornaments, uses built-in micro-devices to boost its users elemental abilites. There are many upgrades to be made before it reaches its full potential.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"rawMaxMana":15,"lootBonus":8,"elementalDefence":8},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Voidstone Arpes":{"internalName":"Voidstone Arpes","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":454,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"warrior","quest":"One Thousand Meters Under","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"spellDamage":20,"healthRegen":-20,"rawHealth":-1250,"lifeSteal":305,"manaSteal":8,"walkSpeed":20,"mainAttackRange":20},"base":{"baseDamage":{"min":0,"raw":0,"max":219},"baseEarthDamage":{"min":219,"raw":219,"max":219},"baseAirDamage":{"min":219,"raw":219,"max":219}},"rarity":"rare"},"Voidstone Esbald":{"internalName":"Voidstone Esbald","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":496,"dropRestriction":"never","identified":true,"requirements":{"level":95,"classRequirement":"assassin","quest":"One Thousand Meters Under","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"spellDamage":20,"healthRegen":-20,"rawHealth":-1250,"lifeSteal":305,"manaSteal":8,"walkSpeed":20,"mainAttackRange":20},"base":{"baseDamage":{"min":137,"raw":137,"max":138},"baseEarthDamage":{"min":115,"raw":115,"max":345},"baseAirDamage":{"min":115,"raw":115,"max":345}},"rarity":"rare"},"Scrap Amalgam":{"internalName":"Scrap Amalgam","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":95,"strength":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":4,"rawMainAttackDamage":{"min":59,"raw":195,"max":254},"rawAttackSpeed":-1,"mainAttackRange":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":450,"baseEarthDefence":40,"baseThunderDefence":4,"baseWaterDefence":3,"baseFireDefence":6,"baseAirDefence":4},"rarity":"rare"},"Gold Fusion Ring":{"internalName":"Gold Fusion Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":95,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"lore":"This ring, covered in colorful artifical gems, seems to awaken a powerful elemental force in you. Though stronger than the previous model, its true potential stays sealed.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"mainAttackDamage":4,"spellDamage":4,"rawHealth":375,"thorns":7,"reflection":7,"rawMaxMana":15},"base":{"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"legendary"},"Dwindled Knowledge":{"internalName":"Dwindled Knowledge","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":95,"intelligence":80},"powderSlots":4,"identifications":{"rawIntelligence":25,"elementalDamage":{"min":-26,"raw":-20,"max":-14},"waterSpellDamage":{"min":11,"raw":35,"max":46},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":6,"raw":20,"max":26},"rawMaxMana":{"min":-84,"raw":-65,"max":-45}},"base":{"baseHealth":3125,"baseWaterDefence":100},"rarity":"rare"},"Awakening":{"internalName":"Awakening","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":603,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"archer","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"sprintRegen":{"min":6,"raw":20,"max":26},"slowEnemy":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13},"elementalDamage":{"min":2,"raw":8,"max":10}},"base":{"baseEarthDamage":{"min":45,"raw":45,"max":72},"baseThunderDamage":{"min":45,"raw":45,"max":72},"baseWaterDamage":{"min":45,"raw":45,"max":72},"baseFireDamage":{"min":45,"raw":45,"max":72},"baseAirDamage":{"min":45,"raw":45,"max":72}},"rarity":"unique"},"Hadal":{"internalName":"Hadal","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":931,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"shaman","intelligence":130},"powderSlots":3,"lore":"Carved from unknown parts of a sea creature unseen, the goliath scales of this effigy of the deep bring forth...a pull. A weight, a pressure. A terrible, crushing depth brought onto the holder, blanketing them like nostalgia. Their owner watches, part of itself acutely aware of its missing pieces.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"spellDamage":{"min":23,"raw":75,"max":98},"manaRegen":{"min":9,"raw":30,"max":39},"3rdSpellCost":{"min":65,"raw":50,"max":35},"4thSpellCost":{"min":65,"raw":50,"max":35},"rawMaxMana":{"min":15,"raw":50,"max":65}},"base":{"baseWaterDamage":{"min":1625,"raw":1625,"max":2025}},"rarity":"mythic"},"Moon Pool Circlet":{"internalName":"Moon Pool Circlet","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":94,"intelligence":65},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":3,"manaRegen":12},"base":{"baseWaterDefence":35},"rarity":"rare"},"Flashfire Gauntlet":{"internalName":"Flashfire Gauntlet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":94,"defence":40},"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":4,"healthRegenRaw":90,"thorns":6},"base":{"baseHealth":900,"baseFireDefence":40},"rarity":"set"},"Icejewel":{"internalName":"Icejewel","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":278,"dropRestriction":"never","identified":true,"requirements":{"level":94,"classRequirement":"mage","intelligence":55},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawIntelligence":8,"reflection":27,"walkSpeed":-8,"waterDamage":20,"waterDefence":25,"airDefence":-20},"base":{"baseDamage":{"min":65,"raw":65,"max":95},"baseWaterDamage":{"min":35,"raw":35,"max":75}},"rarity":"rare"},"Disintegrator":{"internalName":"Quartzite Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":618,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"archer","dexterity":35,"intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":10,"rawSpellDamage":{"min":36,"raw":120,"max":156},"manaSteal":{"min":2,"raw":6,"max":8},"weakenEnemy":{"min":2,"raw":6,"max":8},"lootBonus":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":8,"raw":25,"max":33},"airDefence":{"min":-21,"raw":-16,"max":-11}},"base":{"baseDamage":{"min":95,"raw":95,"max":165},"baseWaterDamage":{"min":165,"raw":165,"max":175}},"rarity":"unique"},"Clear Diamond Boots":{"internalName":"Clear Diamond Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94},"powderSlots":3,"base":{"baseHealth":2215},"rarity":"common"},"Undefined":{"internalName":"Undefined","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94},"powderSlots":3,"identifications":{"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"rawSpellDamage":{"min":41,"raw":135,"max":176},"healthRegenRaw":{"min":41,"raw":135,"max":176}},"base":{"baseHealth":2750},"rarity":"unique"},"Aurora":{"internalName":"Aurora","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":94,"strength":8,"dexterity":8,"intelligence":8,"defence":8,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"elementalDamage":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Lightning Edge":{"internalName":"Lightning Edge","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":536,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"assassin","dexterity":50},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawDexterity":9,"healthRegenRaw":{"min":-156,"raw":-120,"max":-84},"lifeSteal":{"min":74,"raw":245,"max":319},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":72,"raw":72,"max":120},"baseThunderDamage":{"min":9,"raw":9,"max":145}},"rarity":"unique"},"Ciel":{"internalName":"Ciel","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":260,"dropRestriction":"never","identified":true,"requirements":{"level":94,"classRequirement":"mage","dexterity":50},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawDexterity":5,"manaSteal":4,"xpBonus":10,"thunderDamage":22,"thunderDefence":8},"base":{"baseDamage":{"min":28,"raw":28,"max":60},"baseThunderDamage":{"min":45,"raw":45,"max":75}},"rarity":"unique"},"Skyfloat":{"internalName":"Skyfloat","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":94,"agility":50},"powderSlots":4,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"identifications":{"rawDefence":12,"rawAgility":8,"healthRegenRaw":230,"manaRegen":12,"walkSpeed":15,"jumpHeight":1},"base":{"baseHealth":2750,"baseEarthDefence":-50,"baseWaterDefence":-150,"baseFireDefence":50,"baseAirDefence":150},"rarity":"unique"},"Greatbird Eyrie":{"internalName":"Greatbird Eyrie","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":94,"dexterity":35,"defence":35,"agility":55},"powderSlots":3,"lore":"Sculpted by searing flames and dazzling light, in the years since the Fracturing the Greatbirds' nest has developed a blinding glow. It has both immense power and volatility, yet seems to hold a hidden strength for one who can tame its spirit.","identifications":{"rawStrength":-35,"rawAgility":5,"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":65,"raw":215,"max":280},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":5,"raw":15,"max":20},"rawThunderDamage":{"min":30,"raw":100,"max":130},"rawFireDamage":{"min":30,"raw":100,"max":130}},"base":{"baseHealth":2750,"baseEarthDefence":-75,"baseThunderDefence":75,"baseFireDefence":75,"baseAirDefence":125},"rarity":"rare"},"Phoenix Wing":{"internalName":"Phoenix Wing","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":314,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"mage","defence":55,"agility":40},"powderSlots":3,"lore":"The magically rejuvenating properties of phoenix ash were imbued into this grand stave in its creator's bid to gain immortality.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawAgility":15,"healthRegen":{"min":45,"raw":150,"max":195},"rawHealth":{"min":1080,"raw":3600,"max":4680},"poison":{"min":-10400,"raw":-8000,"max":-5600},"earthDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":0,"raw":0,"max":45},"baseFireDamage":{"min":20,"raw":20,"max":50},"baseAirDamage":{"min":60,"raw":60,"max":130}},"rarity":"legendary"},"Slayer":{"internalName":"Slayer","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"dexterity":75,"agility":60},"powderSlots":2,"lore":"Many artifacts are found to incite rage in the wearer, and wizards old and new alike conjecture as to the purpose of them. Very few increase the latent abilities of the wearers to ensure havoc, and none to such a degree as these boots.","identifications":{"rawDexterity":20,"rawMainAttackDamage":{"min":86,"raw":285,"max":371},"healthRegenRaw":{"min":-351,"raw":-270,"max":-189},"3rdSpellCost":{"min":-9,"raw":-30,"max":-39},"rawAttackSpeed":1,"walkSpeed":{"min":8,"raw":27,"max":35},"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3775,"baseWaterDefence":-100},"rarity":"mythic"},"Shard of Sky":{"internalName":"Shard of Sky","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":475,"dropRestriction":"never","identified":true,"requirements":{"level":94,"classRequirement":"assassin","agility":55},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawDexterity":6,"rawAgility":10,"walkSpeed":16,"airDamage":16,"airDefence":8},"base":{"baseDamage":{"min":80,"raw":80,"max":160},"baseAirDamage":{"min":60,"raw":60,"max":80}},"rarity":"rare"},"Relfect":{"internalName":"Relfect","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"warrior","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":495,"raw":1650,"max":2145},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":3,"raw":10,"max":13},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":30,"raw":30,"max":100},"baseEarthDamage":{"min":20,"raw":20,"max":30},"baseThunderDamage":{"min":20,"raw":20,"max":30},"baseWaterDamage":{"min":20,"raw":20,"max":30},"baseFireDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Contrail":{"internalName":"Contrail","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":94,"agility":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseWaterDefence":10,"baseFireDefence":-50,"baseAirDefence":50},"rarity":"unique"},"Sagittarius":{"internalName":"Sagittarius","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"agility":80},"powderSlots":3,"lore":"The hide of the centaur is extraordinarily magical in the right hands. It is told to allow the user to gain the swiftness of the horse, but also leaves them vulnerable to hard hitting attacks.","identifications":{"rawAgility":13,"rawMainAttackDamage":{"min":69,"raw":230,"max":299},"rawSpellDamage":{"min":53,"raw":175,"max":228},"healthRegen":{"min":-32,"raw":-25,"max":-17},"thorns":{"min":5,"raw":18,"max":23},"reflection":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":5,"raw":18,"max":23},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2900,"baseEarthDefence":-200,"baseAirDefence":140},"rarity":"legendary"},"Trench Scourer":{"internalName":"Trench Scourer","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":94,"dexterity":35,"intelligence":50},"powderSlots":4,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"manaSteal":16,"xpBonus":40,"lootBonus":40,"stealing":5,"thunderDamage":25,"waterDamage":25},"base":{"baseHealth":2450,"baseThunderDefence":100,"baseWaterDefence":130},"rarity":"rare"},"Noise Stream":{"internalName":"Noise Stream","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":262,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"mage","agility":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"lifeSteal":{"min":81,"raw":270,"max":351},"manaSteal":{"min":3,"raw":10,"max":13},"earthDamage":{"min":12,"raw":40,"max":52},"thunderDamage":{"min":12,"raw":40,"max":52},"waterDamage":{"min":12,"raw":40,"max":52},"fireDamage":{"min":12,"raw":40,"max":52},"elementalDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseEarthDamage":{"min":1,"raw":1,"max":1},"baseThunderDamage":{"min":1,"raw":1,"max":1},"baseWaterDamage":{"min":1,"raw":1,"max":1},"baseFireDamage":{"min":1,"raw":1,"max":1},"baseAirDamage":{"min":1,"raw":1,"max":160}},"rarity":"unique"},"Flummox":{"internalName":"Hero's End","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"dexterity":40,"defence":40},"powderSlots":2,"identifications":{"rawDefence":9,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"rawSpellDamage":{"min":53,"raw":175,"max":228},"healthRegen":{"min":8,"raw":25,"max":33},"lifeSteal":{"min":74,"raw":245,"max":319},"earthDamage":{"min":-45,"raw":-35,"max":-24},"thunderDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":2750,"baseEarthDefence":-100,"baseThunderDefence":115,"baseWaterDefence":-130,"baseFireDefence":115},"rarity":"rare"},"Brocach":{"internalName":"Brocach","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"strength":65},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"earthDamage":{"min":6,"raw":19,"max":25},"earthDefence":{"min":7,"raw":23,"max":30},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2600,"baseEarthDefence":175,"baseAirDefence":-150},"rarity":"unique"},"Amorphous":{"internalName":"Amorphous","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":94,"strength":70},"powderSlots":1,"identifications":{"rawStrength":5,"healthRegen":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":53,"raw":177,"max":230},"damage":{"min":-16,"raw":-12,"max":-8},"earthMainAttackDamage":{"min":9,"raw":31,"max":40},"rawAttackSpeed":1,"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2450,"baseEarthDefence":175,"baseAirDefence":-100},"rarity":"rare"},"Evapar":{"internalName":"Evapar","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":94,"agility":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawIntelligence":3,"walkSpeed":7,"waterDamage":8,"airDamage":8},"base":{"baseWaterDefence":20,"baseFireDefence":-30,"baseAirDefence":30},"rarity":"rare"},"Conference Call":{"internalName":"Conference Call","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":761,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"shaman","dexterity":47,"defence":47},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawStrength":-15,"rawDexterity":15,"poison":{"min":1620,"raw":5400,"max":7020},"lifeSteal":{"min":105,"raw":350,"max":455},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":-130,"raw":-100,"max":-70},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-91,"raw":-70,"max":-49},"airDefence":{"min":-91,"raw":-70,"max":-49}},"base":{"baseDamage":{"min":24,"raw":24,"max":30},"baseThunderDamage":{"min":72,"raw":72,"max":78},"baseFireDamage":{"min":72,"raw":72,"max":78}},"rarity":"legendary"},"Virtuoso":{"internalName":"Virtuoso","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"intelligence":50,"agility":50},"powderSlots":2,"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":59,"raw":196,"max":255},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":-42,"raw":-32,"max":-22},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2250,"baseWaterDefence":70,"baseAirDefence":70},"rarity":"rare"},"Clerical":{"internalName":"Clerical","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"intelligence":60},"powderSlots":3,"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":7,"raw":23,"max":30},"thorns":{"min":8,"raw":25,"max":33},"reflection":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":-32,"raw":-25,"max":-17},"waterDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3050,"baseThunderDefence":-110,"baseWaterDefence":195},"rarity":"rare"},"Kernel":{"internalName":"Kernel","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":94,"dexterity":55,"intelligence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawIntelligence":4,"rawSpellDamage":{"min":17,"raw":55,"max":72},"thunderDamage":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":-150,"baseWaterDefence":-60},"rarity":"rare"},"Fragment":{"internalName":"Fragment","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":322,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"mage","dexterity":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"mainAttackDamage":{"min":5,"raw":18,"max":23},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thunderDamage":{"min":4,"raw":14,"max":18},"airDamage":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-32,"raw":-25,"max":-17},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":80,"raw":80,"max":110},"baseThunderDamage":{"min":30,"raw":30,"max":90},"baseAirDamage":{"min":45,"raw":45,"max":75}},"rarity":"rare"},"Cloudwalkers":{"internalName":"Cloudwalkers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":94,"agility":50},"powderSlots":3,"dropMeta":{"name":"Ahmsord","type":"merchant","coordinates":[1017,113,-4551]},"identifications":{"spellDamage":40,"raw1stSpellCost":-3,"walkSpeed":30,"sprint":15,"xpBonus":10,"airDamage":30,"airDefence":20},"base":{"baseAirDefence":100},"rarity":"unique"},"Rodoroc's Guard":{"internalName":"Rodoroc's Guard","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":94,"defence":35,"agility":35},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawStrength":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":-8,"rawMainAttackDamage":195,"spellDamage":-10,"walkSpeed":10,"fireDefence":10,"airDefence":10},"base":{"baseHealth":3500,"baseFireDefence":100,"baseAirDefence":100},"rarity":"rare"},"Snail Boots":{"internalName":"Snail Boots","type":"armour","armourType":"boots","armourColor":"rgb(0,51,51)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":94,"strength":55,"defence":70},"powderSlots":2,"identifications":{"rawDefence":9,"healthRegen":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3350,"baseEarthDefence":55,"baseFireDefence":75},"rarity":"set"},"Tsunasweep":{"internalName":"Tsunasweep","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":500,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"assassin","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawDexterity":8,"mainAttackDamage":{"min":-21,"raw":-16,"max":-11},"spellDamage":{"min":6,"raw":20,"max":26},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-18,"raw":-14,"max":-10},"thunderDamage":{"min":5,"raw":18,"max":23},"waterDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":-26,"raw":-20,"max":-14},"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":30,"raw":30,"max":80},"baseThunderDamage":{"min":30,"raw":30,"max":120},"baseWaterDamage":{"min":50,"raw":50,"max":90}},"rarity":"rare"},"Windshear":{"internalName":"Gravesbane","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"dexterity":40,"agility":40},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":59,"raw":195,"max":254},"rawSpellDamage":{"min":51,"raw":170,"max":221},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":16,"max":21},"sprintRegen":{"min":4,"raw":12,"max":16},"stealing":{"min":2,"raw":6,"max":8},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2600,"baseEarthDefence":-30,"baseThunderDefence":90,"baseFireDefence":-120,"baseAirDefence":90},"rarity":"rare"},"Ashes":{"internalName":"Ashes","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":94,"defence":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawHealth":200,"waterDefence":-10,"airDefence":-10},"base":{"baseHealth":800,"baseWaterDefence":-50,"baseAirDefence":-50},"rarity":"unique"},"Alkatraz":{"internalName":"Alkatraz","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":681,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"warrior","strength":110},"lore":"Soul-locking magic is one outlawed by Gavellian governments, only used by the most insidious and cruel of mages. One such enchantment looms dormant in this mundane-looking maul. Continued usage of the weapon threatens to release it upon the wielder, permanently binding them to the weapon.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":40,"rawDexterity":-10,"rawIntelligence":-10,"rawDefence":-10,"rawAgility":-10,"mainAttackDamage":{"min":12,"raw":40,"max":52},"exploding":{"min":12,"raw":40,"max":52},"earthDamage":{"min":12,"raw":40,"max":52}},"base":{"baseEarthDamage":{"min":1170,"raw":1170,"max":1500}},"rarity":"mythic"},"Wind Mimic":{"internalName":"Wind Mimic","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"agility":60},"powderSlots":3,"identifications":{"rawAgility":7,"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2425,"baseFireDefence":-120,"baseAirDefence":200},"rarity":"rare"},"Spiritdancer":{"internalName":"Spiritdancer","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"intelligence":65,"defence":65},"powderSlots":2,"identifications":{"rawAgility":10,"spellDamage":{"min":6,"raw":21,"max":27},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3600,"baseEarthDefence":-100,"baseThunderDefence":-100,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"legendary"},"Cumulonimbus":{"internalName":"Cumulonimbus","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"dexterity":40,"intelligence":40,"agility":40},"powderSlots":3,"identifications":{"rawDexterity":10,"rawIntelligence":10,"rawAgility":10,"spellDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1800,"baseThunderDefence":70,"baseWaterDefence":70,"baseAirDefence":70},"rarity":"rare"},"Prosencephalon":{"internalName":"Prosencephalon","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"dexterity":70,"intelligence":70},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":-455,"raw":-350,"max":-245},"rawSpellDamage":{"min":46,"raw":154,"max":200},"healthRegen":{"min":-39,"raw":-30,"max":-21},"manaRegen":{"min":2,"raw":8,"max":10},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":9,"raw":31,"max":40},"waterDamage":{"min":9,"raw":31,"max":40},"earthDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2650,"baseEarthDefence":-120,"baseThunderDefence":120,"baseWaterDefence":120,"baseAirDefence":-120},"rarity":"legendary"},"Atlas":{"internalName":"Atlas","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":94},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"lifeSteal":{"min":42,"raw":140,"max":182},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":{"min":-10,"raw":-8,"max":-6}},"rarity":"rare"},"Flashfire Knuckle":{"internalName":"Flashfire Knuckle","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":94,"defence":40},"dropMeta":{"name":"Corrupted Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawSpellDamage":-50,"lifeSteal":90,"thorns":8},"base":{"baseHealth":450,"baseWaterDefence":-30,"baseFireDefence":10},"rarity":"set"},"Nighthawk":{"internalName":"Nighthawk","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94},"majorIds":{"Hawkeye":"+Hawkeye: Condense Arrow Storm into a tight beam. Arrows deal 10%, 1%, and 1%."},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawSpellDamage":{"min":58,"raw":192,"max":250},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"raw3rdSpellCost":1,"rawAttackSpeed":-1,"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":3000,"baseThunderDefence":-125},"rarity":"fabled"},"Petrified Horror":{"internalName":"Petrified Horror","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":679,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"archer","strength":40,"dexterity":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":13,"mainAttackDamage":{"min":-624,"raw":-480,"max":-336},"rawMainAttackDamage":{"min":315,"raw":1050,"max":1365},"spellDamage":{"min":17,"raw":58,"max":75},"manaRegen":{"min":-31,"raw":-24,"max":-17},"manaSteal":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-49,"raw":-38,"max":-27},"exploding":{"min":18,"raw":60,"max":78},"airDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseDamage":{"min":180,"raw":180,"max":230},"baseEarthDamage":{"min":245,"raw":245,"max":325},"baseThunderDamage":{"min":265,"raw":265,"max":390}},"rarity":"rare"},"Deathsplinter":{"internalName":"Deathsplinter","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":319,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"mage","strength":40,"dexterity":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawStrength":25,"rawDexterity":25,"healthRegenRaw":{"min":-650,"raw":-500,"max":-350},"poison":{"min":1905,"raw":6350,"max":8255},"lifeSteal":{"min":218,"raw":725,"max":943},"manaSteal":{"min":1,"raw":4,"max":5},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":0,"raw":0,"max":85},"baseEarthDamage":{"min":0,"raw":0,"max":170},"baseThunderDamage":{"min":0,"raw":0,"max":170}},"rarity":"unique"},"Cadence":{"internalName":"Cadence","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"strength":30,"dexterity":30,"intelligence":30,"defence":30,"agility":30},"powderSlots":4,"identifications":{"xpBonus":{"min":4,"raw":12,"max":16},"lootBonus":{"min":4,"raw":12,"max":16},"elementalDamage":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":2750,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"rare"},"Efteling":{"internalName":"Efteling","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":94,"intelligence":60,"agility":60},"powderSlots":2,"identifications":{"spellDamage":{"min":9,"raw":30,"max":39},"rawSpellDamage":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":53,"raw":175,"max":228},"manaRegen":{"min":-39,"raw":-30,"max":-21},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":16,"max":21},"waterDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2500,"baseThunderDefence":-200,"baseWaterDefence":50,"baseAirDefence":50},"rarity":"rare"},"Black Abyss":{"internalName":"Black Abyss","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":583,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"shaman","dexterity":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.thunder1"}},"identifications":{"rawStrength":75,"rawDexterity":-100,"mainAttackDamage":{"min":5,"raw":15,"max":20},"poison":{"min":1909,"raw":6363,"max":8272},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":-65,"raw":-50,"max":-35},"thunderDamage":{"min":7,"raw":22,"max":29},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseThunderDamage":{"min":690,"raw":690,"max":715}},"rarity":"unique"},"Bloodborne":{"internalName":"Bloodborne","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":94,"defence":30,"agility":30},"majorIds":{"Coagulate":"+Coagulate: Blood Connection launches you further and higher upon teleporting to a nearby totem."},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"healthRegenRaw":{"min":27,"raw":90,"max":117},"healingEfficiency":{"min":2,"raw":5,"max":7},"lifeSteal":{"min":-188,"raw":-145,"max":-101},"airSpellDamage":{"min":2,"raw":8,"max":10}},"base":{"baseThunderDefence":-35,"baseFireDefence":20,"baseAirDefence":20},"rarity":"fabled"},"Amber-Encased Fleris":{"internalName":"Amber-Encased Fleris","type":"ingredient","requirements":{"level":94,"skills":["jeweling"]},"icon":{"format":"skin","value":"7cfe0a9b6f1bba6ad8ffb3c2f687e0df9c5dce2625f061d52600bc3952fddba8"},"identifications":{"healthRegenRaw":{"min":55,"raw":55,"max":60}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":15,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-155000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":30,"agilityRequirement":0}},"Kaian Scroll":{"internalName":"Kaian Scroll","type":"ingredient","requirements":{"level":94,"skills":["scribing"]},"icon":{"format":"legacy","value":"339:0"},"identifications":{"rawDexterity":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kaian Observer","coords":[1087,159,-4693,0]},{"name":"Kaian Watcher","coords":[1087,160,-4680,7]},{"name":"Kaian Sorcerer","coords":[1066,159,-4693,0]}]},"Infernal Flesh":{"internalName":"Infernal Flesh","type":"ingredient","requirements":{"level":94,"skills":["cooking"]},"icon":{"format":"legacy","value":"363:0"},"identifications":{"rawHealth":{"min":400,"raw":400,"max":500},"fireDamage":{"min":6,"raw":6,"max":8},"fireDefence":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-550,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Troglodyte Mauler","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Runt","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Champion","coords":[1222,18,-5520,16]},{"name":"Troglodyte Scourge","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Wild Hound","coords":[1337,160,-5152,20]},{"name":"Savage Hound","coords":[1337,160,-5152,20]},{"name":"Charring Minotaur","coords":[[1461,4,-5240,20],[1234,149,-5345,25],[1295,166,-5369,25],[1268,141,-5293,16],[1280,150,-5230,16],[1384,139,-5104,16],[1441,143,-5170,8],[1441,143,-5170,8],[1526,148,-5116,12],[1515,148,-5092,12],[1541,149,-5087,16],[1571,152,-5061,16],[1571,152,-5061,16],[1571,152,-5061,16],[1251,164,-5150,16],[1268,159,-5136,16]]},{"name":"Charring Minotaur","coords":null},{"name":"Carrion Spider","coords":[[1343,9,-5210,8],[1386,9,-5196,8],[1327,7,-5381,8],[1385,7,-5433,8],[1484,29,-5519,8],[1471,29,-5538,8],[1435,24,-5530,8],[1337,4,-5148,5],[1323,2,-5153,5],[1314,10,-5245,10],[1425,7,-5201,10],[1476,73,-5571,10]]},{"name":"Pyroclastic Hydra","coords":null}]},"Ashstained Basalt":{"internalName":"Ashstained Basalt","type":"ingredient","requirements":{"level":94,"skills":["woodworking"]},"icon":{"format":"legacy","value":"13:0"},"identifications":{"rawMainAttackDamage":{"min":-70,"raw":-70,"max":-70},"rawSpellDamage":{"min":-55,"raw":-55,"max":-55}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":80000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]},{"name":"Pyroclastic Hydra","coords":null}]},"Charging Flame":{"internalName":"Charging Flame","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":94,"classRequirement":"warrior","intelligence":40,"defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawHealth":{"min":-1560,"raw":-1200,"max":-840},"manaRegen":{"min":2,"raw":6,"max":8},"raw2ndSpellCost":{"min":-4,"raw":-12,"max":-16},"exploding":{"min":7,"raw":24,"max":31},"waterDamage":{"min":8,"raw":28,"max":36},"fireDamage":{"min":8,"raw":28,"max":36},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":20,"raw":20,"max":40},"baseWaterDamage":{"min":40,"raw":40,"max":120},"baseFireDamage":{"min":20,"raw":20,"max":140}},"rarity":"rare"},"Shimmersight":{"internalName":"Shimmersight","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93},"powderSlots":3,"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"manaRegen":{"min":2,"raw":8,"max":10},"xpBonus":{"min":-13,"raw":-10,"max":-7},"lootBonus":{"min":-39,"raw":-30,"max":-21},"thunderDefence":{"min":2,"raw":8,"max":10},"waterDefence":{"min":2,"raw":8,"max":10},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2700},"rarity":"rare"},"Conduit of Spirit":{"internalName":"Conduit of Spirit","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93,"agility":105},"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"manaRegen":6,"manaSteal":8,"raw3rdSpellCost":-4,"raw4thSpellCost":-4,"reflection":25,"airDamage":40},"base":{"baseHealth":2800,"baseAirDefence":150},"rarity":"legendary"},"Clear Diamond Helmet":{"internalName":"Clear Diamond Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93},"powderSlots":3,"base":{"baseHealth":2155},"rarity":"common"},"Flameshot Hilt":{"internalName":"Flameshot Hilt","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":612,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","defence":60},"lore":"Found abandoned in the ruins of the Doguns, these odd weapons are designed to shoot jets of sheer flame instead of hitting enemies traditionally. They are in terrible disrepair, and none know how to fix them.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":20,"mainAttackDamage":{"min":5,"raw":15,"max":20},"raw3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"exploding":{"min":14,"raw":45,"max":59},"waterDamage":{"min":-195,"raw":-150,"max":-105},"fireDamage":{"min":8,"raw":25,"max":33},"fireDefence":{"min":11,"raw":35,"max":46}},"base":{"baseFireDamage":{"min":1100,"raw":1100,"max":1300}},"rarity":"legendary"},"Nychthemeron":{"internalName":"Breakdown","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"strength":65,"dexterity":65},"powderSlots":3,"identifications":{"rawStrength":10,"rawDexterity":10,"mainAttackDamage":{"min":21,"raw":70,"max":91},"spellDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":57,"raw":190,"max":247},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2375,"baseEarthDefence":-50,"baseThunderDefence":-50,"baseWaterDefence":-50},"rarity":"unique"},"Crescent":{"internalName":"Crescent","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":525,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer","intelligence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":10,"rawAgility":6,"manaRegen":{"min":3,"raw":9,"max":12},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":9,"raw":31,"max":40},"airDefence":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":105,"raw":105,"max":150},"baseWaterDamage":{"min":120,"raw":120,"max":135}},"rarity":"unique"},"Nauticals":{"internalName":"Nauticals","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":608,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93,"classRequirement":"shaman","dexterity":45,"intelligence":60},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawDexterity":15,"rawIntelligence":15,"mainAttackDamage":-25,"spellDamage":-25,"manaRegen":18,"manaSteal":12,"walkSpeed":-10,"waterDamage":30},"base":{"baseDamage":{"min":75,"raw":75,"max":77},"baseThunderDamage":{"min":100,"raw":100,"max":140}},"rarity":"rare"},"Rainstorm":{"internalName":"Rainstorm","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":278,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage","dexterity":35,"intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawDexterity":8,"rawIntelligence":5,"spellDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":7,"raw":22,"max":29},"airDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":65,"raw":65,"max":95},"baseWaterDamage":{"min":40,"raw":40,"max":70}},"rarity":"unique"},"Fishscale":{"internalName":"Fishscale","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"intelligence":40,"defence":40},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":53,"raw":175,"max":228},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":7,"max":9},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-39,"raw":-30,"max":-21},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2525,"baseThunderDefence":-180,"baseWaterDefence":80,"baseFireDefence":80},"rarity":"unique"},"Freedom":{"internalName":"Freedom","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":927,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer","strength":40,"dexterity":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":4,"lore":"Freedom of soul, mind, and body are forced upon all those that this bow's arrows impact, and freedom of caring from the atrocities that such a dangerous weapon can inflict is given to all those that hold it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawAgility":30,"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"rawSpellDamage":{"min":32,"raw":105,"max":137},"rawHealth":{"min":281,"raw":935,"max":1216},"manaRegen":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":75,"raw":75,"max":105},"baseThunderDamage":{"min":35,"raw":35,"max":145},"baseWaterDamage":{"min":55,"raw":55,"max":125},"baseFireDamage":{"min":65,"raw":65,"max":115},"baseAirDamage":{"min":45,"raw":45,"max":135}},"rarity":"mythic"},"Whimsy":{"internalName":"Whimsy","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":292,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage","intelligence":40,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawIntelligence":13,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":-4,"raw":-3,"max":-2},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":8,"raw":25,"max":33},"stealing":{"min":1,"raw":2,"max":3},"waterDamage":{"min":7,"raw":22,"max":29}},"base":{"baseDamage":{"min":1,"raw":1,"max":35},"baseAirDamage":{"min":45,"raw":45,"max":55}},"rarity":"rare"},"Valence":{"internalName":"Valence","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":93,"dexterity":55},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"manaRegen":{"min":-12,"raw":-9,"max":-6},"2ndSpellCost":{"min":-4,"raw":-14,"max":-18},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseThunderDefence":70},"rarity":"legendary"},"Feedback":{"internalName":"Feedback","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"warrior","dexterity":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawDexterity":17,"healthRegenRaw":{"min":-117,"raw":-90,"max":-63},"reflection":{"min":8,"raw":25,"max":33},"earthDamage":{"min":-21,"raw":-16,"max":-11},"thunderDamage":{"min":5,"raw":16,"max":21},"waterDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":60,"raw":60,"max":100},"baseThunderDamage":{"min":40,"raw":40,"max":100}},"rarity":"unique"},"Thrunda Ripsaw":{"internalName":"Thrunda Ripsaw","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":606,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","dexterity":80},"powderSlots":2,"lore":"Combined power of inscribed Uth runes and consuming fury combine to create a deadly aura, as this weapon is merely a spiritual extension of the user's desire for utter cataclysm.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"mainAttackDamage":{"min":8,"raw":25,"max":33},"rawSpellDamage":{"min":47,"raw":155,"max":202},"healthRegen":{"min":-43,"raw":-33,"max":-23},"lifeSteal":{"min":101,"raw":335,"max":436},"thunderDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-39,"raw":-30,"max":-21},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDamage":{"min":100,"raw":100,"max":385}},"rarity":"legendary"},"Impeccable Diorite Spear":{"internalName":"Impeccable Diorite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":281,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":310,"raw":310,"max":367}},"rarity":"common"},"Foreboding":{"internalName":"Foreboding","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":93,"dexterity":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":6,"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDefence":50},"rarity":"rare"},"Impeccable Diorite Dagger":{"internalName":"Impeccable Diorite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":353,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":158,"raw":158,"max":185}},"rarity":"common"},"Dark Channeler":{"internalName":"Dark Channeler","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"dexterity":45,"intelligence":45},"powderSlots":2,"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"rawSpellDamage":{"min":44,"raw":148,"max":192},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":5,"raw":16,"max":21},"waterDamage":{"min":5,"raw":16,"max":21},"earthDefence":{"min":-52,"raw":-40,"max":-28},"airDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":2225,"baseEarthDefence":-100,"baseThunderDefence":90,"baseWaterDefence":90,"baseAirDefence":-100},"rarity":"rare"},"Silt of the Seafloor":{"internalName":"Silt of the Seafloor","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93,"strength":30,"intelligence":40},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":8,"rawIntelligence":15,"manaRegen":12,"manaSteal":8,"thorns":35,"reflection":30,"walkSpeed":-12,"earthDefence":40,"waterDefence":30,"fireDefence":40},"base":{"baseHealth":3250,"baseEarthDefence":200,"baseThunderDefence":-70,"baseWaterDefence":240,"baseAirDefence":-70},"rarity":"rare"},"Zephra Shredder":{"internalName":"Zephra Shredder","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":499,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"warrior","agility":80},"powderSlots":2,"lore":"Combined power of inscribed Uth runes and sheer rage intertwine to create a fearsome sight, as this weapon is merely a spiritual extension of the user's desire for total destruction.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":-227,"raw":-175,"max":-122},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":9,"raw":30,"max":39},"airDamage":{"min":8,"raw":25,"max":33},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseAirDamage":{"min":62,"raw":62,"max":260}},"rarity":"legendary"},"Boreal":{"internalName":"Boreal","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"defence":75,"agility":65},"powderSlots":3,"lore":"The last known crafts of Theorick before his fall in battle were pieces of armour crafted out of pure ice, all of which have melted save for these shimmering boots. The coldest gales and most suffocating heat nurture and repair the wearer instead of being stifling or deadly.","identifications":{"healthRegen":{"min":30,"raw":100,"max":130},"healthRegenRaw":{"min":81,"raw":269,"max":350},"manaRegen":{"min":3,"raw":10,"max":13},"reflection":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":8,"raw":25,"max":33},"earthDamage":{"min":-97,"raw":-75,"max":-52},"thunderDamage":{"min":-97,"raw":-75,"max":-52},"fireDefence":{"min":15,"raw":50,"max":65},"airDefence":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":5000,"baseFireDefence":250,"baseAirDefence":375},"rarity":"mythic"},"Esclavage":{"internalName":"Esclavage","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":93,"strength":15,"defence":45},"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":5,"rawDexterity":-1,"rawDefence":5,"walkSpeed":{"min":-5,"raw":-4,"max":-3},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":550},"rarity":"unique"},"Magmarizer":{"internalName":"Magmarizer","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":443,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","strength":30,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":36,"raw":120,"max":156},"rawHealth":{"min":960,"raw":3200,"max":4160},"thorns":{"min":8,"raw":25,"max":33},"earthDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":60,"raw":60,"max":110},"baseEarthDamage":{"min":60,"raw":60,"max":70},"baseFireDamage":{"min":60,"raw":60,"max":70}},"rarity":"unique"},"Ardiente":{"internalName":"Ardiente","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"defence":60},"identifications":{"rawDefence":7,"spellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":1050,"raw":3500,"max":4550},"walkSpeed":{"min":3,"raw":9,"max":12},"waterDamage":{"min":-52,"raw":-40,"max":-28},"fireDamage":{"min":8,"raw":27,"max":35},"waterDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":2600,"baseWaterDefence":-120,"baseFireDefence":-80},"rarity":"unique"},"Snail Helm":{"internalName":"Snail Helm","type":"armour","armourType":"helmet","armourColor":"rgb(0,51,51)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":93,"strength":50,"defence":60},"powderSlots":2,"identifications":{"rawDefence":9,"healthRegenRaw":{"min":51,"raw":170,"max":221},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3125,"baseEarthDefence":45,"baseFireDefence":60},"rarity":"set"},"H-209 Miniature Defibrillator":{"internalName":"H-209 Miniature Defibrillator","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":93,"dexterity":70},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":5,"mainAttackDamage":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":-162,"raw":-125,"max":-87},"rawAttackSpeed":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":-540,"baseThunderDefence":20,"baseWaterDefence":-40},"rarity":"legendary"},"Sine":{"internalName":"Sine","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93,"dexterity":75,"intelligence":75},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"identifications":{"rawDexterity":15,"rawIntelligence":15,"manaSteal":12,"thunderDamage":15,"waterDamage":15,"airDefence":-45},"base":{"baseHealth":2550,"baseThunderDefence":75,"baseWaterDefence":60},"rarity":"rare"},"Impeccable Diorite Relik":{"internalName":"Impeccable Diorite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":422,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":275,"raw":275,"max":287}},"rarity":"common"},"Omega":{"internalName":"Omega","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":636,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","strength":40,"dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawIntelligence":-11,"rawDefence":-11,"rawAgility":-11,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":45,"raw":150,"max":195},"spellDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":35,"raw":115,"max":150},"healthRegen":{"min":-52,"raw":-40,"max":-28},"exploding":{"min":-65,"raw":-50,"max":-35}},"base":{"baseEarthDamage":{"min":32,"raw":32,"max":116},"baseThunderDamage":{"min":32,"raw":32,"max":116}},"rarity":"rare"},"Olympic":{"internalName":"Olympic","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":850,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"shaman","agility":105},"powderSlots":3,"lore":"When one has climbed the highest mountain, traversed the vastest plain, what is left to conquer? One challenges the human limit, and attempts to push beyond what any has accomplished before. Sculpted in honor of the first champion, this idol emboldens you to best your greatest opponent: yourself.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawAgility":25,"raw1stSpellCost":{"min":-3,"raw":-10,"max":-13},"raw2ndSpellCost":{"min":-3,"raw":-10,"max":-13},"walkSpeed":{"min":11,"raw":35,"max":46},"jumpHeight":{"min":2,"raw":6,"max":8},"airDamage":{"min":6,"raw":20,"max":26},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseAirDamage":{"min":325,"raw":325,"max":355}},"rarity":"mythic"},"Ataraxy":{"internalName":"Ataraxy","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":93,"strength":30,"intelligence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"3rdSpellCost":{"min":9,"raw":7,"max":5},"rawAttackSpeed":{"min":-3,"raw":-2,"max":-1}},"base":{"baseEarthDefence":25,"baseThunderDefence":25},"rarity":"unique"},"Synapse":{"internalName":"Synapse","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":93,"strength":35,"agility":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawMainAttackDamage":{"min":-156,"raw":-120,"max":-84},"rawSpellDamage":{"min":36,"raw":120,"max":156},"healthRegen":{"min":-19,"raw":-15,"max":-10},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseEarthDefence":-60,"baseAirDefence":-60},"rarity":"legendary"},"Sekaisin":{"internalName":"Sekaisin","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":430,"dropRestriction":"never","identified":true,"requirements":{"level":93,"classRequirement":"warrior","dexterity":40,"defence":25},"powderSlots":1,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDexterity":10,"healthRegen":-20,"rawHealth":-1100,"lifeSteal":260,"thunderDamage":60},"base":{"baseDamage":{"min":0,"raw":0,"max":100},"baseFireDamage":{"min":0,"raw":0,"max":100}},"rarity":"unique"},"Diamond Dust":{"internalName":"Diamond Dust","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93},"powderSlots":2,"identifications":{"reflection":{"min":6,"raw":19,"max":25},"xpBonus":{"min":6,"raw":19,"max":25},"lootBonus":{"min":10,"raw":34,"max":44},"elementalDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseHealth":2375},"rarity":"rare"},"Inferna Flamewreath":{"internalName":"Inferna Flamewreath","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":700,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"shaman","defence":80},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"healingEfficiency":{"min":-26,"raw":-20,"max":-14},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseFireDamage":{"min":330,"raw":330,"max":350}},"rarity":"legendary"},"Caesura":{"internalName":"Caesura","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"strength":45,"dexterity":60,"intelligence":30},"powderSlots":2,"identifications":{"rawStrength":10,"rawIntelligence":15,"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":69,"raw":231,"max":300},"manaRegen":{"min":-23,"raw":-18,"max":-13},"manaSteal":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2450,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":-250},"rarity":"unique"},"Stratus":{"internalName":"Stratus","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":93,"intelligence":60,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawAgility":6,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":-450},"rarity":"rare"},"Ramhoof":{"internalName":"Ramhoof","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":93,"strength":30,"agility":25},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawDefence":7,"mainAttackDamage":7,"rawMainAttackDamage":180,"lifeSteal":190,"thorns":15,"walkSpeed":15},"base":{"baseHealth":2675,"baseFireDefence":-90},"rarity":"unique"},"Odin":{"internalName":"Odin","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":508,"dropRestriction":"never","identified":true,"requirements":{"level":93,"classRequirement":"assassin","dexterity":35,"agility":35},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDexterity":6,"rawAgility":4,"mainAttackDamage":10,"spellDamage":8,"earthDamage":-30,"thunderDamage":8,"airDamage":12},"base":{"baseDamage":{"min":21,"raw":21,"max":51},"baseThunderDamage":{"min":40,"raw":40,"max":88},"baseAirDamage":{"min":40,"raw":40,"max":88}},"rarity":"unique"},"Resplendence":{"internalName":"Resplendence","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":93,"dexterity":55},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"lifeSteal":{"min":38,"raw":125,"max":163},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":-16,"raw":-12,"max":-8},"elementalDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":425},"rarity":"legendary"},"Vacuum":{"internalName":"Vacuum","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"strength":45,"intelligence":55},"identifications":{"rawSpellDamage":{"min":47,"raw":155,"max":202},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":2475,"baseEarthDefence":70,"baseWaterDefence":60,"baseAirDefence":-130},"rarity":"unique"},"Calming Torc":{"internalName":"Calming Torc","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":93,"intelligence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":5,"waterDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":260,"baseThunderDefence":-60,"baseWaterDefence":60},"rarity":"unique"},"Cinders":{"internalName":"Cinders","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":93,"defence":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"exploding":5,"fireDamage":9,"waterDefence":-7},"base":{"baseHealth":675,"baseWaterDefence":-70,"baseFireDefence":50},"rarity":"unique"},"Impeccable Diorite Bow":{"internalName":"Impeccable Diorite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":427,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":485,"raw":485,"max":543}},"rarity":"common"},"Pride":{"internalName":"Pride","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":93,"strength":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":5,"mainAttackDamage":8,"xpBonus":5},"base":{"baseEarthDefence":20},"rarity":"rare"},"Guardian":{"internalName":"Guardian","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":494,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"warrior","defence":110},"majorIds":{"Guardian":"+Guardian: 35% of damage taken by nearby allies is redirected to you."},"powderSlots":3,"lore":"A vow of protection hangs over this spear, now inhabited by the spirit of a legendary heroine. Even simply a glimpse of the burning blade will instill a feeling of protection and security, and that feeling will hold true if one is brave enough to wield it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":20,"healthRegenRaw":{"min":176,"raw":585,"max":761},"rawHealth":{"min":1800,"raw":6000,"max":7800},"manaRegen":{"min":3,"raw":9,"max":12},"thorns":{"min":8,"raw":25,"max":33},"earthDefence":{"min":6,"raw":20,"max":26},"waterDefence":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":40,"raw":40,"max":90},"baseFireDamage":{"min":145,"raw":145,"max":205}},"rarity":"mythic"},"Gibyeong":{"internalName":"Gibyeong","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","intelligence":40,"defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawIntelligence":8,"rawDefence":9,"spellDamage":{"min":2,"raw":7,"max":9},"healthRegenRaw":{"min":42,"raw":140,"max":182},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":4,"raw":13,"max":17},"earthDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":70,"raw":70,"max":100},"baseWaterDamage":{"min":75,"raw":75,"max":115}},"rarity":"rare"},"Purgatory":{"internalName":"Purgatory","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":278,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage","dexterity":35,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"spellDamage":{"min":5,"raw":18,"max":23},"healthRegen":{"min":-30,"raw":-23,"max":-16},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thorns":{"min":3,"raw":11,"max":14},"exploding":{"min":7,"raw":23,"max":30},"thunderDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":5,"raw":18,"max":23}},"base":{"baseThunderDamage":{"min":100,"raw":100,"max":235},"baseFireDamage":{"min":150,"raw":150,"max":185}},"rarity":"unique"},"The Crossing":{"internalName":"The Crossing","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93},"powderSlots":2,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawSpellDamage":500,"manaRegen":-12,"healingEfficiency":-20},"base":{"baseHealth":3000,"baseEarthDefence":-75,"baseThunderDefence":-75},"rarity":"legendary"},"Doubt":{"internalName":"Doubt","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":602,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer","strength":35,"defence":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":-71,"raw":-55,"max":-38},"knockback":{"min":12,"raw":40,"max":52},"fireDamage":{"min":12,"raw":40,"max":52},"elementalDefence":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":530,"raw":530,"max":600},"baseEarthDamage":{"min":560,"raw":560,"max":670}},"rarity":"rare"},"Coral Ring":{"internalName":"Coral Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawDexterity":-4,"healthRegen":10,"poison":-1000,"manaRegen":6},"base":{"baseHealth":800,"baseWaterDefence":50},"rarity":"rare"},"Nepta Floodbringer":{"internalName":"Nepta Floodbringer","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":344,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage","intelligence":80},"powderSlots":2,"lore":"Combined power of inscribed Uth runes and immense wisdom meld to create a commanding aura, as this weapon is merely a spiritual extension of the user's desire for dominion over all.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawIntelligence":13,"spellDamage":{"min":6,"raw":20,"max":26},"rawHealth":{"min":-2275,"raw":-1750,"max":-1225},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-130,"raw":-100,"max":-70},"waterDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseWaterDamage":{"min":70,"raw":70,"max":90}},"rarity":"legendary"},"Cataract":{"internalName":"Cataract","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":416,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"assassin","intelligence":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawDexterity":-30,"rawIntelligence":10,"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":-169,"raw":-130,"max":-91},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":-1,"waterDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseWaterDamage":{"min":0,"raw":0,"max":1630}},"rarity":"unique"},"Crater Print":{"internalName":"Crater Print","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"strength":70},"powderSlots":3,"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":77,"raw":255,"max":332},"spellDamage":{"min":6,"raw":19,"max":25},"healthRegenRaw":{"min":47,"raw":155,"max":202},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2525,"baseEarthDefence":120,"baseWaterDefence":-80,"baseAirDefence":-120},"rarity":"legendary"},"Gigabyte":{"internalName":"Gigabyte","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93},"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"healthRegenRaw":64,"manaRegen":-4,"thorns":8,"walkSpeed":8},"base":{"baseHealth":-512},"rarity":"legendary"},"Nightvest":{"internalName":"NightVest","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"agility":50},"powderSlots":2,"identifications":{"rawDefence":-15,"rawAgility":20,"walkSpeed":{"min":5,"raw":15,"max":20},"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2150,"baseFireDefence":-100,"baseAirDefence":175},"rarity":"unique"},"Leo":{"internalName":"Leo","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93},"powderSlots":1,"lore":"This thick skinned jacket, imbued with the courage of a thousand lion hearts, will grant the user massive protection from all who target them.","identifications":{"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":-39,"raw":-30,"max":-21},"healthRegenRaw":{"min":60,"raw":200,"max":260},"rawHealth":{"min":420,"raw":1400,"max":1820},"fireDamage":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":4200,"baseWaterDefence":-200,"baseFireDefence":200},"rarity":"legendary"},"Peaceful Rest":{"internalName":"Peaceful Rest","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":327,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":93,"classRequirement":"mage","intelligence":55,"defence":45},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawIntelligence":8,"spellDamage":35,"healingEfficiency":14,"rawAttackSpeed":-30,"walkSpeed":-25,"thunderDamage":-30,"waterDamage":30,"waterDefence":15,"fireDefence":15,"elementalDefence":25},"base":{"baseDamage":{"min":16,"raw":16,"max":24},"baseFireDamage":{"min":52,"raw":52,"max":60}},"rarity":"legendary"},"Impeccable Diorite Wand":{"internalName":"Impeccable Diorite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":210,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":125,"raw":125,"max":155}},"rarity":"common"},"Riverflow":{"internalName":"Riverflow","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"intelligence":95},"powderSlots":2,"identifications":{"manaRegen":{"min":7,"raw":24,"max":31},"reflection":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":7,"max":9},"rawMaxMana":{"min":15,"raw":50,"max":65},"thunderDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3000,"baseThunderDefence":-100,"baseWaterDefence":200},"rarity":"rare"},"Pain Cycle":{"internalName":"Pain Cycle","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":93,"agility":70},"majorIds":{"Gruesome Knots":"+Gruesome Knots: Bleeding and Twisted Tether deal double damage, but Bleeding duration is reduced."},"lore":"Every ounce of your suffering must be made worth it. Otherwise, what was the point of it all?","dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawAgility":7,"rawMainAttackDamage":{"min":80,"raw":265,"max":345},"lifeSteal":{"min":-344,"raw":-265,"max":-185},"healingEfficiency":{"min":5,"raw":17,"max":22},"rawAirSpellDamage":{"min":57,"raw":190,"max":247},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3775,"baseEarthDefence":-90,"baseThunderDefence":-90,"baseWaterDefence":-90},"rarity":"fabled"},"Shellcarve":{"internalName":"Shellcarve","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":666,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"shaman","strength":42,"intelligence":42},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawDexterity":-9,"rawDefence":-9,"rawAgility":-9,"healthRegenRaw":{"min":-364,"raw":-280,"max":-196},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6},"earthDamage":{"min":8,"raw":28,"max":36},"waterDamage":{"min":8,"raw":28,"max":36}},"base":{"baseDamage":{"min":45,"raw":45,"max":48},"baseEarthDamage":{"min":100,"raw":100,"max":120},"baseWaterDamage":{"min":100,"raw":100,"max":120}},"rarity":"rare"},"Tinderbox":{"internalName":"Tinderbox","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":93,"defence":40,"agility":40},"powderSlots":3,"identifications":{"rawIntelligence":-30,"rawAgility":8,"manaSteal":{"min":1,"raw":4,"max":5},"1stSpellCost":{"min":-4,"raw":-13,"max":-17},"3rdSpellCost":{"min":-3,"raw":-9,"max":-12},"4thSpellCost":{"min":-4,"raw":-13,"max":-17},"walkSpeed":{"min":3,"raw":10,"max":13},"exploding":{"min":8,"raw":25,"max":33},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":3200,"baseWaterDefence":-110,"baseFireDefence":110},"rarity":"rare"},"Storm Surge":{"internalName":"Storm Surge","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":332,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"mage","dexterity":35,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawSpellDamage":{"min":44,"raw":146,"max":190},"healthRegen":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":-1170,"raw":-900,"max":-630},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":-1,"thunderDamage":{"min":5,"raw":18,"max":23},"waterDamage":{"min":5,"raw":18,"max":23},"earthDefence":{"min":-92,"raw":-71,"max":-50},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":420},"baseWaterDamage":{"min":50,"raw":50,"max":330}},"rarity":"rare"},"Prized Feather":{"internalName":"Prized Feather","type":"ingredient","requirements":{"level":93,"skills":["armouring"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":4},"airDamage":{"min":11,"raw":11,"max":14}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-94000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20}},"Searing Heartwood":{"internalName":"Searing Heartwood","type":"ingredient","requirements":{"level":93,"skills":["armouring"]},"icon":{"format":"skin","value":"8940cfce4dbd0d8a0b17803c5eb6dbee41392793a456b5e5bf69433497981070"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4},"rawAttackSpeed":{"min":-1,"raw":-1,"max":-1},"mainAttackDamage":{"min":13,"raw":13,"max":16},"rawHealth":{"min":-245,"raw":-245,"max":-220}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-158000,"strengthRequirement":15,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-40,"agilityRequirement":0}},"Soulbound Cinders":{"internalName":"Soulbound Cinders","type":"ingredient","requirements":{"level":93,"skills":["scribing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"manaSteal":{"min":4,"raw":4,"max":4},"fireDamage":{"min":6,"raw":6,"max":8},"rawSpellDamage":{"min":45,"raw":45,"max":55}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Draconic Spirit","coords":[[1443,25,-5536,6],[1482,31,-5540,6],[1464,29,-5552,6],[1465,71,-5594,9],[1478,73,-5572,9],[1508,32,-5578,19],[1508,32,-5578,19]]},{"name":"Draconic Aspect","coords":[[1443,25,-5536,6],[1482,31,-5540,6],[1464,29,-5552,6],[1465,71,-5594,9],[1478,73,-5572,9],[1508,32,-5578,19],[1508,32,-5578,19]]},{"name":"Smelted Soul","coords":[[1232,11,-5408,8],[1223,16,-5394,8]]},{"name":"Flaming Wisp","coords":[[1227,15,-5399,10],[1346,1,-5410,20]]},{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]}]},"Serpent's Fang":{"internalName":"Serpent's Fang","type":"ingredient","requirements":{"level":93,"skills":["weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"198:0"},"identifications":{"poison":{"min":3200,"raw":3200,"max":3500},"rawMainAttackDamage":{"min":70,"raw":70,"max":80}},"tier":3,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Luu Luu Snake","coords":[[-1585,37,-3421,10],[-1546,100,-3304,10],[-1216,57,-3252,25],[-1246,88,-3240,25],[-1293,73,-3223,25],[-1593,40,-3259,25],[-1578,46,-3291,25]]}]},"Roasted Tissue":{"internalName":"Roasted Tissue","type":"ingredient","requirements":{"level":93,"skills":["tailoring","cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"fireDamage":{"min":3,"raw":3,"max":5},"mainAttackDamage":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-380,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]},{"name":"Pyroclastic Hydra","coords":null}]},"Fathomflooded Flesh":{"internalName":"Fathomflooded Flesh","type":"ingredient","requirements":{"level":93,"skills":["cooking"]},"icon":{"format":"legacy","value":"22:0"},"identifications":{"rawStrength":{"min":-3,"raw":-3,"max":-3},"rawDexterity":{"min":-3,"raw":-3,"max":-3},"rawIntelligence":{"min":10,"raw":10,"max":10},"rawDefence":{"min":-3,"raw":-3,"max":-3},"rawAgility":{"min":-3,"raw":-3,"max":-3}},"tier":3,"consumableOnlyIDs":{"duration":-820,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Missile":{"internalName":"Hornet","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":555,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer","defence":35,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawMainAttackDamage":{"min":29,"raw":95,"max":124},"lifeSteal":{"min":-455,"raw":-350,"max":-245},"walkSpeed":{"min":8,"raw":25,"max":33},"exploding":{"min":15,"raw":50,"max":65},"mainAttackRange":{"min":9,"raw":31,"max":40},"fireDamage":{"min":15,"raw":50,"max":65}},"base":{"baseDamage":{"min":43,"raw":43,"max":55},"baseAirDamage":{"min":80,"raw":80,"max":80}},"rarity":"unique"},"Alka Cometflinger":{"internalName":"Alka Cometflinger","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":772,"dropRestriction":"normal","requirements":{"level":93,"classRequirement":"archer","strength":80},"powderSlots":2,"lore":"Combined power of inscribed Uth runes and raw potential fuse to create an imposing presence, as this weapon is merely a spiritual extension of the user's desire for complete obliteration.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":13,"mainAttackDamage":{"min":23,"raw":77,"max":100},"rawSpellDamage":{"min":-227,"raw":-175,"max":-122},"exploding":{"min":9,"raw":31,"max":40},"mainAttackRange":{"min":11,"raw":35,"max":46},"knockback":{"min":18,"raw":60,"max":78},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseEarthDamage":{"min":425,"raw":425,"max":605}},"rarity":"legendary"},"Packet":{"internalName":"Packet","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":538,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"archer","agility":50},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAgility":5,"rawAirDamage":200,"rawAttackSpeed":2,"walkSpeed":10,"exploding":100,"airDamage":20},"base":{"baseDamage":{"min":40,"raw":40,"max":140},"baseAirDamage":{"min":125,"raw":125,"max":125}},"rarity":"rare"},"Stricken Bolt":{"internalName":"Stricken Bolt","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":556,"dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"archer","dexterity":45},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawMainAttackDamage":810,"manaSteal":8,"thunderMainAttackDamage":40,"waterDefence":-10},"base":{"baseDamage":{"min":325,"raw":325,"max":1015}},"rarity":"unique"},"Unravel":{"internalName":"Unravel","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"agility":80},"powderSlots":3,"identifications":{"rawAgility":9,"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"rawSpellDamage":{"min":67,"raw":222,"max":289},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":5,"raw":18,"max":23},"airDamage":{"min":8,"raw":27,"max":35}},"base":{"baseHealth":3000,"baseFireDefence":-110,"baseAirDefence":70},"rarity":"legendary"},"Gaze from the Snowbank":{"internalName":"Gaze from the Snowbank","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"strength":75},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawMainAttackDamage":700,"lifeSteal":-240,"manaSteal":16,"rawAttackSpeed":-2,"walkSpeed":-12,"stealing":8,"earthDamage":40},"base":{"baseHealth":3200,"baseWaterDefence":-50,"baseAirDefence":-75},"rarity":"legendary"},"Mountaintop":{"internalName":"Mountaintop","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":35,"agility":15},"powderSlots":2,"identifications":{"rawDexterity":10,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":2,"raw":5,"max":7},"fireDamage":{"min":-16,"raw":-12,"max":-8},"airDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2600,"baseEarthDefence":150,"baseThunderDefence":-150,"baseWaterDefence":-70,"baseAirDefence":70},"rarity":"unique"},"Tidal":{"internalName":"Tidal","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":92,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":4,"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":50},"rarity":"unique"},"Daredevil":{"internalName":"Daredevil","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":92,"agility":45},"majorIds":{"Lunge":"+Lunge: Hop and Leap's horizontal velocity is greatly increased."},"lore":"The mangled body found days too late apparently thought this necklace would let them traverse between geysers into the Upper Heights.","dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"raw2ndSpellCost":{"min":8,"raw":6,"max":4},"walkSpeed":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":-333,"baseAirDefence":50},"rarity":"fabled"},"Ambiguity":{"internalName":"Ambiguity","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":92,"defence":45,"agility":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawAgility":5,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":21,"raw":70,"max":91},"rawHealth":{"min":180,"raw":600,"max":780},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-180,"baseWaterDefence":-50,"baseFireDefence":40,"baseAirDefence":40},"rarity":"rare"},"Luminiferous Aether":{"internalName":"Luminiferous Aether","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"dexterity":60},"powderSlots":2,"identifications":{"rawDexterity":10,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"healthRegenRaw":{"min":38,"raw":125,"max":163},"rawAttackSpeed":1,"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1950,"baseEarthDefence":-110,"baseThunderDefence":110},"rarity":"unique"},"Rune of Safe Passage":{"internalName":"Rune of Safe Passage","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92},"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"walkSpeed":7,"waterDefence":10,"fireDefence":15,"airDefence":15},"base":{"baseHealth":1000,"baseWaterDefence":-30,"baseFireDefence":-25,"baseAirDefence":-25},"rarity":"legendary"},"Memento":{"internalName":"Memento","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"intelligence":80},"powderSlots":3,"lore":"All those who wear these enchanted boots deposit a single fond memory into them. They are forgotten forever, but wearing them recalls every memory within vividly.","identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":32,"raw":108,"max":140},"rawWaterSpellDamage":{"min":32,"raw":108,"max":140},"lifeSteal":{"min":-715,"raw":-550,"max":-385},"manaRegen":{"min":5,"raw":18,"max":23},"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3000,"baseThunderDefence":-175,"baseWaterDefence":210},"rarity":"legendary"},"Bedruthan":{"internalName":"Bedruthan","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":494,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"warrior","strength":45,"intelligence":55},"powderSlots":3,"lore":"Stone shorn from mountains by the roiling sea gathered on the shores of Llevigar one day, washed onto the sand in the shape of a massive spear. It was taken as an omen, and the stones were forged into a true weapon.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":9,"rawIntelligence":9,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":70,"raw":70,"max":120},"baseEarthDamage":{"min":120,"raw":120,"max":170}},"rarity":"legendary"},"Magnus":{"internalName":"Magnus","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":544,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"archer","intelligence":40,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":12,"raw":40,"max":52},"weakenEnemy":{"min":2,"raw":8,"max":10},"waterDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":405,"raw":405,"max":585},"baseFireDamage":{"min":495,"raw":495,"max":650}},"rarity":"unique"},"Galleon":{"internalName":"Galleon","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":65,"intelligence":60},"powderSlots":3,"lore":"Forged with the raw powers of both the earth and the sea, these boots were initially an attempt at creating a method of foot-travel over the seas. Despite the spectacular failure of that application, they remain a formidable and reliable set of armor.","identifications":{"mainAttackDamage":{"min":14,"raw":45,"max":59},"poison":{"min":3750,"raw":12500,"max":16250},"manaSteal":{"min":6,"raw":20,"max":26},"rawAttackSpeed":-1,"lootBonus":{"min":6,"raw":20,"max":26},"stealing":{"min":5,"raw":15,"max":20},"earthDamage":{"min":11,"raw":36,"max":47},"waterDamage":{"min":11,"raw":36,"max":47}},"base":{"baseHealth":4500,"baseEarthDefence":200,"baseWaterDefence":250,"baseAirDefence":-175},"rarity":"mythic"},"Cloudy Diamond Chestplate":{"internalName":"Cloudy Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92},"powderSlots":3,"base":{"baseHealth":2100},"rarity":"common"},"Final Compulsion":{"internalName":"Final Compulsion","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":302,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"mage","strength":35,"defence":50},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"mainAttackDamage":40,"healthRegen":-100,"rawHealth":2875,"lifeSteal":290,"walkSpeed":-10,"thunderDamage":-20,"waterDefence":20,"airDefence":20},"base":{"baseDamage":{"min":270,"raw":270,"max":315},"baseEarthDamage":{"min":130,"raw":130,"max":170},"baseFireDamage":{"min":130,"raw":130,"max":170}},"rarity":"rare"},"Affluence":{"internalName":"Affluence","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":92},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"lootBonus":12,"stealing":8},"rarity":"unique"},"Seismosoul":{"internalName":"Seismosoul","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":45,"intelligence":45},"powderSlots":2,"identifications":{"rawStrength":7,"rawIntelligence":7,"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":1,"xpBonus":{"min":3,"raw":11,"max":14},"earthDamage":{"min":6,"raw":19,"max":25},"waterDamage":{"min":6,"raw":19,"max":25},"thunderDefence":{"min":-52,"raw":-40,"max":-28},"fireDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":2300,"baseEarthDefence":65,"baseWaterDefence":65,"baseAirDefence":-130},"rarity":"rare"},"Heat Sink":{"internalName":"Heat Sink","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"defence":45,"agility":55},"powderSlots":2,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"identifications":{"rawDefence":5,"rawAgility":10,"healthRegen":25,"lifeSteal":400,"walkSpeed":15,"sprintRegen":10,"fireDamage":15,"airDefence":20},"base":{"baseHealth":3750,"baseFireDefence":160},"rarity":"legendary"},"Apology":{"internalName":"Apology","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":445,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"shaman","intelligence":42},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":600,"raw":2000,"max":2600},"manaRegen":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":266,"raw":266,"max":270},"baseWaterDamage":{"min":266,"raw":266,"max":270}},"rarity":"unique"},"Hellstrand":{"internalName":"Hellstrand","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":668,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"archer","defence":60},"powderSlots":3,"lore":"The Order of the Abyss crafted this bow in opposition to the House of Talor's holy relic. Holding it for too long will strain and warp the user's mind.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDexterity":13,"healthRegen":{"min":-45,"raw":-35,"max":-24},"lifeSteal":{"min":197,"raw":655,"max":852},"manaSteal":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":12,"raw":40,"max":52},"waterDamage":{"min":-52,"raw":-40,"max":-28},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":230,"raw":230,"max":290},"baseFireDamage":{"min":150,"raw":150,"max":220}},"rarity":"legendary"},"Yin":{"internalName":"Yin","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":92,"dexterity":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":3,"raw":9,"max":12},"rawMainAttackDamage":{"min":12,"raw":41,"max":53},"spellDamage":{"min":-10,"raw":-8,"max":-6},"rawSpellDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseThunderDefence":30,"baseWaterDefence":-30},"rarity":"unique"},"Barbarian":{"internalName":"Barbarian","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":40,"agility":30},"powderSlots":2,"identifications":{"rawDefence":9,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":90,"raw":300,"max":390},"spellDamage":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":3,"raw":9,"max":12},"sprint":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2600,"baseEarthDefence":70,"baseAirDefence":80},"rarity":"unique"},"Tungsten":{"internalName":"Tungsten","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":92,"dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":2,"rawMainAttackDamage":16,"thunderDamage":8,"earthDefence":-8},"rarity":"rare"},"Magma Flinger":{"internalName":"Magma Flinger","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":593,"dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"archer","strength":40,"defence":25},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawStrength":20,"rawDefence":6,"mainAttackDamage":35,"rawSpellDamage":-95,"earthDamage":35,"fireDamage":15,"waterDefence":-25},"base":{"baseDamage":{"min":0,"raw":0,"max":615},"baseFireDamage":{"min":0,"raw":0,"max":815}},"rarity":"unique"},"Dunesweeper":{"internalName":"Dunesweeper","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":562,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"archer","strength":25,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAgility":10,"rawMainAttackDamage":{"min":47,"raw":155,"max":202},"walkSpeed":{"min":7,"raw":23,"max":30},"lootBonus":{"min":4,"raw":12,"max":16},"earthDamage":{"min":9,"raw":30,"max":39},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":80,"raw":80,"max":110},"baseAirDamage":{"min":110,"raw":110,"max":150}},"rarity":"unique"},"Caterpillar":{"internalName":"Caterpillar","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":55,"dexterity":40},"powderSlots":3,"identifications":{"rawStrength":8,"rawDefence":5,"poison":{"min":2325,"raw":7750,"max":10075},"rawAttackSpeed":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2885,"baseEarthDefence":130,"baseAirDefence":-110},"rarity":"rare"},"Hell's Scream":{"internalName":"Hell's Scream","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":349,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"warrior","defence":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawStrength":-8,"rawAgility":10,"lifeSteal":{"min":77,"raw":255,"max":332},"walkSpeed":{"min":5,"raw":18,"max":23},"exploding":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-130,"raw":-100,"max":-70},"fireDefence":{"min":9,"raw":30,"max":39},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":70,"raw":70,"max":130},"baseFireDamage":{"min":120,"raw":120,"max":200},"baseAirDamage":{"min":80,"raw":80,"max":240}},"rarity":"unique"},"Megabyte":{"internalName":"Megabyte","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92},"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"elementalDamage":14},"base":{"baseHealth":512},"rarity":"legendary"},"Liquefied Sun":{"internalName":"Liquified Sun","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":507,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"assassin","dexterity":45,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":10,"rawHealth":{"min":519,"raw":1731,"max":2250},"reflection":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":72,"raw":72,"max":90},"baseThunderDamage":{"min":45,"raw":45,"max":120},"baseFireDamage":{"min":80,"raw":80,"max":85}},"rarity":"rare"},"Whitecap Crown":{"internalName":"Whitecap Crown","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"intelligence":75},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawIntelligence":10,"rawSpellDamage":250,"waterDamage":20,"fireDamage":-10,"thunderDefence":-20},"base":{"baseHealth":2300,"baseThunderDefence":-120,"baseWaterDefence":150},"rarity":"rare"},"Glissando":{"internalName":"Glissando","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":52,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"rawMainAttackDamage":{"min":225,"raw":750,"max":975},"rawSpellDamage":{"min":351,"raw":1170,"max":1521},"walkSpeed":{"min":3,"raw":10,"max":13},"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":3,"raw":10,"max":13},"jumpHeight":1,"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":0,"raw":0,"max":7},"baseEarthDamage":{"min":0,"raw":0,"max":7},"baseThunderDamage":{"min":0,"raw":0,"max":7},"baseWaterDamage":{"min":0,"raw":0,"max":7},"baseFireDamage":{"min":0,"raw":0,"max":7},"baseAirDamage":{"min":0,"raw":0,"max":7}},"rarity":"unique"},"Aries":{"internalName":"Aries","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":55,"agility":55},"powderSlots":2,"lore":"Two iron horns adorn this helmet to enhance the warriors of the Eradian, Dwarves who specifically rode Rams into battle at incredible speed.","identifications":{"rawAgility":10,"mainAttackDamage":{"min":8,"raw":25,"max":33},"rawSpellDamage":{"min":53,"raw":175,"max":228},"lifeSteal":{"min":72,"raw":240,"max":312},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":8,"raw":25,"max":33},"waterDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3000},"rarity":"legendary"},"Cosmium":{"internalName":"Cosmium","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":92,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"elementalDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":450},"rarity":"unique"},"Sparks":{"internalName":"Sparks","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":92,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"mainAttackDamage":15,"rawAttackSpeed":-2,"fireMainAttackDamage":7},"base":{"baseHealth":500,"baseWaterDefence":-45,"baseFireDefence":45},"rarity":"unique"},"Ashen Helm":{"internalName":"Ashen Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":92,"dexterity":40,"defence":45},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawDefence":5,"rawAgility":5,"spellDamage":14,"manaSteal":8,"thorns":10,"reflection":-10,"exploding":12,"thunderDamage":14,"fireDamage":14,"airDamage":22},"base":{"baseHealth":2700,"baseThunderDefence":50,"baseFireDefence":70,"baseAirDefence":-120},"rarity":"unique"},"Mercurial Chestplate":{"internalName":"Mercurial Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":92,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"spellDamage":10,"elementalDamage":10},"base":{"baseHealth":2625,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"unique"},"Azurite":{"internalName":"Azurite","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":35,"intelligence":35},"powderSlots":3,"identifications":{"rawStrength":7,"rawIntelligence":9,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"spellDamage":{"min":8,"raw":27,"max":35},"thorns":{"min":5,"raw":18,"max":23},"stealing":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":2675,"baseEarthDefence":80,"baseWaterDefence":90},"rarity":"unique"},"Yang":{"internalName":"Yang","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":92,"intelligence":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"rawMainAttackDamage":{"min":-53,"raw":-41,"max":-29},"spellDamage":{"min":3,"raw":9,"max":12},"rawSpellDamage":{"min":9,"raw":30,"max":39}},"base":{"baseThunderDefence":-30,"baseWaterDefence":30},"rarity":"unique"},"Discordant":{"internalName":"Discordant","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":92,"strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"elementalDefence":{"min":-9,"raw":-7,"max":-5}},"rarity":"rare"},"Equites":{"internalName":"Equites","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":92,"defence":55,"agility":65},"majorIds":{"Cavalryman":"+Cavalryman: You may cast spells and attack with a -30% damage penalty while on a horse."},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawDefence":10,"rawMainAttackDamage":{"min":75,"raw":250,"max":325},"healingEfficiency":{"min":5,"raw":15,"max":20},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"elementalDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":4500,"baseFireDefence":180,"baseAirDefence":180},"rarity":"fabled"},"Corruption Seal":{"internalName":"Corruption Seal","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"strength":40,"dexterity":40},"powderSlots":2,"identifications":{"rawStrength":7,"rawDexterity":7,"healthRegenRaw":{"min":-162,"raw":-125,"max":-87},"poison":{"min":1050,"raw":3500,"max":4550},"lifeSteal":{"min":62,"raw":205,"max":267},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":7,"raw":23,"max":30},"thunderDamage":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":2650,"baseEarthDefence":90,"baseThunderDefence":90,"baseWaterDefence":-90,"baseAirDefence":-90},"rarity":"unique"},"Weatherwalkers":{"internalName":"All for One","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"dexterity":70},"powderSlots":3,"identifications":{"rawDexterity":8,"spellDamage":{"min":9,"raw":31,"max":40},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2900,"baseEarthDefence":-90,"baseThunderDefence":-100,"baseWaterDefence":-90,"baseFireDefence":-90,"baseAirDefence":-90},"rarity":"rare"},"Hardcore":{"internalName":"Hardcore","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":632,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"shaman","strength":75},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawMainAttackDamage":90,"manaSteal":4,"raw3rdSpellCost":-10,"earthDamage":30,"thunderDamage":-20,"waterDefence":-20,"airDefence":-35},"base":{"baseEarthDamage":{"min":145,"raw":145,"max":149}},"rarity":"rare"},"Supernova":{"internalName":"Supernova","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":441,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"warrior","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"exploding":{"min":6,"raw":19,"max":25},"elementalDamage":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseEarthDamage":{"min":11,"raw":11,"max":30},"baseThunderDamage":{"min":11,"raw":11,"max":30},"baseWaterDamage":{"min":11,"raw":11,"max":30},"baseFireDamage":{"min":11,"raw":11,"max":30},"baseAirDamage":{"min":11,"raw":11,"max":30}},"rarity":"rare"},"Cue Stick":{"internalName":"Cue Stick","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":390,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"warrior","dexterity":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawDexterity":16,"mainAttackDamage":{"min":4,"raw":12,"max":16},"manaSteal":{"min":1,"raw":4,"max":5},"stealing":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":23,"raw":77,"max":100}},"base":{"baseDamage":{"min":220,"raw":220,"max":270},"baseThunderDamage":{"min":150,"raw":150,"max":300}},"rarity":"rare"},"Mouth of Fate":{"internalName":"Mouth of Fate","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":577,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"shaman","dexterity":38,"agility":38},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.thunder3"}},"identifications":{"rawDexterity":9,"rawAgility":9,"damage":{"min":3,"raw":9,"max":12},"rawThunderDamage":{"min":21,"raw":70,"max":91},"rawAirDamage":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":3,"raw":9,"max":12},"mainAttackRange":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseThunderDamage":{"min":76,"raw":76,"max":110},"baseAirDamage":{"min":86,"raw":86,"max":100}},"rarity":"unique"},"Accelerator":{"internalName":"Accelerator","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92},"identifications":{"rawDexterity":10,"rawAgility":10,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-19,"raw":-15,"max":-10},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":3500,"baseThunderDefence":-150,"baseAirDefence":-150},"rarity":"legendary"},"Narcissist":{"internalName":"Narcissist","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":732,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"shaman","strength":70},"majorIds":{"Geocentrism":"+Geocentrism: Aura radiates from you instead of your Totem and can be cast any time."},"powderSlots":3,"lore":"The world revolves around you, after all. It's high time you spread the news!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawIntelligence":-5,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegenRaw":{"min":53,"raw":175,"max":228},"thorns":{"min":15,"raw":50,"max":65},"reflection":{"min":20,"raw":65,"max":85},"walkSpeed":{"min":9,"raw":30,"max":39},"earthDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":225,"raw":225,"max":340},"baseEarthDamage":{"min":600,"raw":600,"max":600}},"rarity":"fabled"},"Compiler":{"internalName":"Compiler","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":302,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":92,"classRequirement":"mage","strength":55},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":20,"rawDexterity":20,"rawIntelligence":20,"rawDefence":20,"rawAgility":20,"mainAttackDamage":20,"xpBonus":20,"earthDamage":20},"base":{"baseDamage":{"min":500,"raw":500,"max":685}},"rarity":"rare"},"Belcon":{"internalName":"Belcon","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":484,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"assassin","strength":30,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":2,"raw":8,"max":10},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-39,"raw":-30,"max":-21},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":65,"raw":65,"max":105},"baseEarthDamage":{"min":50,"raw":50,"max":80},"baseWaterDamage":{"min":60,"raw":60,"max":110}},"rarity":"unique"},"Behemoth":{"internalName":"Behemoth","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":416,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"warrior","strength":40,"dexterity":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":8,"raw":25,"max":33},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":375,"raw":375,"max":535},"baseThunderDamage":{"min":110,"raw":110,"max":610}},"rarity":"unique"},"Imperious":{"internalName":"Imperious","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":578,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"shaman","agility":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawIntelligence":30,"rawAgility":15,"walkSpeed":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":8,"max":10},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseAirDamage":{"min":385,"raw":385,"max":385}},"rarity":"rare"},"Leaning Log":{"internalName":"Leaning Log","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":261,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"mage","strength":35,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":7,"rawIntelligence":7,"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":360,"raw":1200,"max":1560},"thorns":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseEarthDamage":{"min":150,"raw":150,"max":165},"baseWaterDamage":{"min":135,"raw":135,"max":180}},"rarity":"unique"},"Soul Signal":{"internalName":"Soul Signal","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":92,"dexterity":50,"intelligence":50},"powderSlots":2,"identifications":{"rawDexterity":10,"rawIntelligence":10,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"rawSpellDamage":{"min":67,"raw":222,"max":289},"reflection":{"min":8,"raw":25,"max":33},"earthDamage":{"min":-104,"raw":-80,"max":-56}},"base":{"baseHealth":2300,"baseEarthDefence":-170,"baseThunderDefence":125,"baseWaterDefence":90},"rarity":"rare"},"Epipelagic Eye":{"internalName":"Epipelagic Eye","type":"ingredient","requirements":{"level":92,"skills":["jeweling"]},"icon":{"format":"skin","value":"e92089618435a0ef63e95ee95a92b83073f8c33fa77dc5365199bad33b6256"},"identifications":{"rawIntelligence":{"min":3,"raw":3,"max":3},"rawWaterMainAttackDamage":{"min":16,"raw":16,"max":18}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-99000,"strengthRequirement":-5,"dexterityRequirement":-5,"intelligenceRequirement":12,"defenceRequirement":-5,"agilityRequirement":-5}},"Withered Root":{"internalName":"Withered Root","type":"ingredient","requirements":{"level":92,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"thunderDefence":{"min":-5,"raw":-5,"max":-2},"walkSpeed":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-64000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Bioluminescent Blood":{"internalName":"Bioluminescent Blood","type":"ingredient","requirements":{"level":92,"skills":["scribing"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"thunderDamage":{"min":11,"raw":11,"max":13},"reflection":{"min":10,"raw":10,"max":15}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Marrow Dust":{"internalName":"Marrow Dust","type":"ingredient","requirements":{"level":92,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"healthRegenRaw":{"min":40,"raw":40,"max":60}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fragmented Dragonbone","coords":[[1343,9,-5210,8],[1386,9,-5196,8],[1327,7,-5381,8],[1385,7,-5433,8],[1484,29,-5519,8],[1471,29,-5538,8],[1435,24,-5530,8],[1337,4,-5148,5],[1323,2,-5153,5],[1314,10,-5245,10],[1425,7,-5201,10],[1476,73,-5571,10]]},{"name":"Carrion Spider","coords":[[1343,9,-5210,8],[1386,9,-5196,8],[1327,7,-5381,8],[1385,7,-5433,8],[1484,29,-5519,8],[1471,29,-5538,8],[1435,24,-5530,8],[1337,4,-5148,5],[1323,2,-5153,5],[1314,10,-5245,10],[1425,7,-5201,10],[1476,73,-5571,10]]}]},"Myocardial Leg":{"internalName":"Myocardial Leg","type":"ingredient","requirements":{"level":92,"skills":["cooking"]},"icon":{"format":"legacy","value":"350:1"},"identifications":{"manaSteal":{"min":2,"raw":2,"max":3},"mainAttackDamage":{"min":6,"raw":6,"max":8},"healthRegen":{"min":-7,"raw":-7,"max":-5}},"tier":2,"consumableOnlyIDs":{"duration":-540,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Leg Eater","coords":[1382,142,-1008,30]},{"name":"Myocardial Vascular","coords":false}]},"Sentient Shadow":{"internalName":"Sentient Shadow","type":"ingredient","requirements":{"level":92,"skills":["tailoring"]},"icon":{"format":"legacy","value":"263:0"},"identifications":{"walkSpeed":{"min":4,"raw":4,"max":6},"airDefence":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Detached Shadow","coords":null}]},"Broken Helmet":{"internalName":"Broken Helmet","type":"ingredient","requirements":{"level":92,"skills":["armouring"]},"icon":{"format":"legacy","value":"302:0"},"identifications":{"rawDefence":{"min":-3,"raw":-3,"max":-1},"mainAttackDamage":{"min":4,"raw":4,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":20,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Azer Foot Soldier","coords":[1567,45,-5180,24]},{"name":"Azer Ironmage","coords":[1389,53,-5250,1]},{"name":"Azer Vanquisher","coords":[1567,45,-5180,24]},{"name":"Azer Taskmaster","coords":[1389,53,-5250,1]}]},"Pegasus Feather":{"internalName":"Pegasus Feather","type":"ingredient","requirements":{"level":92,"skills":["tailoring"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"airDamage":{"min":12,"raw":12,"max":20},"airDefence":{"min":12,"raw":12,"max":20},"rawStrength":{"min":-10,"raw":-10,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":25},"droppedBy":[{"name":"Pegasus","coords":[[1015,133,-4850,55],[921,155,-4789,55],[1302,190,-4476,55]]}]},"Unmeltable Ice":{"internalName":"Unmeltable Ice","type":"ingredient","requirements":{"level":92,"skills":["jeweling","woodworking"]},"icon":{"format":"legacy","value":"174:0"},"identifications":{"fireDamage":{"min":1,"raw":1,"max":2},"waterDamage":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frosted Guard","coords":[[1478,17,-5373,10],[1497,15,-5373,10],[1492,17,-5395,15],[1505,18,-5408,15],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1504,64,-5419,30],[1513,92,-5364,15],[1579,106,-5446,30],[1579,106,-5446,30],[1579,106,-5446,30]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]}]},"Stolen Seeds":{"internalName":"Stolen Seeds","type":"ingredient","requirements":{"level":92,"skills":["cooking"]},"icon":{"format":"legacy","value":"295:0"},"identifications":{"thorns":{"min":4,"raw":4,"max":7},"stealing":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Harvest Imp","coords":[[789,122,-4413,2],[810,128,-4402,2],[818,129,-4394,2],[854,87,-4512,10],[854,87,-4512,10],[1073,114,-4449,20],[1073,114,-4449,20],[1073,114,-4449,20],[1489,96,-4578,8],[1471,89,-4602,3],[1474,89,-4593,3],[1074,55,-4928,3],[1005,43,-4921,4],[789,43,-4826,6],[1102,126,-4283,6],[1411,96,-4302,8],[1488,100,-4298,8],[1454,104,-4286,8],[1506,128,-4284,8],[1469,129,-4266,8],[1481,129,-4266,10],[1479,100,-4397,7],[1470,82,-4449,2]]}]},"Flerisi Bark":{"internalName":"Flerisi Bark","type":"ingredient","requirements":{"level":92,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"25:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":4},"rawEarthSpellDamage":{"min":50,"raw":50,"max":60},"walkSpeed":{"min":-5,"raw":-5,"max":-3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-102000,"strengthRequirement":18,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Mythical Hoof":{"internalName":"Mythical Hoof","type":"ingredient","requirements":{"level":92,"skills":["tailoring"]},"icon":{"format":"legacy","value":"281:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":3},"rawDexterity":{"min":3,"raw":3,"max":3},"rawIntelligence":{"min":3,"raw":3,"max":3},"rawDefence":{"min":3,"raw":3,"max":3},"rawAgility":{"min":3,"raw":3,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-99000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":10,"defenceRequirement":10,"agilityRequirement":10},"droppedBy":[{"name":"Pegasus","coords":[[1015,133,-4850,55],[921,155,-4789,55],[1302,190,-4476,55]]}]},"Frostbound Memory":{"internalName":"Frostbound Memory","type":"ingredient","requirements":{"level":92,"skills":["woodworking"]},"icon":{"format":"legacy","value":"95:3"},"identifications":{"healingEfficiency":{"min":4,"raw":4,"max":7},"rawWaterMainAttackDamage":{"min":125,"raw":125,"max":140},"manaRegen":{"min":2,"raw":2,"max":3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-148000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":28,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frosted Guard","coords":[[1478,17,-5373,10],[1497,15,-5373,10],[1492,17,-5395,15],[1505,18,-5408,15],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1504,64,-5419,30],[1513,92,-5364,15],[1579,106,-5446,30],[1579,106,-5446,30],[1579,106,-5446,30]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]}]},"Glacial Anomaly":{"internalName":"Glacial Anomaly","type":"ingredient","requirements":{"level":92,"skills":["woodworking","alchemism"]},"icon":{"format":"legacy","value":"373:0"},"identifications":{"manaRegen":{"min":8,"raw":8,"max":8},"rawSpellDamage":{"min":55,"raw":55,"max":60}},"tier":3,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":25,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frosted Guard","coords":[[1478,17,-5373,10],[1497,15,-5373,10],[1492,17,-5395,15],[1505,18,-5408,15],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1537,10,-5377,20],[1504,64,-5419,30],[1513,92,-5364,15],[1579,106,-5446,30],[1579,106,-5446,30],[1579,106,-5446,30]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]},{"name":"Cryostone Golem","coords":[[1523,63,-5480,15],[1518,62,-5445,30],[1518,62,-5445,30],[1504,62,-5419,30],[1504,62,-5419,30],[1506,78,-5391,10]]},{"name":"Pyret","coords":[1224,42,-5461,18]}]},"Tempered Core":{"internalName":"Tempered Core","type":"ingredient","requirements":{"level":92,"skills":["armouring","tailoring"]},"icon":{"format":"skin","value":"c3687e25c632bce8aa61e0d64c24e694c3eea629ea944f4cf30dcfb4fbce071"},"identifications":{"fireDamage":{"min":17,"raw":17,"max":22},"rawHealth":{"min":-550,"raw":-550,"max":-500}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":30,"agilityRequirement":0},"droppedBy":[{"name":"Azer Foot Soldier","coords":[1567,45,-5180,24]},{"name":"Azer Ironmage","coords":[1389,53,-5250,1]},{"name":"Azer Vanquisher","coords":[1567,45,-5180,24]},{"name":"Azer Taskmaster","coords":[1389,53,-5250,1]},{"name":"Fire Scarab","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]},{"name":"Magma Entity","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]},{"name":"Magma Entity","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]},{"name":"Ifrit","coords":[[1353,157,-5569,10],[1308,161,-5520,10],[1303,155,-5576,10],[1468,136,-5205,20]]},{"name":"Lava Spitting Limus","coords":[1422,13,-5130,55]}]},"Prismatic Pendulum":{"internalName":"Prismatic Pendulum","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":583,"dropRestriction":"normal","requirements":{"level":92,"classRequirement":"archer","strength":35,"intelligence":45},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"healthRegenRaw":{"min":51,"raw":170,"max":221},"rawHealth":{"min":518,"raw":1725,"max":2243},"manaRegen":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":-39,"raw":-30,"max":-21},"earthDefence":{"min":8,"raw":28,"max":36},"waterDefence":{"min":8,"raw":28,"max":36}},"base":{"baseDamage":{"min":5,"raw":5,"max":350},"baseEarthDamage":{"min":5,"raw":5,"max":520},"baseWaterDamage":{"min":5,"raw":5,"max":520}},"rarity":"rare"},"Abiogenesis":{"internalName":"Abiogenesis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":92,"strength":65,"intelligence":45,"defence":45},"powderSlots":2,"lore":"Life itself is not a flexible material to work with—building sentience is precisely like squeezing blood from a stone. It may be years of toil, but the strength of an entire race that looks to you as a creator cannot be overstated.","identifications":{"rawIntelligence":8,"rawDefence":8,"rawMainAttackDamage":{"min":404,"raw":1346,"max":1750},"spellDamage":{"min":6,"raw":19,"max":25},"healthRegenRaw":{"min":46,"raw":154,"max":200},"raw3rdSpellCost":{"min":10,"raw":8,"max":6},"rawAttackSpeed":{"min":-31,"raw":-24,"max":-17},"fireDamage":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":3500,"baseEarthDefence":75,"baseWaterDefence":75,"baseFireDefence":75},"rarity":"legendary"},"Closure":{"internalName":"Closure","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":645,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"archer","dexterity":35,"defence":45},"powderSlots":2,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawFireSpellDamage":145,"manaSteal":12,"4thSpellCost":-20,"xpBonus":15,"fireDamage":60,"airDefence":-25},"base":{"baseDamage":{"min":120,"raw":120,"max":225},"baseThunderDamage":{"min":160,"raw":160,"max":355}},"rarity":"rare"},"Thundering Wind":{"internalName":"Thundering Wind","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":644,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"archer","dexterity":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":7,"rawAgility":7,"damage":{"min":5,"raw":17,"max":22},"3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"walkSpeed":{"min":4,"raw":14,"max":18},"knockback":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":50,"raw":50,"max":85},"baseThunderDamage":{"min":30,"raw":30,"max":160},"baseAirDamage":{"min":30,"raw":30,"max":160}},"rarity":"rare"},"Cloud Nine":{"internalName":"Cloud Nine","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":394,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"warrior","dexterity":40,"intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.air3"}},"identifications":{"rawDexterity":8,"rawIntelligence":8,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"reflection":{"min":6,"raw":20,"max":26},"jumpHeight":{"min":1,"raw":2,"max":3},"fireDamage":{"min":-52,"raw":-40,"max":-28},"thunderDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":5,"raw":5,"max":30},"baseThunderDamage":{"min":50,"raw":50,"max":80},"baseWaterDamage":{"min":30,"raw":30,"max":100},"baseAirDamage":{"min":10,"raw":10,"max":10}},"rarity":"rare"},"Antipode":{"internalName":"Antipode","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":270,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"mage","intelligence":40,"defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawIntelligence":9,"rawDefence":9,"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"exploding":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":31,"raw":31,"max":35},"baseWaterDamage":{"min":30,"raw":30,"max":45},"baseFireDamage":{"min":30,"raw":30,"max":45}},"rarity":"rare"},"Blightsaber":{"internalName":"Blightsaber","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":548,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"shaman","strength":33,"dexterity":33},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawStrength":8,"rawDexterity":8,"mainAttackDamage":{"min":6,"raw":19,"max":25},"spellDamage":{"min":6,"raw":19,"max":25},"healthRegenRaw":{"min":-195,"raw":-150,"max":-105},"poison":{"min":1695,"raw":5650,"max":7345},"manaSteal":{"min":1,"raw":4,"max":5},"raw1stSpellCost":{"min":-4,"raw":-15,"max":-19},"raw2ndSpellCost":{"min":20,"raw":15,"max":11}},"base":{"baseDamage":{"min":70,"raw":70,"max":76},"baseEarthDamage":{"min":70,"raw":70,"max":76},"baseThunderDamage":{"min":70,"raw":70,"max":76}},"rarity":"unique"},"Tailwind":{"internalName":"Tailwind","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"agility":45},"powderSlots":3,"identifications":{"rawAgility":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":6,"raw":19,"max":25},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":18,"max":23},"sprint":{"min":5,"raw":16,"max":21},"earthDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-32,"raw":-25,"max":-17},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":2425,"baseFireDefence":-150,"baseAirDefence":150},"rarity":"unique"},"Discharge":{"internalName":"Discharge","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"dexterity":80},"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"identifications":{"rawDexterity":10,"rawMainAttackDamage":155,"thorns":15,"thunderDamage":70,"waterDamage":10},"base":{"baseHealth":2800,"baseEarthDefence":-150,"baseThunderDefence":-50,"baseWaterDefence":-100},"rarity":"rare"},"Beetle Aegis":{"internalName":"Beetle Aegis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"strength":55,"dexterity":45},"powderSlots":1,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":9,"rawDexterity":9,"rawDefence":-6,"rawAgility":-6,"mainAttackDamage":12,"spellDamage":12,"manaSteal":8,"earthDamage":30,"thunderDamage":30},"base":{"baseHealth":2800,"baseEarthDefence":120,"baseThunderDefence":120,"baseFireDefence":-60,"baseAirDefence":-60},"rarity":"rare"},"Wick":{"internalName":"Wick","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":493,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"warrior","dexterity":55,"agility":45},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawAgility":7,"manaSteal":12,"rawAirDamage":135,"reflection":30,"walkSpeed":25,"earthDamage":-25,"thunderDefence":50},"base":{"baseDamage":{"min":58,"raw":58,"max":90},"baseThunderDamage":{"min":20,"raw":20,"max":65},"baseAirDamage":{"min":30,"raw":30,"max":55}},"rarity":"legendary"},"Cloudy Diamond Leggings":{"internalName":"Cloudy Diamond Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91},"powderSlots":3,"base":{"baseHealth":2040},"rarity":"common"},"Diamond Blade":{"internalName":"Diamond Blade","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":509,"dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"assassin","intelligence":35,"agility":35},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"healthRegen":20,"manaRegen":6,"reflection":12,"walkSpeed":12,"fireDamage":-10,"waterDefence":12,"airDefence":12},"base":{"baseDamage":{"min":56,"raw":56,"max":97},"baseWaterDamage":{"min":53,"raw":53,"max":74},"baseAirDamage":{"min":53,"raw":53,"max":74}},"rarity":"unique"},"Polyphemus":{"internalName":"Polyphemus","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"strength":40,"intelligence":40},"powderSlots":2,"identifications":{"rawDexterity":8,"mainAttackDamage":{"min":4,"raw":13,"max":17},"spellDamage":{"min":4,"raw":13,"max":17},"rawSpellDamage":{"min":42,"raw":140,"max":182},"manaSteal":{"min":2,"raw":8,"max":10},"airDamage":{"min":-47,"raw":-36,"max":-25},"airDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":2350,"baseEarthDefence":70,"baseThunderDefence":-70,"baseWaterDefence":70,"baseAirDefence":-70},"rarity":"unique"},"Vacarme":{"internalName":"Vacarme","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"dexterity":70},"powderSlots":2,"identifications":{"rawDexterity":7,"rawSpellDamage":{"min":50,"raw":165,"max":215},"healthRegenRaw":{"min":-175,"raw":-135,"max":-94},"manaSteal":{"min":2,"raw":8,"max":10},"exploding":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":7,"raw":23,"max":30},"thunderDefence":{"min":-42,"raw":-32,"max":-22}},"base":{"baseHealth":1700,"baseEarthDefence":-100,"baseThunderDefence":100},"rarity":"rare"},"Impeccable Spruce Bow":{"internalName":"Impeccable Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":426,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":270,"raw":270,"max":298}},"rarity":"common"},"Lonesome":{"internalName":"Topaz Staff","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":260,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"mage","strength":35,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"mainAttackDamage":{"min":6,"raw":19,"max":25},"spellDamage":{"min":-32,"raw":-25,"max":-17},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":4,"raw":12,"max":16},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":240,"raw":240,"max":320},"baseAirDamage":{"min":190,"raw":190,"max":270}},"rarity":"unique"},"Steamstone":{"internalName":"Steamstone","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":91,"intelligence":45,"defence":45},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawIntelligence":7,"rawDefence":8,"healthRegen":25,"manaSteal":4,"raw3rdSpellCost":-3,"raw4thSpellCost":-2,"earthDamage":16,"thunderDamage":-18,"airDamage":-18},"base":{"baseHealth":2900,"baseEarthDefence":50,"baseThunderDefence":-130,"baseWaterDefence":75,"baseFireDefence":75},"rarity":"unique"},"Keeper of Souls":{"internalName":"Keeper of Souls","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":91,"strength":80},"majorIds":{"Soul Eater":"+Soul Eater: Devour and Harvester grant double mana. Decreases maximum marks by 1."},"powderSlots":5,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawStrength":12,"rawMainAttackDamage":{"min":69,"raw":231,"max":300},"rawSpellDamage":{"min":58,"raw":192,"max":250},"healthRegenRaw":{"min":52,"raw":173,"max":225},"lifeSteal":{"min":75,"raw":250,"max":325},"rawMaxMana":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":-1000},"rarity":"fabled"},"Pulse Starter":{"internalName":"Pulse Starter","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"dexterity":40,"defence":40},"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"healthRegen":10,"healthRegenRaw":80,"thunderDamage":7,"fireDamage":7},"base":{"baseHealth":650,"baseThunderDefence":35,"baseFireDefence":35},"rarity":"rare"},"Mesosphere":{"internalName":"Mesosphere","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"dexterity":50,"agility":25},"powderSlots":2,"identifications":{"rawAgility":5,"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"rawSpellDamage":{"min":44,"raw":145,"max":189},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":4,"raw":14,"max":18},"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2400,"baseEarthDefence":-90,"baseThunderDefence":90,"baseWaterDefence":-70,"baseAirDefence":70},"rarity":"rare"},"Impeccable Spruce Dagger":{"internalName":"Impeccable Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":338,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":120,"raw":120,"max":150}},"rarity":"common"},"Bane of War":{"internalName":"Bane of War","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":381,"dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"warrior","intelligence":40,"agility":35},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawIntelligence":5,"rawAgility":5,"mainAttackDamage":-15,"rawMainAttackDamage":-75,"spellDamage":20,"manaRegen":6},"base":{"baseDamage":{"min":90,"raw":90,"max":130},"baseWaterDamage":{"min":30,"raw":30,"max":45},"baseAirDamage":{"min":20,"raw":20,"max":55}},"rarity":"rare"},"Anti-Static":{"internalName":"Anti-Static","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"strength":80},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"identifications":{"rawStrength":10,"rawDefence":8,"reflection":15,"earthDamage":15,"earthDefence":20,"thunderDefence":30,"waterDefence":5,"fireDefence":10,"airDefence":15},"base":{"baseHealth":2800,"baseEarthDefence":300,"baseThunderDefence":200},"rarity":"rare"},"Quartzite Helm":{"internalName":"Quartzite Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91},"powderSlots":4,"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":41,"raw":135,"max":176}},"base":{"baseHealth":2300},"rarity":"unique"},"Crimson":{"internalName":"Crimson","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":597,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"shaman","intelligence":45,"defence":45},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawIntelligence":13,"rawDefence":13,"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":62,"raw":207,"max":269},"lifeSteal":{"min":131,"raw":436,"max":567},"manaSteal":{"min":-5,"raw":-4,"max":-3},"earthDefence":{"min":11,"raw":35,"max":46},"thunderDefence":{"min":11,"raw":35,"max":46},"airDefence":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":80,"raw":80,"max":90},"baseWaterDamage":{"min":95,"raw":95,"max":110},"baseFireDamage":{"min":95,"raw":95,"max":110}},"rarity":"legendary"},"Impeccable Spruce Spear":{"internalName":"Impeccable Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":277,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":154,"raw":154,"max":215}},"rarity":"common"},"Cardiac Arrest":{"internalName":"Cardiac Arrest","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"strength":70,"dexterity":50},"powderSlots":3,"lore":"...As the heart fails, adrenaline pumps through the body in an attempt to provide energy and keep the victim alive, but medical action must be taken to ensure survival. -Excerpt from Aldorei Medical Tomes, Vol. 6","identifications":{"rawDefence":-20,"rawAgility":-20,"spellDamage":{"min":9,"raw":30,"max":39},"healthRegen":{"min":-52,"raw":-40,"max":-28},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"poison":{"min":1200,"raw":4000,"max":5200},"2ndSpellCost":{"min":-10,"raw":-32,"max":-42},"3rdSpellCost":{"min":-6,"raw":-21,"max":-27},"4thSpellCost":{"min":-7,"raw":-24,"max":-31},"rawAttackSpeed":-1},"base":{"baseHealth":4000,"baseEarthDefence":130,"baseThunderDefence":90},"rarity":"legendary"},"Ornamental Plate":{"internalName":"Ornamental Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":91,"intelligence":50},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawIntelligence":5,"spellDamage":12,"rawSpellDamage":190,"manaRegen":12,"xpBonus":15},"base":{"baseHealth":2250,"baseWaterDefence":100},"rarity":"rare"},"Octahedron":{"internalName":"Octahedron","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":312,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"mage","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":8,"rawDexterity":8,"rawIntelligence":8,"rawDefence":8,"rawAgility":8,"mainAttackDamage":{"min":-42,"raw":-32,"max":-22},"spellDamage":{"min":5,"raw":16,"max":21}},"base":{"baseEarthDamage":{"min":20,"raw":20,"max":30},"baseThunderDamage":{"min":0,"raw":0,"max":50},"baseWaterDamage":{"min":15,"raw":15,"max":35},"baseFireDamage":{"min":10,"raw":10,"max":40},"baseAirDamage":{"min":5,"raw":5,"max":45}},"rarity":"unique"},"Brace of the Ninth":{"internalName":"Brace of the Ninth","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":360,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"warrior","intelligence":55},"powderSlots":2,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":40,"manaRegen":12,"reflection":20,"walkSpeed":-20,"waterDamage":15},"base":{"baseWaterDamage":{"min":113,"raw":113,"max":119}},"rarity":"rare"},"H-215 Plasmatic Exograft":{"internalName":"H-215 Plasmatic Exograft","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":91,"dexterity":65,"defence":65},"majorIds":{"Sublimation":"+Sublimation: Totemic Shatter heals 75% of Regeneration's usual amount, with reduced Totem area of effect."},"powderSlots":1,"identifications":{"healthRegen":{"min":-45,"raw":-35,"max":-24},"rawThunderDamage":{"min":65,"raw":215,"max":280},"rawFireMainAttackDamage":{"min":65,"raw":215,"max":280},"healingEfficiency":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-78,"raw":-60,"max":-42}},"base":{"baseHealth":2150,"baseThunderDefence":-125,"baseFireDefence":-125},"rarity":"fabled"},"Pulse Stopper":{"internalName":"Pulse Stopper","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"dexterity":40,"defence":40},"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"spellDamage":10,"rawSpellDamage":50,"healthRegen":-10,"lifeSteal":130},"base":{"baseEarthDefence":20,"baseWaterDefence":20},"rarity":"rare"},"Hellion":{"internalName":"Hellion","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":91,"defence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":4,"lifeSteal":{"min":26,"raw":85,"max":111},"waterDamage":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":380,"baseWaterDefence":-40,"baseFireDefence":40},"rarity":"unique"},"Shatterglass":{"internalName":"Shatterglass","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":91,"strength":50},"lore":"\\[Community Event Winner\\] This small, rough-crafted pendant is the only known magic artifact of the Orcs. It incites destructive tendencies within the wearer.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawStrength":7,"rawDefence":-5,"mainAttackDamage":{"min":3,"raw":11,"max":14},"rawHealth":{"min":-650,"raw":-500,"max":-350},"exploding":{"min":3,"raw":11,"max":14},"earthDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":-20,"baseThunderDefence":-20,"baseWaterDefence":-20,"baseFireDefence":-20,"baseAirDefence":-20},"rarity":"legendary"},"Kaze":{"internalName":"Kaze","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":91,"agility":75},"lore":"\\[Community Event Winner\\] Gentle spirits of the wind attract themselves to the brilliant jewels slotted into this ring, bringing peace to its wearers and those around them.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"walkSpeed":{"min":5,"raw":15,"max":20},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseAirDefence":20},"rarity":"legendary"},"Pyroclastic Flow":{"internalName":"Pyroclastic Flow","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":290,"dropRestriction":"never","requirements":{"level":91,"classRequirement":"warrior","strength":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":100,"rawEarthMainAttackDamage":{"min":68,"raw":225,"max":293},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"rawAttackSpeed":1},"base":{"baseEarthDamage":{"min":330,"raw":330,"max":370}},"rarity":"rare"},"Resurgence":{"internalName":"Resurgence","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"intelligence":65,"defence":90},"powderSlots":4,"lore":"An antique passed from the Caritat wreckage into the hands of the outcast elves of Efilim. So to honor the memory of the selfless family as inspired their self-imposed exile, their strongest healing spells were imbued into it, and sent to those who needed them most.","identifications":{"rawIntelligence":25,"mainAttackDamage":{"min":-58,"raw":-45,"max":-31},"spellDamage":{"min":-45,"raw":-35,"max":-24},"healthRegenRaw":{"min":117,"raw":390,"max":507},"manaRegen":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":4550,"baseWaterDefence":175,"baseFireDefence":125},"rarity":"mythic"},"Impeccable Spruce Wand":{"internalName":"Impeccable Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":208,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":112}},"rarity":"common"},"Desperation":{"internalName":"Desperation","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":507,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"assassin","defence":50,"agility":35},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawStrength":-20,"healthRegen":50,"rawHealth":-1000,"lifeSteal":360,"thorns":-100,"reflection":-100,"walkSpeed":35,"waterDamage":-20},"base":{"baseFireDamage":{"min":0,"raw":0,"max":76},"baseAirDamage":{"min":0,"raw":0,"max":160}},"rarity":"rare"},"Belligerence":{"internalName":"Belligerence","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91},"powderSlots":2,"identifications":{"rawStrength":8,"rawDexterity":8,"mainAttackDamage":{"min":8,"raw":25,"max":33},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":38,"raw":125,"max":163},"lifeSteal":{"min":-188,"raw":-145,"max":-101}},"base":{"baseHealth":2350},"rarity":"unique"},"Hero":{"internalName":"Hero","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":527,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"warrior","agility":110},"majorIds":{"Saviour’s Sacrifice":"+Saviours Sacrifice: While under 50% maximum health, nearby allies gain 15% bonus damage and defence."},"powderSlots":4,"lore":"Enigmatically, this weapon will only show itself to those who believe themselves to be worth nothing, or to be weak. While utilizing this weapon will greatly strengthen one's resolve, it will disappear when it is no longer needed, going to the next wielder.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawAgility":30,"mainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegen":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseAirDamage":{"min":100,"raw":100,"max":140}},"rarity":"mythic"},"Azure Halo":{"internalName":"Azure Halo","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"intelligence":60,"agility":30},"powderSlots":2,"identifications":{"rawDefence":8,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":51,"raw":170,"max":221},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":7,"raw":23,"max":30},"sprintRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3300,"baseWaterDefence":150,"baseAirDefence":150},"rarity":"rare"},"Copper Knife":{"internalName":"Copper Knife","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":482,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"assassin","strength":40,"dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":73,"raw":73,"max":80},"baseThunderDamage":{"min":73,"raw":73,"max":160}},"rarity":"unique"},"Ceramic Shell Greaves":{"internalName":"Ceramic Shell Greaves","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"defence":45,"agility":25},"powderSlots":2,"identifications":{"rawIntelligence":-12,"rawAgility":8,"spellDamage":{"min":-13,"raw":-10,"max":-7},"healingEfficiency":{"min":6,"raw":20,"max":26},"1stSpellCost":{"min":-6,"raw":-21,"max":-27},"walkSpeed":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":18,"max":23},"fireDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2555,"baseEarthDefence":-70,"baseThunderDefence":-135,"baseFireDefence":135,"baseAirDefence":70},"rarity":"unique"},"Impeccable Spruce Relik":{"internalName":"Impeccable Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":417,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":197,"raw":197,"max":208}},"rarity":"common"},"Heartache":{"internalName":"Heartache","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":345,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"warrior","intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":10,"rawSpellDamage":{"min":35,"raw":115,"max":150},"lifeSteal":{"min":-227,"raw":-175,"max":-122},"thorns":{"min":4,"raw":12,"max":16},"reflection":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":50,"raw":50,"max":80},"baseWaterDamage":{"min":140,"raw":140,"max":190}},"rarity":"unique"},"Libra":{"internalName":"Libra","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"strength":33,"dexterity":33,"intelligence":33,"defence":33,"agility":33},"powderSlots":5,"lore":"Before the invention of magical weight detectors, there was a giant pair of public scales in Cinfras. Instead of being thrown away, they were reforged to be a formidable piece of armour.","identifications":{"rawStrength":6,"rawDexterity":6,"rawIntelligence":6,"rawDefence":6,"rawAgility":6,"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":3150},"rarity":"legendary"},"Ronin":{"internalName":"Ronin","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":91,"dexterity":50},"powderSlots":2,"identifications":{"rawStrength":-15,"rawDexterity":20,"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"walkSpeed":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2225,"baseEarthDefence":-100,"baseThunderDefence":175},"rarity":"unique"},"Value":{"internalName":"Value","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":91},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":10,"lootBonus":15},"rarity":"unique"},"Acid Magma":{"internalName":"Acid Magma","type":"ingredient","requirements":{"level":91,"skills":["tailoring","alchemism"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"poison":{"min":970,"raw":970,"max":995},"waterDefence":{"min":-10,"raw":-10,"max":-8}},"tier":0,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Pyroclastic Hydra","coords":null},{"name":"Magma Entity","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]},{"name":"Magma Entity","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]}]},"Obsidian Shards":{"internalName":"Obsidian Shards","type":"ingredient","requirements":{"level":91,"skills":["alchemism"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawDexterity":{"min":6,"raw":6,"max":8},"healthRegenRaw":{"min":-35,"raw":-35,"max":-27}},"tier":1,"consumableOnlyIDs":{"duration":-135,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Angler's Light":{"internalName":"Angler's Light","type":"ingredient","requirements":{"level":91,"skills":["alchemism"]},"icon":{"format":"legacy","value":"50:0"},"identifications":{"thunderDefence":{"min":6,"raw":6,"max":10},"rawWaterMainAttackDamage":{"min":40,"raw":40,"max":45}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Repair Toolkit":{"internalName":"Repair Toolkit","type":"ingredient","requirements":{"level":91,"skills":["tailoring"]},"icon":{"format":"legacy","value":"325:0"},"identifications":{"healingEfficiency":{"min":3,"raw":3,"max":4},"lifeSteal":{"min":60,"raw":60,"max":65}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"L-2unition Drone","coords":[[-1638,80,-2248,20],[-1706,70,-2516,20],[-1721,77,-2560,20],[-1759,73,-2563,20],[-1767,73,-2620,40]]},{"name":"L-2nforcer Drone","coords":[[-1638,80,-2248,20],[-1706,70,-2516,20],[-1721,77,-2560,20],[-1759,73,-2563,20],[-1767,73,-2620,40]]},{"name":"U-4epaired Bot","coords":[[-1450,54,-2845,10],[-1425,92,-2845,19],[-1370,92,-2733,45],[-1370,92,-2733,45],[-1518,38,-2856,10],[-1775,61,-2887,10]]},{"name":"S-3tealth Bot","coords":[[-1575,135,-2464,8],[-1418,134,-3314,55]]},{"name":"U-0lockBot","coords":[[-1432,132,-3171,42],[-1761,73,-2618,42],[-1399,98,-2847,42],[-1702,71,-2759,42]]},{"name":"U-0iner Bot","coords":[[-1432,132,-3171,42],[-1761,73,-2618,42],[-1399,98,-2847,42],[-1702,71,-2759,42]]},{"name":"PU-0iner Patroller","coords":[[-1432,132,-3171,42],[-1761,73,-2618,42],[-1399,98,-2847,42],[-1702,71,-2759,42]]},{"name":"U-0ervant Bot","coords":[[-1977,54,-3315,42],[-1977,80,-3315,42],[-1597,87,-3358,42],[-1597,40,-3358,42],[-1628,70,-3195,42],[-2063,58,-3310,20],[-1585,35,-3123,35],[-1615,130,-2460,30]]},{"name":"H-10ar Machine","coords":[[-1515,90,-2289,42],[-1515,71,-2289,42],[-1515,106,-2289,42],[-1515,132,-2289,42],[-1505,41,-3381,25],[-1438,40,-3396,25]]},{"name":"H-20ar Machine","coords":[[-1515,90,-2289,42],[-1515,71,-2289,42],[-1515,106,-2289,42],[-1515,132,-2289,42],[-1505,41,-3381,25],[-1438,40,-3396,25]]},{"name":"H-21ar Machine","coords":[-1572,30,-3175,75]},{"name":"P-1ogue Patroller","coords":[[-1434,77,-3214,150],[-1434,140,-3214,100],[-1638,77,-3140,75]]},{"name":"Avos Modified Warrior","coords":null},{"name":"Fire-Infused Mech","coords":null},{"name":"Rogue Mech-TE1","coords":null},{"name":"RCC-17","coords":null},{"name":"RCC-18","coords":null},{"name":"RCC-16","coords":null},{"name":"Air-Infused Mech","coords":null}]},"Deepborn Scavenger":{"internalName":"Deepborn Scavenger","type":"ingredient","requirements":{"level":91,"skills":["cooking"]},"icon":{"format":"legacy","value":"423:0"},"identifications":{"lifeSteal":{"min":30,"raw":30,"max":35},"rawMainAttackDamage":{"min":27,"raw":27,"max":32}},"tier":1,"consumableOnlyIDs":{"duration":-380,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Hardened Mandible":{"internalName":"Hardened Mandible","type":"ingredient","requirements":{"level":91,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"waterDefence":{"min":-10,"raw":-10,"max":-7},"airDefence":{"min":-10,"raw":-10,"max":-7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":-10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-10,"agilityRequirement":0},"droppedBy":[{"name":"Carrion Spider","coords":[[1343,9,-5210,8],[1386,9,-5196,8],[1327,7,-5381,8],[1385,7,-5433,8],[1484,29,-5519,8],[1471,29,-5538,8],[1435,24,-5530,8],[1337,4,-5148,5],[1323,2,-5153,5],[1314,10,-5245,10],[1425,7,-5201,10],[1476,73,-5571,10]]},{"name":"Fire Scarab","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]}]},"Byte":{"internalName":"Byte","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91},"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"elementalDefence":20},"base":{"baseHealth":512},"rarity":"legendary"},"Sawtooth":{"internalName":"Sawtooth","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":624,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"assassin","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":3,"dropMeta":{"name":"Fallen Factory","type":"dungeonMerchant","coordinates":[-1682,79,-2605]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"damage":20,"3rdSpellCost":-15,"mainAttackRange":20,"elementalDamage":10,"elementalDefence":-25},"base":{"baseDamage":{"min":20,"raw":20,"max":45},"baseEarthDamage":{"min":10,"raw":10,"max":35},"baseThunderDamage":{"min":10,"raw":10,"max":35},"baseWaterDamage":{"min":10,"raw":10,"max":35},"baseFireDamage":{"min":10,"raw":10,"max":35},"baseAirDamage":{"min":10,"raw":10,"max":35}},"rarity":"legendary"},"Comrade":{"internalName":"Comrade","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":496,"dropRestriction":"never","identified":true,"requirements":{"level":91,"classRequirement":"archer","defence":50},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawDefence":7,"spellDamage":-12,"healthRegenRaw":200,"rawHealth":2250,"thorns":25,"earthDefence":-15,"fireDefence":20},"base":{"baseDamage":{"min":105,"raw":105,"max":135},"baseFireDamage":{"min":30,"raw":30,"max":50}},"rarity":"rare"},"Juneberry":{"internalName":"Juneberry","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":479,"dropRestriction":"normal","requirements":{"level":91,"classRequirement":"archer","intelligence":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawIntelligence":8,"rawAgility":7,"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":4,"raw":12,"max":16},"waterDamage":{"min":9,"raw":31,"max":40},"airDamage":{"min":9,"raw":31,"max":40},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":70,"raw":70,"max":85},"baseWaterDamage":{"min":65,"raw":65,"max":90},"baseAirDamage":{"min":65,"raw":65,"max":90}},"rarity":"unique"},"Return to Ether":{"internalName":"Return to Ether","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":679,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"archer","intelligence":84,"agility":49},"powderSlots":2,"lore":"This enigmatic weapon can suddenly blink out of reality with no warning only to appear exactly where it was left later. Artificers have determined that almost the entire bow, by all known laws of nature and magic, should not exist.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAgility":44,"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":7,"raw":22,"max":29},"xpBonus":{"min":8,"raw":26,"max":34},"thunderDamage":{"min":-65,"raw":-50,"max":-35},"waterDamage":{"min":12,"raw":40,"max":52},"fireDefence":{"min":14,"raw":46,"max":60}},"base":{"baseDamage":{"min":12,"raw":12,"max":126},"baseAirDamage":{"min":16,"raw":16,"max":162}},"rarity":"legendary"},"Anti-Causality":{"internalName":"Anti-Causality","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":90},"majorIds":{"Reckless Abandon":"+Reckless Abandon: Sacrifice War Scream's defense bonus to give Tempest 3 extra hits and extra damage."},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"healthRegenRaw":{"min":50,"raw":167,"max":217},"lifeSteal":{"min":-217,"raw":-167,"max":-117},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":4,"raw":12,"max":16},"knockback":{"min":-130,"raw":-100,"max":-70}},"base":{"baseHealth":4000,"baseEarthDefence":65,"baseThunderDefence":65,"baseWaterDefence":65,"baseFireDefence":65,"baseAirDefence":65},"rarity":"fabled"},"Pendant of Prosperity":{"internalName":"Pendant of Prosperity","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":90,"quest":"Fantastic Voyage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"rawHealth":{"min":-130,"raw":-100,"max":-70},"lootBonus":{"min":5,"raw":16,"max":21},"stealing":{"min":2,"raw":5,"max":7}},"rarity":"rare"},"Centrifugal":{"internalName":"Centrifugal","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":262,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"mage","strength":25,"intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDamage":{"min":2,"raw":8,"max":10},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":75,"raw":75,"max":105},"baseEarthDamage":{"min":75,"raw":75,"max":95}},"rarity":"unique"},"Low World Greaves":{"internalName":"Low World Greaves","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"strength":40,"intelligence":40},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"damage":18,"rawMaxMana":35,"stealing":6,"earthDamage":12,"waterDamage":12,"earthDefence":30,"waterDefence":30},"base":{"baseHealth":2350,"baseEarthDefence":120,"baseWaterDefence":80,"baseAirDefence":-80},"rarity":"rare"},"Struggle":{"internalName":"Struggle","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":50},"powderSlots":2,"identifications":{"rawDexterity":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":233,"raw":775,"max":1008},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-8,"raw":-6,"max":-4},"exploding":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":9,"raw":31,"max":40},"waterDamage":{"min":-30,"raw":-23,"max":-16}},"base":{"baseHealth":2500,"baseEarthDefence":-150,"baseThunderDefence":180},"rarity":"unique"},"Cloudy Diamond Boots":{"internalName":"Cloudy Diamond Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90},"powderSlots":3,"base":{"baseHealth":1985},"rarity":"common"},"Blind Thrust":{"internalName":"Blind Thrust","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":95},"powderSlots":2,"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":480,"raw":1600,"max":2080},"manaSteal":{"min":2,"raw":8,"max":10},"earthMainAttackDamage":{"min":9,"raw":31,"max":40},"rawAttackSpeed":{"min":-18,"raw":-14,"max":-10},"earthDamage":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":3725,"baseThunderDefence":-300},"rarity":"fabled"},"Steel Wool":{"internalName":"Steel Wool","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":35,"defence":35},"powderSlots":2,"identifications":{"rawDexterity":8,"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":60,"raw":200,"max":260},"1stSpellCost":{"min":-3,"raw":-9,"max":-12},"2ndSpellCost":{"min":-3,"raw":-9,"max":-12},"3rdSpellCost":{"min":-3,"raw":-9,"max":-12},"4thSpellCost":{"min":-3,"raw":-9,"max":-12},"earthDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2300,"baseEarthDefence":-120,"baseThunderDefence":80,"baseWaterDefence":-120,"baseFireDefence":80,"baseAirDefence":80},"rarity":"unique"},"Crusade Sabatons":{"internalName":"Crusade Sabatons","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":60,"defence":70},"powderSlots":3,"lore":"One of the very few physically-powerful artifacts of the Villagers, these boots were used in the initial crusades against the Green-skins, to overpower the Orcs via raw physical might. Though effective, they have not seen use in a long time.","identifications":{"rawStrength":20,"rawDefence":25,"healthRegen":{"min":9,"raw":31,"max":40},"rawHealth":{"min":525,"raw":1750,"max":2275},"thorns":{"min":11,"raw":35,"max":46},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":5050,"baseEarthDefence":125,"baseFireDefence":200},"rarity":"mythic"},"Follow the Wind":{"internalName":"Follow The Wind","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":90,"agility":60},"lore":"A lost relic from the Wind Fortress, a mythical stronghold of the Sky Islands that fell into the Void long ago. A small mechanism within the bracelet points towards its place of origin.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":5,"raw":18,"max":23},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDefence":40,"baseAirDefence":50},"rarity":"legendary"},"Pass Band":{"internalName":"Pass Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":90,"strength":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"poison":{"min":245,"raw":815,"max":1060},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13}},"rarity":"unique"},"Tera":{"internalName":"Tera","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":90,"strength":50,"dexterity":50},"powderSlots":3,"dropMeta":{"name":"Geyser Pit","type":"altar","coordinates":[-1573,27,-3204]},"identifications":{"rawStrength":10,"rawDexterity":10,"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":6,"raw":20,"max":26},"earthDamage":{"min":11,"raw":36,"max":47},"thunderDamage":{"min":11,"raw":36,"max":47}},"base":{"baseHealth":3225,"baseEarthDefence":100,"baseThunderDefence":100,"baseAirDefence":-200},"rarity":"legendary"},"Subtle Calamity":{"internalName":"Jewelled Sinew","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":574,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"archer","strength":35,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawIntelligence":10,"rawAgility":10,"spellDamage":{"min":7,"raw":23,"max":30},"manaRegen":{"min":-10,"raw":-8,"max":-6},"manaSteal":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":-16,"raw":-12,"max":-8},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseEarthDamage":{"min":65,"raw":65,"max":120},"baseAirDamage":{"min":65,"raw":65,"max":120}},"rarity":"unique"},"Sigil of Existence":{"internalName":"Sigil of Existence","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":270,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"mage","intelligence":40,"agility":40},"powderSlots":3,"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawIntelligence":16,"rawAgility":10,"rawHealth":{"min":615,"raw":2050,"max":2665},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":9,"raw":31,"max":40},"fireDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":9,"raw":31,"max":40}},"base":{"baseDamage":{"min":40,"raw":40,"max":42},"baseWaterDamage":{"min":40,"raw":40,"max":50},"baseAirDamage":{"min":30,"raw":30,"max":60}},"rarity":"rare"},"Deserter":{"internalName":"Deserter","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":474,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"assassin","strength":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":16,"rawAgility":16,"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":50,"raw":50,"max":90},"baseEarthDamage":{"min":65,"raw":65,"max":95},"baseAirDamage":{"min":55,"raw":55,"max":105}},"rarity":"unique"},"Terra's Mold":{"internalName":"Terra's Mold","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":60},"powderSlots":3,"identifications":{"rawStrength":10,"mainAttackDamage":{"min":7,"raw":23,"max":30},"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":1200,"raw":4000,"max":5200},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":5,"raw":15,"max":20},"sprint":{"min":-32,"raw":-25,"max":-17},"earthDamage":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":3225,"baseEarthDefence":175,"baseWaterDefence":50,"baseAirDefence":-125},"rarity":"legendary"},"Frenzied Mockery":{"internalName":"Frenzied Mockery","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":50,"defence":40},"powderSlots":2,"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":43,"raw":144,"max":187},"rawHealth":{"min":-520,"raw":-400,"max":-280},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":4,"raw":14,"max":18},"thunderDefence":{"min":-65,"raw":-50,"max":-35},"fireDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseHealth":2727,"baseThunderDefence":115,"baseWaterDefence":-135,"baseFireDefence":95,"baseAirDefence":-75},"rarity":"rare"},"Runic Coin":{"internalName":"Runic Coin","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":90},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":375},"rarity":"unique"},"Asphyxia":{"internalName":"Asphyxia","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":75},"powderSlots":3,"lore":"A condition of severely deficient supply of oxygen to the body that arises from abnormal breathing; practitioners that abuse specific magic combos are often found incapacitated by said condition.","identifications":{"rawDexterity":15,"rawAgility":-13,"rawMainAttackDamage":{"min":47,"raw":155,"max":202},"rawSpellDamage":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":9,"raw":30,"max":39},"airDamage":{"min":-65,"raw":-50,"max":-35}},"base":{"baseHealth":2900,"baseThunderDefence":150,"baseAirDefence":-200},"rarity":"legendary"},"Pyromaniac":{"internalName":"Pyromaniac","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":90,"defence":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawIntelligence":-3,"spellDamage":{"min":3,"raw":11,"max":14},"healthRegenRaw":{"min":-78,"raw":-60,"max":-42},"walkSpeed":{"min":2,"raw":7,"max":9},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":200,"baseWaterDefence":-40,"baseFireDefence":-40},"rarity":"rare"},"Nuance":{"internalName":"Nuance","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":55,"agility":55},"powderSlots":2,"identifications":{"rawDexterity":8,"rawAgility":8,"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"spellDamage":{"min":7,"raw":22,"max":29},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":15,"max":20},"sprintRegen":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-32,"raw":-25,"max":-17},"airDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":2200,"baseEarthDefence":-50,"baseWaterDefence":-50},"rarity":"rare"},"Darkiron Aegis":{"internalName":"Darkiron Aegis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"defence":65},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawDexterity":10,"rawDefence":5,"rawMainAttackDamage":1200,"healthRegen":15,"healthRegenRaw":160,"rawAttackSpeed":-4,"walkSpeed":-10,"fireDefence":40},"base":{"baseHealth":3275,"baseWaterDefence":-80,"baseFireDefence":150},"rarity":"rare"},"Sano's Care":{"internalName":"Sano's Care","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"intelligence":45,"defence":55},"powderSlots":3,"identifications":{"rawIntelligence":5,"rawDefence":10,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"healthRegen":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":65,"raw":215,"max":280},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDefence":75,"baseThunderDefence":75,"baseWaterDefence":200,"baseFireDefence":200,"baseAirDefence":75},"rarity":"unique"},"Corrupted Uth Sandals":{"internalName":"Corrupted Uth Sandals","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"defence":85,"agility":85},"powderSlots":3,"dropMeta":{"name":"Corrupted Ice Barrows","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"thorns":20,"reflection":20,"walkSpeed":30},"base":{"baseHealth":3400,"baseWaterDefence":-80,"baseFireDefence":75,"baseAirDefence":75},"rarity":"set"},"Warming Heart":{"internalName":"Warming Heart","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"defence":50,"agility":40},"powderSlots":2,"identifications":{"rawDefence":5,"rawAgility":5,"spellDamage":17,"healthRegen":25,"lifeSteal":255,"fireDefence":25},"base":{"baseHealth":3000,"baseWaterDefence":-250,"baseFireDefence":140,"baseAirDefence":110},"rarity":"rare"},"Horizon":{"internalName":"Horizon","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":60,"agility":45},"powderSlots":3,"identifications":{"rawDexterity":5,"rawAgility":10,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"rawSpellDamage":{"min":-208,"raw":-160,"max":-112},"healthRegenRaw":{"min":45,"raw":150,"max":195},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"rawAttackSpeed":1,"walkSpeed":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":2750,"baseEarthDefence":120,"baseFireDefence":-100,"baseAirDefence":100},"rarity":"rare"},"Scaldsteppers":{"internalName":"Scaldsteppers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"intelligence":40,"defence":30},"powderSlots":2,"identifications":{"rawIntelligence":7,"spellDamage":{"min":6,"raw":20,"max":26},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"exploding":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":2325,"baseThunderDefence":-100,"baseWaterDefence":110,"baseFireDefence":80,"baseAirDefence":-90},"rarity":"unique"},"Earth Breaker":{"internalName":"Earth Breaker","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":50,"defence":40},"powderSlots":2,"identifications":{"rawStrength":9,"rawDefence":8,"rawMainAttackDamage":{"min":345,"raw":1150,"max":1495},"lifeSteal":{"min":66,"raw":220,"max":286},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":8,"raw":25,"max":33},"earthDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":9,"raw":31,"max":40}},"base":{"baseHealth":2725,"baseEarthDefence":90,"baseFireDefence":90,"baseAirDefence":-150},"rarity":"rare"},"Loaded Question":{"internalName":"Loaded Question","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":705,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"shaman","dexterity":70},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawIntelligence":-10,"rawDefence":-15,"rawMainAttackDamage":{"min":42,"raw":140,"max":182},"rawSpellDamage":{"min":72,"raw":240,"max":312},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":9,"raw":30,"max":39},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":72,"raw":72,"max":78},"baseThunderDamage":{"min":140,"raw":140,"max":165}},"rarity":"legendary"},"Bronze Basic Bracelet":{"internalName":"Bronze Basic Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90},"lore":"This bracelet is awarded to participants of the Legendary Challenge. Its modular design allows it to be upgraded in a number of different ways.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":10,"lootBonus":10,"stealing":5},"base":{"baseHealth":500},"rarity":"legendary"},"Impudent":{"internalName":"Impudent","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":90,"strength":25,"agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawStrength":4,"rawAgility":3,"rawMainAttackDamage":{"min":11,"raw":37,"max":48}},"rarity":"unique"},"Wybel Tooth Dagger":{"internalName":"Wybel Tooth Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":388,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawHealth":{"min":-650,"raw":-500,"max":-350},"xpBonus":{"min":9,"raw":30,"max":39},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":140,"raw":140,"max":170}},"rarity":"rare"},"Jewelled Broach":{"internalName":"Jewelled Broach","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":90},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"elementalDefence":7},"base":{"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"rare"},"Bronze Basic Necklace":{"internalName":"Bronze Basic Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90},"lore":"This necklace is awarded to participants of the Legendary Challenge. Its modular design allows it to be upgraded in a number of different ways.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"xpBonus":10,"lootBonus":10},"base":{"baseHealth":500},"rarity":"legendary"},"Siege Ram":{"internalName":"Siege Ram","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":368,"dropRestriction":"never","identified":true,"requirements":{"level":90,"classRequirement":"warrior","strength":40},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":6,"mainAttackDamage":20,"spellDamage":-15,"lootBonus":10},"base":{"baseDamage":{"min":130,"raw":130,"max":185},"baseEarthDamage":{"min":65,"raw":65,"max":110}},"rarity":"unique"},"Coiled Briar":{"internalName":"Coiled Briar","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":90},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"thorns":{"min":3,"raw":11,"max":14},"reflection":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseFireDefence":-15},"rarity":"rare"},"Wybel Horn Spear":{"internalName":"Wybel Horn Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":330,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawHealth":{"min":-650,"raw":-500,"max":-350},"xpBonus":{"min":9,"raw":30,"max":39},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":190,"raw":190,"max":250}},"rarity":"rare"},"Scorpio":{"internalName":"Scorpio","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"strength":35,"defence":55},"powderSlots":2,"lore":"The carapace of the common Maexi pet fire scarabs, while alone, only cause minor burns to the touch. However, when woven together, they produce a variety of cumulative effects.","identifications":{"rawDefence":8,"healthRegenRaw":{"min":56,"raw":185,"max":241},"poison":{"min":2925,"raw":9750,"max":12675},"healingEfficiency":{"min":5,"raw":15,"max":20},"thorns":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":4,"raw":12,"max":16},"airDefence":{"min":-84,"raw":-65,"max":-45}},"base":{"baseHealth":3300,"baseEarthDefence":120,"baseFireDefence":120},"rarity":"legendary"},"Exhaustion":{"internalName":"Exhaustion","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"defence":70},"powderSlots":3,"identifications":{"rawDefence":7,"healthRegen":{"min":11,"raw":35,"max":46},"healthRegenRaw":{"min":45,"raw":150,"max":195},"rawHealth":{"min":150,"raw":500,"max":650},"lifeSteal":{"min":104,"raw":345,"max":449},"manaRegen":{"min":-8,"raw":-6,"max":-4},"rawAttackSpeed":-1,"walkSpeed":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":2750,"baseWaterDefence":-65,"baseFireDefence":140},"rarity":"rare"},"Bronze Basic Ring":{"internalName":"Bronze Basic Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90},"lore":"This ring is awarded to participants of the Legendary Challenge. Its modular design allows it to be upgraded in a number of different ways.","dropMeta":{"name":"Legendary Island","type":"challenge","coordinates":[-1113,65,-2426]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"xpBonus":12,"lootBonus":12},"base":{"baseHealth":500},"rarity":"legendary"},"Darksteel Full Helm":{"internalName":"Darksteel Full Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":90,"dexterity":45,"defence":45},"powderSlots":2,"identifications":{"rawStrength":10,"rawDexterity":10,"rawDefence":10,"rawMainAttackDamage":{"min":315,"raw":1050,"max":1365},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"rawAttackSpeed":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2475,"baseEarthDefence":-80,"baseThunderDefence":100,"baseWaterDefence":-120,"baseFireDefence":100},"rarity":"rare"},"Mountain's Song":{"internalName":"Mountain's Song","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":541,"dropRestriction":"never","identified":true,"requirements":{"level":90,"classRequirement":"shaman","strength":40,"defence":40},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"mainAttackDamage":15,"rawHealth":1000,"1stSpellCost":35,"4thSpellCost":-21,"exploding":25},"base":{"baseEarthDamage":{"min":510,"raw":510,"max":550},"baseFireDamage":{"min":510,"raw":510,"max":550}},"rarity":"unique"},"Wybel Fluff Bow":{"internalName":"Wybel Fluff Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":491,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"identifications":{"rawHealth":{"min":-650,"raw":-500,"max":-350},"xpBonus":{"min":9,"raw":30,"max":39},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":300,"raw":300,"max":355}},"rarity":"rare"},"Golemlus Core":{"internalName":"Golemlus Core","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"strength":25,"defence":25},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"healthRegenRaw":110,"walkSpeed":-6,"earthDamage":8,"thunderDamage":-10},"base":{"baseHealth":1225,"baseEarthDefence":50,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":50,"baseAirDefence":50},"rarity":"rare"},"Big Arm":{"internalName":"Big Arm","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":552,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"assassin","strength":55},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":15,"mainAttackDamage":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":69,"raw":231,"max":300},"airDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":430,"raw":430,"max":900}},"rarity":"rare"},"Eradian Full Helm":{"internalName":"Eradian Full Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"defence":50},"powderSlots":3,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawDefence":8,"mainAttackDamage":20,"spellDamage":20,"healthRegen":15,"thorns":15,"reflection":10,"fireDamage":5},"base":{"baseHealth":2500,"baseEarthDefence":-60,"baseThunderDefence":-60,"baseWaterDefence":80,"baseFireDefence":80},"rarity":"unique"},"Starburst":{"internalName":"Starburst","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":288,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"mage","agility":55},"powderSlots":3,"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawSpellDamage":{"min":48,"raw":160,"max":208},"healthRegenRaw":{"min":-195,"raw":-150,"max":-105},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseAirDamage":{"min":35,"raw":35,"max":55}},"rarity":"rare"},"Phoenix Prince's Crown":{"internalName":"Phoenix Prince's Crown","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","requirements":{"level":90,"defence":35,"agility":35},"powderSlots":2,"lore":"The Phoenix Prince is a mythical figure spoken of in Avos legend. His crown cursed him in an endless cycle of death and rebirth.","identifications":{"rawDefence":7,"rawAgility":9,"healthRegen":{"min":8,"raw":27,"max":35},"healthRegenRaw":{"min":62,"raw":205,"max":267},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3900,"baseWaterDefence":-125,"baseFireDefence":125,"baseAirDefence":125},"rarity":"legendary"},"Wybel Ivory Wand":{"internalName":"Wybel Ivory Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":242,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"rawHealth":{"min":-650,"raw":-500,"max":-350},"xpBonus":{"min":9,"raw":30,"max":39},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":100,"raw":100,"max":135}},"rarity":"rare"},"Lightningrod":{"internalName":"Lightningrod","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":270,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"mage","dexterity":30,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":8,"spellDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":7,"raw":23,"max":30},"thunderDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":20,"raw":20,"max":67},"baseThunderDamage":{"min":20,"raw":20,"max":67}},"rarity":"unique"},"Relend's Refrain":{"internalName":"Relend's Refrain","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":90,"agility":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":7,"max":9},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":-15,"baseThunderDefence":-50,"baseWaterDefence":20,"baseAirDefence":40},"rarity":"rare"},"Breakbore":{"internalName":"Breakbore","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":465,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":90,"classRequirement":"warrior","strength":35,"dexterity":35},"powderSlots":3,"dropMeta":{"name":"Geyser Pit","type":"altar","coordinates":[-1573,27,-3204]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":13,"mainAttackDamage":{"min":9,"raw":30,"max":39},"exploding":{"min":17,"raw":57,"max":74},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":90,"raw":90,"max":150},"baseEarthDamage":{"min":60,"raw":60,"max":130},"baseThunderDamage":{"min":60,"raw":60,"max":130}},"rarity":"rare"},"Wybel Carved Relik":{"internalName":"Wybel Carved Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":484,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawHealth":{"min":-650,"raw":-500,"max":-350},"xpBonus":{"min":9,"raw":30,"max":39},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":220,"raw":220,"max":250}},"rarity":"rare"},"Elder Oak Roots":{"internalName":"Elder Oak Roots","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"strength":40,"intelligence":30},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"spellDamage":15,"healthRegen":20,"healthRegenRaw":200,"manaRegen":12,"walkSpeed":-12,"earthDamage":20,"waterDamage":20,"airDefence":-25},"base":{"baseHealth":2725,"baseEarthDefence":120,"baseWaterDefence":120},"rarity":"rare"},"Ski Mask":{"internalName":"Ski Mask","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"intelligence":60,"agility":45},"powderSlots":2,"identifications":{"mainAttackDamage":-12,"manaRegen":18,"waterDamage":25,"airDamage":25},"base":{"baseHealth":2300,"baseThunderDefence":-120,"baseWaterDefence":60,"baseAirDefence":60},"rarity":"rare"},"Garland":{"internalName":"Garland","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":90,"strength":45,"intelligence":40},"powderSlots":2,"identifications":{"spellDamage":22,"rawSpellDamage":225,"rawMaxMana":25,"thunderDefence":-14,"airDefence":-14},"base":{"baseHealth":2275,"baseEarthDefence":90,"baseThunderDefence":-160},"rarity":"unique"},"Marsufosa Pelt":{"internalName":"Marsufosa Pelt","type":"ingredient","requirements":{"level":90,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Marsufosa","coords":[[-1686,80,-2143,14],[-1686,80,-2143,14],[-1697,80,-2210,14],[-1697,80,-2210,14],[-1620,80,-2184,14],[-1554,80,-2192,14],[-1496,76,-2221,14],[-1461,61,-2363,14],[-1559,105,-2297,14],[-1755,64,-2394,14],[-1773,64,-2412,14],[-1701,65,-2457,14],[-1822,61,-2527,14],[-1584,126,-2332,14],[-1468,61,-2352,14]]}]},"Turtle Shell":{"internalName":"Turtle Shell","type":"ingredient","requirements":{"level":90,"skills":["armouring"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"thorns":{"min":2,"raw":2,"max":4},"rawDefence":{"min":1,"raw":1,"max":1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Astrochelys","coords":[[-1713,6,-3154,5],[-1713,7,-3154,7],[-1713,8,-3154,9],[-1713,9,-3154,11],[-1800,51,-3087,5]]},{"name":"Astrochelys Manis","coords":[[-1736,132,-3376,10],[-1841,110,-3265,10],[-1871,109,-3254,10],[-1865,108,-3258,10],[-1858,94,-3238,10],[-1862,94,-3231,10],[-1839,80,-3225,10],[-1659,48,-3150,10],[-1479,41,-3200,10],[-1473,43,-3141,10],[-1453,46,-3189,10],[-1429,49,-3182,10],[-1257,76,-3274,10],[-1289,66,-3264,10],[-1329,99,-3280,10],[-1365,111,-3290,10],[-1414,134,-3292,10],[-1445,132,-3283,20],[-1444,132,-3273,10],[-1440,132,-3297,10],[-1427,134,-3299,10],[-1437,134,-3315,25],[-1437,134,-3315,25],[-1437,134,-3315,25],[-1437,138,-3315,25],[-1437,136,-3315,25],[-1508,90,-3299,25],[-1508,90,-3299,25],[-1551,60,-3393,10],[-1579,36,-3430,10],[-1386,163,-3344,10],[-1569,40,-3317,10]]}]},"7-Yottabyte Storage Component":{"internalName":"7-Yottabyte Storage Component","type":"ingredient","requirements":{"level":90,"skills":["armouring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"356:0"},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":-12,"intelligenceRequirement":0,"defenceRequirement":-12,"agilityRequirement":-12},"droppedBy":[{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]}]},"Sunken Scales":{"internalName":"Sunken Scales","type":"ingredient","requirements":{"level":90,"skills":["scribing"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"waterDamage":{"min":2,"raw":2,"max":3},"waterDefence":{"min":6,"raw":6,"max":8}},"tier":0,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Warm Fleris":{"internalName":"Warm Fleris","type":"ingredient","requirements":{"level":90,"skills":["cooking"]},"icon":{"format":"skin","value":"38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429"},"identifications":{"rawDefence":{"min":5,"raw":5,"max":5},"healthRegenRaw":{"min":20,"raw":20,"max":25}},"tier":1,"consumableOnlyIDs":{"duration":-390,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-10,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Warm Fleris","coords":[1381,141,-5309,20]},{"name":"Fleris Matriarch","coords":[1429,14,-5089,12]},{"name":"Canyon Fleris","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]}]},"Rotten Teeth":{"internalName":"Rotten Teeth","type":"ingredient","requirements":{"level":90,"skills":["alchemism"]},"icon":{"format":"legacy","value":"435:0"},"identifications":{"lifeSteal":{"min":-50,"raw":-50,"max":-45},"mainAttackDamage":{"min":10,"raw":10,"max":15}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pyret","coords":[1224,42,-5461,18]},{"name":"Hellkite","coords":[[1505,140,-5218,13],[1505,140,-5218,13],[1431,144,-5237,10],[1441,137,-5275,15],[1471,136,-5254,10]]},{"name":"Troglodyte Mauler","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Runt","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Champion","coords":[1222,18,-5520,16]},{"name":"Troglodyte Scourge","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Wild Hound","coords":[1337,160,-5152,20]},{"name":"Savage Hound","coords":[1337,160,-5152,20]}]},"Enhanced Potential Microchip":{"internalName":"Enhanced Potential Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"spellDamage":{"min":8,"raw":8,"max":8},"mainAttackDamage":{"min":10,"raw":10,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"U-0lockBot","coords":[[-1432,132,-3171,42],[-1761,73,-2618,42],[-1399,98,-2847,42],[-1702,71,-2759,42]]}]},"Wybel Fluff":{"internalName":"Wybel Fluff","type":"ingredient","requirements":{"level":90,"skills":["tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Spooky","coords":[-584,62,-5465,0]},{"name":"Nibbles","coords":[466,67,-1629,0]},{"name":"Scotch","coords":[-493,47,-4963,0]},{"name":"Rocky","coords":[1043,29,-5039,0]},{"name":"Sandy","coords":[924,80,-2038,0]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Wild Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Scared Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Seafoam","coords":[107,66,-3165,0]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Affectionate Wybel","coords":[[1325,80,-4628,30],[1325,80,-4628,30]]},{"name":"Bluebell","coords":[1023,122,-4503,0]},{"name":"Honeydew","coords":[-856,84,-945,0]},{"name":"Fluffy","coords":[-1853,119,-4521,0]}]},"Fiberglass Frame":{"internalName":"Fiberglass Frame","type":"ingredient","requirements":{"level":90,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"95:15"},"identifications":{"rawDefence":{"min":9,"raw":9,"max":10},"fireDefence":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-97000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":14,"agilityRequirement":0},"droppedBy":[{"name":"WW-10avager Automaton","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]},{"name":"Marksman Drone","coords":[[-1268,59,-3370,2],[-1337,74,-3365,2],[-1575,52,-3446,2],[-1596,48,-3319,2],[-1668,62,-3135,2],[-1710,90,-2701,2],[-1768,86,-2542,2],[-1363,102,-2625,2],[-1871,93,-2802,2],[-1795,90,-2727,2],[-1475,78,-2629,2],[-1345,35,-2745,2],[-1306,46,-2662,1]]}]},"Incremental Mapping Module":{"internalName":"Incremental Mapping Module","type":"ingredient","requirements":{"level":90,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"walkSpeed":{"min":11,"raw":11,"max":14},"manaRegen":{"min":5,"raw":5,"max":6},"rawHealth":{"min":-575,"raw":-575,"max":-475}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":40},"droppedBy":[{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]}]},"Igneous Thread":{"internalName":"Igneous Thread","type":"ingredient","requirements":{"level":90,"skills":["tailoring"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"rawAgility":{"min":-4,"raw":-4,"max":-3},"rawFireSpellDamage":{"min":52,"raw":52,"max":58}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-57000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":25,"agilityRequirement":0}},"Enhanced Behaviour Microchip":{"internalName":"Enhanced Behaviour Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"spellDamage":{"min":8,"raw":8,"max":9},"manaRegen":{"min":6,"raw":6,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":30,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"U-0ervant Bot","coords":[[-1977,54,-3315,42],[-1977,80,-3315,42],[-1597,87,-3358,42],[-1597,40,-3358,42],[-1628,70,-3195,42],[-2063,58,-3310,20],[-1585,35,-3123,35],[-1615,130,-2460,30]]}]},"Pirate Beard":{"internalName":"Pirate Beard","type":"ingredient","requirements":{"level":90,"skills":["alchemism"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawMainAttackDamage":{"min":48,"raw":48,"max":60},"waterDamage":{"min":8,"raw":8,"max":15}},"tier":1,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":5,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pirate Guard","coords":null},{"name":"Pirate","coords":[[-1222,54,-3282,5],[-1228,54,-3276,10],[-1242,52,-3277,5],[-1242,49,-3283,4]]},{"name":"Stormcaller Garrison Commander","coords":[-1216,63,-3307,3]},{"name":"Pirate Captain","coords":[-1216,63,-3307,3]}]},"Overheated Processor":{"internalName":"Overheated Processor","type":"ingredient","requirements":{"level":90,"skills":["jeweling"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"lifeSteal":{"min":40,"raw":40,"max":50},"rawDefence":{"min":1,"raw":1,"max":2},"rawDexterity":{"min":1,"raw":1,"max":2}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-145000,"strengthRequirement":0,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0}},"Enhanced Physics Microchip":{"internalName":"Enhanced Physics Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"reflection":{"min":18,"raw":18,"max":22},"airDamage":{"min":9,"raw":9,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":30},"droppedBy":[{"name":"S-3tealth Bot","coords":[[-1575,135,-2464,8],[-1418,134,-3314,55]]}]},"Twisted Coral":{"internalName":"Twisted Coral","type":"ingredient","requirements":{"level":90,"skills":["alchemism"]},"icon":{"format":"legacy","value":"175:1"},"identifications":{"healthRegen":{"min":7,"raw":7,"max":8},"healthRegenRaw":{"min":-65,"raw":-65,"max":-55}},"tier":0,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Perkish Potato":{"internalName":"Perkish Potato","type":"ingredient","requirements":{"level":90,"skills":["cooking"]},"icon":{"format":"legacy","value":"392:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pernix Monkey","coords":[[-1686,80,-2143,14],[-1686,80,-2143,14],[-1697,80,-2210,14],[-1697,80,-2210,14],[-1620,80,-2184,14],[-1554,80,-2192,14],[-1496,76,-2221,14],[-1461,61,-2363,14],[-1559,105,-2297,14],[-1755,64,-2394,14],[-1773,64,-2412,14],[-1701,65,-2457,14],[-1822,61,-2527,14],[-1584,126,-2332,14],[-1468,61,-2352,14]]},{"name":"Pernix Monkey","coords":[[-1741,76,-2377,15],[-1434,77,-3214,100]]}]},"Enhanced Dynamics Microchip":{"internalName":"Enhanced Dynamics Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"rawMainAttackDamage":{"min":65,"raw":65,"max":70},"manaSteal":{"min":4,"raw":4,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":30,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"H-10ar Machine","coords":[[-1515,90,-2289,42],[-1515,71,-2289,42],[-1515,106,-2289,42],[-1515,132,-2289,42],[-1505,41,-3381,25],[-1438,40,-3396,25]]},{"name":"H-20ar Machine","coords":[[-1515,90,-2289,42],[-1515,71,-2289,42],[-1515,106,-2289,42],[-1515,132,-2289,42],[-1505,41,-3381,25],[-1438,40,-3396,25]]},{"name":"H-21ar Machine","coords":[-1572,30,-3175,75]}]},"Shorting Wire":{"internalName":"Shorting Wire","type":"ingredient","requirements":{"level":90,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"thunderDamage":{"min":2,"raw":2,"max":5},"thunderDefence":{"min":-5,"raw":-5,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":15,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Enhanced Pathfinding Microchip":{"internalName":"Enhanced Pathfinding Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"mainAttackDamage":{"min":12,"raw":12,"max":16},"poison":{"min":1200,"raw":1200,"max":1300}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":30,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"U-0iner Bot","coords":[[-1432,132,-3171,42],[-1761,73,-2618,42],[-1399,98,-2847,42],[-1702,71,-2759,42]]},{"name":"P-1ogue Patroller","coords":[[-1434,77,-3214,150],[-1434,140,-3214,100],[-1638,77,-3140,75]]},{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]}]},"Ashen Hide":{"internalName":"Ashen Hide","type":"ingredient","requirements":{"level":90,"skills":["tailoring"]},"icon":{"format":"legacy","value":"263:0"},"identifications":{"waterDefence":{"min":-12,"raw":-12,"max":-8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":6,"agilityRequirement":0},"droppedBy":[{"name":"Charring Minotaur","coords":[[1461,4,-5240,20],[1234,149,-5345,25],[1295,166,-5369,25],[1268,141,-5293,16],[1280,150,-5230,16],[1384,139,-5104,16],[1441,143,-5170,8],[1441,143,-5170,8],[1526,148,-5116,12],[1515,148,-5092,12],[1541,149,-5087,16],[1571,152,-5061,16],[1571,152,-5061,16],[1571,152,-5061,16],[1251,164,-5150,16],[1268,159,-5136,16]]},{"name":"Charring Minotaur","coords":null},{"name":"Hell Avem","coords":[[1378,7,-5409,15],[1355,9,-5534,15],[1388,10,-5140,25]]},{"name":"Troglodyte Runt","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Champion","coords":[1222,18,-5520,16]},{"name":"Troglodyte Scourge","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Troglodyte Mauler","coords":[[1297,28,-5574,6],[1287,27,-5601,12],[1245,39,-5572,12],[1225,34,-5574,12]]},{"name":"Pyroclastic Hydra","coords":null}]},"Optic Lens":{"internalName":"Optic Lens","type":"ingredient","requirements":{"level":90,"skills":["armouring"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"rawWaterDamage":{"min":20,"raw":20,"max":25},"rawAirDamage":{"min":20,"raw":20,"max":25}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-68000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]}]},"Enhanced Post-Processing Microchip":{"internalName":"Enhanced Post-Processing Microchip","type":"ingredient","requirements":{"level":90,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"lifeSteal":{"min":80,"raw":80,"max":90},"healthRegen":{"min":9,"raw":9,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-98000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":30,"agilityRequirement":0},"droppedBy":[{"name":"L-2unition Drone","coords":[[-1638,80,-2248,20],[-1706,70,-2516,20],[-1721,77,-2560,20],[-1759,73,-2563,20],[-1767,73,-2620,40]]},{"name":"L-2nforcer Drone","coords":[[-1638,80,-2248,20],[-1706,70,-2516,20],[-1721,77,-2560,20],[-1759,73,-2563,20],[-1767,73,-2620,40]]},{"name":"U-4epaired Bot","coords":[[-1450,54,-2845,10],[-1425,92,-2845,19],[-1370,92,-2733,45],[-1370,92,-2733,45],[-1518,38,-2856,10],[-1775,61,-2887,10]]}]},"Throbbing Avos Heart":{"internalName":"Throbbing Avos Heart","type":"ingredient","requirements":{"level":90,"skills":["cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"spellDamage":{"min":6,"raw":6,"max":8},"healthRegenRaw":{"min":15,"raw":15,"max":25}},"tier":1,"consumableOnlyIDs":{"duration":-380,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Avos Guard","coords":[[-1816,134,-3076,12],[-1826,117,-3123,5],[-1885,117,-3179,10],[-1803,108,-3276,10],[-1953,132,-3255,10],[-1950,155,-3298,10],[-1887,142,-3353,10],[-1821,145,-3353,10],[-1747,133,-3378,10]]},{"name":"Avos Shaman","coords":[[-1795,58,-3204,4],[-1792,67,-3226,4],[-1788,87,-3129,16]]},{"name":"Avos Young Soldier","coords":null},{"name":"Avos Shaman","coords":null}]},"Molten Gem 3":{"internalName":"Refined Molten Gem 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"72","name":"profession.gemMolten"}},"tier":3},"Avo Wood 1":{"internalName":"Refined Avo Wood 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"8c1ba63d5660511e5414d90f7ce6cef6875b66850429fe241f0bdf5e77e9d62c"},"tier":1},"Molten Oil 2":{"internalName":"Refined Molten Oil 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"91","name":"profession.oilMolten"}},"tier":2},"Sorghum String 1":{"internalName":"Refined Sorghum String 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"45","name":"profession.stringSorghum"}},"tier":1},"Molten Ingot 1":{"internalName":"Refined Molten Ingot 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"60","name":"profession.ingotMolten"}},"tier":1},"Avo Wood 3":{"internalName":"Refined Avo Wood 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"8c1ba63d5660511e5414d90f7ce6cef6875b66850429fe241f0bdf5e77e9d62c"},"tier":3},"Avo Paper 2":{"internalName":"Refined Avo Paper 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAvo"}},"tier":2},"Avo Paper 1":{"internalName":"Refined Avo Paper 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAvo"}},"tier":1},"Sorghum Grains 2":{"internalName":"Refined Sorghum Grains 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainSorghum"}},"tier":2},"Molten Oil 1":{"internalName":"Refined Molten Oil 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"91","name":"profession.oilMolten"}},"tier":1},"Avo Paper 3":{"internalName":"Refined Avo Paper 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAvo"}},"tier":3},"Molten Gem 2":{"internalName":"Refined Molten Gem 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"72","name":"profession.gemMolten"}},"tier":2},"Sorghum String 2":{"internalName":"Refined Sorghum String 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"45","name":"profession.stringSorghum"}},"tier":2},"Sorghum String 3":{"internalName":"Refined Sorghum String 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"45","name":"profession.stringSorghum"}},"tier":3},"Molten Meat 2":{"internalName":"Refined Molten Meat 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatMolten"}},"tier":2},"Molten Gem 1":{"internalName":"Refined Molten Gem 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"72","name":"profession.gemMolten"}},"tier":1},"Molten Meat 3":{"internalName":"Refined Molten Meat 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatMolten"}},"tier":3},"Molten Ingot 2":{"internalName":"Refined Molten Ingot 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"60","name":"profession.ingotMolten"}},"tier":2},"Molten Oil 3":{"internalName":"Refined Molten Oil 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"91","name":"profession.oilMolten"}},"tier":3},"Sorghum Grains 1":{"internalName":"Refined Sorghum Grains 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainSorghum"}},"tier":1},"Avo Wood 2":{"internalName":"Refined Avo Wood 2","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"8c1ba63d5660511e5414d90f7ce6cef6875b66850429fe241f0bdf5e77e9d62c"},"tier":2},"Molten Meat 1":{"internalName":"Refined Molten Meat 1","type":"material","identified":true,"requirements":{"level":90},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatMolten"}},"tier":1},"Sorghum Grains 3":{"internalName":"Refined Sorghum Grains 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"49","name":"profession.grainSorghum"}},"tier":3},"Molten Ingot 3":{"internalName":"Refined Molten Ingot 3","type":"material","identified":true,"requirements":{"level":90},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"60","name":"profession.ingotMolten"}},"tier":3},"Untimely Demise":{"internalName":"Untimely Demise","type":"armour","armourType":"chestplate","armourColor":"rgb(156,73,0)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"dexterity":85},"powderSlots":2,"lore":"“Death claims your soul...”","identifications":{"rawDexterity":10,"healthRegenRaw":-200,"thunderMainAttackDamage":50,"raw2ndSpellCost":-5,"3rdSpellCost":-20,"walkSpeed":15,"waterDefence":-35},"base":{"baseHealth":2450,"baseThunderDefence":200,"baseWaterDefence":-75},"rarity":"rare"},"Quilted Carapace":{"internalName":"Quilted Carapace","type":"armour","armourType":"chestplate","armourColor":"rgb(216,88,0)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"intelligence":85,"defence":85},"majorIds":{"Transcendence":"+Transcendence: 30% chance for spells to cost no mana when casted."},"powderSlots":5,"lore":"This patchwork of shells from the Corkian Astrochelys makes for quite the statement sweater; it keeps your neck warm and besides, your foes' fashion fancies feel frivolous, anyway.","identifications":{"healthRegen":40,"lifeSteal":-275,"thorns":40,"sprint":-25,"elementalDefence":40},"base":{"baseHealth":2750,"baseEarthDefence":75,"baseThunderDefence":50,"baseWaterDefence":100,"baseFireDefence":125,"baseAirDefence":50},"rarity":"fabled"},"Frigg's Vow":{"internalName":"Frigg's Vow","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":90,"defence":65},"powderSlots":4,"identifications":{"rawDefence":15,"healthRegen":40,"healthRegenRaw":185,"damage":-20,"1stSpellCost":-20,"elementalDefence":40},"base":{"baseHealth":3275,"baseEarthDefence":50,"baseThunderDefence":75,"baseWaterDefence":75,"baseFireDefence":75,"baseAirDefence":75},"rarity":"rare"},"Hammer of the Forge":{"internalName":"Hammer of the Forge","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":372,"dropRestriction":"normal","requirements":{"level":90,"classRequirement":"warrior","strength":35,"defence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.earth1"}},"identifications":{"rawStrength":10,"rawDefence":10,"rawHealth":{"min":300,"raw":1000,"max":1300},"earthMainAttackDamage":{"min":12,"raw":40,"max":52},"fireMainAttackDamage":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":120,"raw":120,"max":180},"baseEarthDamage":{"min":190,"raw":190,"max":390},"baseFireDamage":{"min":190,"raw":190,"max":390}},"rarity":"unique"},"Squall's Breath":{"internalName":"Squall's Breath","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":312,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"mage","dexterity":50,"agility":40},"powderSlots":3,"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawAgility":9,"spellDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"walkSpeed":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseAirDamage":{"min":55,"raw":55,"max":95}},"rarity":"rare"},"Impeccable Light Birch Bow":{"internalName":"Impeccable Light Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":411,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":180,"raw":180,"max":219}},"rarity":"common"},"Veekhat's Udders":{"internalName":"Veekhat's Udders","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":89,"quest":"Cowfusion"},"powderSlots":2,"identifications":{"manaSteal":{"min":1,"raw":4,"max":5},"sprint":{"min":5,"raw":18,"max":23},"airDamage":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":2550,"baseAirDefence":150},"rarity":"set"},"Judas":{"internalName":"Judas","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":387,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"classRequirement":"mage","dexterity":60},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":10,"mainAttackDamage":33,"rawSpellDamage":125,"lifeSteal":-1085,"manaSteal":8,"healingEfficiency":-35,"lootBonus":30,"thunderDamage":20},"base":{"baseDamage":{"min":0,"raw":0,"max":90},"baseThunderDamage":{"min":45,"raw":45,"max":45}},"rarity":"legendary"},"Discoverer":{"internalName":"Discoverer","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"lootchest","requirements":{"level":89},"lore":"Wealth and riches...but at what cost?","identifications":{"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":46,"raw":154,"max":200}},"rarity":"mythic"},"Whirling Gyre":{"internalName":"Whirling Gyre","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":89,"intelligence":75},"majorIds":{"Hurricane's Eye":"+Hurricane's Eye: Violent Vortex applies 2 marks to every enemy it hits."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawSpellDamage":{"min":56,"raw":185,"max":241},"waterSpellDamage":{"min":9,"raw":30,"max":39},"healthRegen":{"min":-13,"raw":-10,"max":-7},"raw3rdSpellCost":{"min":8,"raw":6,"max":4},"reflection":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":3200,"baseEarthDefence":-250,"baseAirDefence":125},"rarity":"fabled"},"Infilak":{"internalName":"Infilak","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"warrior","defence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawMainAttackDamage":{"min":56,"raw":188,"max":244},"walkSpeed":{"min":3,"raw":10,"max":13},"exploding":{"min":30,"raw":99,"max":129}},"base":{"baseDamage":{"min":33,"raw":33,"max":77},"baseFireDamage":{"min":55,"raw":55,"max":77}},"rarity":"rare"},"Electro Mage's Boots":{"internalName":"Electro Mage's Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":89,"quest":"The Envoy Part II","dexterity":90},"powderSlots":2,"identifications":{"rawDexterity":10,"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"raw2ndSpellCost":{"min":5,"raw":4,"max":3},"raw3rdSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":5,"raw":17,"max":22},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":2400,"baseThunderDefence":80},"rarity":"rare"},"Veekhat's Horns":{"internalName":"Veekhat's Horns","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":89,"quest":"Cowfusion"},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"sprint":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2675,"baseEarthDefence":150},"rarity":"set"},"Impeccable Light Birch Spear":{"internalName":"Impeccable Light Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":274,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":125,"raw":125,"max":141}},"rarity":"common"},"Facedown":{"internalName":"Facedown","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"dexterity":55},"powderSlots":3,"identifications":{"rawDexterity":10,"rawAgility":-5,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"thorns":{"min":-19,"raw":-15,"max":-10},"reflection":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2000,"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"unique"},"Alizarin":{"internalName":"Alazarin","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":535,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"assassin","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":5,"lore":"This bloody palette knife was used to kill only two people before it was abandoned - a killer who broke into a great artist's home, and the artist who struck the blow.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"healthRegenRaw":{"min":45,"raw":150,"max":195},"rawHealth":{"min":375,"raw":1250,"max":1625},"xpBonus":{"min":7,"raw":23,"max":30},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":15,"raw":15,"max":28},"baseEarthDamage":{"min":17,"raw":17,"max":60},"baseThunderDamage":{"min":17,"raw":17,"max":60},"baseWaterDamage":{"min":17,"raw":17,"max":60},"baseFireDamage":{"min":17,"raw":17,"max":60},"baseAirDamage":{"min":17,"raw":17,"max":60}},"rarity":"legendary"},"Sacramentalia":{"internalName":"Sacramentalia","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":50,"intelligence":40},"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":-12,"healthRegenRaw":80,"manaRegen":12,"waterDamage":8},"base":{"baseThunderDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Vacancy":{"internalName":"Vacancy","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"agility":50},"powderSlots":3,"identifications":{"rawIntelligence":-24,"rawAgility":12,"1stSpellCost":{"min":-4,"raw":-13,"max":-17},"3rdSpellCost":{"min":-3,"raw":-9,"max":-12},"4thSpellCost":{"min":-5,"raw":-17,"max":-22},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2525},"rarity":"unique"},"Leggings of Desolation":{"internalName":"Leggings of Desolation","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"dexterity":40,"defence":40},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":1020,"raw":3400,"max":4420},"lifeSteal":{"min":72,"raw":240,"max":312},"manaSteal":{"min":2,"raw":8,"max":10},"healingEfficiency":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2400,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":-200,"baseFireDefence":50,"baseAirDefence":50},"rarity":"rare"},"Impeccable Light Birch Relik":{"internalName":"Impeccable Light Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":409,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":160,"raw":160,"max":167}},"rarity":"common"},"Gnossis":{"internalName":"Gnossis","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":89,"intelligence":80},"majorIds":{"Geocentrism":"+Geocentrism: Aura radiates from you instead of your Totem and can be cast any time."},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"spellDamage":{"min":6,"raw":21,"max":27},"rawSpellDamage":{"min":50,"raw":165,"max":215},"healthRegen":{"min":-23,"raw":-18,"max":-13},"manaRegen":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"rawMaxMana":{"min":6,"raw":21,"max":27}},"base":{"baseHealth":3375,"baseThunderDefence":-120,"baseWaterDefence":80},"rarity":"fabled"},"Black Arrow":{"internalName":"Black Arrow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":550,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"archer","strength":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"poison":{"min":2184,"raw":7280,"max":9464},"lifeSteal":{"min":102,"raw":340,"max":442},"manaSteal":{"min":-10,"raw":-8,"max":-6},"slowEnemy":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":283,"raw":283,"max":450}},"rarity":"unique"},"Nimbus":{"internalName":"Nimbus","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":426,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"assassin","intelligence":25,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawIntelligence":5,"rawAgility":8,"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDamage":{"min":33,"raw":33,"max":88},"baseAirDamage":{"min":55,"raw":55,"max":99}},"rarity":"unique"},"Triple Point":{"internalName":"Triple Point","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":649,"dropRestriction":"never","requirements":{"level":89,"classRequirement":"shaman","intelligence":60,"defence":60},"majorIds":{"Sublimation":"+Sublimation: Totemic Shatter heals 75% of Regeneration's usual amount, with reduced Totem area of effect."},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawHealth":{"min":405,"raw":1350,"max":1755},"1stSpellCost":{"min":-9,"raw":-31,"max":-40},"3rdSpellCost":{"min":74,"raw":57,"max":40},"exploding":{"min":9,"raw":31,"max":40},"healingEfficiency":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":5,"raw":5,"max":25},"baseWaterDamage":{"min":125,"raw":125,"max":175},"baseFireDamage":{"min":125,"raw":125,"max":175}},"rarity":"fabled"},"Impeccable Light Birch Dagger":{"internalName":"Impeccable Light Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":341,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":130}},"rarity":"common"},"Greaves of the Veneer":{"internalName":"Greaves of the Veneer","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"strength":30,"defence":60},"powderSlots":1,"lore":"Forged from mystic, previously unknown metals revealed in the deepest dwarven mining site to date, these sleek, glowing greaves are believed to be utterly indestructible.","identifications":{"rawDefence":20,"healthRegenRaw":{"min":60,"raw":200,"max":260},"rawHealth":{"min":450,"raw":1500,"max":1950},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":-6,"raw":-5,"max":-3},"airDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":12,"raw":40,"max":52},"waterDefence":{"min":15,"raw":50,"max":65},"airDefence":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":4000,"baseEarthDefence":200,"baseWaterDefence":65,"baseFireDefence":200,"baseAirDefence":65},"rarity":"legendary"},"Valkyrie":{"internalName":"Valkyrie","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":473,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"assassin","dexterity":35,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":15,"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"rawSpellDamage":{"min":-71,"raw":-55,"max":-38},"healthRegen":{"min":-10,"raw":-8,"max":-6},"rawThunderMainAttackDamage":{"min":30,"raw":100,"max":130},"3rdSpellCost":{"min":-4,"raw":-15,"max":-19},"walkSpeed":{"min":8,"raw":25,"max":33}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":125},"baseAirDamage":{"min":0,"raw":0,"max":95}},"rarity":"unique"},"Djinni":{"internalName":"Djinni","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":578,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"archer","defence":40,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":5,"raw":16,"max":21},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":48,"raw":160,"max":208},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseFireDamage":{"min":140,"raw":140,"max":170},"baseAirDamage":{"min":160,"raw":160,"max":300}},"rarity":"rare"},"Rapids":{"internalName":"Rapids","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"intelligence":55},"powderSlots":2,"identifications":{"spellDamage":{"min":7,"raw":23,"max":30},"manaRegen":{"min":2,"raw":6,"max":8},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6},"walkSpeed":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":11,"max":14},"fireDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2125,"baseThunderDefence":-130,"baseWaterDefence":130},"rarity":"unique"},"Emerald Pendant":{"internalName":"Emerald Pendant","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":89},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"lootBonus":20},"rarity":"rare"},"Spear of Sin":{"internalName":"Spear of Sin","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":345,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"warrior","dexterity":35,"defence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawDexterity":5,"rawDefence":16,"lifeSteal":{"min":87,"raw":290,"max":377},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-65,"raw":-50,"max":-35},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":55,"raw":55,"max":125},"baseFireDamage":{"min":105,"raw":105,"max":175}},"rarity":"unique"},"The Master's Gi":{"internalName":"The Master's Gi","type":"armour","armourType":"chestplate","armourColor":"rgb(0,0,0)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":89,"quest":"Enter the Dojo"},"powderSlots":2,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":8,"raw":26,"max":34},"fireDamage":{"min":8,"raw":26,"max":34}},"base":{"baseHealth":2650},"rarity":"rare"},"Moonbeam":{"internalName":"Moonbeam","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"intelligence":60},"powderSlots":2,"identifications":{"rawIntelligence":8,"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":4,"raw":12,"max":16},"healingEfficiency":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"waterDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2200,"baseThunderDefence":-80,"baseWaterDefence":80},"rarity":"unique"},"Lion's Pelt":{"internalName":"Lion's Pelt","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":60},"powderSlots":2,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":8,"mainAttackDamage":15,"lifeSteal":310,"thorns":50,"earthDamage":20,"earthDefence":40},"base":{"baseHealth":4000,"baseEarthDefence":120,"baseThunderDefence":100,"baseAirDefence":-70},"rarity":"rare"},"Veins":{"internalName":"Veins","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":562,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"shaman","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"healthRegenRaw":{"min":35,"raw":115,"max":150},"rawHealth":{"min":290,"raw":965,"max":1255},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":75,"raw":75,"max":75},"baseThunderDamage":{"min":63,"raw":63,"max":87},"baseWaterDamage":{"min":69,"raw":69,"max":81},"baseFireDamage":{"min":72,"raw":72,"max":78},"baseAirDamage":{"min":66,"raw":66,"max":84}},"rarity":"unique"},"Finesse":{"internalName":"Finesse","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":89,"dexterity":25,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawDexterity":4,"rawIntelligence":3,"rawSpellDamage":{"min":11,"raw":35,"max":46}},"rarity":"unique"},"Silversplint":{"internalName":"Silversplint","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":89,"agility":35},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"reflection":11,"lootBonus":5,"airDamage":8,"airDefence":5},"base":{"baseAirDefence":30},"rarity":"rare"},"Epilogue":{"internalName":"Epilogue","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":30,"dexterity":20,"intelligence":30,"defence":25,"agility":25},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"identifications":{"rawElementalDamage":200,"healthRegenRaw":170,"manaRegen":15,"walkSpeed":15,"sprintRegen":15},"base":{"baseHealth":3200,"baseEarthDefence":100,"baseThunderDefence":50,"baseWaterDefence":100,"baseFireDefence":75,"baseAirDefence":75},"rarity":"legendary"},"Smack Jacket":{"internalName":"Smack Jacket","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"strength":55,"dexterity":55},"powderSlots":2,"identifications":{"rawStrength":10,"rawDexterity":10,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-39,"raw":-30,"max":-21},"healthRegen":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":51,"raw":170,"max":221},"rawAttackSpeed":1,"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2200,"baseWaterDefence":-100},"rarity":"unique"},"Manna":{"internalName":"Manna","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":600,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"classRequirement":"assassin","strength":55,"intelligence":40},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"spellDamage":15,"healthRegenRaw":175,"rawHealth":1800,"manaRegen":12,"earthDamage":20,"earthDefence":15,"waterDefence":15},"base":{"baseDamage":{"min":140,"raw":140,"max":240},"baseWaterDamage":{"min":150,"raw":150,"max":270}},"rarity":"legendary"},"Entanglement":{"internalName":"Entanglement","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"dexterity":50,"intelligence":45},"powderSlots":2,"identifications":{"rawDexterity":10,"rawIntelligence":10,"spellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":3,"raw":9,"max":12},"waterDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":2400,"baseThunderDefence":70,"baseWaterDefence":70,"baseAirDefence":-100},"rarity":"rare"},"Vulcamail Leggings":{"internalName":"Vulcamail Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":40,"defence":35},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"identifications":{"rawDefence":6,"healthRegen":20,"rawHealth":600,"lifeSteal":220,"manaSteal":8,"walkSpeed":-7,"waterDefence":15,"airDefence":15},"base":{"baseHealth":2450,"baseEarthDefence":100,"baseThunderDefence":-100,"baseFireDefence":100},"rarity":"unique"},"Wavedash":{"internalName":"Wavedash","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89,"intelligence":25,"agility":20},"powderSlots":3,"identifications":{"rawAgility":8,"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":5,"raw":18,"max":23},"sprint":{"min":-13,"raw":-10,"max":-7},"sprintRegen":{"min":5,"raw":18,"max":23},"waterDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":2250,"baseWaterDefence":90,"baseAirDefence":90},"rarity":"unique"},"Humbark Moccasins":{"internalName":"Humbark Moccasins","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":50,"dexterity":50},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawAgility":10,"mainAttackDamage":15,"spellDamage":-20,"lifeSteal":210,"rawAttackSpeed":1,"walkSpeed":15},"base":{"baseHealth":2400,"baseEarthDefence":80,"baseThunderDefence":80,"baseAirDefence":-100},"rarity":"rare"},"Cloudy Diamond Helmet":{"internalName":"Cloudy Diamond Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":89},"powderSlots":3,"base":{"baseHealth":1935},"rarity":"common"},"Darkweaver":{"internalName":"Darkweaver","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":523,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"assassin","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"spellDamage":{"min":6,"raw":19,"max":25},"manaRegen":{"min":-23,"raw":-18,"max":-13},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":5,"raw":17,"max":22},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":5,"raw":17,"max":22},"waterDamage":{"min":5,"raw":17,"max":22},"earthDefence":{"min":-22,"raw":-17,"max":-12}},"base":{"baseThunderDamage":{"min":250,"raw":250,"max":380},"baseWaterDamage":{"min":250,"raw":250,"max":380}},"rarity":"rare"},"Impeccable Light Birch Wand":{"internalName":"Impeccable Light Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":205,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":76,"raw":76,"max":88}},"rarity":"common"},"Nightlife":{"internalName":"Nightlife","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":540,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"shaman","dexterity":32,"defence":32},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawDefence":11,"mainAttackDamage":{"min":3,"raw":11,"max":14},"healthRegen":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":72,"raw":240,"max":312},"walkSpeed":{"min":3,"raw":11,"max":14},"fireDamage":{"min":11,"raw":35,"max":46}},"base":{"baseThunderDamage":{"min":160,"raw":160,"max":190},"baseFireDamage":{"min":80,"raw":80,"max":94}},"rarity":"unique"},"Subur Clip":{"internalName":"Subur Clip","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":89,"strength":30},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawDefence":-2,"rawMainAttackDamage":105,"thorns":20,"walkSpeed":10,"earthDamage":12},"base":{"baseEarthDefence":60},"rarity":"rare"},"Charcoal Lump":{"internalName":"Charcoal Lump","type":"ingredient","requirements":{"level":89,"skills":["alchemism"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":40,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Panda King's Crown":{"internalName":"Panda King’s Crown","type":"ingredient","requirements":{"level":89,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"314:0"},"identifications":{"fireDefence":{"min":15,"raw":15,"max":20},"waterDefence":{"min":15,"raw":15,"max":20},"airDefence":{"min":15,"raw":15,"max":20},"thunderDefence":{"min":15,"raw":15,"max":20},"earthDefence":{"min":15,"raw":15,"max":20},"manaRegen":{"min":-6,"raw":-6,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]}]},"Serpent Tongue":{"internalName":"Serpent Tongue","type":"ingredient","requirements":{"level":89,"skills":["alchemism"]},"icon":{"format":"legacy","value":"396:0"},"identifications":{"mainAttackDamage":{"min":14,"raw":14,"max":21},"spellDamage":{"min":14,"raw":14,"max":21}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Howling Salamander","coords":[[1224,7,-5449,8],[1199,7,-5474,8]]},{"name":"Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]},{"name":"Devouring Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]},{"name":"Smoke Serpent","coords":[1224,42,-5461,18]},{"name":"Salamander Painbringer","coords":[[1224,7,-5449,8],[1199,7,-5474,8]]}]},"Melted Steel":{"internalName":"Melted Steel","type":"ingredient","requirements":{"level":89,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"213:0"},"identifications":{"waterDamage":{"min":-8,"raw":-8,"max":-6},"fireDefence":{"min":4,"raw":4,"max":8}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Molten Madoshi","coords":[[1342,43,-5616,9],[1372,61,-5594,9],[1404,69,-5602,15]]},{"name":"Molten Knight","coords":[1422,68,-5604,25]},{"name":"Molten Chevalier","coords":[1422,68,-5604,25]},{"name":"Molten Archer","coords":[1422,68,-5604,25]}]},"Fighting Stick":{"internalName":"Fighting Stick","type":"ingredient","requirements":{"level":89,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"rawAttackSpeed":{"min":1,"raw":1,"max":1},"rawMainAttackDamage":{"min":-70,"raw":-70,"max":-70},"walkSpeed":{"min":5,"raw":5,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-96000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ailuropoda Shaman","coords":[[148,77,-4366,10],[126,76,-4366,7],[108,77,-4357,10],[202,87,-4338,10],[213,111,-4426,7],[206,116,-4438,5],[54,44,-4472,15],[48,44,-4514,10],[108,44,-4531,15],[109,43,-4532,5],[556,82,-5493,5],[874,45,-5375,15],[860,45,-5401,5],[872,45,-5425,5],[885,43,-5462,5],[872,45,-5497,5],[852,43,-5523,5],[839,44,-5534,5],[836,45,-5562,5],[77,46,-4656,5],[58,44,-4691,5],[161,60,-5535,5],[123,65,-5570,5],[100,69,-5571,5],[72,47,-5564,6],[72,47,-5564,6],[586,27,-5408,6],[572,27,-5401,4],[563,27,-5393,6],[549,31,-5424,8],[519,39,-5470,15],[519,39,-5470,15],[519,39,-5470,15],[537,68,-5487,8],[557,82,-5492,4],[559,76,-5479,4]]},{"name":"Ailuropoda Warrior","coords":[[148,77,-4366,10],[126,76,-4366,7],[108,77,-4357,10],[202,87,-4338,10],[213,111,-4426,7],[206,116,-4438,5],[54,44,-4472,15],[48,44,-4514,10],[108,44,-4531,15],[109,43,-4532,5],[556,82,-5493,5],[874,45,-5375,15],[860,45,-5401,5],[872,45,-5425,5],[885,43,-5462,5],[872,45,-5497,5],[852,43,-5523,5],[839,44,-5534,5],[836,45,-5562,5],[77,46,-4656,5],[58,44,-4691,5],[161,60,-5535,5],[123,65,-5570,5],[100,69,-5571,5],[72,47,-5564,6],[72,47,-5564,6],[586,27,-5408,6],[572,27,-5401,4],[563,27,-5393,6],[549,31,-5424,8],[519,39,-5470,15],[519,39,-5470,15],[519,39,-5470,15],[537,68,-5487,8],[557,82,-5492,4],[559,76,-5479,4]]},{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]}]},"Fluffy Fur":{"internalName":"Fluffy Fur","type":"ingredient","requirements":{"level":89,"skills":["tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"airDefence":{"min":6,"raw":6,"max":9},"fireDefence":{"min":-6,"raw":-6,"max":-4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ailuropoda Shaman","coords":[[148,77,-4366,10],[126,76,-4366,7],[108,77,-4357,10],[202,87,-4338,10],[213,111,-4426,7],[206,116,-4438,5],[54,44,-4472,15],[48,44,-4514,10],[108,44,-4531,15],[109,43,-4532,5],[556,82,-5493,5],[874,45,-5375,15],[860,45,-5401,5],[872,45,-5425,5],[885,43,-5462,5],[872,45,-5497,5],[852,43,-5523,5],[839,44,-5534,5],[836,45,-5562,5],[77,46,-4656,5],[58,44,-4691,5],[161,60,-5535,5],[123,65,-5570,5],[100,69,-5571,5],[72,47,-5564,6],[72,47,-5564,6],[586,27,-5408,6],[572,27,-5401,4],[563,27,-5393,6],[549,31,-5424,8],[519,39,-5470,15],[519,39,-5470,15],[519,39,-5470,15],[537,68,-5487,8],[557,82,-5492,4],[559,76,-5479,4]]},{"name":"Ailuropoda Warrior","coords":[[148,77,-4366,10],[126,76,-4366,7],[108,77,-4357,10],[202,87,-4338,10],[213,111,-4426,7],[206,116,-4438,5],[54,44,-4472,15],[48,44,-4514,10],[108,44,-4531,15],[109,43,-4532,5],[556,82,-5493,5],[874,45,-5375,15],[860,45,-5401,5],[872,45,-5425,5],[885,43,-5462,5],[872,45,-5497,5],[852,43,-5523,5],[839,44,-5534,5],[836,45,-5562,5],[77,46,-4656,5],[58,44,-4691,5],[161,60,-5535,5],[123,65,-5570,5],[100,69,-5571,5],[72,47,-5564,6],[72,47,-5564,6],[586,27,-5408,6],[572,27,-5401,4],[563,27,-5393,6],[549,31,-5424,8],[519,39,-5470,15],[519,39,-5470,15],[519,39,-5470,15],[537,68,-5487,8],[557,82,-5492,4],[559,76,-5479,4]]},{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]}]},"Chunky Ash":{"internalName":"Chunky Ash","type":"ingredient","requirements":{"level":89,"skills":["cooking"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"exploding":{"min":3,"raw":3,"max":4},"earthDamage":{"min":3,"raw":3,"max":4},"fireDamage":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Synthesizer":{"internalName":"Synthesizer","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":598,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"archer","dexterity":30,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawDexterity":10,"rawSpellDamage":{"min":36,"raw":120,"max":156},"manaRegen":{"min":3,"raw":9,"max":12},"slowEnemy":{"min":3,"raw":9,"max":12},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":8,"raw":25,"max":33},"earthDefence":{"min":-21,"raw":-16,"max":-11}},"base":{"baseDamage":{"min":84,"raw":84,"max":226},"baseThunderDamage":{"min":84,"raw":84,"max":187}},"rarity":"unique"},"Aeolipile":{"internalName":"Aeolipile","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":487,"dropRestriction":"normal","requirements":{"level":89,"classRequirement":"archer","intelligence":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":9,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":3,"raw":9,"max":12},"waterDefence":{"min":12,"raw":40,"max":52},"fireDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseWaterDamage":{"min":110,"raw":110,"max":162},"baseFireDamage":{"min":80,"raw":80,"max":121}},"rarity":"unique"},"Pressure Blaster":{"internalName":"Composite Shooter","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":562,"dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"archer","intelligence":50},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawIntelligence":12,"rawSpellDamage":125,"manaRegen":12,"waterDamage":15},"base":{"baseDamage":{"min":60,"raw":60,"max":125},"baseWaterDamage":{"min":90,"raw":90,"max":175}},"rarity":"rare"},"Blushwind":{"internalName":"Blushwind","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"defence":30,"agility":60},"powderSlots":3,"identifications":{"rawAgility":7,"rawHealth":{"min":900,"raw":3000,"max":3900},"manaSteal":{"min":1,"raw":4,"max":5},"2ndSpellCost":{"min":-5,"raw":-18,"max":-23},"3rdSpellCost":{"min":-3,"raw":-10,"max":-13},"walkSpeed":{"min":4,"raw":14,"max":18},"fireDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseWaterDefence":-75,"baseFireDefence":110,"baseAirDefence":110},"rarity":"unique"},"Slumber":{"internalName":"Slumber","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":491,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"archer","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"damage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":35,"raw":115,"max":150},"manaRegen":{"min":4,"raw":12,"max":16},"slowEnemy":{"min":2,"raw":8,"max":10},"waterDefence":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":130,"raw":130,"max":210},"baseWaterDamage":{"min":115,"raw":115,"max":200}},"rarity":"unique"},"Powder Snow":{"internalName":"Powder Snow","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"intelligence":45,"agility":45},"powderSlots":2,"identifications":{"rawIntelligence":8,"rawAgility":8,"rawSpellDamage":{"min":48,"raw":160,"max":208},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":7,"raw":23,"max":30},"waterDamage":{"min":4,"raw":13,"max":17},"airDamage":{"min":4,"raw":13,"max":17},"waterDefence":{"min":4,"raw":13,"max":17},"airDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2000,"baseThunderDefence":-145,"baseWaterDefence":90,"baseAirDefence":90},"rarity":"unique"},"Crown of Suzaku":{"internalName":"Crown of Suzaku","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"strength":40,"dexterity":40},"identifications":{"rawStrength":5,"rawDexterity":5,"rawDefence":-5,"rawAgility":-5,"lifeSteal":{"min":50,"raw":165,"max":215},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"exploding":{"min":6,"raw":20,"max":26},"stealing":{"min":2,"raw":8,"max":10},"earthDamage":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":2100,"baseWaterDefence":-90,"baseFireDefence":250,"baseAirDefence":250},"rarity":"unique"},"Third Eye":{"internalName":"Third Eye","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"intelligence":80},"powderSlots":5,"lore":"The Bantisu monks have developed this enigmatic sigil in their years of meditation and study. It blesses the wearer with luck and powerful psionic ability.","identifications":{"rawIntelligence":15,"manaRegen":{"min":5,"raw":18,"max":23},"1stSpellCost":{"min":-3,"raw":-10,"max":-13},"2ndSpellCost":{"min":-3,"raw":-10,"max":-13},"3rdSpellCost":{"min":-3,"raw":-10,"max":-13},"4thSpellCost":{"min":-3,"raw":-10,"max":-13},"waterDefence":{"min":8,"raw":25,"max":33},"elementalDefence":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":2600},"rarity":"legendary"},"Charm of the Tides":{"internalName":"Charm of the Tides","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":88,"intelligence":40,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"mainAttackDamage":{"min":-27,"raw":-21,"max":-15},"spellDamage":{"min":-27,"raw":-21,"max":-15},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":400,"baseThunderDefence":-80,"baseWaterDefence":40,"baseFireDefence":40},"rarity":"legendary"},"Tracer":{"internalName":"Tracer","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":866,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"archer","agility":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawAgility":13,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":48,"raw":160,"max":208},"spellDamage":{"min":-195,"raw":-150,"max":-105},"rawHealth":{"min":-1950,"raw":-1500,"max":-1050},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseAirDamage":{"min":198,"raw":198,"max":205}},"rarity":"rare"},"Sculptor":{"internalName":"Sculptor","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":270,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"warrior","strength":35,"intelligence":35},"powderSlots":5,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":45,"raw":150,"max":195},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"earthDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":170,"raw":170,"max":190}},"rarity":"unique"},"Tisaun's Honour":{"internalName":"Tisaun's Honour","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":88,"strength":35,"defence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawDefence":6,"mainAttackDamage":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10}},"base":{"baseEarthDefence":15,"baseFireDefence":20},"rarity":"rare"},"Metal Body Suit":{"internalName":"Metal Body Suit","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":88,"dexterity":40,"defence":40},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawDexterity":4,"rawIntelligence":-21,"rawDefence":4,"rawAgility":6,"lifeSteal":165,"1stSpellCost":-26,"thorns":10,"reflection":15,"walkSpeed":10},"base":{"baseHealth":2575,"baseEarthDefence":-80,"baseThunderDefence":80,"baseWaterDefence":-80,"baseFireDefence":80},"rarity":"unique"},"Orient":{"internalName":"Orient","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":422,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"assassin","intelligence":30,"defence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":21,"raw":70,"max":91},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":85,"raw":85,"max":120},"baseFireDamage":{"min":75,"raw":75,"max":130}},"rarity":"unique"},"Inundatio":{"internalName":"Inundatio","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":88,"dexterity":15,"intelligence":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"185","name":"necklace.water1"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":11,"raw":35,"max":46},"waterDamage":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDefence":-65,"baseThunderDefence":30,"baseWaterDefence":35},"rarity":"rare"},"Statue":{"internalName":"Statue","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88},"powderSlots":3,"identifications":{"rawHealth":{"min":1155,"raw":3850,"max":5005},"walkSpeed":{"min":-260,"raw":-200,"max":-140}},"base":{"baseHealth":7500,"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":60},"rarity":"rare"},"The Airway":{"internalName":"The Airway","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":583,"dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"shaman","dexterity":35,"agility":30},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawDexterity":8,"walkSpeed":10,"jumpHeight":1,"thunderDamage":12,"airDamage":12,"earthDefence":-30},"base":{"baseDamage":{"min":63,"raw":63,"max":69},"baseThunderDamage":{"min":41,"raw":41,"max":81},"baseAirDamage":{"min":56,"raw":56,"max":66}},"rarity":"unique"},"Tisaun's Proof":{"internalName":"Tisaun's Proof","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":431,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"warrior","strength":55,"defence":55},"powderSlots":2,"lore":"The wear upon this broken old battle spear does not affect its ability in battle. The souls of a thousand fallen warriors resound within it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":20,"rawDexterity":20,"rawDefence":20,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":5,"raw":15,"max":20},"rawAttackSpeed":1},"base":{"baseDamage":{"min":45,"raw":45,"max":50},"baseEarthDamage":{"min":55,"raw":55,"max":70},"baseFireDamage":{"min":55,"raw":55,"max":70}},"rarity":"legendary"},"Plague":{"internalName":"Plague","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":622,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"archer","dexterity":55,"defence":45},"powderSlots":4,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":10,"lifeSteal":700,"manaSteal":12,"reflection":30,"exploding":30,"thunderDamage":15,"thunderDefence":25,"waterDefence":-40,"fireDefence":30,"airDefence":35},"base":{"baseDamage":{"min":500,"raw":500,"max":720},"baseFireDamage":{"min":500,"raw":500,"max":720}},"rarity":"legendary"},"Grip of the Land":{"internalName":"Grip of the Land","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"strength":55,"defence":45},"identifications":{"rawStrength":7,"rawDefence":7,"healthRegen":{"min":20,"raw":65,"max":85},"healthRegenRaw":{"min":-84,"raw":-65,"max":-45},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":4,"raw":12,"max":16},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2350,"baseEarthDefence":140,"baseWaterDefence":-120,"baseFireDefence":140},"rarity":"unique"},"Golden Scarab":{"internalName":"Golden Scarab","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":88,"dexterity":80},"powderSlots":2,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDexterity":8,"mainAttackDamage":24,"spellDamage":24,"manaSteal":8,"walkSpeed":8,"xpBonus":16,"lootBonus":32,"stealing":8,"earthDamage":-64,"thunderDamage":8},"base":{"baseHealth":2400,"baseThunderDefence":80},"rarity":"rare"},"September":{"internalName":"Spinal Tap","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"defence":35,"agility":35},"powderSlots":3,"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":51,"raw":170,"max":221},"healthRegen":{"min":-27,"raw":-21,"max":-15},"lifeSteal":{"min":65,"raw":215,"max":280},"walkSpeed":{"min":6,"raw":21,"max":27},"earthDamage":{"min":6,"raw":21,"max":27},"fireDamage":{"min":6,"raw":21,"max":27},"airDamage":{"min":6,"raw":21,"max":27}},"base":{"baseHealth":2350,"baseEarthDefence":70,"baseThunderDefence":-105,"baseWaterDefence":-105,"baseFireDefence":70,"baseAirDefence":70},"rarity":"unique"},"Infidel":{"internalName":"Infidel","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":478,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"warrior","dexterity":50,"intelligence":45},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawDexterity":5,"rawIntelligence":10,"spellDamage":20,"rawSpellDamage":225,"manaSteal":8,"thunderDamage":30,"fireDefence":-70},"base":{"baseDamage":{"min":0,"raw":0,"max":875},"baseWaterDamage":{"min":0,"raw":0,"max":1000}},"rarity":"legendary"},"Voidlight":{"internalName":"Voidlight","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":278,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"mage","dexterity":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":-10,"rawAgility":13,"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":62,"raw":205,"max":267},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":180},"baseAirDamage":{"min":0,"raw":0,"max":90}},"rarity":"rare"},"Bardiche":{"internalName":"Bardiche","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":368,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"warrior","intelligence":35,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawAgility":12,"healthRegen":{"min":8,"raw":25,"max":33},"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":4,"raw":14,"max":18},"earthDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":5,"raw":18,"max":23},"waterDefence":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":70,"raw":70,"max":170},"baseWaterDamage":{"min":70,"raw":70,"max":180}},"rarity":"rare"},"Dreamcloud":{"internalName":"Dreamcloud","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"intelligence":30,"agility":30},"powderSlots":2,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":48,"raw":160,"max":208},"manaRegen":{"min":4,"raw":12,"max":16},"healingEfficiency":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-10,"raw":-8,"max":-6},"thunderDamage":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":2050,"baseEarthDefence":70,"baseThunderDefence":70,"baseWaterDefence":70,"baseFireDefence":70,"baseAirDefence":70},"rarity":"rare"},"Pro Tempore":{"internalName":"Pro Tempore","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"dexterity":40,"intelligence":50},"powderSlots":4,"identifications":{"rawIntelligence":10,"spellDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":31,"raw":104,"max":135},"lifeSteal":{"min":50,"raw":165,"max":215},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":2350,"baseThunderDefence":-50,"baseWaterDefence":-50},"rarity":"unique"},"Heavenly Wisp":{"internalName":"Heavenly Wisp","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":250,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"mage","intelligence":25,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseWaterDamage":{"min":30,"raw":30,"max":45},"baseAirDamage":{"min":30,"raw":30,"max":45}},"rarity":"unique"},"Sparkling Tones":{"internalName":"Sparkling Tones","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":586,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"shaman","intelligence":44,"agility":44},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawDexterity":-25,"rawSpellDamage":{"min":43,"raw":143,"max":186},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7},"waterDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":27,"raw":27,"max":33},"baseThunderDamage":{"min":3,"raw":3,"max":3},"baseWaterDamage":{"min":75,"raw":75,"max":81},"baseAirDamage":{"min":75,"raw":75,"max":81}},"rarity":"rare"},"Herald of Ruin":{"internalName":"Herald of Ruin","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":795,"dropRestriction":"never","requirements":{"level":88,"classRequirement":"archer","strength":55,"intelligence":35,"defence":45},"majorIds":{"Fallout":"+Fallout: Bomb Arrow's blast becomes giant. Damage, self-damage, and recoil are severely increased."},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawStrength":15,"mainAttackDamage":{"min":14,"raw":46,"max":60},"3rdSpellCost":{"min":30,"raw":23,"max":16},"exploding":{"min":14,"raw":46,"max":60},"slowEnemy":{"min":2,"raw":8,"max":10},"fireDamage":{"min":14,"raw":46,"max":60}},"base":{"baseEarthDamage":{"min":250,"raw":250,"max":330},"baseWaterDamage":{"min":200,"raw":200,"max":280}},"rarity":"fabled"},"Charm of the Tempest":{"internalName":"Charm of the Tempest","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":88,"dexterity":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawMainAttackDamage":{"min":13,"raw":43,"max":56},"healthRegen":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseEarthDefence":-60,"baseThunderDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Pyroclast":{"internalName":"Pyroclast","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":530,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"assassin","strength":40,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawMainAttackDamage":{"min":186,"raw":620,"max":806},"healthRegenRaw":{"min":-201,"raw":-155,"max":-108},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-65,"raw":-50,"max":-35},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseEarthDamage":{"min":350,"raw":350,"max":690},"baseFireDamage":{"min":250,"raw":250,"max":790}},"rarity":"rare"},"Nephilim":{"internalName":"Nephilim","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"dexterity":45,"agility":55},"powderSlots":2,"identifications":{"rawDexterity":8,"rawAgility":7,"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":6,"raw":20,"max":26},"rawAttackSpeed":1,"walkSpeed":{"min":4,"raw":12,"max":16},"sprint":{"min":5,"raw":16,"max":21},"earthDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":2075},"rarity":"rare"},"Dust Devil":{"internalName":"Dust Devil","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":88,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":3,"raw":9,"max":12},"airDamage":{"min":3,"raw":9,"max":12}},"base":{"baseEarthDefence":-10},"rarity":"unique"},"Cardinal Ruler":{"internalName":"Cardinal Ruler","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":394,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"warrior","dexterity":35,"defence":35},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDexterity":16,"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":78,"raw":260,"max":338},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":300,"raw":300,"max":370},"baseThunderDamage":{"min":5,"raw":5,"max":135},"baseFireDamage":{"min":65,"raw":65,"max":75}},"rarity":"rare"},"Salpinx":{"internalName":"Salpinx","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":700,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"shaman","agility":77},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawAgility":21,"lifeSteal":-277,"manaRegen":-42,"manaSteal":28,"2ndSpellCost":-54,"3rdSpellCost":-34,"airDamage":21},"base":{"baseDamage":{"min":113,"raw":113,"max":167},"baseAirDamage":{"min":113,"raw":113,"max":167}},"rarity":"legendary"},"Guacamole":{"internalName":"Guacamole","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":534,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"shaman","strength":30,"intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawStrength":17,"rawIntelligence":17,"healthRegenRaw":{"min":33,"raw":110,"max":143},"rawHealth":{"min":282,"raw":940,"max":1222},"manaRegen":{"min":2,"raw":6,"max":8},"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6}},"base":{"baseEarthDamage":{"min":128,"raw":128,"max":131},"baseWaterDamage":{"min":128,"raw":128,"max":131}},"rarity":"unique"},"The Modulator":{"internalName":"The Modulator","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":88,"strength":25,"dexterity":25,"intelligence":25,"defence":25,"agility":25},"powderSlots":5,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawStrength":6,"rawDexterity":6,"rawIntelligence":6,"rawDefence":6,"rawAgility":6,"walkSpeed":15,"elementalDefence":30},"base":{"baseHealth":2500},"rarity":"rare"},"White-Hot Leggings":{"internalName":"White-hot Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"defence":55},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"spellDamage":{"min":2,"raw":8,"max":10},"rawSpellDamage":{"min":42,"raw":140,"max":182},"rawHealth":{"min":-286,"raw":-220,"max":-154},"thorns":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2250,"baseEarthDefence":30,"baseThunderDefence":100,"baseWaterDefence":-100,"baseFireDefence":170},"rarity":"unique"},"Ambertoise Shell":{"internalName":"Ambertoise Shell","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":88,"strength":30,"defence":30},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":5,"rawDefence":5,"rawAgility":10,"mainAttackDamage":20,"healthRegen":25,"manaSteal":4,"earthDefence":20,"thunderDefence":25,"waterDefence":25,"fireDefence":20},"base":{"baseHealth":3000,"baseEarthDefence":100,"baseThunderDefence":150,"baseWaterDefence":150,"baseFireDefence":100},"rarity":"rare"},"Equinox":{"internalName":"Equinox","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":88,"intelligence":33,"defence":33},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"exploding":{"min":2,"raw":6,"max":8},"waterDamage":{"min":3,"raw":9,"max":12},"fireDamage":{"min":3,"raw":9,"max":12}},"base":{"baseThunderDefence":-22},"rarity":"rare"},"Dizzy Spell":{"internalName":"Dizzy Spell","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"strength":50,"agility":50},"identifications":{"rawStrength":9,"rawAgility":9,"rawMainAttackDamage":{"min":65,"raw":215,"max":280},"lifeSteal":{"min":65,"raw":215,"max":280},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":2750,"baseEarthDefence":120,"baseThunderDefence":-120,"baseFireDefence":-120,"baseAirDefence":120},"rarity":"legendary"},"Quicksilver":{"internalName":"Quicksilver","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":88,"agility":30},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawAgility":2,"poison":575,"walkSpeed":10},"base":{"baseHealth":-600,"baseAirDefence":20},"rarity":"rare"},"Corkian War Pick":{"internalName":"Corkian War Pick","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":382,"dropRestriction":"never","identified":true,"requirements":{"level":88,"classRequirement":"warrior","dexterity":35,"agility":35},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawStrength":8,"mainAttackDamage":10,"rawMainAttackDamage":150,"walkSpeed":10,"thunderDamage":10,"airDamage":10,"waterDefence":-20,"fireDefence":-20},"base":{"baseThunderDamage":{"min":115,"raw":115,"max":140},"baseAirDamage":{"min":115,"raw":115,"max":140}},"rarity":"unique"},"Smoky Diamond Chestplate":{"internalName":"Smoky Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88},"powderSlots":3,"base":{"baseHealth":1880},"rarity":"common"},"Sempiternal":{"internalName":"Sempiternel","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"defence":55,"agility":55},"powderSlots":2,"identifications":{"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":56,"raw":185,"max":241},"rawHealth":{"min":270,"raw":900,"max":1170},"manaRegen":{"min":4,"raw":12,"max":16},"rawAttackSpeed":-1,"earthDefence":{"min":7,"raw":24,"max":31},"thunderDefence":{"min":5,"raw":18,"max":23},"waterDefence":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":2700,"baseFireDefence":170,"baseAirDefence":130},"rarity":"rare"},"Charm of the Storms":{"internalName":"Charm of the Storms","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":88,"intelligence":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":5,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":4,"raw":13,"max":17},"airDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":-200,"baseThunderDefence":-70,"baseWaterDefence":30,"baseAirDefence":30},"rarity":"legendary"},"Overdrive":{"internalName":"Overdrive","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":110,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"shaman","dexterity":44,"intelligence":44},"powderSlots":1,"lore":"Holding this relik sends sparks through your veins, making your heart beat fast. And faster. And faster and faster and--","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"mainAttackDamage":{"min":-45,"raw":-35,"max":-24},"spellDamage":{"min":293,"raw":975,"max":1268},"rawSpellDamage":{"min":240,"raw":800,"max":1040},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":{"min":2,"raw":7,"max":9},"rawMaxMana":{"min":-19,"raw":-15,"max":-10}},"base":{"baseThunderDamage":{"min":104,"raw":104,"max":112},"baseWaterDamage":{"min":104,"raw":104,"max":112}},"rarity":"legendary"},"Platinum":{"internalName":"Platinum","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":88},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"xpBonus":{"min":-4,"raw":-3,"max":-2},"lootBonus":{"min":4,"raw":12,"max":16},"stealing":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Diamond Cuff":{"internalName":"Diamond Cuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":88,"defence":40},"dropMeta":{"name":"Eltom","type":"merchant","coordinates":[933,117,-5494]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"lootBonus":5},"base":{"baseHealth":525,"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"rare"},"Echoes of the Lost":{"internalName":"Echoes of the Lost","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":88,"agility":90},"majorIds":{"Sorcery":"+Sorcery: 30% chance for spells and attacks to cast a second time at no additional cost."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawMainAttackDamage":{"min":450,"raw":1500,"max":1950},"lifeSteal":{"min":-195,"raw":-150,"max":-105},"manaRegen":{"min":-27,"raw":-21,"max":-15},"raw4thSpellCost":{"min":5,"raw":4,"max":3},"rawAttackSpeed":{"min":-27,"raw":-21,"max":-15},"airMainAttackDamage":{"min":11,"raw":35,"max":46}},"base":{"baseHealth":2750,"baseEarthDefence":-120,"baseAirDefence":120},"rarity":"fabled"},"Adrenaline":{"internalName":"Adrenaline","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":88,"intelligence":60,"defence":60},"identifications":{"rawIntelligence":6,"rawDefence":6,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"rawMainAttackDamage":{"min":-221,"raw":-170,"max":-119},"spellDamage":{"min":5,"raw":17,"max":22},"rawSpellDamage":{"min":51,"raw":170,"max":221},"lifeSteal":{"min":-585,"raw":-450,"max":-315},"manaSteal":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2200,"baseEarthDefence":-65,"baseThunderDefence":-100,"baseWaterDefence":-30,"baseFireDefence":-30,"baseAirDefence":-65},"rarity":"rare"},"Tachyon":{"internalName":"Tachyon","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":88,"dexterity":55,"agility":30},"majorIds":{"Escape Route":"+Escape Route: Frenzy and Time Dilation charge twice as fast, but to a halved maximum."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawAgility":12,"rawMainAttackDamage":{"min":69,"raw":231,"max":300},"spellDamage":{"min":7,"raw":23,"max":30},"manaSteal":{"min":3,"raw":9,"max":12},"sprint":{"min":-30,"raw":-23,"max":-16},"sprintRegen":{"min":-30,"raw":-23,"max":-16}},"base":{"baseHealth":3000},"rarity":"fabled"},"Krolton's Cruelty":{"internalName":"Krolton's Cruelty","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":88,"strength":40,"dexterity":70},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawMainAttackDamage":{"min":17,"raw":55,"max":72},"healthRegenRaw":{"min":-91,"raw":-70,"max":-49},"poison":{"min":248,"raw":825,"max":1073}},"base":{"baseThunderDefence":60,"baseWaterDefence":-80,"baseFireDefence":40},"rarity":"rare"},"Stormdrain":{"internalName":"Stormdrain","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":556,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"shaman","intelligence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawIntelligence":15,"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":7,"raw":24,"max":31},"raw1stSpellCost":{"min":7,"raw":5,"max":4},"raw2ndSpellCost":{"min":7,"raw":5,"max":4},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"raw4thSpellCost":{"min":7,"raw":5,"max":4},"waterDamage":{"min":17,"raw":55,"max":72},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseWaterDamage":{"min":220,"raw":220,"max":225}},"rarity":"rare"},"Charm of the Magma":{"internalName":"Charm of the Magma","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":88,"strength":40,"defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":150,"raw":500,"max":650},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":625,"baseEarthDefence":45,"baseFireDefence":45},"rarity":"legendary"},"Nightstar":{"internalName":"Nightstar","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":338,"dropRestriction":"normal","requirements":{"level":88,"classRequirement":"warrior","intelligence":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":120,"raw":120,"max":150},"baseWaterDamage":{"min":80,"raw":80,"max":100}},"rarity":"unique"},"Fiery Aura":{"internalName":"Fiery Aura","type":"ingredient","requirements":{"level":88,"skills":["scribing"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"rawDefence":{"min":4,"raw":4,"max":6},"rawHealth":{"min":450,"raw":450,"max":550}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Plasmatic Shambler","coords":[[411,15,-5111,5],[422,16,-5097,5]]},{"name":"Plasmatic Shellwalker","coords":[[411,14,-5111,0],[414,16,-5093,0],[434,17,-5094,0]]},{"name":"Enflamed Lava Monster","coords":null},{"name":"Enflamed Lava Monster","coords":[1342,142,-1210,30]},{"name":"Novice Fire Mage","coords":[271,46,-4610,0]},{"name":"Burning Man","coords":false},{"name":"High Fire Elemental","coords":[[815,14,-5372,0],[768,16,-5415,0],[749,23,-5437,0]]}]},"Terra Steel":{"internalName":"Terra Steel","type":"ingredient","requirements":{"level":88,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":8},"fireDamage":{"min":5,"raw":5,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Molten Madoshi","coords":[[1342,43,-5616,9],[1372,61,-5594,9],[1404,69,-5602,15]]},{"name":"Molten Knight","coords":[1422,68,-5604,25]},{"name":"Molten Chevalier","coords":[1422,68,-5604,25]},{"name":"Molten Archer","coords":[1422,68,-5604,25]}]},"Colossus' Shard":{"internalName":"Colossus' Shard","type":"ingredient","requirements":{"level":88,"skills":["alchemism"]},"icon":{"format":"legacy","value":"98:3"},"identifications":{"rawDexterity":{"min":12,"raw":12,"max":14},"rawStrength":{"min":12,"raw":12,"max":14}},"tier":3,"consumableOnlyIDs":{"duration":-400,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Colossus Spawn","coords":[[392,96,-5264,50],[525,75,-5421,30]]}]},"Rocky Mind":{"internalName":"Rocky Mind","type":"ingredient","requirements":{"level":88,"skills":["armouring"]},"icon":{"format":"legacy","value":"98:1"},"identifications":{"walkSpeed":{"min":-14,"raw":-14,"max":-10},"rawStrength":{"min":11,"raw":11,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-145000,"strengthRequirement":25,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crystalline Behemoth","coords":[759,46,-5363,100]}]},"Autonomous Core":{"internalName":"Autonomous Core","type":"ingredient","requirements":{"level":88,"skills":["jeweling"]},"icon":{"format":"skin","value":"8da332abde333a15a6c6fcfeca83f0159ea94b68e8f274bafc04892b6dbfc"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"fireDamage":{"min":5,"raw":5,"max":6},"healthRegen":{"min":6,"raw":6,"max":9}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-144000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":17,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig Matriarch","coords":[-1805,77,-2167,20]},{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]},{"name":"WW-10avager Automaton","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]},{"name":"U-45tabot","coords":[[-1737,75,-2650,180],[-1496,75,-2529,220]]},{"name":"MM-0actical Unit","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]}]},"Sliver":{"internalName":"Sliver","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":87,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"rawDefence":-3,"rawMainAttackDamage":{"min":15,"raw":49,"max":64}},"rarity":"unique"},"Grillface":{"internalName":"Grillface","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"defence":70,"agility":55},"powderSlots":3,"lore":"\\[Community Event Winner\\] The old facemasks of the Eradian guards were forged from raw magma, and enchanted to remain searingly hot, so as to brand the wearer eternally with the mark of Rodoroc's elite.","identifications":{"rawIntelligence":-20,"rawAgility":15,"rawMainAttackDamage":{"min":72,"raw":240,"max":312},"healthRegenRaw":{"min":58,"raw":192,"max":250},"exploding":{"min":8,"raw":25,"max":33},"fireDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":3400,"baseEarthDefence":-150,"baseFireDefence":175,"baseAirDefence":150},"rarity":"legendary"},"Siliquartz Blend":{"internalName":"Siliquartz Blend","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":87},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"spellDamage":20,"rawSpellDamage":130,"xpBonus":5},"base":{"baseHealth":2300},"rarity":"unique"},"Wooly Long Johns":{"internalName":"Wooly Long Johns","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":87},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"mainAttackDamage":-5,"spellDamage":-5,"healthRegenRaw":190,"xpBonus":14,"waterDefence":14,"airDefence":14},"base":{"baseHealth":2525,"baseWaterDefence":190,"baseAirDefence":190},"rarity":"unique"},"Condensation":{"internalName":"Condensation","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"intelligence":75},"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":9,"raw":30,"max":39},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2000,"baseThunderDefence":-120,"baseWaterDefence":100},"rarity":"unique"},"Myelin":{"internalName":"Myelin","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"dexterity":20,"intelligence":50},"powderSlots":2,"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":50,"raw":165,"max":215},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":2050,"baseThunderDefence":50,"baseWaterDefence":120},"rarity":"unique"},"Latency":{"internalName":"Latency","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":87,"strength":50,"dexterity":50},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawStrength":5,"rawDexterity":5,"mainAttackDamage":12,"spellDamage":12,"manaSteal":8,"walkSpeed":-15,"earthDamage":18,"thunderDamage":18},"base":{"baseHealth":2250,"baseEarthDefence":30,"baseThunderDefence":120,"baseAirDefence":-180},"rarity":"rare"},"Lost Soul":{"internalName":"Lost Soul","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"warrior","quest":"The Lost","agility":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawMainAttackDamage":{"min":33,"raw":110,"max":143},"lifeSteal":{"min":78,"raw":260,"max":338},"walkSpeed":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":8,"max":10},"airDefence":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":40,"raw":40,"max":90},"baseAirDamage":{"min":70,"raw":70,"max":100}},"rarity":"rare"},"Marble Forest":{"internalName":"Marble Forest","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":554,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"shaman","strength":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":15,"rawDexterity":-15,"rawDefence":-15,"rawAgility":15,"earthDamage":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":-32,"raw":-25,"max":-17},"airDamage":{"min":8,"raw":25,"max":33},"earthDefence":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":133,"raw":133,"max":136},"baseAirDamage":{"min":133,"raw":133,"max":136}},"rarity":"unique"},"Poison Touch":{"internalName":"Poison Touch","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":444,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"healthRegenRaw":{"min":-123,"raw":-95,"max":-66},"poison":{"min":2153,"raw":7175,"max":9328},"thorns":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseEarthDamage":{"min":440,"raw":440,"max":630}},"rarity":"unique"},"Overload Core":{"internalName":"Overload Core","type":"accessory","accessoryType":"necklace","dropRestriction":"normal","requirements":{"level":87},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13}},"rarity":"set"},"Skyline Cries":{"internalName":"Skyline Cries","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":450,"dropRestriction":"never","identified":true,"requirements":{"level":87,"classRequirement":"shaman","intelligence":40,"defence":25},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawIntelligence":5,"rawDefence":10,"rawHealth":2750,"raw2ndSpellCost":15,"walkSpeed":-10},"base":{"baseDamage":{"min":57,"raw":57,"max":63},"baseWaterDamage":{"min":110,"raw":110,"max":130},"baseFireDamage":{"min":110,"raw":110,"max":130}},"rarity":"unique"},"Sowilo":{"internalName":"Sowilo","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":87,"dexterity":20,"defence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":5,"max":7},"reflection":{"min":2,"raw":5,"max":7},"exploding":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":575,"baseEarthDefence":-55,"baseThunderDefence":45,"baseWaterDefence":-55,"baseFireDefence":45},"rarity":"unique"},"Genetor":{"internalName":"Genetor","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":294,"dropRestriction":"never","identified":true,"requirements":{"level":87,"classRequirement":"mage","dexterity":50},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":5,"rawSpellDamage":145,"manaSteal":4,"reflection":12,"thunderDefence":10},"base":{"baseThunderDamage":{"min":65,"raw":65,"max":125}},"rarity":"rare"},"Thrice":{"internalName":"Thrice","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":453,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"assassin","intelligence":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawIntelligence":12,"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":26,"raw":87,"max":113},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":5,"raw":17,"max":22},"fireDamage":{"min":-22,"raw":-17,"max":-12},"waterDefence":{"min":5,"raw":17,"max":22}},"base":{"baseDamage":{"min":33,"raw":33,"max":113},"baseWaterDamage":{"min":33,"raw":33,"max":113}},"rarity":"rare"},"Tundra Strike":{"internalName":"Tundra Strike","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":617,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"archer","strength":40,"intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawStrength":8,"manaSteal":{"min":3,"raw":11,"max":14},"damage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-18,"raw":-14,"max":-10},"mainAttackRange":{"min":9,"raw":31,"max":40},"fireDamage":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":140,"raw":140,"max":140},"baseEarthDamage":{"min":385,"raw":385,"max":685},"baseWaterDamage":{"min":385,"raw":385,"max":685}},"rarity":"rare"},"The Ephemeral":{"internalName":"The Ephemeral","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"intelligence":45,"agility":45},"powderSlots":3,"identifications":{"rawIntelligence":7,"rawAgility":7,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":4,"raw":14,"max":18},"manaRegen":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2125,"baseThunderDefence":-130,"baseWaterDefence":100,"baseAirDefence":100},"rarity":"unique"},"Gale's Freedom":{"internalName":"Gale's Freedom","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":87,"dexterity":30,"agility":30},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDexterity":7,"rawIntelligence":12,"rawAgility":7,"spellDamage":20,"reflection":20,"walkSpeed":20,"xpBonus":20},"base":{"baseHealth":2225,"baseThunderDefence":120,"baseAirDefence":120},"rarity":"rare"},"Dune Storm":{"internalName":"Dune Storm","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":87,"strength":60,"agility":70},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":12,"rawAgility":16,"rawMainAttackDamage":520,"walkSpeed":36,"sprint":28,"earthDamage":48,"airDamage":56},"base":{"baseHealth":-1300,"baseEarthDefence":190,"baseAirDefence":260},"rarity":"rare"},"Delirium":{"internalName":"Delirium","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"strength":50,"dexterity":60},"powderSlots":2,"identifications":{"rawStrength":13,"mainAttackDamage":{"min":4,"raw":14,"max":18},"lifeSteal":{"min":-357,"raw":-275,"max":-192},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":12,"raw":40,"max":52},"earthDamage":{"min":7,"raw":22,"max":29},"thunderDamage":{"min":7,"raw":22,"max":29}},"base":{"baseHealth":2225,"baseEarthDefence":70,"baseThunderDefence":125,"baseAirDefence":-200},"rarity":"rare"},"Speaker":{"internalName":"Speaker","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"intelligence":40},"powderSlots":3,"identifications":{"rawIntelligence":7,"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2300,"baseFireDefence":-100,"baseAirDefence":100},"rarity":"rare"},"Tisaun's Valor":{"internalName":"Tisaun's Valor","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"dungeon","requirements":{"level":87,"strength":50,"defence":60},"powderSlots":1,"lore":"Tisaun, a warrior tasked to fend off a corrupted siege alone, could find only a thin shirt and rusted spear to use before the attack. He defeated all 1000 enemies without taking a scratch, and his bravery infused his gear with that same strength.","identifications":{"rawStrength":15,"rawDefence":10,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawAttackSpeed":1,"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3075},"rarity":"legendary"},"Ligfamblawende":{"internalName":"Ligfamblawende","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":283,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"mage","defence":35,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":8,"rawAgility":8,"rawHealth":{"min":240,"raw":800,"max":1040},"lifeSteal":{"min":78,"raw":260,"max":338},"waterDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":111,"raw":111,"max":111},"baseFireDamage":{"min":200,"raw":200,"max":244},"baseAirDamage":{"min":167,"raw":167,"max":277}},"rarity":"rare"},"Lunar Spine":{"internalName":"Lunar Spine","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":421,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"mage","intelligence":50,"agility":50},"powderSlots":4,"lore":"From the Nether Gate, a shard of cosmic stone was ejected. Its purity was defiled, and the first man to wield it went mad, raving about the fall of the cosmos' beauty.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"mainAttackDamage":{"min":20,"raw":66,"max":86},"spellDamage":{"min":20,"raw":66,"max":86},"healthRegenRaw":{"min":-433,"raw":-333,"max":-233},"lifeSteal":{"min":-481,"raw":-370,"max":-259},"manaRegen":{"min":-433,"raw":-333,"max":-233},"manaSteal":{"min":40,"raw":132,"max":172},"rawAttackSpeed":{"min":-86,"raw":-66,"max":-46},"waterDamage":{"min":10,"raw":33,"max":43},"airDamage":{"min":10,"raw":33,"max":43}},"base":{"baseDamage":{"min":616,"raw":616,"max":616},"baseWaterDamage":{"min":0,"raw":0,"max":210},"baseAirDamage":{"min":0,"raw":0,"max":210}},"rarity":"legendary"},"Dust Skaters":{"internalName":"Dust Skaters","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":87,"agility":55},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawAgility":8,"rawMainAttackDamage":210,"spellDamage":18,"poison":3200,"thorns":18,"walkSpeed":24,"sprint":12,"sprintRegen":12,"earthDamage":15,"airDefence":45},"base":{"baseHealth":2375,"baseEarthDefence":-80,"baseAirDefence":55},"rarity":"rare"},"Raging Wind":{"internalName":"Raging Wind","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":87,"quest":"Beyond the Grave","agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":3,"raw":9,"max":12}},"base":{"baseFireDefence":-20,"baseAirDefence":20},"rarity":"rare"},"Blossom Haze":{"internalName":"Blossom Haze","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":638,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"assassin","strength":65},"majorIds":{"Cherry Bombs":"+Cherry Bombs: Turn Smoke Bomb into firecrackers that fly farther, tighter, and deal high damage instantly."},"powderSlots":2,"lore":"And as the spring bursts, the blossom petals flutter in the wind amongst the ashes of your enemies.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"manaSteal":{"min":2,"raw":8,"max":10},"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6},"rawAttackSpeed":-1,"earthDamage":{"min":8,"raw":25,"max":33},"airDamage":{"min":8,"raw":25,"max":33},"waterDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":80,"raw":80,"max":100},"baseEarthDamage":{"min":145,"raw":145,"max":185}},"rarity":"fabled"},"Solar Sword":{"internalName":"Solar Sword","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":465,"dropRestriction":"never","identified":true,"requirements":{"level":87,"classRequirement":"assassin","defence":50},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":7,"healthRegen":20,"rawHealth":1600,"lifeSteal":260,"earthDefence":-10,"fireDefence":30},"base":{"baseDamage":{"min":160,"raw":160,"max":250},"baseFireDamage":{"min":80,"raw":80,"max":130}},"rarity":"rare"},"Demon Tide":{"internalName":"Demon Tide","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"dexterity":65,"defence":45},"powderSlots":2,"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"spellDamage":{"min":-58,"raw":-45,"max":-31},"healingEfficiency":{"min":3,"raw":10,"max":13},"1stSpellCost":{"min":-7,"raw":-25,"max":-32},"2ndSpellCost":{"min":-5,"raw":-17,"max":-22},"3rdSpellCost":{"min":-6,"raw":-20,"max":-26},"4thSpellCost":{"min":-7,"raw":-25,"max":-32},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2625,"baseThunderDefence":65,"baseWaterDefence":-200,"baseFireDefence":65},"rarity":"legendary"},"Corkuff":{"internalName":"Corkuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":87,"intelligence":15,"agility":15},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawIntelligence":3,"walkSpeed":6,"waterDamage":6,"airDamage":8},"rarity":"unique"},"Amanuensis":{"internalName":"Amanuensis","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":87,"intelligence":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":10,"spellDamage":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-125,"baseWaterDefence":-60},"rarity":"rare"},"Yamato Spear":{"internalName":"Yamato Spear","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawDexterity":13,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":120,"raw":120,"max":180}},"rarity":"unique"},"Smoky Diamond Leggings":{"internalName":"Smoky Diamond Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87},"powderSlots":3,"base":{"baseHealth":1830},"rarity":"common"},"Umbral Mail":{"internalName":"Umbral Mail","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"dexterity":40,"intelligence":40},"powderSlots":3,"identifications":{"rawStrength":7,"rawDexterity":5,"rawIntelligence":5,"spellDamage":{"min":5,"raw":16,"max":21},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-10,"raw":-8,"max":-6},"thunderDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":2175,"baseThunderDefence":80,"baseWaterDefence":80,"baseFireDefence":-120},"rarity":"unique"},"Synchro Core":{"internalName":"Synchro Core","type":"accessory","accessoryType":"bracelet","dropRestriction":"normal","requirements":{"level":87},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13}},"rarity":"set"},"Doodad":{"internalName":"Doodad","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":87},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"thorns":4,"reflection":4,"walkSpeed":4,"exploding":4,"xpBonus":4,"lootBonus":4,"stealing":4},"rarity":"rare"},"Arbalest":{"internalName":"Arbalest","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":690,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"shaman","strength":55},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawDexterity":-12,"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"rawSpellDamage":{"min":60,"raw":200,"max":260},"healingEfficiency":{"min":-13,"raw":-10,"max":-7},"4thSpellCost":{"min":-13,"raw":-45,"max":-58},"exploding":{"min":12,"raw":40,"max":52},"earthDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":210,"raw":210,"max":230},"baseEarthDamage":{"min":230,"raw":230,"max":250}},"rarity":"legendary"},"Flashing Boots":{"internalName":"Flashing Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"dexterity":30,"agility":15},"powderSlots":3,"identifications":{"rawIntelligence":-40,"1stSpellCost":{"min":-6,"raw":-20,"max":-26},"2ndSpellCost":{"min":-4,"raw":-12,"max":-16},"3rdSpellCost":{"min":-6,"raw":-20,"max":-26},"4thSpellCost":{"min":-4,"raw":-12,"max":-16},"thorns":{"min":6,"raw":20,"max":26},"reflection":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":2100,"baseEarthDefence":-200,"baseThunderDefence":100,"baseAirDefence":60},"rarity":"unique"},"Alkali":{"internalName":"Alkali","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":87,"defence":55},"majorIds":{"Insoluble":"+Insoluble: Dissolution now lasts 2.5 seconds, but grants only 35% resistance."},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"healthRegenRaw":{"min":32,"raw":105,"max":137},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"waterDefence":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":550},"rarity":"fabled"},"Saundersi Signet":{"internalName":"Saundersi Signet","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":87,"strength":40,"dexterity":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"poison":{"min":540,"raw":1800,"max":2340},"exploding":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":-125,"baseAirDefence":-30},"rarity":"legendary"},"Morph-Amethyst":{"internalName":"Morph-Amethyst","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":87,"strength":41,"dexterity":41,"intelligence":41,"defence":41,"agility":41},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":225},"rarity":"set"},"Windwhistle":{"internalName":"Windwhistle","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":499,"dropRestriction":"never","identified":true,"requirements":{"level":87,"classRequirement":"archer","intelligence":35,"agility":35},"powderSlots":2,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawDefence":-8,"rawAgility":8,"spellDamage":10,"manaRegen":6,"walkSpeed":20,"waterDamage":15,"fireDefence":-20},"base":{"baseDamage":{"min":14,"raw":14,"max":42},"baseWaterDamage":{"min":60,"raw":60,"max":73},"baseAirDamage":{"min":51,"raw":51,"max":82}},"rarity":"unique"},"Splintered Dawn":{"internalName":"Splintered Dawn","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":87,"strength":35,"dexterity":25,"intelligence":25,"defence":35,"agility":35},"powderSlots":2,"identifications":{"elementalDamage":{"min":9,"raw":31,"max":40},"manaSteal":{"min":2,"raw":8,"max":10},"rawElementalMainAttackDamage":{"min":283,"raw":942,"max":1225},"raw2ndSpellCost":{"min":-2,"raw":-8,"max":-10},"rawAttackSpeed":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":2575,"baseEarthDefence":75,"baseThunderDefence":75,"baseWaterDefence":75,"baseFireDefence":75,"baseAirDefence":75},"rarity":"rare"},"Bloodlust":{"internalName":"Bloodlust","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":87,"strength":45,"dexterity":45},"powderSlots":2,"identifications":{"rawStrength":7,"rawDexterity":7,"rawIntelligence":-8,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":-32,"raw":-25,"max":-17},"lifeSteal":{"min":72,"raw":240,"max":312},"walkSpeed":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2350,"baseEarthDefence":100,"baseThunderDefence":100,"baseFireDefence":-100,"baseAirDefence":-100},"rarity":"rare"},"Eliminere":{"internalName":"Eliminere","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":636,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"archer","strength":35,"dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"healthRegen":{"min":-182,"raw":-140,"max":-98},"healthRegenRaw":{"min":-175,"raw":-135,"max":-94},"rawHealth":{"min":-1781,"raw":-1370,"max":-959},"damage":{"min":6,"raw":20,"max":26},"exploding":{"min":8,"raw":25,"max":33}},"base":{"baseEarthDamage":{"min":0,"raw":0,"max":213},"baseThunderDamage":{"min":0,"raw":0,"max":83}},"rarity":"unique"},"Hardened Magma":{"internalName":"Hardened Magma","type":"ingredient","requirements":{"level":87,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"336:0"},"identifications":{"rawHealth":{"min":400,"raw":400,"max":440}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Magmatic Shambler","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]}]},"Antler Fragment":{"internalName":"Antler Fragment","type":"ingredient","requirements":{"level":87,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawDexterity":{"min":3,"raw":3,"max":5},"thunderDamage":{"min":11,"raw":11,"max":13},"walkSpeed":{"min":3,"raw":3,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-130000,"strengthRequirement":0,"dexterityRequirement":30,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Mountain's Heart":{"internalName":"Mountain's Heart","type":"ingredient","requirements":{"level":87,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"383:120"},"identifications":{"manaRegen":{"min":5,"raw":5,"max":6},"earthDamage":{"min":10,"raw":10,"max":13}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-131000,"strengthRequirement":17,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]},{"name":"Colossus Spawn","coords":[[392,96,-5264,50],[525,75,-5421,30]]},{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]},{"name":"Crystalline Behemoth","coords":[759,46,-5363,100]}]},"Crystalline Growth":{"internalName":"Crystalline Growth","type":"ingredient","requirements":{"level":87,"skills":["tailoring","weaponsmithing"]},"icon":{"format":"legacy","value":"79:0"},"identifications":{"manaRegen":{"min":6,"raw":6,"max":6},"rawSpellDamage":{"min":55,"raw":55,"max":60}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-94000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":30,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crystalline Behemoth","coords":[759,46,-5363,100]}]},"Splintered Greathammer":{"internalName":"Splintered Greathammer","type":"ingredient","requirements":{"level":87,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"67:0"},"identifications":{"manaRegen":{"min":-8,"raw":-8,"max":-6},"earthDamage":{"min":10,"raw":10,"max":12},"rawStrength":{"min":8,"raw":8,"max":10}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-129000,"strengthRequirement":25,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Lost Spirit":{"internalName":"Lost Spirit","type":"ingredient","requirements":{"level":87,"skills":["scribing","woodworking"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"spellDamage":{"min":0,"raw":0,"max":8},"rawSpellDamage":{"min":0,"raw":0,"max":75}},"tier":2,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gargoyle","coords":[[527,50,-4447,10],[507,53,-4424,5],[495,50,-4406,5],[470,47,-4413,5],[556,50,-4445,10],[582,50,-4445,10],[611,52,-4448,5],[631,50,-4473,10],[625,50,-4491,10],[610,50,-4475,10],[613,50,-4394,10]]}]},"Hybrid Skin":{"internalName":"Hybrid Skin","type":"ingredient","requirements":{"level":87,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"lifeSteal":{"min":22,"raw":22,"max":45},"rawMainAttackDamage":{"min":15,"raw":15,"max":22}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":7,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]},{"name":"Devouring Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]},{"name":"Pyret","coords":[1224,42,-5461,18]},{"name":"Smoke Serpent","coords":[1224,42,-5461,18]}]},"Charred Carapace":{"internalName":"Charred Carapace","type":"ingredient","requirements":{"level":87,"skills":["armouring"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"fireDamage":{"min":1,"raw":1,"max":3},"mainAttackDamage":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0},"droppedBy":[{"name":"Carrion Spider","coords":[[1343,9,-5210,8],[1386,9,-5196,8],[1327,7,-5381,8],[1385,7,-5433,8],[1484,29,-5519,8],[1471,29,-5538,8],[1435,24,-5530,8],[1337,4,-5148,5],[1323,2,-5153,5],[1314,10,-5245,10],[1425,7,-5201,10],[1476,73,-5571,10]]},{"name":"Fire Scarab","coords":[[1203,31,-5386,30],[1234,22,-5370,30],[1306,9,-5328,15],[1305,9,-5480,15],[1312,8,-5457,25],[1317,7,-5413,25],[1313,7,-5377,25],[1329,7,-5342,25],[1313,8,-5295,20],[1342,8,-5266,20],[1356,7,-5290,20],[1383,8,-5302,20],[1383,6,-5336,25],[1411,8,-5379,25],[1381,8,-5408,30],[1407,8,-5439,20],[1381,9,-5492,20],[1377,5,-5254,25],[1372,7,-5214,20],[1349,9,-5190,20],[1352,9,-5157,20],[1367,9,-5123,25]]},{"name":"Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]},{"name":"Devouring Destrachan","coords":[[1217,123,-5411,15],[1200,91,-5511,9],[1200,91,-5511,9],[1320,174,-5405,25],[1343,155,-5388,25],[1363,147,-5381,20],[1354,159,-5426,15],[1354,159,-5426,15],[1402,155,-5450,12],[1523,151,-5452,8],[1344,151,-5452,8],[1480,147,-5521,10],[1480,147,-5521,10],[1446,138,-5192,15],[1143,43,-5453,3],[1131,43,-5495,3],[1093,43,-5498,5],[1094,43,-5471,3],[1087,43,-5521,10],[1087,43,-5521,10],[1112,43,-5526,3],[1138,43,-5555,3]]}]},"Cessation":{"internalName":"Cessation","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":87,"strength":55,"dexterity":55},"powderSlots":2,"lore":"Nothing more.","identifications":{"lifeSteal":250,"manaRegen":15,"manaSteal":10,"raw1stSpellCost":-4,"walkSpeed":15},"base":{"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"legendary"},"Zero":{"internalName":"Zero","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":831,"dropRestriction":"normal","requirements":{"level":87,"classRequirement":"archer","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"lore":"The unstable power within this bow is capable of great destruction, but seems to zero out at the most crucial moments in battle. Only the most skillful archers can wield this weapon with confidence.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"healthRegenRaw":{"min":-162,"raw":-125,"max":-87},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"rawElementalDamage":{"min":63,"raw":210,"max":273},"elementalMainAttackDamage":{"min":8,"raw":25,"max":33},"rawAttackSpeed":1,"exploding":{"min":100,"raw":333,"max":433}},"base":{"baseEarthDamage":{"min":0,"raw":0,"max":133},"baseThunderDamage":{"min":0,"raw":0,"max":133},"baseWaterDamage":{"min":0,"raw":0,"max":133},"baseFireDamage":{"min":0,"raw":0,"max":133},"baseAirDamage":{"min":0,"raw":0,"max":133}},"rarity":"legendary"},"Steamjet Walkers":{"internalName":"Steamjet Walkers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"dexterity":30,"intelligence":30,"agility":40},"majorIds":{"Lightweight":"+Lightweight: You no longer take fall damage."},"powderSlots":2,"lore":"A rogue inventor stole the plans for a steam jet booster from Corkus and reverse engineered them onto a set of boots. While effective, they are dangerous, prone to catastrophic failure.","identifications":{"rawAgility":10,"spellDamage":{"min":4,"raw":12,"max":16},"raw2ndSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":6,"raw":21,"max":27},"thunderDamage":{"min":6,"raw":21,"max":27},"waterDamage":{"min":6,"raw":21,"max":27},"airDamage":{"min":7,"raw":24,"max":31}},"base":{"baseHealth":2100,"baseThunderDefence":-120},"rarity":"legendary"},"Corrupted Uth Belt":{"internalName":"Corrupted Uth Belt","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86,"defence":75},"powderSlots":3,"dropMeta":{"name":"Corrupted Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDefence":10,"fireDamage":15,"fireDefence":25,"airDefence":25},"base":{"baseHealth":2850,"baseWaterDefence":-70,"baseFireDefence":150},"rarity":"set"},"Bladeguard":{"internalName":"Bladeguard","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"assassin","defence":25,"agility":35},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawDefence":15,"rawAgility":15,"spellDamage":{"min":-13,"raw":-10,"max":-7},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":70,"raw":70,"max":100},"baseFireDamage":{"min":35,"raw":35,"max":70},"baseAirDamage":{"min":35,"raw":35,"max":70}},"rarity":"unique"},"Lachesism":{"internalName":"Lachesism","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":86,"dexterity":40},"majorIds":{"Entropy":"+Entropy: Meteor falls three times faster."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":1,"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"spellDamage":{"min":-19,"raw":-15,"max":-10},"3rdSpellCost":{"min":-2,"raw":-6,"max":-8},"thorns":{"min":2,"raw":7,"max":9},"reflection":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDefence":-20,"baseWaterDefence":-20,"baseFireDefence":-20,"baseAirDefence":-20},"rarity":"fabled"},"Mountain Spirit":{"internalName":"Mountain Spirit","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":500,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"assassin","quest":"The Lost","dexterity":35,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDexterity":5,"rawAgility":5,"rawMainAttackDamage":{"min":36,"raw":120,"max":156},"spellDamage":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":80,"raw":80,"max":120},"baseThunderDamage":{"min":30,"raw":30,"max":70},"baseAirDamage":{"min":30,"raw":30,"max":70}},"rarity":"rare"},"Mech Core":{"internalName":"Mech Core","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":86,"quest":"Desperate Metal","defence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawIntelligence":-5,"rawDefence":8,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":23,"raw":75,"max":98},"rawHealth":{"min":189,"raw":630,"max":819},"manaRegen":{"min":-8,"raw":-6,"max":-4}},"base":{"baseWaterDefence":-25,"baseFireDefence":50},"rarity":"rare"},"Clock Amulet":{"internalName":"Clock Amulet","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"lootBonus":6,"earthDefence":6,"thunderDefence":2,"waterDefence":5,"fireDefence":4,"airDefence":3},"base":{"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"set"},"Achilles":{"internalName":"Achilles","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86,"strength":40,"defence":20},"powderSlots":2,"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":7,"rawDefence":15,"rawMainAttackDamage":380,"earthDamage":15,"fireDamage":15,"earthDefence":400,"waterDefence":-50,"elementalDefence":50},"base":{"baseHealth":3600,"baseEarthDefence":300,"baseThunderDefence":200,"baseWaterDefence":-850,"baseFireDefence":300,"baseAirDefence":200},"rarity":"legendary"},"Spark of Courage":{"internalName":"Spark of Courage","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":322,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"warrior","defence":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":39,"raw":130,"max":169},"rawHealth":{"min":270,"raw":900,"max":1170},"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":0,"raw":0,"max":20},"baseFireDamage":{"min":0,"raw":0,"max":35},"baseAirDamage":{"min":35,"raw":35,"max":60}},"rarity":"unique"},"Flintlock":{"internalName":"Flintlock","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":536,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"archer","strength":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawStrength":20,"rawDefence":30,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":345,"raw":1150,"max":1495},"walkSpeed":{"min":-22,"raw":-17,"max":-12},"exploding":{"min":12,"raw":40,"max":52},"waterDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseDamage":{"min":145,"raw":145,"max":150},"baseEarthDamage":{"min":40,"raw":40,"max":170},"baseFireDamage":{"min":40,"raw":40,"max":170}},"rarity":"unique"},"The Courier's Cape":{"internalName":"The Courier's Cape","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"agility":70},"powderSlots":3,"identifications":{"rawAgility":10,"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":7,"raw":23,"max":30},"earthDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1900,"baseAirDefence":50},"rarity":"unique"},"Corkian Jet Boots":{"internalName":"Corkian Jet Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":86},"powderSlots":1,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawAgility":5,"raw2ndSpellCost":-8,"walkSpeed":20,"jumpHeight":2,"thunderDamage":7,"waterDamage":7,"airDamage":7},"base":{"baseHealth":2225,"baseThunderDefence":60,"baseWaterDefence":60},"rarity":"unique"},"Argos":{"internalName":"Argos","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86,"defence":50},"powderSlots":4,"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDefence":15,"spellDamage":-65,"lifeSteal":275,"rawAttackSpeed":-1,"fireDamage":100,"fireDefence":20},"base":{"baseHealth":3900},"rarity":"legendary"},"Physalis":{"internalName":"Physalis","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":65,"dexterity":40},"powderSlots":2,"identifications":{"rawStrength":8,"rawDexterity":8,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"poison":{"min":1028,"raw":3425,"max":4453},"rawAttackSpeed":1,"exploding":{"min":9,"raw":31,"max":40},"earthDamage":{"min":4,"raw":13,"max":17},"thunderDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2550,"baseEarthDefence":70,"baseThunderDefence":70,"baseAirDefence":-120},"rarity":"legendary"},"Deepwood Root":{"internalName":"Deepwood Root","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":248,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"mage","strength":30,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":4,"raw":12,"max":16},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseEarthDamage":{"min":50,"raw":50,"max":75},"baseWaterDamage":{"min":40,"raw":40,"max":85}},"rarity":"unique"},"Wristviewer":{"internalName":"Wristviewer","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":86},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"spellDamage":4,"xpBonus":9,"elementalDamage":4},"rarity":"unique"},"Brass Brand":{"internalName":"Brass Brand","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":612,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"assassin","strength":40,"dexterity":55},"powderSlots":3,"lore":"Built by Cerid to accrue raw static charge from the surroundings and direct it at opponents, the blade's chief failing is that the wielder is not rendered immune to their own discharge as intended.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawDexterity":25,"rawSpellDamage":{"min":51,"raw":169,"max":220},"lifeSteal":{"min":-377,"raw":-290,"max":-203},"thorns":{"min":18,"raw":60,"max":78},"reflection":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":12,"raw":40,"max":52},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":0,"raw":0,"max":220},"baseEarthDamage":{"min":110,"raw":110,"max":160}},"rarity":"legendary"},"Impeccable Andesite Bow":{"internalName":"Impeccable Andesite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":401,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":450,"raw":450,"max":517}},"rarity":"common"},"Tashkil":{"internalName":"Tashkil","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":270,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"mage","defence":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":8,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":45,"raw":150,"max":195},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":75,"raw":75,"max":100},"baseFireDamage":{"min":80,"raw":80,"max":105}},"rarity":"rare"},"Storm Brewer":{"internalName":"Storm Brewer","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"dexterity":65},"powderSlots":3,"identifications":{"rawDexterity":12,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"rawSpellDamage":{"min":48,"raw":160,"max":208},"manaRegen":{"min":-23,"raw":-18,"max":-13},"manaSteal":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2550,"baseThunderDefence":50,"baseWaterDefence":-150},"rarity":"legendary"},"Equalizer":{"internalName":"Equalizer","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":86,"strength":22,"dexterity":22,"intelligence":22,"defence":22,"agility":22},"powderSlots":2,"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"mainAttackDamage":{"min":5,"raw":18,"max":23},"spellDamage":{"min":5,"raw":18,"max":23},"healthRegenRaw":{"min":32,"raw":105,"max":137},"lifeSteal":{"min":47,"raw":155,"max":202},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":2,"raw":6,"max":8},"thorns":{"min":5,"raw":18,"max":23},"reflection":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":1555,"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"unique"},"Marsh Waders":{"internalName":"Marsh Waders","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":20,"intelligence":20},"powderSlots":2,"identifications":{"rawStrength":8,"poison":{"min":914,"raw":3045,"max":3959},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":7,"raw":22,"max":29},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"waterDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2300,"baseEarthDefence":60,"baseThunderDefence":-60,"baseWaterDefence":100,"baseAirDefence":-100},"rarity":"rare"},"Vortex Bracer":{"internalName":"Vortex Bracer","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86,"agility":30},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawMainAttackDamage":85,"rawSpellDamage":65,"walkSpeed":10,"airDamage":12},"base":{"baseHealth":400,"baseFireDefence":-40,"baseAirDefence":40},"rarity":"rare"},"Vulcan":{"internalName":"Vulcan","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":86,"strength":60,"defence":65},"majorIds":{"Altruism":"+Altruism: Nearby players gain 100% of the health you gain from Health Regen and Life Steal."},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"identifications":{"rawStrength":15,"rawAgility":-8,"healthRegen":{"min":20,"raw":65,"max":85},"lifeSteal":{"min":-468,"raw":-360,"max":-252},"3rdSpellCost":{"min":18,"raw":14,"max":10},"sprint":{"min":-32,"raw":-25,"max":-17},"fireMainAttackDamage":{"min":9,"raw":30,"max":39},"rawFireMainAttackDamage":{"min":80,"raw":265,"max":345}},"base":{"baseHealth":3400,"baseEarthDefence":200,"baseFireDefence":200,"baseAirDefence":-300},"rarity":"fabled"},"Smoky Diamond Boots":{"internalName":"Smoky Diamond Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86},"powderSlots":3,"base":{"baseHealth":1775},"rarity":"common"},"Firestarter":{"internalName":"Firestarter","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":432,"dropRestriction":"never","identified":true,"requirements":{"level":86,"classRequirement":"assassin","defence":40},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"healthRegenRaw":70,"exploding":5,"waterDamage":-10,"fireDamage":20},"base":{"baseDamage":{"min":130,"raw":130,"max":216}},"rarity":"unique"},"Surefooter":{"internalName":"Surefooter","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":86,"strength":55},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"rawStrength":8,"rawMainAttackDamage":250,"manaSteal":8,"thorns":7,"walkSpeed":-8,"earthDamage":15},"base":{"baseHealth":1900,"baseEarthDefence":100,"baseAirDefence":-100},"rarity":"unique"},"Hysteria":{"internalName":"Hysteria","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"dexterity":55,"defence":20},"powderSlots":2,"identifications":{"rawDexterity":4,"rawDefence":8,"mainAttackDamage":{"min":2,"raw":7,"max":9},"healthRegen":{"min":12,"raw":40,"max":52},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":-1,"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":2075,"baseEarthDefence":-100,"baseThunderDefence":80,"baseWaterDefence":-100,"baseFireDefence":70},"rarity":"unique"},"Vesuvius":{"internalName":"Vesuvius","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":274,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"mage","strength":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"exploding":{"min":10,"raw":33,"max":43},"earthDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":10,"raw":10,"max":50},"baseEarthDamage":{"min":100,"raw":100,"max":200},"baseFireDamage":{"min":100,"raw":100,"max":200}},"rarity":"unique"},"Aerosol":{"internalName":"Aerosol","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":429,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"assassin","agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDefence":-6,"rawAgility":8,"rawMainAttackDamage":{"min":23,"raw":75,"max":98},"fireDamage":{"min":-78,"raw":-60,"max":-42},"airDamage":{"min":4,"raw":12,"max":16},"fireDefence":{"min":-78,"raw":-60,"max":-42}},"base":{"baseDamage":{"min":10,"raw":10,"max":92},"baseAirDamage":{"min":50,"raw":50,"max":125}},"rarity":"unique"},"Outrage":{"internalName":"Outrage","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":70},"powderSlots":2,"lore":"\\[Community Event Winner\\] This battered stone mask is of unknown origin, and has no openings for the eyes whatsoever. Indeed, all that can be seen while wearing it is that which makes you truly angry.","identifications":{"mainAttackDamage":{"min":17,"raw":55,"max":72},"lifeSteal":{"min":77,"raw":255,"max":332},"earthDamage":{"min":9,"raw":30,"max":39},"elementalDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":3000,"baseEarthDefence":100,"baseThunderDefence":-50,"baseWaterDefence":-50,"baseFireDefence":-50,"baseAirDefence":-50},"rarity":"legendary"},"Careless Whisper":{"internalName":"Careless Whisper","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":530,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"shaman","defence":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawDefence":11,"rawAgility":11,"healthRegenRaw":{"min":38,"raw":125,"max":163},"rawHealth":{"min":525,"raw":1750,"max":2275},"manaRegen":{"min":2,"raw":6,"max":8},"1stSpellCost":{"min":-14,"raw":-48,"max":-62},"walkSpeed":{"min":-10,"raw":-8,"max":-6}},"base":{"baseFireDamage":{"min":165,"raw":165,"max":188},"baseAirDamage":{"min":165,"raw":165,"max":188}},"rarity":"rare"},"Watch Bracelet":{"internalName":"Watch Bracelet","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"lootBonus":6,"elementalDamage":5},"rarity":"set"},"Shortout":{"internalName":"Shortout","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":469,"dropRestriction":"never","identified":true,"requirements":{"level":86,"classRequirement":"assassin","dexterity":40},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"lifeSteal":-145,"reflection":14,"exploding":22,"thunderDamage":26,"waterDefence":-12},"base":{"baseDamage":{"min":50,"raw":50,"max":350},"baseThunderDamage":{"min":5,"raw":5,"max":50}},"rarity":"unique"},"Bantisu's Approach":{"internalName":"Bantisu's Approach","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86},"powderSlots":3,"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":8,"manaRegen":{"min":2,"raw":5,"max":7},"manaSteal":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13},"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":8,"raw":25,"max":33},"lootBonus":{"min":5,"raw":15,"max":20},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2500,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":80},"rarity":"unique"},"Thermals":{"internalName":"Thermals","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":500,"dropRestriction":"never","identified":true,"requirements":{"level":86,"classRequirement":"shaman","defence":45},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"healthRegenRaw":160,"raw2ndSpellCost":-10,"walkSpeed":10,"earthDefence":15,"airDefence":15},"base":{"baseDamage":{"min":95,"raw":95,"max":105},"baseFireDamage":{"min":98,"raw":98,"max":102}},"rarity":"rare"},"Ouroboros":{"internalName":"Ouroboros","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":6,"dexterity":6,"intelligence":6,"defence":6,"agility":6},"powderSlots":2,"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"lifeSteal":{"min":56,"raw":185,"max":241},"manaSteal":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":2550},"rarity":"rare"},"Pilot Light":{"internalName":"Pilot Light","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"defence":35},"powderSlots":3,"identifications":{"rawDefence":5,"healthRegen":{"min":5,"raw":18,"max":23},"healthRegenRaw":{"min":33,"raw":110,"max":143},"rawHealth":{"min":128,"raw":425,"max":553},"reflection":{"min":2,"raw":8,"max":10},"airDamage":{"min":-9,"raw":-7,"max":-5},"waterDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":2575,"baseEarthDefence":70,"baseThunderDefence":70,"baseWaterDefence":-40,"baseFireDefence":90,"baseAirDefence":-40},"rarity":"unique"},"Coolant":{"internalName":"Coolant","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":86},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"waterDamage":5,"waterDefence":6,"fireDefence":8},"base":{"baseWaterDefence":25,"baseFireDefence":25},"rarity":"rare"},"Power Cell":{"internalName":"Power Cell","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":86,"dexterity":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":10,"rawMainAttackDamage":{"min":10,"raw":34,"max":44},"thunderDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-125,"baseThunderDefence":-60},"rarity":"rare"},"Deja Vu":{"internalName":"Deja Vu","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":573,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"shaman","strength":32,"dexterity":32},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"lifeSteal":{"min":30,"raw":100,"max":130},"walkSpeed":{"min":5,"raw":15,"max":20},"lootBonus":{"min":8,"raw":25,"max":33},"earthDamage":{"min":15,"raw":51,"max":66},"thunderDamage":{"min":15,"raw":51,"max":66},"waterDamage":{"min":-27,"raw":-21,"max":-15},"fireDamage":{"min":-27,"raw":-21,"max":-15},"airDamage":{"min":-27,"raw":-21,"max":-15}},"base":{"baseEarthDamage":{"min":7,"raw":7,"max":7},"baseThunderDamage":{"min":7,"raw":7,"max":7},"baseWaterDamage":{"min":82,"raw":82,"max":94},"baseFireDamage":{"min":82,"raw":82,"max":94},"baseAirDamage":{"min":82,"raw":82,"max":94}},"rarity":"unique"},"Carbon Weave":{"internalName":"Carbon Weave","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":86,"strength":35,"defence":35},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawStrength":8,"rawDefence":8,"mainAttackDamage":10,"thorns":20,"earthDamage":15,"fireDamage":15,"earthDefence":20,"fireDefence":20},"base":{"baseHealth":2650,"baseEarthDefence":70,"baseFireDefence":70,"baseAirDefence":-120},"rarity":"unique"},"Gear Grinder":{"internalName":"Gear Grinder","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":314,"dropRestriction":"never","identified":true,"requirements":{"level":86,"classRequirement":"warrior","defence":40},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"mainAttackDamage":12,"spellDamage":8,"manaRegen":6,"exploding":20,"xpBonus":8},"base":{"baseDamage":{"min":55,"raw":55,"max":150},"baseFireDamage":{"min":25,"raw":25,"max":75}},"rarity":"unique"},"Thunderlock":{"internalName":"Thunderlock","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":516,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"archer","dexterity":40,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawMainAttackDamage":{"min":33,"raw":110,"max":143},"spellDamage":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":90,"raw":300,"max":390},"rawAttackSpeed":1,"mainAttackRange":{"min":-39,"raw":-30,"max":-21},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":35,"raw":35,"max":55},"baseThunderDamage":{"min":15,"raw":15,"max":65},"baseAirDamage":{"min":25,"raw":25,"max":45}},"rarity":"rare"},"Impeccable Andesite Dagger":{"internalName":"Impeccable Andesite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":333,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":143,"raw":143,"max":180}},"rarity":"common"},"Impeccable Andesite Relik":{"internalName":"Impeccable Andesite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":397,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":258,"raw":258,"max":271}},"rarity":"common"},"Cracklers":{"internalName":"Cracklers","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"defence":35},"powderSlots":2,"identifications":{"rawDefence":12,"rawMainAttackDamage":{"min":225,"raw":750,"max":975},"healthRegen":{"min":9,"raw":30,"max":39},"lifeSteal":{"min":60,"raw":200,"max":260},"thorns":{"min":8,"raw":25,"max":33},"rawAttackSpeed":{"min":-9,"raw":-7,"max":-5},"exploding":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2350,"baseThunderDefence":50,"baseWaterDefence":-115,"baseFireDefence":80},"rarity":"unique"},"Impeccable Andesite Wand":{"internalName":"Impeccable Andesite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":199,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":115,"raw":115,"max":150}},"rarity":"common"},"Fireball":{"internalName":"Fireball","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":86,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"exploding":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseWaterDefence":-30},"rarity":"unique"},"Turbine Greaves":{"internalName":"Turbine Greaves","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":86},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDefence":7,"rawAgility":7,"rawMainAttackDamage":275,"reflection":25,"walkSpeed":20,"sprintRegen":16,"fireDefence":20,"airDefence":20},"base":{"baseHealth":2800,"baseFireDefence":100,"baseAirDefence":100},"rarity":"rare"},"Faustian Contract":{"internalName":"Faustian Contract","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":353,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"mage","dexterity":50,"defence":40},"powderSlots":3,"lore":"Once a contract is formed, and before its details are discussed, a seal is placed on the human's body.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawMainAttackDamage":{"min":165,"raw":550,"max":715},"spellDamage":{"min":9,"raw":30,"max":39},"healthRegen":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":-1,"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":175,"raw":175,"max":250},"baseFireDamage":{"min":200,"raw":200,"max":225}},"rarity":"legendary"},"Impeccable Andesite Spear":{"internalName":"Impeccable Andesite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":264,"dropRestriction":"normal","requirements":{"level":86,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":292,"raw":292,"max":345}},"rarity":"common"},"About-Face":{"internalName":"About-Face","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":40,"defence":40},"powderSlots":2,"identifications":{"rawStrength":10,"rawDefence":10,"mainAttackDamage":{"min":-71,"raw":-55,"max":-38},"spellDamage":{"min":-71,"raw":-55,"max":-38},"healthRegenRaw":{"min":48,"raw":160,"max":208},"lifeSteal":{"min":59,"raw":195,"max":254},"manaSteal":{"min":2,"raw":8,"max":10},"thorns":{"min":100,"raw":333,"max":433},"reflection":{"min":100,"raw":333,"max":433}},"base":{"baseHealth":2675,"baseEarthDefence":60,"baseFireDefence":60},"rarity":"unique"},"Ornithopter":{"internalName":"Ornithopter","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":86,"strength":35,"agility":70},"majorIds":{"Freerunner":"+Freerunner: When your sprint bar is under 30% full, increase your sprint speed by +150%."},"powderSlots":2,"identifications":{"rawStrength":15,"rawMainAttackDamage":{"min":99,"raw":330,"max":429},"walkSpeed":{"min":6,"raw":20,"max":26},"sprint":{"min":-149,"raw":-115,"max":-80},"sprintRegen":{"min":96,"raw":320,"max":416}},"base":{"baseHealth":3300},"rarity":"fabled"},"Wanderer's Purpose":{"internalName":"Wanderer's Purpose","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":747,"dropRestriction":"never","requirements":{"level":86,"classRequirement":"archer","strength":60,"agility":60},"majorIds":{"Seeking Module":"+Seeking Module: Homing Shots track towards nearby enemies much more aggressively."},"powderSlots":3,"lore":"To look and say “I will go there,” and to keep going until you find it... that’s what’s important.","dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"spellDamage":{"min":-19,"raw":-15,"max":-10},"mainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":53,"raw":175,"max":228},"manaSteal":{"min":4,"raw":12,"max":16},"sprintRegen":{"min":11,"raw":35,"max":46},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseEarthDamage":{"min":400,"raw":400,"max":500},"baseAirDamage":{"min":400,"raw":400,"max":500}},"rarity":"fabled"},"Ivory Tusk":{"internalName":"Ivory Tusk","type":"ingredient","requirements":{"level":86,"skills":["jeweling"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"poison":{"min":-175,"raw":-175,"max":-155},"healthRegenRaw":{"min":20,"raw":20,"max":30}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Charging Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Enraged Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Elefolk Hunter","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"Elefolk Warrior","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]}]},"Golden Avia Feather":{"internalName":"Golden Avia Feather","type":"ingredient","requirements":{"level":86,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"296:0"},"tier":2,"consumableOnlyIDs":{"duration":-170,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":25,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Golden Avia","coords":[[-1706,97,-2724,0],[-1771,104,-2669,0],[-1736,95,-2659,0],[-1720,96,-2600,0],[-1842,68,-2560,0],[-1795,86,-2537,0],[-1728,97,-2509,0],[-1686,89,-2523,0],[-1700,91,-2475,0],[-1798,98,-2455,0],[-1755,86,-2392,0],[-1645,123,-2241,0],[-1552,101,-2242,0],[-1499,95,-2229,0],[-1436,118,-2353,0],[-1430,89,-2400,0],[-1465,91,-2497,0],[-1520,96,-2568,0],[-1530,112,-2486,0],[-1480,114,-2673,0],[-1584,87,-2738,0],[-1641,96,-2746,0],[-1485,101,-2742,0],[-1392,109,-2761,0],[-1497,118,-2189,0],[-1232,118,-3280,0],[-1312,164,-2993,0],[-1348,93,-3087,0],[-1289,104,-3174,0],[-1347,81,-3201,0],[-1271,93,-3271,0],[-1303,81,-3323,0],[-1336,135,-3290,0],[-1431,166,-3288,0],[-1364,131,-3245,0],[-1444,72,-3182,0],[-1613,93,-3176,0],[-1675,93,-3199,0],[-1738,95,-2191,0]]}]},"Elephelk Trunk":{"internalName":"Elephelk Trunk","type":"ingredient","requirements":{"level":86,"skills":["alchemism","weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"154:0"},"identifications":{"earthDefence":{"min":24,"raw":24,"max":28},"waterDefence":{"min":24,"raw":24,"max":28}},"tier":3,"consumableOnlyIDs":{"duration":120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":70000,"strengthRequirement":15,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]}]},"Sliver of Sunrise":{"internalName":"Sliver of Sunrise","type":"ingredient","requirements":{"level":86,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"382:0"},"identifications":{"thunderDamage":{"min":9,"raw":9,"max":13},"fireDamage":{"min":10,"raw":10,"max":12},"elementalDefence":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-130000,"strengthRequirement":5,"dexterityRequirement":14,"intelligenceRequirement":5,"defenceRequirement":14,"agilityRequirement":5}},"Razor-Sharp Tooth":{"internalName":"Razor-Sharp Tooth","type":"ingredient","requirements":{"level":86,"skills":["weaponsmithing","tailoring"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"rawMainAttackDamage":{"min":40,"raw":40,"max":60},"rawDexterity":{"min":2,"raw":2,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-94000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jinko Shanker","coords":[[500,29,-5012,25],[463,29,-4966,20],[601,29,-4937,40],[626,29,-4860,25],[592,29,-4687,25],[546,29,-4628,30],[500,29,-4583,30],[356,29,-4777,20],[452,46,-4591,5]]},{"name":"Lyran Veteran","coords":[[809,69,-5210,10],[786,65,-5224,13],[868,44,-5229,10]]}]},"Watery Aura":{"internalName":"Watery Aura","type":"ingredient","requirements":{"level":86,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"rawIntelligence":{"min":3,"raw":3,"max":5},"spellDamage":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Shimmerstalk","coords":[[666,37,-5054,3],[675,38,-5049,3],[674,37,-5029,1],[657,36,-5028,3],[657,36,-5029,3],[627,31,-5025,3],[627,31,-5026,3],[593,27,-5029,2],[598,27,-5023,3],[615,25,-5006,4],[615,25,-5007,4],[640,22,-4996,3],[640,22,-4997,3],[646,19,-5021,3],[654,19,-5024,2]]},{"name":"Clipped-Wing Shimmer Moth","coords":[[666,37,-5054,3],[675,38,-5049,3],[674,37,-5029,1],[657,36,-5028,3],[657,36,-5029,3],[627,31,-5025,3],[627,31,-5026,3],[593,27,-5029,2],[598,27,-5023,3],[615,25,-5006,4],[615,25,-5007,4],[640,22,-4996,3],[640,22,-4997,3],[646,19,-5021,3],[654,19,-5024,2]]},{"name":"Luminescent Jelly","coords":null},{"name":"Belua the Unquenchable","coords":null},{"name":"Drenched Zombie","coords":null},{"name":"Vengeful Siren","coords":null},{"name":"Majestic Cave Squid","coords":false},{"name":"Magic Essence","coords":null}]},"Skysquawk":{"internalName":"Skysquawk","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":612,"dropRestriction":"never","requirements":{"level":85,"classRequirement":"archer","strength":25,"agility":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawStrength":5,"rawAgility":8,"raw3rdSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":5,"raw":15,"max":20},"jumpHeight":{"min":1,"raw":2,"max":3},"xpBonus":{"min":4,"raw":12,"max":16},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":90,"raw":90,"max":110},"baseEarthDamage":{"min":60,"raw":60,"max":70},"baseAirDamage":{"min":70,"raw":70,"max":90}},"rarity":"rare"},"Proxima":{"internalName":"Proxima","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":505,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"warrior","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":4,"lore":"This spear is bright enough that it can cause blindness if you look directly at it. Its immense power is limited by its weight; the weapon is nearly impossible to lift.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":-117,"raw":-90,"max":-63},"lifeSteal":{"min":87,"raw":290,"max":377},"manaSteal":{"min":-5,"raw":-4,"max":-3},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":210,"raw":210,"max":220},"baseEarthDamage":{"min":110,"raw":110,"max":200},"baseThunderDamage":{"min":110,"raw":110,"max":200},"baseWaterDamage":{"min":110,"raw":110,"max":200},"baseFireDamage":{"min":110,"raw":110,"max":200},"baseAirDamage":{"min":110,"raw":110,"max":200}},"rarity":"legendary"},"Chain Rule":{"internalName":"Chain Rule","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":105},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":41,"raw":135,"max":176},"healthRegen":{"min":-47,"raw":-36,"max":-25},"manaSteal":{"min":1,"raw":4,"max":5},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"raw2ndSpellCost":{"min":-1,"raw":-4,"max":-5},"raw3rdSpellCost":{"min":-1,"raw":-4,"max":-5},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":-29,"raw":-22,"max":-15},"waterDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2475,"baseEarthDefence":145,"baseThunderDefence":-75,"baseWaterDefence":85},"rarity":"legendary"},"Procrastination":{"internalName":"Procrastination","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":797,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"shaman"},"majorIds":{"Peaceful Effigy":"+Peaceful Effigy: Your Totem will last twice as long."},"lore":"...I'll finish writing this later.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawStrength":17,"rawDexterity":17,"rawIntelligence":17,"rawDefence":17,"rawAgility":17,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"rawAttackSpeed":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-32,"raw":-25,"max":-17},"xpBonus":{"min":-13,"raw":-10,"max":-7},"lootBonus":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":1250,"raw":1250,"max":1875}},"rarity":"legendary"},"Bizzles":{"internalName":"Bizzles","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":334,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"warrior","dexterity":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-1105,"raw":-850,"max":-595},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":13,"max":17},"waterDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":90,"raw":90,"max":125},"baseThunderDamage":{"min":25,"raw":25,"max":255},"baseWaterDamage":{"min":125,"raw":125,"max":185}},"rarity":"unique"},"Mistral":{"internalName":"Mistral","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"intelligence":30,"agility":50},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":5,"raw":16,"max":21},"walkSpeed":{"min":5,"raw":16,"max":21},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1800,"baseFireDefence":-80,"baseAirDefence":80},"rarity":"unique"},"Canyon Spirit":{"internalName":"Canyon Spirit","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":273,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"mage","quest":"The Lost","strength":25,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawAgility":13,"mainAttackDamage":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":6,"raw":19,"max":25}},"base":{"baseDamage":{"min":40,"raw":40,"max":65},"baseEarthDamage":{"min":70,"raw":70,"max":90}},"rarity":"unique"},"Gnir":{"internalName":"Gnir","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":85,"strength":30,"intelligence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":4,"healthRegenRaw":{"min":8,"raw":25,"max":33},"thorns":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":220,"baseWaterDefence":25},"rarity":"unique"},"Sleet":{"internalName":"Sleet","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":649,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"archer","dexterity":35,"intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"spellDamage":25,"rawSpellDamage":130,"healthRegenRaw":-150,"walkSpeed":-10,"earthDamage":-35,"thunderDamage":15,"waterDamage":15},"base":{"baseDamage":{"min":20,"raw":20,"max":65},"baseThunderDamage":{"min":0,"raw":0,"max":390},"baseWaterDamage":{"min":100,"raw":100,"max":290}},"rarity":"rare"},"Found Footage":{"internalName":"Found Footage","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":85,"dexterity":55,"agility":55},"lore":"Despite heavy damage, this memory core recovered from a fallen Despermech remains usable. Sifting through its contents paints a clear yet brutal picture of the destruction the rogue creations have caused.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":1,"rawIntelligence":5,"rawAgility":1,"manaRegen":{"min":-5,"raw":-4,"max":-3},"1stSpellCost":{"min":-2,"raw":-8,"max":-10},"elementalDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseEarthDefence":-50,"baseFireDefence":-50},"rarity":"legendary"},"Kayde":{"internalName":"Kayde","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13}},"rarity":"unique"},"Gloomstone":{"internalName":"Gloomstone","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":85,"dexterity":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"rawSpellDamage":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":-10,"baseWaterDefence":-25,"baseAirDefence":-15},"rarity":"rare"},"Filter Mask":{"internalName":"Filter Mask","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":85},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"poison":-2950,"walkSpeed":10,"sprintRegen":20,"earthDamage":10,"airDamage":10,"earthDefence":20,"airDefence":15},"base":{"baseHealth":2750,"baseEarthDefence":120,"baseAirDefence":120},"rarity":"rare"},"Bolter":{"internalName":"Bolter","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":516,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"archer","dexterity":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":8,"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"spellDamage":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":84,"raw":280,"max":364},"thunderDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":15,"raw":15,"max":15},"baseThunderDamage":{"min":50,"raw":50,"max":160}},"rarity":"unique"},"Coat of Byakko":{"internalName":"Coat of Byakko","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":30,"agility":30},"powderSlots":2,"identifications":{"rawStrength":5,"rawAgility":5,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"rawMainAttackDamage":{"min":66,"raw":220,"max":286},"thorns":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"sprint":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1925,"baseEarthDefence":75,"baseFireDefence":-100,"baseAirDefence":75},"rarity":"unique"},"Brimstone":{"internalName":"Brimstone","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"warrior","strength":25,"defence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":2,"raw":8,"max":10},"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":450,"raw":1500,"max":1950},"manaRegen":{"min":-8,"raw":-6,"max":-4},"exploding":{"min":4,"raw":12,"max":16},"earthDamage":{"min":8,"raw":27,"max":35},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":55,"raw":55,"max":85},"baseFireDamage":{"min":110,"raw":110,"max":130}},"rarity":"rare"},"Flashstep":{"internalName":"Flashstep","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"agility":50},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawAgility":12,"walkSpeed":40,"airDamage":15,"fireDefence":-20},"base":{"baseHealth":2350,"baseAirDefence":100},"rarity":"rare"},"Albedo":{"internalName":"Albedo","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"agility":60},"powderSlots":3,"lore":"\\[Community Event Winner\\]","identifications":{"rawAgility":10,"reflection":{"min":20,"raw":65,"max":85},"earthDefence":{"min":1,"raw":4,"max":5},"thunderDefence":{"min":1,"raw":2,"max":3},"waterDefence":{"min":1,"raw":2,"max":3},"fireDefence":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":2800,"baseEarthDefence":100,"baseThunderDefence":125,"baseWaterDefence":125,"baseFireDefence":100,"baseAirDefence":150},"rarity":"rare"},"Runebound Chains":{"internalName":"Runebound Chains","type":"armour","armourType":"leggings","armourColor":"rgb(167,50,38)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"strength":40,"dexterity":40,"defence":40,"agility":40},"majorIds":{"Sorcery":"+Sorcery: 30% chance for spells and attacks to cast a second time at no additional cost."},"powderSlots":4,"lore":"You know better than anyone else that there’s always a sliver of truth behind the tallest of tales. ","identifications":{"rawIntelligence":-20,"rawSpellDamage":260,"elementalSpellDamage":20,"manaSteal":10,"raw1stSpellCost":7,"raw2ndSpellCost":7,"raw3rdSpellCost":7,"raw4thSpellCost":7,"waterDamage":-25},"base":{"baseHealth":3250},"rarity":"fabled"},"Charybdis":{"internalName":"Charybdis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":40,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":5,"rawIntelligence":5,"rawMainAttackDamage":{"min":69,"raw":231,"max":300},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"rawMaxMana":{"min":11,"raw":35,"max":46},"earthDamage":{"min":8,"raw":27,"max":35},"waterDamage":{"min":8,"raw":27,"max":35},"thunderDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":2100,"baseEarthDefence":80,"baseThunderDefence":-120,"baseWaterDefence":80},"rarity":"rare"},"Sreggad":{"internalName":"Sreggad","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","dropRestriction":"normal","requirements":{"level":85,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawDefence":20,"rawAgility":20,"healthRegenRaw":{"min":52,"raw":173,"max":225},"rawHealth":{"min":750,"raw":2500,"max":3250},"lifeSteal":{"min":106,"raw":354,"max":460},"thorns":{"min":100,"raw":333,"max":433},"reflection":{"min":100,"raw":333,"max":433},"elementalDefence":{"min":15,"raw":50,"max":65}},"rarity":"rare"},"Signal Flare":{"internalName":"Signal Flare","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"defence":45,"agility":45},"majorIds":{"Taunt":"+Taunt: Provoke's Cooldown is lowered by -3s."},"powderSlots":2,"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"lifeSteal":{"min":71,"raw":235,"max":306},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":3200,"baseEarthDefence":-100,"baseWaterDefence":-50,"baseFireDefence":100,"baseAirDefence":100},"rarity":"legendary"},"Derecho":{"internalName":"Derecho","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":85,"agility":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":10,"sprint":{"min":3,"raw":9,"max":12},"airDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-125,"baseAirDefence":-60},"rarity":"rare"},"Shattered Horizon":{"internalName":"Shattered Horizon","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":465,"dropRestriction":"never","requirements":{"level":85,"classRequirement":"mage","strength":55,"intelligence":35,"agility":35},"majorIds":{"Entropy":"+Entropy: Meteor falls three times faster."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"earthSpellDamage":{"min":5,"raw":15,"max":20},"3rdSpellCost":{"min":-6,"raw":-19,"max":-25},"healingEfficiency":{"min":-25,"raw":-19,"max":-13}},"base":{"baseEarthDamage":{"min":50,"raw":50,"max":70},"baseWaterDamage":{"min":40,"raw":40,"max":50},"baseAirDamage":{"min":30,"raw":30,"max":60}},"rarity":"fabled"},"Wishing Star":{"internalName":"Wishing Star","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":301,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"mage","strength":50,"dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawDexterity":5,"rawIntelligence":-7,"rawMainAttackDamage":70,"manaSteal":4,"lootBonus":30,"earthDamage":30},"base":{"baseDamage":{"min":10,"raw":10,"max":50},"baseThunderDamage":{"min":10,"raw":10,"max":70}},"rarity":"rare"},"Stad Aer":{"internalName":"Stad Aer","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":40,"agility":40},"powderSlots":3,"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":56,"raw":185,"max":241},"manaSteal":{"min":2,"raw":8,"max":10},"thorns":{"min":3,"raw":11,"max":14},"reflection":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1925,"baseEarthDefence":100,"baseFireDefence":-100},"rarity":"unique"},"Drain":{"internalName":"Drain","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85},"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lifeSteal":200,"xpBonus":10},"base":{"baseHealth":375},"rarity":"rare"},"Nerium Great Spear":{"internalName":"Nerium Great Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":361,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"warrior","strength":35,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":66,"raw":220,"max":286},"walkSpeed":{"min":-21,"raw":-16,"max":-11},"earthDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseEarthDamage":{"min":150,"raw":150,"max":230},"baseAirDamage":{"min":150,"raw":150,"max":230}},"rarity":"unique"},"Touroto Trousers":{"internalName":"Touroto Trousers","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85},"identifications":{"rawStrength":7,"rawDefence":7,"mainAttackDamage":{"min":18,"raw":60,"max":78},"rawHealth":{"min":105,"raw":350,"max":455},"rawAttackSpeed":-1},"base":{"baseHealth":2600,"baseEarthDefence":65,"baseThunderDefence":65,"baseWaterDefence":65,"baseFireDefence":65,"baseAirDefence":65},"rarity":"unique"},"Dasher":{"internalName":"Dasher","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":85,"strength":30,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawStrength":4,"mainAttackDamage":9,"walkSpeed":9},"base":{"baseHealth":320,"baseFireDefence":-25},"rarity":"unique"},"Meteoric Aegis":{"internalName":"Meteoric Aegis","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":8,"dexterity":8,"intelligence":8,"defence":8,"agility":8},"powderSlots":3,"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2150,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"unique"},"Info Visor":{"internalName":"Info Visor","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":85,"dexterity":30,"intelligence":40},"powderSlots":3,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawIntelligence":20,"spellDamage":5,"rawSpellDamage":65,"xpBonus":15},"base":{"baseHealth":1600,"baseEarthDefence":-100,"baseWaterDefence":115},"rarity":"unique"},"Hydrocharger":{"internalName":"Hydrocharger","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":270,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"mage","dexterity":30,"intelligence":30},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawDexterity":5,"rawIntelligence":5,"mainAttackDamage":-30,"spellDamage":30,"airDefence":-40},"base":{"baseDamage":{"min":32,"raw":32,"max":40},"baseThunderDamage":{"min":24,"raw":24,"max":48},"baseWaterDamage":{"min":24,"raw":24,"max":48}},"rarity":"unique"},"Takeoff":{"internalName":"Takeoff","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":85,"agility":75},"majorIds":{"Lunge":"+Lunge: Hop and Leap's horizontal velocity is greatly increased."},"powderSlots":2,"identifications":{"rawAgility":8,"rawAirSpellDamage":{"min":45,"raw":150,"max":195},"1stSpellCost":{"min":-4,"raw":-13,"max":-17},"2ndSpellCost":{"min":-6,"raw":-20,"max":-26},"sprintRegen":{"min":-65,"raw":-50,"max":-35},"jumpHeight":1},"base":{"baseHealth":2700,"baseFireDefence":-125,"baseAirDefence":125},"rarity":"fabled"},"Bygones":{"internalName":"Bygones","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":551,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"assassin","dexterity":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"mainAttackDamage":{"min":8,"raw":25,"max":33},"rawMainAttackDamage":{"min":183,"raw":610,"max":793},"healthRegen":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":-377,"raw":-290,"max":-203},"manaSteal":{"min":4,"raw":12,"max":16},"exploding":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseThunderDamage":{"min":390,"raw":390,"max":690},"baseFireDamage":{"min":120,"raw":120,"max":960}},"rarity":"rare"},"Cranial Panel":{"internalName":"Cranial Panel","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":85,"intelligence":30,"defence":30},"powderSlots":1,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"identifications":{"rawIntelligence":14,"rawDefence":14,"mainAttackDamage":-25,"spellDamage":-15,"healthRegenRaw":100,"manaRegen":12,"waterDefence":10,"fireDefence":10},"base":{"baseHealth":2150,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":40},"rarity":"unique"},"Tophet":{"internalName":"Tophet","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"dexterity":40},"powderSlots":2,"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":5,"rawDexterity":8,"rawDefence":5,"poison":3333,"manaSteal":8,"exploding":35,"earthDamage":20,"thunderDamage":20,"waterDamage":-15,"fireDamage":25,"earthDefence":25},"base":{"baseHealth":3050,"baseThunderDefence":100,"baseWaterDefence":-120,"baseFireDefence":100},"rarity":"legendary"},"Sans":{"internalName":"Sans","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":402,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":180,"raw":180,"max":210}},"rarity":"unique"},"Volmor's Flair":{"internalName":"Volmor's Flair","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawHealth":{"min":-975,"raw":-750,"max":-525},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":4,"raw":13,"max":17}},"rarity":"rare"},"Dart Frog's Skin":{"internalName":"Dart Frog's Skin","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85,"strength":40,"defence":35},"powderSlots":2,"identifications":{"rawStrength":4,"rawAgility":7,"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"spellDamage":{"min":-13,"raw":-10,"max":-7},"poison":{"min":1575,"raw":5250,"max":6825},"thorns":{"min":8,"raw":25,"max":33},"reflection":{"min":6,"raw":20,"max":26},"rawAttackSpeed":-1,"walkSpeed":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":2200,"baseEarthDefence":70,"baseFireDefence":60,"baseAirDefence":-130},"rarity":"unique"},"Breezehands":{"internalName":"Breezehands","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"dexterity":55,"agility":55},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawAttackSpeed":1,"walkSpeed":5},"rarity":"rare"},"Toy Maker":{"internalName":"Toy Maker","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":85,"dexterity":35,"agility":35},"powderSlots":2,"identifications":{"rawDexterity":7,"rawAgility":7,"mainAttackDamage":-25,"rawMainAttackDamage":230,"rawAttackSpeed":1,"thunderDamage":5,"airDamage":5},"base":{"baseHealth":1775,"baseEarthDefence":-160,"baseThunderDefence":90,"baseAirDefence":90},"rarity":"unique"},"Windmill":{"internalName":"Windmill","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":247,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"mage","agility":40},"powderSlots":2,"dropMeta":{"name":"Corkus","type":"merchant","coordinates":[-1614,68,-2923]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawAgility":5,"reflection":30,"walkSpeed":7,"airDamage":30,"airDefence":20},"base":{"baseDamage":{"min":100,"raw":100,"max":140}},"rarity":"unique"},"Layton":{"internalName":"Layton","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":232,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"mage","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawIntelligence":15,"rawSpellDamage":{"min":36,"raw":120,"max":156},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":65,"raw":65,"max":80}},"rarity":"unique"},"Smoky Diamond Helmet":{"internalName":"Smoky Diamond Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":85},"powderSlots":3,"base":{"baseHealth":1725},"rarity":"common"},"Silent Night":{"internalName":"Silent Night","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":580,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"shaman","dexterity":65},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"lifeSteal":250,"raw3rdSpellCost":-10,"walkSpeed":-8,"thunderDamage":15,"thunderDefence":10},"base":{"baseThunderDamage":{"min":1050,"raw":1050,"max":1225}},"rarity":"rare"},"Iris":{"internalName":"Iris","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":270,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"mage","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":6,"max":8},"elementalDamage":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":28,"raw":28,"max":32},"baseEarthDamage":{"min":28,"raw":28,"max":32},"baseThunderDamage":{"min":28,"raw":28,"max":32},"baseWaterDamage":{"min":28,"raw":28,"max":32},"baseFireDamage":{"min":28,"raw":28,"max":32},"baseAirDamage":{"min":28,"raw":28,"max":32}},"rarity":"unique"},"Evergreen":{"internalName":"Evergreen","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":525,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"assassin","strength":35,"intelligence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"mainAttackDamage":10,"spellDamage":14,"thorns":30,"waterDamage":25,"fireDamage":-18,"airDefence":-30},"base":{"baseDamage":{"min":90,"raw":90,"max":120},"baseEarthDamage":{"min":130,"raw":130,"max":170}},"rarity":"rare"},"Torrential Tide":{"internalName":"Torrential Tide","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":735,"dropRestriction":"normal","requirements":{"level":85,"classRequirement":"archer","intelligence":55},"powderSlots":1,"lore":"The tides of the ocean, once bound, became useful magic power sources. They were once utilized for weapons, but to harness the unstable force of the raging sea was considered too dangerous.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":25,"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"rawSpellDamage":{"min":83,"raw":275,"max":358},"exploding":{"min":-52,"raw":-40,"max":-28},"waterDamage":{"min":8,"raw":25,"max":33},"fireDamage":{"min":-195,"raw":-150,"max":-105},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":1,"raw":1,"max":85},"baseWaterDamage":{"min":1,"raw":1,"max":255}},"rarity":"legendary"},"Apotheosis":{"internalName":"Apotheosis","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":480,"dropRestriction":"never","requirements":{"level":85,"classRequirement":"warrior","strength":25,"dexterity":25,"intelligence":40,"defence":40,"agility":25},"majorIds":{"Paragon":"+Paragon: Shield Strike deals 300% damage. Mantle of the Bovemist's cooldown is significantly reduced, but is limited to one shield charge."},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"elementalSpellDamage":{"min":6,"raw":20,"max":26},"3rdSpellCost":{"min":65,"raw":50,"max":35},"4thSpellCost":{"min":-4,"raw":-15,"max":-19},"reflection":{"min":11,"raw":35,"max":46},"xpBonus":{"min":5,"raw":16,"max":21}},"base":{"baseEarthDamage":{"min":49,"raw":49,"max":59},"baseThunderDamage":{"min":37,"raw":37,"max":71},"baseWaterDamage":{"min":65,"raw":65,"max":83},"baseFireDamage":{"min":80,"raw":80,"max":88},"baseAirDamage":{"min":44,"raw":44,"max":64}},"rarity":"fabled"},"Sheet Ice":{"internalName":"Sheet Ice","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":356,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"warrior","intelligence":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":-15,"spellDamage":15,"rawSpellDamage":100,"reflection":25,"fireDamage":-15},"base":{"baseDamage":{"min":15,"raw":15,"max":80},"baseWaterDamage":{"min":35,"raw":35,"max":100}},"rarity":"rare"},"Parasitic Chitin":{"internalName":"Parasitic Chitin","type":"ingredient","requirements":{"level":85,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"rawDefence":{"min":-5,"raw":-5,"max":-5},"rawHealth":{"min":675,"raw":675,"max":700},"lifeSteal":{"min":70,"raw":70,"max":80}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-127000,"strengthRequirement":0,"dexterityRequirement":27,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Protective Fabric":{"internalName":"Protective Fabric","type":"ingredient","requirements":{"level":85,"skills":["tailoring"]},"icon":{"format":"legacy","value":"171:7"},"identifications":{"fireDefence":{"min":1,"raw":1,"max":2},"waterDefence":{"min":1,"raw":1,"max":2},"airDefence":{"min":1,"raw":1,"max":2},"earthDefence":{"min":1,"raw":1,"max":2},"thunderDefence":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corkus Bandit","coords":[[-1657,59,-3381,8],[-1643,61,-3379,8],[-1877,40,-2837,8],[-1830,44,-2838,8],[-1816,44,-2859,8],[-1802,44,-2833,8],[-1554,34,-2269,8],[-1583,34,-2271,8],[-1633,35,-2275,8],[-1611,37,-2235,8],[-1880,24,-2759,15],[-1880,24,-2759,15],[-1814,32,-2595,14],[-1848,40,-2631,14],[-1777,56,-2713,25],[-1777,56,-2713,25],[-1517,75,-2242,8],[-1742,51,-2995,8],[-1615,68,-2784,10],[-1540,72,-2753,15],[-1851,84,-2820,5],[-1794,102,-2901,5],[-1561,51,-2577,7],[-1625,55,-2612,14],[-1625,55,-2612,15],[-1625,55,-2612,16],[-1537,57,-2594,8]]},{"name":"Corkus Bandit","coords":[[-1657,59,-3381,8],[-1643,61,-3379,8],[-1877,40,-2837,8],[-1830,44,-2838,8],[-1816,44,-2859,8],[-1802,44,-2833,8],[-1554,34,-2269,8],[-1583,34,-2271,8],[-1633,35,-2275,8],[-1611,37,-2235,8],[-1880,24,-2759,15],[-1880,24,-2759,15],[-1814,32,-2595,14],[-1848,40,-2631,14],[-1777,56,-2713,25],[-1777,56,-2713,25],[-1517,75,-2242,8],[-1742,51,-2995,8],[-1615,68,-2784,10],[-1540,72,-2753,15],[-1851,84,-2820,5],[-1794,102,-2901,5],[-1561,51,-2577,7],[-1625,55,-2612,14],[-1625,55,-2612,15],[-1625,55,-2612,16],[-1537,57,-2594,8]]},{"name":"Corkus Bandit","coords":[[-1657,59,-3381,8],[-1643,61,-3379,8],[-1877,40,-2837,8],[-1830,44,-2838,8],[-1816,44,-2859,8],[-1802,44,-2833,8],[-1554,34,-2269,8],[-1583,34,-2271,8],[-1633,35,-2275,8],[-1611,37,-2235,8],[-1880,24,-2759,15],[-1880,24,-2759,15],[-1814,32,-2595,14],[-1848,40,-2631,14],[-1777,56,-2713,25],[-1777,56,-2713,25],[-1517,75,-2242,8],[-1742,51,-2995,8],[-1615,68,-2784,10],[-1540,72,-2753,15],[-1851,84,-2820,5],[-1794,102,-2901,5],[-1561,51,-2577,7],[-1625,55,-2612,14],[-1625,55,-2612,15],[-1625,55,-2612,16],[-1537,57,-2594,8]]}]},"Thorned Tusk":{"internalName":"Thorned Tusk","type":"ingredient","requirements":{"level":85,"skills":["alchemism"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"thorns":{"min":30,"raw":30,"max":50},"mainAttackDamage":{"min":12,"raw":12,"max":25}},"tier":2,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig Matriarch","coords":[-1805,77,-2167,20]}]},"Fancy Pelt":{"internalName":"Fancy Pelt","type":"ingredient","requirements":{"level":85,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"fireDefence":{"min":8,"raw":8,"max":12},"earthDefence":{"min":8,"raw":8,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lyran Veteran","coords":[[809,69,-5210,10],[786,65,-5224,13],[868,44,-5229,10]]},{"name":"Lyran Soldier","coords":[[800,67,-5228,5],[778,61,-5245,5],[815,53,-5256,5],[824,51,-5251,5],[832,50,-5245,5],[841,47,-5236,5],[850,45,-5233,5],[863,43,-5240,5],[869,44,-5247,5]]},{"name":"Lyran Cub","coords":[[143,61,-4597,7],[178,75,-4559,12],[154,75,-4556,5],[157,63,-4476,7],[222,84,-4512,15],[241,100,-4514,7],[212,93,-4619,14],[233,95,-4586,15],[250,104,-4542,15],[61,45,-4694,12],[75,49,-4724,12],[59,48,-4751,10],[-93,43,-4898,15],[-102,106,-4360,7],[-83,105,-4422,12],[-72,92,-4451,7],[-59,80,-4504,12],[-27,46,-4540,7],[14,45,-4569,10]]}]},"Defective Circuits":{"internalName":"Defective Circuits","type":"ingredient","requirements":{"level":85,"skills":["tailoring"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":4},"rawDexterity":{"min":4,"raw":4,"max":5},"rawSpellDamage":{"min":45,"raw":45,"max":50}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-94000,"strengthRequirement":0,"dexterityRequirement":14,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Elephant Toenail":{"internalName":"Elephant Toenail","type":"ingredient","requirements":{"level":85,"skills":["alchemism"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"rawHealth":{"min":1000,"raw":1000,"max":1200}},"tier":2,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Elefolk Hunter","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"Elefolk Warrior","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]}]},"Magmatic Skin":{"internalName":"Magmatic Skin","type":"ingredient","requirements":{"level":85,"skills":["armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"fireDefence":{"min":3,"raw":3,"max":5},"rawDefence":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Molten Man","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]}]},"Robot Antenna":{"internalName":"Robot Antenna","type":"ingredient","requirements":{"level":85,"skills":["armouring"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"rawDexterity":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":5,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Sharp Claw":{"internalName":"Sharp Claw","type":"ingredient","requirements":{"level":85,"skills":["jeweling","weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"mainAttackDamage":{"min":1,"raw":1,"max":3},"rawMainAttackDamage":{"min":10,"raw":10,"max":13}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jinko Bandito","coords":[[568,47,-4930,15],[478,47,-4895,15],[578,55,-4854,15],[600,54,-4788,15],[636,56,-4771,15],[637,54,-4731,15],[460,29,-4550,10],[437,29,-4520,15],[462,29,-4457,15],[392,45,-4444,15]]},{"name":"Jinko Shanker","coords":[[500,29,-5012,25],[463,29,-4966,20],[601,29,-4937,40],[626,29,-4860,25],[592,29,-4687,25],[546,29,-4628,30],[500,29,-4583,30],[356,29,-4777,20],[452,46,-4591,5]]},{"name":"Lyran Soldier","coords":[[800,67,-5228,5],[778,61,-5245,5],[815,53,-5256,5],[824,51,-5251,5],[832,50,-5245,5],[841,47,-5236,5],[850,45,-5233,5],[863,43,-5240,5],[869,44,-5247,5]]},{"name":"Lyran Veteran","coords":[[809,69,-5210,10],[786,65,-5224,13],[868,44,-5229,10]]}]},"Piquant Pork Fillet":{"internalName":"Piquant Pork Fillet","type":"ingredient","requirements":{"level":85,"skills":["cooking"]},"icon":{"format":"legacy","value":"319:0"},"identifications":{"healthRegen":{"min":15,"raw":15,"max":15}},"tier":3,"consumableOnlyIDs":{"duration":-770,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig Matriarch","coords":[-1805,77,-2167,20]}]},"Burning Soul":{"internalName":"Burning Soul","type":"ingredient","requirements":{"level":85,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":8,"raw":8,"max":13},"waterDefence":{"min":-10,"raw":-10,"max":-6}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Molten Man","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]},{"name":"Canyon Fleris","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]}]},"Magical Fire":{"internalName":"Magical Fire","type":"ingredient","requirements":{"level":85,"skills":["jeweling"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":1},"fireDamage":{"min":4,"raw":4,"max":5},"rawSpellDamage":{"min":8,"raw":8,"max":11},"rawDefence":{"min":-3,"raw":-3,"max":-2}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-141000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":16,"agilityRequirement":0},"droppedBy":[{"name":"Lesser Phoenix","coords":[[151,50,-5181,40],[151,50,-5181,40],[151,50,-5181,40],[151,50,-5181,40],[237,41,-5172,15],[237,41,-5172,15],[261,73,-5100,5],[76,43,-5150,15],[76,43,-5150,15],[76,43,-5150,15],[75,43,-5188,15],[75,43,-5188,15],[75,43,-5188,15],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[167,70,-5265,15],[230,75,-5118,10],[230,75,-5118,10],[230,75,-5118,10],[218,84,-5216,20],[218,84,-5216,20],[218,84,-5216,20],[245,75,-5386,10],[273,77,-5357,0],[402,29,-5217,15],[382,31,-5165,10],[353,31,-5142,25],[314,30,-5122,15]]}]},"Piercing Talons":{"internalName":"Piercing Talons","type":"ingredient","requirements":{"level":85,"skills":["jeweling","tailoring"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"rawDexterity":{"min":1,"raw":1,"max":1},"rawMainAttackDamage":{"min":17,"raw":17,"max":20}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":16,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Harpy Broodmother","coords":[638,155,-5298,0]}]},"Old Explosives":{"internalName":"Old Explosives","type":"ingredient","requirements":{"level":85,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"46:0"},"identifications":{"exploding":{"min":35,"raw":35,"max":40},"rawHealth":{"min":-500,"raw":-500,"max":-400}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":-10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-10,"agilityRequirement":0},"droppedBy":[{"name":"projectile","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]}]},"Tentacle":{"internalName":"Tentacle","type":"ingredient","requirements":{"level":85,"skills":["cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"rawIntelligence":{"min":4,"raw":4,"max":7},"waterDefence":{"min":7,"raw":7,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":-360,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corktopus","coords":[[-1193,38,-3239,8],[-1167,42,-3282,10],[-1161,38,-3312,10],[-1389,36,-3401,9],[-1423,36,-3409,9],[-1478,35,-3412,9],[-1516,35,-3415,9],[-1540,35,-3450,9],[-1279,37,-2279,9],[-1293,37,-2316,9],[-1297,35,-2254,9]]},{"name":"Giant Squid","coords":[[-44,26,-3344,20],[185,24,-3680,20],[618,25,-3943,20],[1079,22,-3926,20],[1381,25,-3930,5],[-834,15,-2440,10],[-1177,27,-1919,20],[-2068,27,-2362,20]]}]},"Tender Pork Fillet":{"internalName":"Tender Pork Fillet","type":"ingredient","requirements":{"level":85,"skills":["cooking"]},"icon":{"format":"legacy","value":"319:0"},"identifications":{"earthDamage":{"min":3,"raw":3,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-360,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig","coords":[[-1781,71,-2771,60],[-1783,71,-2843,60]]}]},"Succulent Crab Meat":{"internalName":"Succulent Crab Meat","type":"ingredient","requirements":{"level":85,"skills":["cooking"]},"icon":{"format":"legacy","value":"319:0"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":10},"waterDefence":{"min":10,"raw":10,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":-520,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"King Crab","coords":[[-1193,38,-3239,8],[-1167,42,-3282,10],[-1161,38,-3312,10],[-1389,36,-3401,9],[-1423,36,-3409,9],[-1478,35,-3412,9],[-1516,35,-3415,9],[-1540,35,-3450,9],[-1279,37,-2279,9],[-1293,37,-2316,9],[-1297,35,-2254,9]]}]},"Gathering Pickaxe T10":{"internalName":"Gathering Pickaxe 10","type":"tool","toolType":"pickaxe","gatheringSpeed":230,"identified":true,"requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"54","name":"gatheringTool.pickaxe10"}},"rarity":"common"},"Gathering Scythe T10":{"internalName":"Gathering Scythe 10","type":"tool","toolType":"scythe","gatheringSpeed":230,"identified":true,"requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"64","name":"gatheringTool.scythe10"}},"rarity":"common"},"Gathering Rod T10":{"internalName":"Gathering Rod 10","type":"tool","toolType":"rod","gatheringSpeed":230,"identified":true,"requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"59","name":"gatheringTool.rod10"}},"rarity":"common"},"Gathering Axe T10":{"internalName":"Gathering Axe 10","type":"tool","toolType":"axe","gatheringSpeed":230,"identified":true,"requirements":{"level":85},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"49","name":"gatheringTool.axe10"}},"rarity":"common"},"Microchip":{"internalName":"Microchip","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":85,"dexterity":35},"dropMeta":{"name":"Relos","type":"merchant","coordinates":[-1663,49,-2352]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":1,"rawMainAttackDamage":46,"thunderDamage":8},"base":{"baseThunderDefence":-40},"rarity":"unique"},"Pale Sun":{"internalName":"Pale Sun","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"defence":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"damage":-7,"healthRegenRaw":75,"reflection":12,"healingEfficiency":7},"base":{"baseFireDefence":35},"rarity":"rare"},"Hinterlands":{"internalName":"Hinterlands","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"strength":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"4thSpellCost":-8,"rawEarthSpellDamage":30,"rawAirSpellDamage":30},"base":{"baseWaterDefence":20,"baseAirDefence":30},"rarity":"rare"},"Pine Bow":{"internalName":"Pine Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":558,"dropRestriction":"never","identified":true,"requirements":{"level":85,"classRequirement":"archer","strength":50},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawStrength":5,"rawEarthDamage":180,"1stSpellCost":-15,"thorns":30,"xpBonus":10,"earthDefence":15},"base":{"baseDamage":{"min":100,"raw":100,"max":165},"baseEarthDamage":{"min":40,"raw":40,"max":55}},"rarity":"rare"},"Bifrost":{"internalName":"Bifrost","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":85,"strength":35,"dexterity":25,"intelligence":25,"defence":30,"agility":30},"powderSlots":2,"identifications":{"elementalMainAttackDamage":50,"spellDamage":-20,"manaSteal":10,"thorns":25,"exploding":15,"mainAttackRange":25},"base":{"baseHealth":3100,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"legendary"},"Pride of the Aerie":{"internalName":"Pride of the Aerie","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":84,"strength":40,"agility":50},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawStrength":14,"rawAgility":7,"healthRegen":28,"rawAttackSpeed":1,"walkSpeed":21,"earthDefence":21,"thunderDefence":-35},"base":{"baseHealth":2450,"baseEarthDefence":140,"baseFireDefence":-70,"baseAirDefence":140},"rarity":"rare"},"Dodge Core":{"internalName":"Dodge Core","type":"accessory","accessoryType":"ring","dropRestriction":"normal","requirements":{"level":84,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"healthRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":12,"max":16}},"rarity":"set"},"Lichenwal":{"internalName":"Lichenwal","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"strength":40},"powderSlots":3,"identifications":{"rawStrength":10,"healthRegenRaw":{"min":30,"raw":100,"max":130},"poison":{"min":750,"raw":2500,"max":3250},"thorns":{"min":2,"raw":7,"max":9},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2175,"baseEarthDefence":120,"baseAirDefence":-80},"rarity":"unique"},"Dim Diamond Chestplate":{"internalName":"Dim Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84},"powderSlots":3,"base":{"baseHealth":1680},"rarity":"common"},"Skywatcher":{"internalName":"Skywatcher","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"intelligence":20,"agility":35},"powderSlots":3,"identifications":{"rawIntelligence":5,"rawAgility":7,"rawSpellDamage":{"min":45,"raw":150,"max":195},"healthRegen":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1950,"baseWaterDefence":50,"baseFireDefence":-100,"baseAirDefence":100},"rarity":"unique"},"Seagazer":{"internalName":"Seagazer","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"intelligence":60},"powderSlots":2,"identifications":{"rawIntelligence":8,"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":7,"raw":22,"max":29},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2175,"baseWaterDefence":100},"rarity":"rare"},"Wood Hammer":{"internalName":"Wood Hammer","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":325,"dropRestriction":"never","identified":true,"requirements":{"level":84,"classRequirement":"warrior","strength":15},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":5,"mainAttackDamage":10,"xpBonus":10,"fireDefence":-5},"base":{"baseDamage":{"min":65,"raw":65,"max":125},"baseEarthDamage":{"min":20,"raw":20,"max":50}},"rarity":"unique"},"Esper's Focus":{"internalName":"Esper's Focus","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":231,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"mage","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"rawHealth":{"min":-910,"raw":-700,"max":-490},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":4,"raw":14,"max":18},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":9,"raw":30,"max":39}},"base":{"baseWaterDamage":{"min":400,"raw":400,"max":505}},"rarity":"unique"},"Deliverance":{"internalName":"Deliverance","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":444,"dropRestriction":"never","requirements":{"level":84,"classRequirement":"mage","defence":80},"majorIds":{"Lustrate":"+Lustrate: Heal restores health at a slower rate, but Searing Light deals +80% +40% +10%."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawIntelligence":12,"healthRegenRaw":{"min":45,"raw":150,"max":195},"1stSpellCost":{"min":-10,"raw":-35,"max":-45},"3rdSpellCost":{"min":26,"raw":20,"max":14},"healingEfficiency":{"min":-45,"raw":-35,"max":-24},"waterSpellDamage":{"min":15,"raw":50,"max":65}},"base":{"baseDamage":{"min":350,"raw":350,"max":450},"baseFireDamage":{"min":345,"raw":345,"max":595}},"rarity":"fabled"},"Glitchtean":{"internalName":"Glitchtean","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":369,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"warrior","dexterity":40},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"mainAttackDamage":{"min":-21,"raw":-16,"max":-11},"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"spellDamage":{"min":-23,"raw":-18,"max":-13},"rawSpellDamage":{"min":35,"raw":115,"max":150},"reflection":{"min":4,"raw":13,"max":17},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":48,"raw":48,"max":71},"baseThunderDamage":{"min":2,"raw":2,"max":117}},"rarity":"unique"},"Canyon Strider":{"internalName":"Canyon Strider","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":84,"strength":15,"agility":25},"powderSlots":2,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"rawAgility":6,"walkSpeed":15,"sprint":15,"sprintRegen":15,"earthDamage":10,"airDamage":10,"earthDefence":12,"airDefence":12},"base":{"baseHealth":2200,"baseEarthDefence":70,"baseFireDefence":-70,"baseAirDefence":70},"rarity":"unique"},"Harden Core":{"internalName":"Harden Core","type":"accessory","accessoryType":"ring","dropRestriction":"normal","requirements":{"level":84,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":888,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":20,"baseAirDefence":15},"rarity":"set"},"Solitude":{"internalName":"Solitude","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":469,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"archer","quest":"The Lost","agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":6,"raw":20,"max":26},"knockback":{"min":12,"raw":40,"max":52},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":85,"raw":85,"max":120},"baseAirDamage":{"min":75,"raw":75,"max":95}},"rarity":"unique"},"Worship":{"internalName":"Worship","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":84},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"rawHealth":{"min":90,"raw":300,"max":390},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9}},"rarity":"unique"},"Essence Bastion":{"internalName":"Essence Bastion","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":230,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"mage","defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"healthRegenRaw":{"min":38,"raw":125,"max":163},"rawHealth":{"min":416,"raw":1385,"max":1801},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":140,"raw":140,"max":165},"baseFireDamage":{"min":110,"raw":110,"max":140}},"rarity":"unique"},"Prognosticum":{"internalName":"Prognosticum","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":84,"intelligence":40},"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"manaSteal":8,"waterDamage":12},"rarity":"rare"},"Impeccable Birch Bow":{"internalName":"Impeccable Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":398,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":250,"raw":250,"max":280}},"rarity":"common"},"Rikter":{"internalName":"Rikter","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":480,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"warrior","strength":55},"powderSlots":2,"lore":"Named for an ancient Wynnic word for \"Earthquake\", this mighty battle hammer causes the very bones of struck enemies to rattle and heave as though the earth itself was splitting under their feet.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"mainAttackDamage":{"min":9,"raw":30,"max":39},"exploding":{"min":8,"raw":25,"max":33},"elementalDamage":{"min":2,"raw":7,"max":9},"elementalDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":312,"raw":312,"max":670},"baseEarthDamage":{"min":330,"raw":330,"max":570}},"rarity":"legendary"},"Impeccable Birch Relik":{"internalName":"Impeccable Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":184,"raw":184,"max":196}},"rarity":"common"},"Molten Flow":{"internalName":"Molten Flow","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"defence":50},"powderSlots":2,"identifications":{"rawStrength":6,"rawDefence":6,"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":33,"raw":110,"max":143},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":5,"raw":16,"max":21},"earthDefence":{"min":5,"raw":18,"max":23},"fireDefence":{"min":2,"raw":6,"max":8},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2425,"baseEarthDefence":50,"baseWaterDefence":-130,"baseFireDefence":120},"rarity":"unique"},"Ossuary":{"internalName":"Ossuary","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":84},"powderSlots":2,"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawSpellDamage":170,"lifeSteal":245,"raw3rdSpellCost":-3,"thorns":30,"walkSpeed":15,"thunderDamage":15,"airDamage":12},"base":{"baseHealth":2550,"baseThunderDefence":90,"baseAirDefence":90},"rarity":"legendary"},"Ensa's Ideals":{"internalName":"Ensa's Ideals","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"intelligence":45,"agility":40},"powderSlots":3,"identifications":{"rawIntelligence":7,"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":35,"raw":115,"max":150},"rawHealth":{"min":289,"raw":962,"max":1251},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":4000,"baseWaterDefence":100,"baseAirDefence":100},"rarity":"rare"},"Conflagrate":{"internalName":"Conflagrate","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"defence":90},"powderSlots":3,"lore":"Donning this helmet sears your mind with images of a world on fire. These blistering thoughts pressure you to make that world a reality.","identifications":{"rawIntelligence":-16,"rawDefence":16,"rawMainAttackDamage":{"min":86,"raw":285,"max":371},"lifeSteal":{"min":78,"raw":260,"max":338},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"fireDamage":{"min":15,"raw":50,"max":65},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":-1800,"baseFireDefence":180},"rarity":"legendary"},"Impeccable Birch Spear":{"internalName":"Impeccable Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":260,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":146,"raw":146,"max":200}},"rarity":"common"},"Impeccable Birch Wand":{"internalName":"Impeccable Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":196,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":85,"raw":85,"max":105}},"rarity":"common"},"Iron Grippers":{"internalName":"Iron Grippers","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":515,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"assassin","strength":35,"dexterity":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":117,"raw":390,"max":507},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":20,"raw":20,"max":20},"baseEarthDamage":{"min":250,"raw":250,"max":350},"baseThunderDamage":{"min":200,"raw":200,"max":400}},"rarity":"unique"},"Niflheim":{"internalName":"Niflheim","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":248,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"mage","intelligence":50},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-10,"raw":-8,"max":-6},"reflection":{"min":6,"raw":20,"max":26},"earthDefence":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":9,"raw":30,"max":39},"waterDefence":{"min":9,"raw":30,"max":39},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":110,"raw":110,"max":120},"baseWaterDamage":{"min":48,"raw":48,"max":52}},"rarity":"rare"},"Oktavist":{"internalName":"Oktavist","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":573,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"archer","defence":50},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawDefence":16,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":168,"raw":560,"max":728},"healthRegenRaw":{"min":45,"raw":150,"max":195},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":190,"raw":190,"max":250},"baseFireDamage":{"min":445,"raw":445,"max":495}},"rarity":"rare"},"Shockwave":{"internalName":"Shockwave","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"dexterity":30,"agility":30},"powderSlots":2,"identifications":{"rawDexterity":5,"rawAgility":5,"spellDamage":{"min":4,"raw":13,"max":17},"healthRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1925,"baseThunderDefence":90,"baseFireDefence":-130,"baseAirDefence":90},"rarity":"unique"},"Schist":{"internalName":"Schist","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":84,"strength":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":10,"poison":{"min":144,"raw":480,"max":624},"earthDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-125,"baseEarthDefence":-60},"rarity":"rare"},"Countdown":{"internalName":"Countdown","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":540,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"assassin","strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":-377,"raw":-290,"max":-203},"elementalDamage":{"min":6,"raw":19,"max":25}},"base":{"baseDamage":{"min":20,"raw":20,"max":52},"baseEarthDamage":{"min":20,"raw":20,"max":52},"baseThunderDamage":{"min":0,"raw":0,"max":72},"baseWaterDamage":{"min":10,"raw":10,"max":62},"baseFireDamage":{"min":10,"raw":10,"max":62},"baseAirDamage":{"min":0,"raw":0,"max":72}},"rarity":"rare"},"Nether's Deep":{"internalName":"Nether's Deep","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":319,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"assassin","dexterity":25,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"healthRegen":{"min":7,"raw":23,"max":30},"rawHealth":{"min":346,"raw":1154,"max":1500},"lifeSteal":{"min":68,"raw":225,"max":293},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseThunderDamage":{"min":20,"raw":20,"max":60},"baseFireDamage":{"min":40,"raw":40,"max":50}},"rarity":"unique"},"Granitic Mettle":{"internalName":"Granitic Mettle","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":84,"strength":75},"majorIds":{"Rock Shield":"+Rock Shield: Arrow Shield's defense is increased by 10%, but its number of charges is reduced by 1."},"powderSlots":3,"identifications":{"rawDefence":15,"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawEarthMainAttackDamage":{"min":71,"raw":235,"max":306},"healthRegen":{"min":15,"raw":50,"max":65},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":3350,"baseEarthDefence":150},"rarity":"fabled"},"Cinnamon":{"internalName":"Cinnamon","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":598,"dropRestriction":"never","requirements":{"level":84,"classRequirement":"shaman","defence":60},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawStrength":8,"rawHealth":{"min":315,"raw":1050,"max":1365},"poison":{"min":1800,"raw":6000,"max":7800},"rawAttackSpeed":-1,"rawFireMainAttackDamage":{"min":255,"raw":850,"max":1105}},"base":{"baseDamage":{"min":0,"raw":0,"max":40},"baseFireDamage":{"min":600,"raw":600,"max":800}},"rarity":"legendary"},"Harmony":{"internalName":"Harmony","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"agility":65},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-23,"raw":-18,"max":-13},"spellDamage":{"min":3,"raw":9,"max":12},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":5,"raw":18,"max":23},"airDefence":{"min":14,"raw":45,"max":59}},"base":{"baseHealth":2650,"baseEarthDefence":180,"baseThunderDefence":180,"baseWaterDefence":180,"baseFireDefence":180},"rarity":"rare"},"Impeccable Birch Dagger":{"internalName":"Impeccable Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":316,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":110,"raw":110,"max":143}},"rarity":"common"},"Mystical Lance":{"internalName":"Mystical Lance","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":426,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"warrior","dexterity":40,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":18,"rawDefence":-22,"rawAgility":18,"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":-125,"raw":-96,"max":-67},"fireDefence":{"min":-53,"raw":-41,"max":-29}},"base":{"baseDamage":{"min":0,"raw":0,"max":95},"baseThunderDamage":{"min":45,"raw":45,"max":45},"baseAirDamage":{"min":45,"raw":45,"max":45}},"rarity":"rare"},"Iosis":{"internalName":"Iosis","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"defence":70},"majorIds":{"Temblor":"+Temblor: Bash gains +1 Area of Effect and is 25% faster."},"powderSlots":2,"lore":"The last step towards purity. Dissolve and coagulate. Be anew.","identifications":{"rawDefence":8,"healthRegenRaw":{"min":-169,"raw":-130,"max":-91},"manaSteal":{"min":3,"raw":9,"max":12},"fireSpellDamage":{"min":8,"raw":25,"max":33},"earthSpellDamage":{"min":8,"raw":25,"max":33},"thunderSpellDamage":{"min":8,"raw":25,"max":33},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":3050,"baseWaterDefence":-100,"baseFireDefence":165},"rarity":"fabled"},"Payment Day":{"internalName":"Payment Day","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":450,"dropRestriction":"never","requirements":{"level":84,"classRequirement":"warrior","strength":60},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawDefence":8,"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"slowEnemy":{"min":2,"raw":5,"max":7},"lootBonus":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":100,"raw":100,"max":100},"baseEarthDamage":{"min":150,"raw":150,"max":250}},"rarity":"legendary"},"Valse Vaincue":{"internalName":"Valse Vaincue","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":84,"intelligence":75},"lore":"The Wanderer; the Betrayer; the Lunatic.","identifications":{"rawDexterity":5,"rawIntelligence":5,"rawAgility":5,"spellDamage":25,"rawElementalSpellDamage":185,"rawNeutralSpellDamage":-185,"manaRegen":-5,"walkSpeed":15},"base":{"baseEarthDefence":-75,"baseWaterDefence":75,"baseAirDefence":75},"rarity":"rare"},"Booster Plate":{"internalName":"Booster Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":84,"intelligence":25,"agility":50},"powderSlots":2,"lore":"A marvel of Corkus' electromagical advancements, this high-tech chestplate is equipped with steam jets to boost the user's speed, at a minimal cost to protection.","identifications":{"rawAgility":10,"walkSpeed":{"min":11,"raw":35,"max":46},"jumpHeight":{"min":1,"raw":3,"max":4},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":2800,"baseWaterDefence":130,"baseAirDefence":100},"rarity":"legendary"},"Ring of Fire":{"internalName":"Ring of Fire","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":84},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"exploding":{"min":2,"raw":8,"max":10},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-9,"raw":-7,"max":-5},"fireDamage":{"min":3,"raw":11,"max":14}},"base":{"baseWaterDefence":-50},"rarity":"rare"},"Hustle Core":{"internalName":"Hustle Core","type":"accessory","accessoryType":"ring","dropRestriction":"normal","requirements":{"level":84,"strength":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":21,"raw":70,"max":91}},"rarity":"set"},"Cyclops Eye":{"internalName":"Cyclops Eye","type":"ingredient","requirements":{"level":84,"skills":["armouring","tailoring"]},"icon":{"format":"skin","value":"17db1923d03c4ef4e9f6e872c5a6ad2578b1aff2b281fbc3ffa7466c825fb9"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]}]},"Tough Skin":{"internalName":"Tough Skin","type":"ingredient","requirements":{"level":84,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawHealth":{"min":300,"raw":300,"max":400},"rawDefence":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Charging Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Enraged Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Elefolk Hunter","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"Elefolk Warrior","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]}]},"Illusory Idol":{"internalName":"Illusory Idol","type":"ingredient","requirements":{"level":84,"skills":["jeweling"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"airDamage":{"min":5,"raw":5,"max":6},"reflection":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-94000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12},"droppedBy":[{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]},{"name":"Colossus Spawn","coords":[[392,96,-5264,50],[525,75,-5421,30]]},{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]},{"name":"Crystalline Behemoth","coords":[759,46,-5363,100]}]},"Zealous Illuminator":{"internalName":"Zealous Illuminator","type":"ingredient","requirements":{"level":84,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"123:0"},"identifications":{"rawMainAttackDamage":{"min":55,"raw":55,"max":60}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":25,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-97000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Insulated Wiring":{"internalName":"Insulated Wiring","type":"ingredient","requirements":{"level":84,"skills":["armouring"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"thunderDefence":{"min":6,"raw":6,"max":9},"fireDefence":{"min":6,"raw":6,"max":9}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":5,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig Matriarch","coords":[-1805,77,-2167,20]},{"name":"T-5lusive Surveillance Camera","coords":[-1568,150,-2582,250]},{"name":"WW-10avager Automaton","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]},{"name":"U-45tabot","coords":[[-1737,75,-2650,180],[-1496,75,-2529,220]]},{"name":"MM-0actical Unit","coords":[[-1467,173,-2608,150],[-1585,120,-2214,70]]}]},"Earthly Aura":{"internalName":"Earthly Aura","type":"ingredient","requirements":{"level":84,"skills":["scribing"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"rawStrength":{"min":4,"raw":4,"max":6},"mainAttackDamage":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Earth Borer Beetle","coords":[[661,35,-4757,8],[661,35,-4757,8],[666,34,-4772,5]]},{"name":"Rock Bagworm","coords":[[684,42,-4707,0],[681,40,-4712,0],[663,40,-4779,0],[661,35,-4789,0],[663,35,-4789,0]]},{"name":"Clay Soldier","coords":null},{"name":"Mud Animant","coords":null},{"name":"Momma Longlegs","coords":false},{"name":"Dust Devil","coords":null},{"name":"Earth Zombie","coords":null},{"name":"Rock Bagworm","coords":[[684,42,-4707,0],[681,40,-4712,0],[663,40,-4779,0],[661,35,-4789,0],[663,35,-4789,0]]},{"name":"Missy Longlegs","coords":false},{"name":"null","coords":null},{"name":"The Mammoth","coords":null}]},"Harpy Wing":{"internalName":"Harpy Wing","type":"ingredient","requirements":{"level":84,"skills":["jeweling","woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawAgility":{"min":1,"raw":1,"max":2},"walkSpeed":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-119000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20},"droppedBy":[{"name":"Soul Singer Harpy","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]},{"name":"Harpy Ranger","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]}]},"Flameheart":{"internalName":"Flameheart","type":"ingredient","requirements":{"level":84,"skills":["armouring","scribing"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"healthRegenRaw":{"min":52,"raw":52,"max":66},"rawHealth":{"min":560,"raw":560,"max":680}},"tier":2,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-93000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":30,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Fleris","coords":[[279,48,-4612,6],[272,48,-4622,6],[273,47,-4629,6],[265,47,-4643,6],[265,47,-4654,5],[271,42,-4668,4],[269,41,-4673,5],[261,35,-4683,4],[260,31,-4702,4],[256,31,-4705,4],[257,30,-4713,4],[255,31,-4724,3],[238,30,-4726,4],[227,30,-4716,4],[217,30,-4712,4],[215,32,-4705,4],[210,32,-4695,5],[212,32,-4686,5],[212,32,-4673,2],[210,30,-4654,3]]}]},"Unsheathed Glaive":{"internalName":"Unsheathed Glaive","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":345,"dropRestriction":"normal","requirements":{"level":84,"classRequirement":"warrior","intelligence":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawIntelligence":8,"rawDefence":8,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"manaSteal":{"min":4,"raw":14,"max":18},"mainAttackRange":{"min":14,"raw":46,"max":60},"waterDamage":{"min":8,"raw":25,"max":33},"fireDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":0,"raw":0,"max":5},"baseWaterDamage":{"min":75,"raw":75,"max":90},"baseFireDamage":{"min":75,"raw":75,"max":90}},"rarity":"unique"},"Aersectra":{"internalName":"Aersectra","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":592,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"archer","dexterity":30,"agility":40},"powderSlots":3,"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawDefence":-10,"rawMainAttackDamage":{"min":47,"raw":155,"max":202},"spellDamage":{"min":6,"raw":21,"max":27},"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"exploding":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":7,"raw":24,"max":31},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":96,"raw":96,"max":97},"baseThunderDamage":{"min":41,"raw":41,"max":240}},"rarity":"rare"},"Rock Chisel":{"internalName":"Rock Chisel","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":411,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"assassin","strength":25,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDexterity":8,"spellDamage":{"min":-12,"raw":-9,"max":-6},"lootBonus":{"min":6,"raw":19,"max":25},"stealing":{"min":1,"raw":3,"max":4},"earthDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":7,"raw":24,"max":31}},"base":{"baseDamage":{"min":164,"raw":164,"max":165}},"rarity":"unique"},"Enduzskam":{"internalName":"Enduzskam","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"dexterity":35,"intelligence":35},"powderSlots":2,"identifications":{"rawDexterity":9,"spellDamage":{"min":4,"raw":14,"max":18},"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-18,"raw":-14,"max":-10},"thunderDamage":{"min":5,"raw":16,"max":21},"waterDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1950,"baseEarthDefence":-90,"baseThunderDefence":80,"baseWaterDefence":50},"rarity":"unique"},"Rot of Dernel":{"internalName":"Rot of Dernel","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":16,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"mage","strength":15,"dexterity":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawIntelligence":-30,"rawHealth":{"min":-2405,"raw":-1850,"max":-1295},"poison":{"min":2700,"raw":9000,"max":11700},"lifeSteal":{"min":90,"raw":300,"max":390},"manaSteal":{"min":4,"raw":12,"max":16},"thorns":{"min":11,"raw":35,"max":46}},"base":{"baseEarthDamage":{"min":9,"raw":9,"max":10},"baseThunderDamage":{"min":7,"raw":7,"max":12}},"rarity":"rare"},"Squid Anklet":{"internalName":"Squid Anklet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":83,"intelligence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":6,"max":8},"fireDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseThunderDefence":-60,"baseWaterDefence":40},"rarity":"unique"},"Fulmine Belt":{"internalName":"Fulmine Belt","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"dexterity":40},"powderSlots":3,"identifications":{"rawDexterity":6,"mainAttackDamage":{"min":4,"raw":14,"max":18},"spellDamage":{"min":4,"raw":14,"max":18},"exploding":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1775,"baseEarthDefence":-50,"baseThunderDefence":100,"baseAirDefence":-50},"rarity":"unique"},"Nezha":{"internalName":"Nehza","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":83,"defence":90},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":350,"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":-70,"baseAirDefence":30},"rarity":"rare"},"Sequencer":{"internalName":"Sequencer","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83},"powderSlots":3,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"spellDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":30,"raw":100,"max":130},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":23,"raw":75,"max":98}},"base":{"baseHealth":2345},"rarity":"rare"},"Black Catalyst":{"internalName":"Black Catalyst","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":83},"lore":"Even simply looking at these odd rings gives way to a compulsion to wear two of them, despite all better judgement.","dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawIntelligence":-2,"rawDefence":-2,"rawAgility":-2,"xpBonus":-5},"base":{"baseHealth":-325},"rarity":"set"},"Reason":{"internalName":"Reason","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":218,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"mage","intelligence":30,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawDexterity":-7,"rawIntelligence":8,"rawDefence":5,"healthRegenRaw":{"min":32,"raw":105,"max":137},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-39,"raw":-30,"max":-21},"waterDefence":{"min":4,"raw":13,"max":17},"fireDefence":{"min":4,"raw":13,"max":17}},"base":{"baseWaterDamage":{"min":70,"raw":70,"max":75},"baseFireDamage":{"min":60,"raw":60,"max":85}},"rarity":"unique"},"Matchbook":{"internalName":"Matchbook","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":83,"defence":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":10,"exploding":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-125,"baseFireDefence":-60},"rarity":"rare"},"Windy Torc":{"internalName":"Windy Torc","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":83,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":350,"baseEarthDefence":-50,"baseAirDefence":50},"rarity":"unique"},"Archaic":{"internalName":"Archaic","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":83,"defence":30,"agility":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":4,"rawAgility":3,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegenRaw":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":350,"baseWaterDefence":-30,"baseFireDefence":40,"baseAirDefence":20},"rarity":"rare"},"Ogre Faceplate":{"internalName":"Ogre Faceplate","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"strength":30,"dexterity":25},"powderSlots":2,"identifications":{"rawStrength":9,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":225,"raw":750,"max":975},"thorns":{"min":5,"raw":15,"max":20},"rawAttackSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1925,"baseEarthDefence":75,"baseAirDefence":-110},"rarity":"unique"},"Shining Stave":{"internalName":"Shining Stave","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":265,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"mage","dexterity":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":5,"raw":16,"max":21},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":30,"raw":30,"max":54},"baseThunderDamage":{"min":16,"raw":16,"max":48},"baseAirDamage":{"min":16,"raw":16,"max":48}},"rarity":"unique"},"Grateful Dead":{"internalName":"Grateful Dead","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":429,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","intelligence":35,"agility":35},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawDefence":-10,"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDefence":{"min":6,"raw":20,"max":26},"waterDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":835,"raw":835,"max":835},"baseWaterDamage":{"min":3,"raw":3,"max":3},"baseAirDamage":{"min":3,"raw":3,"max":3}},"rarity":"unique"},"Revolutionine":{"internalName":"Revolutionine","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":482,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","defence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawDefence":15,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-1059,"raw":-815,"max":-570},"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseFireDamage":{"min":315,"raw":315,"max":327}},"rarity":"unique"},"Deathbringer":{"internalName":"Deathbringer","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":392,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"warrior","strength":35,"dexterity":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"mainAttackDamage":{"min":7,"raw":22,"max":29},"spellDamage":{"min":5,"raw":16,"max":21},"healthRegenRaw":{"min":-123,"raw":-95,"max":-66},"lifeSteal":{"min":62,"raw":205,"max":267},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":60,"raw":60,"max":100},"baseEarthDamage":{"min":82,"raw":82,"max":100},"baseThunderDamage":{"min":60,"raw":60,"max":120}},"rarity":"unique"},"Aviform":{"internalName":"Aviform","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":638,"dropRestriction":"never","requirements":{"level":83,"classRequirement":"assassin","strength":25,"dexterity":35,"agility":50},"majorIds":{"Windsurf":"+Windsurf: Righting Reflex lasts twice as long and is affected stronger by movement speed."},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawHealth":{"min":-1560,"raw":-1200,"max":-840},"walkSpeed":{"min":8,"raw":25,"max":33},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":9,"raw":30,"max":39}},"base":{"baseEarthDamage":{"min":70,"raw":70,"max":100},"baseThunderDamage":{"min":0,"raw":0,"max":170},"baseAirDamage":{"min":35,"raw":35,"max":135}},"rarity":"fabled"},"Silent Ballet":{"internalName":"Silent Ballet","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":578,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","strength":40,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"mainAttackDamage":{"min":12,"raw":40,"max":52},"spellDamage":{"min":-52000,"raw":-40000,"max":-28000},"rawSpellDamage":{"min":-52000,"raw":-40000,"max":-28000},"raw1stSpellCost":{"min":-12,"raw":-40,"max":-52},"raw2ndSpellCost":{"min":-12,"raw":-40,"max":-52},"raw3rdSpellCost":{"min":-12,"raw":-40,"max":-52},"raw4thSpellCost":{"min":-12,"raw":-40,"max":-52}},"base":{"baseEarthDamage":{"min":110,"raw":110,"max":121},"baseAirDamage":{"min":110,"raw":110,"max":121}},"rarity":"unique"},"Insulated Plate Mail":{"internalName":"Insulated Plate Mail","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":83,"dexterity":55,"defence":55},"powderSlots":3,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDefence":10,"lifeSteal":270,"3rdSpellCost":-22,"4thSpellCost":-22,"rawAttackSpeed":-1,"walkSpeed":-15,"thunderDamage":-15,"earthDefence":40,"thunderDefence":40,"waterDefence":30},"base":{"baseHealth":2800,"baseEarthDefence":150,"baseThunderDefence":150,"baseWaterDefence":100,"baseFireDefence":150,"baseAirDefence":100},"rarity":"rare"},"Thanos Legionnaire Plate":{"internalName":"Thanos Legionnaire Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":83,"quest":"The Belly of the Beast","strength":40,"defence":40,"agility":40},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawStrength":10,"rawDefence":10,"rawAgility":10,"rawMainAttackDamage":225,"earthDamage":20,"fireDamage":20,"airDamage":20},"base":{"baseHealth":2400,"baseEarthDefence":125,"baseThunderDefence":-90,"baseWaterDefence":-90,"baseFireDefence":125,"baseAirDefence":125},"rarity":"set"},"Fluffwind":{"internalName":"Fluffwind","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":465,"dropRestriction":"never","requirements":{"level":83,"classRequirement":"assassin","agility":60},"powderSlots":4,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawDexterity":8,"lifeSteal":{"min":75,"raw":250,"max":325},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"reflection":{"min":11,"raw":35,"max":46},"jumpHeight":1},"base":{"baseDamage":{"min":25,"raw":25,"max":25},"baseAirDamage":{"min":115,"raw":115,"max":135}},"rarity":"legendary"},"Second Wind":{"internalName":"Second Wind","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"defence":65,"agility":40},"powderSlots":3,"identifications":{"rawAgility":20,"healthRegen":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":-617,"raw":-475,"max":-332},"rawAttackSpeed":1,"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":6325,"baseEarthDefence":-350,"baseThunderDefence":-350,"baseFireDefence":120,"baseAirDefence":120},"rarity":"fabled"},"Sunshower":{"internalName":"Sunshower","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"intelligence":40,"defence":40},"powderSlots":2,"identifications":{"rawAgility":8,"healthRegenRaw":{"min":30,"raw":100,"max":130},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":4,"raw":13,"max":17},"waterDamage":{"min":4,"raw":13,"max":17},"fireDamage":{"min":4,"raw":13,"max":17},"earthDefence":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":4,"raw":13,"max":17},"fireDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2125,"baseEarthDefence":-125,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":90},"rarity":"unique"},"Veantur":{"internalName":"Veantur","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":369,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"warrior","intelligence":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"reflection":{"min":2,"raw":7,"max":9},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":50,"raw":50,"max":110},"baseWaterDamage":{"min":50,"raw":50,"max":85}},"rarity":"rare"},"Maji":{"internalName":"Maji","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":431,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawDexterity":-8,"rawIntelligence":8,"healthRegenRaw":{"min":30,"raw":100,"max":130},"lifeSteal":{"min":60,"raw":200,"max":260},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-39,"raw":-30,"max":-21},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":75,"raw":75,"max":95},"baseWaterDamage":{"min":110,"raw":110,"max":138}},"rarity":"unique"},"Galvanization":{"internalName":"Galvanization","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"dexterity":30,"intelligence":30},"powderSlots":2,"identifications":{"spellDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":-16,"raw":-12,"max":-8},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":1800,"baseEarthDefence":-80,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":-80},"rarity":"unique"},"Island Chain":{"internalName":"Island Chain","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":632,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","strength":40,"intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"healthRegenRaw":{"min":50,"raw":165,"max":215},"rawHealth":{"min":750,"raw":2500,"max":3250},"manaRegen":{"min":4,"raw":12,"max":16},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"walkSpeed":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":120,"raw":120,"max":132},"baseEarthDamage":{"min":140,"raw":140,"max":155},"baseWaterDamage":{"min":140,"raw":140,"max":155}},"rarity":"legendary"},"Cotton Swab":{"internalName":"Cotton Swab","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":576,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"shaman","agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawAgility":40,"fireDefence":{"min":-39,"raw":-30,"max":-21},"elementalDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseAirDamage":{"min":130,"raw":130,"max":138}},"rarity":"unique"},"Coal Duster":{"internalName":"Coal Duster","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":83,"dexterity":40,"defence":45},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"rawDexterity":7,"rawDefence":8,"mainAttackDamage":-35,"spellDamage":-15,"poison":5400,"rawAttackSpeed":-17,"exploding":10,"thunderDamage":20,"fireDamage":25,"fireDefence":-25},"base":{"baseHealth":2575,"baseThunderDefence":90,"baseFireDefence":-65},"rarity":"rare"},"Brackenwall":{"internalName":"Brackenwall","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83,"strength":40},"powderSlots":2,"identifications":{"rawStrength":7,"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawMainAttackDamage":{"min":44,"raw":145,"max":189},"poison":{"min":504,"raw":1680,"max":2184},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":4,"raw":13,"max":17},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2000,"baseEarthDefence":110,"baseAirDefence":-40},"rarity":"unique"},"Substratum":{"internalName":"Substratum","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":83,"strength":60},"powderSlots":3,"identifications":{"rawDefence":9,"mainAttackDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":8,"raw":25,"max":33},"raw2ndSpellCost":{"min":4,"raw":3,"max":2},"knockback":{"min":6,"raw":20,"max":26},"rawEarthDamage":{"min":50,"raw":165,"max":215}},"base":{"baseHealth":2750,"baseEarthDefence":125,"baseThunderDefence":-90,"baseFireDefence":50,"baseAirDefence":-90},"rarity":"rare"},"Bonethrasher":{"internalName":"Bonethrasher","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":335,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"warrior","agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawDexterity":13,"rawIntelligence":-7,"rawAgility":13,"rawMainAttackDamage":{"min":23,"raw":75,"max":98},"spellDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":56,"raw":56,"max":160}},"rarity":"unique"},"Shine Lamp":{"internalName":"Shine Lamp","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":625,"dropRestriction":"never","identified":true,"requirements":{"level":83,"classRequirement":"shaman","strength":18,"dexterity":18,"intelligence":18,"defence":18,"agility":18},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"spellDamage":-25,"manaRegen":6,"1stSpellCost":-25,"2ndSpellCost":-25,"3rdSpellCost":-25,"4thSpellCost":-25},"base":{"baseEarthDamage":{"min":235,"raw":235,"max":255},"baseThunderDamage":{"min":220,"raw":220,"max":270},"baseWaterDamage":{"min":230,"raw":230,"max":260},"baseFireDamage":{"min":240,"raw":240,"max":250},"baseAirDamage":{"min":225,"raw":225,"max":265}},"rarity":"rare"},"Plated Mining Helm":{"internalName":"Plated Mining Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":83,"defence":20},"powderSlots":2,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"identifications":{"rawDefence":10,"healthRegen":25,"healthRegenRaw":60,"lootBonus":10},"base":{"baseHealth":2500},"rarity":"unique"},"Dim Diamond Leggings":{"internalName":"Dim Diamond Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":83},"powderSlots":3,"base":{"baseHealth":1630},"rarity":"common"},"Fir Needle":{"internalName":"Fir Needle","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":452,"dropRestriction":"never","identified":true,"requirements":{"level":83,"classRequirement":"assassin","strength":25,"agility":35},"powderSlots":3,"dropMeta":{"name":"Thesead","type":"merchant","coordinates":[795,82,-5086]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawStrength":8,"rawSpellDamage":134,"thorns":20,"airDamage":19,"thunderDefence":-15},"base":{"baseDamage":{"min":25,"raw":25,"max":55},"baseEarthDamage":{"min":50,"raw":50,"max":80}},"rarity":"unique"},"Parasitic Abscission":{"internalName":"Parasitic Abscission","type":"ingredient","requirements":{"level":83,"skills":["weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"383:5"},"identifications":{"manaRegen":{"min":12,"raw":12,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":-252,"charges":0},"ingredientPositionModifiers":{"left":-122,"right":-122,"above":0,"under":0,"touching":-15,"notTouching":-15},"itemOnlyIDs":{"durabilityModifier":-139000,"strengthRequirement":13,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":29,"agilityRequirement":0},"droppedBy":[{"name":"Paramite","coords":[-778,50,-6165,35]}]},"Suspicious Shrubs":{"internalName":"Suspicious Shrubs","type":"ingredient","requirements":{"level":83,"skills":["cooking"]},"icon":{"format":"legacy","value":"6:1"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":3},"mainAttackDamage":{"min":7,"raw":7,"max":10},"poison":{"min":400,"raw":400,"max":500}},"tier":3,"consumableOnlyIDs":{"duration":-750,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ellida Whale","coords":null},{"name":"Chromancer","coords":[[-970,67,-6119,24],[-879,49,-6153,60]]},{"name":"Master Regenerator","coords":null},{"name":"Paramite","coords":[-778,50,-6165,35]}]},"Shattered Blade":{"internalName":"Shattered Blade","type":"ingredient","requirements":{"level":83,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"rawMainAttackDamage":{"min":20,"raw":20,"max":23}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":5,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Ambusher","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]},{"name":"Subterrane Bandit","coords":null}]},"Altitude Shard":{"internalName":"Altitude Shard","type":"ingredient","requirements":{"level":83,"skills":["scribing"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"airDefence":{"min":12,"raw":12,"max":15},"walkSpeed":{"min":8,"raw":8,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]},{"name":"Colossus Spawn","coords":[[392,96,-5264,50],[525,75,-5421,30]]},{"name":"Giant Panda King","coords":[[208,101,-4403,10],[200,95,-4381,15],[213,91,-4343,20],[161,79,-4354,20],[115,75,-4362,10],[94,79,-4345,15],[62,86,-4349,15],[40,87,-4367,10],[13,86,-4359,10],[-28,92,-4342,15],[-80,98,-4337,15],[-88,111,-4387,15],[169,74,-4410,10],[140,56,-4392,15],[-47,75,-4381,10],[0,64,-4414,10],[-10,43,-4378,10],[10,43,-4391,10],[65,44,-4425,30],[57,58,-4387,20],[94,48,-4385,20],[126,43,-4419,20],[64,43,-4502,30],[103,44,-4525,15],[56,44,-4547,15],[81,43,-4565,10]]},{"name":"Crystalline Behemoth","coords":[759,46,-5363,100]}]},"Plucked Feather":{"internalName":"Plucked Feather","type":"ingredient","requirements":{"level":83,"skills":["tailoring","alchemism"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":3},"rawHealth":{"min":-320,"raw":-320,"max":-200}},"tier":0,"consumableOnlyIDs":{"duration":-84,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Harpy","coords":[[593,30,-5196,5],[609,26,-5227,10],[582,29,-5251,5],[592,33,-5286,5],[580,29,-5317,5],[561,32,-5292,5],[564,32,-5278,5],[624,42,-5158,5],[566,79,-5188,5],[555,79,-5202,5],[546,78,-5216,5],[540,78,-5235,5],[536,78,-5241,5],[529,78,-5253,5],[522,78,-5266,5],[520,78,-5279,5],[545,78,-5333,5],[559,78,-5342,5],[584,78,-5364,5],[600,78,-5368,5],[610,78,-5374,5],[623,79,-5376,5],[636,79,-5374,5],[649,78,-5366,5],[646,75,-5387,5],[659,73,-5395,5],[670,70,-5387,5],[672,69,-5372,5],[671,66,-5357,5],[687,65,-5359,5],[689,63,-5372,5],[689,61,-5391,5],[702,58,-5398,5],[708,58,-5379,5],[708,55,-5364,5],[722,54,-5359,5],[726,52,-5376,5],[730,50,-5391,5],[635,154,-5293,1],[642,154,-5296,1],[628,148,-5321,1],[614,139,-5346,1],[623,138,-5374,1],[624,129,-5348,1],[627,117,-5320,1],[633,98,-5327,1],[656,75,-5326,1],[636,83,-5325,2]]},{"name":"Harpy Rockthrower","coords":[[636,113,-5313,0],[626,124,-5329,0],[625,140,-5379,0],[613,133,-5363,0]]},{"name":"Mountain Harpy","coords":[[623,136,-5362,0],[622,145,-5339,0]]},{"name":"Harpy Broodmother","coords":[638,155,-5298,0]}]},"Shiny Pebble":{"internalName":"Shiny Pebble","type":"ingredient","requirements":{"level":83,"skills":["jeweling"]},"icon":{"format":"legacy","value":"77:0"},"identifications":{"earthDamage":{"min":4,"raw":4,"max":5},"xpBonus":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":20,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Harpy Rockthrower","coords":[[636,113,-5313,0],[626,124,-5329,0],[625,140,-5379,0],[613,133,-5363,0]]}]},"Mega Fern":{"internalName":"Mega Fern","type":"ingredient","requirements":{"level":83,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"175:3"},"identifications":{"rawHealth":{"min":375,"raw":375,"max":425},"healthRegenRaw":{"min":50,"raw":50,"max":55},"rawSpellDamage":{"min":35,"raw":35,"max":40},"rawMainAttackDamage":{"min":40,"raw":40,"max":45}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-140000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bushpig Matriarch","coords":[-1805,77,-2167,20]}]},"Fluid Light":{"internalName":"Fluid Light","type":"ingredient","requirements":{"level":83,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"thunderDamage":{"min":7,"raw":7,"max":11},"airDamage":{"min":8,"raw":8,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Engraved Tablet":{"internalName":"Engraved Tablet","type":"ingredient","requirements":{"level":83,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"340:0"},"identifications":{"rawIntelligence":{"min":5,"raw":5,"max":10},"walkSpeed":{"min":-10,"raw":-10,"max":-5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Colossus Spawn","coords":[[392,96,-5264,50],[525,75,-5421,30]]}]},"Goblin Tooth":{"internalName":"Goblin Tooth","type":"ingredient","requirements":{"level":83,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"stealing":{"min":1,"raw":1,"max":2},"rawMainAttackDamage":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-9000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hobgoblin Caster","coords":[[-82,93,-4300,5],[-54,95,-4300,5],[-38,90,-4313,5],[76,87,-4345,5],[36,92,-4362,5],[-9,88,-4345,5],[654,54,-5446,0],[591,40,-5474,1],[602,20,-5525,1]]},{"name":"Hobgoblin Commander","coords":[[-54,95,-4323,5],[-83,94,-4304,5],[62,86,-4356,5],[-32,93,-4341,5],[9,86,-4356,5],[598,46,-5450,1],[597,28,-5479,4]]},{"name":"Hobgoblin Farmer","coords":[343,47,-4890,7]},{"name":"Hobgoblin Warrior","coords":[[85,82,-4342,5],[102,77,-4344,5],[65,86,-4340,5],[626,44,-5463,3],[632,42,-5461,2],[643,37,-5471,1],[606,27,-5550,4],[620,27,-5545,4],[630,27,-5538,4],[637,27,-5528,3],[651,27,-5510,2],[618,39,-5484,4],[615,34,-5491,2],[610,28,-5503,2],[600,28,-5493,3],[620,27,-5515,2],[605,28,-5474,3],[641,41,-5444,2],[641,39,-5460,2],[652,33,-5491,3],[626,28,-5521,3],[597,28,-5479,8],[617,27,-5545,10]]}]},"Helio Wing":{"internalName":"Helio Wing","type":"ingredient","requirements":{"level":83,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"rawDexterity":{"min":2,"raw":2,"max":3},"rawAgility":{"min":1,"raw":1,"max":3},"airDamage":{"min":7,"raw":7,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":0,"dexterityRequirement":7,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12}},"Marble Statuette":{"internalName":"Marble Statuette","type":"ingredient","requirements":{"level":83,"skills":["armouring"]},"icon":{"format":"legacy","value":"98:3"},"identifications":{"rawDefence":{"min":5,"raw":5,"max":6},"walkSpeed":{"min":-5,"raw":-5,"max":-4},"mainAttackDamage":{"min":7,"raw":7,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-89000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0}},"Cortrich Eggs":{"internalName":"Cortrich Eggs","type":"ingredient","requirements":{"level":83,"skills":["cooking"]},"icon":{"format":"legacy","value":"344:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-360,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cortrich","coords":[[-1646,68,-2810,15],[-1633,71,-2749,15],[-1512,67,-2846,15],[-1461,72,-2838,15],[-1494,72,-2787,7]]}]},"Nose Ring":{"internalName":"Nose Ring","type":"ingredient","requirements":{"level":83,"skills":["jeweling"]},"icon":{"format":"legacy","value":"259:1"},"identifications":{"mainAttackDamage":{"min":1,"raw":1,"max":2},"walkSpeed":{"min":-4,"raw":-4,"max":-3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Charging Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Enraged Minotaur","coords":[[487,27,-5191,8],[461,28,-5130,6],[458,28,-5112,8],[472,28,-5142,5],[477,27,-5159,5],[450,27,-5163,6],[451,27,-5144,8]]},{"name":"Hobgoblin Caster","coords":[[-82,93,-4300,5],[-54,95,-4300,5],[-38,90,-4313,5],[76,87,-4345,5],[36,92,-4362,5],[-9,88,-4345,5],[654,54,-5446,0],[591,40,-5474,1],[602,20,-5525,1]]},{"name":"Hobgoblin Commander","coords":[[-54,95,-4323,5],[-83,94,-4304,5],[62,86,-4356,5],[-32,93,-4341,5],[9,86,-4356,5],[598,46,-5450,1],[597,28,-5479,4]]},{"name":"Hobgoblin Warrior","coords":[[85,82,-4342,5],[102,77,-4344,5],[65,86,-4340,5],[626,44,-5463,3],[632,42,-5461,2],[643,37,-5471,1],[606,27,-5550,4],[620,27,-5545,4],[630,27,-5538,4],[637,27,-5528,3],[651,27,-5510,2],[618,39,-5484,4],[615,34,-5491,2],[610,28,-5503,2],[600,28,-5493,3],[620,27,-5515,2],[605,28,-5474,3],[641,41,-5444,2],[641,39,-5460,2],[652,33,-5491,3],[626,28,-5521,3],[597,28,-5479,8],[617,27,-5545,10]]}]},"Cat's Ears":{"internalName":"Cat's Ears","type":"ingredient","requirements":{"level":83,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":1},"rawAgility":{"min":5,"raw":5,"max":6},"sprint":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-92000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":11},"droppedBy":[{"name":"Jinko Bandito","coords":[[568,47,-4930,15],[478,47,-4895,15],[578,55,-4854,15],[600,54,-4788,15],[636,56,-4771,15],[637,54,-4731,15],[460,29,-4550,10],[437,29,-4520,15],[462,29,-4457,15],[392,45,-4444,15]]},{"name":"Jinko Loco Asesino","coords":[[500,29,-5012,25],[463,29,-4966,20],[601,29,-4937,40],[626,29,-4860,25],[592,29,-4687,25],[546,29,-4628,30],[500,29,-4583,30],[356,29,-4777,20],[452,46,-4591,5]]},{"name":"Jinkito","coords":[[568,47,-4930,15],[478,47,-4895,15],[578,55,-4854,15],[600,54,-4788,15],[636,56,-4771,15],[637,54,-4731,15],[460,29,-4550,10],[437,29,-4520,15],[462,29,-4457,15],[392,45,-4444,15]]},{"name":"Jinko Shanker","coords":[[500,29,-5012,25],[463,29,-4966,20],[601,29,-4937,40],[626,29,-4860,25],[592,29,-4687,25],[546,29,-4628,30],[500,29,-4583,30],[356,29,-4777,20],[452,46,-4591,5]]},{"name":"Werecat","coords":[[769,47,-5481,5],[778,47,-5451,5],[755,47,-5462,5],[731,45,-5443,5],[712,45,-5469,5],[727,46,-5475,5],[731,47,-5495,5],[743,48,-5511,5],[753,46,-5526,5]]}]},"Rock-Hard Beak":{"internalName":"Rock-Hard Beak","type":"ingredient","requirements":{"level":83,"skills":["weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":6},"rawDefence":{"min":2,"raw":2,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Soul Singer Harpy","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]},{"name":"Harpy Ranger","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]}]},"Stolen Goods":{"internalName":"Stolen Goods","type":"ingredient","requirements":{"level":83,"skills":["weaponsmithing","woodworking","armouring","tailoring","alchemism","scribing"]},"icon":{"format":"legacy","value":"29:0"},"identifications":{"xpBonus":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Brawler","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]},{"name":"Bandit Houndmaster","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]}]},"Cat Tail":{"internalName":"Cat Tail","type":"ingredient","requirements":{"level":83,"skills":["tailoring"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jinko Shanker","coords":[[500,29,-5012,25],[463,29,-4966,20],[601,29,-4937,40],[626,29,-4860,25],[592,29,-4687,25],[546,29,-4628,30],[500,29,-4583,30],[356,29,-4777,20],[452,46,-4591,5]]},{"name":"Jinkito","coords":[[568,47,-4930,15],[478,47,-4895,15],[578,55,-4854,15],[600,54,-4788,15],[636,56,-4771,15],[637,54,-4731,15],[460,29,-4550,10],[437,29,-4520,15],[462,29,-4457,15],[392,45,-4444,15]]},{"name":"Jinko Bandito","coords":[[568,47,-4930,15],[478,47,-4895,15],[578,55,-4854,15],[600,54,-4788,15],[636,56,-4771,15],[637,54,-4731,15],[460,29,-4550,10],[437,29,-4520,15],[462,29,-4457,15],[392,45,-4444,15]]},{"name":"Tropical Wildcat","coords":false},{"name":"Wolf Spider","coords":false},{"name":"Young Wolf Spider","coords":false},{"name":"Jungle Cat","coords":null}]},"Jiandan Handwraps":{"internalName":"Jiandan Handwraps","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":83,"strength":40,"defence":40},"lore":"The cloth wraps produced by the canyon Dojo are just that, merely soft cloth. It is left to the users to apply them skillfully in battle, in whatever way they see fit.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"mainAttackDamage":{"min":7,"raw":23,"max":30},"rawHealth":{"min":248,"raw":827,"max":1075},"knockback":{"min":6,"raw":19,"max":25},"xpBonus":{"min":3,"raw":10,"max":13}},"rarity":"legendary"},"Crwth":{"internalName":"Crwth","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":628,"dropRestriction":"normal","requirements":{"level":83,"classRequirement":"archer","strength":35,"defence":35},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"manaRegen":{"min":3,"raw":9,"max":12},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":7,"raw":23,"max":30},"fireDamage":{"min":7,"raw":23,"max":30},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseEarthDamage":{"min":95,"raw":95,"max":120},"baseFireDamage":{"min":65,"raw":65,"max":125}},"rarity":"rare"},"Sourscratch":{"internalName":"Sourscratch","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":625,"dropRestriction":"never","requirements":{"level":82,"classRequirement":"archer","dexterity":60},"powderSlots":3,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawAgility":8,"mainAttackDamage":{"min":5,"raw":15,"max":20},"poison":{"min":2400,"raw":8000,"max":10400},"manaRegen":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":4,"raw":14,"max":18}},"base":{"baseThunderDamage":{"min":100,"raw":100,"max":400}},"rarity":"legendary"},"The Visionary's Vice":{"internalName":"The Visionary's Vice","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":575,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"assassin","dexterity":40,"intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawStrength":-15,"rawDefence":-15,"rawSpellDamage":{"min":53,"raw":175,"max":228},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-45,"raw":-35,"max":-24},"fireDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseThunderDamage":{"min":37,"raw":37,"max":203},"baseWaterDamage":{"min":83,"raw":83,"max":137}},"rarity":"legendary"},"Impeccable Light Oak Spear":{"internalName":"Impeccable Light Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":255,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":116,"raw":116,"max":132}},"rarity":"common"},"Ley Lines":{"internalName":"Ley Lines","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82,"intelligence":50},"powderSlots":3,"identifications":{"rawSpellDamage":{"min":36,"raw":120,"max":156},"rawHealth":{"min":-715,"raw":-550,"max":-385},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1975,"baseEarthDefence":-175,"baseThunderDefence":90,"baseWaterDefence":90},"rarity":"unique"},"Thanos Warsword":{"internalName":"Thanos Warsword","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":575,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"assassin","strength":40,"agility":40},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawStrength":8,"rawIntelligence":-8,"rawAgility":8,"mainAttackDamage":20,"rawMainAttackDamage":170,"rawSpellDamage":-90,"walkSpeed":15,"earthDamage":12,"airDamage":12},"base":{"baseDamage":{"min":80,"raw":80,"max":140},"baseEarthDamage":{"min":50,"raw":50,"max":70},"baseAirDamage":{"min":40,"raw":40,"max":80}},"rarity":"legendary"},"Sinister":{"internalName":"Sinister","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":82,"dexterity":25,"defence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"poison":{"min":195,"raw":650,"max":845},"lifeSteal":{"min":24,"raw":80,"max":104},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-10,"raw":-8,"max":-6},"airDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseThunderDefence":20,"baseWaterDefence":-55},"rarity":"rare"},"Dim Diamond Boots":{"internalName":"Dim Diamond Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82},"powderSlots":3,"base":{"baseHealth":1585},"rarity":"common"},"Thanos Legionnaire Leggings":{"internalName":"Thanos Legionnaire Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly of the Beast","agility":50},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawAgility":10,"walkSpeed":15,"xpBonus":15,"lootBonus":5,"thunderDamage":-20,"airDamage":20,"airDefence":20},"base":{"baseHealth":1900,"baseAirDefence":75},"rarity":"set"},"Bismuthinite":{"internalName":"Bismuthinite","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":352,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"mage","strength":35,"dexterity":55},"powderSlots":3,"lore":"An extremely rare metallic ore only found within the island region of Corkus, it is normally used in decorative dyes. However, a mishap one day caused the discovery of strange and cumulative effects when exposed to traditional magicks.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":12,"poison":{"min":1433,"raw":4775,"max":6208},"thorns":{"min":11,"raw":35,"max":46},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":12,"raw":40,"max":52},"waterDefence":{"min":-16,"raw":-12,"max":-8},"fireDefence":{"min":-16,"raw":-12,"max":-8},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":125,"raw":125,"max":195},"baseEarthDamage":{"min":55,"raw":55,"max":95}},"rarity":"legendary"},"Thanos Brand":{"internalName":"Thanos Brand","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly Of The Beast","defence":50},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":5,"xpBonus":5,"lootBonus":5,"fireDamage":5,"thunderDefence":-5,"waterDefence":-5,"fireDefence":5},"base":{"baseHealth":650,"baseFireDefence":30},"rarity":"legendary"},"Dragon Hide Plate":{"internalName":"Dragon Hide Plate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":82,"quest":"The Belly of the Beast"},"powderSlots":2,"identifications":{"rawDefence":10,"healthRegen":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"exploding":{"min":6,"raw":20,"max":26},"xpBonus":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2000,"baseFireDefence":100},"rarity":"rare"},"Impeccable Light Oak Relik":{"internalName":"Impeccable Light Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":381,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":150,"raw":150,"max":155}},"rarity":"common"},"Double-Edge":{"internalName":"Double-Edge","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":406,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"warrior","quest":"From The Bottom","dexterity":50},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawDexterity":7,"mainAttackDamage":13,"rawSpellDamage":165,"healthRegen":-30,"rawHealth":-1000,"lifeSteal":-215,"manaSteal":4,"fireDamage":-15,"earthDefence":-10},"base":{"baseDamage":{"min":30,"raw":30,"max":130},"baseThunderDamage":{"min":35,"raw":35,"max":130}},"rarity":"rare"},"Frontliner":{"internalName":"Frontliner","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":82,"defence":60,"agility":60},"powderSlots":2,"identifications":{"rawDefence":15,"rawAgility":9,"lifeSteal":{"min":60,"raw":200,"max":260},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-32,"raw":-25,"max":-17},"waterDefence":{"min":-32,"raw":-25,"max":-17},"fireDefence":{"min":14,"raw":45,"max":59},"airDefence":{"min":14,"raw":45,"max":59}},"base":{"baseHealth":3500,"baseFireDefence":125,"baseAirDefence":125},"rarity":"legendary"},"Verglas":{"internalName":"Verglas","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":82,"intelligence":35,"agility":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":-71,"raw":-55,"max":-38},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":2,"raw":5,"max":7}},"rarity":"rare"},"Sprintguard":{"internalName":"Sprintguard","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82,"defence":45,"agility":45},"powderSlots":2,"identifications":{"rawDefence":7,"rawAgility":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"1stSpellCost":{"min":-5,"raw":-16,"max":-21},"2ndSpellCost":{"min":-4,"raw":-13,"max":-17},"walkSpeed":{"min":5,"raw":16,"max":21},"sprint":{"min":3,"raw":11,"max":14},"sprintRegen":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":2950,"baseThunderDefence":-150,"baseFireDefence":60,"baseAirDefence":60},"rarity":"rare"},"Ehoole Drakeskin":{"internalName":"Ehoole Drakeskin","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"From The Bottom","intelligence":30,"agility":45},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"mainAttackDamage":-16,"spellDamage":8,"rawSpellDamage":210,"manaRegen":12,"reflection":12,"walkSpeed":16,"fireDamage":-16,"airDamage":12},"base":{"baseHealth":1750,"baseWaterDefence":90,"baseFireDefence":-140,"baseAirDefence":80},"rarity":"rare"},"Boots of Blue Stone":{"internalName":"Boots of Blue Stone","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":2,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"rawMainAttackDamage":{"min":48,"raw":160,"max":208},"rawSpellDamage":{"min":36,"raw":120,"max":156},"sprint":{"min":4,"raw":13,"max":17},"sprintRegen":{"min":4,"raw":13,"max":17},"elementalDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":2000,"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":30},"rarity":"unique"},"Lightning Flash":{"internalName":"Lightning Flash","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":82},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":5,"spellDamage":10,"walkSpeed":12,"earthDamage":-5},"base":{"baseThunderDefence":50},"rarity":"rare"},"Thanos Warhammer":{"internalName":"Thanos Warhammer","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":465,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"warrior","strength":40,"defence":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":10,"mainAttackDamage":20,"spellDamage":-10,"walkSpeed":-10,"exploding":20,"earthDamage":15,"fireDamage":15,"earthDefence":25},"base":{"baseDamage":{"min":110,"raw":110,"max":200},"baseEarthDamage":{"min":60,"raw":60,"max":95},"baseFireDamage":{"min":50,"raw":50,"max":105}},"rarity":"legendary"},"Plate Shock":{"internalName":"Plate Shock","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":296,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"mage","quest":"From The Bottom","dexterity":45},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":4,"mainAttackDamage":10,"spellDamage":10,"healthRegenRaw":-75,"reflection":20,"thunderDamage":18,"waterDefence":-10},"base":{"baseDamage":{"min":150,"raw":150,"max":245}},"rarity":"rare"},"Thanos Ironstaff":{"internalName":"Thanos Ironstaff","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":330,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"mage","strength":40,"defence":40},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawDexterity":-10,"rawIntelligence":-10,"rawDefence":10,"mainAttackDamage":20,"healthRegen":20,"rawHealth":1075,"earthDefence":30,"fireDefence":30},"base":{"baseDamage":{"min":55,"raw":55,"max":75},"baseEarthDamage":{"min":40,"raw":40,"max":55},"baseFireDamage":{"min":40,"raw":40,"max":55}},"rarity":"legendary"},"Revolt":{"internalName":"Revolt","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":496,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"archer","dexterity":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"lifeSteal":{"min":104,"raw":345,"max":449},"manaSteal":{"min":2,"raw":8,"max":10},"rawDamage":{"min":33,"raw":110,"max":143},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":9,"max":12},"fireDamage":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":70,"raw":70,"max":90},"baseThunderDamage":{"min":20,"raw":20,"max":60},"baseFireDamage":{"min":20,"raw":20,"max":60}},"rarity":"unique"},"Drifting Spear":{"internalName":"Drifting Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":304,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"warrior","intelligence":25,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawIntelligence":4,"rawAgility":5,"walkSpeed":{"min":3,"raw":11,"max":14},"xpBonus":{"min":3,"raw":9,"max":12},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":50,"raw":50,"max":100},"baseAirDamage":{"min":15,"raw":15,"max":50}},"rarity":"unique"},"Droplets":{"internalName":"Droplets","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":369,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"assassin","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":80,"raw":80,"max":95},"baseWaterDamage":{"min":55,"raw":55,"max":65}},"rarity":"unique"},"Dragonspit":{"internalName":"Dragonspit","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":527,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"archer","quest":"From The Bottom","defence":45},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":5,"rawHealth":1200,"lifeSteal":335,"rawFireDamage":165,"exploding":20},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseFireDamage":{"min":90,"raw":90,"max":160}},"rarity":"rare"},"Crook's March":{"internalName":"Crook's March","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":645,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"shaman","quest":"From The Bottom","strength":45,"dexterity":50},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawHealth":-900,"lifeSteal":250,"manaRegen":-12,"manaSteal":8,"stealing":10,"earthDamage":20,"thunderDamage":20},"base":{"baseDamage":{"min":120,"raw":120,"max":140},"baseEarthDamage":{"min":140,"raw":140,"max":160},"baseThunderDamage":{"min":130,"raw":130,"max":170}},"rarity":"rare"},"Nightshade":{"internalName":"Nightshade","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":82},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"poison":{"min":255,"raw":850,"max":1105}},"base":{"baseFireDefence":-20},"rarity":"unique"},"Impeccable Light Oak Wand":{"internalName":"Impeccable Light Oak Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":189,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":70,"raw":70,"max":81}},"rarity":"common"},"Aldorei's Vision":{"internalName":"Aldorei's Vision","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":158,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"mage","agility":65},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawIntelligence":7,"rawAgility":7,"lifeSteal":{"min":-195,"raw":-150,"max":-105},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":-4,"raw":-12,"max":-16},"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":45,"raw":45,"max":60},"baseAirDamage":{"min":45,"raw":45,"max":60}},"rarity":"unique"},"Hirudo":{"internalName":"Hirudo","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":400,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"assassin","strength":30,"intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"healthRegen":{"min":9,"raw":30,"max":39},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":4,"raw":13,"max":17},"thunderDamage":{"min":-22,"raw":-17,"max":-12},"thunderDefence":{"min":-22,"raw":-17,"max":-12}},"base":{"baseEarthDamage":{"min":84,"raw":84,"max":110},"baseWaterDamage":{"min":74,"raw":74,"max":120}},"rarity":"unique"},"Msitu":{"internalName":"Msitu","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":478,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"shaman","strength":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":8,"rawAgility":-8,"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-39,"raw":-30,"max":-21},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":60,"raw":60,"max":92},"baseEarthDamage":{"min":100,"raw":100,"max":130}},"rarity":"unique"},"Pizzicato":{"internalName":"Pizzicato","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":405,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"shaman","intelligence":25,"defence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawIntelligence":7,"rawDefence":7,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegenRaw":{"min":29,"raw":95,"max":124},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":3,"raw":10,"max":13},"jumpHeight":1},"base":{"baseDamage":{"min":51,"raw":51,"max":57},"baseWaterDamage":{"min":51,"raw":51,"max":57},"baseFireDamage":{"min":51,"raw":51,"max":57}},"rarity":"unique"},"Corrupted Uth Plume":{"internalName":"Corrupted Uth Plume","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":82,"agility":75},"powderSlots":2,"dropMeta":{"name":"Corrupted Underworld Crypt","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawAgility":10,"walkSpeed":20,"airDamage":15},"base":{"baseHealth":2350,"baseWaterDefence":-60,"baseAirDefence":150},"rarity":"set"},"Shadow Flame":{"internalName":"Shadow Flame","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":502,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"shaman","dexterity":30,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawAgility":-10,"rawSpellDamage":{"min":38,"raw":125,"max":163},"rawHealth":{"min":-1040,"raw":-800,"max":-560},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":5,"raw":17,"max":22},"waterDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":5,"raw":17,"max":22},"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":53,"raw":53,"max":55},"baseThunderDamage":{"min":47,"raw":47,"max":61},"baseFireDamage":{"min":50,"raw":50,"max":58}},"rarity":"unique"},"Static-Charged Leggings":{"internalName":"Static-charged Leggings","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":82,"dexterity":55},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"healthRegen":-40,"lifeSteal":175,"thorns":40,"reflection":20,"rawAttackSpeed":1,"thunderDamage":40,"earthDefence":-15,"waterDefence":-25},"base":{"baseHealth":2050,"baseEarthDefence":-100,"baseThunderDefence":100},"rarity":"rare"},"Thanos Legionnaire Greaves":{"internalName":"Thanos Legionnaire Greaves","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly of the Beast","defence":50},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawDefence":10,"healthRegenRaw":150,"xpBonus":10,"lootBonus":10,"waterDamage":-20,"fireDamage":20,"waterDefence":-20,"fireDefence":20},"base":{"baseHealth":2550,"baseFireDefence":75},"rarity":"set"},"Fluorescence":{"internalName":"Fluorescence","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82},"powderSlots":2,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"healthRegen":{"min":6,"raw":20,"max":26},"reflection":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":6,"raw":20,"max":26},"stealing":{"min":2,"raw":6,"max":8},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2000},"rarity":"unique"},"Shale Edge":{"internalName":"Shale Edge","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":484,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"assassin","quest":"From The Bottom","intelligence":25},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawStrength":4,"spellDamage":8,"rawSpellDamage":90,"manaSteal":4,"earthDamage":15,"airDamage":-16,"airDefence":-13},"base":{"baseDamage":{"min":45,"raw":45,"max":75},"baseWaterDamage":{"min":40,"raw":40,"max":65}},"rarity":"rare"},"Dark Shroud":{"internalName":"Dark Shroud","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82,"dexterity":15,"agility":50},"powderSlots":2,"lore":"Wearing this deceptively simple shroud causes the user to fade into the shadows, sometimes flickering out of existence for a moment.","identifications":{"rawDexterity":15,"rawAgility":25,"damage":{"min":-26,"raw":-20,"max":-14},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":8,"raw":25,"max":33},"airDefence":{"min":14,"raw":45,"max":59}},"base":{"baseHealth":2675,"baseThunderDefence":75,"baseAirDefence":50},"rarity":"legendary"},"Ironbody":{"internalName":"Ironbody","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"From The Bottom","strength":35,"defence":35},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawDefence":9,"mainAttackDamage":16,"healthRegen":16,"thorns":18,"walkSpeed":-10,"airDamage":-30,"earthDefence":12,"fireDefence":10},"base":{"baseHealth":2950,"baseEarthDefence":120,"baseThunderDefence":60,"baseWaterDefence":40,"baseFireDefence":110,"baseAirDefence":50},"rarity":"rare"},"Storm Caller":{"internalName":"Storm Caller","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":556,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"archer","dexterity":30,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawDefence":-8,"spellDamage":{"min":6,"raw":20,"max":26},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":70,"raw":70,"max":115},"baseThunderDamage":{"min":50,"raw":50,"max":85},"baseAirDamage":{"min":55,"raw":55,"max":70}},"rarity":"unique"},"Shell of Genbu":{"internalName":"Shell of Genbu","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":82,"intelligence":45,"defence":40},"identifications":{"rawDefence":8,"spellDamage":{"min":7,"raw":23,"max":30},"lifeSteal":{"min":-208,"raw":-160,"max":-112},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2500,"baseEarthDefence":-60,"baseThunderDefence":-90,"baseWaterDefence":75,"baseFireDefence":75},"rarity":"rare"},"Anamnesis":{"internalName":"Anamnesis","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":82,"intelligence":100},"powderSlots":2,"identifications":{"rawIntelligence":29,"mainAttackDamage":{"min":-71,"raw":-55,"max":-38},"manaRegen":{"min":7,"raw":24,"max":31},"reflection":{"min":6,"raw":20,"max":26},"waterDamage":{"min":17,"raw":55,"max":72}},"base":{"baseHealth":-1600,"baseWaterDefence":200},"rarity":"rare"},"Thanos Banner":{"internalName":"Thanos Banner","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly Of The Beast","strength":50},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":6,"lootBonus":10,"earthDamage":10,"earthDefence":10,"waterDefence":-10},"base":{"baseEarthDefence":60},"rarity":"legendary"},"Thanos Legionnaire Helm":{"internalName":"Thanos Legionnaire Helm","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly of the Beast","strength":50},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawStrength":10,"mainAttackDamage":10,"xpBonus":5,"lootBonus":15,"earthDamage":20,"earthDefence":20,"thunderDefence":-20},"base":{"baseHealth":2125,"baseEarthDefence":75},"rarity":"set"},"Impeccable Light Oak Dagger":{"internalName":"Impeccable Light Oak Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":318,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":115}},"rarity":"common"},"Impeccable Light Oak Bow":{"internalName":"Impeccable Light Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":365,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":170,"raw":170,"max":184}},"rarity":"common"},"Lazuli":{"internalName":"Lazuli","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":340,"dropRestriction":"never","requirements":{"level":82,"classRequirement":"mage","intelligence":60},"powderSlots":2,"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawIntelligence":8,"rawSpellDamage":{"min":52,"raw":173,"max":225},"1stSpellCost":{"min":-2,"raw":-8,"max":-10},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":50,"raw":50,"max":80},"baseWaterDamage":{"min":75,"raw":75,"max":125}},"rarity":"legendary"},"Thanos Stonesinger":{"internalName":"Thanos Stonesinger","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":615,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"shaman","strength":40,"defence":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"rawDexterity":-8,"rawMainAttackDamage":160,"exploding":20,"earthDamage":15,"fireDamage":15,"earthDefence":20,"waterDefence":-20,"fireDefence":20},"base":{"baseDamage":{"min":120,"raw":120,"max":126},"baseEarthDamage":{"min":60,"raw":60,"max":63},"baseFireDamage":{"min":57,"raw":57,"max":66}},"rarity":"legendary"},"Rapier":{"internalName":"Rapier","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":459,"dropRestriction":"normal","requirements":{"level":82,"classRequirement":"assassin","defence":45},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawDefence":12,"lifeSteal":{"min":87,"raw":290,"max":377},"thorns":{"min":9,"raw":30,"max":39},"reflection":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":66,"raw":66,"max":76},"baseFireDamage":{"min":66,"raw":66,"max":88}},"rarity":"rare"},"Old Keeper's Ring":{"internalName":"Old Keeper's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":82},"majorIds":{"Greed":"+Greed: Picking up emeralds heals you and nearby players for 8% max health."},"lore":"Found on the corpse of the oldest shopkeeper of the Gavel province, the engraved text reads 'GREED'.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"healthRegenRaw":{"min":-65,"raw":-50,"max":-35},"rawHealth":{"min":-390,"raw":-300,"max":-210},"lootBonus":{"min":7,"raw":22,"max":29}},"base":{"baseHealth":-109},"rarity":"legendary"},"Thanos Crest":{"internalName":"Thanos Crest","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":82,"quest":"The Belly Of The Beast","agility":50},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":6,"xpBonus":10,"airDamage":10,"thunderDefence":-10,"airDefence":10},"base":{"baseAirDefence":60},"rarity":"legendary"},"Platinum Ingot":{"internalName":"Gold","type":"ingredient","requirements":{"level":82,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"lootBonus":{"min":3,"raw":3,"max":5},"walkSpeed":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Ranger","coords":[[174,46,-4911,5],[205,71,-4890,5],[271,81,-4871,5],[260,81,-4907,5],[260,81,-4907,10]]},{"name":"Canyon Thug","coords":[[208,84,-4649,5],[268,90,-4650,5],[251,90,-4647,5],[278,104,-4644,2],[186,57,-4870,15],[186,57,-4870,15],[186,57,-4870,15]]},{"name":"Bandit Houndmaster","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]},{"name":"Bandit Brawler","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]},{"name":"projectile","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]}]},"Cloudtwine":{"internalName":"Cloudtwine","type":"ingredient","requirements":{"level":82,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawAgility":{"min":3,"raw":3,"max":4},"sprint":{"min":4,"raw":4,"max":5},"airDamage":{"min":6,"raw":6,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-92000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":16}},"Aged Tome":{"internalName":"Aged Tome","type":"ingredient","requirements":{"level":82,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"340:0"},"identifications":{"mainAttackDamage":{"min":-12,"raw":-12,"max":-9},"spellDamage":{"min":10,"raw":10,"max":14}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Roaming Ancient","coords":[-53,63,-4894,30]}]},"Windy Aura":{"internalName":"Windy Aura","type":"ingredient","requirements":{"level":82,"skills":["scribing"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"rawAgility":{"min":3,"raw":3,"max":7},"walkSpeed":{"min":7,"raw":7,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spirit of the Lost","coords":[[667,57,-5279,0],[667,57,-5275,0],[667,57,-5271,0]]},{"name":"Spirit of the Lost","coords":[663,53,-5266,0]},{"name":"Ghastly Shadow","coords":null},{"name":"Whispering Djinn","coords":null},{"name":"Tempest","coords":null},{"name":"Storming Tempest","coords":null}]},"Harpy Bone":{"internalName":"Harpy Bone","type":"ingredient","requirements":{"level":82,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"airDamage":{"min":1,"raw":1,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Soul Singer Harpy","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]},{"name":"Harpy Ranger","coords":[[349,57,-4433,8],[361,55,-4447,10],[383,59,-4505,8],[381,57,-4489,7],[345,88,-4526,5],[364,84,-4527,8],[375,76,-4510,5],[370,68,-4485,9],[374,30,-4919,5],[393,35,-4940,5],[408,43,-4955,5],[419,46,-4969,5],[429,49,-5001,5],[416,56,-4989,5],[392,67,-4999,5],[377,72,-5012,5],[332,62,-4656,5],[322,59,-4678,5],[317,60,-4698,5],[298,65,-4732,5],[278,65,-4762,5],[262,66,-4778,5],[233,74,-4778,5],[283,63,-4805,5],[297,66,-4810,5],[307,73,-4826,5],[308,73,-4847,5],[316,72,-4860,5],[323,71,-4883,5],[331,67,-4905,5]]}]},"Stone Plating":{"internalName":"Stone Plating","type":"ingredient","requirements":{"level":82,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"rawHealth":{"min":480,"raw":480,"max":550},"walkSpeed":{"min":-10,"raw":-10,"max":-6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Cyclops","coords":[[225,79,-4716,8],[201,84,-4729,6],[175,86,-4739,5],[158,78,-4732,5],[134,69,-4717,6],[120,72,-4706,5],[116,75,-4687,5],[120,71,-4663,8],[136,67,-4657,6],[164,74,-4646,15],[164,74,-4646,15],[164,79,-4756,6],[172,80,-4772,5]]},{"name":"Gargoyle","coords":[[527,50,-4447,10],[507,53,-4424,5],[495,50,-4406,5],[470,47,-4413,5],[556,50,-4445,10],[582,50,-4445,10],[611,52,-4448,5],[631,50,-4473,10],[625,50,-4491,10],[610,50,-4475,10],[613,50,-4394,10]]},{"name":"Elefolk Hunter","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"Elefolk Warrior","coords":[[372,36,-4555,8],[361,36,-4578,10],[352,33,-4592,8],[349,31,-4608,10],[357,29,-4625,6],[360,28,-4648,8],[353,28,-4667,6],[352,28,-4688,6],[339,28,-4701,10],[335,28,-4748,10],[364,28,-4827,8],[378,29,-4853,5]]},{"name":"The Elephelk","coords":[[585,35,-4974,50],[611,53,-4846,70],[582,37,-4670,80],[511,34,-4600,100],[448,80,-4427,200],[291,87,-4795,130]]}]},"Thanos Siege Bow":{"internalName":"Thanos Siege Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":622,"dropRestriction":"never","identified":true,"requirements":{"level":82,"classRequirement":"archer","defence":40,"agility":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":10,"healthRegenRaw":160,"rawHealth":1275,"walkSpeed":-15,"exploding":30,"rawMaxMana":-20,"fireDamage":15,"airDamage":15},"base":{"baseDamage":{"min":150,"raw":150,"max":280},"baseFireDamage":{"min":70,"raw":70,"max":130},"baseAirDamage":{"min":55,"raw":55,"max":145}},"rarity":"legendary"},"Needle Cuff":{"internalName":"Needle Cuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":81,"dexterity":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawMainAttackDamage":{"min":18,"raw":60,"max":78},"thorns":{"min":3,"raw":11,"max":14},"thunderDefence":{"min":3,"raw":9,"max":12}},"rarity":"unique"},"Sterk":{"internalName":"Sterk","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","strength":10,"defence":40},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":3,"earthDefence":8,"fireDefence":7,"airDefence":6},"base":{"baseHealth":250,"baseEarthDefence":10,"baseWaterDefence":-10,"baseFireDefence":25},"rarity":"rare"},"Thunderous Step":{"internalName":"Thunderous Step","type":"armour","armourType":"boots","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":81,"dexterity":45,"agility":30},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"rawDefence":-5,"rawAgility":15,"rawMainAttackDamage":400,"rawSpellDamage":235,"walkSpeed":16,"earthDamage":-25},"base":{"baseHealth":2100,"baseThunderDefence":125,"baseFireDefence":-80},"rarity":"rare"},"Fenmask":{"internalName":"Fenmask","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"strength":30,"intelligence":30},"powderSlots":2,"lore":"This matted tangle of vines and marshland plants contains various herbal remedies woven into it. It is oddly comfortable, despite the thorns coating the inside.","identifications":{"healthRegen":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"thorns":{"min":24,"raw":80,"max":104},"reflection":{"min":-52,"raw":-40,"max":-28},"earthDamage":{"min":4,"raw":14,"max":18},"waterDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":2600,"baseEarthDefence":140,"baseWaterDefence":105},"rarity":"legendary"},"Logistics":{"internalName":"Logistics","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"dexterity":50,"intelligence":40},"powderSlots":3,"identifications":{"rawDexterity":8,"rawIntelligence":8,"mainAttackDamage":{"min":-71,"raw":-55,"max":-38},"raw1stSpellCost":1,"raw3rdSpellCost":1,"raw4thSpellCost":{"min":-2,"raw":-6,"max":-8},"thunderDamage":{"min":12,"raw":40,"max":52},"waterDamage":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":1750,"baseEarthDefence":-120,"baseThunderDefence":90,"baseWaterDefence":90},"rarity":"unique"},"Moss":{"internalName":"Moss","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"strength":30,"intelligence":30},"powderSlots":3,"identifications":{"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":30,"raw":100,"max":130},"damage":{"min":-10,"raw":-8,"max":-6},"rawMaxMana":{"min":9,"raw":31,"max":40},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":8,"raw":25,"max":33},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2300,"baseEarthDefence":65,"baseWaterDefence":65},"rarity":"unique"},"Rask":{"internalName":"Rask","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","agility":50},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"walkSpeed":12,"fireDefence":-5},"base":{"baseAirDefence":30},"rarity":"rare"},"Exosphere":{"internalName":"Exosphere","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"dexterity":24,"agility":24},"powderSlots":2,"identifications":{"spellDamage":{"min":5,"raw":18,"max":23},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":5,"raw":18,"max":23},"thunderDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8},"thunderDefence":{"min":2,"raw":6,"max":8},"airDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1800,"baseEarthDefence":-120,"baseThunderDefence":60,"baseAirDefence":60},"rarity":"unique"},"Apocalypse":{"internalName":"Apocalypse","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":536,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"warrior","defence":95},"majorIds":{"Hellfire":"+Hellfire: Bash becomes one giant 325% damage hit, and Boiling Blood burns faster and stronger but can't slow."},"powderSlots":3,"lore":"To forge a weapon such as this from the cursed lava of the portal basin requires dozens, for each smith would lose themselves to the force of corruption before it is finished. The nightmarishly hooked blade serves no purpose but destruction, as intended.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":35,"healthRegen":{"min":-162,"raw":-125,"max":-87},"lifeSteal":{"min":277,"raw":923,"max":1200},"3rdSpellCost":{"min":26,"raw":20,"max":14},"exploding":{"min":185,"raw":616,"max":801},"waterDamage":{"min":-65,"raw":-50,"max":-35},"waterDefence":{"min":-91,"raw":-70,"max":-49},"fireDefence":{"min":75,"raw":250,"max":325}},"base":{"baseDamage":{"min":315,"raw":315,"max":525},"baseFireDamage":{"min":440,"raw":440,"max":820}},"rarity":"mythic"},"Steady Grip":{"internalName":"Steady Grip","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","dexterity":25,"intelligence":25},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawDexterity":3,"rawIntelligence":3,"mainAttackDamage":-10,"rawSpellDamage":45,"earthDamage":-8},"rarity":"rare"},"Tankard Basher":{"internalName":"Tankard Basher","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":338,"dropRestriction":"never","identified":true,"requirements":{"level":81,"classRequirement":"warrior","strength":25,"agility":35},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":8,"rawDexterity":-8,"rawAgility":8,"mainAttackDamage":12,"walkSpeed":12,"airDamage":20},"base":{"baseDamage":{"min":45,"raw":45,"max":65},"baseEarthDamage":{"min":50,"raw":50,"max":110}},"rarity":"unique"},"The Rupturer":{"internalName":"The Rupturer","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"strength":60},"powderSlots":2,"identifications":{"rawStrength":15,"mainAttackDamage":{"min":3,"raw":10,"max":13},"exploding":{"min":8,"raw":25,"max":33},"earthDamage":{"min":8,"raw":25,"max":33},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1350,"baseEarthDefence":80,"baseAirDefence":-100},"rarity":"unique"},"The Gambler":{"internalName":"The Gambler","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":81},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawHealth":{"min":98,"raw":325,"max":423},"lifeSteal":{"min":24,"raw":80,"max":104},"manaSteal":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":7,"max":9},"stealing":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":-325},"rarity":"rare"},"Bottled Thunderstorm":{"internalName":"Bottled Thunderstorm","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":81,"dexterity":20,"agility":20},"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawDexterity":5,"rawAgility":5,"thunderDamage":10,"airDamage":10},"rarity":"rare"},"Formation":{"internalName":"Formation","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","strength":45,"defence":5},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"walkSpeed":-4,"earthDamage":7,"thunderDefence":4},"base":{"baseHealth":300,"baseEarthDefence":40,"baseAirDefence":-25},"rarity":"rare"},"Jewel Cutter":{"internalName":"Jewel Cutter","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":396,"dropRestriction":"never","identified":true,"requirements":{"level":81,"classRequirement":"assassin","agility":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawAgility":7,"rawMainAttackDamage":130,"walkSpeed":10,"lootBonus":20,"stealing":4,"waterDefence":-12,"fireDefence":15,"airDefence":20},"base":{"baseDamage":{"min":100,"raw":100,"max":170},"baseAirDamage":{"min":54,"raw":54,"max":60}},"rarity":"unique"},"Mining Fever":{"internalName":"Mining Fever","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom"},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"xpBonus":5,"lootBonus":35,"stealing":7,"earthDamage":15},"base":{"baseHealth":1850,"baseEarthDefence":60},"rarity":"rare"},"Power Creep":{"internalName":"Power Creep","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":81,"strength":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":2,"raw":7,"max":9}},"rarity":"unique"},"Earthlink":{"internalName":"Earthlink","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","strength":55},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawStrength":5,"walkSpeed":-5,"xpBonus":10,"earthDamage":35,"thunderDamage":-5,"airDamage":-5},"base":{"baseHealth":1850},"rarity":"rare"},"Deux":{"internalName":"Deux","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"dexterity":40,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":-4,"rawDexterity":6,"rawIntelligence":6,"rawDefence":-4,"rawAgility":-4,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":2,"raw":5,"max":7},"manaRegen":{"min":3,"raw":10,"max":13},"manaSteal":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1900,"baseEarthDefence":-80,"baseThunderDefence":150,"baseWaterDefence":150,"baseFireDefence":-80,"baseAirDefence":-80},"rarity":"unique"},"Fire Pearl":{"internalName":"Fire Pearl","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","defence":50},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"exploding":6,"waterDamage":-10,"fireDamage":6,"fireDefence":4},"base":{"baseHealth":500,"baseWaterDefence":-40,"baseFireDefence":50},"rarity":"rare"},"Namazu":{"internalName":"Namazu","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":342,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"warrior","strength":30,"intelligence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":10,"rawMainAttackDamage":{"min":105,"raw":350,"max":455},"rawAttackSpeed":{"min":-4,"raw":-3,"max":-2},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDamage":{"min":5,"raw":18,"max":23},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":240,"raw":240,"max":320},"baseWaterDamage":{"min":328,"raw":328,"max":455}},"rarity":"unique"},"Dhoruba":{"internalName":"Dhoruba","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":472,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"shaman","dexterity":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawStrength":-8,"rawDexterity":8,"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":120,"raw":120,"max":160},"baseThunderDamage":{"min":160,"raw":160,"max":190}},"rarity":"unique"},"Mithril Mantle":{"internalName":"Mithril Mantle","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":81},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"lifeSteal":175,"manaSteal":8,"thorns":20,"lootBonus":15},"base":{"baseHealth":2125,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"unique"},"Dim Diamond Helmet":{"internalName":"Dim Diamond Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81},"powderSlots":3,"base":{"baseHealth":1540},"rarity":"common"},"Bubbline":{"internalName":"Bubbline","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"intelligence":40},"powderSlots":3,"identifications":{"rawIntelligence":8,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":9,"raw":30,"max":39},"rawMaxMana":{"min":6,"raw":20,"max":26},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1875,"baseThunderDefence":-90,"baseWaterDefence":140},"rarity":"unique"},"Shockmosis":{"internalName":"Shockmosis","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":472,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"shaman","dexterity":25,"intelligence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"rawMainAttackDamage":{"min":35,"raw":115,"max":150},"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":27,"raw":90,"max":117},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":100,"raw":100,"max":108},"baseThunderDamage":{"min":40,"raw":40,"max":45},"baseWaterDamage":{"min":40,"raw":40,"max":45}},"rarity":"unique"},"Breath of the Vampire":{"internalName":"Breath of the Vampire","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":306,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"warrior","dexterity":35,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":7,"lifeSteal":{"min":57,"raw":190,"max":247},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":55,"raw":55,"max":70},"baseAirDamage":{"min":35,"raw":35,"max":85}},"rarity":"unique"},"Ylem":{"internalName":"Ylem","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":262,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"mage","dexterity":30,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawSpellDamage":{"min":36,"raw":120,"max":156},"healthRegenRaw":{"min":-104,"raw":-80,"max":-56},"lifeSteal":{"min":54,"raw":180,"max":234},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-32,"raw":-25,"max":-17},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":127},"baseFireDamage":{"min":0,"raw":0,"max":127}},"rarity":"unique"},"Dying Light":{"internalName":"Dying Light","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":560,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"shaman","intelligence":38,"agility":38},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawIntelligence":10,"rawAgility":10,"spellDamage":{"min":6,"raw":20,"max":26},"lifeSteal":{"min":-282,"raw":-217,"max":-152},"healingEfficiency":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":3,"raw":10,"max":13},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":131,"raw":131,"max":141},"baseAirDamage":{"min":121,"raw":121,"max":151}},"rarity":"rare"},"Brass Choker":{"internalName":"Brass Choker","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":81,"quest":"From The Bottom","strength":10,"dexterity":40},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawStrength":1,"rawDexterity":2,"mainAttackDamage":4,"thunderDamage":9},"base":{"baseHealth":-350},"rarity":"rare"},"Brass Leg Plates":{"internalName":"Brass Leg Plates","type":"armour","armourType":"leggings","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":81,"strength":20,"dexterity":20},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawStrength":9,"rawDexterity":9,"lifeSteal":160,"earthDamage":15,"thunderDamage":15},"base":{"baseHealth":2125,"baseEarthDefence":75,"baseThunderDefence":75,"baseFireDefence":-120},"rarity":"unique"},"Thermosphere":{"internalName":"Thermosphere","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"normal","requirements":{"level":81,"dexterity":45},"powderSlots":3,"identifications":{"rawDexterity":7,"rawDefence":5,"rawAgility":5,"reflection":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":9,"max":12},"airDamage":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":3,"raw":9,"max":12},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2150,"baseEarthDefence":-110,"baseThunderDefence":100,"baseFireDefence":70,"baseAirDefence":70},"rarity":"rare"},"Prowl":{"internalName":"Prowl","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":539,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"archer","strength":25,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":16,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":-117,"raw":-90,"max":-63},"rawHealth":{"min":-975,"raw":-750,"max":-525},"sprint":{"min":-26,"raw":-20,"max":-14},"xpBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":355,"raw":355,"max":455},"baseEarthDamage":{"min":355,"raw":355,"max":455},"baseAirDamage":{"min":210,"raw":210,"max":285}},"rarity":"unique"},"Agullo Beak":{"internalName":"Agullo Beak","type":"ingredient","requirements":{"level":81,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":7},"airDamage":{"min":6,"raw":6,"max":11}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":16},"droppedBy":[{"name":"Agullos","coords":[[-1193,38,-3239,8],[-1167,42,-3282,10],[-1161,38,-3312,10],[-1389,36,-3401,9],[-1423,36,-3409,9],[-1478,35,-3412,9],[-1516,35,-3415,9],[-1540,35,-3450,9],[-1279,37,-2279,9],[-1293,37,-2316,9],[-1297,35,-2254,9]]}]},"Corbys Innards":{"internalName":"Corbys Innards","type":"ingredient","requirements":{"level":81,"skills":["cooking"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"healthRegenRaw":{"min":13,"raw":13,"max":16}},"tier":0,"consumableOnlyIDs":{"duration":-250,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corbys","coords":[[-1193,38,-3239,8],[-1167,42,-3282,10],[-1161,38,-3312,10],[-1389,36,-3401,9],[-1423,36,-3409,9],[-1478,35,-3412,9],[-1516,35,-3415,9],[-1540,35,-3450,9],[-1279,37,-2279,9],[-1293,37,-2316,9],[-1297,35,-2254,9]]}]},"Roots of Eternity":{"internalName":"Roots of Eternity","type":"ingredient","requirements":{"level":81,"skills":["scribing"]},"icon":{"format":"legacy","value":"6:3"},"identifications":{"xpBonus":{"min":5,"raw":5,"max":6},"lootBonus":{"min":5,"raw":5,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":125,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Master Regenerator","coords":null}]},"Poorly-Made Pouch":{"internalName":"Poorly-Made Pouch","type":"ingredient","requirements":{"level":81,"skills":["tailoring"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"lootBonus":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"projectile","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]},{"name":"Bandit Ambusher","coords":[[512,78,-5079,5],[499,78,-5058,6],[484,78,-5037,6],[472,78,-5013,5],[410,78,-5070,6],[398,78,-5045,7],[391,78,-5073,5],[341,78,-5073,4],[321,78,-5062,4],[304,79,-5047,4],[292,79,-5035,5],[279,79,-5021,4],[265,79,-5007,6],[236,80,-5015,7],[267,79,-4972,8],[406,78,-5112,13],[406,78,-5112,13],[406,78,-5112,13]]}]},"Lockpicking Kit":{"internalName":"Lockpicking Kit","type":"ingredient","requirements":{"level":81,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"76:0"},"identifications":{"lootBonus":{"min":1,"raw":1,"max":6},"stealing":{"min":1,"raw":1,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Thug","coords":[[208,84,-4649,5],[268,90,-4650,5],[251,90,-4647,5],[278,104,-4644,2],[186,57,-4870,15],[186,57,-4870,15],[186,57,-4870,15]]},{"name":"Bandit Ranger","coords":[[174,46,-4911,5],[205,71,-4890,5],[271,81,-4871,5],[260,81,-4907,5],[260,81,-4907,10]]}]},"Purest Prism":{"internalName":"Purest Prism","type":"ingredient","requirements":{"level":81,"skills":["jeweling"]},"icon":{"format":"skin","value":"7b7a3266b834991255ad95ca79b5aab4045a7da19f18505875dcf868f4004b5b"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":1},"rawDexterity":{"min":1,"raw":1,"max":1},"rawIntelligence":{"min":1,"raw":1,"max":1},"rawDefence":{"min":1,"raw":1,"max":1},"rawAgility":{"min":1,"raw":1,"max":1},"elementalDefence":{"min":1,"raw":1,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-93000,"strengthRequirement":12,"dexterityRequirement":12,"intelligenceRequirement":12,"defenceRequirement":12,"agilityRequirement":12}},"Memory Dye":{"internalName":"Memory Dye","type":"ingredient","requirements":{"level":81,"skills":["armouring"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"manaSteal":{"min":-3,"raw":-3,"max":-3},"manaRegen":{"min":5,"raw":5,"max":6},"waterSpellDamage":{"min":7,"raw":7,"max":9},"airSpellDamage":{"min":7,"raw":7,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-120000,"strengthRequirement":0,"dexterityRequirement":-5,"intelligenceRequirement":20,"defenceRequirement":0,"agilityRequirement":10}},"Je Ne Sais Quoi":{"internalName":"Je Ne Sais Quoi","type":"ingredient","requirements":{"level":81,"skills":["jeweling"]},"icon":{"format":"legacy","value":"95:3"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"gatherSpeed":{"min":-1,"raw":-1,"max":-1}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Silver Bell":{"internalName":"Silver Bell","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":453,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"archer","intelligence":25,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawAgility":8,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"waterDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseWaterDamage":{"min":75,"raw":75,"max":100},"baseAirDamage":{"min":60,"raw":60,"max":115}},"rarity":"unique"},"Fyrespit":{"internalName":"Fyrespit","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":540,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"archer","intelligence":35,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"healthRegenRaw":{"min":30,"raw":100,"max":130},"rawHealth":{"min":450,"raw":1500,"max":1950},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":115,"raw":115,"max":160},"baseWaterDamage":{"min":45,"raw":45,"max":85},"baseFireDamage":{"min":120,"raw":120,"max":195}},"rarity":"rare"},"Spiritshock":{"internalName":"Spiritshock","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":675,"dropRestriction":"normal","requirements":{"level":81,"classRequirement":"archer","dexterity":55},"powderSlots":2,"lore":"Recovered from the Lexdale Penitentiary, this grisly bow holds destructive capabilities. Used to carry out executions, a precise enough shot can shatter the soul of those it hits.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":13,"rawSpellDamage":{"min":41,"raw":135,"max":176},"manaSteal":{"min":2,"raw":8,"max":10},"weakenEnemy":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-36,"raw":-28,"max":-20},"thunderDefence":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseThunderDamage":{"min":40,"raw":40,"max":500}},"rarity":"legendary"},"White Craftmas":{"internalName":"White Craftmas","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":466,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"shaman","strength":30,"intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"walkSpeed":-10,"lootBonus":15,"earthDamage":10,"waterDamage":10,"earthDefence":15,"waterDefence":15,"airDefence":30},"base":{"baseDamage":{"min":44,"raw":44,"max":48},"baseEarthDamage":{"min":125,"raw":125,"max":140},"baseWaterDamage":{"min":125,"raw":125,"max":140}},"rarity":"unique"},"Cosmic Ward":{"internalName":"Cosmic Ward","type":"armour","armourType":"leggings","armourColor":"rgb(172,162,216)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"quest":"???֎"},"powderSlots":4,"identifications":{"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2100},"rarity":"set"},"Tight Clamp":{"internalName":"Tight Clamp","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":80,"defence":40},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDexterity":-2,"rawDefence":3},"base":{"baseHealth":450,"baseFireDefence":30},"rarity":"unique"},"Flexing Chain":{"internalName":"Flexing Chain","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":80,"agility":40},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawStrength":-2,"rawAgility":3,"walkSpeed":6,"airDamage":4,"airDefence":6},"base":{"baseAirDefence":25},"rarity":"unique"},"Ventus Tail":{"internalName":"Ventus Tail","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"dexterity":35,"agility":35},"lore":"Fashioned from the cut tails of the now extinct Venti, these nearly immaterial boots are light as air and crackle with lightning.","identifications":{"rawDexterity":8,"rawAgility":8,"spellDamage":{"min":3,"raw":11,"max":14},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":7,"max":9},"stealing":{"min":2,"raw":7,"max":9},"earthDamage":{"min":-58,"raw":-45,"max":-31},"thunderDamage":{"min":8,"raw":27,"max":35},"airDamage":{"min":8,"raw":27,"max":35}},"base":{"baseHealth":2150,"baseEarthDefence":-250,"baseThunderDefence":120,"baseAirDefence":120},"rarity":"legendary"},"Cosmic Vest":{"internalName":"Cosmic Vest","type":"armour","armourType":"chestplate","armourColor":"rgb(172,162,216)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"quest":"???֎"},"powderSlots":4,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2200},"rarity":"set"},"Cemented Bow":{"internalName":"Cemented Bow","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":513,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"archer","strength":35,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawStrength":12,"rawAgility":-10,"manaRegen":{"min":3,"raw":9,"max":12},"damage":{"min":4,"raw":12,"max":16},"3rdSpellCost":{"min":-4,"raw":-12,"max":-16},"walkSpeed":{"min":-18,"raw":-14,"max":-10},"slowEnemy":{"min":4,"raw":12,"max":16},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":160,"raw":160,"max":200},"baseEarthDamage":{"min":360,"raw":360,"max":465},"baseWaterDamage":{"min":360,"raw":360,"max":465}},"rarity":"unique"},"Asbestos":{"internalName":"Asbestos","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":80},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"healthRegen":{"min":-18,"raw":-14,"max":-10},"poison":{"min":233,"raw":777,"max":1010},"lifeSteal":{"min":20,"raw":65,"max":85}},"base":{"baseHealth":-375},"rarity":"unique"},"Dancer":{"internalName":"Dancer","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":80,"agility":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"healthRegenRaw":-35,"walkSpeed":9,"airDamage":12},"base":{"baseHealth":-180},"rarity":"unique"},"Emerald Chopper":{"internalName":"Emerald Chopper","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":311,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"warrior","defence":35,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"exploding":{"min":8,"raw":25,"max":33},"lootBonus":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":7,"max":9},"fireDamage":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":150,"raw":150,"max":200},"baseAirDamage":{"min":150,"raw":150,"max":250}},"rarity":"unique"},"Ring of Power":{"internalName":"Ring of Power","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":80},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawStrength":2,"rawDexterity":2,"mainAttackDamage":8},"rarity":"unique"},"Windchime":{"internalName":"Windchime","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":231,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"mage","agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":4,"raw":12,"max":16},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseAirDamage":{"min":30,"raw":30,"max":45}},"rarity":"unique"},"Provenance":{"internalName":"Provenance","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":80,"strength":45,"agility":40},"lore":"Your success heralds the beginning of something new.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":3,"rawAgility":3,"damage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":3,"raw":9,"max":12},"manaSteal":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"rarity":"fabled"},"Cursed Spike":{"internalName":"Cursed Spike","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":369,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"warrior","strength":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"healthRegen":{"min":-39,"raw":-30,"max":-21},"rawHealth":{"min":-2210,"raw":-1700,"max":-1190},"poison":{"min":1200,"raw":4000,"max":5200},"thorns":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDamage":{"min":125,"raw":125,"max":170}},"rarity":"rare"},"Green Helmet":{"internalName":"Green Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80},"identifications":{"poison":{"min":435,"raw":1450,"max":1885},"xpBonus":{"min":6,"raw":20,"max":26},"stealing":{"min":1,"raw":2,"max":3},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1850,"baseEarthDefence":60},"rarity":"unique"},"Impeccable Stone Bow":{"internalName":"Impeccable Stone Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":378,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":420,"raw":420,"max":491}},"rarity":"common"},"Eleventh Hour":{"internalName":"Eleventh Hour","type":"armour","armourType":"chestplate","armourColor":"rgb(216,88,0)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"strength":55,"defence":30},"majorIds":{"Saviour’s Sacrifice":"+Saviours Sacrifice: While under 50% maximum health, nearby allies gain 15% bonus damage and defence."},"powderSlots":2,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"identifications":{"rawStrength":5,"mainAttackDamage":25,"raw4thSpellCost":-3,"thorns":25,"reflection":25,"walkSpeed":-15},"base":{"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"fabled"},"Screech":{"internalName":"Screech","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":45,"raw":150,"max":195},"thunderDamage":{"min":3,"raw":11,"max":14},"fireDamage":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14},"earthDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1675},"rarity":"unique"},"Centennial":{"internalName":"Centennial","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"intelligence":20,"defence":20},"identifications":{"rawIntelligence":8,"rawDefence":8,"healthRegen":{"min":5,"raw":18,"max":23},"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":2125,"baseWaterDefence":100,"baseFireDefence":100},"rarity":"unique"},"Rewind":{"internalName":"Rewind","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":559,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"assassin","intelligence":50,"agility":50},"majorIds":{"Sorcery":"+Sorcery: 30% chance for spells and attacks to cast a second time at no additional cost."},"powderSlots":2,"lore":"Time moves in strange ways around this translucent blade, speeding and slowing, starting and stopping, with no observable reasoning or pattern.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawAgility":10,"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"lifeSteal":{"min":75,"raw":250,"max":325},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":35,"raw":35,"max":50},"baseWaterDamage":{"min":30,"raw":30,"max":50},"baseAirDamage":{"min":25,"raw":25,"max":70}},"rarity":"legendary"},"Cacophony":{"internalName":"Cacophony","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":80,"agility":55},"lore":"Let their souls sing your chorus of victory.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawSpellDamage":{"min":-58,"raw":-45,"max":-31},"healthRegenRaw":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":35,"raw":115,"max":150},"thorns":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":-15,"baseThunderDefence":-15,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"fabled"},"Quill":{"internalName":"Quill","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":388,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"assassin","intelligence":30,"agility":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":16,"max":21},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":75,"raw":75,"max":80},"baseAirDamage":{"min":75,"raw":75,"max":80}},"rarity":"unique"},"Scrooge":{"internalName":"Scrooge","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":544,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"archer","strength":35,"dexterity":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"lifeSteal":325,"manaSteal":8,"sprint":-20,"lootBonus":33,"stealing":10},"base":{"baseDamage":{"min":35,"raw":35,"max":95},"baseEarthDamage":{"min":225,"raw":225,"max":365},"baseThunderDamage":{"min":225,"raw":225,"max":365}},"rarity":"unique"},"Krampus":{"internalName":"Krampus","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":340,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"warrior","dexterity":30,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":8,"mainAttackDamage":25,"healthRegenRaw":-90,"lifeSteal":180,"manaRegen":-6,"stealing":3,"thunderDamage":20,"waterDefence":-22},"base":{"baseThunderDamage":{"min":30,"raw":30,"max":120},"baseFireDamage":{"min":70,"raw":70,"max":110}},"rarity":"unique"},"Bete Noire":{"internalName":"Bete Noire","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"strength":80,"dexterity":80},"identifications":{"rawStrength":20,"rawDexterity":20,"rawMainAttackDamage":{"min":330,"raw":1100,"max":1430},"spellDamage":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":-201,"raw":-155,"max":-108},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":2150,"baseEarthDefence":100,"baseThunderDefence":100},"rarity":"rare"},"Veneration":{"internalName":"Veneration","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":80,"dexterity":55,"defence":45},"lore":"Revel in the respect you've finally earned.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":1,"rawDefence":1,"manaSteal":{"min":2,"raw":6,"max":8},"1stSpellCost":{"min":16,"raw":12,"max":8},"3rdSpellCost":{"min":16,"raw":12,"max":8},"thunderDamage":{"min":7,"raw":23,"max":30},"fireDamage":{"min":7,"raw":23,"max":30}},"base":{"baseWaterDefence":-65},"rarity":"fabled"},"Adder Stone":{"internalName":"Adder Stone","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":80,"strength":30,"intelligence":40},"lore":"Aldorei charms are often shared and tinkered with by gifted Elves within the commune. Though simple, the stones blessed by elven magic provide soothing energy to the wearer.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"healthRegenRaw":{"min":24,"raw":80,"max":104},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":375,"baseEarthDefence":25,"baseWaterDefence":25},"rarity":"legendary"},"Clockwork Ring":{"internalName":"Clockwork Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"spellDamage":5,"lootBonus":6},"base":{"baseHealth":-25},"rarity":"set"},"Agitation":{"internalName":"Agitation","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":454,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"assassin","dexterity":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"mainAttackDamage":{"min":7,"raw":23,"max":30},"spellDamage":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":-78,"raw":-60,"max":-42},"exploding":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-91,"raw":-70,"max":-49}},"base":{"baseDamage":{"min":24,"raw":24,"max":105},"baseThunderDamage":{"min":12,"raw":12,"max":70}},"rarity":"rare"},"Altum Spatium":{"internalName":"Altum Spatium","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"quest":"???֎"},"lore":"Even looking at this pendant strains your eyes. Should it even exist?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"reflection":{"min":6,"raw":19,"max":25},"xpBonus":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":251,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Centipede":{"internalName":"Centipede","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"strength":45,"dexterity":45,"defence":45,"agility":45},"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"spellDamage":-1000,"rawAttackSpeed":2,"walkSpeed":24,"stealing":8},"base":{"baseHealth":1000,"baseEarthDefence":-50,"baseThunderDefence":-50,"baseAirDefence":-50},"rarity":"legendary"},"Lumina":{"internalName":"Lumina","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":660,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"shaman","dexterity":45,"agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawMainAttackDamage":{"min":263,"raw":875,"max":1138},"rawHealth":{"min":-1625,"raw":-1250,"max":-875},"rawAttackSpeed":-1,"walkSpeed":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":9,"raw":30,"max":39},"airDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":285,"raw":285,"max":350},"baseThunderDamage":{"min":640,"raw":640,"max":680},"baseAirDamage":{"min":300,"raw":300,"max":335}},"rarity":"legendary"},"Zenith":{"internalName":"Zenith","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":188,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"mage","dexterity":35,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawAgility":7,"mainAttackDamage":15,"lifeSteal":-190,"manaSteal":4,"rawAttackSpeed":2,"exploding":60,"thunderDamage":10,"earthDefence":-15,"airDefence":12},"base":{"baseThunderDamage":{"min":20,"raw":20,"max":80},"baseAirDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Impeccable Stone Dagger":{"internalName":"Impeccable Stone Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":312,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"assassin"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":140,"raw":140,"max":163}},"rarity":"common"},"Xyloid":{"internalName":"Xyloid","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"strength":35,"intelligence":25},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":27,"raw":90,"max":117},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1850,"baseEarthDefence":60,"baseThunderDefence":-100,"baseWaterDefence":65},"rarity":"unique"},"Earthsky Eclipse":{"internalName":"Earthsky Eclipse","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":80,"strength":40,"agility":40},"powderSlots":3,"identifications":{"rawStrength":10,"rawAgility":5,"healthRegen":{"min":-45,"raw":-35,"max":-24},"lifeSteal":{"min":50,"raw":165,"max":215},"rawAirDamage":{"min":53,"raw":175,"max":228},"walkSpeed":{"min":6,"raw":20,"max":26},"earthDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2000,"baseEarthDefence":100,"baseThunderDefence":-50,"baseAirDefence":100},"rarity":"legendary"},"Traumerei":{"internalName":"Traumerei","type":"armour","armourType":"chestplate","armourColor":"rgb(186,255,231)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":80,"defence":40,"agility":40},"powderSlots":3,"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawAgility":8,"rawElementalSpellDamage":{"min":58,"raw":192,"max":250},"walkSpeed":{"min":6,"raw":19,"max":25},"earthSpellDamage":{"min":6,"raw":19,"max":25},"thunderSpellDamage":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":1350,"baseEarthDefence":-50,"baseThunderDefence":-50},"rarity":"legendary"},"Frostburn":{"internalName":"Frostburn","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":375,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"assassin","intelligence":30,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"spellDamage":12,"healthRegenRaw":-85,"manaRegen":-6,"waterDamage":18,"fireDamage":24},"base":{"baseDamage":{"min":40,"raw":40,"max":40},"baseWaterDamage":{"min":40,"raw":40,"max":60},"baseFireDamage":{"min":30,"raw":30,"max":90}},"rarity":"unique"},"Changeling's Chestplate":{"internalName":"Changeling's Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(109,150,118)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":80,"quest":"General's Orders"},"powderSlots":3,"identifications":{"rawStrength":-1,"rawDexterity":-1,"rawIntelligence":-1,"rawDefence":-1,"rawAgility":-1,"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"rawSpellDamage":{"min":41,"raw":135,"max":176},"healthRegenRaw":{"min":30,"raw":100,"max":130},"walkSpeed":{"min":5,"raw":15,"max":20},"jumpHeight":1,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2150,"baseEarthDefence":55,"baseThunderDefence":55,"baseWaterDefence":55,"baseFireDefence":55,"baseAirDefence":55},"rarity":"rare"},"Reinforced Iron Chestplate":{"internalName":"Reinforced Iron Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80},"powderSlots":3,"base":{"baseHealth":1490},"rarity":"common"},"Tower":{"internalName":"Tower","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":422,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"warrior","defence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawDefence":13,"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":515,"raw":1715,"max":2230},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":200,"raw":200,"max":210}},"rarity":"rare"},"Forge Stoker":{"internalName":"Forge Stoker","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":232,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"mage","defence":25,"agility":35},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawAgility":4,"healthRegenRaw":-55,"lifeSteal":180,"walkSpeed":8,"airDamage":20,"waterDefence":-12,"fireDefence":16},"base":{"baseDamage":{"min":0,"raw":0,"max":15},"baseFireDamage":{"min":35,"raw":35,"max":40},"baseAirDamage":{"min":25,"raw":25,"max":35}},"rarity":"unique"},"Crystal Thorn":{"internalName":"Crystal Thorn","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":258,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"mage","strength":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"manaRegen":{"min":4,"raw":12,"max":16},"thorns":{"min":4,"raw":12,"max":16},"reflection":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":55,"raw":55,"max":75},"baseWaterDamage":{"min":55,"raw":55,"max":65}},"rarity":"rare"},"Impeccable Stone Spear":{"internalName":"Impeccable Stone Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":249,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":280,"raw":280,"max":320}},"rarity":"common"},"Future Shock Plating":{"internalName":"Future Shock Plating","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"dexterity":55,"defence":55,"agility":55},"identifications":{"rawDexterity":5,"raw1stSpellCost":-6,"raw2ndSpellCost":-6,"raw3rdSpellCost":-6,"raw4thSpellCost":-6,"walkSpeed":10,"elementalDefence":-33},"base":{"baseHealth":2100,"baseThunderDefence":-150,"baseFireDefence":-100,"baseAirDefence":-150},"rarity":"rare"},"Sparkling Visor":{"internalName":"Sparkling Visor","type":"armour","armourType":"helmet","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"dexterity":45},"powderSlots":2,"dropMeta":{"name":"The Qira Hive","type":"quest","coordinates":[373,64,-5497]},"identifications":{"spellDamage":20,"manaSteal":12,"reflection":20,"xpBonus":20,"thunderDamage":20,"earthDefence":-25,"thunderDefence":15},"base":{"baseHealth":2000,"baseThunderDefence":125},"rarity":"rare"},"Ring of Wisdom":{"internalName":"Ring of Wisdom","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":80},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawIntelligence":3,"spellDamage":7,"xpBonus":10},"rarity":"unique"},"Tephra":{"internalName":"Tephra","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"strength":25,"defence":20},"powderSlots":2,"identifications":{"rawStrength":7,"rawDefence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":5,"raw":18,"max":23},"thorns":{"min":6,"raw":20,"max":26},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":1875,"baseEarthDefence":90,"baseWaterDefence":-100,"baseFireDefence":90},"rarity":"unique"},"Gert Super Special Magic Ultistick":{"internalName":"Gert Super Special Magic Ultistick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":3,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"mage","quest":"The Hunger of Gerts Part 2"},"lore":"Well...it is a very pretty-looking stick, but aside from that it just appears to be a plain old stick.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"spellDamage":-1},"base":{"baseDamage":{"min":1,"raw":1,"max":3}},"rarity":"legendary"},"Metamorphosis":{"internalName":"Metamorphosis","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":80},"lore":"What you have seen will mark you forever.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":-5,"raw":-4,"max":-3},"manaSteal":{"min":-5,"raw":-4,"max":-3}},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":-100,"baseFireDefence":20,"baseAirDefence":20},"rarity":"fabled"},"Breaker Bar":{"internalName":"Breaker Bar","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":257,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"mage","strength":25,"agility":25},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"rawStrength":8,"rawAgility":8,"walkSpeed":{"min":5,"raw":15,"max":20},"earthDamage":{"min":12,"raw":40,"max":52},"thunderDamage":{"min":-52,"raw":-40,"max":-28},"waterDamage":{"min":-52,"raw":-40,"max":-28},"fireDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":280,"raw":280,"max":340}},"rarity":"unique"},"Impeccable Stone Relik":{"internalName":"Impeccable Stone Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":374,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":243,"raw":243,"max":255}},"rarity":"common"},"Hewa":{"internalName":"Hewa","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":466,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"shaman","agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawDefence":-8,"rawAgility":8,"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":110,"raw":110,"max":140},"baseAirDamage":{"min":172,"raw":172,"max":200}},"rarity":"unique"},"Cosmic Walkers":{"internalName":"Cosmic Walkers","type":"armour","armourType":"boots","armourColor":"rgb(172,162,216)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"quest":"???֎"},"powderSlots":4,"identifications":{"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":1900},"rarity":"set"},"Spring-Coiled Cataphract":{"internalName":"Spring-Coiled Cataphract","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":80,"dexterity":55,"agility":45},"majorIds":{"Pounce":"+Pounce: Escape becomes a forward lunge."},"powderSlots":2,"identifications":{"rawDexterity":10,"manaRegen":{"min":-6,"raw":-5,"max":-3},"jumpHeight":{"min":1,"raw":3,"max":4},"knockback":{"min":8,"raw":25,"max":33},"rawThunderDamage":{"min":61,"raw":204,"max":265}},"base":{"baseHealth":3000,"baseWaterDefence":-100},"rarity":"fabled"},"Thunder Sanctuary":{"internalName":"Thunder Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"dexterity":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDexterity":5,"manaSteal":12,"thunderDamage":90},"base":{"baseEarthDefence":-70,"baseThunderDefence":320},"rarity":"legendary"},"Silver Bay":{"internalName":"Silver Bay","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":422,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"shaman","intelligence":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawHealth":1000,"manaRegen":6,"lootBonus":10,"waterDamage":25,"waterDefence":20},"base":{"baseDamage":{"min":150,"raw":150,"max":160},"baseWaterDamage":{"min":48,"raw":48,"max":52}},"rarity":"unique"},"Rough Diamond":{"internalName":"Rough Diamond","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":80,"strength":20,"intelligence":20},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":2,"mainAttackDamage":5,"spellDamage":6,"xpBonus":7,"airDamage":-6},"rarity":"unique"},"Cosmic Visor":{"internalName":"Cosmic Visor","type":"armour","armourType":"helmet","armourColor":"rgb(172,162,216)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"quest":"???֎"},"powderSlots":4,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":1800},"rarity":"set"},"Reckoning":{"internalName":"Reckoning","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":80,"intelligence":45,"agility":45},"lore":"Come to terms with your godlike judgment.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"manaRegen":{"min":2,"raw":6,"max":8},"2ndSpellCost":{"min":20,"raw":15,"max":11},"walkSpeed":{"min":5,"raw":15,"max":20},"sprint":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":-400,"baseWaterDefence":50,"baseAirDefence":30},"rarity":"fabled"},"Missing":{"internalName":"Missing","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80,"dexterity":40,"defence":40},"identifications":{"rawIntelligence":-23,"lifeSteal":{"min":59,"raw":195,"max":254},"manaSteal":{"min":2,"raw":8,"max":10},"1stSpellCost":{"min":-4,"raw":-14,"max":-18},"3rdSpellCost":{"min":-3,"raw":-11,"max":-14},"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":2500},"rarity":"rare"},"Fulminate Staff":{"internalName":"Fulminate Staff","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":289,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"mage","defence":50},"powderSlots":2,"dropMeta":{"name":"Rodoroc","type":"merchant","coordinates":[1122,13,-5189]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":6,"mainAttackDamage":12,"rawHealth":1000,"exploding":25,"fireDamage":15,"earthDefence":-15},"base":{"baseDamage":{"min":90,"raw":90,"max":120},"baseFireDamage":{"min":80,"raw":80,"max":95}},"rarity":"rare"},"Dragulj Boots":{"internalName":"Dragulj Boots","type":"armour","armourType":"boots","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":80},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"xpBonus":15,"lootBonus":15,"elementalDamage":18,"elementalDefence":18},"base":{"baseHealth":1875},"rarity":"unique"},"Athanasia":{"internalName":"Athanasia","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":80,"defence":55},"lore":"May your triumphs live eternal and never fade.","dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10},"4thSpellCost":{"min":-1,"raw":-5,"max":-6},"raw4thSpellCost":-1},"base":{"baseHealth":725,"baseWaterDefence":50,"baseFireDefence":30,"baseAirDefence":50},"rarity":"fabled"},"Auric":{"internalName":"Auric","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":80},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawMainAttackDamage":{"min":-78,"raw":-60,"max":-42},"rawSpellDamage":{"min":-71,"raw":-55,"max":-38},"healthRegenRaw":{"min":18,"raw":60,"max":78},"lifeSteal":{"min":21,"raw":70,"max":91},"thorns":{"min":3,"raw":9,"max":12},"reflection":{"min":3,"raw":9,"max":12}},"rarity":"rare"},"Sterling Silver":{"internalName":"Sterling Silver","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":80,"dexterity":15,"agility":25},"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawMainAttackDamage":18,"rawSpellDamage":25,"walkSpeed":5,"lootBonus":7,"earthDamage":-7},"rarity":"unique"},"Time Ring":{"internalName":"Time Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"healthRegen":10},"rarity":"set"},"Impeccable Stone Wand":{"internalName":"Impeccable Stone Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":187,"dropRestriction":"normal","requirements":{"level":80,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":110,"raw":110,"max":139}},"rarity":"common"},"Rainbow":{"internalName":"Rainbow","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":80,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"elementalDamage":{"min":-4,"raw":-3,"max":-2}},"base":{"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":30},"rarity":"unique"},"Amulet of Rejuvenation":{"internalName":"Amulet of Rejuvenation","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"quest":"Aldorei^s Secret Part II"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"mainAttackDamage":-500,"rawMainAttackDamage":-10000,"spellDamage":-500,"rawSpellDamage":-10000,"healthRegen":15,"healthRegenRaw":750,"poison":-100000,"walkSpeed":-300},"rarity":"rare"},"Desperate Facsimile":{"internalName":"Desperate Facsimile","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":310,"dropRestriction":"never","requirements":{"level":80,"classRequirement":"warrior","dexterity":70},"majorIds":{"Last Resort":"+Last Resort: Bloodlust has doubled corrupted scaling and knockback, but deals -50% -30%."},"powderSlots":7,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDexterity":13,"rawDamage":{"min":52,"raw":173,"max":225},"healthRegenRaw":{"min":-169,"raw":-130,"max":-91},"1stSpellCost":{"min":17,"raw":13,"max":9},"walkSpeed":{"min":4,"raw":13,"max":17},"sprintRegen":{"min":-17,"raw":-13,"max":-9}},"base":{"baseDamage":{"min":70,"raw":70,"max":95},"baseThunderDamage":{"min":0,"raw":0,"max":35}},"rarity":"fabled"},"Ringlets":{"internalName":"Ringlets","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":80},"powderSlots":5,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"manaRegen":{"min":2,"raw":8,"max":10},"raw4thSpellCost":{"min":-1,"raw":-4,"max":-5},"reflection":{"min":6,"raw":20,"max":26},"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1875,"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":60},"rarity":"unique"},"Dragon Horned Helmet":{"internalName":"Dragon Horned Helmet","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"never","identified":true,"requirements":{"level":80,"defence":45},"powderSlots":3,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"identifications":{"rawDefence":4,"rawMainAttackDamage":205,"rawSpellDamage":160,"reflection":15,"fireDamage":10,"fireDefence":-10},"base":{"baseHealth":1850,"baseEarthDefence":-60,"baseWaterDefence":-60,"baseFireDefence":160},"rarity":"unique"},"Charm of the Light":{"internalName":"Charm of the Light","type":"charm","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80,"levelRange":{"max":100,"min":80}},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"legacy","value":"6:2"},"base":{"leveledXpBonus":{"min":24,"raw":30,"max":35},"damageFromMobs":{"min":9,"raw":30,"max":39}},"rarity":"fabled"},"Tome of Scavenging Expertise II":{"internalName":"Tome of Scavenging Expertise II","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"stealing":{"min":1,"raw":3,"max":4}},"rarity":"fabled"},"Tome of Parrying Expertise II":{"internalName":"Tome of Parrying Expertise II","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"reflection":{"min":3,"raw":10,"max":13}},"rarity":"fabled"},"Tome of Countering Expertise II":{"internalName":"Tome of Countering Expertise II","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"thorns":{"min":3,"raw":10,"max":13}},"rarity":"fabled"},"Tome of Remedial Expertise II":{"internalName":"Tome of Remedial Expertise II","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"healingEfficiency":{"min":2,"raw":5,"max":7}},"rarity":"mythic"},"Tome of Triage Expertise II":{"internalName":"Tome of Triage Expertise II","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Sorcerer's Tome of Combat Mastery II":{"internalName":"Sorcerer's Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Infernal Tome of Combat Mastery II":{"internalName":"Infernal Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":3,"max":4},"fireDamage":{"min":2,"raw":6,"max":8}},"rarity":"mythic"},"Cyclonic Tome of Combat Mastery II":{"internalName":"Cyclonic Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":3,"max":4},"airDamage":{"min":2,"raw":6,"max":8}},"rarity":"mythic"},"Fighter's Tome of Combat Mastery II":{"internalName":"Fighter's Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Voltaic Tome of Combat Mastery II":{"internalName":"Voltaic Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":3,"max":4},"thunderDamage":{"min":2,"raw":6,"max":8}},"rarity":"mythic"},"Esoteric Tome of Combat Mastery II":{"internalName":"Esoteric Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawSpellDamage":{"min":15,"raw":50,"max":65}},"rarity":"fabled"},"Abyssal Tome of Combat Mastery II":{"internalName":"Abyssal Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":3,"max":4},"waterDamage":{"min":2,"raw":6,"max":8}},"rarity":"mythic"},"Seismic Tome of Combat Mastery II":{"internalName":"Seismic Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":3,"max":4},"earthDamage":{"min":2,"raw":6,"max":8}},"rarity":"mythic"},"Nimble Tome of Combat Mastery II":{"internalName":"Nimble Tome of Combat Mastery II","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":80},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawMainAttackDamage":{"min":20,"raw":65,"max":85}},"rarity":"fabled"},"Energetic Aura":{"internalName":"Energetic Aura","type":"ingredient","requirements":{"level":80,"skills":["scribing"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"rawDexterity":{"min":3,"raw":3,"max":7},"lifeSteal":{"min":35,"raw":35,"max":40}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Voltaic Animant","coords":[653,41,-4957,0]},{"name":"Voltaic Animant","coords":[[669,46,-4925,0],[671,46,-4923,0]]}]},"Chromatic Bloom":{"internalName":"Chromatic Bloom","type":"ingredient","requirements":{"level":80,"skills":["jeweling"]},"icon":{"format":"legacy","value":"19:0"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":1},"rawDexterity":{"min":1,"raw":1,"max":1},"rawIntelligence":{"min":1,"raw":1,"max":1},"rawDefence":{"min":1,"raw":1,"max":1},"rawAgility":{"min":1,"raw":1,"max":1},"rawMainAttackDamage":{"min":-45,"raw":-45,"max":-45},"rawSpellDamage":{"min":-45,"raw":-45,"max":-45}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-135000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Chromancer","coords":[[-970,67,-6119,24],[-879,49,-6153,60]]}]},"Bamboo":{"internalName":"Bamboo","type":"ingredient","requirements":{"level":80,"skills":["tailoring","armouring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"mainAttackDamage":{"min":-4,"raw":-4,"max":-1},"spellDamage":{"min":-4,"raw":-4,"max":-1}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Diseased Fluids":{"internalName":"Diseased Fluids","type":"ingredient","requirements":{"level":80,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"poison":{"min":999,"raw":999,"max":1001},"rawHealth":{"min":-357,"raw":-357,"max":-314}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":-13,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Paramite","coords":[-778,50,-6165,35]}]},"Congealed Slime":{"internalName":"Congealed Slime","type":"ingredient","requirements":{"level":80,"skills":["cooking"]},"icon":{"format":"legacy","value":"165:0"},"identifications":{"earthDefence":{"min":6,"raw":6,"max":12},"walkSpeed":{"min":-6,"raw":-6,"max":-4}},"tier":1,"consumableOnlyIDs":{"duration":-350,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Ooze","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]},{"name":"Congealed Blood","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]}]},"Ball of Slime":{"internalName":"Ball of Slime","type":"ingredient","requirements":{"level":80,"skills":["tailoring","weaponsmithing"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"walkSpeed":{"min":-5,"raw":-5,"max":-3},"earthDamage":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Ooze","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]},{"name":"Congealed Blood","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]}]},"Spreading Fireweed":{"internalName":"Spreading Fireweed","type":"ingredient","requirements":{"level":80,"skills":["alchemism"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"gatherXpBonus":{"min":5,"raw":5,"max":6},"rawDefence":{"min":7,"raw":7,"max":8},"fireDefence":{"min":9,"raw":9,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-165,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ellida Whale","coords":null},{"name":"Chromancer","coords":[[-970,67,-6119,24],[-879,49,-6153,60]]},{"name":"Master Regenerator","coords":null},{"name":"Paramite","coords":[-778,50,-6165,35]}]},"Volatile Light":{"internalName":"Volatile Light","type":"ingredient","requirements":{"level":80,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"235:0"},"identifications":{"fireDefence":{"min":12,"raw":12,"max":13},"waterDefence":{"min":10,"raw":10,"max":14},"airDefence":{"min":11,"raw":11,"max":16},"thunderDefence":{"min":7,"raw":7,"max":16},"earthDefence":{"min":10,"raw":10,"max":12},"spellDamage":{"min":-9,"raw":-9,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":7,"dexterityRequirement":7,"intelligenceRequirement":7,"defenceRequirement":7,"agilityRequirement":7},"droppedBy":[{"name":"Chromancer","coords":[[-970,67,-6119,24],[-879,49,-6153,60]]}]},"Magic Feather":{"internalName":"Magic Feather","type":"ingredient","requirements":{"level":80,"skills":["scribing"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"healthRegenRaw":{"min":16,"raw":16,"max":20}},"tier":0,"consumableOnlyIDs":{"duration":-84,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lesser Phoenix","coords":[[151,50,-5181,40],[151,50,-5181,40],[151,50,-5181,40],[151,50,-5181,40],[237,41,-5172,15],[237,41,-5172,15],[261,73,-5100,5],[76,43,-5150,15],[76,43,-5150,15],[76,43,-5150,15],[75,43,-5188,15],[75,43,-5188,15],[75,43,-5188,15],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[78,43,-5233,20],[167,70,-5265,15],[230,75,-5118,10],[230,75,-5118,10],[230,75,-5118,10],[218,84,-5216,20],[218,84,-5216,20],[218,84,-5216,20],[245,75,-5386,10],[273,77,-5357,0],[402,29,-5217,15],[382,31,-5165,10],[353,31,-5142,25],[314,30,-5122,15]]}]},"Major's Badge":{"internalName":"Major's Badge","type":"ingredient","requirements":{"level":80,"skills":["armouring","tailoring","weaponsmithing","woodworking","jeweling","alchemism"]},"icon":{"format":"legacy","value":"175:0"},"tier":3,"consumableOnlyIDs":{"duration":-300,"charges":0},"ingredientPositionModifiers":{"left":-15,"right":-180,"above":-110,"under":-20,"touching":35,"notTouching":-30},"itemOnlyIDs":{"durabilityModifier":-175000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Major","coords":[106,44,-5371,50]},{"name":"Thesead Marshal","coords":[841,101,-5057,15]}]},"Lotus Seedpod":{"internalName":"Lotus Seedpod","type":"ingredient","requirements":{"level":80,"skills":["woodworking","jeweling","cooking"]},"icon":{"format":"legacy","value":"282:0"},"identifications":{"healthRegen":{"min":6,"raw":6,"max":8},"healthRegenRaw":{"min":-15,"raw":-15,"max":-13}},"tier":1,"consumableOnlyIDs":{"duration":-340,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lotus Core","coords":[-931,65,-6190,1]},{"name":"Lotus Germinator","coords":null}]},"Transformativity":{"internalName":"Transformativity","type":"ingredient","requirements":{"level":80,"skills":["armouring"]},"icon":{"format":"legacy","value":"251:15"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-25,"notTouching":-25},"itemOnlyIDs":{"durabilityModifier":-140000,"strengthRequirement":-25,"dexterityRequirement":-25,"intelligenceRequirement":-25,"defenceRequirement":-25,"agilityRequirement":-25},"droppedBy":[{"name":"§kTaga Soihf A Lin","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]}]},"Azure Blossom":{"internalName":"Azure Blossom","type":"ingredient","requirements":{"level":80,"skills":["woodworking"]},"icon":{"format":"legacy","value":"246:0"},"identifications":{"healingEfficiency":{"min":13,"raw":13,"max":13},"manaRegen":{"min":6,"raw":6,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-135000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Blue Antifloret","coords":[-777,89,-6064,0]}]},"Coagulated Blood Gelatin":{"internalName":"Coagulated Blood Gelatin","type":"ingredient","requirements":{"level":80,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"249:0"},"identifications":{"healingEfficiency":{"min":-3,"raw":-3,"max":-3},"rawHealth":{"min":425,"raw":425,"max":475}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":-10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Ooze","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]},{"name":"Congealed Blood","coords":[[613,31,-4987,5],[640,25,-4808,8],[630,27,-4822,8],[633,27,-4783,5]]}]},"Bass Oil 1":{"internalName":"Refined Bass Oil 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilBass"}},"tier":1},"Bass Meat 2":{"internalName":"Refined Bass Meat 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatBass"}},"tier":2},"Pine Wood 2":{"internalName":"Refined Pine Wood 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"453e41af269ac4e57dfa86ac88d6294a52356a49b647d565867e8217ecd2afa9"},"tier":2},"Bass Meat 1":{"internalName":"Refined Bass Meat 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatBass"}},"tier":1},"Diamond Gem 3":{"internalName":"Refined Diamond Gem 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"71","name":"profession.gemDiamond"}},"tier":3},"Pine Wood 3":{"internalName":"Refined Pine Wood 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"453e41af269ac4e57dfa86ac88d6294a52356a49b647d565867e8217ecd2afa9"},"tier":3},"Pine Paper 2":{"internalName":"Refined Pine Paper 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperPine"}},"tier":2},"Rice Grains 3":{"internalName":"Refined Rice Grains 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRice"}},"tier":3},"Bass Oil 3":{"internalName":"Refined Bass Oil 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilBass"}},"tier":3},"Rice String 1":{"internalName":"Refined Rice String 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRice"}},"tier":1},"Pine Wood 1":{"internalName":"Refined Pine Wood 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"453e41af269ac4e57dfa86ac88d6294a52356a49b647d565867e8217ecd2afa9"},"tier":1},"Pine Paper 1":{"internalName":"Refined Pine Paper 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperPine"}},"tier":1},"Rice Grains 2":{"internalName":"Refined Rice Grains 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRice"}},"tier":2},"Diamond Ingot 1":{"internalName":"Refined Diamond Ingot 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"59","name":"profession.ingotDiamond"}},"tier":1},"Rice String 2":{"internalName":"Refined Rice String 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRice"}},"tier":2},"Rice String 3":{"internalName":"Refined Rice String 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRice"}},"tier":3},"Bass Oil 2":{"internalName":"Refined Bass Oil 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilBass"}},"tier":2},"Diamond Gem 2":{"internalName":"Refined Diamond Gem 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"71","name":"profession.gemDiamond"}},"tier":2},"Rice Grains 1":{"internalName":"Refined Rice Grains 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRice"}},"tier":1},"Pine Paper 3":{"internalName":"Refined Pine Paper 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperPine"}},"tier":3},"Diamond Gem 1":{"internalName":"Refined Diamond Gem 1","type":"material","identified":true,"requirements":{"level":80},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"71","name":"profession.gemDiamond"}},"tier":1},"Diamond Ingot 2":{"internalName":"Refined Diamond Ingot 2","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"59","name":"profession.ingotDiamond"}},"tier":2},"Bass Meat 3":{"internalName":"Refined Bass Meat 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"96","name":"profession.meatBass"}},"tier":3},"Diamond Ingot 3":{"internalName":"Refined Diamond Ingot 3","type":"material","identified":true,"requirements":{"level":80},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"59","name":"profession.ingotDiamond"}},"tier":3},"Metal Breaker":{"internalName":"Metal Breaker","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":519,"dropRestriction":"never","identified":true,"requirements":{"level":80,"classRequirement":"archer","strength":40},"powderSlots":2,"dropMeta":{"name":"Thanos","type":"merchant","coordinates":[167,10,-5241]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":10,"rawDefence":-6,"mainAttackDamage":40,"manaSteal":8,"walkSpeed":-12,"exploding":25},"base":{"baseDamage":{"min":300,"raw":300,"max":320},"baseEarthDamage":{"min":270,"raw":270,"max":360}},"rarity":"unique"},"Fire Sanctuary":{"internalName":"Fire Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"defence":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDefence":5,"healthRegenRaw":165,"fireDamage":90},"base":{"baseWaterDefence":-100,"baseFireDefence":350},"rarity":"legendary"},"Rainbow Sanctuary":{"internalName":"Rainbow Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"strength":40,"dexterity":40,"intelligence":40,"defence":40,"agility":40},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"elementalDamage":90},"base":{"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"legendary"},"Water Sanctuary":{"internalName":"Water Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"intelligence":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawIntelligence":5,"manaRegen":15,"waterDamage":90},"base":{"baseThunderDefence":-90,"baseWaterDefence":340},"rarity":"legendary"},"Air Sanctuary":{"internalName":"Air Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"agility":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawAgility":5,"walkSpeed":25,"airDamage":90},"base":{"baseFireDefence":-50,"baseAirDefence":300},"rarity":"legendary"},"Earth Sanctuary":{"internalName":"Earth Sanctuary","type":"armour","armourType":"leggings","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"strength":70},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawStrength":5,"mainAttackDamage":30,"earthDamage":90},"base":{"baseEarthDefence":330,"baseAirDefence":-80},"rarity":"legendary"},"Arctic Vixen's Pelt":{"internalName":"Arctic Vixen's Pelt","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":80,"defence":40,"agility":40},"powderSlots":2,"identifications":{"rawIntelligence":-8,"healthRegenRaw":130,"4thSpellCost":-16,"walkSpeed":15,"rawMaxMana":-25,"fireDamage":15,"airDamage":10},"base":{"baseHealth":2500,"baseWaterDefence":-65,"baseFireDefence":100,"baseAirDefence":100},"rarity":"rare"},"Gale's Sight":{"internalName":"Gale's Sight","type":"armour","armourType":"helmet","armourMaterial":"diamond","dropRestriction":"dungeon","requirements":{"level":80,"agility":60},"powderSlots":1,"lore":"True to their promise, these goggles were left as a memento for Ohms when his lover Gale finally died. Light as air, Gale's carefree nature lends itself to those who don them.","identifications":{"rawDexterity":7,"rawAgility":10,"raw2ndSpellCost":{"min":-3,"raw":-9,"max":-12},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":6,"raw":20,"max":26},"jumpHeight":{"min":1,"raw":2,"max":3},"xpBonus":{"min":9,"raw":30,"max":39},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2000,"baseThunderDefence":140,"baseFireDefence":-140,"baseAirDefence":210},"rarity":"legendary"},"Gert Whooshy Bonkpole":{"internalName":"Gert Wand","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":360,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"classRequirement":"mage","quest":"The Hunger of Gerts Part 2","strength":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"mainAttackDamage":30,"spellDamage":-45,"healingEfficiency":-10,"walkSpeed":7,"airDamage":30},"base":{"baseDamage":{"min":140,"raw":140,"max":340}},"rarity":"legendary"},"Dragon Slayer":{"internalName":"Dragon Slayer","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":324,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"warrior","defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawHealth":{"min":150,"raw":500,"max":650},"xpBonus":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":65,"raw":65,"max":80},"baseFireDamage":{"min":60,"raw":60,"max":70},"baseAirDamage":{"min":15,"raw":15,"max":25}},"rarity":"unique"},"Balloon's Bane":{"internalName":"Balloon's Bane","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":307,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"warrior","defence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":5,"spellDamage":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":35,"raw":115,"max":150},"exploding":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":9,"max":12},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":100,"raw":100,"max":120},"baseFireDamage":{"min":200,"raw":200,"max":320}},"rarity":"unique"},"Slipstream":{"internalName":"Slipstream","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"agility":60},"identifications":{"rawAgility":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":5,"raw":15,"max":20},"exploding":{"min":-39,"raw":-30,"max":-21},"lootBonus":{"min":6,"raw":20,"max":26},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1800,"baseAirDefence":50},"rarity":"rare"},"Broken Gauntlet":{"internalName":"Broken Gauntlet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":79,"strength":15,"defence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":410,"baseWaterDefence":-25,"baseAirDefence":-25},"rarity":"unique"},"Marshmallow":{"internalName":"Marshmallow","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"agility":40},"powderSlots":2,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"identifications":{"mainAttackDamage":-25,"spellDamage":-15,"healthRegenRaw":125,"xpBonus":20,"fireDamage":10},"base":{"baseHealth":2650,"baseEarthDefence":120,"baseThunderDefence":120,"baseWaterDefence":120,"baseFireDefence":120,"baseAirDefence":120},"rarity":"rare"},"Gridlock":{"internalName":"Gridlock","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"archer","dexterity":25,"intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseThunderDamage":{"min":30,"raw":30,"max":150},"baseWaterDamage":{"min":80,"raw":80,"max":100}},"rarity":"unique"},"Zephyr":{"internalName":"Zephyr","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":439,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"assassin","agility":90},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":10,"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":3,"raw":11,"max":14},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":18,"max":23}},"base":{"baseAirDamage":{"min":0,"raw":0,"max":204}},"rarity":"unique"},"Sturdy":{"internalName":"Sturdy","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"strength":40,"defence":40},"powderSlots":4,"identifications":{"rawDefence":7,"spellDamage":{"min":-10,"raw":-8,"max":-6},"rawHealth":{"min":180,"raw":600,"max":780},"xpBonus":{"min":3,"raw":9,"max":12},"earthDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":1800,"baseEarthDefence":40,"baseFireDefence":40},"rarity":"unique"},"Puff":{"internalName":"Puff","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":79},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseAirDefence":50},"rarity":"rare"},"Aura of Element":{"internalName":"Aura of Element","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"strength":25,"dexterity":25,"intelligence":25,"defence":25,"agility":25},"powderSlots":5,"identifications":{"1stSpellCost":{"min":-2,"raw":-8,"max":-10},"2ndSpellCost":{"min":-2,"raw":-8,"max":-10},"3rdSpellCost":{"min":-2,"raw":-8,"max":-10},"4thSpellCost":{"min":-2,"raw":-8,"max":-10},"xpBonus":{"min":6,"raw":20,"max":26},"elementalDamage":{"min":12,"raw":40,"max":52}},"base":{"baseEarthDefence":90,"baseThunderDefence":90,"baseWaterDefence":90,"baseFireDefence":90,"baseAirDefence":90},"rarity":"unique"},"Bard's Song":{"internalName":"Bard's Song","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":230,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"mage","intelligence":45,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":{"min":-14,"raw":-11,"max":-8},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healingEfficiency":{"min":2,"raw":8,"max":10},"reflection":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":6,"raw":19,"max":25},"airDamage":{"min":6,"raw":19,"max":25}},"base":{"baseWaterDamage":{"min":23,"raw":23,"max":69},"baseAirDamage":{"min":23,"raw":23,"max":69}},"rarity":"unique"},"Breakbeat":{"internalName":"Breakbeat","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"agility":55},"identifications":{"rawMainAttackDamage":{"min":36,"raw":120,"max":156},"spellDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1800,"baseEarthDefence":-20,"baseThunderDefence":-20,"baseWaterDefence":-20,"baseFireDefence":-40},"rarity":"unique"},"Gert Shootstick Tossflinger":{"internalName":"Gert Bow","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":790,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"classRequirement":"archer","quest":"The Hunger of Gerts Part 2","strength":70},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"identifications":{"mainAttackDamage":30,"rawMainAttackDamage":710,"spellDamage":-60,"rawAttackSpeed":-1},"base":{"baseDamage":{"min":1350,"raw":1350,"max":1750}},"rarity":"legendary"},"Rinkaku":{"internalName":"Rinkaku","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"dexterity":40,"defence":55},"powderSlots":3,"identifications":{"rawDefence":8,"spellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":-520,"raw":-400,"max":-280},"lifeSteal":{"min":33,"raw":110,"max":143},"thunderDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":2000,"baseThunderDefence":80,"baseFireDefence":80},"rarity":"unique"},"Winterspell":{"internalName":"Winterspell","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":446,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":-3,"spellDamage":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":5,"max":7},"waterDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":120,"raw":120,"max":200},"baseAirDamage":{"min":110,"raw":110,"max":165}},"rarity":"unique"},"Momentum":{"internalName":"Momentum","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":79,"strength":50},"lore":"This golden cuff has an odd time dilation effect surrounding it, slowing all movements significantly, but multiplying the force of impact to a significant degree.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"rawStrength":5,"rawDexterity":3,"rawMainAttackDamage":{"min":83,"raw":275,"max":358},"manaSteal":{"min":1,"raw":4,"max":5},"rawAttackSpeed":-1,"walkSpeed":{"min":-10,"raw":-8,"max":-6}},"rarity":"legendary"},"Hollow Virtue":{"internalName":"Hollow Virtue","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":79,"dexterity":55,"intelligence":40},"identifications":{"rawDexterity":7,"rawIntelligence":7,"spellDamage":{"min":7,"raw":23,"max":30},"rawThunderSpellDamage":{"min":46,"raw":154,"max":200},"healthRegen":{"min":-91,"raw":-70,"max":-49},"lifeSteal":{"min":-260,"raw":-200,"max":-140},"healingEfficiency":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2500,"baseThunderDefence":70,"baseWaterDefence":70},"rarity":"legendary"},"Endurance":{"internalName":"Endurance","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":20,"raw":65,"max":85},"healingEfficiency":{"min":4,"raw":12,"max":16},"thorns":{"min":20,"raw":65,"max":85},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2050,"baseWaterDefence":-150},"rarity":"rare"},"Empire Builder":{"internalName":"Empire Builder","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":144,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"mage"},"powderSlots":8,"lore":"This golden staff was recovered from deep within the tombs of Almuj. Nothing else was found in the room except the words 'Beware the user with unlimited imagination.'","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":6,"rawDexterity":6,"rawIntelligence":6,"rawDefence":6,"rawAgility":6},"base":{"baseDamage":{"min":50,"raw":50,"max":65}},"rarity":"legendary"},"Roulette":{"internalName":"Roulette","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"assassin","dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawDexterity":8,"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":266,"raw":888,"max":1154}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":58}},"rarity":"rare"},"Reinforced Iron Leggings":{"internalName":"Reinforced Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79},"powderSlots":3,"base":{"baseHealth":1450},"rarity":"common"},"Caledonia":{"internalName":"Caledonia","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":440,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"archer","defence":90},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawDefence":9,"mainAttackDamage":{"min":-14,"raw":-11,"max":-8},"spellDamage":{"min":-14,"raw":-11,"max":-8},"healthRegenRaw":{"min":38,"raw":125,"max":163},"rawHealth":{"min":248,"raw":825,"max":1073},"xpBonus":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":200,"raw":200,"max":455},"baseFireDamage":{"min":180,"raw":180,"max":225}},"rarity":"rare"},"Black Sheep":{"internalName":"Black Sheep","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"strength":50},"powderSlots":2,"identifications":{"walkSpeed":{"min":6,"raw":20,"max":26},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1800},"rarity":"unique"},"Pristine Antiquity":{"internalName":"Pristine Antiquity","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":79,"intelligence":50,"defence":50,"agility":50},"majorIds":{"Divine Honor":"+Divine Honor: Increases the bonus from Radiance by 10%. Bash deals -15% per hit."},"powderSlots":4,"identifications":{"rawStrength":-7,"rawDexterity":-7,"rawIntelligence":7,"rawDefence":7,"rawAgility":7,"healthRegenRaw":{"min":46,"raw":153,"max":199},"1stSpellCost":{"min":20,"raw":15,"max":11},"reflection":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":3400,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"fabled"},"Rust":{"internalName":"Rust","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"defence":55},"powderSlots":1,"identifications":{"rawDexterity":9,"poison":{"min":669,"raw":2230,"max":2899},"reflection":{"min":-30,"raw":-23,"max":-16},"earthDamage":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2450,"baseWaterDefence":-60,"baseAirDefence":-60},"rarity":"rare"},"Gert Rock Smashbanger":{"internalName":"Gert Hammer","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":415,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"classRequirement":"warrior","quest":"The Hunger of Gerts Part 2","strength":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"467","name":"spear.earth3"}},"identifications":{"rawStrength":5,"healthRegen":-30,"earthDamage":65},"base":{"baseDamage":{"min":450,"raw":450,"max":550}},"rarity":"legendary"},"Fever Dream":{"internalName":"Fever Dream","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":503,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"shaman","defence":35,"agility":35},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"mainAttackDamage":{"min":8,"raw":28,"max":36},"spellDamage":{"min":8,"raw":28,"max":36},"manaRegen":{"min":-8,"raw":-6,"max":-4},"waterDefence":{"min":-43,"raw":-33,"max":-23},"fireDefence":{"min":-34,"raw":-26,"max":-18},"airDefence":{"min":-34,"raw":-26,"max":-18}},"base":{"baseDamage":{"min":39,"raw":39,"max":39},"baseFireDamage":{"min":39,"raw":39,"max":39},"baseAirDamage":{"min":39,"raw":39,"max":39}},"rarity":"unique"},"The Prisoner":{"internalName":"The Prisoner","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"strength":55},"powderSlots":2,"identifications":{"rawDefence":17,"rawAgility":-10,"rawHealth":{"min":485,"raw":1615,"max":2100},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":2100},"rarity":"rare"},"Leggings of Haste":{"internalName":"Leggings of Haste","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"agility":80},"powderSlots":3,"identifications":{"rawMainAttackDamage":{"min":36,"raw":120,"max":156},"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseHealth":1500,"baseAirDefence":60},"rarity":"unique"},"Waking Nightmare":{"internalName":"Waking Nightmare","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":531,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"shaman","strength":27,"agility":27},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-1410,"raw":-1085,"max":-759},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"earthDamage":{"min":5,"raw":18,"max":23},"waterDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":5,"raw":18,"max":23},"fireDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":30,"raw":30,"max":38},"baseEarthDamage":{"min":140,"raw":140,"max":180},"baseAirDamage":{"min":140,"raw":140,"max":180}},"rarity":"unique"},"Gert Swingpoke Cuttyrock":{"internalName":"Gert Knife","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":525,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"classRequirement":"assassin","quest":"The Hunger of Gerts Part 2","strength":30,"dexterity":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"poison":4000,"manaRegen":-12,"rawAttackSpeed":1,"thunderDamage":20},"base":{"baseDamage":{"min":22,"raw":22,"max":222}},"rarity":"legendary"},"Gert Bangswing Manypointystick":{"internalName":"Gert Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":1148,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":79,"classRequirement":"shaman","strength":55,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawMainAttackDamage":410,"spellDamage":-300,"manaSteal":8,"rawAttackSpeed":-1,"xpBonus":6,"earthDamage":20},"base":{"baseDamage":{"min":650,"raw":650,"max":880}},"rarity":"legendary"},"Mvuke":{"internalName":"Mvuke","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":415,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"shaman","defence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawIntelligence":-8,"rawDefence":8,"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-39,"raw":-30,"max":-21},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":50,"raw":50,"max":72},"baseFireDamage":{"min":90,"raw":90,"max":120}},"rarity":"unique"},"Toxin":{"internalName":"Toxin","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":79,"strength":40,"dexterity":40},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":9,"max":12},"healthRegen":{"min":-13,"raw":-10,"max":-7},"healthRegenRaw":{"min":-78,"raw":-60,"max":-42},"poison":{"min":675,"raw":2250,"max":2925},"earthDamage":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":3,"raw":9,"max":12},"airDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseHealth":2000,"baseEarthDefence":60,"baseThunderDefence":60,"baseAirDefence":-80},"rarity":"rare"},"Double Vision":{"internalName":"Double Vision","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":79,"quest":"Realm of Light V - The Realm of Light"},"majorIds":{"Lightweight":"+Lightweight: You no longer take fall damage."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawAgility":3,"walkSpeed":{"min":3,"raw":11,"max":14},"sprint":{"min":3,"raw":11,"max":14},"sprintRegen":{"min":3,"raw":11,"max":14},"jumpHeight":{"min":1,"raw":3,"max":4},"xpBonus":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":-750,"baseAirDefence":-50},"rarity":"fabled"},"Tenuto":{"internalName":"Tenuto","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":79,"dexterity":40,"defence":40},"lore":"This strange pendant has been known to dilate time around the wearer, slowing their movements while greatly augmenting their power.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"rawDexterity":4,"rawDefence":4,"spellDamage":{"min":4,"raw":12,"max":16},"rawAttackSpeed":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":350,"baseThunderDefence":30,"baseWaterDefence":-50,"baseFireDefence":30},"rarity":"legendary"},"Firestorm Bellows":{"internalName":"Firestorm Bellows","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":625,"dropRestriction":"normal","requirements":{"level":79,"classRequirement":"archer","defence":50,"agility":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"193","name":"bow.air3"}},"identifications":{"rawIntelligence":-8,"mainAttackDamage":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":-162,"raw":-125,"max":-87},"rawHealth":{"min":225,"raw":750,"max":975},"walkSpeed":{"min":6,"raw":20,"max":26},"exploding":{"min":9,"raw":30,"max":39},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-43,"raw":-33,"max":-23}},"base":{"baseDamage":{"min":45,"raw":45,"max":95},"baseFireDamage":{"min":45,"raw":45,"max":135},"baseAirDamage":{"min":45,"raw":45,"max":135}},"rarity":"legendary"},"Lecade's Rank":{"internalName":"Lecade's Rank","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":79},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":550},"rarity":"rare"},"Ritual Catalyst":{"internalName":"Ritual Catalyst","type":"ingredient","requirements":{"level":79,"skills":["woodworking","weaponsmithing","tailoring"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"rawAttackSpeed":{"min":-1,"raw":-1,"max":-1},"earthSpellDamage":{"min":-10,"raw":-10,"max":-8},"spellDamage":{"min":10,"raw":10,"max":12},"manaSteal":{"min":8,"raw":8,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-149000,"strengthRequirement":-55,"dexterityRequirement":0,"intelligenceRequirement":55,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]},{"name":"Dark Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Shadowy Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Peculiar Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Decay Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Sinking Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Kandrekk Spiritbinder","coords":[-929,78,-5554,24]},{"name":"Blackened Soul","coords":[-929,78,-5554,24]}]},"Giant Petal":{"internalName":"Giant Petal","type":"ingredient","requirements":{"level":79,"skills":["alchemism","scribing","cooking"]},"icon":{"format":"legacy","value":"175:4"},"identifications":{"gatherSpeed":{"min":3,"raw":3,"max":3},"walkSpeed":{"min":3,"raw":3,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Plasma Shear":{"internalName":"Plasma Shear","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":430,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"assassin","dexterity":20,"defence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDexterity":9,"rawSpellDamage":{"min":37,"raw":122,"max":159},"waterDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":4,"raw":12,"max":16},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseThunderDamage":{"min":22,"raw":22,"max":70},"baseFireDamage":{"min":48,"raw":48,"max":60}},"rarity":"unique"},"Determination":{"internalName":"Determination","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":-39,"raw":-30,"max":-21},"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":36,"raw":120,"max":156}},"base":{"baseHealth":1750,"baseEarthDefence":75,"baseThunderDefence":75,"baseWaterDefence":75,"baseFireDefence":75,"baseAirDefence":75},"rarity":"rare"},"Terraflux":{"internalName":"Terraflux","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"strength":50},"powderSlots":2,"identifications":{"rawStrength":7,"rawIntelligence":-5,"mainAttackDamage":{"min":4,"raw":13,"max":17},"spellDamage":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":23,"raw":75,"max":98},"manaRegen":{"min":-8,"raw":-6,"max":-4},"earthDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1600,"baseEarthDefence":80,"baseWaterDefence":-80},"rarity":"unique"},"Impeccable Oak Relik":{"internalName":"Impeccable Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":367,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":175,"raw":175,"max":181}},"rarity":"common"},"Gert Bumpstump Legcovercloth":{"internalName":"Gert Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":78,"quest":"The Hunger of Gerts Part 1","strength":25,"agility":25},"powderSlots":3,"identifications":{"rawStrength":4,"rawAgility":4,"mainAttackDamage":8,"spellDamage":-20},"base":{"baseHealth":2000,"baseEarthDefence":70,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":70},"rarity":"rare"},"Gert Shakestomper Toefeet":{"internalName":"Gert Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":78,"quest":"The Hunger of Gerts Part 1","strength":60},"identifications":{"mainAttackDamage":50,"rawMainAttackDamage":300,"rawAttackSpeed":-1,"walkSpeed":-15,"exploding":40},"base":{"baseHealth":1800,"baseEarthDefence":70,"baseAirDefence":-80},"rarity":"rare"},"Faith Healer":{"internalName":"Faith Healer","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"intelligence":40,"agility":40},"powderSlots":2,"identifications":{"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":23,"raw":75,"max":98},"damage":{"min":-16,"raw":-12,"max":-8},"healingEfficiency":{"min":3,"raw":9,"max":12},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1750,"baseWaterDefence":65,"baseAirDefence":65},"rarity":"unique"},"Shade of Night":{"internalName":"Shade of Night","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":303,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"warrior","agility":50},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":4,"raw":13,"max":17},"waterDamage":{"min":4,"raw":13,"max":17},"earthDefence":{"min":-34,"raw":-26,"max":-18},"fireDefence":{"min":-34,"raw":-26,"max":-18},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseAirDamage":{"min":41,"raw":41,"max":100}},"rarity":"unique"},"Panic Attack":{"internalName":"Panic Attack","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":78,"strength":25,"dexterity":30},"majorIds":{"Freerunner":"+Freerunner: When your sprint bar is under 30% full, increase your sprint speed by +150%."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawStrength":2,"rawDexterity":3,"lifeSteal":{"min":32,"raw":105,"max":137},"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":-400},"rarity":"fabled"},"Reinforced Iron Boots":{"internalName":"Reinforced Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78},"powderSlots":3,"base":{"baseHealth":1405},"rarity":"common"},"Saltine":{"internalName":"Saltine","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":425,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"assassin","dexterity":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDexterity":5,"rawAgility":5,"rawHealth":{"min":-520,"raw":-400,"max":-280},"walkSpeed":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":5,"raw":16,"max":21},"airDamage":{"min":5,"raw":16,"max":21},"earthDefence":{"min":-21,"raw":-16,"max":-11}},"base":{"baseDamage":{"min":35,"raw":35,"max":45},"baseThunderDamage":{"min":40,"raw":40,"max":90},"baseAirDamage":{"min":60,"raw":60,"max":70}},"rarity":"rare"},"Impeccable Oak Dagger":{"internalName":"Impeccable Oak Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":296,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":107,"raw":107,"max":130}},"rarity":"common"},"Impeccable Oak Wand":{"internalName":"Impeccable Oak Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":183,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":80,"raw":80,"max":98}},"rarity":"common"},"Manaflux":{"internalName":"Manaflux","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"intelligence":50},"powderSlots":2,"identifications":{"rawStrength":-5,"rawIntelligence":7,"mainAttackDamage":{"min":-17,"raw":-13,"max":-9},"spellDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":-97,"raw":-75,"max":-52},"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1600,"baseEarthDefence":-80,"baseWaterDefence":80},"rarity":"unique"},"Sight of the Druid":{"internalName":"Sight of the Druid","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":424,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"archer","strength":35,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"poison":{"min":945,"raw":3150,"max":4095},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":155,"raw":155,"max":200},"baseEarthDamage":{"min":90,"raw":90,"max":120}},"rarity":"unique"},"Griffin":{"internalName":"Griffin","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":231,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"mage","intelligence":60,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":5,"raw":15,"max":20},"waterDamage":{"min":6,"raw":19,"max":25},"fireDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseAirDamage":{"min":40,"raw":40,"max":75}},"rarity":"rare"},"Genesis":{"internalName":"Genesis","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":2,"identifications":{"healthRegen":{"min":11,"raw":35,"max":46},"healthRegenRaw":{"min":42,"raw":140,"max":182},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2000,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"legendary"},"Gnarl":{"internalName":"Gnarl","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":228,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"mage","strength":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-10,"raw":-8,"max":-6},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":100,"raw":100,"max":125},"baseEarthDamage":{"min":150,"raw":150,"max":175}},"rarity":"unique"},"Coba":{"internalName":"Coba","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"dexterity":45,"defence":40},"powderSlots":3,"identifications":{"rawDexterity":4,"spellDamage":{"min":2,"raw":7,"max":9},"rawHealth":{"min":-195,"raw":-150,"max":-105},"lifeSteal":{"min":38,"raw":125,"max":163},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1700,"baseEarthDefence":-100,"baseThunderDefence":80,"baseWaterDefence":-70,"baseFireDefence":80},"rarity":"unique"},"Impeccable Oak Spear":{"internalName":"Impeccable Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":243,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":149,"raw":149,"max":175}},"rarity":"common"},"Kaerynn's Mind":{"internalName":"Kaerynn's Mind","type":"armour","armourType":"helmet","armourColor":"rgb(0,153,0)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":78,"quest":"Aldorei's Secret Part II","intelligence":45},"powderSlots":2,"identifications":{"healthRegen":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2075,"baseWaterDefence":120,"baseFireDefence":-50},"rarity":"set"},"Conspirator's Trickpockets":{"internalName":"Conspirator's Trickpockets","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"agility":65},"majorIds":{"Cherry Bombs":"+Cherry Bombs: Turn Smoke Bomb into firecrackers that fly farther, tighter, and deal high damage instantly."},"lore":"No reign lasts forever. Not while your schemes remain unnoticed.","identifications":{"rawSpellDamage":{"min":51,"raw":170,"max":221},"lifeSteal":{"min":54,"raw":180,"max":234},"manaSteal":{"min":2,"raw":6,"max":8},"sprintRegen":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":5,"max":7},"elementalDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":2550,"baseEarthDefence":-90,"baseFireDefence":-90},"rarity":"fabled"},"Gospel":{"internalName":"Gospel","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":78,"agility":20},"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Scale of Seiryu":{"internalName":"Scale of Sieryu","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"agility":100},"identifications":{"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"spellDamage":{"min":-195,"raw":-150,"max":-105},"manaRegen":{"min":7,"raw":24,"max":31},"rawAttackSpeed":1,"walkSpeed":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":1500,"baseAirDefence":50},"rarity":"rare"},"Frontier":{"internalName":"Frontier","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":456,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"shaman","strength":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":240,"raw":800,"max":1040},"thorns":{"min":3,"raw":10,"max":13},"earthDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":363,"raw":363,"max":369},"baseEarthDamage":{"min":182,"raw":182,"max":184}},"rarity":"unique"},"Angel Robe":{"internalName":"Angel Robe","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"agility":40},"powderSlots":1,"identifications":{"rawAgility":7,"reflection":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":5,"max":7},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1450,"baseEarthDefence":-20,"baseThunderDefence":20,"baseFireDefence":-60,"baseAirDefence":80},"rarity":"unique"},"Gerten Ritual Mask":{"internalName":"Gerten Ritual Mask","type":"armour","armourType":"helmet","dropRestriction":"never","requirements":{"level":78,"quest":"The Hunger of Gerts Part 2"},"powderSlots":1,"icon":{"format":"skin","value":"73c21b3caf8a6eab7d181734a430db521b1db833c8987dde241180231e47826"},"identifications":{"rawStrength":7,"rawMainAttackDamage":{"min":54,"raw":180,"max":234},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":6,"raw":20,"max":26},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1800,"baseEarthDefence":100,"baseAirDefence":-60},"rarity":"rare"},"Soldier":{"internalName":"Soldier","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":78},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawStrength":3,"rawDefence":3},"base":{"baseHealth":260},"rarity":"unique"},"Gert Veryhard Chestclothes":{"internalName":"Reinforced Gert Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":78,"quest":"The Hunger of Gerts Part 1","defence":40},"powderSlots":2,"identifications":{"rawDefence":6,"mainAttackDamage":12,"spellDamage":-15,"earthDamage":15},"base":{"baseHealth":2425,"baseWaterDefence":-70,"baseFireDefence":110},"rarity":"rare"},"Corrupted Nii Mukluk":{"internalName":"Corrupted Nii Mukluk","type":"armour","armourType":"boots","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":78,"defence":65},"powderSlots":2,"dropMeta":{"name":"Corrupted Lost Sanctuary","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawDefence":10,"fireDamage":20,"fireDefence":10},"base":{"baseHealth":2275,"baseThunderDefence":-50,"baseFireDefence":100},"rarity":"set"},"Cnidocyte":{"internalName":"Cnidocyte","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"strength":45,"intelligence":25},"powderSlots":2,"identifications":{"rawStrength":7,"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":2,"raw":6,"max":8},"healthRegen":{"min":-21,"raw":-16,"max":-11},"poison":{"min":567,"raw":1890,"max":2457},"thorns":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1600,"baseEarthDefence":90,"baseThunderDefence":-80,"baseWaterDefence":70,"baseAirDefence":-80},"rarity":"unique"},"Blade of Purity":{"internalName":"Blade of Purity","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":500,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"warrior"},"lore":"The creator of this polished white blade insists that its true power will never be unlocked, for only those who are not influenced by the elements of the world know truly how to utilize it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"neutralMainAttackDamage":{"min":5,"raw":15,"max":20},"rawNeutralMainAttackDamage":{"min":50,"raw":165,"max":215},"neutralSpellDamage":{"min":5,"raw":15,"max":20},"rawNeutralSpellDamage":{"min":48,"raw":160,"max":208},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":6,"raw":20,"max":26},"elementalDamage":{"min":-195,"raw":-150,"max":-105}},"base":{"baseDamage":{"min":175,"raw":175,"max":225}},"rarity":"legendary"},"Gneiss Belt":{"internalName":"Gneiss Belt","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":78,"strength":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":4,"rawHealth":{"min":46,"raw":153,"max":199},"rawAttackSpeed":-1,"earthDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":300,"baseEarthDefence":25,"baseFireDefence":50},"rarity":"rare"},"Phalanx":{"internalName":"Phalanx","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"defence":55},"powderSlots":2,"identifications":{"rawDefence":13,"rawAgility":-4,"mainAttackDamage":{"min":7,"raw":23,"max":30},"thorns":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"mainAttackRange":{"min":7,"raw":23,"max":30}},"base":{"baseHealth":1800,"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":75,"baseAirDefence":25},"rarity":"rare"},"Impeccable Oak Bow":{"internalName":"Impeccable Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":374,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":235,"raw":235,"max":263}},"rarity":"common"},"Kaerynn's Body":{"internalName":"Kaerynn's Body","type":"armour","armourType":"chestplate","armourColor":"rgb(0,153,0)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":78,"quest":"Aldorei's Secret Part II","strength":45},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2075,"baseEarthDefence":120,"baseFireDefence":-50},"rarity":"set"},"Wrath":{"internalName":"Wrath","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":322,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"mage","strength":39,"defence":39},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawMainAttackDamage":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":84,"raw":280,"max":364},"lootBonus":{"min":4,"raw":13,"max":17},"thunderDamage":{"min":-34,"raw":-26,"max":-18},"waterDamage":{"min":-34,"raw":-26,"max":-18},"airDamage":{"min":-34,"raw":-26,"max":-18}},"base":{"baseDamage":{"min":55,"raw":55,"max":85},"baseEarthDamage":{"min":55,"raw":55,"max":90},"baseFireDamage":{"min":55,"raw":55,"max":90}},"rarity":"legendary"},"Antithesis":{"internalName":"Antithesis","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"intelligence":30,"defence":35},"powderSlots":2,"identifications":{"spellDamage":{"min":5,"raw":16,"max":21},"healthRegen":{"min":-35,"raw":-27,"max":-19},"healthRegenRaw":{"min":-123,"raw":-95,"max":-66},"thunderDamage":{"min":-36,"raw":-28,"max":-20},"waterDamage":{"min":4,"raw":13,"max":17},"fireDamage":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":1550,"baseThunderDefence":-120,"baseWaterDefence":40,"baseFireDefence":60},"rarity":"rare"},"Lerteco":{"internalName":"Lerteco","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"dexterity":50},"powderSlots":2,"identifications":{"rawStrength":-10,"rawDexterity":13,"mainAttackDamage":{"min":2,"raw":5,"max":7},"rawMainAttackDamage":{"min":41,"raw":135,"max":176},"thunderDamage":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1400,"baseEarthDefence":-50},"rarity":"unique"},"Example":{"internalName":"Example","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":78},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":7},"rarity":"unique"},"Magic Bounce":{"internalName":"Magic Bounce","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":502,"dropRestriction":"normal","requirements":{"level":78,"classRequirement":"shaman","strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6},"thorns":{"min":11,"raw":35,"max":46},"reflection":{"min":11,"raw":35,"max":46},"exploding":{"min":11,"raw":35,"max":46},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":30,"raw":30,"max":37},"baseEarthDamage":{"min":30,"raw":30,"max":37},"baseThunderDamage":{"min":30,"raw":30,"max":37},"baseWaterDamage":{"min":30,"raw":30,"max":37},"baseFireDamage":{"min":30,"raw":30,"max":37},"baseAirDamage":{"min":30,"raw":30,"max":37}},"rarity":"unique"},"Swamp Clay":{"internalName":"Swamp Clay","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":78,"strength":35,"intelligence":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":2,"raw":6,"max":8},"poison":{"min":540,"raw":1800,"max":2340},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"thunderDamage":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1500,"baseEarthDefence":65,"baseThunderDefence":-70,"baseWaterDefence":65,"baseAirDefence":-70},"rarity":"unique"},"Pig's Remains":{"internalName":"Pig's Remains","type":"ingredient","requirements":{"level":78,"skills":["cooking"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"healthRegenRaw":{"min":12,"raw":12,"max":15}},"tier":0,"consumableOnlyIDs":{"duration":-240,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gerten Hunter","coords":false}]},"Resilient Stone":{"internalName":"Resilient Stone","type":"ingredient","requirements":{"level":78,"skills":["armouring"]},"icon":{"format":"legacy","value":"1:6"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":1},"earthDefence":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Stone Sentinel","coords":[[-20,38,-4670,12],[-20,38,-4670,20],[-44,38,-4589,12],[-44,38,-4589,20],[-182,37,-4757,8],[-112,38,-4675,15]]},{"name":"Overgrown Sentinel","coords":[[-20,38,-4670,12],[-20,38,-4670,20],[-44,38,-4589,12],[-44,38,-4589,20],[-182,37,-4757,8],[-112,38,-4675,15]]}]},"Cherry Sapling":{"internalName":"Cherry Sapling","type":"ingredient","requirements":{"level":78,"skills":["cooking"]},"icon":{"format":"legacy","value":"38:2"},"identifications":{"rawStrength":{"min":4,"raw":4,"max":5},"rawIntelligence":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":-490,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cherry Treent","coords":[-811,49,-6154,7]}]},"Depth's Gem":{"internalName":"Depth's Gem","type":"ingredient","requirements":{"level":78,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"rawIntelligence":{"min":8,"raw":8,"max":9},"spellDamage":{"min":5,"raw":5,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-133000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gylia Beast","coords":[-156,37,-5270,160]}]},"Regenerative Pins":{"internalName":"Regenerative Pins","type":"ingredient","requirements":{"level":78,"skills":["tailoring","weaponsmithing","scribing"]},"icon":{"format":"legacy","value":"198:0"},"identifications":{"healthRegen":{"min":7,"raw":7,"max":8},"thorns":{"min":7,"raw":7,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-115,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-62000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Regenerator","coords":[[-878,59,-6107,0],[-902,60,-6143,0],[-881,60,-6145,0],[-880,61,-6172,0],[-885,59,-6189,0],[-916,59,-6179,0],[-925,54,-6160,0],[-940,61,-6210,0],[-955,58,-6177,0]]},{"name":"Master Regenerator","coords":null}]},"Gert Skin":{"internalName":"Gert Skin","type":"ingredient","requirements":{"level":78,"skills":["tailoring"]},"icon":{"format":"legacy","value":"111:0"},"identifications":{"rawHealth":{"min":300,"raw":300,"max":330}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gerten Hunter","coords":false},{"name":"Gerten Hunter","coords":[-265,36,-5501,3]}]},"Slimy Skin":{"internalName":"Slimy Skin","type":"ingredient","requirements":{"level":78,"skills":["alchemism"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"manaRegen":{"min":5,"raw":5,"max":5},"manaSteal":{"min":-3,"raw":-3,"max":-3},"waterDamage":{"min":5,"raw":5,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gylia Beast","coords":[-156,37,-5270,160]}]},"Etheric Fern":{"internalName":"Etheric Fern","type":"ingredient","requirements":{"level":78,"skills":["cooking"]},"icon":{"format":"legacy","value":"31:2"},"tier":3,"consumableOnlyIDs":{"duration":-800,"charges":0},"ingredientPositionModifiers":{"left":-160,"right":-160,"above":-160,"under":-160,"touching":115,"notTouching":115},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gylia Beast","coords":[-156,37,-5270,160]},{"name":"Troggo The Pigsbane","coords":[-183,77,-5453,50]}]},"Hunter's Disguise":{"internalName":"Hunter's Disguise","type":"ingredient","requirements":{"level":78,"skills":["tailoring"]},"icon":{"format":"legacy","value":"31:1"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12},"droppedBy":[{"name":"Gerten Hunter","coords":[-265,36,-5501,3]}]},"Antique Metal":{"internalName":"Antique Metal","type":"ingredient","requirements":{"level":78,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"walkSpeed":{"min":-4,"raw":-4,"max":-3},"rawDefence":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obsidian Sentinel","coords":[[-20,38,-4670,12],[-20,38,-4670,20],[-44,38,-4589,12],[-44,38,-4589,20],[-182,37,-4757,8],[-112,38,-4675,15]]}]},"Primordial Soul":{"internalName":"Primordial Soul","type":"ingredient","requirements":{"level":78,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"377:0"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":-10,"dexterityRequirement":-10,"intelligenceRequirement":-10,"defenceRequirement":-10,"agilityRequirement":-10},"droppedBy":[{"name":"Roaming Ancient","coords":[-53,63,-4894,30]}]},"Braveheart":{"internalName":"Braveheart","type":"ingredient","requirements":{"level":78,"skills":["armouring","cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"healthRegenRaw":{"min":40,"raw":40,"max":45},"healthRegen":{"min":16,"raw":16,"max":20}},"tier":3,"consumableOnlyIDs":{"duration":-740,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-120000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":20,"agilityRequirement":0},"droppedBy":[{"name":"Troggo The Pigsbane","coords":[-183,77,-5453,50]}]},"Ancient Moss":{"internalName":"Ancient Moss","type":"ingredient","requirements":{"level":78,"skills":["woodworking","tailoring","cooking"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":6},"rawMainAttackDamage":{"min":25,"raw":25,"max":25}},"tier":2,"consumableOnlyIDs":{"duration":-490,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-89000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Overgrown Sentinel","coords":[[-20,38,-4670,12],[-20,38,-4670,20],[-44,38,-4589,12],[-44,38,-4589,20],[-182,37,-4757,8],[-112,38,-4675,15]]}]},"Adaptive Tissue":{"internalName":"Adaptive Tissue","type":"ingredient","requirements":{"level":78,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"healthRegen":{"min":12,"raw":12,"max":16},"rawStrength":{"min":5,"raw":5,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-89000,"strengthRequirement":11,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Master Regenerator","coords":null}]},"Pig's Skull":{"internalName":"Pig's Skull","type":"ingredient","requirements":{"level":78,"skills":["armouring"]},"icon":{"format":"skin","value":"5527c4da8922d3945c71d31d0aaa6761489d2e7c5ee2a71cbbcbc0806873f0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gerten Hunter","coords":false},{"name":"Gerten Hunter","coords":[-265,36,-5501,3]},{"name":"Terrified Pig","coords":[-249,38,-5380,55]},{"name":"Terrified Pig","coords":[-249,38,-5380,55]}]},"Eternity's Edge":{"internalName":"Eternity's Edge","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":520,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","strength":35,"dexterity":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":16,"rawDexterity":16,"rawSpellDamage":{"min":42,"raw":140,"max":182},"manaSteal":{"min":2,"raw":8,"max":10},"raw2ndSpellCost":{"min":-3,"raw":-10,"max":-13},"walkSpeed":{"min":-21,"raw":-16,"max":-11}},"base":{"baseDamage":{"min":340,"raw":340,"max":340},"baseEarthDamage":{"min":340,"raw":340,"max":340},"baseThunderDamage":{"min":340,"raw":340,"max":340}},"rarity":"unique"},"Togak's Vision":{"internalName":"Togak's Vision","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":77,"strength":15,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":4,"reflection":{"min":2,"raw":6,"max":8},"fireDamage":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":25,"baseFireDefence":-50,"baseAirDefence":25},"rarity":"rare"},"Papyrus":{"internalName":"Papyrus","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77},"powderSlots":5,"identifications":{"rawSpellDamage":{"min":42,"raw":140,"max":182},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":1000,"baseFireDefence":-50,"baseAirDefence":90},"rarity":"rare"},"Quickstep":{"internalName":"Quickstep","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":450,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","defence":25,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawAgility":6,"rawHealth":{"min":180,"raw":600,"max":780},"walkSpeed":{"min":4,"raw":14,"max":18},"xpBonus":{"min":2,"raw":7,"max":9},"fireDamage":{"min":4,"raw":12,"max":16},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseFireDamage":{"min":87,"raw":87,"max":93},"baseAirDamage":{"min":84,"raw":84,"max":96}},"rarity":"unique"},"Takeover":{"internalName":"Takeover","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"dexterity":45},"powderSlots":3,"identifications":{"rawDexterity":5,"rawIntelligence":-4,"rawDefence":4,"rawSpellDamage":{"min":23,"raw":75,"max":98},"lifeSteal":{"min":36,"raw":120,"max":156},"healingEfficiency":{"min":-10,"raw":-8,"max":-6},"thunderDamage":{"min":3,"raw":9,"max":12},"fireDamage":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":1700,"baseEarthDefence":-100,"baseThunderDefence":100,"baseWaterDefence":-50,"baseFireDefence":50},"rarity":"unique"},"Empowered Ancient Helmet":{"internalName":"Empowered Ancient Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(54,213,221)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":77},"base":{"baseHealth":1400,"baseThunderDefence":-50,"baseWaterDefence":50},"rarity":"rare"},"Vanguard":{"internalName":"Vanguard","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":77},"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"mainAttackDamage":10,"spellDamage":10,"xpBonus":15,"lootBonus":10},"rarity":"legendary"},"Bakteri":{"internalName":"Bakteri","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":50,"dexterity":50},"powderSlots":3,"identifications":{"healthRegenRaw":{"min":-156,"raw":-120,"max":-84},"poison":{"min":618,"raw":2060,"max":2678},"lifeSteal":{"min":50,"raw":165,"max":215},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"rawAttackSpeed":-1,"earthDamage":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":14,"raw":45,"max":59}},"base":{"baseHealth":2150,"baseEarthDefence":90,"baseThunderDefence":65,"baseWaterDefence":-70,"baseFireDefence":-50,"baseAirDefence":-50},"rarity":"rare"},"Uranium Aegis":{"internalName":"Uranium Aegis","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":35,"dexterity":45},"majorIds":{"Plague":"+Plague: Poisoned mobs spread their poison to nearby mobs."},"powderSlots":2,"identifications":{"healthRegen":{"min":-130,"raw":-100,"max":-70},"rawHealth":{"min":360,"raw":1200,"max":1560},"poison":{"min":1200,"raw":4000,"max":5200},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"thorns":{"min":5,"raw":15,"max":20},"exploding":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":2725,"baseThunderDefence":75,"baseWaterDefence":-60},"rarity":"fabled"},"Cloudbreaker":{"internalName":"Cloudbreaker","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":301,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"warrior","agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawDexterity":7,"rawAgility":7,"walkSpeed":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-6,"raw":-5,"max":-3},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":30,"raw":30,"max":65},"baseThunderDamage":{"min":35,"raw":35,"max":52},"baseAirDamage":{"min":45,"raw":45,"max":65}},"rarity":"unique"},"Asphalt":{"internalName":"Asphalt","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":542,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","strength":32,"defence":32},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawIntelligence":-5,"rawAgility":-5,"rawMainAttackDamage":{"min":35,"raw":115,"max":150},"lifeSteal":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseEarthDamage":{"min":87,"raw":87,"max":88},"baseFireDamage":{"min":87,"raw":87,"max":88}},"rarity":"rare"},"Jackpot":{"internalName":"Jackpot","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":77},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9},"stealing":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":77},"rarity":"rare"},"Reinforced Iron Helmet":{"internalName":"Reinforced Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77},"powderSlots":3,"base":{"baseHealth":1365},"rarity":"common"},"Violet-Shift":{"internalName":"Violet-Shift","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77},"majorIds":{"Entropy":"+Entropy: Meteor falls three times faster."},"powderSlots":2,"identifications":{"elementalSpellDamage":{"min":9,"raw":29,"max":38},"rawNeutralSpellDamage":{"min":53,"raw":178,"max":231},"lifeSteal":{"min":70,"raw":233,"max":303},"manaRegen":{"min":3,"raw":11,"max":14},"exploding":{"min":5,"raw":17,"max":22}},"base":{"baseFireDefence":-50},"rarity":"fabled"},"Aftershock":{"internalName":"Aftershock","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":724,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","strength":80},"powderSlots":4,"lore":"The Fracturing brought Ahms into a shattered sky, sundering cliffs into an archipelago against the void. The tremors that linger carry an ancient power, bringing mountains to heel with ease and leaving devastation in its wake.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawStrength":20,"rawDefence":20,"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":555,"raw":1850,"max":2405},"4thSpellCost":{"min":-8,"raw":-28,"max":-36},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":80,"raw":80,"max":85},"baseEarthDamage":{"min":1245,"raw":1245,"max":1430}},"rarity":"mythic"},"Full Charge":{"internalName":"Full Charge","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":454,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"archer"},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"spellDamage":{"min":4,"raw":13,"max":17},"lifeSteal":{"min":92,"raw":305,"max":397},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":490,"raw":490,"max":605}},"rarity":"unique"},"Hickory Stick":{"internalName":"Hickory Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":225,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"mage","defence":35},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":24,"raw":80,"max":104},"waterDefence":{"min":-10,"raw":-8,"max":-6},"fireDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":40,"raw":40,"max":80},"baseFireDamage":{"min":20,"raw":20,"max":40}},"rarity":"unique"},"Ghost":{"internalName":"Ghost","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":77,"intelligence":5,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawAgility":5,"spellDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":6,"max":8}},"base":{"baseAirDefence":25},"rarity":"unique"},"Latchkey":{"internalName":"Latchkey","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":77},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":7},"rarity":"unique"},"Scytodidae":{"internalName":"Scytodidae","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":536,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":77,"classRequirement":"archer","intelligence":40},"powderSlots":2,"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawDefence":-20,"rawSpellDamage":130,"manaRegen":10,"manaSteal":10,"fireDefence":-10},"base":{"baseDamage":{"min":180,"raw":180,"max":230},"baseWaterDamage":{"min":130,"raw":130,"max":175}},"rarity":"rare"},"Backlash":{"internalName":"Backlash","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":390,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"assassin","strength":20,"dexterity":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":-117,"raw":-90,"max":-63},"rawHealth":{"min":-650,"raw":-500,"max":-350},"lifeSteal":{"min":54,"raw":180,"max":234}},"base":{"baseDamage":{"min":50,"raw":50,"max":90},"baseEarthDamage":{"min":85,"raw":85,"max":85},"baseThunderDamage":{"min":25,"raw":25,"max":185}},"rarity":"unique"},"Andesite Aegis":{"internalName":"Andesite Aegis","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":30,"defence":30},"powderSlots":2,"lore":"Andesite is a stone commonly used for weapons and construction, but tends to be ineffective as armor when impure. This sturdy chestplate, however, is testament to the strength of pure andesite.","identifications":{"rawStrength":8,"rawDefence":8,"healthRegenRaw":{"min":24,"raw":80,"max":104},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2750,"baseEarthDefence":110,"baseThunderDefence":100,"baseWaterDefence":-50,"baseFireDefence":110,"baseAirDefence":-50},"rarity":"legendary"},"Meltsteel Greaves":{"internalName":"Meltsteel Greaves","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":30,"defence":30},"powderSlots":2,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":3,"raw":11,"max":14},"thorns":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":2050,"baseWaterDefence":-50,"baseFireDefence":90,"baseAirDefence":-50},"rarity":"unique"},"Martyr":{"internalName":"Martyr","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":77,"defence":30,"agility":30},"lore":"A recently married man went off to war wearing this wedding ring. Though he perished in battle, his courage and determination empowers all who wear it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":2,"raw":8,"max":10},"healthRegen":{"min":-16,"raw":-12,"max":-8},"healthRegenRaw":{"min":-47,"raw":-36,"max":-25}},"base":{"baseFireDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Twin Minds":{"internalName":"Twin Minds","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":581,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","strength":45,"defence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"414","name":"relik.water3"}},"identifications":{"rawIntelligence":15,"rawEarthMainAttackDamage":{"min":98,"raw":325,"max":423},"rawFireMainAttackDamage":{"min":60,"raw":200,"max":260},"lifeSteal":{"min":-390,"raw":-300,"max":-210},"3rdSpellCost":{"min":-7,"raw":-25,"max":-32},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"healingEfficiency":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":50,"raw":50,"max":150},"baseEarthDamage":{"min":150,"raw":150,"max":450},"baseFireDamage":{"min":200,"raw":200,"max":400}},"rarity":"legendary"},"Rubber":{"internalName":"Rubber","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":77},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawMainAttackDamage":{"min":8,"raw":26,"max":34}},"base":{"baseThunderDefence":50},"rarity":"rare"},"Cinnabar":{"internalName":"Cinnabar","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"defence":55,"agility":55},"powderSlots":2,"identifications":{"rawDefence":9,"rawAgility":9,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":24,"raw":80,"max":104},"exploding":{"min":9,"raw":30,"max":39},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2350,"baseThunderDefence":-75,"baseWaterDefence":-75,"baseFireDefence":90,"baseAirDefence":90},"rarity":"legendary"},"Dull Ancient Helmet":{"internalName":"Dull Ancient Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(228,180,0)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":77},"base":{"baseHealth":1350},"rarity":"common"},"Obsolescent Panoply":{"internalName":"Obsolescent Panoply","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":77,"strength":25,"dexterity":25,"defence":35,"agility":35},"powderSlots":2,"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":-10,"healthRegenRaw":{"min":38,"raw":125,"max":163},"rawAttackSpeed":-1,"walkSpeed":{"min":6,"raw":19,"max":25},"elementalDefence":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":2600,"baseEarthDefence":50,"baseThunderDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"legendary"},"Bright Edge":{"internalName":"Bright Edge","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":512,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"assassin","dexterity":40,"agility":60},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawIntelligence":-30,"rawMainAttackDamage":{"min":35,"raw":115,"max":150},"spellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":3,"raw":10,"max":13},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6},"earthDefence":{"min":-78,"raw":-60,"max":-42}},"base":{"baseDamage":{"min":10,"raw":10,"max":30},"baseThunderDamage":{"min":50,"raw":50,"max":70},"baseAirDamage":{"min":75,"raw":75,"max":95}},"rarity":"legendary"},"Aldorei's Tear":{"internalName":"Aldorei's Tear","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":10,"intelligence":10},"powderSlots":3,"identifications":{"rawStrength":8,"poison":{"min":540,"raw":1800,"max":2340},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":1550,"baseEarthDefence":50,"baseThunderDefence":-50,"baseWaterDefence":50,"baseAirDefence":-10},"rarity":"unique"},"Widow":{"internalName":"Widow","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":64,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":77,"classRequirement":"shaman","dexterity":40,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawStrength":40,"poison":5175,"lifeSteal":220,"1stSpellCost":105,"thorns":55,"reflection":30},"base":{"baseFireDamage":{"min":42,"raw":42,"max":43}},"rarity":"rare"},"Heracul":{"internalName":"Heracul","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":732,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"archer","strength":90},"powderSlots":3,"lore":"Reconstructed from mere wooden scraps of its former self, this extremely heavy crossbow still contains immense power. It was intended for use with a lost suit of armor, of which only one piece remains.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":20,"rawDefence":-10,"mainAttackDamage":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":9,"raw":30,"max":39},"earthDefence":{"min":-3,"raw":-2,"max":-1},"thunderDefence":{"min":-5,"raw":-4,"max":-3},"waterDefence":{"min":-8,"raw":-6,"max":-4},"fireDefence":{"min":-10,"raw":-8,"max":-6},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":580,"raw":580,"max":840},"baseEarthDamage":{"min":120,"raw":120,"max":225}},"rarity":"legendary"},"Tachypsychia":{"internalName":"Tachypsychia","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":651,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"shaman","strength":50,"dexterity":50},"majorIds":{"Furious Effigy":"+Furious Effigy: Totem effects are twice as fast, but duration is halved."},"powderSlots":2,"lore":"You will probably irreversibly harm yourself with this, but when has that ever stopped you?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"spellDamage":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":-318,"raw":-245,"max":-171},"raw1stSpellCost":{"min":7,"raw":5,"max":4},"raw4thSpellCost":{"min":7,"raw":5,"max":4},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":85,"raw":85,"max":125},"baseThunderDamage":{"min":85,"raw":85,"max":125}},"rarity":"fabled"},"Efilim Sage Cloak":{"internalName":"Efilim Sage Cloak","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"strength":30,"intelligence":40},"powderSlots":3,"identifications":{"rawStrength":7,"rawIntelligence":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":2,"raw":7,"max":9},"healthRegenRaw":{"min":18,"raw":60,"max":78},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1550,"baseEarthDefence":60,"baseWaterDefence":60},"rarity":"unique"},"Restored Ancient Helmet":{"internalName":"Restored Ancient Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(54,213,221)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":77},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2100,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"Inquisitor's Zeal":{"internalName":"Inquisitor's Zeal","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":332,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"warrior","dexterity":30,"intelligence":45,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"476","name":"spear.water3"}},"identifications":{"rawSpellDamage":{"min":60,"raw":200,"max":260},"lifeSteal":{"min":75,"raw":250,"max":325},"raw1stSpellCost":{"min":5,"raw":4,"max":3},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"waterDamage":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":35,"raw":35,"max":65},"baseThunderDamage":{"min":75,"raw":75,"max":325},"baseWaterDamage":{"min":150,"raw":150,"max":250},"baseFireDamage":{"min":125,"raw":125,"max":275}},"rarity":"legendary"},"Lurrun":{"internalName":"Lurrun","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"defence":40,"agility":40},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"healthRegen":{"min":4,"raw":14,"max":18},"reflection":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":5,"raw":16,"max":21},"fireDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1650,"baseEarthDefence":-70,"baseThunderDefence":-70,"baseFireDefence":100,"baseAirDefence":80},"rarity":"unique"},"Hydra":{"internalName":"Hydra","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":261,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"mage","defence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"healthRegen":{"min":10,"raw":33,"max":43},"healthRegenRaw":{"min":30,"raw":99,"max":129},"rawHealth":{"min":233,"raw":777,"max":1010},"lifeSteal":{"min":48,"raw":160,"max":208}},"base":{"baseDamage":{"min":11,"raw":11,"max":66},"baseFireDamage":{"min":77,"raw":77,"max":99}},"rarity":"rare"},"Overcharger":{"internalName":"Overcharger","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":301,"dropRestriction":"normal","requirements":{"level":77,"classRequirement":"warrior","dexterity":70},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawHealth":{"min":-910,"raw":-700,"max":-490},"lifeSteal":{"min":-286,"raw":-220,"max":-154},"manaSteal":{"min":5,"raw":16,"max":21},"walkSpeed":{"min":3,"raw":10,"max":13},"exploding":{"min":8,"raw":25,"max":33}},"base":{"baseThunderDamage":{"min":325,"raw":325,"max":400}},"rarity":"unique"},"Evolving Spores":{"internalName":"Evolving Spores","type":"ingredient","requirements":{"level":77,"skills":["alchemism"]},"icon":{"format":"legacy","value":"38:1"},"identifications":{"gatherSpeed":{"min":9,"raw":9,"max":10},"gatherXpBonus":{"min":-5,"raw":-5,"max":-4},"earthDamage":{"min":17,"raw":17,"max":19},"thunderDamage":{"min":15,"raw":15,"max":22},"waterDamage":{"min":18,"raw":18,"max":20},"fireDamage":{"min":16,"raw":16,"max":23},"airDamage":{"min":19,"raw":19,"max":21}},"tier":3,"consumableOnlyIDs":{"duration":-250,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]},{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Evaporated Aspect":{"internalName":"Evaporated Aspect","type":"ingredient","requirements":{"level":77,"skills":["tailoring","weaponsmithing"]},"icon":{"format":"skin","value":"2b351c9dad2cae633e828c547c482fe67a8579fc4a38e1d6c86c4c0eaf01f"},"identifications":{"waterDamage":{"min":8,"raw":8,"max":8},"fireDamage":{"min":8,"raw":8,"max":8},"healthRegen":{"min":20,"raw":20,"max":20},"manaSteal":{"min":-4,"raw":-4,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Anima Weird","coords":[-886,57,-4195,0]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Prismatic Weird","coords":[[-851,46,-4256,7],[-887,56,-4202,7]]}]},"Durable Skin":{"internalName":"Durable Skin","type":"ingredient","requirements":{"level":77,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"70:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":3},"earthDefence":{"min":6,"raw":6,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-61000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Obsidian Sentinel","coords":[[-20,38,-4670,12],[-20,38,-4670,20],[-44,38,-4589,12],[-44,38,-4589,20],[-182,37,-4757,8],[-112,38,-4675,15]]}]},"Larvae Cluster":{"internalName":"Larvae Cluster","type":"ingredient","requirements":{"level":77,"skills":["alchemism"]},"icon":{"format":"legacy","value":"173:0"},"identifications":{"rawDexterity":{"min":4,"raw":4,"max":6},"rawMainAttackDamage":{"min":90,"raw":90,"max":120}},"tier":2,"consumableOnlyIDs":{"duration":-165,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Hive","coords":[[-905,48,-6182,30],[-776,50,-6142,40],[-817,84,-6060,15]]}]},"Disturbed Aspect":{"internalName":"Disturbed Aspect","type":"ingredient","requirements":{"level":77,"skills":["armouring","woodworking"]},"icon":{"format":"skin","value":"f718bf793e761b8225d0dd04a309434adf7e34cb9ca895ef3b3163e562825"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":8},"waterDamage":{"min":8,"raw":8,"max":8},"manaRegen":{"min":4,"raw":4,"max":4},"rawHealth":{"min":-475,"raw":-475,"max":-475}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Muddled Weird","coords":[[-534,77,-5288,0],[-534,77,-5288,3],[-482,75,-5315,0],[-490,75,-5314,0],[-485,75,-5321,0]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Sinking Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]}]},"World Illuminator":{"internalName":"World Illuminator","type":"ingredient","requirements":{"level":77,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"169:0"},"identifications":{"rawIntelligence":{"min":5,"raw":5,"max":7},"waterDefence":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-125,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ellida Whale","coords":null}]},"Organic Explosive":{"internalName":"Organic Explosive","type":"ingredient","requirements":{"level":77,"skills":["jeweling","cooking"]},"icon":{"format":"legacy","value":"46:0"},"identifications":{"exploding":{"min":6,"raw":6,"max":8},"rawHealth":{"min":90,"raw":90,"max":100}},"tier":2,"consumableOnlyIDs":{"duration":-350,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Effulgent Antibody","coords":[[-780,73,-6045,30],[-806,82,-6243,20]]}]},"Flytrap Fangs":{"internalName":"Flytrap Fangs","type":"ingredient","requirements":{"level":77,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"154:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":3},"rawDexterity":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-62000,"strengthRequirement":6,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ellida Whale","coords":null},{"name":"Chromancer","coords":[[-970,67,-6119,24],[-879,49,-6153,60]]},{"name":"Master Regenerator","coords":null},{"name":"Paramite","coords":[-778,50,-6165,35]}]},"Pig's Blood":{"internalName":"Pig's Blood","type":"ingredient","requirements":{"level":77,"skills":["tailoring"]},"icon":{"format":"legacy","value":"331:0"},"identifications":{"lifeSteal":{"min":60,"raw":60,"max":70}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Troggo The Pigsbane","coords":[-183,77,-5453,50]}]},"Pure Rain Stone":{"internalName":"Pure Rain Stone","type":"ingredient","requirements":{"level":77,"skills":["jeweling"]},"icon":{"format":"legacy","value":"21:0"},"identifications":{"mainAttackDamage":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Felroc","coords":[[-221,35,-4746,20],[-127,32,-4878,24],[-98,35,-4940,24],[-47,35,-5070,24],[-53,35,-4653,40],[-53,35,-4653,40]]},{"name":"Felroc Brutahealen","coords":[[-221,35,-4746,20],[-127,32,-4878,24],[-98,35,-4940,24],[-47,35,-5070,24],[-53,35,-4653,40],[-53,35,-4653,40]]}]},"Gylia Essence":{"internalName":"Gylia Essence","type":"ingredient","requirements":{"level":77,"skills":["scribing"]},"icon":{"format":"legacy","value":"264:0"},"identifications":{"rawIntelligence":{"min":3,"raw":3,"max":5},"waterDamage":{"min":3,"raw":3,"max":7},"waterDefence":{"min":4,"raw":4,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":5,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mermaid","coords":[[-248,33,-5245,8],[-118,29,-5117,6],[-92,29,-5120,8],[-68,32,-5134,10],[-52,32,-5237,5],[-25,30,-5265,6],[-179,27,-5391,5]]},{"name":"Little Swimmer","coords":false},{"name":"Redfin Swimmer","coords":false},{"name":"Stingy Swimmer","coords":false},{"name":"Goldring Swimmer","coords":false},{"name":"Fire Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Whirl Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Elemental Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Magnetized Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Intense Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Frost Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Ozone Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Redline Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]}]},"Alginate Dressing":{"internalName":"Alginate Dressing","type":"ingredient","requirements":{"level":77,"skills":["armouring"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"healingEfficiency":{"min":3,"raw":3,"max":4},"walkSpeed":{"min":-6,"raw":-6,"max":-5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":55,"under":55,"touching":-110,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-125000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Aldor-Nix","coords":[[-706,43,-4765,5],[-799,27,-4740,5]]},{"name":"Light Fairy","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Pond Nymph","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Luxroot Sentinel","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]}]},"Blessed Heart":{"internalName":"Blessed Heart","type":"ingredient","requirements":{"level":77,"skills":["cooking"]},"icon":{"format":"legacy","value":"238:0"},"tier":3,"consumableOnlyIDs":{"duration":-550,"charges":2},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-40,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ellida Whale","coords":null}]},"Mayonnaise":{"internalName":"Mayonnaise","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":77,"dexterity":30,"agility":30},"identifications":{"rawNeutralDamage":{"min":35,"raw":115,"max":150},"elementalDamage":{"min":-23,"raw":-18,"max":-13},"sprint":{"min":5,"raw":18,"max":23},"lootBonus":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseHealth":1700},"rarity":"unique"},"Deark":{"internalName":"Deark","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":76,"quest":"Eye of the Storm","dexterity":50},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":2,"rawMainAttackDamage":43,"thunderDamage":8,"thunderDefence":6},"base":{"baseWaterDefence":-30},"rarity":"rare"},"Hembwal":{"internalName":"Hembwal","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":76,"quest":"Troubled Tribesmen","strength":50,"dexterity":50,"defence":50},"powderSlots":3,"identifications":{"rawIntelligence":-20,"rawAgility":-20,"manaSteal":12,"earthDamage":15,"thunderDamage":15,"fireDamage":15,"earthDefence":15,"thunderDefence":15,"fireDefence":15},"base":{"baseHealth":2150,"baseEarthDefence":150,"baseThunderDefence":150,"baseWaterDefence":-100,"baseFireDefence":150,"baseAirDefence":-100},"rarity":"rare"},"Graviton Lance":{"internalName":"Graviton Lance","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":589,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"shaman","dexterity":36,"intelligence":36},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawStrength":-20,"rawDexterity":55,"rawIntelligence":55,"rawDefence":-20,"rawAgility":-20,"manaSteal":{"min":-5,"raw":-4,"max":-3}},"base":{"baseThunderDamage":{"min":255,"raw":255,"max":455},"baseWaterDamage":{"min":355,"raw":355,"max":355}},"rarity":"rare"},"Jewel":{"internalName":"Jewel","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":76},"powderSlots":2,"identifications":{"healingEfficiency":{"min":3,"raw":10,"max":13},"reflection":{"min":6,"raw":20,"max":26},"xpBonus":{"min":3,"raw":10,"max":13},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1750,"baseFireDefence":80},"rarity":"unique"},"Pure Light Jungle Bow":{"internalName":"Pure Light Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":356,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":158,"raw":158,"max":188}},"rarity":"common"},"Hellbow":{"internalName":"Hellbow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":431,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"archer","strength":10,"defence":40},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"mainAttackDamage":{"min":1,"raw":4,"max":5},"rawHealth":{"min":90,"raw":300,"max":390},"walkSpeed":{"min":-4,"raw":-3,"max":-2},"earthDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":30,"raw":30,"max":110},"baseEarthDamage":{"min":40,"raw":40,"max":75},"baseFireDamage":{"min":120,"raw":120,"max":200}},"rarity":"rare"},"Multitool":{"internalName":"Multitool","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":76},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":7},"rarity":"unique"},"Nest":{"internalName":"Nest","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":258,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":76,"classRequirement":"mage","strength":20},"powderSlots":2,"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"mainAttackDamage":10,"xpBonus":15,"earthDamage":35,"thunderDamage":-15,"fireDamage":-15,"airDamage":-15},"base":{"baseDamage":{"min":20,"raw":20,"max":100},"baseEarthDamage":{"min":40,"raw":40,"max":90}},"rarity":"rare"},"Giant's Ring":{"internalName":"Giant's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":76,"quest":"The Bigger Picture","strength":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":5,"rawAgility":-3,"mainAttackDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":250,"baseEarthDefence":30,"baseAirDefence":-10},"rarity":"unique"},"Gnome's Ring":{"internalName":"Gnome's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":76,"quest":"The Bigger Picture","agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawStrength":-3,"rawAgility":5,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-10,"raw":-8,"max":-6},"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":-250,"baseEarthDefence":-10,"baseAirDefence":30},"rarity":"unique"},"Destrortur":{"internalName":"Destrortur","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":76,"quest":"Eye of the Storm","dexterity":50},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":29,"rawSpellDamage":45,"healthRegen":-24,"healthRegenRaw":-48,"thunderDamage":16},"base":{"baseHealth":-480,"baseEarthDefence":-20,"baseWaterDefence":-5,"baseFireDefence":-10,"baseAirDefence":-10},"rarity":"rare"},"Mosaic":{"internalName":"Mosaic","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":375,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"assassin","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"mainAttackDamage":{"min":-12,"raw":-9,"max":-6},"spellDamage":{"min":-12,"raw":-9,"max":-6},"healthRegenRaw":{"min":24,"raw":80,"max":104},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":40,"raw":40,"max":60},"baseThunderDamage":{"min":40,"raw":40,"max":60},"baseWaterDamage":{"min":40,"raw":40,"max":60},"baseFireDamage":{"min":40,"raw":40,"max":60},"baseAirDamage":{"min":40,"raw":40,"max":60}},"rarity":"unique"},"Chain Hook":{"internalName":"Chain Hook","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":300,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"warrior","strength":50,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawStrength":8,"rawAgility":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":6,"raw":19,"max":25},"fireDefence":{"min":-12,"raw":-9,"max":-6}},"base":{"baseDamage":{"min":55,"raw":55,"max":80},"baseAirDamage":{"min":45,"raw":45,"max":60}},"rarity":"unique"},"Flood Bath":{"internalName":"Flood Bath","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":459,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"shaman","intelligence":30,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"mainAttackDamage":{"min":-14,"raw":-11,"max":-8},"spellDamage":{"min":-14,"raw":-11,"max":-8},"rawHealth":{"min":198,"raw":661,"max":859},"3rdSpellCost":{"min":-7,"raw":-23,"max":-30},"earthDamage":{"min":-43,"raw":-33,"max":-23},"thunderDamage":{"min":-43,"raw":-33,"max":-23},"waterDamage":{"min":10,"raw":33,"max":43},"fireDamage":{"min":10,"raw":33,"max":43},"airDamage":{"min":-43,"raw":-33,"max":-23}},"base":{"baseWaterDamage":{"min":147,"raw":147,"max":159},"baseFireDamage":{"min":150,"raw":150,"max":156}},"rarity":"rare"},"Gungnir":{"internalName":"Gungnir","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":340,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":155,"raw":155,"max":175}},"rarity":"rare"},"Block Buster":{"internalName":"Block Buster","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":360,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"assassin","strength":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"exploding":{"min":14,"raw":48,"max":62},"earthDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":130,"raw":130,"max":160},"baseEarthDamage":{"min":90,"raw":90,"max":100}},"rarity":"unique"},"Sunblight Boots":{"internalName":"Sunblight Boots","type":"armour","armourType":"boots","armourMaterial":"iron","restrictions":"quest item","dropRestriction":"never","requirements":{"level":76},"base":{"baseHealth":1650,"baseEarthDefence":100,"baseThunderDefence":-90,"baseWaterDefence":80,"baseAirDefence":-90},"rarity":"rare"},"Hope":{"internalName":"Hope","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":435,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":18,"max":23},"lootBonus":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":260,"raw":260,"max":320}},"rarity":"unique"},"Throatcut":{"internalName":"Throatcut","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":412,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"assassin","defence":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDexterity":-10,"rawIntelligence":-10,"rawDefence":13,"rawAgility":13,"mainAttackDamage":{"min":8,"raw":27,"max":35},"lifeSteal":{"min":44,"raw":145,"max":189},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":77,"raw":77,"max":299},"baseFireDamage":{"min":77,"raw":77,"max":299},"baseAirDamage":{"min":77,"raw":77,"max":163}},"rarity":"rare"},"Salticidae":{"internalName":"Salticidae","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":439,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":76,"classRequirement":"assassin","strength":30,"agility":40},"powderSlots":2,"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":30,"spellDamage":-10,"walkSpeed":42,"jumpHeight":3},"base":{"baseEarthDamage":{"min":95,"raw":95,"max":495},"baseAirDamage":{"min":315,"raw":315,"max":815}},"rarity":"rare"},"Ghoul":{"internalName":"Ghoul","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":338,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":76,"classRequirement":"warrior","agility":55},"powderSlots":2,"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawAgility":10,"lifeSteal":235,"manaSteal":8,"walkSpeed":20,"thunderDamage":14,"airDamage":10},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseAirDamage":{"min":75,"raw":75,"max":85}},"rarity":"rare"},"Subsumere":{"internalName":"Subsumere","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":221,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"mage","dexterity":15,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"spellDamage":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":48,"raw":160,"max":208},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseThunderDamage":{"min":20,"raw":20,"max":55},"baseWaterDamage":{"min":30,"raw":30,"max":50}},"rarity":"unique"},"Entamyx":{"internalName":"Entamyx","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":76,"quest":"Troubled Tribesmen","strength":50,"intelligence":50,"agility":50},"powderSlots":3,"identifications":{"rawDexterity":-20,"rawDefence":-20,"thorns":35,"reflection":35,"earthDamage":15,"waterDamage":15,"airDamage":15,"earthDefence":15,"waterDefence":15,"airDefence":15},"base":{"baseHealth":2150,"baseEarthDefence":150,"baseThunderDefence":-100,"baseWaterDefence":150,"baseFireDefence":-100,"baseAirDefence":150},"rarity":"rare"},"Pure Light Jungle Relik":{"internalName":"Pure Light Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":355,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":140,"raw":140,"max":144}},"rarity":"common"},"Clock Mail":{"internalName":"Clock Mail","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":76},"powderSlots":3,"identifications":{"rawDefence":3,"spellDamage":5,"healthRegen":15,"rawHealth":200,"manaRegen":12,"manaSteal":-4,"walkSpeed":-3},"base":{"baseHealth":1800},"rarity":"set"},"Suppression":{"internalName":"Suppression","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":76},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"healthRegen":{"min":1,"raw":4,"max":5},"lifeSteal":{"min":-188,"raw":-145,"max":-101},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-21,"raw":-16,"max":-11}},"base":{"baseHealth":-300},"rarity":"rare"},"Prymari":{"internalName":"Prymari","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":309,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"mage","dexterity":25,"intelligence":25,"defence":25},"powderSlots":3,"lore":"This staff was expertly crafted from fragile spun glass, and tinted with various magical foci that bend light into its most raw components.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawDexterity":9,"rawIntelligence":9,"rawDefence":9,"spellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":30,"raw":100,"max":130},"reflection":{"min":9,"raw":30,"max":39},"earthDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":-52,"raw":-40,"max":-28},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseThunderDamage":{"min":17,"raw":17,"max":33},"baseWaterDamage":{"min":17,"raw":17,"max":33},"baseFireDamage":{"min":17,"raw":17,"max":33}},"rarity":"legendary"},"Verdigris Sabatons":{"internalName":"Verdigris Sabatons","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":76,"dexterity":20,"defence":35},"powderSlots":1,"identifications":{"rawDefence":5,"rawSpellDamage":{"min":30,"raw":100,"max":130},"poison":{"min":510,"raw":1700,"max":2210},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"waterDamage":{"min":-18,"raw":-14,"max":-10},"airDamage":{"min":-16,"raw":-12,"max":-8},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1900,"baseThunderDefence":40,"baseWaterDefence":-60,"baseFireDefence":70},"rarity":"unique"},"Post-Ultima":{"internalName":"Post-Ultima","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":76,"strength":40,"dexterity":25},"powderSlots":3,"lore":"These leggings are the last remaining piece of a historical set of armor, created with such power as to be thought impossible long ago.","identifications":{"rawStrength":9,"rawDexterity":7,"mainAttackDamage":{"min":9,"raw":30,"max":39},"rawMainAttackDamage":{"min":57,"raw":190,"max":247},"exploding":{"min":6,"raw":20,"max":26},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":2000,"baseEarthDefence":-50,"baseThunderDefence":-50,"baseWaterDefence":-50,"baseFireDefence":-50,"baseAirDefence":-50},"rarity":"legendary"},"Pure Light Jungle Spear":{"internalName":"Pure Light Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":238,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":98,"raw":98,"max":133}},"rarity":"common"},"Sealing Coin":{"internalName":"Sealing Coin","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":76},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":330},"rarity":"unique"},"Pure Light Jungle Wand":{"internalName":"Pure Light Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":178,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":66,"raw":66,"max":76}},"rarity":"common"},"Nightling":{"internalName":"Nightling","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":76,"dexterity":35},"powderSlots":2,"identifications":{"rawDexterity":8,"rawAgility":3,"mainAttackDamage":{"min":2,"raw":5,"max":7},"rawMainAttackDamage":{"min":38,"raw":125,"max":163},"walkSpeed":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1250,"baseEarthDefence":-100,"baseThunderDefence":80},"rarity":"unique"},"Pure Light Jungle Dagger":{"internalName":"Pure Light Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":288,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":86,"raw":86,"max":100}},"rarity":"common"},"Solid Iron Chestplate":{"internalName":"Solid Iron Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":76},"powderSlots":2,"base":{"baseHealth":1320},"rarity":"common"},"Last Perdition":{"internalName":"Last Perdition","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":488,"dropRestriction":"normal","requirements":{"level":76,"classRequirement":"shaman","dexterity":30,"defence":30},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawDexterity":10,"rawHealth":{"min":-650,"raw":-500,"max":-350},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":320,"raw":320,"max":330}},"rarity":"unique"},"Accursed Effigy":{"internalName":"Accursed Effigy","type":"ingredient","requirements":{"level":76,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"449:0"},"identifications":{"manaSteal":{"min":3,"raw":3,"max":4},"fireDamage":{"min":8,"raw":8,"max":11},"walkSpeed":{"min":-10,"raw":-10,"max":-7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Obelisk Core":{"internalName":"Obelisk Core","type":"ingredient","requirements":{"level":76,"skills":["woodworking","armouring","jeweling"]},"icon":{"format":"skin","value":"9f0d73150df4f5d0775b55489a28a97764af5a7751a00e4040495e97ffe9772f"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-200,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-131000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Overload Aspect":{"internalName":"Overload Aspect","type":"ingredient","requirements":{"level":76,"skills":["woodworking"]},"icon":{"format":"skin","value":"c679efc59e22fcf34f7448bf7ab6664f799c3dff656cf483098be36c9ae1"},"identifications":{"thunderDamage":{"min":8,"raw":8,"max":8},"waterDamage":{"min":8,"raw":8,"max":8},"manaSteal":{"min":2,"raw":2,"max":2},"lifeSteal":{"min":-100,"raw":-100,"max":-100}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Intense Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Anima Weird","coords":[-886,57,-4195,0]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]}]},"Luminous Rune":{"internalName":"Luminous Rune","type":"ingredient","requirements":{"level":76,"skills":["woodworking"]},"icon":{"format":"legacy","value":"138:0"},"identifications":{"mainAttackDamage":{"min":4,"raw":4,"max":5},"spellDamage":{"min":4,"raw":4,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":-30,"right":-30,"above":0,"under":0,"touching":30,"notTouching":30},"itemOnlyIDs":{"durabilityModifier":-131000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Auresc Bough","coords":null},{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]}]},"Repulsive Aspect":{"internalName":"Repulsive Aspect","type":"ingredient","requirements":{"level":76,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"a55b8a37a2757175f73dcf9bf25eb9d2441c8589ea1131b6417aa345c0e3fc47"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":8},"thunderDamage":{"min":8,"raw":8,"max":8},"mainAttackDamage":{"min":15,"raw":15,"max":15},"healthRegenRaw":{"min":-55,"raw":-55,"max":-55}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":10,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Magnetized Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Outlandish Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Redline Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Decay Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Curious Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]}]},"Soggy Stone":{"internalName":"Soggy Stone","type":"ingredient","requirements":{"level":76,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"waterDamage":{"min":2,"raw":2,"max":5},"thunderDefence":{"min":-5,"raw":-5,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Whirl Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Little Swimmer","coords":false},{"name":"Redfin Swimmer","coords":false},{"name":"Stingy Swimmer","coords":false},{"name":"Goldring Swimmer","coords":false},{"name":"Nimbuseeker","coords":[[-407,44,-5226,10],[-313,44,-5439,6],[-412,33,-5128,4],[-374,33,-5159,7],[-362,33,-5112,10],[-342,33,-5169,10],[-309,32,-5155,6],[-293,34,-5229,7],[-272,33,-5122,7],[-190,35,-5107,6],[-214,34,-5060,8],[-187,43,-5025,8],[-158,33,-5045,7],[-168,32,-4981,8],[-344,32,-4978,3],[-128,35,-4750,8],[-128,35,-4750,8],[-166,34,-4843,8],[-449,36,-4714,8],[-419,34,-4742,7],[-380,32,-4761,10],[-355,33,-4779,8],[-367,34,-4726,8],[-332,33,-4742,12],[-321,32,-4771,10]]},{"name":"Cirruskater","coords":[[-407,44,-5226,10],[-313,44,-5439,6],[-412,33,-5128,4],[-374,33,-5159,7],[-362,33,-5112,10],[-342,33,-5169,10],[-309,32,-5155,6],[-293,34,-5229,7],[-272,33,-5122,7],[-190,35,-5107,6],[-214,34,-5060,8],[-187,43,-5025,8],[-158,33,-5045,7],[-168,32,-4981,8],[-344,32,-4978,3],[-128,35,-4750,8],[-128,35,-4750,8],[-166,34,-4843,8],[-449,36,-4714,8],[-419,34,-4742,7],[-380,32,-4761,10],[-355,33,-4779,8],[-367,34,-4726,8],[-332,33,-4742,12],[-321,32,-4771,10]]}]},"Royal Bug’s Blood":{"internalName":"Royal Bug’s Blood","type":"ingredient","requirements":{"level":76,"skills":["alchemism","woodworking"]},"icon":{"format":"legacy","value":"441:0"},"identifications":{"spellDamage":{"min":2,"raw":2,"max":4},"xpBonus":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-230,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":8,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Royal Bug","coords":[-646,47,-4729,5]}]},"Astral Alloy":{"internalName":"Astral Alloy","type":"ingredient","requirements":{"level":76,"skills":["tailoring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"elementalDamage":{"min":9,"raw":9,"max":11}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":8,"dexterityRequirement":8,"intelligenceRequirement":8,"defenceRequirement":8,"agilityRequirement":8},"droppedBy":[{"name":"Gylia Beast","coords":[-156,37,-5270,160]},{"name":"Troggo The Pigsbane","coords":[-183,77,-5453,50]}]},"Erratic Aspect":{"internalName":"Erratic Aspect","type":"ingredient","requirements":{"level":76,"skills":["armouring"]},"icon":{"format":"skin","value":"26283e7a88d32719304a37ede0c6a8c5dc9d9cf9b00a179cf904e8ce821312"},"identifications":{"thunderDamage":{"min":8,"raw":8,"max":8},"fireDamage":{"min":8,"raw":8,"max":8},"lifeSteal":{"min":70,"raw":70,"max":70},"healthRegen":{"min":-15,"raw":-15,"max":-15}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Explosive Weird","coords":[-502,47,-5293,30]},{"name":"Redline Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Anima Weird","coords":[-886,57,-4195,0]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]}]},"Shattered Aspect":{"internalName":"Shattered Aspect","type":"ingredient","requirements":{"level":76,"skills":["armouring","tailoring"]},"icon":{"format":"skin","value":"435f70fc2c313f68e7cd40d2d5243fac48a230787bf9e0e15586cde76b13ab4"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":8},"airDamage":{"min":8,"raw":8,"max":8},"rawMainAttackDamage":{"min":80,"raw":80,"max":80},"rawSpellDamage":{"min":-65,"raw":-65,"max":-65}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Hollow Weird","coords":[-950,64,-4337,14]},{"name":"Outlandish Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]}]},"Fuunyet":{"internalName":"Fuunyet","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":382,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"warrior","quest":"Troubled Tribesmen","strength":30,"dexterity":30,"defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"473","name":"spear.thunder3"}},"identifications":{"rawStrength":6,"rawDexterity":6,"rawDefence":6,"poison":2750,"lifeSteal":240,"exploding":20,"xpBonus":15},"base":{"baseDamage":{"min":155,"raw":155,"max":225},"baseEarthDamage":{"min":80,"raw":80,"max":100},"baseThunderDamage":{"min":80,"raw":80,"max":100},"baseFireDamage":{"min":80,"raw":80,"max":100}},"rarity":"rare"},"Cornucopia":{"internalName":"Cornucopia","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":438,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"mainAttackDamage":-10,"spellDamage":-10,"healthRegen":30,"healthRegenRaw":80,"manaRegen":6,"xpBonus":10,"lootBonus":10},"base":{"baseDamage":{"min":190,"raw":190,"max":235}},"rarity":"unique"},"Champion Helmet":{"internalName":"Champion Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(38,97,215)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":75,"quest":"Tower Of Ascension"},"powderSlots":2,"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1750},"rarity":"set"},"Surprised Gert Mask":{"internalName":"Surprised Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"a62037c9000d527e675e4e8c3baed76a55915a314e3ed8decc079c27dc12e189"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Champion Leggings":{"internalName":"Champion Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(38,97,215)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":75,"quest":"Tower Of Ascension"},"powderSlots":2,"identifications":{"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1750},"rarity":"set"},"End of Limits":{"internalName":"End of Limits","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":240,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"mage","strength":60,"dexterity":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":16,"max":21},"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"spellDamage":{"min":3,"raw":11,"max":14},"rawSpellDamage":{"min":23,"raw":75,"max":98},"lifeSteal":{"min":-266,"raw":-205,"max":-143},"manaRegen":{"min":-8,"raw":-6,"max":-4},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseThunderDamage":{"min":60,"raw":60,"max":150}},"rarity":"unique"},"Celebration":{"internalName":"Celebration","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":268,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"xpBonus":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":120,"raw":120,"max":140}},"rarity":"rare"},"Champion Chestplate":{"internalName":"Champion Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(38,97,215)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":75,"quest":"Tower Of Ascension"},"powderSlots":2,"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1750},"rarity":"set"},"Black Ice":{"internalName":"Black Ice","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":356,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"assassin","dexterity":20,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawDexterity":5,"rawIntelligence":5,"mainAttackDamage":-20,"spellDamage":12,"rawSpellDamage":75,"manaRegen":6,"earthDamage":-20},"base":{"baseDamage":{"min":75,"raw":75,"max":95},"baseThunderDamage":{"min":18,"raw":18,"max":40},"baseWaterDamage":{"min":22,"raw":22,"max":35}},"rarity":"unique"},"Way Back Home":{"internalName":"Way Back Home","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"strength":20,"agility":20},"powderSlots":3,"identifications":{"rawAgility":7,"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1600,"baseEarthDefence":100,"baseThunderDefence":-100,"baseFireDefence":-100,"baseAirDefence":100},"rarity":"unique"},"Aliez":{"internalName":"Aliez","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":75,"dexterity":35,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"rawMainAttackDamage":{"min":15,"raw":50,"max":65},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":9,"max":12},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":-225,"baseThunderDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Battery":{"internalName":"Battery","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":356,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"warrior","dexterity":60,"intelligence":60},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":0,"raw":0,"max":75},"baseThunderDamage":{"min":0,"raw":0,"max":200},"baseWaterDamage":{"min":50,"raw":50,"max":150}},"rarity":"rare"},"Venomsoul":{"internalName":"Venomsoul","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"strength":30,"intelligence":20},"powderSlots":2,"identifications":{"poison":{"min":435,"raw":1450,"max":1885},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1600,"baseAirDefence":-90},"rarity":"unique"},"Happy Gert Mask":{"internalName":"Happy Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"93f9972d0c93cbf1c507d819536566a180f7c587be81d90ccaca43ffa302f6d6"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Arma Gauntlet":{"internalName":"Arma Gauntlet","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":531,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"assassin","strength":25,"defence":25},"powderSlots":2,"lore":"Stories say that should anyone wield both of these fearsome gauntlets in battle, they will become unkillable in a fight. The second gauntlet, however, has never been found.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":8,"rawDefence":10,"mainAttackDamage":{"min":8,"raw":25,"max":33},"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawSpellDamage":{"min":-97,"raw":-75,"max":-52},"healthRegenRaw":{"min":24,"raw":80,"max":104},"rawHealth":{"min":480,"raw":1600,"max":2080},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":106,"raw":106,"max":150},"baseEarthDamage":{"min":50,"raw":50,"max":80},"baseFireDamage":{"min":40,"raw":40,"max":90}},"rarity":"legendary"},"Bob's Mythic Daggers":{"internalName":"Bob's Mythic Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":525,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"assassin","quest":"Reincarnation"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"274","name":"dagger.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":10,"spellDamage":10,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":185,"raw":185,"max":235}},"rarity":"legendary"},"Snow Shovel":{"internalName":"Snow Shovel","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":291,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"warrior","intelligence":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawIntelligence":10,"spellDamage":25,"manaSteal":4,"walkSpeed":-10,"waterDamage":10,"airDamage":15,"fireDefence":-10},"base":{"baseDamage":{"min":100,"raw":100,"max":140},"baseWaterDamage":{"min":220,"raw":220,"max":300},"baseAirDamage":{"min":160,"raw":160,"max":220}},"rarity":"unique"},"Kal Hei":{"internalName":"Kal Hei","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":275,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"mage","quest":"Troubled Tribesmen","strength":30,"intelligence":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawStrength":6,"rawIntelligence":6,"rawAgility":6,"mainAttackDamage":30,"manaSteal":8,"walkSpeed":15,"xpBonus":15},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseEarthDamage":{"min":20,"raw":20,"max":30},"baseWaterDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":20,"raw":20,"max":30}},"rarity":"rare"},"Malachite":{"internalName":"Malachite","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":75,"strength":10,"dexterity":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawMainAttackDamage":{"min":9,"raw":31,"max":40},"rawSpellDamage":{"min":11,"raw":35,"max":46}},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":-30},"rarity":"unique"},"Royal Blazing Amulet":{"internalName":"Royal Blazing Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"WynnExcavation Site D"},"lore":"An exclusive amulet given to the most honored knights of Wynn. It glows with a comforting warmth.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":3,"rawHealth":650,"xpBonus":5,"lootBonus":5,"fireDamage":5},"rarity":"legendary"},"Clock Leggings":{"internalName":"Clock Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":75},"powderSlots":3,"identifications":{"rawStrength":3,"mainAttackDamage":30,"rawMainAttackDamage":13,"spellDamage":25,"rawAttackSpeed":-1,"walkSpeed":-4,"xpBonus":5},"base":{"baseHealth":1500},"rarity":"set"},"Sapling":{"internalName":"Sapling","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":399,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"assassin","strength":35,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":26,"raw":85,"max":111},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"earthDefence":{"min":4,"raw":12,"max":16},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseEarthDamage":{"min":126,"raw":126,"max":140},"baseWaterDamage":{"min":96,"raw":96,"max":170}},"rarity":"rare"},"Hungry Gert Mask":{"internalName":"Hungry Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"a36ff5c6f29f0674beecabfcfae0dc0ca6449e64e585533a4529931c4e7a5a71"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Isostasis":{"internalName":"Isostasis","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":75,"strength":15,"defence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":3,"rawEarthMainAttackDamage":{"min":23,"raw":75,"max":98},"rawHealth":{"min":53,"raw":175,"max":228},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":350,"baseEarthDefence":10,"baseFireDefence":25},"rarity":"legendary"},"Iceberries":{"internalName":"Iceberries","type":"ingredient","requirements":{"level":75,"skills":["alchemism"]},"icon":{"format":"legacy","value":"38:1"},"identifications":{"manaRegen":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mermaid","coords":[[-248,33,-5245,8],[-118,29,-5117,6],[-92,29,-5120,8],[-68,32,-5134,10],[-52,32,-5237,5],[-25,30,-5265,6],[-179,27,-5391,5]]},{"name":"Frost Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]}]},"Pirate Queen's Ring of Rubies":{"internalName":"Pirate Queen's Ring of Rubies","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":75,"quest":"Flight in Distress"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":3,"raw":9,"max":12},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":-50},"rarity":"rare"},"Aldo":{"internalName":"Aldo","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":304,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawIntelligence":5,"rawAgility":4,"rawHealth":{"min":-247,"raw":-190,"max":-133},"xpBonus":{"min":6,"raw":19,"max":25},"lootBonus":{"min":6,"raw":19,"max":25},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":80,"raw":80,"max":104},"baseWaterDamage":{"min":31,"raw":31,"max":45},"baseAirDamage":{"min":71,"raw":71,"max":75}},"rarity":"unique"},"Bob's Mythic Wand":{"internalName":"Bob's Mythic Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":314,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"mage","quest":"Reincarnation"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":10,"spellDamage":10,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":125,"raw":125,"max":180}},"rarity":"legendary"},"Douglas Fir":{"internalName":"Douglas Fir","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":75,"strength":35},"powderSlots":2,"identifications":{"rawStrength":5,"rawDefence":7,"rawMainAttackDamage":205,"healthRegen":20,"thorns":20,"earthDefence":15,"airDefence":-10},"base":{"baseHealth":1950,"baseEarthDefence":100},"rarity":"rare"},"Champion Boots":{"internalName":"Champion Boots","type":"armour","armourType":"boots","armourColor":"rgb(38,97,215)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":75,"quest":"Tower Of Ascension"},"powderSlots":2,"identifications":{"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1750},"rarity":"set"},"Penance":{"internalName":"Penance","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":15,"raw":50,"max":65},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1450,"baseWaterDefence":50,"baseFireDefence":50},"rarity":"unique"},"Pulse Mail":{"internalName":"Pulse Mail","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"dexterity":75},"powderSlots":3,"identifications":{"rawStrength":-10,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":29,"raw":95,"max":124},"healthRegen":{"min":-52,"raw":-40,"max":-28},"manaSteal":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-100,"raw":-77,"max":-54},"thunderDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1800,"baseEarthDefence":-110,"baseThunderDefence":100},"rarity":"legendary"},"Snowflake":{"internalName":"Snowflake","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"intelligence":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"healthRegenRaw":-55,"manaRegen":6,"manaSteal":4},"base":{"baseWaterDefence":20,"baseAirDefence":20},"rarity":"rare"},"Gnomish Topper":{"internalName":"Gnomish Topper","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":75,"agility":35},"powderSlots":2,"identifications":{"rawStrength":7,"rawAgility":4,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1500,"baseEarthDefence":50},"rarity":"rare"},"Magellan's Sail":{"internalName":"Magellan's Sail","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"intelligence":45,"agility":40},"powderSlots":2,"identifications":{"healthRegenRaw":{"min":-117,"raw":-90,"max":-63},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":5,"raw":16,"max":21},"waterDamage":{"min":4,"raw":14,"max":18},"airDamage":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":1900,"baseEarthDefence":-80,"baseWaterDefence":70,"baseAirDefence":60},"rarity":"rare"},"Royal Cyclone Amulet":{"internalName":"Royal Cyclone Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"WynnExcavation Site D"},"lore":"An exclusive amulet given to the most honored knights of Wynn. It whistles with an invigorating tune.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawAgility":3,"walkSpeed":10,"xpBonus":5,"lootBonus":5,"airDamage":5},"rarity":"legendary"},"Cold Wave":{"internalName":"Cold Wave","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":75,"intelligence":40},"majorIds":{"Flashfreeze":"+Flashfreeze: Ice Snake is instant and freezes for +1s."},"lore":"Feeling the fresh chill of the cold air is all you need to know you're really alive.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseAirDefence":20},"rarity":"fabled"},"Famine":{"internalName":"Famine","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"Eye of the Storm","agility":40},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawStrength":-3,"healthRegenRaw":-20,"lifeSteal":50,"walkSpeed":12},"base":{"baseEarthDefence":-20},"rarity":"unique"},"Bob's Mythic Bow":{"internalName":"Bob's Mythic Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":622,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"archer","quest":"Reincarnation"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":10,"spellDamage":10,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":380,"raw":380,"max":450}},"rarity":"legendary"},"Triumph":{"internalName":"Triumph","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1900},"rarity":"rare"},"Pedometer":{"internalName":"Pedometer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawAgility":7},"rarity":"unique"},"Blitzen":{"internalName":"Blitzen","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":75,"dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"manaSteal":4,"waterDamage":6},"base":{"baseHealth":-140,"baseWaterDefence":10},"rarity":"rare"},"Flash":{"internalName":"Flash","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":292,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"assassin","dexterity":50,"agility":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDexterity":4,"rawAgility":8,"rawHealth":{"min":-520,"raw":-400,"max":-280},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":36,"raw":36,"max":100}},"rarity":"unique"},"Ancient Runic Relik":{"internalName":"Ancient Runic Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":628,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"shaman","quest":"Reincarnation"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"411","name":"relik.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":10,"spellDamage":10,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":290,"raw":290,"max":320}},"rarity":"legendary"},"Thaw":{"internalName":"Thaw","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":242,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"mage","intelligence":25,"defence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawIntelligence":7,"rawDefence":4,"spellDamage":12,"manaRegen":6,"reflection":15,"exploding":20,"fireDefence":-12},"base":{"baseDamage":{"min":45,"raw":45,"max":60},"baseWaterDamage":{"min":35,"raw":35,"max":45},"baseFireDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Euouae":{"internalName":"Euouae","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":75,"dexterity":30,"agility":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawDexterity":4,"rawAgility":7,"walkSpeed":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":5,"max":7},"fireDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseFireDefence":-75},"rarity":"rare"},"Sad Gert Mask":{"internalName":"Sad Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"c8932a5640ded374b64549d587627fd4ce9a4d39fdd7f7a6ff48654fab184007"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Dodegar's Ultimate Weapon":{"internalName":"Dodegar's Ultimate Weapon","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":5,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75,"classRequirement":"assassin","quest":"The Ultimate Weapon"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"base":{"baseDamage":{"min":1,"raw":1,"max":3}},"rarity":"legendary"},"Hollow Branch":{"internalName":"Hollow Branch","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":206,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawSpellDamage":{"min":20,"raw":65,"max":85},"rawHealth":{"min":-325,"raw":-250,"max":-175},"poison":{"min":720,"raw":2400,"max":3120},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseAirDamage":{"min":45,"raw":45,"max":65}},"rarity":"unique"},"Zawah Jed":{"internalName":"Zawah Jed","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":475,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"assassin","quest":"Troubled Tribesmen","intelligence":30,"defence":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"rawIntelligence":6,"rawDefence":6,"rawAgility":6,"healthRegenRaw":115,"manaRegen":18,"reflection":15,"xpBonus":15},"base":{"baseDamage":{"min":36,"raw":36,"max":50},"baseWaterDamage":{"min":20,"raw":20,"max":25},"baseFireDamage":{"min":20,"raw":20,"max":25},"baseAirDamage":{"min":20,"raw":20,"max":25}},"rarity":"rare"},"Executioner Helmet":{"internalName":"Executioner Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75},"identifications":{"mainAttackDamage":{"min":8,"raw":27,"max":35},"rawSpellDamage":{"min":45,"raw":150,"max":195},"rawHealth":{"min":35,"raw":115,"max":150},"lifeSteal":{"min":80,"raw":265,"max":345},"manaSteal":{"min":2,"raw":8,"max":10}},"rarity":"rare"},"Ivory Bow":{"internalName":"Ivory Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":530,"dropRestriction":"normal","requirements":{"level":75,"classRequirement":"archer","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"elementalDamage":{"min":-13,"raw":-10,"max":-7},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":155,"raw":155,"max":185},"baseEarthDamage":{"min":15,"raw":15,"max":20},"baseThunderDamage":{"min":15,"raw":15,"max":20},"baseWaterDamage":{"min":15,"raw":15,"max":20},"baseFireDamage":{"min":15,"raw":15,"max":20},"baseAirDamage":{"min":15,"raw":15,"max":20}},"rarity":"rare"},"Hollow":{"internalName":"Hollow","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"strength":40,"agility":40},"identifications":{"rawAgility":7,"rawMainAttackDamage":{"min":42,"raw":140,"max":182},"lifeSteal":{"min":33,"raw":110,"max":143},"thorns":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1500},"rarity":"unique"},"Royal Dusty Amulet":{"internalName":"Royal Dusty Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"WynnExcavation Site D"},"lore":"An exclusive amulet given to the most honored knights of Wynn. It shines with a powerful strength.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":3,"mainAttackDamage":8,"xpBonus":5,"lootBonus":5,"earthDamage":5},"rarity":"legendary"},"Bob's Mythic Spear":{"internalName":"Bob's Mythic Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":420,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"warrior","quest":"Reincarnation"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"rawAgility":10,"mainAttackDamage":10,"spellDamage":10,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":250,"raw":250,"max":310}},"rarity":"legendary"},"Morph-Steel":{"internalName":"Morph-Steel","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"strength":35,"dexterity":35,"intelligence":35,"defence":35,"agility":35},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1750,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"set"},"Ring of Rubies":{"internalName":"Ring of Rubies","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":75,"quest":"Flight in Distress"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":4,"raw":12,"max":16},"stealing":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":-280},"rarity":"rare"},"Solid Iron Leggings":{"internalName":"Solid Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75},"powderSlots":2,"base":{"baseHealth":1280},"rarity":"common"},"Olit Vaniek":{"internalName":"Olit Vaniek","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":585,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"archer","quest":"Troubled Tribesmen","strength":30,"defence":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"199","name":"bow.fire3"}},"identifications":{"rawStrength":6,"rawDefence":6,"rawAgility":6,"rawHealth":1000,"thorns":20,"exploding":30,"xpBonus":15},"base":{"baseDamage":{"min":140,"raw":140,"max":175},"baseEarthDamage":{"min":70,"raw":70,"max":85},"baseFireDamage":{"min":70,"raw":70,"max":85},"baseAirDamage":{"min":70,"raw":70,"max":85}},"rarity":"rare"},"The Oppressors":{"internalName":"The Oppressors","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":75,"defence":75},"identifications":{"rawDexterity":-3,"rawIntelligence":-3,"rawDefence":17,"rawAgility":-3,"rawHealth":{"min":270,"raw":900,"max":1170},"rawAttackSpeed":-1,"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":2000},"rarity":"rare"},"Royal Shocking Amulet":{"internalName":"Royal Shocking Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"WynnExcavation Site D"},"lore":"An exclusive amulet given to the most honored knights of Wynn. It crackles with a chaotic energy.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":3,"rawMainAttackDamage":25,"thorns":5,"xpBonus":5,"lootBonus":5,"thunderDamage":5},"rarity":"legendary"},"Scared Gert Mask":{"internalName":"Scared Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"29fc29f00c0e600388346e0d2f89c9e96b9f8ba280827e559e06b9c2d8c92220"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Ice Skates":{"internalName":"Ice Skates","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":75,"agility":55},"powderSlots":2,"identifications":{"rawIntelligence":4,"manaRegen":6,"walkSpeed":18,"waterDamage":14,"fireDamage":-26,"airDamage":8},"base":{"baseHealth":1200,"baseWaterDefence":80,"baseFireDefence":-160,"baseAirDefence":55},"rarity":"unique"},"Royal Stormy Amulet":{"internalName":"Royal Stormy Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":75,"quest":"WynnExcavation Site D"},"lore":"An exclusive amulet given to the most honored knights of Wynn. It pulsates with a calming aura.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":3,"manaRegen":6,"xpBonus":5,"lootBonus":5,"waterDamage":5},"rarity":"legendary"},"Confused Gert Mask":{"internalName":"Confused Gert Mask","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":75},"icon":{"format":"skin","value":"349d80c86a6e1b1ad9d3628081eeb53cb1ab9fbaa6d189eae80a83613ef6b63e"},"base":{"baseHealth":1300,"baseEarthDefence":40,"baseFireDefence":-40},"rarity":"common"},"Slush Rush":{"internalName":"Slush Rush","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":415,"dropRestriction":"never","identified":true,"requirements":{"level":75,"classRequirement":"shaman","intelligence":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawAgility":5,"rawSpellDamage":95,"manaRegen":-6,"walkSpeed":20,"waterDefence":20,"airDefence":15},"base":{"baseDamage":{"min":40,"raw":40,"max":68},"baseWaterDamage":{"min":74,"raw":74,"max":86}},"rarity":"unique"},"Fuse":{"internalName":"Fuse","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"healthRegenRaw":{"min":9,"raw":30,"max":39}},"base":{"baseFireDefence":50},"rarity":"rare"},"Syndicate's Tome of Care I":{"internalName":"Syndicate's Tome of Care I","type":"tome","tomeType":"lootrun_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"85","name":"tome.lootrun"}},"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"healthRegen":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Syndicate's Tome of Hospitality I":{"internalName":"Syndicate's Tome of Hospitality I","type":"tome","tomeType":"lootrun_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"85","name":"tome.lootrun"}},"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"healingEfficiency":{"min":2,"raw":5,"max":7}},"rarity":"fabled"},"Syndicate's Tome of Safety I":{"internalName":"Syndicate's Tome of Safety I","type":"tome","tomeType":"lootrun_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"85","name":"tome.lootrun"}},"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"thorns":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Syndicate's Tome of Caution I":{"internalName":"Syndicate's Tome of Caution I","type":"tome","tomeType":"lootrun_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"85","name":"tome.lootrun"}},"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"reflection":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Syndicate's Tome of Dividends I":{"internalName":"Syndicate's Tome of Dividends I","type":"tome","tomeType":"lootrun_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":75},"dropMeta":{"name":"Lootrun Rewards","type":"lootrun","coordinates":[99999,99999,99999]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"85","name":"tome.lootrun"}},"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":1,"raw":2,"max":3}},"rarity":"fabled"},"Fish Scales":{"internalName":"Fish Scales","type":"ingredient","requirements":{"level":75,"skills":["armouring"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"waterDefence":{"min":2,"raw":2,"max":6},"thunderDefence":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mermaid","coords":[[-248,33,-5245,8],[-118,29,-5117,6],[-92,29,-5120,8],[-68,32,-5134,10],[-52,32,-5237,5],[-25,30,-5265,6],[-179,27,-5391,5]]},{"name":"Little Swimmer","coords":false},{"name":"Redfin Swimmer","coords":false},{"name":"Stingy Swimmer","coords":false},{"name":"Goldring Swimmer","coords":false}]},"Unholy Water":{"internalName":"Unholy Water","type":"ingredient","requirements":{"level":75,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"326:0"},"identifications":{"healingEfficiency":{"min":-4,"raw":-4,"max":-4},"waterDamage":{"min":8,"raw":8,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spectral Fairy","coords":false},{"name":"","coords":false}]},"Magicule Sample":{"internalName":"Magicule Sample","type":"ingredient","requirements":{"level":75,"skills":["alchemism"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"gatherXpBonus":{"min":4,"raw":4,"max":4},"manaSteal":{"min":4,"raw":4,"max":4},"spellDamage":{"min":-7,"raw":-7,"max":-5}},"tier":1,"consumableOnlyIDs":{"duration":-115,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gylia Beast","coords":[-156,37,-5270,160]},{"name":"Troggo The Pigsbane","coords":[-183,77,-5453,50]}]},"Compressed Aspect":{"internalName":"Compressed Aspect","type":"ingredient","requirements":{"level":75,"skills":["weaponsmithing"]},"icon":{"format":"skin","value":"4ec3bd1be1b5c9c5dea351f8c34f9a07bf0ee7643645a4435e52d7a78720fb"},"identifications":{"fireDamage":{"min":8,"raw":8,"max":8},"airDamage":{"min":8,"raw":8,"max":8},"healthRegenRaw":{"min":55,"raw":55,"max":55},"rawMainAttackDamage":{"min":-80,"raw":-80,"max":-80}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":10},"droppedBy":[{"name":"Steam Weird","coords":[[-886,58,-4286,0],[-889,58,-4285,0],[-890,57,-4282,0],[-891,57,-4279,0],[-893,58,-4276,0]]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Rising Weird","coords":[-950,64,-4337,14]}]},"Wood Scrap":{"internalName":"Wood Scrap","type":"ingredient","requirements":{"level":75,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"435:0"},"identifications":{"rawMainAttackDamage":{"min":20,"raw":20,"max":26}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wood Sprite","coords":[-1082,47,-4635,4]}]},"Sentient Water":{"internalName":"Sentient Water","type":"ingredient","requirements":{"level":75,"skills":["woodworking"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"rawIntelligence":{"min":3,"raw":3,"max":6},"manaSteal":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":18,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Whirl Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Nimbuseeker","coords":[[-407,44,-5226,10],[-313,44,-5439,6],[-412,33,-5128,4],[-374,33,-5159,7],[-362,33,-5112,10],[-342,33,-5169,10],[-309,32,-5155,6],[-293,34,-5229,7],[-272,33,-5122,7],[-190,35,-5107,6],[-214,34,-5060,8],[-187,43,-5025,8],[-158,33,-5045,7],[-168,32,-4981,8],[-344,32,-4978,3],[-128,35,-4750,8],[-128,35,-4750,8],[-166,34,-4843,8],[-449,36,-4714,8],[-419,34,-4742,7],[-380,32,-4761,10],[-355,33,-4779,8],[-367,34,-4726,8],[-332,33,-4742,12],[-321,32,-4771,10]]},{"name":"Cirruskater","coords":[[-407,44,-5226,10],[-313,44,-5439,6],[-412,33,-5128,4],[-374,33,-5159,7],[-362,33,-5112,10],[-342,33,-5169,10],[-309,32,-5155,6],[-293,34,-5229,7],[-272,33,-5122,7],[-190,35,-5107,6],[-214,34,-5060,8],[-187,43,-5025,8],[-158,33,-5045,7],[-168,32,-4981,8],[-344,32,-4978,3],[-128,35,-4750,8],[-128,35,-4750,8],[-166,34,-4843,8],[-449,36,-4714,8],[-419,34,-4742,7],[-380,32,-4761,10],[-355,33,-4779,8],[-367,34,-4726,8],[-332,33,-4742,12],[-321,32,-4771,10]]}]},"Atmospheric Aspect":{"internalName":"Atmospheric Aspect","type":"ingredient","requirements":{"level":75,"skills":["tailoring"]},"icon":{"format":"skin","value":"aa6dd75f41e4268e0a1269050907aa6746ffd37a4a929e732524642c336bc"},"identifications":{"thunderDamage":{"min":8,"raw":8,"max":8},"airDamage":{"min":8,"raw":8,"max":8},"rawSpellDamage":{"min":55,"raw":55,"max":55},"mainAttackDamage":{"min":-12,"raw":-12,"max":-12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-86000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Ozone Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Outlandish Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Shadowy Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Sparkling Weird","coords":[-809,10,-4915,15]}]},"Igneous Aspect":{"internalName":"Igneous Aspect","type":"ingredient","requirements":{"level":75,"skills":["tailoring","woodworking"]},"icon":{"format":"skin","value":"c2b0a2709ad27c5783ba7acbdae8787d17673f0888f1b6d4e24ee13298d4"},"identifications":{"earthDamage":{"min":8,"raw":8,"max":8},"fireDamage":{"min":8,"raw":8,"max":8},"rawHealth":{"min":500,"raw":500,"max":500},"spellDamage":{"min":-10,"raw":-10,"max":-10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-88000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Redline Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]}]},"Illuminated Spirit":{"internalName":"Illuminated Spirit","type":"ingredient","requirements":{"level":75,"skills":["jeweling"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"rawDexterity":{"min":1,"raw":1,"max":1},"stealing":{"min":-2,"raw":-2,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Effulgent Antibody","coords":[[-780,73,-6045,30],[-806,82,-6243,20]]},{"name":"Orange Woolly","coords":[-811,49,-6154,7]},{"name":"Pink Woolly","coords":[-811,49,-6154,7]},{"name":"Regenerator","coords":[[-878,59,-6107,0],[-902,60,-6143,0],[-881,60,-6145,0],[-880,61,-6172,0],[-885,59,-6189,0],[-916,59,-6179,0],[-925,54,-6160,0],[-940,61,-6210,0],[-955,58,-6177,0]]},{"name":"Drifting Spirit","coords":[[-813,84,-6063,15],[-822,78,-6172,15],[-902,71,-5977,8]]}]},"Hatchling Remnant":{"internalName":"Hatchling Remnant","type":"ingredient","requirements":{"level":75,"skills":["armouring","scribing"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"lifeSteal":{"min":40,"raw":40,"max":50},"airDamage":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-115,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-61000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12},"droppedBy":[{"name":"Dark Hive","coords":[[-905,48,-6182,30],[-776,50,-6142,40],[-817,84,-6060,15]]},{"name":"Hatchling","coords":null}]},"Unicorn Horn":{"internalName":"Unicorn Horn","type":"ingredient","requirements":{"level":75,"skills":["cooking","weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"198:0"},"tier":3,"consumableOnlyIDs":{"duration":-1100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":25,"notTouching":50},"itemOnlyIDs":{"durabilityModifier":-192000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]}]},"Arcane Anomaly":{"internalName":"Arcane Anomaly","type":"ingredient","requirements":{"level":75,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"manaRegen":{"min":3,"raw":3,"max":3},"spellDamage":{"min":-11,"raw":-11,"max":-8}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Shadowy Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Peculiar Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Decay Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Sinking Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Gel Weird","coords":[-500,73,-5273,0]},{"name":"Muddled Weird","coords":[[-534,77,-5288,0],[-534,77,-5288,3],[-482,75,-5315,0],[-490,75,-5314,0],[-485,75,-5321,0]]},{"name":"Melting Weird","coords":[-502,47,-5293,30]},{"name":"Explosive Weird","coords":[-502,47,-5293,30]},{"name":"Outlandish Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Light Weird","coords":[[-851,46,-4256,7],[-887,56,-4202,7]]},{"name":"Prismatic Weird","coords":[[-851,46,-4256,7],[-887,56,-4202,7]]},{"name":"Curious Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Formative Weird","coords":[[-851,46,-4256,7],[-887,56,-4202,7]]},{"name":"Rising Weird","coords":[-950,64,-4337,14]},{"name":"Earth Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Energized Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Galeforce Weird","coords":[[-889,73,-4242,0],[-917,72,-4218,0],[-874,72,-4224,0],[-906,64,-4235,0]]},{"name":"Steam Weird","coords":[[-886,58,-4286,0],[-889,58,-4285,0],[-890,57,-4282,0],[-891,57,-4279,0],[-893,58,-4276,0]]},{"name":"Hollow Weird","coords":[-950,64,-4337,14]},{"name":"Anima Weird","coords":[-886,57,-4195,0]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Fire Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Whirl Weird","coords":[[-186,48,-5124,20],[-73,43,-5049,15],[-16,44,-5083,25],[-7,43,-5140,38],[-7,43,-5140,38],[-32,37,-5196,15],[12,36,-5229,15],[8,43,-5310,15],[-255,41,-5313,20]]},{"name":"Elemental Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Magnetized Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Intense Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Frost Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Ozone Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Redline Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Breathless Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Cosmic Weird","coords":[[-914,53,-5317,8],[-906,48,-5337,6]]},{"name":"Moonlight Weird","coords":[-934,48,-5344,0]},{"name":"Cosmic Weird","coords":[-809,10,-4915,15]},{"name":"Sparkling Weird","coords":[-809,10,-4915,15]},{"name":"Cosmic Weird","coords":[1,106,-5006,50]},{"name":"Sunlight Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Gravitic Weird","coords":[1,106,-5006,50]}]},"Wintery Aspect":{"internalName":"Wintery Aspect","type":"ingredient","requirements":{"level":75,"skills":["armouring","weaponsmithing"]},"icon":{"format":"skin","value":"87d66f93909a6d4641c653082e04749691de82cf77232bd20ab32adf4f"},"identifications":{"waterDamage":{"min":8,"raw":8,"max":8},"airDamage":{"min":8,"raw":8,"max":8},"spellDamage":{"min":8,"raw":8,"max":8},"manaRegen":{"min":-6,"raw":-6,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-86000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Frost Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Weather Weird","coords":[[-115,38,-5395,8],[-86,42,-5375,15],[-33,33,-5346,15]]},{"name":"Polar Weird","coords":[[-1080,44,-4415,30],[-988,72,-4392,30]]},{"name":"Wasteful Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Peculiar Weird","coords":[[-510,64,-5441,32],[-546,56,-5344,50]]},{"name":"Formative Weird","coords":[[-851,46,-4256,7],[-887,56,-4202,7]]}]},"Gathering Rod T9":{"internalName":"Gathering Rod 9","type":"tool","toolType":"rod","gatheringSpeed":190,"identified":true,"requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"59","name":"gatheringTool.rod9"}},"rarity":"common"},"Gathering Axe T9":{"internalName":"Gathering Axe 9","type":"tool","toolType":"axe","gatheringSpeed":190,"identified":true,"requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"49","name":"gatheringTool.axe9"}},"rarity":"common"},"Gathering Scythe T9":{"internalName":"Gathering Scythe 9","type":"tool","toolType":"scythe","gatheringSpeed":190,"identified":true,"requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"64","name":"gatheringTool.scythe9"}},"rarity":"common"},"Gathering Pickaxe T9":{"internalName":"Gathering Pickaxe 9","type":"tool","toolType":"pickaxe","gatheringSpeed":190,"identified":true,"requirements":{"level":75},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"54","name":"gatheringTool.pickaxe9"}},"rarity":"common"},"Wreathbound Boots":{"internalName":"Wreathbound Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":75,"strength":50},"powderSlots":3,"identifications":{"rawStrength":8,"mainAttackDamage":20,"earthMainAttackDamage":15,"1stSpellCost":12,"thorns":30,"healingEfficiency":12,"airDefence":-12},"base":{"baseHealth":1935,"baseEarthDefence":85},"rarity":"rare"},"Corrupted Witherhead's Elbow":{"internalName":"Corrupted Witherhead's Bow","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":639,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"archer","dexterity":50,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":8,"damage":15,"lifeSteal":385,"airSpellDamage":20,"walkSpeed":-15,"slowEnemy":8},"base":{"baseDamage":{"min":37,"raw":37,"max":80},"baseThunderDamage":{"min":10,"raw":10,"max":170}},"rarity":"legendary"},"Geyser":{"internalName":"Geyser","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"intelligence":35,"defence":35,"agility":35},"powderSlots":2,"identifications":{"rawAgility":7,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"healthRegenRaw":{"min":30,"raw":100,"max":130},"manaRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":5,"raw":15,"max":20},"exploding":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":-130,"raw":-100,"max":-70},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2100,"baseWaterDefence":65,"baseFireDefence":65,"baseAirDefence":65},"rarity":"legendary"},"Dragon's Tongue":{"internalName":"Dragon's Tongue","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":405,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"warrior","intelligence":55,"defence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawIntelligence":10,"rawDefence":10,"mainAttackDamage":{"min":-31,"raw":-24,"max":-17},"spellDamage":{"min":-31,"raw":-24,"max":-17},"healthRegen":{"min":14,"raw":46,"max":60},"healthRegenRaw":{"min":39,"raw":131,"max":170},"manaRegen":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-58,"raw":-45,"max":-31},"thunderDamage":{"min":-58,"raw":-45,"max":-31}},"base":{"baseDamage":{"min":70,"raw":70,"max":110},"baseWaterDamage":{"min":70,"raw":70,"max":110},"baseFireDamage":{"min":70,"raw":70,"max":110}},"rarity":"legendary"},"Pacifist":{"internalName":"Pacifist","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"intelligence":20,"agility":25},"powderSlots":2,"identifications":{"healthRegen":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":-240,"raw":-185,"max":-129},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":6,"raw":21,"max":27},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1600,"baseEarthDefence":45,"baseWaterDefence":20},"rarity":"rare"},"Pure Granite Relik":{"internalName":"Pure Granite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":346,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":225,"raw":225,"max":236}},"rarity":"common"},"Tragedy":{"internalName":"Tragedy","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":247,"dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"mage","intelligence":25},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawStrength":-10,"rawHealth":-100,"manaRegen":-5,"manaSteal":-5,"healingEfficiency":18,"waterDamage":50},"base":{"baseDamage":{"min":50,"raw":50,"max":65},"baseWaterDamage":{"min":40,"raw":40,"max":85}},"rarity":"rare"},"Miotal":{"internalName":"Miotal","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":432,"dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"archer","strength":25},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":5,"rawHealth":300,"fireDamage":25,"earthDefence":10,"fireDefence":10},"base":{"baseDamage":{"min":144,"raw":144,"max":240},"baseEarthDamage":{"min":72,"raw":72,"max":120}},"rarity":"unique"},"Refraction":{"internalName":"Refraction","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"strength":18,"dexterity":18,"intelligence":18,"defence":18,"agility":18},"powderSlots":2,"identifications":{"lifeSteal":{"min":33,"raw":110,"max":143},"manaSteal":{"min":1,"raw":4,"max":5},"elementalDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1300,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"unique"},"Cold Integrity":{"internalName":"Cold Integrity","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":232,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"shaman","intelligence":55,"agility":40},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"408","name":"relik.water3"}},"identifications":{"rawIntelligence":15,"rawSpellDamage":{"min":240,"raw":800,"max":1040},"rawHealth":{"min":-1950,"raw":-1500,"max":-1050},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":22,"raw":72,"max":94},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":48,"raw":48,"max":51},"baseAirDamage":{"min":24,"raw":24,"max":27}},"rarity":"legendary"},"Power Bracelet":{"internalName":"Power Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":74},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":7},"rarity":"unique"},"Pure Granite Spear":{"internalName":"Pure Granite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":230,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":260,"raw":260,"max":295}},"rarity":"common"},"Caffeine":{"internalName":"Caffeine","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":74,"agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawAgility":3,"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-160},"rarity":"unique"},"Az":{"internalName":"Az","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":664,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"archer","dexterity":80},"powderSlots":5,"lore":"Mysterious runes, held by inexplicable ancient guardians, were once moulded together for study purposes. The experiment went awry, as the runic words Nii, Az, and Ek were combined in a reaction that resulted in the collapse of a civilization.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawIntelligence":15,"rawDefence":15,"1stSpellCost":{"min":-7,"raw":-23,"max":-30},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":12,"raw":40,"max":52},"fireDamage":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":110,"raw":110,"max":170},"baseThunderDamage":{"min":1,"raw":1,"max":250}},"rarity":"mythic"},"Vandal's Touch":{"internalName":"Vandal's Touch","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":435,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"assassin","strength":20,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawSpellDamage":{"min":-78,"raw":-60,"max":-42},"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7},"earthDamage":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":50,"raw":50,"max":112},"baseAirDamage":{"min":50,"raw":50,"max":210}},"rarity":"rare"},"Pure Granite Dagger":{"internalName":"Pure Granite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":289,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":130,"raw":130,"max":151}},"rarity":"common"},"Spiked Helmet":{"internalName":"Spiked Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"strength":25,"defence":35},"powderSlots":2,"identifications":{"rawDefence":7,"mainAttackDamage":{"min":5,"raw":18,"max":23},"thorns":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"fireDefence":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":1950,"baseEarthDefence":95,"baseAirDefence":-70},"rarity":"rare"},"Stone Crunch":{"internalName":"Stone Crunch","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":549,"dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"shaman","strength":40},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawMainAttackDamage":160,"manaSteal":-4,"thorns":20,"earthDamage":10,"waterDefence":-20},"base":{"baseDamage":{"min":100,"raw":100,"max":113},"baseEarthDamage":{"min":145,"raw":145,"max":175}},"rarity":"rare"},"Swimmer Net":{"internalName":"Swimmer Net","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":424,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawDexterity":5,"raw4thSpellCost":{"min":-4,"raw":-15,"max":-19},"sprintRegen":{"min":8,"raw":25,"max":33},"jumpHeight":1,"waterDamage":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseWaterDamage":{"min":80,"raw":80,"max":94},"baseAirDamage":{"min":45,"raw":45,"max":55}},"rarity":"unique"},"Rotary Crossbow":{"internalName":"Rotary Crossbow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":425,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"archer","intelligence":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawHealth":{"min":240,"raw":800,"max":1040},"lifeSteal":{"min":68,"raw":225,"max":293},"exploding":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-18,"raw":-14,"max":-10},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":50,"raw":50,"max":80},"baseFireDamage":{"min":30,"raw":30,"max":100}},"rarity":"unique"},"Depth":{"internalName":"Depth","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":304,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"mage","defence":20,"agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"328","name":"wand.air3"}},"identifications":{"rawDefence":5,"rawHealth":900,"walkSpeed":10,"fireDamage":12,"airDamage":12},"base":{"baseDamage":{"min":45,"raw":45,"max":55},"baseFireDamage":{"min":30,"raw":30,"max":45},"baseAirDamage":{"min":55,"raw":55,"max":65}},"rarity":"legendary"},"Calidum Aurea":{"internalName":"Calidum Aurea","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"defence":25},"powderSlots":3,"identifications":{"rawDefence":5,"spellDamage":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":6,"raw":19,"max":25},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1650,"baseWaterDefence":-95,"baseFireDefence":100},"rarity":"unique"},"Nightmare":{"internalName":"Nightmare","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":431,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":74,"classRequirement":"warrior","defence":70},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"470","name":"spear.fire3"}},"identifications":{"rawAgility":12,"healthRegen":30,"lifeSteal":255,"waterDamage":-20,"fireDamage":10,"airDamage":15},"base":{"baseFireDamage":{"min":200,"raw":200,"max":225},"baseAirDamage":{"min":50,"raw":50,"max":100}},"rarity":"legendary"},"Vei Haon":{"internalName":"Vei Haon","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":74,"quest":"Troubled Tribesmen","strength":50,"defence":50,"agility":50},"powderSlots":3,"identifications":{"rawDexterity":-20,"rawIntelligence":-20,"healthRegen":25,"earthDamage":15,"fireDamage":15,"airDamage":15,"earthDefence":40,"fireDefence":40,"airDefence":40},"base":{"baseHealth":2000,"baseEarthDefence":175,"baseThunderDefence":-75,"baseWaterDefence":-75,"baseFireDefence":175,"baseAirDefence":175},"rarity":"rare"},"Warden":{"internalName":"Warden","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":308,"dropRestriction":"never","requirements":{"level":74,"classRequirement":"mage","dexterity":65},"majorIds":{"Lockdown":"+Lockdown: Meteor will snap onto a target in range, regardless of aim."},"powderSlots":4,"lore":"\"I've been wishin' I was dead for a long time.\"","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawIntelligence":-15,"rawThunderSpellDamage":{"min":50,"raw":165,"max":215},"healthRegenRaw":{"min":-260,"raw":-200,"max":-140},"manaSteal":{"min":3,"raw":9,"max":12},"3rdSpellCost":{"min":-4,"raw":-12,"max":-16},"airDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseThunderDamage":{"min":25,"raw":25,"max":275}},"rarity":"fabled"},"Leggings of Restoration":{"internalName":"Leggings of Restoration","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"intelligence":20,"defence":20},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":24,"raw":80,"max":104},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1400,"baseThunderDefence":-60,"baseWaterDefence":60,"baseFireDefence":60,"baseAirDefence":-60},"rarity":"unique"},"The Forgery":{"internalName":"The Forgery","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"defence":30},"powderSlots":2,"lore":"While only a mockery of the original product, this line of helmets became wildly popular before legal disputes and safety concerns halted production.","identifications":{"rawDefence":9,"healthRegen":{"min":11,"raw":36,"max":47},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"lootBonus":{"min":6,"raw":19,"max":25},"stealing":{"min":2,"raw":5,"max":7},"fireDamage":{"min":3,"raw":11,"max":14},"earthDefence":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":-6,"raw":-5,"max":-3},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":11,"raw":35,"max":46},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":2350,"baseThunderDefence":30,"baseFireDefence":100,"baseAirDefence":30},"rarity":"legendary"},"Wayfinder":{"internalName":"Wayfinder","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":342,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"assassin","intelligence":15,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawIntelligence":4,"rawAgility":4,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":8,"max":10},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":75,"raw":75,"max":100},"baseWaterDamage":{"min":35,"raw":35,"max":50},"baseAirDamage":{"min":32,"raw":32,"max":40}},"rarity":"unique"},"Proto-Shield":{"internalName":"Proto-Shield","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"defence":75},"identifications":{"rawDefence":13,"rawHealth":{"min":127,"raw":423,"max":550},"earthDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":1,"raw":3,"max":4},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1550,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"unique"},"Corrupted Nii Plate":{"internalName":"Corrupted Nii Plate","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":74,"intelligence":65},"powderSlots":2,"dropMeta":{"name":"Corrupted Infested Pit","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"identifications":{"rawIntelligence":10,"waterDamage":20,"waterDefence":10},"base":{"baseHealth":1625,"baseThunderDefence":-75,"baseWaterDefence":100},"rarity":"set"},"Siwel's Guilt":{"internalName":"Siwel's Guilt","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":74,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"healthRegen":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":8,"raw":28,"max":36},"rawHealth":{"min":111,"raw":370,"max":481},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":-6,"raw":-5,"max":-3}},"rarity":"rare"},"Puppeteer":{"internalName":"Puppeteer","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74},"powderSlots":3,"lore":"\\[Community Event Winner\\]","identifications":{"rawStrength":7,"rawDexterity":-5,"rawAgility":7,"mainAttackDamage":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":-169,"raw":-130,"max":-91},"thorns":{"min":8,"raw":25,"max":33},"rawAttackSpeed":-1,"walkSpeed":{"min":6,"raw":21,"max":27}},"base":{"baseHealth":1400},"rarity":"rare"},"Lazybones":{"internalName":"Lazybones","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":355,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"healthRegen":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":265,"raw":265,"max":335},"baseWaterDamage":{"min":110,"raw":110,"max":145}},"rarity":"unique"},"Frigid":{"internalName":"Frigid","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"intelligence":35,"agility":35},"powderSlots":2,"identifications":{"rawIntelligence":4,"rawAgility":4,"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-14,"raw":-11,"max":-8},"fireDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseHealth":1270,"baseThunderDefence":-75,"baseWaterDefence":75,"baseFireDefence":-75,"baseAirDefence":75},"rarity":"unique"},"Iniquity":{"internalName":"Iniquity","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":74,"strength":30,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"rawDexterity":4,"poison":{"min":119,"raw":395,"max":514},"earthDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDefence":40,"baseThunderDefence":60,"baseWaterDefence":-40,"baseAirDefence":-60},"rarity":"rare"},"Virtue":{"internalName":"Virtue","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":342,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"warrior","intelligence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"479","name":"spear.multi3"}},"identifications":{"rawAgility":-6,"spellDamage":{"min":3,"raw":9,"max":12},"manaSteal":{"min":4,"raw":12,"max":16},"reflection":{"min":3,"raw":9,"max":12},"rawAttackSpeed":-1,"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":15,"raw":15,"max":350},"baseWaterDamage":{"min":210,"raw":210,"max":250}},"rarity":"rare"},"Axion":{"internalName":"Unusual","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74},"powderSlots":5,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"rawElementalDamage":{"min":45,"raw":150,"max":195},"rawElementalMainAttackDamage":{"min":48,"raw":160,"max":208}},"base":{"baseEarthDefence":-35,"baseThunderDefence":-35,"baseWaterDefence":-35,"baseFireDefence":-35,"baseAirDefence":-35},"rarity":"rare"},"Pure Granite Bow":{"internalName":"Pure Granite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":350,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":388,"raw":388,"max":455}},"rarity":"common"},"Soul Ink":{"internalName":"Soul Ink","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"intelligence":40,"agility":25},"powderSlots":1,"lore":"Taken from the Archwraith by a pious Shaman, this chestplate was immediately abandoned. Its few users since have turned to an all-consuming desire to seek out and realign the last vestiges of purity remaining in the Kander Forest.","identifications":{"manaRegen":{"min":-10,"raw":-8,"max":-6},"manaSteal":{"min":4,"raw":14,"max":18},"rawWaterSpellDamage":{"min":34,"raw":113,"max":147},"airSpellDamage":{"min":8,"raw":25,"max":33},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":1713,"baseThunderDefence":-50,"baseWaterDefence":35,"baseFireDefence":35},"rarity":"legendary"},"Amadeus":{"internalName":"Amadeus","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":465,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"assassin","intelligence":50,"defence":30},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawDefence":15,"spellDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":-286,"raw":-220,"max":-154},"manaRegen":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":130,"raw":130,"max":150},"baseWaterDamage":{"min":160,"raw":160,"max":180}},"rarity":"legendary"},"Detective's Ring":{"internalName":"Detective's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":74,"quest":"Murder Mystery"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":2,"raw":7,"max":9},"xpBonus":{"min":3,"raw":10,"max":13}},"rarity":"rare"},"Gysdep":{"internalName":"Gysdep","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":74,"quest":"Troubled Tribesmen","intelligence":50,"defence":50,"agility":50},"powderSlots":3,"identifications":{"rawStrength":-20,"rawDexterity":-20,"rawHealth":500,"waterDamage":10,"fireDamage":10,"airDamage":10,"waterDefence":25,"fireDefence":25,"airDefence":25},"base":{"baseHealth":2000,"baseEarthDefence":-100,"baseThunderDefence":-100,"baseWaterDefence":150,"baseFireDefence":150,"baseAirDefence":150},"rarity":"rare"},"Helmet of Shimmering Light":{"internalName":"Helmet of Shimmering Light","type":"armour","armourType":"helmet","armourColor":"rgb(233,233,204)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":74},"powderSlots":3,"base":{"baseHealth":1850},"rarity":"rare"},"Pure Granite Wand":{"internalName":"Pure Granite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":172,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":100,"raw":100,"max":130}},"rarity":"common"},"Calor":{"internalName":"Calor","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":74,"defence":45},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawDefence":7,"healthRegen":15,"healthRegenRaw":70,"fireDamage":10,"waterDefence":-20,"fireDefence":10},"base":{"baseHealth":1875,"baseFireDefence":100},"rarity":"rare"},"Solid Iron Boots":{"internalName":"Solid Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74},"powderSlots":2,"base":{"baseHealth":1240},"rarity":"common"},"Clock Boots":{"internalName":"Clock Boots","type":"armour","armourType":"boots","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":74},"powderSlots":2,"identifications":{"rawStrength":-8,"rawDexterity":3,"mainAttackDamage":-35,"rawMainAttackDamage":26,"spellDamage":-40,"rawAttackSpeed":1,"walkSpeed":10,"xpBonus":6},"base":{"baseHealth":950},"rarity":"set"},"Scum":{"internalName":"Scum","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":74,"quest":"Eye of the Storm","intelligence":30},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"poison":350,"waterDamage":7},"base":{"baseWaterDefence":20},"rarity":"unique"},"Kizuato":{"internalName":"Kizuato","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":74,"dexterity":20,"defence":20},"powderSlots":2,"identifications":{"rawDefence":3,"lifeSteal":{"min":42,"raw":140,"max":182},"thorns":{"min":3,"raw":11,"max":14},"exploding":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1550,"baseThunderDefence":80,"baseWaterDefence":-70,"baseFireDefence":80,"baseAirDefence":-70},"rarity":"unique"},"War Pike":{"internalName":"War Pike","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":308,"dropRestriction":"normal","requirements":{"level":74,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawStrength":7,"rawDefence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":233,"raw":775,"max":1008},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":160,"raw":160,"max":250}},"rarity":"unique"},"Gilded Bark":{"internalName":"Gilded Bark","type":"ingredient","requirements":{"level":74,"skills":["cooking"]},"icon":{"format":"legacy","value":"382:0"},"identifications":{"manaRegen":{"min":6,"raw":6,"max":6},"healthRegen":{"min":10,"raw":10,"max":14},"healthRegenRaw":{"min":24,"raw":24,"max":42}},"tier":3,"consumableOnlyIDs":{"duration":-720,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mandragora","coords":[[-1328,44,-4612,25],[-1256,43,-4601,25]]},{"name":"Middousagi","coords":[[-1258,50,-4926,1],[-1250,44,-4934,1],[-1283,50,-5072,1],[-1273,44,-5078,0],[-1275,44,-5080,0],[-1282,45,-5073,1],[-1290,56,-5043,1],[-1295,59,-5040,1]]},{"name":"Auresc Bough","coords":null}]},"Gollier Iron":{"internalName":"Gollier Iron","type":"ingredient","requirements":{"level":74,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":4},"walkSpeed":{"min":-5,"raw":-5,"max":-3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-86000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gollier","coords":[-743,51,-4505,7]}]},"Shadow of Ruin":{"internalName":"Shadow of Ruin","type":"ingredient","requirements":{"level":74,"skills":["woodworking"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"mainAttackDamage":{"min":12,"raw":12,"max":14},"healthRegenRaw":{"min":-35,"raw":-35,"max":-30}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-86000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]},{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Radiant Seeds":{"internalName":"Radiant Seeds","type":"ingredient","requirements":{"level":74,"skills":["armouring"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":4},"thunderDamage":{"min":6,"raw":6,"max":9},"thunderDefence":{"min":6,"raw":6,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-86000,"strengthRequirement":0,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Auresc Bough","coords":null},{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]}]},"Prized Coin":{"internalName":"Golden Coin","type":"ingredient","requirements":{"level":74,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"175:0"},"identifications":{"lootBonus":{"min":4,"raw":4,"max":5},"xpBonus":{"min":4,"raw":4,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Hunter","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]}]},"King of Blocks":{"internalName":"King of Blocks","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":428,"dropRestriction":"normal","requirements":{"level":73,"classRequirement":"archer","strength":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":160,"raw":160,"max":240},"baseEarthDamage":{"min":70,"raw":70,"max":100}},"rarity":"unique"},"Burn":{"internalName":"Burn","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":73},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"exploding":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Blob Monster Mask":{"internalName":"Blob Monster Mask","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":73,"strength":55},"powderSlots":6,"identifications":{"spellDamage":-20,"healthRegenRaw":120,"poison":2950,"lifeSteal":175,"walkSpeed":-10},"base":{"baseHealth":2075,"baseEarthDefence":90,"baseAirDefence":-40},"rarity":"rare"},"Cyanine":{"internalName":"Cyanine","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"intelligence":55},"powderSlots":2,"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-22,"raw":-17,"max":-12},"waterDamage":{"min":8,"raw":25,"max":33},"thunderDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1200,"baseThunderDefence":-120,"baseWaterDefence":90},"rarity":"unique"},"Whitestone":{"internalName":"Whitestone","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"intelligence":25,"agility":15},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":2,"raw":7,"max":9},"healthRegen":{"min":6,"raw":20,"max":26},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":6,"max":8},"xpBonus":{"min":3,"raw":10,"max":13},"waterDefence":{"min":2,"raw":7,"max":9},"airDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1200},"rarity":"unique"},"Aerodynamics":{"internalName":"Aerodynamics","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":35,"agility":50},"powderSlots":1,"identifications":{"rawAgility":8,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":5,"raw":16,"max":21},"thunderDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1400,"baseEarthDefence":-80,"baseThunderDefence":60,"baseFireDefence":-70,"baseAirDefence":70},"rarity":"unique"},"Toxotes":{"internalName":"Toxotes","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":512,"dropRestriction":"normal","requirements":{"level":73,"classRequirement":"archer","strength":20,"intelligence":40},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-780,"raw":-600,"max":-420},"waterDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseWaterDamage":{"min":175,"raw":175,"max":235}},"rarity":"rare"},"Orographine":{"internalName":"Orographine","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"strength":20,"dexterity":20,"intelligence":20,"defence":20,"agility":20},"powderSlots":5,"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":120,"raw":400,"max":520},"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1350,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"unique"},"Ricin":{"internalName":"Ricin","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","dropRestriction":"normal","requirements":{"level":73,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"mainAttackDamage":{"min":-65,"raw":-50,"max":-35},"rawSpellDamage":{"min":38,"raw":125,"max":163},"poison":{"min":1125,"raw":3750,"max":4875},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":3,"raw":10,"max":13}},"rarity":"rare"},"Brook":{"internalName":"Brook","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"intelligence":45},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-9,"raw":-7,"max":-5},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1300,"baseThunderDefence":-150,"baseWaterDefence":130},"rarity":"unique"},"Reliquiae":{"internalName":"Reliquiae","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":73},"majorIds":{"Rusted Ichor":"+Rusted Ichor: Boiling Blood inflicts increased slowness with a shorter cooldown, but deals no damage."},"powderSlots":3,"lore":"Ancient and new hearts beat as one.","identifications":{"rawDefence":12,"healthRegen":{"min":4,"raw":12,"max":16},"1stSpellCost":{"min":-4,"raw":-12,"max":-16},"rawAttackSpeed":-1,"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":7,"raw":24,"max":31}},"base":{"baseHealth":2750,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":100,"baseFireDefence":100,"baseAirDefence":100},"rarity":"fabled"},"Ensa's Faith":{"internalName":"Ensa's Faith","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":73,"intelligence":25},"lore":"The scholar-priest Ensa created this pendant as a personal prayer while his home was under siege. It is rumored to hold the key to enlightenment, but it is unknown as to how.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"healthRegen":{"min":7,"raw":23,"max":30},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDefence":60,"baseFireDefence":-30},"rarity":"legendary"},"Magic Cloak":{"internalName":"Magic Cloak","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":73,"intelligence":35},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawIntelligence":5,"mainAttackDamage":-15,"spellDamage":12,"rawSpellDamage":30,"waterDamage":20},"base":{"baseHealth":1350,"baseWaterDefence":90},"rarity":"unique"},"Autotomized":{"internalName":"Autotomized","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":73,"agility":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"rawStrength":-3,"rawDefence":-3,"rawAgility":7,"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":-300},"rarity":"unique"},"Destructor":{"internalName":"Destructor","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":720,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":73,"classRequirement":"archer","dexterity":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"mainAttackDamage":35,"rawMainAttackDamage":315,"spellDamage":-15,"walkSpeed":-100,"exploding":100,"earthDamage":25,"thunderDamage":10},"base":{"baseDamage":{"min":460,"raw":460,"max":500}},"rarity":"legendary"},"Egression":{"internalName":"Egression","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"agility":60},"powderSlots":3,"identifications":{"rawAgility":13,"mainAttackDamage":{"min":-58,"raw":-45,"max":-31},"spellDamage":{"min":-58,"raw":-45,"max":-31},"walkSpeed":{"min":7,"raw":23,"max":30},"xpBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":21,"raw":70,"max":91}},"base":{"baseEarthDefence":-100,"baseAirDefence":100},"rarity":"unique"},"Regar":{"internalName":"Regar","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":425,"dropRestriction":"never","identified":true,"requirements":{"level":73,"classRequirement":"assassin","intelligence":25},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawMainAttackDamage":-91,"spellDamage":15,"rawSpellDamage":65,"waterDamage":30},"base":{"baseDamage":{"min":80,"raw":80,"max":125},"baseWaterDamage":{"min":25,"raw":25,"max":44}},"rarity":"rare"},"Iodide":{"internalName":"Iodide","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":20,"intelligence":15},"powderSlots":3,"identifications":{"rawIntelligence":4,"spellDamage":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":1180,"baseEarthDefence":-60,"baseThunderDefence":70},"rarity":"unique"},"Disfigured Vessel":{"internalName":"Disfigured Vessel","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":73},"majorIds":{"Mangle":"+Mangle: Lacerate will deal +1 slash."},"lore":"An imperfect fit, but you can make a better one.","identifications":{"rawSpellDamage":{"min":53,"raw":175,"max":228},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"poison":{"min":600,"raw":2000,"max":2600},"lifeSteal":{"min":44,"raw":145,"max":189},"1stSpellCost":{"min":33,"raw":25,"max":18}},"base":{"baseHealth":1600,"baseEarthDefence":-80,"baseThunderDefence":-80,"baseWaterDefence":-80,"baseFireDefence":-80,"baseAirDefence":-80},"rarity":"fabled"},"Infernal Impulse":{"internalName":"Infernal Impulse","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":20,"defence":55},"majorIds":{"Rally":"+Rally: Charge heals you by 10% and nearby allies by 15% on impact, but becomes harmless."},"powderSlots":3,"lore":"If the depths of hell allows you this, is staying human an equal trade or a fool's choice?","identifications":{"spellDamage":{"min":5,"raw":16,"max":21},"manaRegen":{"min":-8,"raw":-6,"max":-4},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"jumpHeight":1,"thunderDefence":{"min":5,"raw":18,"max":23},"fireDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":2300,"baseThunderDefence":65,"baseWaterDefence":-80,"baseFireDefence":95,"baseAirDefence":-80},"rarity":"fabled"},"Clay":{"internalName":"Clay","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":73},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":50},"rarity":"rare"},"Mazurka":{"internalName":"Mazurka","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":447,"dropRestriction":"normal","requirements":{"level":73,"classRequirement":"shaman","dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":16,"raw":54,"max":70},"rawSpellDamage":{"min":30,"raw":101,"max":131},"rawHealth":{"min":-975,"raw":-750,"max":-525},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":1,"raw":1,"max":207}},"rarity":"unique"},"Torch":{"internalName":"Torch","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":248,"dropRestriction":"never","identified":true,"requirements":{"level":73,"classRequirement":"mage","defence":30},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":5,"rawHealth":400,"waterDamage":-60,"fireDamage":70},"base":{"baseDamage":{"min":130,"raw":130,"max":200}},"rarity":"rare"},"Diminished":{"internalName":"Diminished","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":73,"quest":"Eye of the Storm"},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawIntelligence":-2,"rawDefence":-2,"rawAgility":-2,"mainAttackDamage":7,"spellDamage":7,"rawHealth":300,"manaSteal":4,"walkSpeed":8,"xpBonus":-8},"rarity":"unique"},"Helios Lux":{"internalName":"Helios Lux","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":73,"dexterity":45,"agility":45},"majorIds":{"Gentle Glow":"+Gentle Glow: Orphion's Pulse and Fluid Healing restore more health, especially to allies, but at a slower speed."},"powderSlots":2,"identifications":{"rawDexterity":8,"rawAgility":8,"thunderSpellDamage":{"min":5,"raw":18,"max":23},"airSpellDamage":{"min":5,"raw":18,"max":23},"lifeSteal":{"min":-195,"raw":-150,"max":-105},"sprintRegen":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":2000,"baseThunderDefence":70,"baseAirDefence":70},"rarity":"fabled"},"Void":{"internalName":"Void","type":"armour","armourType":"helmet","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":73,"agility":60},"powderSlots":2,"identifications":{"rawIntelligence":-10,"walkSpeed":15,"xpBonus":15,"lootBonus":15,"airDamage":15},"base":{"baseHealth":1400,"baseAirDefence":80},"rarity":"rare"},"Passus Lux":{"internalName":"Passus Lux","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":25,"intelligence":25},"majorIds":{"Lightweight":"+Lightweight: You no longer take fall damage."},"powderSlots":2,"lore":"A brilliant relic supposedly originating from the Realm of Light, the creators of these strangely shaped boots are completely unknown.","identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":1700,"baseEarthDefence":-110,"baseThunderDefence":120,"baseWaterDefence":120},"rarity":"legendary"},"Clock Helm":{"internalName":"Clock Helm","type":"armour","armourType":"helmet","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":73},"powderSlots":2,"identifications":{"rawAgility":3,"mainAttackDamage":10,"manaRegen":-6,"manaSteal":4,"walkSpeed":6,"xpBonus":6},"base":{"baseHealth":1400},"rarity":"set"},"Sound Proof Earmuff":{"internalName":"Sound Proof Earmuff","type":"armour","armourType":"helmet","armourColor":"rgb(255,255,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":73},"powderSlots":1,"base":{"baseHealth":1500,"baseEarthDefence":-50,"baseThunderDefence":50},"rarity":"rare"},"Particle Plating":{"internalName":"Particle Plating","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":40,"intelligence":45},"powderSlots":3,"identifications":{"rawDexterity":7,"rawIntelligence":7,"rawSpellDamage":{"min":26,"raw":85,"max":111},"manaSteal":{"min":1,"raw":4,"max":5},"airDamage":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1300,"baseEarthDefence":-100,"baseThunderDefence":60,"baseWaterDefence":80,"baseAirDefence":-40},"rarity":"unique"},"Moonsetter":{"internalName":"Moonsetter","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":73,"classRequirement":"mage","dexterity":10,"defence":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawIntelligence":-3,"healthRegen":{"min":4,"raw":12,"max":16},"exploding":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-6,"raw":-5,"max":-3},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":30,"raw":30,"max":75},"baseFireDamage":{"min":45,"raw":45,"max":60}},"rarity":"unique"},"The Siren's Call":{"internalName":"The Siren's Call","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":73,"quest":"Hollow Serenity","strength":20,"agility":30},"powderSlots":2,"lore":"“I have hope in me the likes of which you could never imagine, and despair the likes of which you shall never fathom. If I cannot satisfy the one, then I will indulge the other.”","identifications":{"rawStrength":5,"rawDefence":-3,"rawAgility":5,"rawMainAttackDamage":{"min":53,"raw":176,"max":229},"rawSpellDamage":{"min":41,"raw":135,"max":176},"lifeSteal":{"min":-199,"raw":-153,"max":-107},"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6},"walkSpeed":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":1445,"baseThunderDefence":-75,"baseFireDefence":-75},"rarity":"legendary"},"Heavy Aegis":{"internalName":"Heavy Aegis","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":73,"strength":35},"powderSlots":1,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawStrength":5,"mainAttackDamage":15,"spellDamage":-12,"earthDamage":20,"earthDefence":10},"base":{"baseHealth":1500,"baseEarthDefence":75},"rarity":"unique"},"Solum":{"internalName":"Solum","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":73,"strength":40},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawStrength":7,"thorns":15,"earthDamage":15,"earthDefence":15,"thunderDefence":10,"fireDefence":10,"airDefence":-10},"base":{"baseHealth":1700,"baseEarthDefence":110},"rarity":"rare"},"Trauma":{"internalName":"Trauma","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73,"dexterity":45,"agility":45},"powderSlots":1,"identifications":{"rawDexterity":5,"rawIntelligence":-10,"rawAgility":5,"rawMainAttackDamage":{"min":44,"raw":145,"max":189},"thunderDamage":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1650,"baseThunderDefence":30,"baseAirDefence":30},"rarity":"rare"},"Solid Iron Helmet":{"internalName":"Solid Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":73},"powderSlots":2,"base":{"baseHealth":1205},"rarity":"common"},"Antipollen":{"internalName":"Luxic Plasma","type":"ingredient","requirements":{"level":73,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"239:0"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":8},"reflection":{"min":2,"raw":2,"max":4},"thorns":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-62000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Antifloret","coords":[[-756,56,-6190,0],[-768,57,-6205,0],[-746,67,-6087,0],[-750,72,-6053,0]]},{"name":"Antifloret","coords":[[-740,71,-6068,0],[-754,72,-6057,0],[-732,65,-6109,0],[-783,55,-6176,0],[-786,56,-6173,0],[-786,55,-6168,0],[-760,56,-6186,0],[-772,57,-6202,0]]},{"name":"Blue Antifloret","coords":[-777,89,-6064,0]}]},"Bright Petal":{"internalName":"Bright Petal","type":"ingredient","requirements":{"level":73,"skills":["cooking"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"reflection":{"min":2,"raw":2,"max":4},"xpBonus":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-240,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Antifloret","coords":[[-756,56,-6190,0],[-768,57,-6205,0],[-746,67,-6087,0],[-750,72,-6053,0]]},{"name":"Antifloret","coords":[[-740,71,-6068,0],[-754,72,-6057,0],[-732,65,-6109,0],[-783,55,-6176,0],[-786,56,-6173,0],[-786,55,-6168,0],[-760,56,-6186,0],[-772,57,-6202,0]]},{"name":"Blue Antifloret","coords":[-777,89,-6064,0]},{"name":"Cherry Treent","coords":[-811,49,-6154,7]},{"name":"Lotus Germinator","coords":null}]},"Stack of Coins":{"internalName":"Stack of Coins","type":"ingredient","requirements":{"level":73,"skills":["jeweling"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"xpBonus":{"min":1,"raw":1,"max":2},"lootBonus":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-84000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Hunter","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]},{"name":"Bandit Alchemist","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]},{"name":"Bandit Knife Juggler","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]},{"name":"Bandit Tracker","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]}]},"Prickly Grass":{"internalName":"Prickly Grass","type":"ingredient","requirements":{"level":73,"skills":["alchemism","tailoring"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"thorns":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-78,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Alchemist","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]}]},"Nova Bloom":{"internalName":"Nova Bloom","type":"ingredient","requirements":{"level":73,"skills":["jeweling","scribing"]},"icon":{"format":"legacy","value":"38:8"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":1},"fireDamage":{"min":3,"raw":3,"max":3},"rawSpellDamage":{"min":12,"raw":12,"max":15}},"tier":1,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]},{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Ivy Sprout":{"internalName":"Ivy Sprout","type":"ingredient","requirements":{"level":73,"skills":["cooking"]},"icon":{"format":"legacy","value":"6:3"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"poison":{"min":160,"raw":160,"max":200},"exploding":{"min":10,"raw":10,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":-330,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Auresc Bough","coords":null},{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]}]},"Smokebomb":{"internalName":"Smokebomb","type":"ingredient","requirements":{"level":73,"skills":["alchemism"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"rawAgility":{"min":5,"raw":5,"max":6},"walkSpeed":{"min":11,"raw":11,"max":12},"rawHealth":{"min":-400,"raw":-400,"max":-350}},"tier":2,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Bandit Tracker","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]}]},"Purest Tear":{"internalName":"Purest Tear","type":"ingredient","requirements":{"level":73,"skills":["alchemism"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"healthRegen":{"min":4,"raw":4,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Light Fairy","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Pond Nymph","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]},{"name":"Sylph","coords":null}]},"Broken Dagger":{"internalName":"Broken Dagger","type":"ingredient","requirements":{"level":73,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"mainAttackDamage":{"min":8,"raw":8,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":15,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bandit Knife Juggler","coords":[[-162,33,-5060,6],[-132,33,-5076,8],[-134,34,-4994,8],[-150,33,-5012,7],[-96,36,-5413,8],[-402,33,-5136,6],[-429,34,-5163,6],[-452,34,-5124,6],[-551,38,-5103,7],[-393,35,-4720,6],[-408,35,-4736,7],[-756,43,-4919,7],[-706,43,-4865,7]]}]},"Talcum":{"internalName":"Talcum","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"strength":40},"powderSlots":2,"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":8,"max":10},"poison":{"min":372,"raw":1240,"max":1612},"lootBonus":{"min":3,"raw":11,"max":14},"earthDamage":{"min":4,"raw":14,"max":18},"waterDefence":{"min":-17,"raw":-13,"max":-9},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1325,"baseEarthDefence":40,"baseAirDefence":-80},"rarity":"unique"},"Crying Heart":{"internalName":"Crying Heart","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":244,"dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"mage","dexterity":25},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":10,"lifeSteal":-145,"earthDamage":15,"thunderDamage":10},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseThunderDamage":{"min":25,"raw":25,"max":100}},"rarity":"unique"},"Pure Jungle Dagger":{"internalName":"Pure Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":275,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":100,"raw":100,"max":120}},"rarity":"common"},"Marvel":{"internalName":"Marvel","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":72,"intelligence":50,"agility":10},"lore":"The stellar quality of the coral jewels set into the ring comes from a magical purification process, involving a decade-long soak in mystical Gylia water.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":3,"raw":11,"max":14},"reflection":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":-100,"baseEarthDefence":-25,"baseWaterDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Pure Jungle Bow":{"internalName":"Pure Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":346,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":216,"raw":216,"max":245}},"rarity":"common"},"Sorrow":{"internalName":"Sorrow","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":72,"intelligence":95},"powderSlots":1,"identifications":{"spellDamage":8,"manaRegen":6,"manaSteal":-16,"raw1stSpellCost":-5,"waterDamage":42},"base":{"baseHealth":1400,"baseThunderDefence":-150,"baseWaterDefence":150},"rarity":"rare"},"Morning Star":{"internalName":"Morning Star","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":338,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"reflection":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-6,"raw":-5,"max":-3},"airDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":90,"raw":90,"max":140},"baseFireDamage":{"min":80,"raw":80,"max":140}},"rarity":"rare"},"Jester Bracelet":{"internalName":"Jester Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":72},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"xpBonus":{"min":-32,"raw":-25,"max":-17},"lootBonus":{"min":-32,"raw":-25,"max":-17}},"rarity":"set"},"Outburst":{"internalName":"Outburst","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"dexterity":45,"agility":45},"powderSlots":2,"identifications":{"rawDexterity":9,"rawAgility":9,"mainAttackDamage":{"min":4,"raw":13,"max":17},"spellDamage":{"min":4,"raw":13,"max":17},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thunderDamage":{"min":5,"raw":16,"max":21},"airDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":1350,"baseEarthDefence":-55,"baseFireDefence":-55},"rarity":"rare"},"Letum":{"internalName":"Letum","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":72,"dexterity":35},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawDexterity":7,"rawDefence":-10,"mainAttackDamage":15,"spellDamage":15,"exploding":10,"thunderDamage":25,"earthDefence":-15},"base":{"baseHealth":1050,"baseThunderDefence":65},"rarity":"rare"},"Recovery":{"internalName":"Recovery","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":72,"quest":"Eye of the Storm"},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"healthRegen":8,"healthRegenRaw":40,"walkSpeed":-5},"base":{"baseHealth":140},"rarity":"unique"},"Abyssal Amulet":{"internalName":"Abyssal Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":72},"lore":"Used by the Order of the Abyss to aid their summoning rituals, it contains a strange, fiery energy. It has ties with a terrible demon...","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"poison":{"min":120,"raw":400,"max":520},"lifeSteal":{"min":23,"raw":75,"max":98}},"base":{"baseThunderDefence":30,"baseFireDefence":30},"rarity":"legendary"},"Vinecrawlers":{"internalName":"Vinecrawlers","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"strength":45},"powderSlots":2,"identifications":{"rawStrength":7,"rawDefence":7,"healthRegenRaw":{"min":18,"raw":60,"max":78},"poison":{"min":428,"raw":1425,"max":1853},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":1750,"baseEarthDefence":90,"baseAirDefence":-70},"rarity":"rare"},"Pure Jungle Wand":{"internalName":"Pure Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":169,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":70,"raw":70,"max":94}},"rarity":"common"},"Soundgarden":{"internalName":"Soundgarden","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":442,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"shaman","strength":20,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawSpellDamage":{"min":33,"raw":110,"max":143},"lifeSteal":{"min":-182,"raw":-140,"max":-98},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"reflection":{"min":8,"raw":25,"max":33},"earthDamage":{"min":4,"raw":14,"max":18},"waterDamage":{"min":-32,"raw":-25,"max":-17},"airDamage":{"min":4,"raw":14,"max":18}},"base":{"baseEarthDamage":{"min":87,"raw":87,"max":99},"baseAirDamage":{"min":82,"raw":82,"max":86}},"rarity":"unique"},"Searing Knife":{"internalName":"Searing Knife","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":314,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"assassin","defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"healthRegen":{"min":5,"raw":18,"max":23},"exploding":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":80,"raw":80,"max":110},"baseFireDamage":{"min":45,"raw":45,"max":70}},"rarity":"unique"},"Bubble":{"internalName":"Bubble","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":72},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5}},"base":{"baseWaterDefence":50},"rarity":"rare"},"Charger":{"internalName":"Charger","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":72,"dexterity":15,"agility":15},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawDexterity":3,"rawAgility":3,"mainAttackDamage":8,"spellDamage":8,"walkSpeed":16,"thunderDamage":12,"airDamage":12},"base":{"baseHealth":850,"baseThunderDefence":35,"baseAirDefence":35},"rarity":"unique"},"Aether":{"internalName":"Aether","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":212,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"mage","dexterity":25,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseThunderDamage":{"min":0,"raw":0,"max":70},"baseAirDamage":{"min":0,"raw":0,"max":70}},"rarity":"unique"},"Inmate Outfit":{"internalName":"Inmate Outfit","type":"armour","armourType":"chestplate","armourColor":"rgb(51,76,178)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":72},"base":{"baseHealth":1550},"rarity":"common"},"Symphony":{"internalName":"Symphony","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"intelligence":50,"defence":50},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":21,"raw":70,"max":91},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"reflection":{"min":5,"raw":17,"max":22},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1350,"baseEarthDefence":-90,"baseThunderDefence":-90,"baseWaterDefence":80,"baseFireDefence":80},"rarity":"unique"},"Guard's Uniform":{"internalName":"Guard's Uniform","type":"armour","armourType":"helmet","armourColor":"rgb(51,76,178)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":72},"base":{"baseHealth":1150},"rarity":"common"},"Emerald Staff":{"internalName":"Emerald Staff","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":218,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawMainAttackDamage":{"min":-84,"raw":-65,"max":-45},"rawSpellDamage":{"min":-65,"raw":-50,"max":-35},"lootBonus":{"min":8,"raw":25,"max":33},"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseEarthDamage":{"min":60,"raw":60,"max":80}},"rarity":"rare"},"Acevro":{"internalName":"Acevro","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":484,"dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"archer","agility":30},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawDefence":-10,"manaRegen":6,"walkSpeed":15,"waterDamage":40,"airDamage":20},"base":{"baseDamage":{"min":105,"raw":105,"max":150},"baseAirDamage":{"min":85,"raw":85,"max":130}},"rarity":"rare"},"Scalding Scimitar":{"internalName":"Scalding Scimitar","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":357,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"assassin","intelligence":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"healthRegen":{"min":-39,"raw":-30,"max":-21},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"waterDamage":{"min":8,"raw":25,"max":33},"fireDamage":{"min":8,"raw":25,"max":33},"earthDefence":{"min":-39,"raw":-30,"max":-21},"thunderDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":110,"raw":110,"max":230},"baseWaterDamage":{"min":60,"raw":60,"max":200},"baseFireDamage":{"min":60,"raw":60,"max":200}},"rarity":"unique"},"Wall Breaker":{"internalName":"Wall Breaker","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":455,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"assassin","strength":80},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"262","name":"dagger.earth3"}},"identifications":{"rawStrength":10,"mainAttackDamage":65,"spellDamage":-60,"walkSpeed":-20,"exploding":100,"airDamage":15},"base":{"baseDamage":{"min":225,"raw":225,"max":335},"baseEarthDamage":{"min":100,"raw":100,"max":1125}},"rarity":"legendary"},"Groundshakers":{"internalName":"Groundshakers","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"strength":35},"powderSlots":3,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":50,"raw":165,"max":215},"rawSpellDamage":{"min":-71,"raw":-55,"max":-38},"manaRegen":{"min":-8,"raw":-6,"max":-4},"lootBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1400,"baseEarthDefence":80,"baseAirDefence":-80},"rarity":"unique"},"Quasar":{"internalName":"Quasar","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":300,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"warrior","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"elementalDefence":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":70,"raw":70,"max":130},"baseEarthDamage":{"min":0,"raw":0,"max":40},"baseThunderDamage":{"min":0,"raw":0,"max":40},"baseWaterDamage":{"min":0,"raw":0,"max":40},"baseFireDamage":{"min":0,"raw":0,"max":40},"baseAirDamage":{"min":0,"raw":0,"max":40}},"rarity":"unique"},"Windscarred Leggings":{"internalName":"Chinked Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"defence":20},"powderSlots":1,"identifications":{"rawDefence":8,"healthRegen":{"min":4,"raw":12,"max":16},"rawHealth":{"min":195,"raw":650,"max":845},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"earthDefence":{"min":2,"raw":7,"max":9},"thunderDefence":{"min":2,"raw":7,"max":9},"fireDefence":{"min":5,"raw":15,"max":20},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1650,"baseFireDefence":90,"baseAirDefence":-160},"rarity":"unique"},"Tenacity":{"internalName":"Tenacity","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":512,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"warrior","defence":40,"agility":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawMainAttackDamage":{"min":23,"raw":75,"max":98},"healthRegenRaw":{"min":30,"raw":100,"max":130},"rawHealth":{"min":-975,"raw":-750,"max":-525},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"sprint":{"min":14,"raw":45,"max":59},"fireDefence":{"min":11,"raw":35,"max":46}},"base":{"baseFireDamage":{"min":70,"raw":70,"max":70},"baseAirDamage":{"min":95,"raw":95,"max":95}},"rarity":"legendary"},"Australis":{"internalName":"Australis","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":462,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"shaman","strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":-16,"raw":-12,"max":-8},"rawHealth":{"min":180,"raw":600,"max":780},"reflection":{"min":7,"raw":24,"max":31},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseEarthDamage":{"min":34,"raw":34,"max":40},"baseThunderDamage":{"min":34,"raw":34,"max":40},"baseWaterDamage":{"min":34,"raw":34,"max":40},"baseFireDamage":{"min":34,"raw":34,"max":40},"baseAirDamage":{"min":34,"raw":34,"max":40}},"rarity":"unique"},"Black Ring":{"internalName":"Black Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":72,"dexterity":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Shining Spore":{"internalName":"Shining Spore","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":72},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"neutralMainAttackDamage":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"lootBonus":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1675,"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"rare"},"Bane":{"internalName":"Bane","type":"armour","armourType":"leggings","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":72,"dexterity":50},"powderSlots":2,"identifications":{"rawDexterity":17,"rawMainAttackDamage":125,"thorns":40,"exploding":30},"base":{"baseHealth":700,"baseThunderDefence":120},"rarity":"rare"},"Router":{"internalName":"Router","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":72,"strength":15,"defence":15},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawStrength":3,"rawDefence":3,"rawAgility":-5,"walkSpeed":-12,"earthDamage":10,"fireDamage":10},"base":{"baseHealth":1750,"baseEarthDefence":50,"baseFireDefence":50},"rarity":"unique"},"Ascension":{"internalName":"Ascension","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":465,"dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"shaman","dexterity":25,"agility":25},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawStrength":-4,"rawDexterity":8,"rawDefence":-4,"rawAgility":8,"manaSteal":4,"walkSpeed":12,"waterDamage":-15},"base":{"baseDamage":{"min":30,"raw":30,"max":30},"baseThunderDamage":{"min":60,"raw":60,"max":60},"baseAirDamage":{"min":60,"raw":60,"max":60}},"rarity":"unique"},"Cloud Cover":{"internalName":"Cloud Cover","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"intelligence":15,"agility":40},"powderSlots":2,"identifications":{"rawAgility":8,"healthRegenRaw":{"min":18,"raw":60,"max":78},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-14,"raw":-11,"max":-8},"waterDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1000,"baseThunderDefence":-70,"baseAirDefence":80},"rarity":"unique"},"Magmatic Plate":{"internalName":"Magmatic Plate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"strength":40,"defence":50},"identifications":{"rawStrength":9,"rawDefence":10,"mainAttackDamage":{"min":7,"raw":22,"max":29},"exploding":{"min":6,"raw":19,"max":25},"earthDamage":{"min":8,"raw":28,"max":36},"fireDamage":{"min":8,"raw":28,"max":36},"waterDefence":{"min":-44,"raw":-34,"max":-24}},"base":{"baseHealth":1400,"baseWaterDefence":-130},"rarity":"rare"},"Flex":{"internalName":"Flex","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72,"strength":70},"powderSlots":2,"identifications":{"rawStrength":8,"rawIntelligence":-6,"rawAgility":5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"rawHealth":{"min":120,"raw":400,"max":520},"manaRegen":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":1000,"baseEarthDefence":50,"baseFireDefence":-95,"baseAirDefence":40},"rarity":"unique"},"Fluffster":{"internalName":"Fluffster","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":281,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"warrior","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"healthRegen":{"min":6,"raw":19,"max":25},"rawHealth":{"min":90,"raw":300,"max":390},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":55,"raw":55,"max":95},"baseAirDamage":{"min":85,"raw":85,"max":140}},"rarity":"unique"},"Plated Iron Chestplate":{"internalName":"Plated Iron Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":72},"powderSlots":2,"base":{"baseHealth":1165},"rarity":"common"},"Antipathy":{"internalName":"Antipathy","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":448,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"archer","dexterity":40,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":8,"rawDefence":-8,"rawAgility":8,"spellDamage":{"min":5,"raw":16,"max":21},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-18,"raw":-14,"max":-10},"waterDefence":{"min":-18,"raw":-14,"max":-10},"fireDefence":{"min":-34,"raw":-26,"max":-18}},"base":{"baseDamage":{"min":70,"raw":70,"max":85},"baseThunderDamage":{"min":60,"raw":60,"max":80},"baseAirDamage":{"min":60,"raw":60,"max":80}},"rarity":"unique"},"Pure Jungle Spear":{"internalName":"Pure Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":225,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":135,"raw":135,"max":165}},"rarity":"common"},"Paranoia":{"internalName":"Paranoia","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":602,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"shaman","defence":35,"agility":35},"powderSlots":3,"dropMeta":{"name":"Corrupted Decrepit Sewers","type":"dungeonMerchant","coordinates":[-861,123,-4896]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"healthRegenRaw":-100,"lifeSteal":200,"manaRegen":-6,"manaSteal":8,"1stSpellCost":-28,"walkSpeed":15},"base":{"baseDamage":{"min":81,"raw":81,"max":81},"baseFireDamage":{"min":80,"raw":80,"max":80},"baseAirDamage":{"min":80,"raw":80,"max":80}},"rarity":"legendary"},"Pure Jungle Relik":{"internalName":"Pure Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":339,"dropRestriction":"normal","requirements":{"level":72,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":162,"raw":162,"max":167}},"rarity":"common"},"Diabloviento":{"internalName":"Diabloviento","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":294,"dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"warrior","agility":25},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"walkSpeed":15,"fireDamage":25,"airDamage":15},"base":{"baseAirDamage":{"min":90,"raw":90,"max":100}},"rarity":"unique"},"Enerxia":{"internalName":"Enerxia","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":406,"dropRestriction":"never","identified":true,"requirements":{"level":72,"classRequirement":"assassin","dexterity":20},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":5,"mainAttackDamage":10,"manaSteal":4,"earthDamage":-15,"thunderDamage":20},"base":{"baseDamage":{"min":80,"raw":80,"max":130},"baseThunderDamage":{"min":45,"raw":45,"max":70}},"rarity":"rare"},"Fanatic":{"internalName":"Fanatic","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":72,"quest":"Eye of the Storm"},"dropMeta":{"name":"Lexdale","type":"merchant","coordinates":[-601,65,-5443]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawIntelligence":-5,"spellDamage":8,"rawSpellDamage":40},"rarity":"unique"},"Conflagrite":{"internalName":"Conflagrite","type":"ingredient","requirements":{"level":72,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"259:0"},"identifications":{"healingEfficiency":{"min":3,"raw":3,"max":3},"rawFireDamage":{"min":35,"raw":35,"max":40}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-85000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Imphirnu","coords":[-575,23,-487,10]},{"name":"Scorch Blob","coords":null},{"name":"Fulgurant Amatiti","coords":[[-534,17,-390,6],[-531,20,-415,5]]},{"name":"Igneous Paladin","coords":[[-481,25,-411,2],[-480,14,-369,2],[-482,14,-377,2],[-507,14,-368,2],[-542,19,-390,2]]}]},"Prismatic Spores":{"internalName":"Prismatic Spores","type":"ingredient","requirements":{"level":72,"skills":["scribing"]},"icon":{"format":"legacy","value":"19:1"},"identifications":{"healingEfficiency":{"min":3,"raw":3,"max":3},"elementalDamage":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":-235,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Flera Myconid","coords":[-937,47,-4701,27]},{"name":"Ethrela Myconid","coords":[-937,47,-4701,27]},{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]},{"name":"Jad'lr Myconid","coords":[[-886,45,-4723,5],[-920,45,-4689,5],[-979,44,-4683,5],[-1074,44,-4507,5],[-1017,52,-4481,5],[-1079,44,-4436,5],[-1024,45,-4841,5],[-1031,45,-4858,5],[-1127,45,-5056,5],[-1181,45,-5101,5],[-1233,46,-4900,5]]},{"name":"Azur Myconid","coords":[-937,47,-4701,27]},{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]}]},"Glowing Scales":{"internalName":"Glowing Scales","type":"ingredient","requirements":{"level":72,"skills":["armouring"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"thorns":{"min":5,"raw":5,"max":12},"reflection":{"min":5,"raw":5,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Aldor-Nix","coords":[[-706,43,-4765,5],[-799,27,-4740,5]]},{"name":"Tiontaith Beast","coords":[[-484,84,-5555,30],[-484,84,-5555,30],[-394,51,-5575,18],[-342,66,-5516,18],[-343,75,-5467,10],[-342,43,-5395,20],[-391,44,-5403,15],[-428,46,-5366,20],[-448,50,-5411,18]]},{"name":"Tiontaith Hunter","coords":[-413,74,-5532,4]}]},"Fairy Dust":{"internalName":"Fairy Dust","type":"ingredient","requirements":{"level":72,"skills":["scribing"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"rawSpellDamage":{"min":30,"raw":30,"max":33}},"tier":0,"consumableOnlyIDs":{"duration":-80,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Light Fairy","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Auresc Bough","coords":null}]},"Werewolf Tail":{"internalName":"Werewolf Tail","type":"ingredient","requirements":{"level":72,"skills":["tailoring","alchemism"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":3},"rawDefence":{"min":-3,"raw":-3,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":-78,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Werewolf","coords":[[-849,47,-5277,20],[-831,47,-5233,25],[-805,47,-5201,20],[-794,44,-5166,15],[-771,45,-5109,20],[-721,46,-5089,30],[-678,43,-5055,25],[-752,47,-5329,25],[-719,47,-5308,20],[-559,43,-5209,15],[-593,44,-5250,20]]},{"name":"Werewolf","coords":[[-849,47,-5277,20],[-831,47,-5233,25],[-805,47,-5201,20],[-794,44,-5166,15],[-771,45,-5109,20],[-721,46,-5089,30],[-678,43,-5055,25],[-752,47,-5329,25],[-719,47,-5308,20],[-559,43,-5209,15],[-593,44,-5250,20]]},{"name":"Enraged Werewolf","coords":null}]},"Shining Wool":{"internalName":"Shining Wool","type":"ingredient","requirements":{"level":72,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"35:0"},"identifications":{"earthDamage":{"min":1,"raw":1,"max":2},"thunderDamage":{"min":1,"raw":1,"max":2},"waterDamage":{"min":1,"raw":1,"max":2},"fireDamage":{"min":1,"raw":1,"max":2},"airDamage":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Orange Woolly","coords":[-811,49,-6154,7]},{"name":"Pink Woolly","coords":[-811,49,-6154,7]}]},"Generator Chip":{"internalName":"Generator Chip","type":"ingredient","requirements":{"level":72,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"rawDexterity":{"min":5,"raw":5,"max":7},"thunderDefence":{"min":7,"raw":7,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-85000,"strengthRequirement":0,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Beastial Viscera":{"internalName":"Beastial Viscera","type":"ingredient","requirements":{"level":72,"skills":["scribing"]},"icon":{"format":"legacy","value":"153:0"},"identifications":{"rawHealth":{"min":400,"raw":400,"max":550},"mainAttackDamage":{"min":6,"raw":6,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dern Minion","coords":[857,63,-3929,60]},{"name":"Dern Beast","coords":false},{"name":"§Fool Eater","coords":null}]},"Recluse Venom Sac":{"internalName":"Recluse Venom Sac","type":"ingredient","requirements":{"level":72,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"poison":{"min":640,"raw":640,"max":710}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Recluse Spiderling","coords":null},{"name":"Recluse Spider","coords":[[-737,21,-4865,4],[-737,21,-4865,4],[-716,30,-4855,6],[-706,28,-4847,6],[-706,28,-4847,6],[-689,32,-4848,4],[-668,7,-4864,6],[-668,7,-4864,6]]}]},"Searing Soles":{"internalName":"Searing Soles","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":71,"defence":25},"powderSlots":1,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawDefence":5,"healthRegen":20,"exploding":5,"waterDamage":-10,"fireDamage":15},"base":{"baseHealth":1450,"baseFireDefence":65},"rarity":"unique"},"Neon":{"internalName":"Neon","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":71,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"elementalDamage":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Short Circuit":{"internalName":"Short Circuit","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"dexterity":50,"intelligence":15},"powderSlots":2,"identifications":{"spellDamage":{"min":4,"raw":14,"max":18},"lifeSteal":{"min":-156,"raw":-120,"max":-84},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":5,"raw":18,"max":23},"thunderDamage":{"min":5,"raw":17,"max":22},"waterDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":1300,"baseThunderDefence":-60},"rarity":"rare"},"Silkworm":{"internalName":"Silkworm","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"agility":38},"powderSlots":2,"identifications":{"rawDefence":-10,"rawAgility":9,"healthRegen":{"min":8,"raw":25,"max":33},"poison":{"min":345,"raw":1150,"max":1495},"walkSpeed":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1350,"baseFireDefence":-50,"baseAirDefence":30},"rarity":"rare"},"Abyssal Walkers":{"internalName":"Abyssal Walkers","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"dexterity":25,"defence":25},"powderSlots":2,"identifications":{"rawDexterity":7,"poison":{"min":354,"raw":1180,"max":1534},"lifeSteal":{"min":30,"raw":100,"max":130},"exploding":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":1350,"baseThunderDefence":80,"baseWaterDefence":-100,"baseFireDefence":80,"baseAirDefence":-80},"rarity":"unique"},"Wind Murmurs":{"internalName":"Wind Murmurs","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":390,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"shaman","agility":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawAgility":12,"mainAttackDamage":{"min":-23,"raw":-18,"max":-13},"spellDamage":{"min":-12,"raw":-9,"max":-6},"reflection":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":60,"raw":60,"max":86},"baseAirDamage":{"min":76,"raw":76,"max":90}},"rarity":"unique"},"Hellkite's Beak":{"internalName":"Hellkite's Beak","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":500,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"archer","dexterity":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawIntelligence":-6,"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":3,"raw":11,"max":14},"exploding":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":90,"raw":90,"max":130},"baseThunderDamage":{"min":45,"raw":45,"max":75},"baseFireDamage":{"min":55,"raw":55,"max":90}},"rarity":"rare"},"Spontaneous":{"internalName":"Spontaneous","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":71,"defence":20,"agility":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawHealth":{"min":-429,"raw":-330,"max":-231},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":2,"raw":8,"max":10},"exploding":{"min":4,"raw":12,"max":16}},"rarity":"rare"},"Visceral Chest":{"internalName":"Visceral Chest","type":"armour","armourType":"chestplate","armourColor":"rgb(154,92,81)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":71},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"healthRegenRaw":{"min":15,"raw":50,"max":65}},"base":{"baseHealth":1545,"baseEarthDefence":-25,"baseThunderDefence":-25,"baseWaterDefence":-25,"baseFireDefence":-25,"baseAirDefence":-25},"rarity":"set"},"Vortex":{"internalName":"Vortex","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"dexterity":35,"agility":55},"powderSlots":2,"identifications":{"rawDexterity":5,"rawAgility":8,"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"rawSpellDamage":{"min":30,"raw":100,"max":130},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":1250,"baseEarthDefence":-120,"baseThunderDefence":60,"baseAirDefence":60},"rarity":"unique"},"Plated Iron Leggings":{"internalName":"Plated Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71},"powderSlots":2,"base":{"baseHealth":1130},"rarity":"common"},"Ebrithil":{"internalName":"Ebrithil","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":71,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Boomslang":{"internalName":"Boomslang","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":71},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":3,"healthRegen":-10,"healthRegenRaw":-30,"poison":500},"rarity":"rare"},"Teal Helm":{"internalName":"Teal Helm","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"intelligence":25},"powderSlots":2,"identifications":{"rawStrength":5,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":6,"max":8},"earthDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":1300,"baseEarthDefence":30,"baseWaterDefence":50},"rarity":"unique"},"Ivoire":{"internalName":"Ivoire","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":212,"dropRestriction":"never","identified":true,"requirements":{"level":71,"classRequirement":"mage","agility":15},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawIntelligence":5,"rawHealth":200,"waterDamage":40},"base":{"baseDamage":{"min":5,"raw":5,"max":10},"baseAirDamage":{"min":55,"raw":55,"max":100}},"rarity":"unique"},"Chaotic":{"internalName":"Chaotic","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":360,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"archer","dexterity":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":9,"walkSpeed":{"min":2,"raw":7,"max":9},"exploding":{"min":2,"raw":7,"max":9},"earthDamage":{"min":-39,"raw":-30,"max":-21},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":5,"raw":5,"max":29},"baseThunderDamage":{"min":5,"raw":5,"max":193}},"rarity":"unique"},"Heart Piercer":{"internalName":"Heart Piercer","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":300,"dropRestriction":"never","identified":true,"requirements":{"level":71,"classRequirement":"warrior"},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawMainAttackDamage":85,"rawSpellDamage":-50,"poison":1950},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseThunderDamage":{"min":20,"raw":20,"max":150}},"rarity":"unique"},"Pandemic":{"internalName":"Pandemic","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71},"identifications":{"healthRegen":{"min":-32,"raw":-25,"max":-17},"poison":{"min":606,"raw":2020,"max":2626},"lifeSteal":{"min":41,"raw":135,"max":176},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1650},"rarity":"rare"},"Vis":{"internalName":"Vis","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":71,"intelligence":35},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawIntelligence":5,"manaRegen":12,"rawMaxMana":30,"waterDamage":10,"thunderDefence":-10},"base":{"baseHealth":1350,"baseWaterDefence":75},"rarity":"rare"},"Cold Snap":{"internalName":"Cold Snap","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":71,"intelligence":10,"agility":15},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawIntelligence":3,"rawAgility":3,"thorns":15,"reflection":15,"fireDamage":-15,"waterDefence":10,"airDefence":10},"base":{"baseHealth":1450,"baseWaterDefence":50,"baseAirDefence":50},"rarity":"unique"},"Estuarine":{"internalName":"Estuarine","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":525,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"shaman","strength":28,"intelligence":32},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":8,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"waterDamage":{"min":11,"raw":35,"max":46},"earthDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":70,"raw":70,"max":74},"baseEarthDamage":{"min":100,"raw":100,"max":110},"baseWaterDamage":{"min":71,"raw":71,"max":85}},"rarity":"rare"},"Staff of Regrowth":{"internalName":"Staff of Regrowth","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":218,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"mage","strength":20,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":4,"raw":12,"max":16},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseEarthDamage":{"min":40,"raw":40,"max":60},"baseWaterDamage":{"min":40,"raw":40,"max":60}},"rarity":"unique"},"Lichclaw":{"internalName":"Lichclaw","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"mage","dexterity":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":3,"raw":11,"max":14},"lifeSteal":{"min":41,"raw":135,"max":176},"waterDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":55,"raw":55,"max":75},"baseThunderDamage":{"min":25,"raw":25,"max":55}},"rarity":"unique"},"Forge's Shock":{"internalName":"Forge's Shock","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":438,"dropRestriction":"never","identified":true,"requirements":{"level":71,"classRequirement":"shaman","dexterity":28,"defence":28},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawMainAttackDamage":130,"walkSpeed":-15,"xpBonus":15,"fireDamage":20,"fireDefence":20},"base":{"baseThunderDamage":{"min":100,"raw":100,"max":125},"baseFireDamage":{"min":95,"raw":95,"max":105}},"rarity":"unique"},"Mercy":{"internalName":"Mercy","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":71},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"mainAttackDamage":{"min":-3,"raw":-2,"max":-1},"spellDamage":{"min":-3,"raw":-2,"max":-1},"healthRegen":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseEarthDefence":8,"baseThunderDefence":8,"baseWaterDefence":8,"baseFireDefence":8,"baseAirDefence":8},"rarity":"unique"},"Phantasmal Remnants":{"internalName":"Phantasmal Remnants","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":71},"majorIds":{"Alter Ego":"+Alter Ego: Awakened can be activated after saving 40% less mana, but its duration is reduced by 25%."},"lore":"Memories take on lives of their own, left long enough.","identifications":{"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"manaSteal":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":6,"raw":20,"max":26},"stealing":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1500},"rarity":"fabled"},"Digested Corpse":{"internalName":"Digested Corpse","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":71,"strength":25,"dexterity":25},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":38,"raw":125,"max":163},"healthRegen":{"min":-182,"raw":-140,"max":-98},"healthRegenRaw":{"min":-12,"raw":-9,"max":-6},"poison":{"min":354,"raw":1180,"max":1534},"thorns":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1400,"baseWaterDefence":-60},"rarity":"unique"},"Snapdragon":{"internalName":"Snapdragon","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":344,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"assassin","dexterity":25,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"healthRegenRaw":{"min":18,"raw":60,"max":78},"lifeSteal":{"min":42,"raw":140,"max":182},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":25,"raw":25,"max":50},"baseThunderDamage":{"min":35,"raw":35,"max":65},"baseFireDamage":{"min":35,"raw":35,"max":65}},"rarity":"unique"},"Redemption":{"internalName":"Redemption","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"defence":30,"agility":30},"powderSlots":2,"identifications":{"rawIntelligence":-6,"healthRegen":{"min":5,"raw":18,"max":23},"healthRegenRaw":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":36,"raw":120,"max":156},"manaRegen":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":1475,"baseFireDefence":50,"baseAirDefence":50},"rarity":"unique"},"Cassiterite":{"internalName":"Cassiterite","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"strength":30,"defence":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":45,"raw":150,"max":195},"healthRegen":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13},"earthDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1500,"baseEarthDefence":50,"baseFireDefence":50},"rarity":"unique"},"Sleek":{"internalName":"Sleek","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":333,"dropRestriction":"never","identified":true,"requirements":{"level":71,"classRequirement":"assassin","agility":25},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":10,"reflection":15,"walkSpeed":15,"lootBonus":5},"base":{"baseDamage":{"min":19,"raw":19,"max":28},"baseAirDamage":{"min":45,"raw":45,"max":63}},"rarity":"unique"},"Incendiary":{"internalName":"Incendiary","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":71,"dexterity":20,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"exploding":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":6,"max":8},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":255,"baseWaterDefence":-30,"baseFireDefence":40},"rarity":"rare"},"Demonio":{"internalName":"Demonio","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":398,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":71,"classRequirement":"warrior","defence":60},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawStrength":5,"lifeSteal":190,"exploding":30,"xpBonus":10,"earthDamage":20},"base":{"baseDamage":{"min":90,"raw":90,"max":110},"baseFireDamage":{"min":130,"raw":130,"max":200}},"rarity":"legendary"},"Allegro":{"internalName":"Allegro","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"agility":40},"powderSlots":1,"identifications":{"rawAgility":5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":5,"raw":18,"max":23},"fireDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":1250,"baseFireDefence":-50},"rarity":"unique"},"Afterimage":{"internalName":"Afterimage","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":297,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"mage","agility":90},"powderSlots":2,"lore":"This wand is capable of attacks so fast that it appears to flicker in and out of existence. Anyone able to access its full potential will be seen as only a blur to their enemies.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"rawAgility":9,"spellDamage":{"min":4,"raw":14,"max":18},"rawAttackSpeed":1,"walkSpeed":{"min":7,"raw":22,"max":29},"airDamage":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-16,"raw":-12,"max":-8},"thunderDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":-16,"raw":-12,"max":-8},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":40,"raw":40,"max":48}},"rarity":"legendary"},"Rollick":{"internalName":"Rollick","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"intelligence":100},"powderSlots":2,"identifications":{"rawIntelligence":7,"spellDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":23,"raw":75,"max":98},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1200,"baseThunderDefence":-130,"baseWaterDefence":100},"rarity":"unique"},"Endotherm":{"internalName":"Endotherm","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":71,"defence":40,"agility":40},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":23,"raw":75,"max":98},"rawHealth":{"min":90,"raw":300,"max":390},"fireDefence":{"min":4,"raw":14,"max":18},"airDefence":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":1300,"baseFireDefence":80,"baseAirDefence":80},"rarity":"unique"},"Shokku":{"internalName":"Shokku","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":270,"dropRestriction":"normal","requirements":{"level":71,"classRequirement":"warrior","dexterity":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":7,"thorns":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":40,"raw":40,"max":75},"baseThunderDamage":{"min":1,"raw":1,"max":100}},"rarity":"unique"},"Clearsight Spectacles":{"internalName":"Clearsight Spectacles","type":"armour","armourType":"helmet","armourColor":"rgb(204,204,204)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":71,"quest":"Realm of Light IV - Finding the Light"},"powderSlots":3,"lore":"Ancient magicks are required to make these brilliant glasses, imbued with charity and selflessness. They allow sight beyond sight, rumoured to allow sight of a brilliant realm.","identifications":{"rawIntelligence":5,"healthRegenRaw":{"min":23,"raw":77,"max":100},"reflection":{"min":15,"raw":50,"max":65},"rawMaxMana":{"min":6,"raw":20,"max":26},"xpBonus":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1800,"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Myconid Spores":{"internalName":"Myconid Spores","type":"ingredient","requirements":{"level":71,"skills":["alchemism"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":6},"waterDamage":{"min":3,"raw":3,"max":6},"earthDamage":{"min":3,"raw":3,"max":6},"airDamage":{"min":3,"raw":3,"max":6},"thunderDamage":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-78,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jad'lr Myconid","coords":[[-886,45,-4723,5],[-920,45,-4689,5],[-979,44,-4683,5],[-1074,44,-4507,5],[-1017,52,-4481,5],[-1079,44,-4436,5],[-1024,45,-4841,5],[-1031,45,-4858,5],[-1127,45,-5056,5],[-1181,45,-5101,5],[-1233,46,-4900,5]]},{"name":"Azur Myconid","coords":[-937,47,-4701,27]},{"name":"Flera Myconid","coords":[-937,47,-4701,27]},{"name":"Ethrela Myconid","coords":[-937,47,-4701,27]},{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]},{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]}]},"Lost Talisman":{"internalName":"Lost Talisman","type":"ingredient","requirements":{"level":71,"skills":["jeweling","armouring","tailoring"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"reflection":{"min":3,"raw":3,"max":4},"thorns":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wandering Skeleton","coords":[[-600,23,-435,30],[-610,26,-400,30],[-610,26,-400,30],[-570,21,-535,25],[-580,23,-565,25],[-580,23,-565,35]]},{"name":"Lost Adventurer","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Risen Explorer","coords":[[-748,30,-546,4],[-822,37,-285,4],[-594,40,-389,5]]},{"name":"Corrupted Keeper","coords":[[-990,82,-465,0],[-999,86,-499,0],[-532,42,-388,0]]},{"name":"Corrupted Arbalest","coords":[[-967,95,-475,0],[-984,103,-492,0]]},{"name":"Corrupted Lookout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Corrupted Scout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Ayri Wraith","coords":[-638,57,-275,3]}]},"Foul Fluid":{"internalName":"Foul Fluid","type":"ingredient","requirements":{"level":71,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"poison":{"min":650,"raw":650,"max":690},"healthRegenRaw":{"min":-30,"raw":-30,"max":-20}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Aberration","coords":[-767,48,-5466,30]},{"name":"Rejuvenator","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Straggler","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Writher","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Misfit","coords":[[-939,83,-5598,25],[-939,83,-5598,25]]},{"name":"Carver","coords":[-744,40,-5411,12]},{"name":"Taskmaster","coords":[-754,21,-5461,2]},{"name":"Taskmaster","coords":[-736,11,-5431,2]},{"name":"Taskmaster","coords":[-740,13,-5492,0]},{"name":"Wanderer","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Draken":{"internalName":"Draken","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"dexterity":65},"powderSlots":2,"identifications":{"rawStrength":-7,"rawDexterity":9,"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-16,"raw":-12,"max":-8},"thunderDamage":{"min":5,"raw":18,"max":23},"earthDefence":{"min":-16,"raw":-12,"max":-8},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1200,"baseEarthDefence":-100,"baseThunderDefence":70},"rarity":"rare"},"Carapace":{"internalName":"Carapace","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"strength":20},"identifications":{"rawStrength":13,"rawAgility":-5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":210,"raw":700,"max":910},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1400,"baseAirDefence":-70},"rarity":"unique"},"Aratera":{"internalName":"Aratera","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"strength":30,"defence":40},"powderSlots":2,"identifications":{"rawStrength":12,"rawSpellDamage":{"min":-162,"raw":-125,"max":-87},"exploding":{"min":3,"raw":11,"max":14},"earthDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1650,"baseEarthDefence":40,"baseWaterDefence":-40,"baseFireDefence":80,"baseAirDefence":-80},"rarity":"rare"},"Chakram":{"internalName":"Chakram","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":479,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"assassin","dexterity":60},"powderSlots":3,"lore":"Despite appearing as a basic blade when held, strange spiritual magic changes its form into a sharp, ring-like cutting edge when used to attack. Only one person was known to master the weapon's abilities.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air3"}},"identifications":{"rawAgility":13,"poison":{"min":495,"raw":1650,"max":2145},"rawAttackSpeed":1,"walkSpeed":{"min":6,"raw":21,"max":27},"stealing":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":22,"raw":22,"max":50},"baseThunderDamage":{"min":22,"raw":22,"max":110},"baseAirDamage":{"min":39,"raw":39,"max":66}},"rarity":"legendary"},"Incinerator":{"internalName":"Incinerator","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":409,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"archer","defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"poison":{"min":540,"raw":1800,"max":2340},"fireDamage":{"min":7,"raw":23,"max":30},"elementalDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":121,"raw":121,"max":143}},"rarity":"unique"},"Saint's Shawl":{"internalName":"Saint's Shawl","type":"armour","armourType":"helmet","armourColor":"rgb(207,223,240)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":60},"powderSlots":3,"identifications":{"rawIntelligence":8,"reflection":15,"xpBonus":10},"base":{"baseHealth":1575,"baseWaterDefence":60},"rarity":"set"},"Blade of Shade":{"internalName":"Blade of Shade","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":536,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"classRequirement":"assassin","dexterity":20,"defence":20,"agility":20},"powderSlots":2,"lore":"The fabled weapon of the titular dark Assassin, the blade's small stature hides its true powers. Shadows undulate about the hilt.","dropMeta":{"name":"Challenge of the Blades","type":"altar","coordinates":[-802,76,-5394]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"263","name":"dagger.fire1"}},"identifications":{"healthRegenRaw":{"min":-91,"raw":-70,"max":-49},"rawHealth":{"min":-325,"raw":-250,"max":-175},"lifeSteal":{"min":68,"raw":225,"max":293},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":3,"raw":10,"max":13},"fireDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":30,"raw":30,"max":55},"baseThunderDamage":{"min":40,"raw":40,"max":105},"baseFireDamage":{"min":65,"raw":65,"max":80},"baseAirDamage":{"min":55,"raw":55,"max":90}},"rarity":"legendary"},"Ethereal":{"internalName":"Ethereal","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":248,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"mage","intelligence":60},"powderSlots":2,"lore":"Supposedly based off of the wand of master mage Ethe, this wand is plated with magic-focusing jewels and heavy gold, yet somehow remains entirely weightless.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawIntelligence":7,"rawAgility":7,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-39,"raw":-30,"max":-21},"waterDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":6,"raw":19,"max":25},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":17,"raw":17,"max":22},"baseWaterDamage":{"min":44,"raw":44,"max":77}},"rarity":"legendary"},"Blood Moon":{"internalName":"Blood Moon","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":70},"lore":"Imbued with the blood of the first werewolf, it was kept in Gelibord as a trophy before being stolen. Wearing it is said to mimic the effects of the lycanthropic curse.","identifications":{"mainAttackDamage":{"min":15,"raw":50,"max":65},"rawMainAttackDamage":{"min":65,"raw":215,"max":280},"spellDamage":{"min":-65,"raw":-50,"max":-35},"rawSpellDamage":{"min":-214,"raw":-165,"max":-115}},"base":{"baseHealth":2125,"baseEarthDefence":75,"baseWaterDefence":-75},"rarity":"legendary"},"Crossroad Killer":{"internalName":"Crossroad Killer","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":428,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"assassin","dexterity":70},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":14,"rawDefence":-5,"mainAttackDamage":{"min":6,"raw":19,"max":25},"spellDamage":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":314,"raw":314,"max":486},"baseThunderDamage":{"min":194,"raw":194,"max":686}},"rarity":"rare"},"Scythe":{"internalName":"Scythe","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":402,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"warrior","strength":40,"dexterity":30},"powderSlots":3,"lore":"A psychopath claiming herself to be Death incarnate used this dark-bladed scythe on a killing spree that lasted over a year. It reaped hundreds of lives, including her own.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawStrength":13,"rawDexterity":9,"rawIntelligence":-10,"mainAttackDamage":{"min":8,"raw":25,"max":33},"healthRegen":{"min":-30,"raw":-23,"max":-16},"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":80,"raw":80,"max":115},"baseThunderDamage":{"min":30,"raw":30,"max":165}},"rarity":"legendary"},"Thousand Waves":{"internalName":"Thousand Waves","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":538,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"shaman","intelligence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":15,"rawDefence":-8,"healthRegen":{"min":-58,"raw":-45,"max":-31},"3rdSpellCost":{"min":-7,"raw":-24,"max":-31},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-39,"raw":-30,"max":-21},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseWaterDamage":{"min":966,"raw":966,"max":1143}},"rarity":"rare"},"Anarchy":{"internalName":"Anarchy","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":70,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"spellDamage":{"min":2,"raw":7,"max":9},"rawSpellDamage":{"min":9,"raw":30,"max":39},"exploding":{"min":2,"raw":5,"max":7},"elementalDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":-350},"rarity":"unique"},"Adamantite":{"internalName":"Adamantite","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70},"powderSlots":3,"lore":"Adamantite is a soft metal often added to exotic medicine to increase one's health, but a revolutionary blacksmith on Black Road, created a chestplate with an Adamantite alloy, which is advertised to bolster the users endurance.","identifications":{"rawStrength":7,"rawDefence":13,"healthRegen":{"min":8,"raw":25,"max":33},"rawHealth":{"min":405,"raw":1350,"max":1755},"thorns":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-4,"raw":-3,"max":-2},"thunderDamage":{"min":-18,"raw":-14,"max":-10},"waterDamage":{"min":-18,"raw":-14,"max":-10},"fireDamage":{"min":-4,"raw":-3,"max":-2},"airDamage":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":2100,"baseEarthDefence":-20,"baseThunderDefence":-50,"baseWaterDefence":-50,"baseFireDefence":-50,"baseAirDefence":-50},"rarity":"legendary"},"October Fires":{"internalName":"October Fires","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":610,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"shaman","defence":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"rawDefence":12,"healthRegenRaw":{"min":27,"raw":90,"max":117},"rawHealth":{"min":-1076,"raw":-828,"max":-580},"lifeSteal":{"min":39,"raw":130,"max":169},"manaSteal":{"min":1,"raw":4,"max":5},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"thorns":{"min":17,"raw":55,"max":72},"exploding":{"min":12,"raw":40,"max":52}},"base":{"baseFireDamage":{"min":730,"raw":730,"max":740}},"rarity":"legendary"},"Psychomend Vest":{"internalName":"Psychomend Vest","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":70,"quest":"Shattered Minds"},"powderSlots":2,"identifications":{"rawIntelligence":-3,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":6,"raw":19,"max":25},"healthRegenRaw":{"min":30,"raw":100,"max":130},"rawHealth":{"min":180,"raw":600,"max":780}},"base":{"baseHealth":1500},"rarity":"rare"},"Saint's Leggings":{"internalName":"Saint's Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(207,223,240)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":60,"agility":65},"powderSlots":3,"identifications":{"rawIntelligence":5,"walkSpeed":15,"xpBonus":15,"airDamage":15},"base":{"baseHealth":1650,"baseWaterDefence":30,"baseAirDefence":40},"rarity":"set"},"Mudskipper":{"internalName":"Mudskipper","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"strength":25,"intelligence":25,"agility":25},"powderSlots":2,"identifications":{"rawStrength":3,"rawAgility":2,"lifeSteal":{"min":30,"raw":100,"max":130},"manaSteal":{"min":2,"raw":8,"max":10},"damage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1350,"baseEarthDefence":60,"baseThunderDefence":-100,"baseWaterDefence":60,"baseAirDefence":60},"rarity":"unique"},"Pure Light Spruce Relik":{"internalName":"Pure Light Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":322,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":128,"raw":128,"max":130}},"rarity":"common"},"Plasma Staff":{"internalName":"Plasma Staff","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":205,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"mage","dexterity":20,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":3,"raw":9,"max":12},"healthRegen":{"min":-22,"raw":-17,"max":-12},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":3,"raw":9,"max":12}},"base":{"baseThunderDamage":{"min":7,"raw":7,"max":46},"baseFireDamage":{"min":25,"raw":25,"max":54}},"rarity":"unique"},"Paw":{"internalName":"Paw","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":70},"powderSlots":2,"identifications":{"rawAgility":16,"walkSpeed":{"min":9,"raw":30,"max":39},"earthDamage":{"min":-23,"raw":-18,"max":-13},"waterDamage":{"min":-8,"raw":-6,"max":-4},"fireDamage":{"min":-8,"raw":-6,"max":-4},"airDamage":{"min":7,"raw":24,"max":31}},"rarity":"rare"},"Talisman Charm":{"internalName":"Talisman Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":70},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"rawHealth":{"min":102,"raw":340,"max":442},"xpBonus":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Swashbuckler's Brogues":{"internalName":"Swashbuckler's Brogues","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":50,"defence":30},"powderSlots":3,"identifications":{"rawDefence":5,"rawSpellDamage":180,"manaRegen":6,"exploding":40,"healingEfficiency":-30,"waterDamage":15,"fireDamage":15},"base":{"baseHealth":1575,"baseWaterDefence":75,"baseAirDefence":-120},"rarity":"rare"},"Shadestep":{"internalName":"Shadestep","type":"armour","armourType":"boots","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"dexterity":30,"agility":60},"powderSlots":2,"dropMeta":{"name":"Challenge of the Blades","type":"altar","coordinates":[-802,76,-5394]},"identifications":{"rawAgility":13,"rawMainAttackDamage":{"min":59,"raw":195,"max":254},"healthRegenRaw":{"min":-58,"raw":-45,"max":-31},"lifeSteal":{"min":53,"raw":175,"max":228},"thorns":{"min":9,"raw":30,"max":39},"reflection":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":-275,"baseThunderDefence":120,"baseAirDefence":100},"rarity":"legendary"},"Voidshard":{"internalName":"Voidshard","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":70,"strength":25,"agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"lifeSteal":{"min":13,"raw":44,"max":57},"thorns":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":-120},"rarity":"rare"},"Relentless":{"internalName":"Relentless","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":500,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"shaman","strength":35,"dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDefence":-10,"rawAgility":-10,"rawMainAttackDamage":{"min":18,"raw":60,"max":78},"healthRegenRaw":{"min":-90,"raw":-69,"max":-48},"rawAttackSpeed":1,"exploding":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":70,"raw":70,"max":74},"baseEarthDamage":{"min":58,"raw":58,"max":70},"baseThunderDamage":{"min":58,"raw":58,"max":70}},"rarity":"unique"},"Laoc Alcher":{"internalName":"Laoc Alcher","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":408,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"archer","strength":35,"dexterity":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawMainAttackDamage":{"min":137,"raw":455,"max":592},"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":15,"raw":50,"max":65},"rawHealth":{"min":-1755,"raw":-1350,"max":-945},"poison":{"min":554,"raw":1845,"max":2399},"lifeSteal":{"min":66,"raw":220,"max":286},"manaRegen":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":114,"raw":114,"max":800},"baseEarthDamage":{"min":0,"raw":0,"max":343},"baseThunderDamage":{"min":0,"raw":0,"max":343}},"rarity":"unique"},"Trainer's Pendant":{"internalName":"Trainer's Pendant","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70},"dropMeta":{"name":"Arena of the Legends","type":"altar","coordinates":[-692,73,-1068]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":6,"raw":20,"max":26},"xpBonus":{"min":4,"raw":12,"max":16}},"rarity":"rare"},"Pure Light Spruce Dagger":{"internalName":"Pure Light Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":273,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":79,"raw":79,"max":97}},"rarity":"common"},"Cumulus":{"internalName":"Cumulus","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"agility":40},"powderSlots":2,"identifications":{"rawAgility":8,"healingEfficiency":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1225,"baseThunderDefence":-80,"baseWaterDefence":30,"baseAirDefence":60},"rarity":"unique"},"Plated Iron Boots":{"internalName":"Plated Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70},"powderSlots":2,"base":{"baseHealth":1090},"rarity":"common"},"Pure Light Spruce Spear":{"internalName":"Pure Light Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":219,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":99,"raw":99,"max":114}},"rarity":"common"},"Ceiling":{"internalName":"Ceiling","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":400,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"archer","strength":30,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-22,"raw":-17,"max":-12}},"base":{"baseDamage":{"min":20,"raw":20,"max":60},"baseEarthDamage":{"min":40,"raw":40,"max":80},"baseAirDamage":{"min":0,"raw":0,"max":120}},"rarity":"unique"},"Stave of the Legends":{"internalName":"Stave of the Legends","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":330,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"classRequirement":"mage"},"powderSlots":2,"lore":"Crafted exclusively by the Temple of the Legends' mages, this stave is honorary to Mages who best the Temple's Grand Magus.","dropMeta":{"name":"Arena of the Legends","type":"altar","coordinates":[-692,73,-1068]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.multi3"}},"identifications":{"rawStrength":10,"rawDexterity":10,"rawIntelligence":10,"rawDefence":10,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":4,"raw":12,"max":16},"earthDefence":{"min":8,"raw":25,"max":33},"thunderDefence":{"min":8,"raw":25,"max":33},"waterDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":50,"raw":50,"max":70},"baseEarthDamage":{"min":15,"raw":15,"max":35},"baseThunderDamage":{"min":5,"raw":5,"max":45},"baseWaterDamage":{"min":20,"raw":20,"max":30},"baseFireDamage":{"min":10,"raw":10,"max":40}},"rarity":"legendary"},"Aphorism":{"internalName":"Aphorism","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":70},"majorIds":{"Paragon":"+Paragon: Shield Strike deals 300% damage. Mantle of the Bovemist's cooldown is significantly reduced, but is limited to one shield charge."},"powderSlots":3,"lore":"Just because it's been said to death doesn't mean it isn't true.","identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegenRaw":{"min":30,"raw":100,"max":130},"walkSpeed":{"min":5,"raw":15,"max":20},"healingEfficiency":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2250},"rarity":"fabled"},"Crystal Senbon":{"internalName":"Crystal Senbon","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":239,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"assassin","strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":5,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"elementalDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":77,"raw":77,"max":77}},"rarity":"unique"},"Saint's Sandals":{"internalName":"Saint's Sandals","type":"armour","armourType":"boots","armourColor":"rgb(207,223,240)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":70,"agility":60},"powderSlots":3,"identifications":{"rawAgility":8,"walkSpeed":15,"xpBonus":10},"base":{"baseHealth":1575,"baseAirDefence":60},"rarity":"set"},"Comet":{"internalName":"Comet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":70,"strength":20,"defence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"mainAttackDamage":8,"rawMainAttackDamage":26,"spellDamage":-6,"manaRegen":-6,"exploding":12},"base":{"baseEarthDefence":12,"baseFireDefence":12,"baseAirDefence":12},"rarity":"unique"},"Quick-Strike Leggings":{"internalName":"Quick-Strike Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"dexterity":60},"powderSlots":2,"dropMeta":{"name":"Altar of Sanctification","type":"altar","coordinates":[-911,73,-1068]},"identifications":{"rawDexterity":20,"rawAttackSpeed":1,"walkSpeed":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":1525},"rarity":"legendary"},"Cattail":{"internalName":"Cattail","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":70,"strength":15,"intelligence":10},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"mainAttackDamage":5,"spellDamage":5,"earthDamage":5,"waterDamage":5},"base":{"baseEarthDefence":10,"baseWaterDefence":10},"rarity":"unique"},"Legend Guard's Plate":{"internalName":"Legend Guard's Plate","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"strength":30,"defence":50},"powderSlots":2,"dropMeta":{"name":"Arena of the Legends","type":"altar","coordinates":[-692,73,-1068]},"identifications":{"rawStrength":7,"rawDefence":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":102,"raw":339,"max":441},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2100,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"legendary"},"Back-Up Plan":{"internalName":"Back-up Plan","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"defence":50},"dropMeta":{"name":"Altar of Sanctification","type":"altar","coordinates":[-911,73,-1068]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":6,"rawAgility":6,"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":625},"rarity":"rare"},"Mind Rot":{"internalName":"Mind Rot","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70},"powderSlots":1,"identifications":{"rawIntelligence":-6,"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"healthRegen":{"min":-16,"raw":-12,"max":-8},"rawHealth":{"min":-195,"raw":-150,"max":-105},"poison":{"min":378,"raw":1260,"max":1638},"lifeSteal":{"min":35,"raw":115,"max":150},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1700,"baseEarthDefence":-15,"baseThunderDefence":-15,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"rare"},"Troms' Pride":{"internalName":"Troms' Pride","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":278,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"rawSpellDamage":{"min":21,"raw":70,"max":91},"thorns":{"min":3,"raw":9,"max":12},"reflection":{"min":3,"raw":9,"max":12},"fireDamage":{"min":-9,"raw":-7,"max":-5},"airDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":75,"raw":75,"max":100},"baseEarthDamage":{"min":20,"raw":20,"max":35},"baseWaterDamage":{"min":15,"raw":15,"max":25}},"rarity":"unique"},"Silencer":{"internalName":"Silencer","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":70,"defence":20},"powderSlots":1,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawDefence":5,"rawSpellDamage":-100,"healthRegenRaw":75,"fireDefence":15},"base":{"baseHealth":1700,"baseFireDefence":90},"rarity":"unique"},"Saint's Tunic":{"internalName":"Saint's Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(207,223,240)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":65,"agility":60},"powderSlots":3,"identifications":{"rawAgility":5,"reflection":15,"xpBonus":15,"waterDamage":15},"base":{"baseHealth":1800,"baseWaterDefence":40,"baseAirDefence":30},"rarity":"set"},"Toaster":{"internalName":"Toaster","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":321,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"warrior","defence":38},"powderSlots":2,"lore":"\\[Community Event Winner\\] This peculiar weapon was once wielded by the firey warrior Igbar, who used it to great effect in endurance competitions.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":3,"raw":11,"max":14},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":78,"raw":78,"max":96},"baseFireDamage":{"min":66,"raw":66,"max":72}},"rarity":"rare"},"Rocher":{"internalName":"Rocher","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":332,"dropRestriction":"never","identified":true,"requirements":{"level":70,"classRequirement":"warrior","strength":30},"powderSlots":2,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":10,"mainAttackDamage":15,"walkSpeed":-10,"earthDefence":15},"base":{"baseDamage":{"min":150,"raw":150,"max":250},"baseEarthDamage":{"min":150,"raw":150,"max":250}},"rarity":"rare"},"Howler":{"internalName":"Howler","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":70,"agility":20},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"identifications":{"rawAgility":5,"rawMainAttackDamage":100,"spellDamage":15,"airDamage":15},"base":{"baseHealth":1025,"baseAirDefence":60},"rarity":"unique"},"Corrupted Nii Shako":{"internalName":"Corrupted Nii Shako","type":"armour","armourType":"helmet","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":50,"defence":50},"powderSlots":2,"identifications":{"healthRegen":30,"manaRegen":6,"waterDefence":15,"fireDefence":15},"base":{"baseHealth":1650,"baseThunderDefence":-50,"baseWaterDefence":50,"baseFireDefence":50},"rarity":"set"},"Helm Splitter":{"internalName":"Helm Splitter","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":466,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"classRequirement":"warrior","strength":60},"powderSlots":1,"lore":"One of Skien's many deadly weapons. This warhammer, despite the massive weight of the hammerhead, was able to be swung by Skien fast enough to be a blur.","dropMeta":{"name":"Altar of Sanctification","type":"altar","coordinates":[-911,73,-1068]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":20,"mainAttackDamage":{"min":45,"raw":150,"max":195},"rawSpellDamage":{"min":-2600,"raw":-2000,"max":-1400},"rawAttackSpeed":-1,"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":714,"raw":714,"max":1114}},"rarity":"legendary"},"Frost":{"internalName":"Frost","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawSpellDamage":30,"walkSpeed":-6,"waterDamage":7,"airDamage":5},"base":{"baseAirDefence":20},"rarity":"unique"},"Shackle of Shade":{"internalName":"Shackle of Shade","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"dexterity":10,"defence":10},"dropMeta":{"name":"Challenge of the Blades","type":"altar","coordinates":[-802,76,-5394]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-4,"raw":-3,"max":-2},"waterDefence":{"min":-4,"raw":-3,"max":-2},"airDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":500,"baseThunderDefence":50,"baseFireDefence":50},"rarity":"rare"},"Remedy":{"internalName":"Remedy","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":70,"intelligence":35,"defence":35},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":-14,"raw":-11,"max":-8},"rawMainAttackDamage":{"min":-51,"raw":-39,"max":-27},"spellDamage":{"min":-14,"raw":-11,"max":-8},"rawSpellDamage":{"min":-52,"raw":-40,"max":-28},"healthRegen":{"min":5,"raw":18,"max":23},"healthRegenRaw":{"min":21,"raw":70,"max":91},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1050,"baseEarthDefence":-60,"baseThunderDefence":-60,"baseWaterDefence":60,"baseFireDefence":60},"rarity":"unique"},"Pure Light Spruce Wand":{"internalName":"Pure Light Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":160,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":61,"raw":61,"max":67}},"rarity":"common"},"Pure Light Spruce Bow":{"internalName":"Pure Light Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":330,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":145,"raw":145,"max":175}},"rarity":"common"},"Visceral Legs":{"internalName":"Visceral Legs","type":"armour","armourType":"leggings","armourColor":"rgb(154,91,82)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":70},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":18,"raw":60,"max":78},"healthRegenRaw":{"min":20,"raw":65,"max":85},"lifeSteal":{"min":33,"raw":110,"max":143}},"base":{"baseHealth":1500},"rarity":"set"},"Courser":{"internalName":"Courser","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":400,"dropRestriction":"never","identified":true,"requirements":{"level":70,"classRequirement":"archer","dexterity":15},"powderSlots":3,"dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":5,"thorns":25,"walkSpeed":5,"thunderDamage":25},"base":{"baseDamage":{"min":80,"raw":80,"max":130},"baseThunderDamage":{"min":10,"raw":10,"max":100}},"rarity":"unique"},"Maelstrom":{"internalName":"Maelstrom","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":562,"dropRestriction":"normal","requirements":{"level":70,"classRequirement":"archer","dexterity":20,"intelligence":20,"agility":20},"powderSlots":1,"lore":"Lost by master sailor Carvel in a massive storm, it was carried all the way out to the city of Selchar, where it was found spewing seafoam and lightning bolts.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"208","name":"bow.multi3"}},"identifications":{"rawDexterity":8,"rawIntelligence":8,"rawAgility":8,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-715,"raw":-550,"max":-385},"walkSpeed":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseThunderDamage":{"min":60,"raw":60,"max":110},"baseWaterDamage":{"min":50,"raw":50,"max":90},"baseAirDamage":{"min":40,"raw":40,"max":100}},"rarity":"legendary"},"Price of Life":{"internalName":"Price of Life","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":70,"defence":45,"agility":45},"identifications":{"rawIntelligence":-15,"rawDefence":3,"rawAgility":3,"rawMaxMana":{"min":-26,"raw":-20,"max":-14},"raw4thSpellCost":{"min":-2,"raw":-7,"max":-9},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDefence":{"min":9,"raw":30,"max":39},"elementalDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":1250,"baseFireDefence":65,"baseAirDefence":65},"rarity":"rare"},"Ephemeral Tome of Mysticism I":{"internalName":"Ephemeral Tome of Mysticism I","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":70},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"manaRegen":{"min":1,"raw":2,"max":3}},"rarity":"fabled"},"Harvester's Tome of Mysticism I":{"internalName":"Harvester's Tome of Mysticism I","type":"tome","tomeType":"mysticism_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":70},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"86","name":"tome.mana"}},"identifications":{"manaSteal":{"min":1,"raw":2,"max":3}},"rarity":"fabled"},"Rancid Flesh":{"internalName":"Rancid Flesh","type":"ingredient","requirements":{"level":70,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"mainAttackDamage":{"min":5,"raw":5,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Keeper","coords":[[-990,82,-465,0],[-999,86,-499,0],[-532,42,-388,0]]},{"name":"Corrupted Arbalest","coords":[[-967,95,-475,0],[-984,103,-492,0]]},{"name":"Corrupted Lookout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Corrupted Lookout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Aberration","coords":[-767,48,-5466,30]},{"name":"Rejuvenator","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Straggler","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Writher","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]},{"name":"Misfit","coords":[[-939,83,-5598,25],[-939,83,-5598,25]]},{"name":"Carver","coords":[-744,40,-5411,12]},{"name":"Taskmaster","coords":[-754,21,-5461,2]},{"name":"Taskmaster","coords":[-736,11,-5431,2]},{"name":"Taskmaster","coords":[-740,13,-5492,0]},{"name":"Wanderer","coords":[[-752,52,-5474,20],[-752,52,-5474,35],[-724,52,-5501,20]]}]},"Ghostly Membrane":{"internalName":"Ghostly Membrane","type":"ingredient","requirements":{"level":70,"skills":["tailoring","scribing"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"rawAgility":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-77,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":8},"droppedBy":[{"name":"Blackened Soul","coords":[-929,78,-5554,24]},{"name":"Darkening Soul","coords":[-929,78,-5554,24]}]},"Pristine Claw":{"internalName":"Pristine Claw","type":"ingredient","requirements":{"level":70,"skills":["jeweling"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawMainAttackDamage":{"min":10,"raw":10,"max":12},"rawSpellDamage":{"min":-15,"raw":-15,"max":-12}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Werewolf","coords":[[-849,47,-5277,20],[-831,47,-5233,25],[-805,47,-5201,20],[-794,44,-5166,15],[-771,45,-5109,20],[-721,46,-5089,30],[-678,43,-5055,25],[-752,47,-5329,25],[-719,47,-5308,20],[-559,43,-5209,15],[-593,44,-5250,20]]},{"name":"Werewolf","coords":[[-849,47,-5277,20],[-831,47,-5233,25],[-805,47,-5201,20],[-794,44,-5166,15],[-771,45,-5109,20],[-721,46,-5089,30],[-678,43,-5055,25],[-752,47,-5329,25],[-719,47,-5308,20],[-559,43,-5209,15],[-593,44,-5250,20]]},{"name":"Enraged Werewolf","coords":null},{"name":"Tiontaith Hunter","coords":[-413,74,-5532,4]},{"name":"Tiontaith Beast","coords":[[-484,84,-5555,30],[-484,84,-5555,30],[-394,51,-5575,18],[-342,66,-5516,18],[-343,75,-5467,10],[-342,43,-5395,20],[-391,44,-5403,15],[-428,46,-5366,20],[-448,50,-5411,18]]}]},"Subsuming Darkness":{"internalName":"Subsuming Darkness","type":"ingredient","requirements":{"level":70,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"263:0"},"identifications":{"lifeSteal":{"min":90,"raw":90,"max":100},"mainAttackDamage":{"min":-8,"raw":-8,"max":-4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-124000,"strengthRequirement":0,"dexterityRequirement":15,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Blade of Shade","coords":null}]},"Wriggling Darkness":{"internalName":"Wriggling Darkness","type":"ingredient","requirements":{"level":70,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"lifeSteal":{"min":30,"raw":30,"max":40},"thunderDamage":{"min":4,"raw":4,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":20,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Blade of Shade","coords":null}]},"Fresh Game":{"internalName":"Fresh Game","type":"ingredient","requirements":{"level":70,"skills":["cooking"]},"icon":{"format":"legacy","value":"423:0"},"identifications":{"rawHealth":{"min":250,"raw":250,"max":300}},"tier":2,"consumableOnlyIDs":{"duration":-460,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Boar","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Forest Grook","coords":[-1099,43,-4983,3]},{"name":"Disgruntled Grook","coords":null},{"name":"Wild Grook","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Minotaurus Lancer","coords":[[-950,48,-5046,4],[-941,48,-5066,4],[-964,48,-5085,4]]},{"name":"Minotaurus Bolter","coords":null},{"name":"Minotaurus Cook","coords":[-954,48,-5063,2]},{"name":"Yale Rampager","coords":[-1292,47,-4653,5]},{"name":"Golden King of Yales","coords":[-1292,47,-4653,5]},{"name":"Scared Unicorn","coords":[[-1052,46,-5084,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-862,46,-4786,45],[-959,46,-4809,45]]}]},"More-Pearlescent Jewel":{"internalName":"More-Pearlescent Jewel","type":"ingredient","requirements":{"level":70,"skills":["jeweling"]},"icon":{"format":"skin","value":"ba44e2b8388df593a85f7d54445ce78796cee6b0bcb7a55acbdd1cbd8f35aef2"},"identifications":{"rawSpellDamage":{"min":30,"raw":30,"max":35},"thunderDefence":{"min":-4,"raw":-4,"max":-2}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-124000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Grand Magus","coords":null}]},"Letvus Delight":{"internalName":"Letvus Delight","type":"ingredient","requirements":{"level":70,"skills":["cooking"]},"icon":{"format":"skin","value":"ebf481bfe0455c767dfd70f1c9f647da4f8ae459e4fe64ef94790bd374d4614"},"identifications":{"earthDamage":{"min":4,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":4,"max":5},"waterDamage":{"min":4,"raw":4,"max":5},"fireDamage":{"min":4,"raw":4,"max":5},"airDamage":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-325,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Pearlescent Jewel":{"internalName":"Pearlescent Jewel","type":"ingredient","requirements":{"level":70,"skills":["jeweling"]},"icon":{"format":"legacy","value":"351:5"},"identifications":{"rawSpellDamage":{"min":10,"raw":10,"max":15},"airDamage":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":10,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Grand Magus","coords":null}]},"Elemental Crystal":{"internalName":"Elemental Crystal","type":"ingredient","requirements":{"level":70,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"e6799bfaa3a2c63ad85dd378e66d57d9a97a3f86d0d9f683c498632f4f5c"},"identifications":{"rawMainAttackDamage":{"min":14,"raw":14,"max":20},"rawSpellDamage":{"min":18,"raw":18,"max":25},"reflection":{"min":4,"raw":4,"max":5},"rawHealth":{"min":200,"raw":200,"max":230},"thorns":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-101000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Aldor-Nix","coords":[[-706,43,-4765,5],[-799,27,-4740,5]]},{"name":"Jad'lr Myconid","coords":[[-886,45,-4723,5],[-920,45,-4689,5],[-979,44,-4683,5],[-1074,44,-4507,5],[-1017,52,-4481,5],[-1079,44,-4436,5],[-1024,45,-4841,5],[-1031,45,-4858,5],[-1127,45,-5056,5],[-1181,45,-5101,5],[-1233,46,-4900,5]]},{"name":"Azur Myconid","coords":[-937,47,-4701,27]},{"name":"Flera Myconid","coords":[-937,47,-4701,27]},{"name":"Ethrela Myconid","coords":[-937,47,-4701,27]},{"name":"Elemental Miasma","coords":[-1039,18,-5289,16]}]},"Titanium Chunk":{"internalName":"Titanium Chunk","type":"ingredient","requirements":{"level":70,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"thorns":{"min":10,"raw":10,"max":12},"rawHealth":{"min":350,"raw":350,"max":375}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":18,"agilityRequirement":0},"droppedBy":[{"name":"Revenant of Skien","coords":null}]},"Ironwood Chips":{"internalName":"Ironwood Chips","type":"ingredient","requirements":{"level":70,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"mainAttackDamage":{"min":26,"raw":26,"max":30},"rawAttackSpeed":{"min":-1,"raw":-1,"max":-1},"healthRegenRaw":{"min":65,"raw":65,"max":75}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":24,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ironwood Uraqi","coords":[-551,22,-293,0]},{"name":"Ironwood Uraqi","coords":[-593,27,-275,0]},{"name":"Luxroot Sentinel","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Mahogany Colossus","coords":[[-590,29,-414,42],[-551,31,-495,26],[-580,23,-546,25],[-642,27,-462,21]]}]},"Large Titanium Chunk":{"internalName":"Large Titanium Chunk","type":"ingredient","requirements":{"level":70,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"42:0"},"identifications":{"rawHealth":{"min":640,"raw":640,"max":680},"reflection":{"min":-12,"raw":-12,"max":-10}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-112000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":14,"agilityRequirement":0},"droppedBy":[{"name":"Revenant of Skien","coords":null}]},"Gylia Oil 1":{"internalName":"Refined Gylia Oil 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilGylia"}},"tier":1},"Kanderstone Gem 3":{"internalName":"Refined Kanderstone Gem 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"70","name":"profession.gemKanderstone"}},"tier":3},"Kanderstone Gem 1":{"internalName":"Refined Kanderstone Gem 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"70","name":"profession.gemKanderstone"}},"tier":1},"Decay Grains 1":{"internalName":"Refined Decay Grains 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"48","name":"profession.grainDecay"}},"tier":1},"Decay Grains 3":{"internalName":"Refined Decay Grains 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"48","name":"profession.grainDecay"}},"tier":3},"Light Wood 3":{"internalName":"Refined Light Wood 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"196da8e05292502c9205c599ad638f0222adcec0c05a8aa40f2ffc00493a143e"},"tier":3},"Decay String 1":{"internalName":"Refined Decay String 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDecay"}},"tier":1},"Gylia Oil 3":{"internalName":"Refined Gylia Oil 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilGylia"}},"tier":3},"Decay String 2":{"internalName":"Refined Decay String 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDecay"}},"tier":2},"Gylia Meat 1":{"internalName":"Refined Gylia Meat 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGylia"}},"tier":1},"Gylia Meat 2":{"internalName":"Refined Gylia Meat 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGylia"}},"tier":2},"Decay Grains 2":{"internalName":"Refined Decay Grains 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"48","name":"profession.grainDecay"}},"tier":2},"Light Wood 2":{"internalName":"Refined Light Wood 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"196da8e05292502c9205c599ad638f0222adcec0c05a8aa40f2ffc00493a143e"},"tier":2},"Light Wood 1":{"internalName":"Refined Light Wood 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"196da8e05292502c9205c599ad638f0222adcec0c05a8aa40f2ffc00493a143e"},"tier":1},"Decay String 3":{"internalName":"Refined Decay String 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"44","name":"profession.stringDecay"}},"tier":3},"Light Paper 3":{"internalName":"Refined Light Paper 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperLight"}},"tier":3},"Light Paper 1":{"internalName":"Refined Light Paper 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperLight"}},"tier":1},"Gylia Oil 2":{"internalName":"Refined Gylia Oil 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilGylia"}},"tier":2},"Kanderstone Ingot 2":{"internalName":"Refined Kanderstone Ingot 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"58","name":"profession.ingotKanderstone"}},"tier":2},"Gylia Meat 3":{"internalName":"Refined Gylia Meat 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGylia"}},"tier":3},"Kanderstone Ingot 1":{"internalName":"Refined Kanderstone Ingot 1","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"58","name":"profession.ingotKanderstone"}},"tier":1},"Kanderstone Ingot 3":{"internalName":"Refined Kanderstone Ingot 3","type":"material","identified":true,"requirements":{"level":70},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"58","name":"profession.ingotKanderstone"}},"tier":3},"Kanderstone Gem 2":{"internalName":"Refined Kanderstone Gem 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"70","name":"profession.gemKanderstone"}},"tier":2},"Light Paper 2":{"internalName":"Refined Light Paper 2","type":"material","identified":true,"requirements":{"level":70},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperLight"}},"tier":2},"Bitter Cold":{"internalName":"Bitter Cold","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":70,"intelligence":40,"agility":35},"powderSlots":2,"identifications":{"rawIntelligence":8,"rawAgility":5,"healthRegen":-20,"rawWaterSpellDamage":85,"rawAirSpellDamage":85,"reflection":25,"walkSpeed":-8,"rawMaxMana":-30},"base":{"baseHealth":1500,"baseWaterDefence":50,"baseAirDefence":50},"rarity":"rare"},"Afelis's Locket":{"internalName":"Afelis's Locket","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":70,"defence":60},"lore":"A golden locket Afelis always carried with them. Inside is a picture of Afelis embracing a woman in the Detlas square. 'A+E' is inscribed on the front.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"healthRegenRaw":{"min":20,"raw":65,"max":85},"healingEfficiency":{"min":3,"raw":10,"max":13},"elementalDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":375,"baseFireDefence":50},"rarity":"fabled"},"Stifling Spores":{"internalName":"Stifling Spores","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":69},"majorIds":{"Plague":"+Plague: Poisoned mobs spread their poison to nearby mobs."},"powderSlots":2,"lore":"The beauty of this peculiar grotto takes your breath away. Unfortunately, its spores do too...","identifications":{"rawMainAttackDamage":{"min":60,"raw":200,"max":260},"rawSpellDamage":{"min":45,"raw":150,"max":195},"healthRegen":{"min":-52,"raw":-40,"max":-28},"poison":{"min":1425,"raw":4750,"max":6175},"lifeSteal":{"min":42,"raw":140,"max":182},"sprint":{"min":-130,"raw":-100,"max":-70}},"base":{"baseHealth":2000},"rarity":"fabled"},"Cirrus":{"internalName":"Cirrus","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69,"agility":50},"powderSlots":2,"identifications":{"rawAgility":7,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":4,"raw":12,"max":16},"waterDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":950,"baseEarthDefence":-70,"baseThunderDefence":-90,"baseWaterDefence":40,"baseAirDefence":70},"rarity":"rare"},"Vorpal":{"internalName":"Vorpal","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":411,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"assassin","dexterity":25,"intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":17,"rawSpellDamage":{"min":36,"raw":120,"max":156},"healthRegen":{"min":-32,"raw":-25,"max":-17},"rawHealth":{"min":-650,"raw":-500,"max":-350},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":132},"baseWaterDamage":{"min":61,"raw":61,"max":72}},"rarity":"rare"},"Ionian":{"internalName":"Ionian","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":330,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"assassin","strength":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":5,"spellDamage":{"min":-6,"raw":-5,"max":-3},"poison":{"min":528,"raw":1760,"max":2288},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":60,"raw":60,"max":100},"baseEarthDamage":{"min":70,"raw":70,"max":90}},"rarity":"unique"},"Pure Diorite Relik":{"internalName":"Pure Diorite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":328,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":212,"raw":212,"max":225}},"rarity":"common"},"Crystal":{"internalName":"Crystal","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69,"intelligence":45,"agility":45},"powderSlots":2,"lore":"Forged on Mage Island, the sparkling liquid-like armour is as hard as obsidian, but light and fluid as water. It glistens with the magic of the ocean winds.","identifications":{"rawIntelligence":9,"rawAgility":9,"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1575,"baseEarthDefence":-70,"baseThunderDefence":-70,"baseWaterDefence":110,"baseAirDefence":110},"rarity":"legendary"},"Ring of Generosity":{"internalName":"Ring of Generosity","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":69,"quest":"Memory Paranoia"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"rawHealth":{"min":105,"raw":350,"max":455},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"rarity":"rare"},"Canopy":{"internalName":"Canopy","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69,"strength":30,"intelligence":30},"powderSlots":4,"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"thorns":{"min":4,"raw":14,"max":18},"reflection":{"min":2,"raw":8,"max":10},"earthDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1300,"baseEarthDefence":60,"baseWaterDefence":80,"baseFireDefence":-100},"rarity":"unique"},"Lazarus' Brace":{"internalName":"Lazarus' Brace","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":69,"quest":"Lazarus Pit"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":12,"raw":40,"max":52},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-250},"rarity":"rare"},"Steam Vent":{"internalName":"Steam Vent","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":355,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"archer","defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDefence":7,"rawAgility":7,"lifeSteal":{"min":68,"raw":225,"max":293},"walkSpeed":{"min":3,"raw":9,"max":12},"earthDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":76,"raw":76,"max":128},"baseFireDamage":{"min":48,"raw":48,"max":85},"baseAirDamage":{"min":37,"raw":37,"max":99}},"rarity":"unique"},"The Jingling Jester":{"internalName":"The Jingling Jester","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69},"majorIds":{"Greed":"+Greed: Picking up emeralds heals you and nearby players for 8% max health."},"powderSlots":3,"lore":"Jingle jangle, while shaking your bells. Jingle jangle come the pockets of cash... Catch the trickster, send them to hell,\" their money is gone and off you've dashed! ","identifications":{"healthRegenRaw":{"min":-131,"raw":-101,"max":-71},"lifeSteal":{"min":45,"raw":150,"max":195},"2ndSpellCost":{"min":-9,"raw":-31,"max":-40},"4thSpellCost":{"min":-4,"raw":-13,"max":-17},"jumpHeight":{"min":1,"raw":2,"max":3},"xpBonus":{"min":8,"raw":25,"max":33},"lootBonus":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":2325,"baseEarthDefence":1,"baseThunderDefence":1,"baseWaterDefence":1,"baseFireDefence":1,"baseAirDefence":1},"rarity":"fabled"},"Pure Diorite Wand":{"internalName":"Pure Diorite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":164,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":99,"raw":99,"max":119}},"rarity":"common"},"Kelight's Gauntlet":{"internalName":"Kelight's Gauntlet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":69,"strength":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":5,"raw":18,"max":23},"waterDefence":{"min":-9,"raw":-7,"max":-5},"airDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":435,"baseWaterDefence":-15,"baseAirDefence":-15},"rarity":"rare"},"Visceral Toe":{"internalName":"Visceral Toe","type":"armour","armourType":"boots","armourColor":"rgb(154,91,82)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":69},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":23,"raw":75,"max":98},"lifeSteal":{"min":18,"raw":60,"max":78}},"base":{"baseHealth":1445},"rarity":"set"},"Dirge":{"internalName":"Dirge","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":202,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"mage","strength":20,"agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawStrength":7,"rawAgility":-2,"poison":{"min":525,"raw":1750,"max":2275},"lifeSteal":{"min":33,"raw":110,"max":143},"earthDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":45,"raw":45,"max":80},"baseAirDamage":{"min":55,"raw":55,"max":90}},"rarity":"unique"},"Pure Diorite Bow":{"internalName":"Pure Diorite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":324,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":358,"raw":358,"max":422}},"rarity":"common"},"Raindrop":{"internalName":"Raindrop","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":69,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-3,"raw":-2,"max":-1},"spellDamage":{"min":-3,"raw":-2,"max":-1},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":-135,"baseWaterDefence":20},"rarity":"unique"},"Pure Diorite Spear":{"internalName":"Pure Diorite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":216,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":243,"raw":243,"max":277}},"rarity":"common"},"Purity":{"internalName":"Purity","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":69},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"xpBonus":10,"lootBonus":5},"rarity":"rare"},"Backfire":{"internalName":"Backfire","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":227,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"mage","strength":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"lifeSteal":{"min":-136,"raw":-105,"max":-73},"manaSteal":{"min":-5,"raw":-4,"max":-3},"exploding":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":126,"raw":126,"max":149},"baseEarthDamage":{"min":137,"raw":137,"max":171},"baseFireDamage":{"min":149,"raw":149,"max":160}},"rarity":"unique"},"Paladin's Hammer":{"internalName":"Paladin's Hammer","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":273,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"warrior","strength":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":8,"rawDefence":8,"rawMainAttackDamage":{"min":17,"raw":57,"max":74},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":0,"raw":0,"max":22},"baseEarthDamage":{"min":22,"raw":22,"max":55},"baseFireDamage":{"min":33,"raw":33,"max":44}},"rarity":"unique"},"Gwydion":{"internalName":"Gwydion","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":474,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"archer","strength":20,"intelligence":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":4,"raw":12,"max":16},"stealing":{"min":2,"raw":5,"max":7},"waterDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":-16,"raw":-12,"max":-8},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":100,"raw":100,"max":130},"baseEarthDamage":{"min":100,"raw":100,"max":130}},"rarity":"rare"},"Ekeloch":{"internalName":"Ekeloch","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69},"powderSlots":2,"identifications":{"poison":{"min":317,"raw":1055,"max":1372},"thorns":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1310,"baseThunderDefence":150,"baseAirDefence":-150},"rarity":"unique"},"Creepvine":{"internalName":"Creepvine","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":69,"strength":25},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":3,"poison":265,"walkSpeed":-8,"earthDamage":8},"base":{"baseFireDefence":-15},"rarity":"unique"},"Precipice":{"internalName":"Preipice","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":340,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"shaman","strength":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-23,"raw":-18,"max":-13},"fireDefence":{"min":-23,"raw":-18,"max":-13},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":56,"raw":56,"max":60},"baseEarthDamage":{"min":63,"raw":63,"max":93}},"rarity":"unique"},"Sanare":{"internalName":"Sanare","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":185,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"mage","intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawIntelligence":10,"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":8,"raw":25,"max":33},"healingEfficiency":{"min":4,"raw":14,"max":18}},"base":{"baseWaterDamage":{"min":80,"raw":80,"max":100}},"rarity":"rare"},"Fiery Torc":{"internalName":"Fiery Torc","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":69,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawDefence":4,"healthRegen":{"min":4,"raw":12,"max":16},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":400,"baseWaterDefence":-40,"baseFireDefence":40},"rarity":"unique"},"Plated Iron Helmet":{"internalName":"Plated Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":69},"powderSlots":2,"base":{"baseHealth":1055},"rarity":"common"},"Pure Diorite Dagger":{"internalName":"Pure Diorite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":268,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":121,"raw":121,"max":139}},"rarity":"common"},"Irradiation":{"internalName":"Irradiation","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":202,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"mage","dexterity":28,"intelligence":28},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawDexterity":8,"rawIntelligence":5,"healthRegen":{"min":-30,"raw":-23,"max":-16},"poison":{"min":528,"raw":1759,"max":2287},"healingEfficiency":{"min":-14,"raw":-11,"max":-8},"earthDamage":{"min":-39,"raw":-30,"max":-21},"waterDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseThunderDamage":{"min":17,"raw":17,"max":72},"baseWaterDamage":{"min":0,"raw":0,"max":41}},"rarity":"unique"},"Jester Ring":{"internalName":"Jester Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":69},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"lifeSteal":{"min":15,"raw":50,"max":65},"xpBonus":{"min":-32,"raw":-25,"max":-17},"lootBonus":{"min":-32,"raw":-25,"max":-17}},"rarity":"set"},"Severed Heart":{"internalName":"Severed Heart","type":"ingredient","requirements":{"level":69,"skills":["cooking"]},"icon":{"format":"legacy","value":"434:0"},"identifications":{"healthRegenRaw":{"min":-18,"raw":-18,"max":-12},"lifeSteal":{"min":12,"raw":12,"max":18}},"tier":0,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Villager","coords":[857,63,-3929,60]},{"name":"Dead Villager","coords":null},{"name":"Dead Island Bovemist","coords":[892,48,-3859,1]}]},"Archangel":{"internalName":"Archangel","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":556,"dropRestriction":"normal","requirements":{"level":69,"classRequirement":"assassin","agility":70},"powderSlots":3,"lore":"The unwieldy, yet imposing stature of this massive sickle strikes awe into those who view it. Those who have the will to wield it, however, seem to garner respect from all those around them, as though they had become a god.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.air3"}},"identifications":{"rawDefence":10,"rawAgility":15,"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":36,"raw":120,"max":156},"rawHealth":{"min":570,"raw":1900,"max":2470},"walkSpeed":{"min":12,"raw":41,"max":53},"mainAttackRange":{"min":38,"raw":125,"max":163}},"base":{"baseDamage":{"min":20,"raw":20,"max":60},"baseAirDamage":{"min":165,"raw":165,"max":200}},"rarity":"mythic"},"Helmet of Legends":{"internalName":"Helmet of Legends","type":"armour","armourType":"helmet","armourColor":"rgb(118,97,135)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":68},"base":{"baseHealth":1000},"rarity":"common"},"Jungle Artifact":{"internalName":"Jungle Artifact","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":465,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"archer","strength":21,"defence":21},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawStrength":9,"rawAgility":-7,"mainAttackDamage":{"min":4,"raw":14,"max":18},"rawSpellDamage":{"min":-100,"raw":-77,"max":-54},"walkSpeed":{"min":-27,"raw":-21,"max":-15},"exploding":{"min":4,"raw":14,"max":18},"fireDamage":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":140,"raw":140,"max":210},"baseEarthDamage":{"min":210,"raw":210,"max":280},"baseFireDamage":{"min":70,"raw":70,"max":210}},"rarity":"rare"},"Kilauea":{"internalName":"Kilauea","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":500,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"shaman","strength":30,"defence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"rawMainAttackDamage":{"min":35,"raw":115,"max":150},"spellDamage":{"min":2,"raw":7,"max":9},"rawHealth":{"min":-975,"raw":-750,"max":-525},"walkSpeed":{"min":4,"raw":12,"max":16},"exploding":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":80,"raw":80,"max":120},"baseFireDamage":{"min":88,"raw":88,"max":112}},"rarity":"rare"},"Coursing Mail":{"internalName":"Coursing Mail","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"dexterity":25},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"exploding":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-9,"raw":-7,"max":-5},"thunderDamage":{"min":4,"raw":13,"max":17},"waterDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":1250,"baseEarthDefence":-60,"baseWaterDefence":-60},"rarity":"unique"},"Prestidigitation":{"internalName":"Prestidigitation","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":-7,"rawSpellDamage":{"min":20,"raw":65,"max":85},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-22,"raw":-17,"max":-12},"waterDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1100,"baseEarthDefence":-70,"baseWaterDefence":60},"rarity":"unique"},"Fog":{"internalName":"Fog","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":68,"intelligence":10,"agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"waterDamage":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":1,"raw":4,"max":5},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDefence":-40,"baseThunderDefence":-25,"baseWaterDefence":10,"baseAirDefence":30},"rarity":"unique"},"Growth":{"internalName":"Growth","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":68,"strength":30},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":3,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"xpBonus":4,"earthDefence":6},"rarity":"rare"},"Overclocker":{"internalName":"Overclocker","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":464,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"archer","dexterity":45,"intelligence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"manaSteal":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-27,"raw":-21,"max":-15},"fireDefence":{"min":-27,"raw":-21,"max":-15},"airDefence":{"min":-27,"raw":-21,"max":-15}},"base":{"baseThunderDamage":{"min":39,"raw":39,"max":69},"baseWaterDamage":{"min":39,"raw":39,"max":69}},"rarity":"rare"},"Purified Helmet of the Legends":{"internalName":"Purified Helmet of the Legends","type":"armour","armourType":"helmet","armourColor":"rgb(118,97,135)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":68},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":8,"raw":25,"max":33},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1550},"rarity":"rare"},"Reverie":{"internalName":"Reverie","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":378,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"shaman","intelligence":25,"defence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawIntelligence":8,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":7,"raw":24,"max":31},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":7,"raw":24,"max":31},"fireDefence":{"min":7,"raw":24,"max":31}},"base":{"baseWaterDamage":{"min":108,"raw":108,"max":144},"baseFireDamage":{"min":108,"raw":108,"max":144}},"rarity":"unique"},"Stasis":{"internalName":"Stasis","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":208,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"mage","strength":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":100,"raw":100,"max":100},"baseEarthDamage":{"min":150,"raw":150,"max":150}},"rarity":"unique"},"Prayer":{"internalName":"Prayer","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"intelligence":45},"powderSlots":2,"identifications":{"rawIntelligence":5,"spellDamage":{"min":4,"raw":12,"max":16},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"xpBonus":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-21,"raw":-16,"max":-11},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1280,"baseThunderDefence":-100,"baseWaterDefence":100},"rarity":"unique"},"Anger Point":{"internalName":"Anger Point","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"strength":40},"powderSlots":2,"identifications":{"rawStrength":7,"rawDefence":-7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":44,"raw":145,"max":189},"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":9,"raw":30,"max":39},"earthDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1100,"baseThunderDefence":-80,"baseWaterDefence":-80,"baseFireDefence":-80,"baseAirDefence":-80},"rarity":"unique"},"Remikas' Sanctuary":{"internalName":"Remikas' Sanctuary","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"defence":50},"powderSlots":2,"identifications":{"rawDefence":7,"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"elementalDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1700},"rarity":"rare"},"Thin Iron Chestplate":{"internalName":"Thin Iron Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68},"powderSlots":2,"base":{"baseHealth":1025},"rarity":"common"},"Parang":{"internalName":"Parang","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":330,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"assassin","strength":30,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawStrength":8,"rawSpellDamage":{"min":-130,"raw":-100,"max":-70},"walkSpeed":{"min":3,"raw":9,"max":12},"earthDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":100,"raw":100,"max":140},"baseAirDamage":{"min":90,"raw":90,"max":110}},"rarity":"unique"},"Demeter":{"internalName":"Demeter","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":68,"strength":35,"agility":35},"powderSlots":2,"identifications":{"rawDefence":-8,"rawAgility":7,"rawMainAttackDamage":{"min":50,"raw":165,"max":215},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":5,"raw":16,"max":21},"fireDamage":{"min":-52,"raw":-40,"max":-28},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1350,"baseEarthDefence":40,"baseFireDefence":-90,"baseAirDefence":50},"rarity":"rare"},"Visceral Skullcap":{"internalName":"Visceral Skullcap","type":"armour","armourType":"helmet","armourColor":"rgb(154,91,82)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":68},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":4,"raw":13,"max":17},"healthRegenRaw":{"min":12,"raw":39,"max":51},"lifeSteal":{"min":24,"raw":80,"max":104}},"base":{"baseHealth":1400},"rarity":"set"},"Blue Mask":{"internalName":"Blue Mask","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68},"powderSlots":2,"lore":"The Blue Mask's physical traits are equal to that of paper, but the mystical properties enhance the wearers personal skills tenfold. The mask is thought to originate from an ancient Dernel tribe.","identifications":{"rawStrength":12,"rawDexterity":12,"rawIntelligence":12,"rawDefence":12,"rawAgility":12},"base":{"baseHealth":-750},"rarity":"legendary"},"Stealskull":{"internalName":"StealSkull","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68},"powderSlots":2,"identifications":{"lifeSteal":{"min":33,"raw":110,"max":143},"manaSteal":{"min":1,"raw":4,"max":5},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":960},"rarity":"unique"},"Cenote":{"internalName":"Cenote","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":68,"strength":50,"intelligence":50},"powderSlots":2,"identifications":{"rawStrength":4,"rawIntelligence":4,"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":17,"raw":55,"max":72},"rawMaxMana":{"min":6,"raw":20,"max":26},"earthDefence":{"min":4,"raw":12,"max":16},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1000,"baseEarthDefence":40,"baseWaterDefence":40,"baseAirDefence":-50},"rarity":"unique"},"Giant Claw":{"internalName":"Giant Claw","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":350,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":130,"raw":130,"max":150}},"rarity":"unique"},"Petrified Bone":{"internalName":"Petrified Bone","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":180,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"mage","defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"healthRegen":{"min":3,"raw":9,"max":12},"healthRegenRaw":{"min":20,"raw":65,"max":85},"rawHealth":{"min":150,"raw":500,"max":650},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":70,"raw":70,"max":105}},"rarity":"unique"},"Black Spear":{"internalName":"Black Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":266,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"warrior","agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDexterity":-5,"rawAgility":9,"mainAttackDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":41,"raw":135,"max":176},"walkSpeed":{"min":2,"raw":5,"max":7},"airDamage":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":120,"raw":120,"max":130},"baseAirDamage":{"min":50,"raw":50,"max":55}},"rarity":"unique"},"Calcined Estoc":{"internalName":"Calcined Estoc","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":389,"dropRestriction":"normal","requirements":{"level":68,"classRequirement":"assassin","strength":40,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":8,"rawDexterity":-15,"mainAttackDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":90,"raw":90,"max":99},"baseWaterDamage":{"min":90,"raw":90,"max":99}},"rarity":"unique"},"Leafy Stalk":{"internalName":"Leafy Stalk","type":"ingredient","requirements":{"level":68,"skills":["woodworking","weaponsmithing","cooking"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"healthRegenRaw":{"min":4,"raw":4,"max":12}},"tier":0,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":5,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mandragora","coords":[[-1328,44,-4612,25],[-1256,43,-4601,25]]},{"name":"Phrumkin Gangster","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Mandrake","coords":[-976,30,-498,9]},{"name":"Feyborne Alraune","coords":[[-1393,99,-4407,0],[-1427,101,-4445,0],[-1458,99,-4519,0],[-1492,96,-4581,0],[-1338,44,-4509,0],[-1288,44,-4516,0],[-1293,45,-4550,0],[-1331,44,-4563,0],[-1286,43,-4598,0],[-1273,43,-4593,0],[-1236,43,-4610,0],[-1227,43,-4603,0],[-1360,45,-4642,0],[-1384,42,-4653,0],[-1246,44,-4656,0],[-1320,42,-4679,0],[-1342,44,-4704,0],[-1291,60,-4746,0],[-1312,57,-4749,0],[-1358,51,-4744,0],[-1373,53,-4761,0],[-1392,49,-4766,0],[-1278,54,-4865,0],[-1283,48,-4971,0],[-1295,48,-4989,0],[-1309,47,-4992,0]]},{"name":"Phrumkin Prankster","coords":[[-1328,43,-4612,24],[-1424,48,-4598,20]]},{"name":"Luxroot Sentinel","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Luxroot Sapling","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]}]},"Iridescent Elytra":{"internalName":"Iridescent Elytra","type":"ingredient","requirements":{"level":68,"skills":["tailoring","cooking","jeweling"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"airDefence":{"min":6,"raw":6,"max":10},"walkSpeed":{"min":6,"raw":6,"max":8},"earthDamage":{"min":-10,"raw":-10,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":-690,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":20},"droppedBy":[{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Mudshroom Beetle","coords":null}]},"Squid":{"internalName":"Squid","type":"ingredient","requirements":{"level":68,"skills":["alchemism","scribing"]},"icon":{"format":"skin","value":"df33e389ddbe3c8dd332f1b6fd60c42b224e8d28b5c6dd9e50fac24c5916f951"},"identifications":{"manaSteal":{"min":6,"raw":6,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":-230,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Deep Blue Squid","coords":[[992,30,-3924,25],[743,30,-3967,25]]},{"name":"Squid","coords":[[-1063,30,-2197,20],[357,25,-2238,20],[393,25,-2179,20],[759,30,-2470,20],[-2055,30,-4264,20],[-2135,31,-4255,20],[-1961,25,-4210,20],[-1364,28,-4221,20],[-1316,26,-4194,20],[-1232,28,-4210,20],[-937,28,-4247,20],[-832,27,-4205,20],[-257,26,-4104,20],[-247,24,-2962,20],[1270,24,-4064,20],[1250,19,-4003,20],[1280,19,-3953,20],[1369,20,-3967,20],[1418,10,-4009,20],[1447,7,-4057,10],[1376,23,-3925,20],[1354,19,-3875,20],[1237,20,-4004,20]]},{"name":"Giant Squid","coords":[[-44,26,-3344,20],[185,24,-3680,20],[618,25,-3943,20],[1079,22,-3926,20],[1381,25,-3930,5],[-834,15,-2440,10],[-1177,27,-1919,20],[-2068,27,-2362,20]]}]},"Devourer's Maw":{"internalName":"Devourer's Maw","type":"ingredient","requirements":{"level":68,"skills":["alchemism"]},"icon":{"format":"skin","value":"ed506ef98a28486282f2d94b0d0ae29880e3a2d4b965148fd6532fdd53fab1a0"},"identifications":{"lifeSteal":{"min":90,"raw":90,"max":105},"manaRegen":{"min":-4,"raw":-4,"max":-2},"manaSteal":{"min":-3,"raw":-3,"max":-2}},"tier":3,"consumableOnlyIDs":{"duration":-230,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Devourer","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Regurgitator","coords":[[-1347,20,-5057,0],[-1358,20,-5070,0]]}]},"Reflection":{"internalName":"Reflection","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-22,"raw":-17,"max":-12},"spellDamage":{"min":-22,"raw":-17,"max":-12},"healthRegenRaw":{"min":20,"raw":65,"max":85},"reflection":{"min":8,"raw":25,"max":33},"elementalDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1000,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"unique"},"Thin Iron Leggings":{"internalName":"Thin Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67},"powderSlots":2,"base":{"baseHealth":990},"rarity":"common"},"Calcite":{"internalName":"Calcite","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"defence":20},"powderSlots":3,"identifications":{"rawDefence":13,"mainAttackDamage":{"min":-4,"raw":-3,"max":-2},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"fireDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":1500,"baseFireDefence":50},"rarity":"unique"},"Garnet Ring":{"internalName":"Garnet Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":67,"defence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":4,"healthRegenRaw":{"min":5,"raw":18,"max":23},"fireDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":200,"baseFireDefence":20},"rarity":"unique"},"Pure Spruce Bow":{"internalName":"Pure Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":311,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":194,"raw":194,"max":221}},"rarity":"common"},"Leikkuri":{"internalName":"Leikkuri","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":344,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"assassin","defence":10,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDefence":7,"rawAgility":7,"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":11,"max":14},"waterDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":65,"raw":65,"max":83},"baseFireDamage":{"min":25,"raw":25,"max":33},"baseAirDamage":{"min":30,"raw":30,"max":39}},"rarity":"rare"},"Fire Wire":{"internalName":"Fire Wire","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":67,"quest":"From The Mountains"},"powderSlots":1,"identifications":{"rawDefence":7,"healthRegen":{"min":11,"raw":35,"max":46},"healthRegenRaw":{"min":15,"raw":50,"max":65},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1600,"baseWaterDefence":-90,"baseFireDefence":120},"rarity":"rare"},"Clearwater":{"internalName":"Clearwater","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":371,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"archer","intelligence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":9,"healthRegen":{"min":6,"raw":20,"max":26},"poison":{"min":-2060,"raw":-1585,"max":-1109},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDefence":{"min":-10,"raw":-8,"max":-6},"waterDefence":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":100,"raw":100,"max":120},"baseWaterDamage":{"min":60,"raw":60,"max":80}},"rarity":"unique"},"Spectral Slingshot":{"internalName":"Spectral Slingshot","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":625,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"archer","strength":22,"dexterity":22,"intelligence":22,"defence":22,"agility":22},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":25,"raw":25,"max":75},"baseThunderDamage":{"min":25,"raw":25,"max":75},"baseWaterDamage":{"min":25,"raw":25,"max":75},"baseFireDamage":{"min":25,"raw":25,"max":75},"baseAirDamage":{"min":25,"raw":25,"max":75}},"rarity":"legendary"},"Admiral":{"internalName":"Admiral","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":67,"strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"elementalMainAttackDamage":20,"exploding":30,"xpBonus":15,"lootBonus":20,"elementalDamage":8},"base":{"baseHealth":1450,"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"legendary"},"Pure Spruce Wand":{"internalName":"Pure Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":152,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":64,"raw":64,"max":84}},"rarity":"common"},"Vital":{"internalName":"Vital","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":67},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":-220},"rarity":"rare"},"Mirror Shard":{"internalName":"Mirror Shard","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":380,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"shaman","dexterity":25,"intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"spellDamage":{"min":7,"raw":22,"max":29},"healthRegenRaw":{"min":-92,"raw":-71,"max":-50},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":9,"raw":30,"max":39},"lootBonus":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseThunderDamage":{"min":61,"raw":61,"max":85},"baseWaterDamage":{"min":44,"raw":44,"max":55}},"rarity":"unique"},"Pure Spruce Spear":{"internalName":"Pure Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":208,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":129,"raw":129,"max":148}},"rarity":"common"},"Arakadicus' Leg":{"internalName":"Arakadicus' Leg","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":184,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"mage","strength":15,"dexterity":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"poison":{"min":476,"raw":1585,"max":2061},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":-65,"raw":-50,"max":-35},"airDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseEarthDamage":{"min":30,"raw":30,"max":45},"baseThunderDamage":{"min":10,"raw":10,"max":60}},"rarity":"unique"},"Evening Primrose":{"internalName":"Evening Primrose","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"dexterity":30,"defence":30},"identifications":{"rawDefence":13,"healthRegen":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":21,"raw":70,"max":91},"rawHealth":{"min":-650,"raw":-500,"max":-350},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":2000,"baseEarthDefence":-40,"baseThunderDefence":60,"baseWaterDefence":-40,"baseFireDefence":60,"baseAirDefence":-40},"rarity":"legendary"},"Pure Spruce Dagger":{"internalName":"Pure Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":248,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":88,"raw":88,"max":110}},"rarity":"common"},"The Sinner":{"internalName":"The Sinner","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"dexterity":25,"defence":25},"identifications":{"rawDexterity":5,"rawDefence":5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":-58,"raw":-45,"max":-31},"thunderDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1150,"baseThunderDefence":80,"baseWaterDefence":-80,"baseFireDefence":80,"baseAirDefence":-80},"rarity":"rare"},"Glimmer":{"internalName":"Glimmer","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":67},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"xpBonus":8,"lootBonus":8,"thunderDamage":7},"rarity":"unique"},"Spider Leg Suit":{"internalName":"Spider Leg Suit","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":67,"defence":60},"powderSlots":2,"identifications":{"mainAttackDamage":15,"lifeSteal":130,"1stSpellCost":10,"thorns":25,"walkSpeed":15,"earthDefence":20},"base":{"baseHealth":1635,"baseEarthDefence":50,"baseFireDefence":75,"baseAirDefence":-50},"rarity":"rare"},"Coyote Crest":{"internalName":"Coyote Crest","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":67,"dexterity":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":5,"rawAgility":3,"rawMainAttackDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":250},"rarity":"unique"},"Hell Walk":{"internalName":"Hell Walk","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67},"powderSlots":2,"identifications":{"thorns":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"fireDefence":{"min":7,"raw":22,"max":29}},"base":{"baseHealth":1100,"baseWaterDefence":-160,"baseFireDefence":140},"rarity":"unique"},"Dalaam":{"internalName":"Dalaam","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"strength":30,"agility":30},"powderSlots":2,"identifications":{"rawStrength":10,"rawAgility":10,"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1480,"baseEarthDefence":75,"baseThunderDefence":-75,"baseFireDefence":-75,"baseAirDefence":75},"rarity":"rare"},"Frustration":{"internalName":"Frustration","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":240,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"mage","defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"healthRegenRaw":{"min":-117,"raw":-90,"max":-63},"rawHealth":{"min":90,"raw":300,"max":390},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":17,"max":22},"fireDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":0,"raw":0,"max":77},"baseFireDamage":{"min":39,"raw":39,"max":39}},"rarity":"rare"},"Pure Spruce Relik":{"internalName":"Pure Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":305,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":145,"raw":145,"max":151}},"rarity":"common"},"Regulating Charge":{"internalName":"Regulating Charge","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":317,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"assassin","dexterity":35,"intelligence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"spellDamage":{"min":4,"raw":13,"max":17},"rawSpellDamage":{"min":23,"raw":75,"max":98},"manaSteal":{"min":-10,"raw":-8,"max":-6},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":9,"max":12}},"base":{"baseThunderDamage":{"min":57,"raw":57,"max":97},"baseWaterDamage":{"min":57,"raw":57,"max":97}},"rarity":"unique"},"Moulded Helm":{"internalName":"Moulded Helm","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"strength":35},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":2,"raw":7,"max":9},"rawAttackSpeed":-1,"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":4,"raw":12,"max":16},"earthDamage":{"min":12,"raw":40,"max":52},"earthDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1050,"baseEarthDefence":100,"baseAirDefence":-80},"rarity":"unique"},"Fission Blade":{"internalName":"Fission Blade","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":344,"dropRestriction":"normal","requirements":{"level":67,"classRequirement":"warrior","dexterity":25,"defence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7},"healthRegenRaw":{"min":-91,"raw":-70,"max":-49},"lifeSteal":{"min":45,"raw":150,"max":195},"exploding":{"min":10,"raw":33,"max":43},"thunderDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-186,"raw":-143,"max":-100},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":0,"raw":0,"max":74},"baseThunderDamage":{"min":0,"raw":0,"max":74},"baseFireDamage":{"min":0,"raw":0,"max":74}},"rarity":"rare"},"Antivenom":{"internalName":"Antivenom","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":67},"dropMeta":{"name":"Efilim","type":"merchant","coordinates":[-1051,51,-5003]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"healthRegenRaw":25,"poison":-250},"base":{"baseHealth":150},"rarity":"unique"},"Stalagmites":{"internalName":"Stalagmites","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"strength":20,"dexterity":20},"powderSlots":2,"lore":"Although these boots are crafted from corrupted stone, they do not exhibit any corruptive effects on their wearers. Speculation abounds as to the reason.","identifications":{"rawStrength":7,"rawDexterity":7,"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":8,"raw":25,"max":33},"thunderDamage":{"min":8,"raw":25,"max":33},"earthDefence":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1700,"baseEarthDefence":100,"baseThunderDefence":100,"baseWaterDefence":-130,"baseAirDefence":-130},"rarity":"legendary"},"Wavelength":{"internalName":"Wavelength","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":67,"strength":14,"dexterity":14,"intelligence":14,"defence":14,"agility":14},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":4,"raw":13,"max":17},"spellDamage":{"min":4,"raw":13,"max":17},"manaSteal":{"min":-5,"raw":-4,"max":-3},"elementalDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1400,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"legendary"},"Phrumkin Seeds":{"internalName":"Phrumkin Seeds","type":"ingredient","requirements":{"level":67,"skills":["cooking"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"mainAttackDamage":{"min":5,"raw":5,"max":8},"rawHealth":{"min":130,"raw":130,"max":170}},"tier":1,"consumableOnlyIDs":{"duration":-320,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Phrumkin Gangster","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Phrumkin Prankster","coords":[[-1328,43,-4612,24],[-1424,48,-4598,20]]},{"name":"Phrumkinstein","coords":null}]},"Shattered Dawnlight":{"internalName":"Shattered Dawnlight","type":"ingredient","requirements":{"level":67,"skills":["tailoring"]},"icon":{"format":"legacy","value":"250:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"spellDamage":{"min":9,"raw":9,"max":11},"waterDamage":{"min":-6,"raw":-6,"max":-5},"healingEfficiency":{"min":-4,"raw":-4,"max":-3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kerasot Toxifont","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Ignited Faebloom":{"internalName":"Ignited Faebloom","type":"ingredient","requirements":{"level":67,"skills":["armouring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"rawStrength":{"min":6,"raw":6,"max":8},"manaSteal":{"min":6,"raw":6,"max":7},"earthDamage":{"min":-10,"raw":-10,"max":-8},"thunderDamage":{"min":-10,"raw":-10,"max":-8},"waterDamage":{"min":-10,"raw":-10,"max":-8},"airDamage":{"min":-10,"raw":-10,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mandragora","coords":[[-1328,44,-4612,25],[-1256,43,-4601,25]]},{"name":"Phrumkin Prankster","coords":[[-1328,43,-4612,24],[-1424,48,-4598,20]]},{"name":"Feyborne Alraune","coords":[[-1393,99,-4407,0],[-1427,101,-4445,0],[-1458,99,-4519,0],[-1492,96,-4581,0],[-1338,44,-4509,0],[-1288,44,-4516,0],[-1293,45,-4550,0],[-1331,44,-4563,0],[-1286,43,-4598,0],[-1273,43,-4593,0],[-1236,43,-4610,0],[-1227,43,-4603,0],[-1360,45,-4642,0],[-1384,42,-4653,0],[-1246,44,-4656,0],[-1320,42,-4679,0],[-1342,44,-4704,0],[-1291,60,-4746,0],[-1312,57,-4749,0],[-1358,51,-4744,0],[-1373,53,-4761,0],[-1392,49,-4766,0],[-1278,54,-4865,0],[-1283,48,-4971,0],[-1295,48,-4989,0],[-1309,47,-4992,0]]},{"name":"§eAlraune On Fire","coords":[-1326,43,-4446,0]}]},"Blighted Seraph":{"internalName":"Blighted Seraph","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":574,"dropRestriction":"never","requirements":{"level":67,"classRequirement":"archer","dexterity":40,"intelligence":50},"majorIds":{"Frenetic Spirit":"+Frenetic Spirit: Guardian Angels deal almost no damage, but shoots faster and expires much slower. Frenzy's cap is increased to 125%."},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawDexterity":7,"spellDamage":{"min":5,"raw":16,"max":21},"healthRegenRaw":{"min":-130,"raw":-100,"max":-70},"rawHealth":{"min":-780,"raw":-600,"max":-420},"manaRegen":{"min":4,"raw":14,"max":18},"manaSteal":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":35,"raw":35,"max":40},"baseThunderDamage":{"min":40,"raw":40,"max":120},"baseWaterDamage":{"min":60,"raw":60,"max":75}},"rarity":"fabled"},"Sodeta Boots":{"internalName":"Sodeta Boots","type":"armour","armourType":"boots","armourColor":"rgb(214,168,51)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":66,"quest":"Lost Soles"},"powderSlots":3,"lore":"These boots were standard issue to members of the prestigious, and now disbanded, Sodeta Guild, and given as a gift to the owners of Delnar Mansion one day.","identifications":{"spellDamage":{"min":7,"raw":22,"max":29},"healthRegen":{"min":4,"raw":14,"max":18},"lifeSteal":{"min":15,"raw":50,"max":65},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":7,"raw":24,"max":31}},"base":{"baseHealth":1150},"rarity":"legendary"},"Heatwind":{"internalName":"Heatwind","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":205,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"warrior","defence":30,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawAgility":5,"healthRegen":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":17,"raw":17,"max":26},"baseFireDamage":{"min":23,"raw":23,"max":31},"baseAirDamage":{"min":15,"raw":15,"max":20}},"rarity":"unique"},"Twilight":{"internalName":"Twilight","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"dexterity":50,"agility":50},"powderSlots":2,"identifications":{"rawDexterity":5,"rawAgility":5,"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"rawSpellDamage":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1350,"baseThunderDefence":50,"baseAirDefence":50},"rarity":"legendary"},"Rayshyroth's Knowledge":{"internalName":"Rayshyroth's Knowledge","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":66},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"xpBonus":{"min":4,"raw":12,"max":16}},"rarity":"rare"},"Meikyo Shisui":{"internalName":"Meikyo Shisui","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"intelligence":60},"powderSlots":1,"identifications":{"rawIntelligence":7,"healthRegenRaw":{"min":12,"raw":40,"max":52},"manaRegen":{"min":4,"raw":12,"max":16},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1500,"baseWaterDefence":60},"rarity":"legendary"},"Seastone Shank":{"internalName":"Seastone Shank","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":312,"dropRestriction":"dungeon","requirements":{"level":66,"classRequirement":"assassin","intelligence":45},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":6,"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":2,"raw":5,"max":7},"rawAttackSpeed":-1,"xpBonus":{"min":6,"raw":20,"max":26},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseWaterDamage":{"min":60,"raw":60,"max":90}},"rarity":"unique"},"Ironclad":{"internalName":"Ironclad","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"strength":25,"defence":40},"powderSlots":2,"identifications":{"rawDefence":9,"mainAttackDamage":{"min":4,"raw":14,"max":18},"exploding":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":1300,"baseEarthDefence":30,"baseFireDefence":30},"rarity":"unique"},"Astral Walkers":{"internalName":"Astral Walkers","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"dexterity":25,"defence":45},"powderSlots":2,"identifications":{"rawDexterity":5,"healthRegenRaw":{"min":18,"raw":60,"max":78},"reflection":{"min":4,"raw":14,"max":18},"earthDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1500,"baseEarthDefence":-75,"baseThunderDefence":70,"baseWaterDefence":-65,"baseFireDefence":70},"rarity":"rare"},"Scroll of Nythiar":{"internalName":"Scroll of Nythiar","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":206,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"mage","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"mainAttackDamage":{"min":-91,"raw":-70,"max":-49},"spellDamage":{"min":11,"raw":35,"max":46},"healthRegen":{"min":7,"raw":23,"max":30},"healthRegenRaw":{"min":13,"raw":42,"max":55},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":12,"raw":12,"max":21},"baseThunderDamage":{"min":6,"raw":6,"max":27},"baseWaterDamage":{"min":15,"raw":15,"max":18},"baseFireDamage":{"min":11,"raw":11,"max":22},"baseAirDamage":{"min":9,"raw":9,"max":24}},"rarity":"rare"},"Azimuth":{"internalName":"Azimuth","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":300,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"warrior","strength":40,"agility":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawStrength":7,"rawAgility":8,"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":-12,"raw":-9,"max":-6},"walkSpeed":{"min":5,"raw":17,"max":22},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":40},"baseEarthDamage":{"min":20,"raw":20,"max":60},"baseAirDamage":{"min":0,"raw":0,"max":80}},"rarity":"rare"},"Cursed Jackboots":{"internalName":"Cursed Jackboots","type":"armour","armourType":"boots","armourColor":"rgb(69,82,89)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":66,"quest":"Lost Soles","dexterity":20,"intelligence":20},"powderSlots":2,"identifications":{"rawDexterity":7,"rawIntelligence":7,"rawSpellDamage":120,"healthRegen":-20,"manaSteal":8,"thunderDamage":12,"waterDamage":12,"earthDefence":-35},"base":{"baseHealth":1400,"baseThunderDefence":50,"baseWaterDefence":80},"rarity":"legendary"},"Arakadicus' Claw":{"internalName":"Arakadicus' Claw","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":266,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"assassin","strength":20,"dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawStrength":12,"rawDexterity":12,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":-39,"raw":-30,"max":-21},"waterDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":80,"raw":80,"max":100},"baseEarthDamage":{"min":120,"raw":120,"max":190},"baseThunderDamage":{"min":20,"raw":20,"max":130}},"rarity":"unique"},"Kekkai":{"internalName":"Kekkai","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":225,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"warrior","agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"reflection":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":-39,"raw":-30,"max":-21},"earthDefence":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":55,"raw":55,"max":90},"baseAirDamage":{"min":65,"raw":65,"max":90}},"rarity":"unique"},"Rheingold":{"internalName":"Rheingold","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"dexterity":20,"agility":25},"powderSlots":2,"identifications":{"rawDexterity":5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":3,"raw":11,"max":14},"lootBonus":{"min":5,"raw":16,"max":21},"fireDamage":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":1000,"baseEarthDefence":-60,"baseThunderDefence":50,"baseFireDefence":-60,"baseAirDefence":70},"rarity":"unique"},"Eitr":{"internalName":"Eitr","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"dexterity":15,"defence":30},"identifications":{"rawDefence":4,"poison":{"min":311,"raw":1035,"max":1346},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thunderDamage":{"min":4,"raw":13,"max":17},"waterDamage":{"min":-23,"raw":-18,"max":-13},"fireDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":1430,"baseEarthDefence":-70,"baseThunderDefence":55,"baseWaterDefence":-50,"baseFireDefence":65},"rarity":"rare"},"Thin Iron Boots":{"internalName":"Thin Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66},"powderSlots":2,"base":{"baseHealth":955},"rarity":"common"},"Sublimator":{"internalName":"Sublimator","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"strength":30,"defence":30},"powderSlots":1,"identifications":{"rawDefence":5,"mainAttackDamage":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":5,"raw":16,"max":21},"fireDamage":{"min":5,"raw":16,"max":21},"waterDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":1250,"baseEarthDefence":70,"baseWaterDefence":-90,"baseFireDefence":70},"rarity":"unique"},"Svalinn":{"internalName":"Svalinn","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"intelligence":15,"defence":30},"identifications":{"rawDefence":12,"rawAgility":-5,"healthRegen":{"min":9,"raw":30,"max":39},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-36,"raw":-28,"max":-20},"earthDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":1450,"baseWaterDefence":50,"baseFireDefence":150},"rarity":"rare"},"Circuit Flights":{"internalName":"Circuit Flights","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":492,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"shaman","dexterity":25,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"405","name":"relik.thunder3"}},"identifications":{"rawMainAttackDamage":{"min":23,"raw":75,"max":98},"lifeSteal":{"min":-220,"raw":-169,"max":-118},"xpBonus":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":5,"raw":18,"max":23},"airDamage":{"min":5,"raw":18,"max":23},"earthDefence":{"min":7,"raw":24,"max":31}},"base":{"baseThunderDamage":{"min":52,"raw":52,"max":74},"baseAirDamage":{"min":43,"raw":43,"max":60}},"rarity":"rare"},"Remikas' Authority":{"internalName":"Remikas' Authority","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":66,"defence":60},"lore":"This plain-looking silver bracer is one of the last surviving heirlooms of the first Gavellian king, to be passed down to his heirs. The shimmering metal is said to contain Remikas' soul within it.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":3,"rawDexterity":1,"rawIntelligence":3,"rawDefence":5,"rawAgility":1},"base":{"baseHealth":350,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Jade Talon":{"internalName":"Jade Talon","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":364,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"assassin","strength":15,"dexterity":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawStrength":3,"rawDexterity":3,"mainAttackDamage":{"min":6,"raw":19,"max":25},"manaSteal":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":108,"raw":108,"max":127}},"rarity":"unique"},"League":{"internalName":"League","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":66,"agility":40},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"walkSpeed":{"min":2,"raw":8,"max":10},"sprint":{"min":4,"raw":14,"max":18},"sprintRegen":{"min":4,"raw":14,"max":18},"jumpHeight":1},"base":{"baseEarthDefence":-25,"baseFireDefence":-25},"rarity":"legendary"},"Foam Bracer":{"internalName":"Foam Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":66,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":1,"raw":4,"max":5}},"base":{"baseThunderDefence":-45,"baseWaterDefence":30,"baseAirDefence":10},"rarity":"unique"},"Leg of the Scared":{"internalName":"Leg of the Scared","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"agility":25},"powderSlots":2,"identifications":{"rawAgility":5,"walkSpeed":{"min":5,"raw":15,"max":20},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1050,"baseEarthDefence":-60,"baseAirDefence":80},"rarity":"unique"},"Impact Winter":{"internalName":"Impact Winter","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"strength":40,"intelligence":25},"majorIds":{"Flashfreeze":"+Flashfreeze: Ice Snake is instant and freezes for +1s."},"powderSlots":3,"lore":"Do you think you can survive with a sky choked by snow and ash? More importantly, do you think anything else can?","identifications":{"spellDamage":{"min":4,"raw":14,"max":18},"healthRegenRaw":{"min":-97,"raw":-75,"max":-52},"poison":{"min":405,"raw":1350,"max":1755},"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":7,"raw":24,"max":31},"waterDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1450,"baseFireDefence":-90,"baseAirDefence":-90},"rarity":"fabled"},"Firefly":{"internalName":"Firefly","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":66,"defence":20,"agility":20},"powderSlots":2,"identifications":{"rawAgility":5,"healthRegen":{"min":6,"raw":20,"max":26},"lifeSteal":{"min":32,"raw":105,"max":137},"walkSpeed":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":8,"max":10},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1200,"baseWaterDefence":-70,"baseFireDefence":65,"baseAirDefence":50},"rarity":"unique"},"Ik-El-Van":{"internalName":"Ik-El-Van","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":322,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"warrior","intelligence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":5,"raw":16,"max":21},"lifeSteal":{"min":-156,"raw":-120,"max":-84},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-32,"raw":-25,"max":-17},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":48,"raw":48,"max":75},"baseWaterDamage":{"min":60,"raw":60,"max":75}},"rarity":"rare"},"Atoll":{"internalName":"Atoll","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"intelligence":30,"defence":30},"powderSlots":2,"identifications":{"rawDefence":4,"spellDamage":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":18,"raw":60,"max":78},"earthDamage":{"min":-23,"raw":-18,"max":-13},"waterDefence":{"min":4,"raw":14,"max":18},"fireDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":1200,"baseEarthDefence":-70,"baseThunderDefence":-70,"baseWaterDefence":80,"baseFireDefence":80},"rarity":"unique"},"Redbeard's Cutlass":{"internalName":"Redbeard's Cutlass","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":375,"dropRestriction":"dungeon","requirements":{"level":66,"classRequirement":"assassin","strength":35,"intelligence":45},"powderSlots":3,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawStrength":6,"rawSpellDamage":{"min":44,"raw":145,"max":189},"raw3rdSpellCost":{"min":-2,"raw":-8,"max":-10},"exploding":{"min":6,"raw":20,"max":26},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":35,"raw":35,"max":45},"baseEarthDamage":{"min":75,"raw":75,"max":105},"baseWaterDamage":{"min":100,"raw":100,"max":140}},"rarity":"legendary"},"Asymptote":{"internalName":"Asymptote","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":66,"strength":25,"dexterity":25},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":-13,"raw":-10,"max":-7},"healthRegenRaw":{"min":-71,"raw":-55,"max":-38},"lifeSteal":{"min":35,"raw":115,"max":150},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":-13,"raw":-10,"max":-7},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1250,"baseEarthDefence":60,"baseThunderDefence":60,"baseAirDefence":-100},"rarity":"rare"},"Redbeard's Hand Cannon":{"internalName":"Redbeard's Hand Cannon","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":557,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":66,"classRequirement":"archer","strength":10},"powderSlots":3,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"walkSpeed":-20,"exploding":40,"lootBonus":30,"stealing":10},"base":{"baseDamage":{"min":960,"raw":960,"max":1223}},"rarity":"legendary"},"Mistweaver":{"internalName":"Mistweaver","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":360,"dropRestriction":"normal","requirements":{"level":66,"classRequirement":"shaman","intelligence":20,"agility":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawAgility":5,"airDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":-19,"raw":-15,"max":-10},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":69,"raw":69,"max":75},"baseWaterDamage":{"min":69,"raw":69,"max":75}},"rarity":"unique"},"Leopard Blood":{"internalName":"Leopard Blood","type":"ingredient","requirements":{"level":66,"skills":["alchemism"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"rawMainAttackDamage":{"min":85,"raw":85,"max":110},"rawSpellDamage":{"min":-110,"raw":-110,"max":-85}},"tier":2,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Leopard","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Canopy Leopard","coords":[[-528,60,-508,3],[-582,66,-406,3],[-608,52,-386,3],[-598,70,-357,3],[-598,70,-357,3],[-598,70,-357,3]]}]},"Mahogany Heartwood":{"internalName":"Mahogany Heartwood","type":"ingredient","requirements":{"level":66,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"435:0"},"identifications":{"rawStrength":{"min":4,"raw":4,"max":6},"mainAttackDamage":{"min":8,"raw":8,"max":12},"fireDefence":{"min":-10,"raw":-10,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-119000,"strengthRequirement":16,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mahogany Colossus","coords":[[-590,29,-414,42],[-551,31,-495,26],[-580,23,-546,25],[-642,27,-462,21]]}]},"Snake Skin":{"internalName":"Snake Skin","type":"ingredient","requirements":{"level":66,"skills":["alchemism"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"walkSpeed":{"min":6,"raw":6,"max":8},"rawHealth":{"min":-300,"raw":-300,"max":-250},"airDamage":{"min":8,"raw":8,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jungle Viper","coords":[[-768,26,-460,8],[-770,33,-447,8],[-759,23,-467,8],[-792,24,-470,8],[-593,48,-304,10],[-691,37,-528,6]]},{"name":"Qunbos Boa","coords":[-686,28,-225,1]},{"name":"Mesquis","coords":[[-788,57,-5029,0],[-782,57,-5028,0],[-787,56,-5035,0],[-781,52,-5045,0]]},{"name":"Ganhir","coords":null},{"name":"Ratel","coords":null},{"name":"Echidna Serpent","coords":null},{"name":"Ayri Whisperer","coords":[-786,26,-448,0]},{"name":"Meskis","coords":[-1296,7,-5557,20]},{"name":"Mud-Spitting Serpent","coords":null},{"name":"Hanja Brood Guard","coords":null},{"name":"Hanja Ranger","coords":null},{"name":"Hanja Abomination","coords":null},{"name":"Medusa","coords":null},{"name":"Earth Basilisk","coords":null},{"name":"Hanja Guardian","coords":null},{"name":"Temple Serpent","coords":null},{"name":"Icy Gorgon","coords":[[917,17,-5176,5],[934,17,-5182,5],[911,17,-5161,5],[912,17,-5141,6]]}]},"Decaying Heart":{"internalName":"Decaying Heart","type":"ingredient","requirements":{"level":66,"skills":["tailoring","armouring"]},"icon":{"format":"skin","value":"96c8447a8b6b0e0c7e7629c6898ec9c749a7a0a2b452b9c3852c7847bb4dc5"},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-100,"notTouching":60},"itemOnlyIDs":{"durabilityModifier":-175000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Knight","coords":[-1238,42,-5375,5]},{"name":"Rotting Luxroot","coords":[[-1377,50,-5138,50],[-1308,43,-5324,62],[-1160,44,-5426,55],[-1327,47,-5226,55],[-1064,45,-5444,55],[-1228,45,-5531,55],[-1174,43,-5284,31]]},{"name":"Umbral Arbalist","coords":[[-1244,54,-5337,0],[-1242,54,-5440,0],[-1156,54,-5117,0],[-1226,52,-5110,0],[-1276,54,-5100,0],[-1342,63,-5100,0]]},{"name":"Night Lurker","coords":[[-1061,42,-5534,35],[-1035,48,-5573,30],[-1276,47,-5214,25],[-1282,48,-5261,25],[-1254,46,-5302,25],[-1240,42,-5354,25]]},{"name":"Dark Executioner","coords":[-1238,42,-5375,5]},{"name":"Abyssal Knight","coords":false},{"name":"Dullahan's Gargoyle","coords":[-1127,88,-5608,0]},{"name":"Tenebrous Infantry","coords":[[-1377,50,-5138,50],[-1308,43,-5324,62],[-1160,44,-5426,55],[-1327,47,-5226,55],[-1064,45,-5444,55],[-1228,45,-5531,55],[-1174,43,-5284,31]]}]},"Curse Gland":{"internalName":"Curse Gland","type":"ingredient","requirements":{"level":66,"skills":["woodworking"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"earthDamage":{"min":10,"raw":10,"max":13},"waterDefence":{"min":-9,"raw":-9,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-78000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kerasot Toxifont","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Kerasot Sporehead":{"internalName":"Kerasot Sporehead","type":"ingredient","requirements":{"level":66,"skills":["cooking"]},"icon":{"format":"legacy","value":"200:0"},"identifications":{"rawAttackSpeed":{"min":-1,"raw":-1,"max":-1},"poison":{"min":350,"raw":350,"max":425},"lifeSteal":{"min":30,"raw":30,"max":40}},"tier":3,"consumableOnlyIDs":{"duration":-670,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kerasot Toxifont","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]},{"name":"Darkloid Beetle","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]}]},"Pure Light Birch Wand":{"internalName":"Pure Light Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":140,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":51,"raw":51,"max":61}},"rarity":"common"},"The Eviscerator":{"internalName":"The Eviscerator","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":320,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"warrior","strength":20,"dexterity":20},"powderSlots":2,"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":13,"rawDexterity":7,"poison":{"min":488,"raw":1625,"max":2113},"lifeSteal":{"min":45,"raw":150,"max":195},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":21,"raw":21,"max":128}},"rarity":"rare"},"Thalassa":{"internalName":"Thalassa","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":65,"intelligence":40},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"manaRegen":{"min":-5,"raw":-4,"max":-3},"manaSteal":{"min":-3,"raw":-2,"max":-1},"waterDamage":{"min":5,"raw":16,"max":21}},"base":{"baseWaterDefence":15},"rarity":"unique"},"Ceremonial Skirt":{"internalName":"Ceremonial Skirt","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":65,"dexterity":50},"powderSlots":3,"identifications":{"rawAgility":5,"rawMainAttackDamage":140,"manaSteal":4,"walkSpeed":8,"rawThunderMainAttackDamage":180},"base":{"baseHealth":1200},"rarity":"rare"},"Sky Reflector":{"internalName":"Sky Reflector","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65},"powderSlots":2,"identifications":{"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":5,"max":7},"waterDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1100,"baseWaterDefence":15,"baseFireDefence":-60,"baseAirDefence":70},"rarity":"unique"},"Icicle":{"internalName":"Icicle","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":363,"dropRestriction":"never","identified":true,"requirements":{"level":65,"classRequirement":"assassin","intelligence":40},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":7,"rawSpellDamage":100,"manaSteal":4,"thorns":15,"reflection":15,"waterDamage":10,"fireDefence":-10},"base":{"baseWaterDamage":{"min":77,"raw":77,"max":92}},"rarity":"rare"},"Relic Daggers":{"internalName":"Relic Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":405,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin"},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-862,22,-310,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":24,"raw":24,"max":30},"baseEarthDamage":{"min":24,"raw":24,"max":30},"baseThunderDamage":{"min":24,"raw":24,"max":30},"baseWaterDamage":{"min":24,"raw":24,"max":30},"baseFireDamage":{"min":24,"raw":24,"max":30},"baseAirDamage":{"min":24,"raw":24,"max":30}},"rarity":"rare"},"Thunder Relic Daggers":{"internalName":"Thunder Relic Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":341,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","dexterity":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-862,22,-310,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":90},"baseThunderDamage":{"min":20,"raw":20,"max":90}},"rarity":"rare"},"Babylon's Scale":{"internalName":"Babylon's Scale","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":422,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"assassin","agility":65},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDefence":-10,"rawAgility":13,"walkSpeed":{"min":4,"raw":13,"max":17},"exploding":{"min":-17,"raw":-13,"max":-9},"fireDamage":{"min":-25,"raw":-19,"max":-13},"airDamage":{"min":6,"raw":19,"max":25},"fireDefence":{"min":-21,"raw":-16,"max":-11},"airDefence":{"min":5,"raw":16,"max":21}},"base":{"baseAirDamage":{"min":10,"raw":10,"max":400}},"rarity":"legendary"},"Rusted Root":{"internalName":"Rusted Root","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":592,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"shaman","strength":40,"dexterity":45},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.earth3"}},"identifications":{"rawSpellDamage":{"min":39,"raw":130,"max":169},"poison":{"min":555,"raw":1850,"max":2405},"raw2ndSpellCost":{"min":-3,"raw":-10,"max":-13},"3rdSpellCost":{"min":64,"raw":49,"max":34},"4thSpellCost":{"min":-13,"raw":-42,"max":-55},"jumpHeight":-1,"thunderDamage":{"min":11,"raw":35,"max":46},"waterDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseDamage":{"min":190,"raw":190,"max":210},"baseEarthDamage":{"min":190,"raw":190,"max":200}},"rarity":"legendary"},"Spectre":{"internalName":"Spectre","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65,"agility":35},"powderSlots":1,"lore":"The dark spectres of the decayed forests have created an insidious helmet to drain the spirit of those who wear it, and become servants to their dark whims. Many have fallen to its allure.","identifications":{"rawAgility":9,"mainAttackDamage":{"min":-45,"raw":-35,"max":-24},"spellDamage":{"min":8,"raw":25,"max":33},"rawHealth":{"min":-325,"raw":-250,"max":-175},"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-25,"raw":-19,"max":-13},"thunderDamage":{"min":6,"raw":19,"max":25},"airDamage":{"min":6,"raw":19,"max":25},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1600,"baseEarthDefence":-50,"baseFireDefence":-50},"rarity":"legendary"},"Pure Light Birch Spear":{"internalName":"Pure Light Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":193,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":85,"raw":85,"max":102}},"rarity":"common"},"North Pole":{"internalName":"North Pole","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":210,"dropRestriction":"never","identified":true,"requirements":{"level":65,"classRequirement":"mage","defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawDefence":7,"rawAgility":7,"walkSpeed":10,"lootBonus":15,"fireDefence":20,"airDefence":20},"base":{"baseDamage":{"min":34,"raw":34,"max":50},"baseFireDamage":{"min":17,"raw":17,"max":25},"baseAirDamage":{"min":17,"raw":17,"max":25}},"rarity":"rare"},"Solar Flare":{"internalName":"Solar Flare","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":65,"dexterity":30,"defence":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"exploding":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1000,"baseThunderDefence":70,"baseWaterDefence":-70},"rarity":"unique"},"Bladestorm":{"internalName":"Bladestorm","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":271,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawDexterity":12,"walkSpeed":{"min":5,"raw":15,"max":20},"airDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":17,"raw":17,"max":20},"baseThunderDamage":{"min":22,"raw":22,"max":29},"baseAirDamage":{"min":37,"raw":37,"max":50}},"rarity":"unique"},"Firewood":{"internalName":"Firewood","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":292,"dropRestriction":"never","identified":true,"requirements":{"level":65,"classRequirement":"warrior","strength":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawStrength":5,"mainAttackDamage":12,"spellDamage":-6,"exploding":15,"earthDamage":15,"waterDefence":-10},"base":{"baseDamage":{"min":95,"raw":95,"max":155},"baseFireDamage":{"min":55,"raw":55,"max":85}},"rarity":"rare"},"Air Relic Dagger":{"internalName":"Air Relic Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":326,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":7,"rawSpellDamage":{"min":26,"raw":85,"max":111},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":39,"raw":39,"max":66},"baseAirDamage":{"min":39,"raw":39,"max":66}},"rarity":"rare"},"Pure Light Birch Relik":{"internalName":"Pure Light Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":281,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":111,"raw":111,"max":114}},"rarity":"common"},"Thin Iron Helmet":{"internalName":"Thin Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65},"powderSlots":2,"base":{"baseHealth":920},"rarity":"common"},"Fellowship":{"internalName":"Fellowship","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":65,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"171","name":"bracelet.multi2"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2},"rarity":"rare"},"Lethality":{"internalName":"Lethality","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":400,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"shaman","dexterity":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"402","name":"relik.fire3"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"poison":{"min":428,"raw":1425,"max":1853},"lifeSteal":{"min":33,"raw":110,"max":143},"manaSteal":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":32},"baseThunderDamage":{"min":30,"raw":30,"max":32},"baseFireDamage":{"min":30,"raw":30,"max":32}},"rarity":"unique"},"Myrrh":{"internalName":"Myrrh","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":65,"intelligence":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"spellDamage":4,"manaRegen":6},"base":{"baseHealth":-100,"baseWaterDefence":10},"rarity":"rare"},"Air Relic Daggers":{"internalName":"Air Relic Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":294,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","agility":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-862,22,-310,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":7,"rawSpellDamage":{"min":26,"raw":85,"max":111},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":35,"raw":35,"max":60},"baseAirDamage":{"min":35,"raw":35,"max":60}},"rarity":"rare"},"Hesperium":{"internalName":"Hesperium","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":475,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"archer","strength":50,"defence":40},"majorIds":{"Fission":"+Fission: Explosions from your Exploding ID are twice as big and twice as strong."},"powderSlots":2,"lore":"Watch as they receive your gift of imminent disaster and endless fallout.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawDexterity":-20,"rawSpellDamage":{"min":-214,"raw":-165,"max":-115},"healthRegen":{"min":9,"raw":30,"max":39},"poison":{"min":636,"raw":2120,"max":2756},"rawAttackSpeed":1,"exploding":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-78,"raw":-60,"max":-42}},"base":{"baseDamage":{"min":239,"raw":239,"max":239},"baseEarthDamage":{"min":94,"raw":94,"max":239},"baseFireDamage":{"min":94,"raw":94,"max":239}},"rarity":"fabled"},"Water Relic Daggers":{"internalName":"Water Relic Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":300,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","intelligence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":55,"raw":55,"max":65},"baseWaterDamage":{"min":55,"raw":55,"max":65}},"rarity":"rare"},"Rotten Wood":{"internalName":"Rotten Wood","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":4,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"poison":{"min":848,"raw":2825,"max":3673}},"base":{"baseDamage":{"min":1,"raw":1,"max":5}},"rarity":"unique"},"Sealskin Parka":{"internalName":"Sealskin Parka","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":65,"intelligence":20,"agility":20},"powderSlots":2,"identifications":{"rawIntelligence":6,"rawAgility":3,"manaRegen":6,"reflection":12,"walkSpeed":12,"xpBonus":8,"thunderDamage":-40,"waterDefence":16,"airDefence":16},"base":{"baseHealth":1400,"baseThunderDefence":-70,"baseWaterDefence":90,"baseAirDefence":90},"rarity":"rare"},"Pure Light Birch Bow":{"internalName":"Pure Light Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":289,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":133,"raw":133,"max":148}},"rarity":"common"},"Fire Relic Dagger":{"internalName":"Fire Relic Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":312,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","defence":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":24,"raw":80,"max":104},"rawHealth":{"min":276,"raw":920,"max":1196},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":55,"raw":55,"max":70},"baseFireDamage":{"min":55,"raw":55,"max":70}},"rarity":"rare"},"Marrow":{"internalName":"Marrow","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"healthRegen":{"min":7,"raw":24,"max":31},"healthRegenRaw":{"min":18,"raw":60,"max":78},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":1100},"rarity":"unique"},"Earth Relic Daggers":{"internalName":"Earth Relic Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":402,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","strength":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":85,"raw":85,"max":110},"baseEarthDamage":{"min":85,"raw":85,"max":110}},"rarity":"rare"},"Wolf Bow":{"internalName":"Wolf Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":360,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"healthRegen":{"min":9,"raw":30,"max":39},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":120,"raw":120,"max":230}},"rarity":"unique"},"Fire Relic Daggers":{"internalName":"Fire Relic Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":312,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"assassin","defence":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-862,22,-310,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":24,"raw":80,"max":104},"rawHealth":{"min":276,"raw":920,"max":1196},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":55,"raw":55,"max":70},"baseFireDamage":{"min":55,"raw":55,"max":70}},"rarity":"rare"},"Tectonics":{"internalName":"Tectonics","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":65,"strength":50},"powderSlots":2,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1130,"baseEarthDefence":40},"rarity":"unique"},"Charm of the Vampire":{"internalName":"Charm of the Vampire","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lifeSteal":{"min":14,"raw":45,"max":59},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":225},"rarity":"unique"},"Pure Light Birch Dagger":{"internalName":"Pure Light Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":239,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":69,"raw":69,"max":85}},"rarity":"common"},"Psithurism":{"internalName":"Psithurism","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65,"strength":25,"agility":35},"powderSlots":2,"identifications":{"rawAgility":8,"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":2,"raw":8,"max":10},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1200,"baseEarthDefence":55,"baseFireDefence":-80,"baseAirDefence":75},"rarity":"unique"},"Poinsettia":{"internalName":"Poinsettia","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":338,"dropRestriction":"never","identified":true,"requirements":{"level":65,"classRequirement":"shaman","strength":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"poison":2425,"manaSteal":-4,"earthDefence":25,"waterDefence":25},"base":{"baseEarthDamage":{"min":60,"raw":60,"max":75},"baseWaterDamage":{"min":60,"raw":60,"max":75}},"rarity":"rare"},"Skull Bandanna":{"internalName":"Skull Bandanna","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"dungeon","requirements":{"level":65,"dexterity":40},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"lifeSteal":{"min":24,"raw":80,"max":104},"rawAttackSpeed":1,"lootBonus":{"min":6,"raw":19,"max":25},"stealing":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":925,"baseEarthDefence":-70,"baseThunderDefence":65},"rarity":"unique"},"Infected Band":{"internalName":"Infected Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"healthRegen":{"min":-10,"raw":-8,"max":-6},"poison":{"min":63,"raw":210,"max":273},"lifeSteal":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":-60},"rarity":"unique"},"Tempered Boots":{"internalName":"Tempered Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65,"defence":30},"identifications":{"rawDefence":8,"fireDamage":{"min":2,"raw":6,"max":8},"elementalDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1300},"rarity":"unique"},"Pure":{"internalName":"Pure","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":181,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"mage","intelligence":50,"agility":30},"majorIds":{"Gravity Well":"+Gravity Well: Meteor has increased blast radius and pulls enemies instead."},"lore":"Carved directly from the mysterious rock that hit Gavel 50 years ago, this pure white wand glows with cosmic energy unknown.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":120,"raw":400,"max":520},"manaSteal":{"min":6,"raw":20,"max":26},"reflection":{"min":6,"raw":20,"max":26},"xpBonus":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":20,"raw":20,"max":45},"baseAirDamage":{"min":15,"raw":15,"max":55}},"rarity":"mythic"},"Barbarossa":{"internalName":"Barbarossa","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":65,"defence":45},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"exploding":{"min":4,"raw":12,"max":16},"fireDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":-21,"raw":-16,"max":-11},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":450,"baseFireDefence":25},"rarity":"legendary"},"Heaven's Gate":{"internalName":"Heaven's Gate","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":328,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"warrior","intelligence":30,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":4,"raw":13,"max":17},"waterDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseWaterDamage":{"min":20,"raw":20,"max":66},"baseAirDamage":{"min":20,"raw":20,"max":66}},"rarity":"legendary"},"Donner":{"internalName":"Donner","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":65,"dexterity":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDexterity":5,"fireDamage":9},"base":{"baseThunderDefence":15,"baseWaterDefence":-25,"baseFireDefence":15},"rarity":"unique"},"Phage Pins":{"internalName":"Phage Pins","type":"armour","armourType":"boots","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":65,"defence":60},"powderSlots":3,"lore":"Salvaged from the limbs of the Vulcor Adrenophage, they radiate extreme heat, suffusing the body they attach to with that same heat. It almost feels as though your blood is heating to a frenetic boil.","dropMeta":{"name":"Magmastream Core","type":"altar","coordinates":[-1025,95,-3657]},"identifications":{"rawStrength":10,"healthRegenRaw":{"min":32,"raw":108,"max":140},"manaRegen":{"min":4,"raw":12,"max":16},"2ndSpellCost":{"min":-12,"raw":-40,"max":-52},"walkSpeed":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":-260,"baseEarthDefence":75,"baseFireDefence":75},"rarity":"fabled"},"Infernus Aeterna":{"internalName":"Infernus Aeterna","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":525,"dropRestriction":"never","requirements":{"level":65,"classRequirement":"shaman","dexterity":45,"defence":30},"majorIds":{"Geocentrism":"+Geocentrism: Aura radiates from you instead of your Totem and can be cast any time."},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDexterity":9,"thunderSpellDamage":{"min":5,"raw":17,"max":22},"rawFireMainAttackDamage":{"min":150,"raw":500,"max":650},"lifeSteal":{"min":53,"raw":175,"max":228},"healingEfficiency":{"min":-39,"raw":-30,"max":-21},"walkSpeed":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":180,"raw":180,"max":220},"baseThunderDamage":{"min":200,"raw":200,"max":325},"baseFireDamage":{"min":150,"raw":150,"max":190}},"rarity":"fabled"},"Ultramarine Cape":{"internalName":"Ultramarine Cape","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":65,"intelligence":100},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-18,"raw":-14,"max":-10},"manaRegen":{"min":4,"raw":12,"max":16},"lootBonus":{"min":3,"raw":9,"max":12},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1000,"baseThunderDefence":-70},"rarity":"set"},"Onyx Anchor":{"internalName":"Onyx Anchor","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":456,"dropRestriction":"dungeon","requirements":{"level":65,"classRequirement":"shaman","strength":30,"defence":30},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawMainAttackDamage":{"min":96,"raw":320,"max":416},"spellDamage":{"min":6,"raw":20,"max":26},"manaSteal":{"min":1,"raw":3,"max":4},"1stSpellCost":{"min":26,"raw":20,"max":14},"3rdSpellCost":{"min":26,"raw":20,"max":14}},"base":{"baseEarthDamage":{"min":250,"raw":250,"max":300},"baseFireDamage":{"min":270,"raw":270,"max":280}},"rarity":"rare"},"Druid's Ring":{"internalName":"Druid's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":65,"strength":5,"intelligence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"earthDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":200,"baseEarthDefence":20,"baseWaterDefence":20},"rarity":"unique"},"Polar Star":{"internalName":"Polar Star","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":460,"dropRestriction":"never","identified":true,"requirements":{"level":65,"classRequirement":"archer","dexterity":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":10,"mainAttackDamage":10,"spellDamage":10,"rawSpellDamage":100,"walkSpeed":10,"xpBonus":10,"earthDamage":-10},"base":{"baseThunderDamage":{"min":107,"raw":107,"max":107}},"rarity":"rare"},"The Exile":{"internalName":"The Exile","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":355,"dropRestriction":"normal","requirements":{"level":65,"classRequirement":"assassin","defence":50},"powderSlots":2,"lore":"This indestructible dagger was found floating in the magma of the Molten Heights, with a lament from its exiled smith carved onto the hilt.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"265","name":"dagger.fire3"}},"identifications":{"rawStrength":-5,"rawDefence":13,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"healthRegen":{"min":9,"raw":30,"max":39},"rawHealth":{"min":300,"raw":1000,"max":1300},"lifeSteal":{"min":57,"raw":190,"max":247},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"fireDefence":{"min":14,"raw":45,"max":59}},"base":{"baseDamage":{"min":100,"raw":100,"max":135},"baseFireDamage":{"min":40,"raw":40,"max":70}},"rarity":"legendary"},"Bloudil":{"internalName":"Bloudil","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65},"powderSlots":2,"identifications":{"rawAgility":5,"reflection":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":4,"raw":14,"max":18},"xpBonus":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":1380},"rarity":"rare"},"Redirection":{"internalName":"Redirection","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":65,"dexterity":25},"powderSlots":2,"identifications":{"rawDexterity":4,"thorns":{"min":4,"raw":12,"max":16},"reflection":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1050,"baseEarthDefence":-70,"baseThunderDefence":30},"rarity":"unique"},"Unspeakable":{"internalName":"Unspeakable","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":65,"strength":36,"dexterity":47},"lore":"The wielders of this cursed glassen bauble are rendered mute. The effect is reversed after the item is removed, but the longer it is worn, the longer the curse remains.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawStrength":3,"rawDexterity":4,"rawMainAttackDamage":{"min":-57,"raw":-44,"max":-31},"rawSpellDamage":{"min":-56,"raw":-43,"max":-30},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":-239},"rarity":"legendary"},"Tenebrous Plasma":{"internalName":"Tenebrous Plasma","type":"ingredient","requirements":{"level":65,"skills":["alchemism"]},"icon":{"format":"legacy","value":"252:15"},"identifications":{"walkSpeed":{"min":6,"raw":6,"max":10},"mainAttackDamage":{"min":-20,"raw":-20,"max":-12},"spellDamage":{"min":10,"raw":10,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]}]},"Faebloom Petal":{"internalName":"Faebloom Petal","type":"ingredient","requirements":{"level":65,"skills":["jeweling"]},"icon":{"format":"legacy","value":"360:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":2},"earthDamage":{"min":3,"raw":3,"max":4},"fireDefence":{"min":-6,"raw":-6,"max":-5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Feyborne Alraune","coords":[[-1393,99,-4407,0],[-1427,101,-4445,0],[-1458,99,-4519,0],[-1492,96,-4581,0],[-1338,44,-4509,0],[-1288,44,-4516,0],[-1293,45,-4550,0],[-1331,44,-4563,0],[-1286,43,-4598,0],[-1273,43,-4593,0],[-1236,43,-4610,0],[-1227,43,-4603,0],[-1360,45,-4642,0],[-1384,42,-4653,0],[-1246,44,-4656,0],[-1320,42,-4679,0],[-1342,44,-4704,0],[-1291,60,-4746,0],[-1312,57,-4749,0],[-1358,51,-4744,0],[-1373,53,-4761,0],[-1392,49,-4766,0],[-1278,54,-4865,0],[-1283,48,-4971,0],[-1295,48,-4989,0],[-1309,47,-4992,0]]},{"name":"§eAlraune On Fire","coords":[-1326,43,-4446,0]}]},"Wybel Taffy":{"internalName":"Wybel Taffy","type":"ingredient","requirements":{"level":65,"skills":["alchemism","cooking"]},"icon":{"format":"legacy","value":"351:5"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Ice Cream Sandwich":{"internalName":"Ice Cream Sandwich","type":"ingredient","requirements":{"level":65,"skills":["scribing","cooking"]},"icon":{"format":"skin","value":"cac6fd25a47c08c11ed489b1cc32ffd3fb3e1503d3d476fc2131f7e0a6fb4801"},"identifications":{"rawAgility":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Sugar Stick":{"internalName":"Sugar Stick","type":"ingredient","requirements":{"level":65,"skills":["woodworking","cooking"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"spellDamage":{"min":2,"raw":2,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Cursed Ashes":{"internalName":"Cursed Ashes","type":"ingredient","requirements":{"level":65,"skills":["scribing"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"manaSteal":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Earthsculpter Uraqi","coords":[-688,26,-529,15]},{"name":"Ayri Drifter","coords":[-688,26,-529,15]},{"name":"Rotten Flamecaster","coords":[[-550,65,-1030,1],[-570,66,-1035,1],[-579,71,-1017,1],[-608,73,-1051,1],[-608,73,-1055,1]]},{"name":"Ayri Wraith","coords":[-638,57,-275,3]},{"name":"Tropical Necromancer","coords":[-976,4,-434,0]},{"name":"Cursed Villager","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]},{"name":"Cursed Farmer","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]},{"name":"Cursed Adventurer","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]}]},"Nasty Residue":{"internalName":"Nasty Residue","type":"ingredient","requirements":{"level":65,"skills":["jeweling"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":3},"spellDamage":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Darkloid Beetle","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Devourer","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Regurgitator","coords":[[-1347,20,-5057,0],[-1358,20,-5070,0]]},{"name":"Little Eater","coords":[-1370,24,-4996,3]},{"name":"Cursed Villager","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]},{"name":"Cursed Farmer","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]},{"name":"Cursed Adventurer","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Sanctified Sheep Soul":{"internalName":"Sanctified Sheep Soul","type":"ingredient","requirements":{"level":65,"skills":["scribing"]},"icon":{"format":"legacy","value":"419:0"},"identifications":{"sprint":{"min":14,"raw":14,"max":16},"sprintRegen":{"min":8,"raw":8,"max":10},"waterDefence":{"min":12,"raw":12,"max":14},"fireDefence":{"min":10,"raw":10,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":-225,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ramhead Charger","coords":[192,4,-3950,5]},{"name":"Ramhead Charger","coords":[239,5,-3957,10]},{"name":"Ramhead Worshipper","coords":[192,4,-3950,5]},{"name":"Ramhead Worshipper","coords":[239,5,-3957,10]},{"name":"Aries Priest","coords":[165,13,-3959,50]}]},"Cocoa Caps":{"internalName":"Cocoa Caps","type":"ingredient","requirements":{"level":65,"skills":["armouring","cooking"]},"icon":{"format":"legacy","value":"351:3"},"identifications":{"earthDefence":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Thermal Replication":{"internalName":"Thermal Replication","type":"ingredient","requirements":{"level":65,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"87:0"},"identifications":{"fireDamage":{"min":11,"raw":11,"max":14},"rawHealth":{"min":-360,"raw":-360,"max":-330}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":15,"notTouching":15},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":16,"agilityRequirement":0},"droppedBy":[{"name":"Vulcor Adrenophage","coords":null}]},"Ironwood Scale":{"internalName":"Ironwood Scale","type":"ingredient","requirements":{"level":65,"skills":["armouring"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":4},"rawDefence":{"min":5,"raw":5,"max":7},"earthDefence":{"min":18,"raw":18,"max":22}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-120000,"strengthRequirement":13,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Bladestorm Idol","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Mahogany Colossus","coords":[[-590,29,-414,42],[-551,31,-495,26],[-580,23,-546,25],[-642,27,-462,21]]}]},"Tribal Tome":{"internalName":"Tribal Tome","type":"ingredient","requirements":{"level":65,"skills":["woodworking"]},"icon":{"format":"legacy","value":"340:0"},"identifications":{"healingEfficiency":{"min":3,"raw":3,"max":4},"spellDamage":{"min":3,"raw":3,"max":4},"healthRegen":{"min":-5,"raw":-5,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-80000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Lookout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Corrupted Scout","coords":[[-996,108,-561,12],[-604,83,-293,18],[-604,83,-293,18],[-731,124,-234,9],[-710,124,-233,9],[-677,129,-238,12],[-677,129,-238,12]]},{"name":"Corrupted Keeper","coords":[[-990,82,-465,0],[-999,86,-499,0],[-532,42,-388,0]]},{"name":"Corrupted Arbalest","coords":[[-967,95,-475,0],[-984,103,-492,0]]}]},"Gathering Scythe T8":{"internalName":"Gathering Scythe 8","type":"tool","toolType":"scythe","gatheringSpeed":150,"identified":true,"requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"63","name":"gatheringTool.scythe8"}},"rarity":"common"},"Gathering Rod T8":{"internalName":"Gathering Rod 8","type":"tool","toolType":"rod","gatheringSpeed":150,"identified":true,"requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"58","name":"gatheringTool.rod8"}},"rarity":"common"},"Gathering Pickaxe T8":{"internalName":"Gathering Pickaxe 8","type":"tool","toolType":"pickaxe","gatheringSpeed":150,"identified":true,"requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"53","name":"gatheringTool.pickaxe8"}},"rarity":"common"},"Gathering Axe T8":{"internalName":"Gathering Axe 8","type":"tool","toolType":"axe","gatheringSpeed":150,"identified":true,"requirements":{"level":65},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"48","name":"gatheringTool.axe8"}},"rarity":"common"},"Rime-Webbed Antlers":{"internalName":"Rime-Webbed Antlers","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":65,"dexterity":30,"agility":30},"powderSlots":3,"identifications":{"rawDefence":-5,"manaSteal":8,"2ndSpellCost":-18,"sprint":30,"sprintRegen":45,"thunderDamage":15,"airDamage":15},"base":{"baseHealth":1125,"baseThunderDefence":80,"baseAirDefence":80},"rarity":"set"},"Elk's Hoof":{"internalName":"Elk's Hoof","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":65,"strength":30,"defence":30},"powderSlots":3,"identifications":{"rawAgility":-5,"healthRegen":30,"2ndSpellCost":-18,"earthDamage":20,"fireDamage":20,"waterDefence":30,"airDefence":30},"base":{"baseHealth":1450,"baseWaterDefence":80,"baseAirDefence":80},"rarity":"set"},"Algaa":{"internalName":"Algaa","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":270,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"warrior","strength":40},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"thorns":20,"rawMaxMana":50,"lootBonus":10,"earthDamage":20,"waterDamage":30},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseEarthDamage":{"min":210,"raw":210,"max":330}},"rarity":"rare"},"Call to Concord":{"internalName":"Call to Concord","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":64,"defence":40},"lore":"\\[Community Event Winner\\] Reverberating with the bravery and residual strength of fallen Wynn soldiers, every casualty only serves to harden the resolve it instills in the wearer.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":5,"healthRegen":{"min":5,"raw":15,"max":20},"reflection":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":625,"baseEarthDefence":10,"baseFireDefence":25,"baseAirDefence":25},"rarity":"legendary"},"Acrobat":{"internalName":"Acrobat","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":400,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"archer","dexterity":10,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":1,"raw":4,"max":5},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":40,"raw":40,"max":90},"baseAirDamage":{"min":80,"raw":80,"max":110}},"rarity":"rare"},"Bianco":{"internalName":"Bianco","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":175,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"mage"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":5,"reflection":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":42,"raw":42,"max":60},"baseAirDamage":{"min":30,"raw":30,"max":38}},"rarity":"unique"},"Stringhollow":{"internalName":"Stringhollow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":338,"dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"archer","agility":20},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":4,"rawSpellDamage":60,"rawHealth":-100,"reflection":8,"walkSpeed":12,"airDefence":8},"base":{"baseDamage":{"min":60,"raw":60,"max":120},"baseAirDamage":{"min":30,"raw":30,"max":60}},"rarity":"unique"},"Aneurysm":{"internalName":"Aneurysm","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":64,"strength":20,"dexterity":45},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"rawSpellDamage":{"min":12,"raw":40,"max":52},"healthRegen":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":-195,"raw":-150,"max":-105},"healingEfficiency":{"min":-12,"raw":-9,"max":-6},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1100,"baseWaterDefence":-30},"rarity":"unique"},"Sheathed Glaive":{"internalName":"Sheathed Glaive","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":227,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"warrior","intelligence":25,"defence":25},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":4,"rawDefence":4,"mainAttackDamage":{"min":-39,"raw":-30,"max":-21},"spellDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":100,"raw":100,"max":120}},"rarity":"unique"},"Upgraded Orc Mask":{"internalName":"Upgraded Orc Mask","type":"armour","armourType":"helmet","dropRestriction":"never","requirements":{"level":64,"quest":"All Roads To Peace"},"powderSlots":3,"icon":{"format":"skin","value":"db37f3eb1a31d9359fd5996bbd2ab4e8c3924c3e1c8b51bae6a5415eedd6914"},"identifications":{"rawStrength":6,"rawDefence":4,"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegenRaw":{"min":20,"raw":65,"max":85},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1300},"rarity":"rare"},"Old Maple Spear":{"internalName":"Old Maple Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":238,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"warrior","strength":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"thorns":{"min":2,"raw":6,"max":8},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":78,"raw":78,"max":102},"baseEarthDamage":{"min":57,"raw":57,"max":80}},"rarity":"unique"},"Chlorine":{"internalName":"Chlorine","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":64,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"healthRegen":{"min":-9,"raw":-7,"max":-5},"poison":{"min":51,"raw":170,"max":221},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseThunderDefence":-20},"rarity":"unique"},"Whirl":{"internalName":"Whirl","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":64,"intelligence":20,"agility":25},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":3,"raw":9,"max":12},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseThunderDefence":-30,"baseAirDefence":20},"rarity":"unique"},"Cloak of Luminosity":{"internalName":"Cloak of Luminosity","type":"armour","armourType":"chestplate","armourColor":"rgb(248,248,204)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":64,"quest":"Realm of Light III - A Headless History"},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1280,"baseEarthDefence":40,"baseThunderDefence":75,"baseWaterDefence":75,"baseFireDefence":40,"baseAirDefence":40},"rarity":"rare"},"Electrophorus":{"internalName":"Electrophorus","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"intelligence":40},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":22,"raw":74,"max":96},"poison":{"min":90,"raw":300,"max":390},"thorns":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1000,"baseEarthDefence":-60,"baseWaterDefence":60},"rarity":"unique"},"Sublime":{"internalName":"Sublime","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"defence":50,"agility":50},"identifications":{"rawDefence":7,"rawAgility":7,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":2,"raw":8,"max":10},"fireDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1350,"baseFireDefence":60,"baseAirDefence":60},"rarity":"rare"},"Fire Sword Style-2":{"internalName":"Fire Sword Style-2","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":254,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"assassin","defence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawFireMainAttackDamage":{"min":60,"raw":200,"max":260}},"base":{"baseDamage":{"min":35,"raw":35,"max":40},"baseFireDamage":{"min":80,"raw":80,"max":92}},"rarity":"unique"},"Kapok":{"internalName":"Kapok","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"strength":35,"intelligence":35},"powderSlots":2,"identifications":{"damage":{"min":2,"raw":8,"max":10},"thorns":{"min":3,"raw":10,"max":13},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":1300,"baseEarthDefence":60,"baseThunderDefence":-60,"baseWaterDefence":60,"baseFireDefence":-60},"rarity":"rare"},"Tempest":{"internalName":"Tempest","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":234,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"warrior","dexterity":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawDexterity":7,"rawAgility":7,"rawMainAttackDamage":{"min":10,"raw":33,"max":43},"walkSpeed":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":11,"raw":11,"max":13},"baseThunderDamage":{"min":5,"raw":5,"max":37},"baseAirDamage":{"min":16,"raw":16,"max":27}},"rarity":"unique"},"Tribulation":{"internalName":"Tribulation","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":350,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"archer","dexterity":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"lifeSteal":{"min":35,"raw":115,"max":150},"walkSpeed":{"min":-18,"raw":-14,"max":-10},"exploding":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDamage":{"min":30,"raw":30,"max":135},"baseFireDamage":{"min":75,"raw":75,"max":100}},"rarity":"unique"},"Reverb":{"internalName":"Reverb","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"dexterity":30,"agility":30},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"thorns":{"min":6,"raw":19,"max":25},"reflection":{"min":6,"raw":19,"max":25},"thunderDefence":{"min":3,"raw":11,"max":14},"fireDefence":{"min":-19,"raw":-15,"max":-10},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":1000,"baseThunderDefence":50,"baseFireDefence":-90,"baseAirDefence":50},"rarity":"unique"},"Ashes Anew":{"internalName":"Ashes Anew","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":417,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"shaman","defence":30,"agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegenRaw":{"min":24,"raw":80,"max":104},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":8,"raw":25,"max":33}},"base":{"baseFireDamage":{"min":90,"raw":90,"max":110},"baseAirDamage":{"min":90,"raw":90,"max":115}},"rarity":"rare"},"World Splitter":{"internalName":"World Splitter","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":349,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"assassin","dexterity":40,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":45,"raw":150,"max":195},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-186,"raw":-143,"max":-100},"fireDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":40,"raw":40,"max":80},"baseThunderDamage":{"min":0,"raw":0,"max":400},"baseFireDamage":{"min":160,"raw":160,"max":160}},"rarity":"rare"},"Ohms' Wish":{"internalName":"Ohms' Wish","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":225,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"mage","dexterity":25,"agility":25},"powderSlots":2,"lore":"\"If anyone finds this, leave it at my Gale's gravesite. I promised her a memento, too.\" This inscription is extremely weathered.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"337","name":"wand.thunder3"}},"identifications":{"rawDexterity":9,"rawAgility":7,"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":6,"raw":20,"max":26},"airDefence":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseThunderDamage":{"min":20,"raw":20,"max":40},"baseAirDamage":{"min":10,"raw":10,"max":30}},"rarity":"legendary"},"Bermuda":{"internalName":"Bermuda","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":64},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"manaSteal":{"min":1,"raw":3,"max":4}},"rarity":"rare"},"Cracked Iron Chestplate":{"internalName":"Cracked Iron Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64},"powderSlots":2,"base":{"baseHealth":890},"rarity":"common"},"Lycanthropy":{"internalName":"Lycanthropy","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":464,"dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"shaman","dexterity":35},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawIntelligence":-6,"rawMainAttackDamage":65,"healthRegenRaw":-188,"thunderDamage":24,"waterDefence":-18,"airDefence":-18},"base":{"baseDamage":{"min":21,"raw":21,"max":44},"baseThunderDamage":{"min":44,"raw":44,"max":107}},"rarity":"rare"},"Collier's Guard":{"internalName":"Collier's Guard","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"defence":25},"powderSlots":1,"identifications":{"rawDefence":7,"rawAgility":-2,"healthRegen":{"min":6,"raw":21,"max":27},"rawHealth":{"min":83,"raw":275,"max":358},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1100,"baseWaterDefence":-40,"baseFireDefence":75,"baseAirDefence":-40},"rarity":"unique"},"Azotar":{"internalName":"Azotar","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":518,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"shaman","strength":14,"dexterity":14,"intelligence":14,"defence":14,"agility":14},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"healthRegenRaw":-150,"poison":1500,"lifeSteal":140,"manaSteal":8,"raw4thSpellCost":-5},"base":{"baseDamage":{"min":65,"raw":65,"max":75},"baseEarthDamage":{"min":50,"raw":50,"max":60},"baseThunderDamage":{"min":50,"raw":50,"max":60},"baseWaterDamage":{"min":50,"raw":50,"max":60},"baseFireDamage":{"min":50,"raw":50,"max":60},"baseAirDamage":{"min":50,"raw":50,"max":60}},"rarity":"rare"},"Gleeman's Tale":{"internalName":"Gleeman's Tale","type":"armour","armourType":"leggings","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":64,"intelligence":25,"agility":25},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"identifications":{"rawAgility":6,"rawSpellDamage":150,"manaRegen":-5,"sprint":25,"stealing":5},"base":{"baseHealth":1350},"rarity":"rare"},"Cementing Arrow":{"internalName":"Cementing Arrow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":365,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"archer","strength":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawStrength":10,"rawAgility":-8,"manaRegen":{"min":2,"raw":8,"max":10},"damage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"slowEnemy":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":80,"raw":80,"max":90},"baseEarthDamage":{"min":160,"raw":160,"max":195},"baseWaterDamage":{"min":160,"raw":160,"max":195}},"rarity":"unique"},"Kelight's Shield":{"internalName":"Kelight's Shield","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"defence":40},"powderSlots":2,"lore":"Used by the Temple of the Legends' strongest guard, the shielded plating is enchanted with a powerful ward to stave off the effects of the corruption.","identifications":{"rawDefence":9,"healthRegen":{"min":8,"raw":25,"max":33},"rawHealth":{"min":165,"raw":550,"max":715},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":7,"raw":22,"max":29},"waterDefence":{"min":-10,"raw":-8,"max":-6},"fireDefence":{"min":7,"raw":22,"max":29}},"base":{"baseHealth":1550,"baseEarthDefence":60,"baseThunderDefence":75,"baseWaterDefence":-60,"baseFireDefence":75,"baseAirDefence":-45},"rarity":"legendary"},"Orc Mask":{"internalName":"Orc Mask","type":"armour","armourType":"helmet","restrictions":"quest item","dropRestriction":"never","requirements":{"level":64},"icon":{"format":"skin","value":"db37f3eb1a31d9359fd5996bbd2ab4e8c3924c3e1c8b51bae6a5415eedd6914"},"base":{"baseHealth":900},"rarity":"common"},"Whitewater":{"internalName":"Whitewater","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"intelligence":35},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":3,"raw":11,"max":14},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":4,"raw":13,"max":17},"fireDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":900,"baseThunderDefence":-80,"baseWaterDefence":70},"rarity":"unique"},"Montefiore":{"internalName":"Montefiore","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64},"powderSlots":2,"identifications":{"healthRegen":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":20,"raw":65,"max":85},"manaSteal":{"min":-5,"raw":-4,"max":-3}},"base":{"baseHealth":1340},"rarity":"rare"},"Noun":{"internalName":"Noun","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":300,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"assassin","dexterity":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawStrength":-7,"rawDexterity":9,"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-42,"raw":-32,"max":-22},"thunderDamage":{"min":5,"raw":16,"max":21}},"base":{"baseThunderDamage":{"min":40,"raw":40,"max":360}},"rarity":"unique"},"Roiling Ruckus":{"internalName":"Roiling Ruckus","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":441,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"assassin","dexterity":45},"majorIds":{"Juggle":"+Juggle: Mutilate adds an additional 12 hits. All hits are reduced by -10%."},"powderSlots":2,"lore":"Not knowing what's going on is the best part!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"268","name":"dagger.thunder3"}},"identifications":{"rawAgility":10,"raw2ndSpellCost":{"min":-1,"raw":-4,"max":-5},"3rdSpellCost":{"min":-2,"raw":-8,"max":-10},"jumpHeight":1,"rawThunderSpellDamage":{"min":53,"raw":175,"max":228},"rawElementalSpellDamage":{"min":-104,"raw":-80,"max":-56},"earthDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":0,"raw":0,"max":63},"baseThunderDamage":{"min":0,"raw":0,"max":142}},"rarity":"fabled"},"Semreh":{"internalName":"Semreh","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"agility":30},"powderSlots":2,"identifications":{"rawAgility":9,"reflection":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":11,"max":14},"lootBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":975,"baseFireDefence":-60,"baseAirDefence":70},"rarity":"unique"},"Ornate Band":{"internalName":"Ornate Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":64,"defence":15},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":3,"reflection":{"min":5,"raw":18,"max":23},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"unique"},"Vigor":{"internalName":"Vigor","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":357,"dropRestriction":"normal","requirements":{"level":64,"classRequirement":"archer","intelligence":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":5,"mainAttackDamage":{"min":-21,"raw":-16,"max":-11},"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":8,"raw":25,"max":33},"rawHealth":{"min":150,"raw":500,"max":650},"waterDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":30,"raw":30,"max":90},"baseWaterDamage":{"min":170,"raw":170,"max":200},"baseFireDamage":{"min":170,"raw":170,"max":200}},"rarity":"unique"},"Soul Wreath":{"internalName":"Soul Wreath","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":64,"strength":30,"intelligence":35},"powderSlots":1,"identifications":{"rawIntelligence":4,"healthRegenRaw":{"min":18,"raw":60,"max":78},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1100,"baseEarthDefence":50,"baseWaterDefence":50},"rarity":"unique"},"Siren Killer":{"internalName":"Siren Killer","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":345,"dropRestriction":"dungeon","requirements":{"level":64,"classRequirement":"archer","defence":40},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":17,"raw":55,"max":72},"exploding":{"min":5,"raw":15,"max":20},"sprintRegen":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":5,"raw":18,"max":23},"airDamage":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":30,"raw":30,"max":30},"baseFireDamage":{"min":180,"raw":180,"max":220}},"rarity":"unique"},"Vampire Blocker":{"internalName":"Vampire Blocker","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":64,"defence":20},"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"identifications":{"rawDefence":4,"lifeSteal":105,"thorns":10,"reflection":5},"base":{"baseHealth":1100,"baseEarthDefence":-25},"rarity":"unique"},"Ruins Shard":{"internalName":"Ruins Shard","type":"ingredient","requirements":{"level":64,"skills":["jeweling"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"poison":{"min":120,"raw":120,"max":130},"rawStrength":{"min":3,"raw":3,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":9,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Bladestorm Idol","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Mahogany Colossus","coords":[[-590,29,-414,42],[-551,31,-495,26],[-580,23,-546,25],[-642,27,-462,21]]}]},"Chitin Plate":{"internalName":"Chitin Plate","type":"ingredient","requirements":{"level":64,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"rawDexterity":{"min":2,"raw":2,"max":4},"rawHealth":{"min":175,"raw":175,"max":210}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":20,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tree Spider","coords":[[-817,24,-498,10],[-771,23,-539,10],[-704,24,-447,10],[-724,24,-331,10],[-815,23,-305,10],[-912,26,-387,10]]},{"name":"Mudshroom Beetle","coords":null},{"name":"Giant Crusher Mantis","coords":[[-781,26,-4636,16],[-779,31,-4665,16],[-728,31,-4665,16],[-728,39,-4651,16],[-764,40,-4596,16],[-751,16,-4624,16],[-713,11,-4606,16]]},{"name":"Ledant Grub","coords":[[-1214,63,-4809,11],[-1269,24,-4876,11],[-1253,24,-4894,11]]},{"name":"Ledant Droneling","coords":[[-1220,56,-4833,20],[-1223,80,-4829,20]]},{"name":"Ledant Broodmother","coords":[[-1255,24,-4892,0],[-1262,24,-4874,0],[-1247,67,-4823,0],[-1231,86,-4833,0],[-1210,81,-4837,0]]},{"name":"Ledant Queen","coords":[-1219,9,-4862,0]},{"name":"Mosquito Swarm","coords":[[-692,23,-431,3],[-686,23,-419,3],[-870,22,-328,3],[-831,24,-565,3],[-807,28,-635,3],[-833,28,-637,3],[-841,26,-624,3]]},{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]}]},"Luxroot Cuttings":{"internalName":"Luxroot Cuttings","type":"ingredient","requirements":{"level":64,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"6:4"},"identifications":{"earthDefence":{"min":6,"raw":6,"max":8},"fireDefence":{"min":-8,"raw":-8,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Luxroot Sapling","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Luxroot Sentinel","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Auresc Bough","coords":null}]},"Windswept Roots":{"internalName":"Windswept Roots","type":"ingredient","requirements":{"level":64,"skills":["tailoring","woodworking"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"mainAttackDamage":{"min":4,"raw":4,"max":6},"spellDamage":{"min":4,"raw":4,"max":6},"rawAgility":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":15},"droppedBy":[{"name":"Freelancer","coords":[-1368,92,-4332,7]},{"name":"Freewheeler","coords":[-1368,92,-4332,7]}]},"Defiled Luxroot":{"internalName":"Defiled Luxroot","type":"ingredient","requirements":{"level":64,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"thunderDefence":{"min":6,"raw":6,"max":8},"airDefence":{"min":-8,"raw":-8,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rotting Luxroot","coords":[[-1377,50,-5138,50],[-1308,43,-5324,62],[-1160,44,-5426,55],[-1327,47,-5226,55],[-1064,45,-5444,55],[-1228,45,-5531,55],[-1174,43,-5284,31]]},{"name":"Devourer","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Regurgitator","coords":[[-1347,20,-5057,0],[-1358,20,-5070,0]]},{"name":"Little Eater","coords":[-1370,24,-4996,3]}]},"Ancient Metal":{"internalName":"Ancient Metal","type":"ingredient","requirements":{"level":64,"skills":["weaponsmithing","armouring","tailoring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"rawMainAttackDamage":{"min":20,"raw":20,"max":21}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Idol Guardian","coords":[[-675,23,-241,1],[-665,26,-268,1]]},{"name":"Wayward Idol","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Igneous Paladin","coords":[[-481,25,-411,2],[-480,14,-369,2],[-482,14,-377,2],[-507,14,-368,2],[-542,19,-390,2]]},{"name":"Stone Soldier","coords":[-490,24,-436,3]},{"name":"Stone Paladin","coords":[-490,24,-436,3]},{"name":"Corrupted Blade","coords":[[-601,64,-594,4],[-649,26,-440,4],[-656,26,-451,4],[-671,26,-429,4]]},{"name":"Corrupted Idol","coords":[-710,26,-370,14]},{"name":"Ancient Idol","coords":[-710,26,-370,14]}]},"Soul Amalgamate":{"internalName":"Soul Amalgamate","type":"ingredient","requirements":{"level":64,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"gatherSpeed":{"min":4,"raw":4,"max":5},"spellDamage":{"min":4,"raw":4,"max":5},"mainAttackDamage":{"min":4,"raw":4,"max":5},"healthRegen":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kerasot Toxifont","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Essence of Dusk":{"internalName":"Essence Of Dusk","type":"ingredient","requirements":{"level":64,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"rawSpellDamage":{"min":17,"raw":17,"max":24},"spellDamage":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Night Lurker","coords":[[-1061,42,-5534,35],[-1035,48,-5573,30],[-1276,47,-5214,25],[-1282,48,-5261,25],[-1254,46,-5302,25],[-1240,42,-5354,25]]},{"name":"Umbral Arbalist","coords":[[-1244,54,-5337,0],[-1242,54,-5440,0],[-1156,54,-5117,0],[-1226,52,-5110,0],[-1276,54,-5100,0],[-1342,63,-5100,0]]},{"name":"Tenebrous Infantry","coords":[[-1377,50,-5138,50],[-1308,43,-5324,62],[-1160,44,-5426,55],[-1327,47,-5226,55],[-1064,45,-5444,55],[-1228,45,-5531,55],[-1174,43,-5284,31]]},{"name":"Dark Executioner","coords":[-1238,42,-5375,5]},{"name":"Dark Knight","coords":[-1238,42,-5375,5]},{"name":"Consumed Spirit","coords":null},{"name":"Consumed Spirit","coords":null},{"name":"Abyssal Knight","coords":false}]},"Rumble":{"internalName":"Rumble","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":215,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"mage","dexterity":40},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":25,"lifeSteal":125,"rawThunderMainAttackDamage":55,"mainAttackRange":-50,"stealing":5},"base":{"baseDamage":{"min":6,"raw":6,"max":39},"baseThunderDamage":{"min":6,"raw":6,"max":88}},"rarity":"rare"},"Grounder":{"internalName":"Grounder","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":420,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":64,"classRequirement":"archer","strength":40},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"mainAttackDamage":20,"knockback":50,"mainAttackRange":65,"xpBonus":18,"thunderDefence":15},"base":{"baseDamage":{"min":120,"raw":120,"max":140},"baseEarthDamage":{"min":100,"raw":100,"max":200}},"rarity":"rare"},"Pure Andesite Bow":{"internalName":"Pure Andesite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":275,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":303,"raw":303,"max":360}},"rarity":"common"},"Atroce":{"internalName":"Atroce","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":45,"dexterity":45},"powderSlots":2,"identifications":{"rawStrength":10,"rawDexterity":10,"poison":{"min":72,"raw":240,"max":312},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":5,"raw":15,"max":20},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":950,"baseEarthDefence":60,"baseThunderDefence":60,"baseWaterDefence":-60,"baseAirDefence":-60},"rarity":"unique"},"Cracked Iron Leggings":{"internalName":"Cracked Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63},"powderSlots":2,"base":{"baseHealth":860},"rarity":"common"},"Tremorstep":{"internalName":"Tremorstep","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":40},"powderSlots":2,"identifications":{"rawStrength":4,"rawAgility":-3,"mainAttackDamage":{"min":4,"raw":12,"max":16},"lifeSteal":{"min":-78,"raw":-60,"max":-42},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":2,"raw":7,"max":9},"earthDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":875,"baseEarthDefence":50,"baseAirDefence":-65},"rarity":"unique"},"The Medic":{"internalName":"The Medic","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":202,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"mage","intelligence":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":15,"raw":50,"max":65},"manaRegen":{"min":4,"raw":12,"max":16},"healingEfficiency":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseWaterDamage":{"min":35,"raw":35,"max":45},"baseFireDamage":{"min":45,"raw":45,"max":55}},"rarity":"rare"},"Bull":{"internalName":"Bull","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":325,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawStrength":5,"rawDefence":5,"rawAgility":-7,"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":135,"raw":450,"max":585},"airDamage":{"min":-32,"raw":-25,"max":-17},"earthDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseEarthDamage":{"min":40,"raw":40,"max":75},"baseFireDamage":{"min":20,"raw":20,"max":35}},"rarity":"rare"},"Granite Helm":{"internalName":"Granite Helm","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":45,"defence":5},"powderSlots":2,"identifications":{"rawDefence":9,"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"rawHealth":{"min":120,"raw":400,"max":520},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"exploding":{"min":8,"raw":26,"max":34},"earthDefence":{"min":6,"raw":20,"max":26},"waterDefence":{"min":-32,"raw":-25,"max":-17},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":1550,"baseEarthDefence":20,"baseFireDefence":20,"baseAirDefence":60},"rarity":"rare"},"Sunstruck":{"internalName":"Sunstruck","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":322,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"shaman","defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawMainAttackDamage":{"min":-142,"raw":-109,"max":-76},"rawSpellDamage":{"min":-82,"raw":-63,"max":-44},"healthRegenRaw":{"min":24,"raw":80,"max":104},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":200,"raw":200,"max":230}},"rarity":"unique"},"Dark Band":{"internalName":"Dark Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":63,"quest":"Lost in the Jungle","strength":10,"dexterity":10},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"thorns":8,"earthDamage":6,"thunderDamage":6,"airDefence":-8},"base":{"baseEarthDefence":25,"baseThunderDefence":25},"rarity":"rare"},"Precedence":{"internalName":"Precedence","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":268,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"assassin","intelligence":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"healthRegenRaw":{"min":20,"raw":65,"max":85},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-9,"raw":-7,"max":-5},"thunderDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":30,"raw":30,"max":60},"baseFireDamage":{"min":30,"raw":30,"max":60}},"rarity":"unique"},"Sarnfic's Lost Treasure":{"internalName":"Sarnfic's Lost Treasure","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":63,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"lootBonus":{"min":3,"raw":9,"max":12},"stealing":{"min":1,"raw":3,"max":4},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseThunderDefence":-15},"rarity":"rare"},"Ultramarine Belt":{"internalName":"Ultramarine Belt","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":63,"intelligence":90},"powderSlots":1,"identifications":{"rawIntelligence":7,"manaRegen":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":8,"max":10},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":950,"baseThunderDefence":-40,"baseWaterDefence":40},"rarity":"set"},"Firequake":{"internalName":"Firequake","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":40,"defence":30},"powderSlots":2,"identifications":{"rawStrength":5,"healthRegenRaw":{"min":-84,"raw":-65,"max":-45},"exploding":{"min":8,"raw":26,"max":34},"xpBonus":{"min":2,"raw":6,"max":8},"earthDamage":{"min":6,"raw":21,"max":27},"fireDamage":{"min":6,"raw":21,"max":27}},"base":{"baseHealth":1200,"baseEarthDefence":70,"baseWaterDefence":-85,"baseFireDefence":70,"baseAirDefence":-85},"rarity":"unique"},"Pure Andesite Dagger":{"internalName":"Pure Andesite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":228,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":103,"raw":103,"max":118}},"rarity":"common"},"Aerokinesis":{"internalName":"Aerokinesis","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":241,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"mage","agility":75},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":5,"rawSpellDamage":{"min":36,"raw":120,"max":156},"earthDamage":{"min":-38,"raw":-29,"max":-20},"thunderDamage":{"min":-38,"raw":-29,"max":-20},"waterDamage":{"min":-38,"raw":-29,"max":-20},"fireDamage":{"min":-38,"raw":-29,"max":-20},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":100,"raw":100,"max":190},"baseAirDamage":{"min":100,"raw":100,"max":190}},"rarity":"legendary"},"Barbaric Amulet":{"internalName":"Barbaric Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":63,"quest":"Lost in the Jungle","strength":10,"agility":10},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"mainAttackDamage":8,"earthDamage":6,"airDamage":6,"fireDefence":-8},"base":{"baseEarthDefence":25,"baseAirDefence":25},"rarity":"rare"},"Mirror's Edge":{"internalName":"Mirror's Edge","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"agility":60},"powderSlots":2,"identifications":{"rawAgility":20,"2ndSpellCost":{"min":-13,"raw":-42,"max":-55},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":8,"raw":25,"max":33},"sprint":{"min":15,"raw":50,"max":65},"sprintRegen":{"min":30,"raw":100,"max":130},"jumpHeight":1},"base":{"baseHealth":625},"rarity":"fabled"},"Chaotic Amulet":{"internalName":"Chaotic Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":63,"quest":"Lost in the Jungle","dexterity":10,"intelligence":10},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"186","name":"necklace.water2"}},"identifications":{"rawSpellDamage":30,"thunderDamage":6,"waterDamage":6,"earthDefence":-8},"base":{"baseThunderDefence":25,"baseWaterDefence":25},"rarity":"rare"},"Ectoplasm":{"internalName":"Ectoplasm","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"intelligence":40},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1025,"baseThunderDefence":-100,"baseWaterDefence":55,"baseAirDefence":55},"rarity":"rare"},"Salt Sea":{"internalName":"Salt Sea","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":63,"strength":15,"agility":10},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"rawMainAttackDamage":{"min":13,"raw":44,"max":57},"walkSpeed":{"min":2,"raw":6,"max":8},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":160,"baseEarthDefence":15,"baseAirDefence":15},"rarity":"unique"},"Pure Andesite Wand":{"internalName":"Pure Andesite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":140,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":86,"raw":86,"max":100}},"rarity":"common"},"Arcus":{"internalName":"Arcus","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"dexterity":35,"intelligence":35},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":30,"raw":100,"max":130},"manaSteal":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1100,"baseEarthDefence":-90,"baseThunderDefence":40,"baseWaterDefence":40},"rarity":"rare"},"Ariodo's Dial":{"internalName":"Ariodo's Dial","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":63,"dexterity":10,"intelligence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"167","name":"bracelet.thunder2"}},"identifications":{"rawIntelligence":3,"spellDamage":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":7,"max":9}},"base":{"baseWaterDefence":-40},"rarity":"rare"},"Millennium":{"internalName":"Millennium","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63},"powderSlots":3,"lore":"Cosmic energy permeates this deceptively dull-looking chestplate, having been crafted with stardust from a comet that only passes over Wynn every 1000 years.","identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"rawSpellDamage":{"min":36,"raw":120,"max":156},"healthRegenRaw":{"min":18,"raw":60,"max":78}},"base":{"baseHealth":1200},"rarity":"legendary"},"Cleanshear":{"internalName":"Cleanshear","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"dexterity":60},"powderSlots":3,"identifications":{"rawDexterity":8,"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"lifeSteal":{"min":23,"raw":75,"max":98},"reflection":{"min":1,"raw":3,"max":4},"walkSpeed":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":875},"rarity":"unique"},"Stranglevine":{"internalName":"Stranglevine","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":300,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"healthRegen":{"min":-26,"raw":-20,"max":-14},"poison":{"min":243,"raw":810,"max":1053},"lifeSteal":{"min":53,"raw":175,"max":228},"thorns":{"min":2,"raw":7,"max":9},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":80,"raw":80,"max":125},"baseEarthDamage":{"min":75,"raw":75,"max":120}},"rarity":"unique"},"Sunrise":{"internalName":"Sunrise","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":191,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"mage","defence":30,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"healthRegen":{"min":5,"raw":18,"max":23},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":6,"raw":20,"max":26},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseFireDamage":{"min":30,"raw":30,"max":35},"baseAirDamage":{"min":45,"raw":45,"max":75}},"rarity":"rare"},"Adanac":{"internalName":"Adanac","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"intelligence":30,"agility":30},"powderSlots":3,"identifications":{"healthRegenRaw":{"min":14,"raw":48,"max":62},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":2,"raw":6,"max":8},"airDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1000,"baseThunderDefence":-50,"baseWaterDefence":50,"baseAirDefence":50},"rarity":"unique"},"Crash":{"internalName":"Crash","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":63,"strength":20,"dexterity":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-215,"baseEarthDefence":40,"baseThunderDefence":30,"baseWaterDefence":-50},"rarity":"unique"},"Sapphire Shard":{"internalName":"Sapphire Shard","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":220,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"assassin","intelligence":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":8,"spellDamage":{"min":6,"raw":21,"max":27},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":3,"raw":11,"max":14},"xpBonus":{"min":4,"raw":14,"max":18},"fireDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":23,"raw":23,"max":28},"baseWaterDamage":{"min":58,"raw":58,"max":67}},"rarity":"unique"},"Scalding Band":{"internalName":"Scalding Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":63,"quest":"Lost in the Jungle","intelligence":10,"defence":10},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":8,"waterDamage":6,"fireDamage":6,"thunderDefence":-8},"base":{"baseWaterDefence":25,"baseFireDefence":25},"rarity":"rare"},"Droughted Amulet":{"internalName":"Droughted Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":63,"quest":"Lost in the Jungle","defence":10,"agility":10},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"exploding":8,"fireDamage":6,"airDamage":6,"waterDefence":-8},"base":{"baseFireDefence":25,"baseAirDefence":25},"rarity":"rare"},"Troms Kid Badge":{"internalName":"Troms Kid Badge","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":63,"quest":"Out of my Mind֎"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"healthRegenRaw":{"min":6,"raw":19,"max":25},"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":7,"max":9}},"rarity":"rare"},"Silicosis":{"internalName":"Silicosis","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":40,"agility":30},"powderSlots":1,"identifications":{"rawStrength":7,"rawDefence":-3,"rawAgility":5,"earthDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":900,"baseEarthDefence":55,"baseFireDefence":-100,"baseAirDefence":45},"rarity":"unique"},"Night Rush":{"internalName":"Night Rush","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":465,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"shaman","agility":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"396","name":"relik.air3"}},"identifications":{"rawAgility":30,"walkSpeed":{"min":8,"raw":25,"max":33},"earthDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":11,"raw":35,"max":46},"earthDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":182,"raw":182,"max":190}},"rarity":"legendary"},"Augoeides":{"internalName":"Augoeides","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"intelligence":65},"lore":"\\[Community Event Winner\\]","identifications":{"rawMainAttackDamage":{"min":-68,"raw":-52,"max":-36},"manaRegen":{"min":2,"raw":6,"max":8},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"reflection":{"min":9,"raw":30,"max":39},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1000,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"Maritime Cavaliers":{"internalName":"Maritime Cavaliers","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"dungeon","requirements":{"level":63,"agility":30},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"identifications":{"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"spellDamage":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":2,"raw":8,"max":10},"sprintRegen":{"min":8,"raw":25,"max":33},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1200,"baseAirDefence":40},"rarity":"unique"},"Remikas' Righteousness":{"internalName":"Remikas' Righteousness","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":288,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"warrior"},"powderSlots":3,"lore":"Despite this mace never seeing use by Remikas, it was seen as a symbol of the might of his rule over Gavel. Its true abilities in battle have never been seen.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":7,"rawIntelligence":7,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":130,"raw":130,"max":150}},"rarity":"legendary"},"Privateering":{"internalName":"Privateering","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":63},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawMainAttackDamage":{"min":15,"raw":50,"max":65},"spellDamage":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":15,"raw":50,"max":65}},"rarity":"rare"},"Chlorofury":{"internalName":"Chlorofury","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":232,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"warrior","strength":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"spellDamage":{"min":2,"raw":8,"max":10},"rawSpellDamage":{"min":18,"raw":60,"max":78},"rawHealth":{"min":-325,"raw":-250,"max":-175}},"base":{"baseDamage":{"min":35,"raw":35,"max":40},"baseEarthDamage":{"min":35,"raw":35,"max":40},"baseWaterDamage":{"min":35,"raw":35,"max":40}},"rarity":"unique"},"Pure Andesite Spear":{"internalName":"Pure Andesite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":183,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":197,"raw":197,"max":245}},"rarity":"common"},"Adrift":{"internalName":"Adrift","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":336,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"shaman","intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"reflection":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":12,"raw":40,"max":52},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":22,"raw":22,"max":33},"baseWaterDamage":{"min":70,"raw":70,"max":92}},"rarity":"unique"},"Thundersnow":{"internalName":"Thundersnow","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"dexterity":25,"intelligence":40},"powderSlots":1,"identifications":{"rawDexterity":4,"rawIntelligence":3,"rawMainAttackDamage":{"min":-118,"raw":-91,"max":-64},"spellDamage":{"min":4,"raw":14,"max":18},"lifeSteal":{"min":-97,"raw":-75,"max":-52},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":3,"raw":11,"max":14},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":900,"baseEarthDefence":-100,"baseThunderDefence":50,"baseWaterDefence":50},"rarity":"unique"},"Pure Andesite Relik":{"internalName":"Pure Andesite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":278,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":180,"raw":180,"max":191}},"rarity":"common"},"Sphyken":{"internalName":"Sphyken","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":227,"dropRestriction":"normal","requirements":{"level":63,"classRequirement":"warrior","dexterity":50},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawIntelligence":7,"rawSpellDamage":{"min":12,"raw":40,"max":52},"rawHealth":{"min":-325,"raw":-250,"max":-175},"manaSteal":{"min":2,"raw":8,"max":10},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":75,"raw":75,"max":145}},"rarity":"unique"},"Opium":{"internalName":"Opium","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":63},"powderSlots":2,"identifications":{"poison":405,"walkSpeed":-10,"xpBonus":10,"fireDamage":10},"base":{"baseHealth":1350},"rarity":"rare"},"Frostbite":{"internalName":"Frostbite","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"intelligence":40,"agility":30},"powderSlots":2,"identifications":{"healthRegen":{"min":-45,"raw":-35,"max":-24},"manaSteal":{"min":2,"raw":8,"max":10},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":1000,"baseWaterDefence":60,"baseFireDefence":-100,"baseAirDefence":60},"rarity":"rare"},"Murk":{"internalName":"Murk","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"intelligence":45},"powderSlots":2,"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":26,"raw":85,"max":111},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"earthDamage":{"min":-8,"raw":-6,"max":-4},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":970,"baseThunderDefence":-65,"baseWaterDefence":55},"rarity":"unique"},"Coral Charm":{"internalName":"Coral Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":63,"strength":20,"intelligence":25},"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"healthRegenRaw":{"min":8,"raw":26,"max":34},"manaRegen":{"min":1,"raw":4,"max":5},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":160},"rarity":"unique"},"Lasting":{"internalName":"Lasting","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":63},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"healthRegenRaw":{"min":10,"raw":33,"max":43},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"rarity":"unique"},"Strange Trinket":{"internalName":"Strange Trinket","type":"ingredient","requirements":{"level":63,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"419:0"},"identifications":{"rawStrength":{"min":4,"raw":4,"max":5},"rawDexterity":{"min":4,"raw":4,"max":5},"rawIntelligence":{"min":4,"raw":4,"max":5},"rawDefence":{"min":-7,"raw":-7,"max":-6},"rawAgility":{"min":-7,"raw":-7,"max":-6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-78000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"§bEarth Sprite","coords":[-1370,33,-4650,0]},{"name":"§bLight Sprite","coords":[-1383,38,-4662,0]},{"name":"§bWater Sprite","coords":[[-1317,40,-5012,1],[-1317,40,-5012,2],[-1317,40,-5012,3],[-1317,40,-5012,4],[-1317,40,-5012,5]]}]},"Lashing Hellfire":{"internalName":"Lashing Hellfire","type":"ingredient","requirements":{"level":63,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"377:0"},"tier":3,"consumableOnlyIDs":{"duration":-220,"charges":-1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":55},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Lithoflesh":{"internalName":"Lithoflesh","type":"ingredient","requirements":{"level":63,"skills":["cooking"]},"icon":{"format":"legacy","value":"97:4"},"identifications":{"rawHealth":{"min":-300,"raw":-300,"max":-250}},"tier":2,"consumableOnlyIDs":{"duration":360,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bladestorm Idol","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Wayward Idol","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Corrupted Idol","coords":[-710,26,-370,14]}]},"Hellish Cinders":{"internalName":"Hellish Cinders","type":"ingredient","requirements":{"level":63,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"rawDefence":{"min":5,"raw":5,"max":6},"waterDefence":{"min":-35,"raw":-35,"max":-20},"spellDamage":{"min":4,"raw":4,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-78000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":16,"agilityRequirement":0},"droppedBy":[{"name":"Flaming Skull","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Poltergeist","coords":null},{"name":"Poltergeist","coords":null},{"name":"Possessed Oelnethite","coords":false},{"name":"Possessed Oelnethite","coords":[-1127,87,-5620,9]},{"name":"Obelisk Of Inversion","coords":[-798,44,-5467,40]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Tangy Nectar":{"internalName":"Tangy Nectar","type":"ingredient","requirements":{"level":63,"skills":["cooking"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"gatherSpeed":{"min":3,"raw":3,"max":3},"fireDamage":{"min":4,"raw":4,"max":6},"rawSpellDamage":{"min":15,"raw":15,"max":18}},"tier":1,"consumableOnlyIDs":{"duration":-310,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Bladestorm Idol","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Mahogany Colossus","coords":[[-590,29,-414,42],[-551,31,-495,26],[-580,23,-546,25],[-642,27,-462,21]]}]},"Maroferrous":{"internalName":"Maroferrous","type":"ingredient","requirements":{"level":63,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"15:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":5},"earthDamage":{"min":6,"raw":6,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bedrock Buster","coords":[[303,54,-3869,0],[351,55,-3941,0],[39,65,-3931,0],[64,58,-3939,0],[142,75,-3948,0],[155,5,-4000,0],[149,5,-4000,0],[224,60,-4119,0]]},{"name":"Ferrous Crushbeast","coords":[[155,83,-3973,0],[155,81,-3964,0],[152,2,-4024,0]]},{"name":"Aries Priest","coords":[165,13,-3959,50]},{"name":"Sunstone Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]}]},"Native Jadeite":{"internalName":"Native Jadeite","type":"ingredient","requirements":{"level":63,"skills":["jeweling","weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"ce658ce7c4291efe50b21d13f972e93c372d2721ed7d65266060a4916a35b"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Raincloud Uma","coords":[[-600,23,-435,30],[-610,26,-400,30],[-610,26,-400,30],[-570,21,-535,25],[-580,23,-565,25],[-580,23,-565,35]]},{"name":"Magical Flux","coords":[-494,49,-589,8]},{"name":"Furtive Uraqi","coords":[[-627,25,-446,7],[-607,45,-366,7],[-573,45,-327,7]]},{"name":"Hexed Gem-Parasite","coords":null},{"name":"Earthsculpter Uraqi","coords":[-688,26,-529,15]},{"name":"Ayri Drifter","coords":[-688,26,-529,15]}]},"Naval Shard":{"internalName":"Naval Shard","type":"ingredient","requirements":{"level":63,"skills":["jeweling"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"waterDamage":{"min":4,"raw":4,"max":5},"mainAttackDamage":{"min":-5,"raw":-5,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Drowned Sarnfic Citizen","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]},{"name":"Hurricane","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]}]},"Naval Stone":{"internalName":"Naval Stone","type":"ingredient","requirements":{"level":63,"skills":["jeweling"]},"icon":{"format":"legacy","value":"169:0"},"identifications":{"spellDamage":{"min":5,"raw":5,"max":6},"mainAttackDamage":{"min":-8,"raw":-8,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":25,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Drowned Sarnfic Citizen","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]},{"name":"Hurricane","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]}]},"Broken Fiddle":{"internalName":"Broken Fiddle","type":"ingredient","requirements":{"level":63,"skills":["woodworking"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"spellDamage":{"min":-3,"raw":-3,"max":-2},"fireDamage":{"min":5,"raw":5,"max":6},"walkSpeed":{"min":4,"raw":4,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-80000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":10}},"Devilish Delight":{"internalName":"Devilish Delight","type":"ingredient","requirements":{"level":63,"skills":["cooking"]},"icon":{"format":"legacy","value":"357:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":3},"fireDamage":{"min":10,"raw":10,"max":11}},"tier":2,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Maromagnetite":{"internalName":"Maromagnetite","type":"ingredient","requirements":{"level":63,"skills":["tailoring","woodworking"]},"icon":{"format":"legacy","value":"14:0"},"identifications":{"rawDefence":{"min":4,"raw":4,"max":5},"fireDefence":{"min":7,"raw":7,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Altitude Walker","coords":[[353,56,-3942,0],[171,82,-3932,0],[49,94,-3924,0],[368,82,-3983,0],[355,95,-3997,0],[224,60,-4119,0]]},{"name":"Ferrous Crushbeast","coords":[[155,83,-3973,0],[155,81,-3964,0],[152,2,-4024,0]]},{"name":"Aries Priest","coords":[165,13,-3959,50]},{"name":"Sunstone Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]}]},"Yale Leather":{"internalName":"Orc Skin","type":"ingredient","requirements":{"level":63,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":3},"fireDefence":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Yale Rampager","coords":[-1292,47,-4653,5]},{"name":"Golden King of Yales","coords":[-1292,47,-4653,5]}]},"Tungsten Chunk":{"internalName":"Tungsten Chunk","type":"ingredient","requirements":{"level":63,"skills":["jeweling"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"fireDefence":{"min":8,"raw":8,"max":10},"rawHealth":{"min":80,"raw":80,"max":100}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":20,"agilityRequirement":0},"droppedBy":[{"name":"Bladestorm Idol","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]}]},"Ouragan":{"internalName":"Ouragan","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":304,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":63,"classRequirement":"assassin","intelligence":35},"powderSlots":2,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeonMerchant","coordinates":[-581,30,-3545]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawAgility":4,"spellDamage":15,"manaRegen":10,"raw1stSpellCost":-5,"walkSpeed":20,"airDamage":15},"base":{"baseDamage":{"min":35,"raw":35,"max":50},"baseWaterDamage":{"min":40,"raw":40,"max":80},"baseAirDamage":{"min":30,"raw":30,"max":60}},"rarity":"rare"},"Decaying Headdress":{"internalName":"Decaying Headdress","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":63,"strength":35},"powderSlots":2,"identifications":{"rawDefence":-5,"rawSpellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-39,"raw":-30,"max":-21},"sprintRegen":{"min":-19,"raw":-15,"max":-10},"earthSpellDamage":{"min":11,"raw":35,"max":46},"rawEarthSpellDamage":{"min":15,"raw":50,"max":65},"earthDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":540,"baseEarthDefence":-75,"baseThunderDefence":40},"rarity":"rare"},"Enderman's Feet":{"internalName":"Enderman's Feet","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62,"dexterity":30},"powderSlots":2,"identifications":{"rawDexterity":8,"spellDamage":{"min":2,"raw":6,"max":8},"reflection":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-6,"raw":-5,"max":-3},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":920,"baseThunderDefence":80,"baseWaterDefence":-30,"baseAirDefence":-60},"rarity":"unique"},"Cicada":{"internalName":"Cicada","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":278,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"warrior","strength":25,"agility":25},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawHealth":-800,"raw4thSpellCost":-10,"earthDamage":25,"airDamage":25},"base":{"baseDamage":{"min":20,"raw":20,"max":50},"baseEarthDamage":{"min":125,"raw":125,"max":175},"baseAirDamage":{"min":100,"raw":100,"max":200}},"rarity":"legendary"},"Anthem":{"internalName":"Anthem","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":412,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"shaman","defence":25,"agility":25},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawDefence":8,"rawAgility":8,"mainAttackDamage":-20,"healthRegenRaw":100,"4thSpellCost":-20},"base":{"baseDamage":{"min":100,"raw":100,"max":100},"baseFireDamage":{"min":40,"raw":40,"max":60},"baseAirDamage":{"min":20,"raw":20,"max":80}},"rarity":"legendary"},"Morph-Ruby":{"internalName":"Morph-Ruby","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":62,"strength":29,"dexterity":29,"intelligence":29,"defence":29,"agility":29},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":175},"rarity":"set"},"Helmet of Blue Stone":{"internalName":"Helmet of Blue Stone","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"elementalDamage":{"min":-6,"raw":-5,"max":-3},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1050,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"unique"},"The Elder Wand":{"internalName":"The Elder Wand","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":153,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"mage","strength":10,"intelligence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawDefence":-10,"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"thorns":{"min":2,"raw":5,"max":7},"earthDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":18,"raw":18,"max":28},"baseEarthDamage":{"min":40,"raw":40,"max":48},"baseWaterDamage":{"min":24,"raw":24,"max":46}},"rarity":"unique"},"Guardian Loop":{"internalName":"Guardian Loop","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":62,"quest":"Lost in the Jungle"},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":3,"rawHealth":230,"fireDamage":6},"base":{"baseFireDefence":15},"rarity":"unique"},"Vile":{"internalName":"Vile","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":375,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"rawHealth":{"min":-325,"raw":-250,"max":-175},"poison":{"min":330,"raw":1100,"max":1430},"lifeSteal":{"min":36,"raw":120,"max":156},"earthDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":35,"raw":35,"max":115},"baseEarthDamage":{"min":35,"raw":35,"max":115}},"rarity":"rare"},"Skaxis":{"internalName":"Skaxis","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":338,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"archer","strength":40,"dexterity":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":100,"rawAgility":-77,"rawHealth":{"min":-650,"raw":-500,"max":-350},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":45,"raw":45,"max":85},"baseEarthDamage":{"min":40,"raw":40,"max":100}},"rarity":"unique"},"Mosquito":{"internalName":"Mosquito","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":473,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"archer","dexterity":40,"agility":10},"powderSlots":1,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDefence":-7,"mainAttackDamage":25,"rawSpellDamage":140,"lifeSteal":325,"sprint":-15},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseThunderDamage":{"min":25,"raw":25,"max":125}},"rarity":"legendary"},"Chaos":{"internalName":"Chaos","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":9,"raw":30,"max":39},"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"spellDamage":{"min":9,"raw":30,"max":39},"rawSpellDamage":{"min":21,"raw":70,"max":91},"rawHealth":{"min":360,"raw":1200,"max":1560},"elementalDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":100},"rarity":"rare"},"Opalite":{"internalName":"Opalite","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62,"intelligence":45},"powderSlots":3,"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"waterDefence":{"min":1,"raw":3,"max":4},"elementalDefence":{"min":-12,"raw":-9,"max":-6}},"base":{"baseHealth":1000},"rarity":"unique"},"Lead":{"internalName":"Lead","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":62,"strength":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawStrength":4,"rawIntelligence":-1,"poison":{"min":71,"raw":235,"max":306},"walkSpeed":{"min":-5,"raw":-4,"max":-3}},"base":{"baseHealth":-75,"baseEarthDefence":20},"rarity":"unique"},"The Dreamer":{"internalName":"The Dreamer","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":394,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"archer","dexterity":30,"agility":30},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDexterity":14,"rawAgility":14,"spellDamage":{"min":4,"raw":13,"max":17},"earthDamage":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":45,"raw":45,"max":90},"baseThunderDamage":{"min":10,"raw":10,"max":80},"baseAirDamage":{"min":10,"raw":10,"max":80}},"rarity":"rare"},"Energy Loop":{"internalName":"Energy Loop","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":62,"quest":"Lost in the Jungle"},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":3,"rawMainAttackDamage":29,"thunderDamage":6},"base":{"baseThunderDefence":15},"rarity":"unique"},"Sharpened Seaglass":{"internalName":"Sharpened Seaglass","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":375,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"assassin","intelligence":30},"powderSlots":1,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawStrength":6,"mainAttackDamage":10,"spellDamage":20,"manaSteal":8,"reflection":20,"fireDefence":15},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseWaterDamage":{"min":60,"raw":60,"max":90}},"rarity":"legendary"},"Force Loop":{"internalName":"Force Loop","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":62,"quest":"Lost in the Jungle"},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":3,"mainAttackDamage":6,"earthDamage":6},"base":{"baseEarthDefence":15},"rarity":"unique"},"Agile Loop":{"internalName":"Agile Loop","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":62,"quest":"Lost in the Jungle"},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":3,"walkSpeed":9,"airDamage":6},"base":{"baseAirDefence":15},"rarity":"unique"},"Kindle":{"internalName":"Kindle","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62,"defence":60},"powderSlots":2,"identifications":{"rawDefence":9,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegen":{"min":2,"raw":7,"max":9},"healthRegenRaw":{"min":18,"raw":60,"max":78},"fireDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1100,"baseFireDefence":50},"rarity":"unique"},"The Silent":{"internalName":"The Silent","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":62,"intelligence":25},"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"identifications":{"mainAttackDamage":-8,"spellDamage":12,"rawSpellDamage":40,"manaRegen":6,"walkSpeed":-8,"xpBonus":12},"base":{"baseHealth":900,"baseThunderDefence":-60,"baseWaterDefence":40,"baseFireDefence":40},"rarity":"unique"},"The Oblivious":{"internalName":"The Oblivious","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":2,"raw":7,"max":9},"healthRegenRaw":{"min":11,"raw":35,"max":46},"rawHealth":{"min":165,"raw":550,"max":715},"xpBonus":{"min":8,"raw":25,"max":33},"elementalDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":1450},"rarity":"unique"},"Raptor":{"internalName":"Raptor","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":409,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"assassin","strength":30,"agility":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawDefence":-5,"rawAgility":4,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"rawHealth":{"min":-260,"raw":-200,"max":-140},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseEarthDamage":{"min":66,"raw":66,"max":77},"baseAirDamage":{"min":44,"raw":44,"max":77}},"rarity":"rare"},"Rycar's Swagger":{"internalName":"Rycar's Swagger","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":62,"strength":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"180","name":"necklace.earth2"}},"identifications":{"rawStrength":3,"rawAgility":5,"healthRegen":{"min":-14,"raw":-11,"max":-8},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":250},"rarity":"rare"},"Broken Cross":{"internalName":"Broken Cross","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":219,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"warrior","strength":25,"dexterity":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDefence":-40,"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawHealth":{"min":249,"raw":831,"max":1080},"thorns":{"min":14,"raw":45,"max":59},"reflection":{"min":14,"raw":45,"max":59},"xpBonus":{"min":6,"raw":20,"max":26},"lootBonus":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":-39,"raw":-30,"max":-21},"airDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":143,"raw":143,"max":257},"baseEarthDamage":{"min":86,"raw":86,"max":143},"baseThunderDamage":{"min":86,"raw":86,"max":143}},"rarity":"unique"},"Magical Loop":{"internalName":"Magical Loop","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":62,"quest":"Lost in the Jungle"},"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":3,"spellDamage":6,"waterDamage":6},"base":{"baseWaterDefence":15},"rarity":"unique"},"Storyteller":{"internalName":"Storyteller","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":227,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"mage","strength":20,"defence":30},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":-10,"spellDamage":-10,"healthRegenRaw":85,"manaRegen":10},"base":{"baseDamage":{"min":20,"raw":20,"max":40},"baseEarthDamage":{"min":30,"raw":30,"max":50},"baseFireDamage":{"min":30,"raw":30,"max":50}},"rarity":"legendary"},"Sextant":{"internalName":"Sextant","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62,"strength":40},"powderSlots":2,"identifications":{"rawStrength":7,"mainAttackDamage":{"min":3,"raw":9,"max":12},"earthDamage":{"min":3,"raw":9,"max":12},"airDamage":{"min":-19,"raw":-15,"max":-10},"earthDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":900,"baseEarthDefence":60,"baseAirDefence":-70},"rarity":"unique"},"Crew's Breeches":{"internalName":"Crew's Breeches","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"dungeon","requirements":{"level":62,"strength":25,"intelligence":20},"powderSlots":3,"dropMeta":{"name":"Galleon's Graveyard","type":"dungeon","coordinates":[-581,30,-3545]},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":5,"raw":16,"max":21},"manaSteal":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":8,"max":10},"waterDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":880,"baseEarthDefence":65,"baseWaterDefence":65},"rarity":"unique"},"Drifter":{"internalName":"Drifter","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":247,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"warrior","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawDexterity":-4,"rawIntelligence":8,"rawAgility":4,"rawSpellDamage":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":4,"raw":13,"max":17},"waterDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":5,"raw":17,"max":22}},"base":{"baseDamage":{"min":54,"raw":54,"max":62},"baseWaterDamage":{"min":36,"raw":36,"max":88}},"rarity":"rare"},"Paragon":{"internalName":"Paragon","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":343,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"archer","intelligence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"mainAttackDamage":{"min":-34,"raw":-26,"max":-18},"spellDamage":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":14,"max":18},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":36,"raw":36,"max":74},"baseWaterDamage":{"min":23,"raw":23,"max":32},"baseAirDamage":{"min":17,"raw":17,"max":39}},"rarity":"unique"},"Decay Burner":{"internalName":"Decay Burner","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":373,"dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"archer","defence":25},"powderSlots":1,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"spellDamage":10,"manaSteal":4,"exploding":15,"fireDamage":10,"waterDefence":-12},"base":{"baseDamage":{"min":114,"raw":114,"max":194},"baseFireDamage":{"min":469,"raw":469,"max":686}},"rarity":"rare"},"Besieged Sanctum":{"internalName":"Besieged Sanctum","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":62,"defence":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawStrength":2,"rawDexterity":-1,"rawDefence":4,"healthRegen":{"min":-10,"raw":-8,"max":-6},"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"rawAttackSpeed":-1,"earthDamage":{"min":2,"raw":6,"max":8},"elementalDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":200,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Clairvoyance":{"internalName":"Clairvoyance","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":425,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"archer","intelligence":55},"powderSlots":2,"lore":"The powerful psychic energies surrounding this bow are rumored to increase accuracy, though this has not been refuted by any reliable source.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"205","name":"bow.water3"}},"identifications":{"rawDexterity":13,"spellDamage":{"min":6,"raw":20,"max":26},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":4,"raw":14,"max":18},"waterDefence":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":70,"raw":70,"max":100},"baseWaterDamage":{"min":60,"raw":60,"max":110}},"rarity":"legendary"},"Barkgraft":{"internalName":"Barkgraft","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":342,"dropRestriction":"never","identified":true,"requirements":{"level":62,"classRequirement":"shaman","strength":25,"agility":25},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"rawAgility":5,"rawMainAttackDamage":145,"poison":400,"thorns":25,"walkSpeed":-15,"fireDefence":-50},"base":{"baseDamage":{"min":60,"raw":60,"max":85},"baseEarthDamage":{"min":160,"raw":160,"max":180},"baseAirDamage":{"min":160,"raw":160,"max":180}},"rarity":"unique"},"Cracked Iron Boots":{"internalName":"Cracked Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":62},"powderSlots":2,"base":{"baseHealth":830},"rarity":"common"},"Conductor's Baton":{"internalName":"Conductor's Baton","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":160,"dropRestriction":"normal","requirements":{"level":62,"classRequirement":"mage","dexterity":25,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":5,"rawIntelligence":7,"spellDamage":{"min":4,"raw":12,"max":16},"lifeSteal":{"min":-156,"raw":-120,"max":-84},"manaSteal":{"min":1,"raw":4,"max":5},"earthDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseThunderDamage":{"min":27,"raw":27,"max":37},"baseWaterDamage":{"min":27,"raw":27,"max":37}},"rarity":"unique"},"Ancient Spring Water":{"internalName":"Ancient Spring Water","type":"ingredient","requirements":{"level":62,"skills":["alchemism","scribing","cooking"]},"icon":{"format":"legacy","value":"326:0"},"tier":3,"consumableOnlyIDs":{"duration":40,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":20,"notTouching":10},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Carnage Agglomerate":{"internalName":"Carnage Agglomerate","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":285,"dropRestriction":"never","requirements":{"level":62,"classRequirement":"mage","strength":65,"dexterity":20},"majorIds":{"Displace":"+Displace: Wind Slash deals massive knockback to enemies hit by Teleport."},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":12,"rawDefence":-100,"earthSpellDamage":{"min":11,"raw":35,"max":46},"rawThunderMainAttackDamage":{"min":90,"raw":300,"max":390},"healthRegen":{"min":-32,"raw":-25,"max":-17},"poison":{"min":600,"raw":2000,"max":2600},"manaSteal":{"min":3,"raw":9,"max":12},"knockback":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":35,"raw":35,"max":45},"baseEarthDamage":{"min":105,"raw":105,"max":125},"baseThunderDamage":{"min":30,"raw":30,"max":40}},"rarity":"fabled"},"Feline Claws":{"internalName":"Feline Claws","type":"ingredient","requirements":{"level":62,"skills":["tailoring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":3},"rawMainAttackDamage":{"min":12,"raw":12,"max":16}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-39000,"strengthRequirement":0,"dexterityRequirement":4,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cath-o-Bucie","coords":null},{"name":"Catsith","coords":[[-1445,57,-4592,7],[-1319,44,-4714,14],[-1285,43,-4716,10],[-1237,62,-4731,10],[-1212,55,-4730,12],[-1347,44,-4487,15]]}]},"Spectral Spike":{"internalName":"Spectral Spike","type":"ingredient","requirements":{"level":62,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawMainAttackDamage":{"min":40,"raw":40,"max":45},"airDamage":{"min":7,"raw":7,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Kerasot Toxifont","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]},{"name":"Infermyrial Stalker","coords":[[-1269,47,-5304,110],[-1293,45,-5481,96],[-1065,43,-5458,104],[-1282,44,-5425,30]]}]},"Soft Silk":{"internalName":"Soft Silk","type":"ingredient","requirements":{"level":62,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawAgility":{"min":3,"raw":3,"max":4},"rawDefence":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-78000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":8},"droppedBy":[{"name":"Tree Spider","coords":[[-817,24,-498,10],[-771,23,-539,10],[-704,24,-447,10],[-724,24,-331,10],[-815,23,-305,10],[-912,26,-387,10]]},{"name":"Rot-Borer","coords":[-614,55,-276,3]},{"name":"Kobalscale Moth","coords":[[-728,26,-350,74],[-880,24,-359,80],[-902,29,-573,90]]},{"name":"Bonecrusher Spider","coords":[[-715,12,-226,4],[-687,23,-246,4],[-663,23,-249,4],[-675,30,-286,4]]},{"name":"Thunder Grub","coords":[-583,27,-817,2]}]},"Putrid Spores":{"internalName":"Putrid Spores","type":"ingredient","requirements":{"level":62,"skills":["alchemism"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"poison":{"min":460,"raw":460,"max":510}},"tier":1,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]},{"name":"Rotting Myconid","coords":[[-433,45,-5256,8],[-493,49,-5386,11],[-673,47,-5446,8]]}]},"Scuttling Syenite":{"internalName":"Scuttling Syenite","type":"ingredient","requirements":{"level":62,"skills":["jeweling"]},"icon":{"format":"legacy","value":"1:3"},"identifications":{"healthRegenRaw":{"min":12,"raw":12,"max":15},"lifeSteal":{"min":16,"raw":16,"max":20}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-78000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Vulcor Adrenophage","coords":null}]},"Solcrystal Horn":{"internalName":"Solcrystal Horn","type":"ingredient","requirements":{"level":62,"skills":["jeweling"]},"icon":{"format":"legacy","value":"396:0"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":3},"rawAgility":{"min":2,"raw":2,"max":3},"sprint":{"min":4,"raw":4,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-117000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":9,"agilityRequirement":12},"droppedBy":[{"name":"Sunstone Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]}]},"Terramarine Dust":{"internalName":"Terramarine Dust","type":"ingredient","requirements":{"level":62,"skills":["woodworking","scribing"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":7},"waterDamage":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-55000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":6,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Marinemite","coords":[-1277,9,-4681,7]},{"name":"Terramite","coords":[-1277,9,-4681,7]}]},"Black Steel":{"internalName":"Black Steel","type":"ingredient","requirements":{"level":62,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"rawMainAttackDamage":{"min":16,"raw":16,"max":20}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Knight","coords":[-1238,42,-5375,5]},{"name":"Night Lurker","coords":[[-1061,42,-5534,35],[-1035,48,-5573,30],[-1276,47,-5214,25],[-1282,48,-5261,25],[-1254,46,-5302,25],[-1240,42,-5354,25]]},{"name":"Umbral Arbalist","coords":[[-1244,54,-5337,0],[-1242,54,-5440,0],[-1156,54,-5117,0],[-1226,52,-5110,0],[-1276,54,-5100,0],[-1342,63,-5100,0]]},{"name":"Dark Executioner","coords":[-1238,42,-5375,5]},{"name":"Dullahan's Gargoyle","coords":[-1127,88,-5608,0]},{"name":"Abyssal Knight","coords":false}]},"Unholy Spirit":{"internalName":"Unholy Spirit","type":"ingredient","requirements":{"level":62,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"reflection":{"min":-5,"raw":-5,"max":-3}},"tier":0,"consumableOnlyIDs":{"duration":48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wraith","coords":[[-1345,46,-5457,24],[-1355,46,-5509,24]]},{"name":"Phantasm","coords":[-1345,46,-5457,10]}]},"Electrocharge Greaves":{"internalName":"Electrocharge Greaves","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"dexterity":50},"powderSlots":1,"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"healthRegenRaw":{"min":-78,"raw":-60,"max":-42},"manaSteal":{"min":-5,"raw":-4,"max":-3},"rawAttackSpeed":1,"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":1000,"baseEarthDefence":-60,"baseThunderDefence":60},"rarity":"rare"},"Ultramarine Boots":{"internalName":"Ultramarine Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":61,"intelligence":80},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":880,"baseThunderDefence":-20,"baseWaterDefence":80},"rarity":"set"},"Odyssey":{"internalName":"Odyssey","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":-97,"raw":-75,"max":-52},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":1100,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Cracked Iron Helmet":{"internalName":"Cracked Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61},"powderSlots":2,"base":{"baseHealth":800},"rarity":"common"},"Pure Birch Dagger":{"internalName":"Pure Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":208,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":74,"raw":74,"max":92}},"rarity":"common"},"Heartstrings":{"internalName":"Heartstrings","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":321,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"archer","defence":30,"agility":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":18,"raw":60,"max":78},"lifeSteal":{"min":42,"raw":140,"max":182},"xpBonus":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":62,"raw":62,"max":90},"baseFireDamage":{"min":30,"raw":30,"max":50},"baseAirDamage":{"min":25,"raw":25,"max":55}},"rarity":"unique"},"Obsidian Spire":{"internalName":"Obsidian Spire","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":324,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"shaman","strength":20,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":150,"raw":500,"max":650},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":5,"raw":18,"max":23},"waterDefence":{"min":-31,"raw":-24,"max":-17},"fireDefence":{"min":11,"raw":36,"max":47}},"base":{"baseDamage":{"min":105,"raw":105,"max":115},"baseEarthDamage":{"min":125,"raw":125,"max":135},"baseFireDamage":{"min":140,"raw":140,"max":160}},"rarity":"unique"},"Rising Sun":{"internalName":"Rising Sun","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":322,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"archer","defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":110,"raw":110,"max":150},"baseFireDamage":{"min":60,"raw":60,"max":110}},"rarity":"unique"},"Photon":{"internalName":"Photon","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":61,"quest":"Realm of Light II - Taproot"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Grave Digger":{"internalName":"Grave Digger","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":315,"dropRestriction":"never","identified":true,"requirements":{"level":61,"classRequirement":"assassin","strength":25},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":4,"lifeSteal":145,"lootBonus":8,"stealing":2,"waterDamage":-7,"earthDefence":5},"base":{"baseDamage":{"min":100,"raw":100,"max":180},"baseEarthDamage":{"min":50,"raw":50,"max":90}},"rarity":"rare"},"Pure Birch Bow":{"internalName":"Pure Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":262,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":162,"raw":162,"max":187}},"rarity":"common"},"Nature's Gift":{"internalName":"Nature's Gift","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":61,"strength":30,"intelligence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"healthRegenRaw":{"min":11,"raw":35,"max":46},"poison":{"min":72,"raw":240,"max":312},"thorns":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseEarthDefence":20,"baseWaterDefence":20,"baseFireDefence":-50,"baseAirDefence":20},"rarity":"legendary"},"Flush":{"internalName":"Flush","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":129,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"mage","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"walkSpeed":{"min":2,"raw":8,"max":10},"waterDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":85}},"rarity":"unique"},"Werepelt":{"internalName":"Werepelt","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":61},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"identifications":{"mainAttackDamage":15,"rawMainAttackDamage":105,"spellDamage":-18,"rawSpellDamage":-80,"walkSpeed":6},"base":{"baseHealth":975,"baseFireDefence":-30},"rarity":"rare"},"Sinkhole":{"internalName":"Sinkhole","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":467,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"shaman","strength":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawAgility":-5,"rawMainAttackDamage":{"min":92,"raw":305,"max":397},"rawHealth":{"min":-780,"raw":-600,"max":-420},"lifeSteal":{"min":35,"raw":118,"max":153},"exploding":{"min":8,"raw":25,"max":33},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":550,"raw":550,"max":575}},"rarity":"rare"},"Rusty Sword":{"internalName":"Rusty Sword","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":252,"dropRestriction":"never","identified":true,"requirements":{"level":61,"classRequirement":"assassin","intelligence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawStrength":3,"mainAttackDamage":15,"earthDamage":15},"base":{"baseDamage":{"min":50,"raw":50,"max":65},"baseWaterDamage":{"min":60,"raw":60,"max":70}},"rarity":"unique"},"Wing Cap":{"internalName":"Wing Cap","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"agility":15},"powderSlots":2,"identifications":{"rawAgility":5,"walkSpeed":{"min":6,"raw":20,"max":26},"lootBonus":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":-9,"raw":-7,"max":-5},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":850,"baseThunderDefence":-70,"baseAirDefence":50},"rarity":"unique"},"Tear of Pirate Cove":{"internalName":"Tear of Pirate Cove","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":61,"quest":"Redbeard^s Booty","intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"rawSpellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":-10,"raw":-8,"max":-6}},"base":{"baseWaterDefence":20},"rarity":"rare"},"Pure Birch Wand":{"internalName":"Pure Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":129,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":54,"raw":54,"max":71}},"rarity":"common"},"Mender":{"internalName":"Mender","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"intelligence":30,"defence":20},"powderSlots":2,"identifications":{"rawIntelligence":5,"rawDefence":4,"healthRegen":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":4,"raw":12,"max":16},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":940,"baseThunderDefence":-80,"baseWaterDefence":60,"baseFireDefence":60},"rarity":"unique"},"Pure Birch Spear":{"internalName":"Pure Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":175,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":102,"raw":102,"max":131}},"rarity":"common"},"Mighty Pants":{"internalName":"Mighty Pants","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":3,"identifications":{"spellDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1000,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"unique"},"Amplitude":{"internalName":"Amplitude","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"dexterity":50},"powderSlots":2,"identifications":{"rawStrength":-5,"rawDexterity":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1000,"baseEarthDefence":-75,"baseThunderDefence":75},"rarity":"unique"},"Captain's Razor":{"internalName":"Captain's Razor","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":257,"dropRestriction":"never","identified":true,"requirements":{"level":61,"classRequirement":"warrior","dexterity":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":47,"thorns":10,"thunderDamage":10,"waterDamage":16},"base":{"baseDamage":{"min":33,"raw":33,"max":50},"baseWaterDamage":{"min":6,"raw":6,"max":77}},"rarity":"rare"},"Tactical Kukri":{"internalName":"Tactical Kukri","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":252,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"assassin","defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawHealth":{"min":204,"raw":680,"max":884},"lootBonus":{"min":3,"raw":10,"max":13},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":56,"raw":56,"max":72},"baseFireDamage":{"min":34,"raw":34,"max":40}},"rarity":"unique"},"Ormus":{"internalName":"Ormus","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":61,"dexterity":45,"agility":25},"powderSlots":2,"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"rawSpellDamage":{"min":17,"raw":55,"max":72},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":800,"baseEarthDefence":-45,"baseThunderDefence":55,"baseFireDefence":-75,"baseAirDefence":55},"rarity":"unique"},"Wolf Tagger":{"internalName":"Wolf Tagger","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":330,"dropRestriction":"never","identified":true,"requirements":{"level":61,"classRequirement":"archer","dexterity":10},"powderSlots":3,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":4,"mainAttackDamage":8,"spellDamage":6,"xpBonus":10},"base":{"baseDamage":{"min":205,"raw":205,"max":235}},"rarity":"unique"},"Glowstone Killer":{"internalName":"Glowstone Killer","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawStrength":-3,"rawDexterity":7,"thorns":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":17,"max":22},"thunderDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":34,"raw":34,"max":47},"baseThunderDamage":{"min":56,"raw":56,"max":73}},"rarity":"unique"},"Pure Birch Relik":{"internalName":"Pure Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":256,"dropRestriction":"normal","requirements":{"level":61,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":121,"raw":121,"max":128}},"rarity":"common"},"Fresh Bone":{"internalName":"Fresh Bone","type":"ingredient","requirements":{"level":61,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"xpBonus":{"min":2,"raw":2,"max":5},"lootBonus":{"min":1,"raw":1,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-77000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rot Wolf","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]},{"name":"Bone Juggler","coords":[-1095,58,-5268,21]}]},"Pilfered Silver":{"internalName":"Pilfered Silver","type":"ingredient","requirements":{"level":61,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"lootBonus":{"min":4,"raw":4,"max":5},"rawMainAttackDamage":{"min":45,"raw":45,"max":45}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":0,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Catsith","coords":[[-1445,57,-4592,7],[-1319,44,-4714,14],[-1285,43,-4716,10],[-1237,62,-4731,10],[-1212,55,-4730,12],[-1347,44,-4487,15]]},{"name":"Cath-o-Bucie","coords":null}]},"Overgrown Bones":{"internalName":"Overgrown Bones","type":"ingredient","requirements":{"level":61,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"healthRegenRaw":{"min":7,"raw":7,"max":9}},"tier":0,"consumableOnlyIDs":{"duration":-220,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wandering Skeleton","coords":[[-600,23,-435,30],[-610,26,-400,30],[-610,26,-400,30],[-570,21,-535,25],[-580,23,-565,25],[-580,23,-565,35]]},{"name":"Lost Adventurer","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Risen Explorer","coords":[[-748,30,-546,4],[-822,37,-285,4],[-594,40,-389,5]]}]},"Looted Alloy":{"internalName":"Looted Alloy","type":"ingredient","requirements":{"level":61,"skills":["armouring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"rawHealth":{"min":140,"raw":140,"max":160},"fireDefence":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-39000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":4,"agilityRequirement":0},"droppedBy":[{"name":"Yale Rampager","coords":[-1292,47,-4653,5]},{"name":"Golden King of Yales","coords":[-1292,47,-4653,5]},{"name":"Freelancer","coords":[-1368,92,-4332,7]},{"name":"Freewheeler","coords":[-1368,92,-4332,7]}]},"Earthquake":{"internalName":"Earthquake","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":155,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"mage","strength":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":8,"raw":25,"max":33},"earthDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":34,"raw":34,"max":114},"baseEarthDamage":{"min":80,"raw":80,"max":149},"baseFireDamage":{"min":80,"raw":80,"max":149}},"rarity":"unique"},"Heliophobia":{"internalName":"Heliophobia","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"intelligence":25},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":23,"raw":75,"max":98},"manaSteal":{"min":2,"raw":8,"max":10},"reflection":{"min":4,"raw":12,"max":16},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-23,"raw":-18,"max":-13},"thunderDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":950,"baseThunderDefence":-65,"baseWaterDefence":80},"rarity":"rare"},"Protolith":{"internalName":"Protolith","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"strength":45},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":900,"baseEarthDefence":30},"rarity":"unique"},"Pirate Luck":{"internalName":"Pirate Luck","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":60,"quest":"Beneath The Depths"},"powderSlots":2,"identifications":{"xpBonus":7,"lootBonus":32,"stealing":12},"base":{"baseHealth":320,"baseWaterDefence":60},"rarity":"legendary"},"Searchlight":{"internalName":"Searchlight","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":152,"dropRestriction":"never","identified":true,"requirements":{"level":60,"classRequirement":"mage","defence":20},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDexterity":3,"rawDefence":4,"spellDamage":10,"reflection":8,"thunderDamage":12},"base":{"baseDamage":{"min":39,"raw":39,"max":56},"baseFireDamage":{"min":21,"raw":21,"max":32}},"rarity":"unique"},"High-Quality Chain Mail":{"internalName":"High-Quality Chain Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60},"powderSlots":2,"base":{"baseHealth":770},"rarity":"common"},"Wild Gauntlet":{"internalName":"Wild Gauntlet","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":251,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"assassin","strength":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-9,"raw":-7,"max":-5},"thorns":{"min":4,"raw":13,"max":17},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":59,"raw":59,"max":74},"baseEarthDamage":{"min":48,"raw":48,"max":63}},"rarity":"unique"},"Wildfire":{"internalName":"Wildfire","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":60,"defence":35},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"identifications":{"mainAttackDamage":12,"spellDamage":8,"rawSpellDamage":70,"exploding":7,"waterDamage":-10,"fireDamage":15},"base":{"baseHealth":625,"baseWaterDefence":-60,"baseFireDefence":65},"rarity":"unique"},"Abysso Galoshes":{"internalName":"Abysso Galoshes","type":"armour","armourType":"boots","armourColor":"rgb(69,82,89)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":60,"quest":"Beneath the Depths"},"powderSlots":2,"lore":"Rumored to be crafted from a Dernic stone, these sinister boots radiate extremely powerful dark energy. They have absorbed the power of the raging seas in their time locked in Sarnfic.","identifications":{"rawDexterity":7,"rawIntelligence":7,"rawSpellDamage":{"min":30,"raw":100,"max":130},"healthRegen":{"min":-26,"raw":-20,"max":-14},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":1400,"baseThunderDefence":80,"baseWaterDefence":50},"rarity":"legendary"},"Kerasot Spreader":{"internalName":"Kerasot Spreader","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":100,"dropRestriction":"never","identified":true,"requirements":{"level":60,"classRequirement":"warrior"},"powderSlots":1,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawIntelligence":-4,"poison":1000,"walkSpeed":6,"exploding":6},"base":{"baseDamage":{"min":30,"raw":30,"max":50}},"rarity":"unique"},"Jungle Sludge":{"internalName":"Jungle Sludge","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60},"powderSlots":2,"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":-357,"raw":-275,"max":-192},"poison":{"min":80,"raw":265,"max":345},"thorns":{"min":2,"raw":5,"max":7},"waterDamage":{"min":3,"raw":11,"max":14},"thunderDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":950,"baseEarthDefence":50,"baseWaterDefence":-60},"rarity":"unique"},"Apex Predator":{"internalName":"Apex Predator","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":60,"strength":40,"agility":40},"lore":"Something must always rule the ecosystem, even one as warped as this.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"lifeSteal":{"min":14,"raw":45,"max":59},"2ndSpellCost":{"min":-4,"raw":-13,"max":-17},"earthMainAttackDamage":{"min":3,"raw":11,"max":14},"rawAirMainAttackDamage":{"min":15,"raw":50,"max":65}},"base":{"baseThunderDefence":20,"baseFireDefence":20},"rarity":"fabled"},"Air Relic Spear":{"internalName":"Air Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":227,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","agility":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"464","name":"spear.air3"}},"identifications":{"rawAgility":7,"rawSpellDamage":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseAirDamage":{"min":40,"raw":40,"max":70}},"rarity":"rare"},"Plasma Sabre":{"internalName":"Plasma Sabre","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":201,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"warrior","dexterity":20,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawIntelligence":-7,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":-56,"raw":-43,"max":-30},"lifeSteal":{"min":33,"raw":110,"max":143},"thunderDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseThunderDamage":{"min":29,"raw":29,"max":43},"baseFireDamage":{"min":31,"raw":31,"max":58}},"rarity":"unique"},"Lightshow":{"internalName":"Lightshow","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":458,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"shaman","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"reflection":{"min":21,"raw":70,"max":91},"elementalDefence":{"min":9,"raw":30,"max":39}},"base":{"baseEarthDamage":{"min":20,"raw":20,"max":22},"baseThunderDamage":{"min":16,"raw":16,"max":27},"baseWaterDamage":{"min":18,"raw":18,"max":25},"baseFireDamage":{"min":19,"raw":19,"max":23},"baseAirDamage":{"min":17,"raw":17,"max":26}},"rarity":"legendary"},"Ohonte Kerhite":{"internalName":"Ohonte Kerhite","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":124,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"classRequirement":"mage","intelligence":100,"defence":15},"powderSlots":2,"dropMeta":{"name":"Tribal Sanctuary","type":"altar","coordinates":[-711,58,-657]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":13,"mainAttackDamage":{"min":-97,"raw":-75,"max":-52},"spellDamage":{"min":15,"raw":50,"max":65},"healthRegen":{"min":8,"raw":25,"max":33},"rawHealth":{"min":231,"raw":770,"max":1001},"manaRegen":{"min":5,"raw":18,"max":23},"healingEfficiency":{"min":8,"raw":25,"max":33},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":80}},"rarity":"rare"},"Earth Relic Spear":{"internalName":"Earth Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":274,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","strength":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":140,"raw":140,"max":190},"baseEarthDamage":{"min":140,"raw":140,"max":190}},"rarity":"rare"},"Relic Spear":{"internalName":"Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":292,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior"},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseEarthDamage":{"min":30,"raw":30,"max":35},"baseThunderDamage":{"min":30,"raw":30,"max":35},"baseWaterDamage":{"min":30,"raw":30,"max":35},"baseFireDamage":{"min":30,"raw":30,"max":35},"baseAirDamage":{"min":30,"raw":30,"max":35}},"rarity":"rare"},"Capsid Frame":{"internalName":"Capsid Frame","type":"armour","armourType":"helmet","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"intelligence":50,"defence":40},"powderSlots":2,"dropMeta":{"name":"Magmastream Core","type":"altar","coordinates":[-1025,95,-3657]},"identifications":{"rawIntelligence":10,"healthRegen":{"min":9,"raw":30,"max":39},"manaRegen":{"min":5,"raw":18,"max":23},"exploding":{"min":8,"raw":25,"max":33},"waterDamage":{"min":11,"raw":35,"max":46},"fireDamage":{"min":9,"raw":30,"max":39},"airDefence":{"min":-117,"raw":-90,"max":-63}},"base":{"baseHealth":165,"baseFireDefence":60},"rarity":"rare"},"Dragster":{"internalName":"Dragster","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","identified":true,"requirements":{"level":60,"agility":45},"powderSlots":2,"identifications":{"rawDefence":-6,"rawAgility":3,"rawMainAttackDamage":100,"walkSpeed":20,"airDamage":5,"fireDefence":-10,"airDefence":5},"base":{"baseHealth":750,"baseFireDefence":-50,"baseAirDefence":40},"rarity":"rare"},"Render":{"internalName":"Render","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":60,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"exploding":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-9,"raw":-7,"max":-5},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":-15,"baseAirDefence":15},"rarity":"rare"},"Griswold's Edge":{"internalName":"Griswold's Edge","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":225,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":7,"mainAttackDamage":{"min":2,"raw":7,"max":9},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":100,"raw":100,"max":150},"baseThunderDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Evaporator":{"internalName":"Evaporator","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"intelligence":20,"defence":35},"powderSlots":2,"identifications":{"walkSpeed":{"min":-10,"raw":-8,"max":-6},"airDamage":{"min":-23,"raw":-18,"max":-13},"airDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseHealth":1400,"baseAirDefence":-70},"rarity":"unique"},"Draoi Fair":{"internalName":"Draoi Fair","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":60,"quest":"The Order of the Grook","strength":25,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"healthRegenRaw":{"min":9,"raw":30,"max":39},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":20,"baseWaterDefence":20},"rarity":"fabled"},"Succulent Sneakers":{"internalName":"Succulent Sneakers","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"strength":30,"intelligence":20},"powderSlots":2,"identifications":{"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegen":{"min":6,"raw":20,"max":26},"thorns":{"min":4,"raw":14,"max":18},"earthDefence":{"min":3,"raw":9,"max":12},"waterDefence":{"min":3,"raw":9,"max":12},"airDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseHealth":835,"baseEarthDefence":40,"baseWaterDefence":30},"rarity":"unique"},"Plague Staff":{"internalName":"Plague Staff","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":2,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"classRequirement":"mage","intelligence":50},"majorIds":{"Plague":"+Plague: Poisoned mobs spread their poison to nearby mobs."},"powderSlots":2,"lore":"Carried by the Olux Plague Doctor, this simple-looking stick subtly oozes with an unidentifiable substance that is invigorating to the holder, and lethally venomous to anything else.","dropMeta":{"name":"Plague Laboratory","type":"altar","coordinates":[-1833,46,-5259]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawIntelligence":20,"healthRegenRaw":{"min":30,"raw":100,"max":130},"poison":{"min":975,"raw":3250,"max":4225}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"fabled"},"Vixen":{"internalName":"Vixen","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":60,"defence":70},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"healthRegenRaw":25,"earthDefence":5,"thunderDefence":4,"airDefence":7},"base":{"baseHealth":300,"baseFireDefence":20},"rarity":"rare"},"Fire Relic Spear":{"internalName":"Fire Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":240,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","defence":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":20,"raw":65,"max":85},"rawHealth":{"min":231,"raw":770,"max":1001},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":70,"raw":70,"max":90},"baseFireDamage":{"min":70,"raw":70,"max":90}},"rarity":"rare"},"Lichcall":{"internalName":"Lichcall","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":309,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"archer","dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":85,"raw":85,"max":110},"baseThunderDamage":{"min":35,"raw":35,"max":70}},"rarity":"unique"},"Insulation":{"internalName":"Insulation","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"thunderDamage":{"min":-5,"raw":-4,"max":-3},"fireDamage":{"min":-5,"raw":-4,"max":-3}},"base":{"baseHealth":240,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"unique"},"Homeorhesis":{"internalName":"Homeorhesis","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":60,"strength":40},"lore":"Stability is not necessarily found in stasis, but predictability.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"mainAttackDamage":{"min":-58,"raw":-45,"max":-31},"rawMainAttackDamage":{"min":18,"raw":60,"max":78},"spellDamage":{"min":-58,"raw":-45,"max":-31},"rawSpellDamage":{"min":36,"raw":120,"max":156},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":35,"baseWaterDefence":35},"rarity":"fabled"},"Onenya Hronkas":{"internalName":"Onenya Hronkas","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"strength":30,"defence":85},"powderSlots":2,"dropMeta":{"name":"Tribal Sanctuary","type":"altar","coordinates":[-711,58,-657]},"identifications":{"rawStrength":7,"rawDefence":7,"mainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":21,"raw":70,"max":91},"thorns":{"min":9,"raw":30,"max":39},"rawAttackSpeed":-1,"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":1750,"baseEarthDefence":100,"baseWaterDefence":-60,"baseFireDefence":100,"baseAirDefence":-60},"rarity":"legendary"},"Renda Langit":{"internalName":"Renda Langit","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":60,"quest":"The Order of the Grook","agility":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"raw2ndSpellCost":{"min":-1,"raw":-3,"max":-4},"raw4thSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":230,"baseAirDefence":30},"rarity":"fabled"},"Polaris":{"internalName":"Polaris","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":264,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"warrior","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":9,"raw":30,"max":39}},"base":{"baseEarthDamage":{"min":17,"raw":17,"max":17},"baseThunderDamage":{"min":17,"raw":17,"max":17},"baseWaterDamage":{"min":17,"raw":17,"max":17},"baseFireDamage":{"min":17,"raw":17,"max":17},"baseAirDamage":{"min":17,"raw":17,"max":17}},"rarity":"rare"},"Water Relic Spear":{"internalName":"Water Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":218,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","intelligence":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":70,"raw":70,"max":75},"baseWaterDamage":{"min":70,"raw":70,"max":75}},"rarity":"rare"},"Luster Purge":{"internalName":"Luster Purge","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":324,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"shaman","intelligence":25,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawMainAttackDamage":{"min":-75,"raw":-58,"max":-41},"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":120,"raw":400,"max":520},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"reflection":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":15,"raw":15,"max":18},"baseWaterDamage":{"min":40,"raw":40,"max":48},"baseAirDamage":{"min":35,"raw":35,"max":53}},"rarity":"unique"},"Thunder Relic Spear":{"internalName":"Thunder Relic Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":258,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","dexterity":25},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-805,23,-497,120]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":30,"raw":30,"max":95},"baseThunderDamage":{"min":30,"raw":30,"max":95}},"rarity":"rare"},"Stronghold":{"internalName":"Stronghold","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":60,"strength":40,"defence":40},"powderSlots":3,"identifications":{"spellDamage":{"min":7,"raw":23,"max":30},"2ndSpellCost":{"min":36,"raw":28,"max":20},"3rdSpellCost":{"min":56,"raw":43,"max":30},"4thSpellCost":{"min":36,"raw":28,"max":20},"thorns":{"min":7,"raw":23,"max":30},"earthSpellDamage":{"min":5,"raw":15,"max":20},"rawFireSpellDamage":{"min":30,"raw":100,"max":130}},"base":{"baseHealth":1450,"baseEarthDefence":40,"baseFireDefence":40,"baseAirDefence":-40},"rarity":"legendary"},"Mail of the Sweltering":{"internalName":"Mail of the Sweltering","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"defence":20,"agility":20},"powderSlots":2,"identifications":{"rawDefence":5,"healthRegenRaw":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":23,"raw":75,"max":98},"exploding":{"min":1,"raw":3,"max":4},"airDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1000,"baseWaterDefence":-120,"baseFireDefence":40,"baseAirDefence":30},"rarity":"unique"},"Adventurous":{"internalName":"Adventurous","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":60,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"161","name":"bracelet.air2"}},"identifications":{"reflection":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseAirDefence":20},"rarity":"rare"},"Racer's Shoes":{"internalName":"Racer's Shoes","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"agility":40},"powderSlots":1,"identifications":{"rawAgility":7,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"rawSpellDamage":{"min":-32,"raw":-25,"max":-17},"walkSpeed":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":950},"rarity":"unique"},"Reindeer Paws":{"internalName":"Reindeer Paws","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":60,"strength":15,"agility":15},"powderSlots":2,"identifications":{"rawStrength":4,"rawAgility":4,"mainAttackDamage":12,"walkSpeed":16,"earthDamage":8,"airDamage":8},"base":{"baseHealth":800,"baseFireDefence":-40},"rarity":"rare"},"Static Wand":{"internalName":"Static Wand","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":157,"dropRestriction":"normal","requirements":{"level":60,"classRequirement":"mage","dexterity":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":1,"raw":1,"max":33},"baseThunderDamage":{"min":1,"raw":1,"max":66}},"rarity":"unique"},"Eyes on All":{"internalName":"Eyes on All","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":60,"dexterity":45,"intelligence":45},"lore":"A presence of despair watches over the swamp as the Decay spreads.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"spellDamage":{"min":-14,"raw":-11,"max":-8},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseThunderDefence":-60,"baseWaterDefence":-60},"rarity":"fabled"},"Extinction":{"internalName":"Extinction","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":60,"strength":20,"dexterity":20,"intelligence":15,"defence":10,"agility":10},"lore":"The Decay swept away countless species. As those memories die, they are lost forever.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"mainAttackDamage":{"min":6,"raw":20,"max":26},"lifeSteal":{"min":-65,"raw":-50,"max":-35},"manaRegen":{"min":-4,"raw":-3,"max":-2},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":-20,"baseThunderDefence":-20,"baseWaterDefence":-25,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"fabled"},"Dragon's Eye Bracelet":{"internalName":"Dragon's Eye Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":60,"quest":"The Order of the Grook","defence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"exploding":{"min":2,"raw":5,"max":7},"xpBonus":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":11,"max":14},"waterDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseFireDefence":25},"rarity":"fabled"},"StoneWall":{"internalName":"StoneWall","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":60,"strength":30},"powderSlots":1,"identifications":{"rawStrength":8,"rawDefence":5,"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseHealth":1000,"baseEarthDefence":150,"baseThunderDefence":-10,"baseWaterDefence":-10,"baseFireDefence":-10,"baseAirDefence":-50},"rarity":"unique"},"Symbiont":{"internalName":"Symbiont","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":60,"defence":35,"agility":35},"lore":"Survival is the shared interest of those in the wilds.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"healthRegen":{"min":4,"raw":13,"max":17},"poison":{"min":105,"raw":350,"max":455},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":8,"max":10},"healingEfficiency":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":220},"rarity":"fabled"},"Charity":{"internalName":"Charity","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":60},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"healthRegen":12,"lootBonus":12},"rarity":"unique"},"Bad Wolf":{"internalName":"Bad Wolf","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"dexterity":35},"powderSlots":3,"lore":"The runic message carved on these enigmatic boots cover hundreds of different languages, many of them disused, but what has been translated seems to describe a disaster soon to arrive to the world.","identifications":{"rawDexterity":8,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":10,"raw":32,"max":42},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1350,"baseThunderDefence":70,"baseAirDefence":-100},"rarity":"legendary"},"Terminal Velocity":{"internalName":"Terminal Velocity","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":300,"dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","dexterity":35,"defence":25},"majorIds":{"Tackle":"+Tackle: Flying Kick deals much more knockback and Collide deals much more damage on impact."},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawIntelligence":-25,"spellDamage":{"min":5,"raw":15,"max":20},"thunderMainAttackDamage":{"min":5,"raw":18,"max":23},"fireMainAttackDamage":{"min":5,"raw":18,"max":23},"rawHealth":{"min":-520,"raw":-400,"max":-280},"lifeSteal":{"min":45,"raw":150,"max":195},"raw2ndSpellCost":{"min":-2,"raw":-7,"max":-9}},"base":{"baseDamage":{"min":70,"raw":70,"max":80},"baseThunderDamage":{"min":45,"raw":45,"max":75},"baseFireDamage":{"min":60,"raw":60,"max":70}},"rarity":"fabled"},"Kahontsi Ohstyen":{"internalName":"Kahontsi Ohstyen","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":308,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"classRequirement":"warrior","strength":80,"intelligence":10,"defence":10,"agility":10},"powderSlots":4,"lore":"Wielded by the chief of the Tromsian jungle's zombie tribes, the augmentable crystals within it focus natural elemental energies to intense levels.","dropMeta":{"name":"Tribal Sanctuary","type":"altar","coordinates":[-711,58,-657]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDexterity":-15,"spellDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":6,"raw":20,"max":26},"exploding":{"min":11,"raw":35,"max":46},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-130,"raw":-100,"max":-70}},"base":{"baseEarthDamage":{"min":150,"raw":150,"max":260}},"rarity":"legendary"},"Strikedown":{"internalName":"Strikedown","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":399,"dropRestriction":"never","identified":true,"requirements":{"level":60,"classRequirement":"shaman","dexterity":20,"intelligence":20},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":5,"mainAttackDamage":10,"rawSpellDamage":95,"healthRegenRaw":-40,"3rdSpellCost":-10,"walkSpeed":-10},"base":{"baseDamage":{"min":112,"raw":112,"max":120},"baseThunderDamage":{"min":60,"raw":60,"max":90},"baseWaterDamage":{"min":70,"raw":70,"max":80}},"rarity":"unique"},"Roasted Chestnut":{"internalName":"Roasted Chestnut","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":60,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"182","name":"necklace.fire2"}},"identifications":{"healthRegenRaw":50},"rarity":"unique"},"Sessanta":{"internalName":"Sessanta","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":60,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawHealth":{"min":27,"raw":90,"max":117}},"base":{"baseHealth":60},"rarity":"unique"},"Defiance":{"internalName":"Defiance","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":60,"defence":40,"agility":40},"powderSlots":2,"identifications":{"rawDefence":8,"rawAgility":8,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1100,"baseFireDefence":50,"baseAirDefence":50},"rarity":"rare"},"Singed Regrets":{"internalName":"Singed Regrets","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":60,"defence":50},"majorIds":{"Meteor Crash":"+Meteor Crash: Burning Sigil deals more damage in a massively increased radius, but lasts half as long."},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":8,"max":10},"fireSpellDamage":{"min":6,"raw":20,"max":26},"3rdSpellCost":{"min":-4,"raw":-12,"max":-16},"exploding":{"min":8,"raw":25,"max":33},"sprint":{"min":-25,"raw":-19,"max":-13},"healingEfficiency":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":1450,"baseWaterDefence":-25,"baseFireDefence":100,"baseAirDefence":-25},"rarity":"fabled"},"Crystal Coil":{"internalName":"Crystal Coil","type":"armour","armourType":"chestplate","armourMaterial":"iron","restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"strength":50},"powderSlots":2,"dropMeta":{"name":"Magmastream Core","type":"altar","coordinates":[-1025,95,-3657]},"identifications":{"rawDefence":15,"rawMainAttackDamage":{"min":330,"raw":1100,"max":1430},"poison":{"min":180,"raw":600,"max":780},"manaSteal":{"min":2,"raw":8,"max":10},"rawAttackSpeed":{"min":-17,"raw":-13,"max":-9},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":190,"baseEarthDefence":70},"rarity":"legendary"},"Atavistic":{"internalName":"Atavistic","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":60,"intelligence":40,"defence":35},"lore":"In the wake of the Decay, the land yearns to return to its old vibrance.","dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":{"min":-8,"raw":-6,"max":-4},"healthRegen":{"min":-13,"raw":-10,"max":-7},"healthRegenRaw":{"min":-45,"raw":-35,"max":-24},"healingEfficiency":{"min":2,"raw":8,"max":10},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":325,"baseFireDefence":30},"rarity":"fabled"},"Charm of the Worm":{"internalName":"Charm of the Worm","type":"charm","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60,"levelRange":{"max":80,"min":60}},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"legacy","value":"350:1"},"base":{"leveledXpBonus":{"min":24,"raw":30,"max":35},"damageFromMobs":{"min":6,"raw":20,"max":26}},"rarity":"fabled"},"Tome of Triage Expertise I":{"internalName":"Tome of Triage Expertise I","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"healthRegen":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Tome of Parrying Expertise I":{"internalName":"Tome of Parrying Expertise I","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"reflection":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Tome of Countering Expertise I":{"internalName":"Tome of Countering Expertise I","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"thorns":{"min":2,"raw":8,"max":10}},"rarity":"fabled"},"Tome of Scavenging Expertise I":{"internalName":"Tome of Scavenging Expertise I","type":"tome","tomeType":"expertise_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"88","name":"tome.utility"}},"identifications":{"stealing":{"min":1,"raw":2,"max":3}},"rarity":"fabled"},"Surefooted Tome of the Marathon I":{"internalName":"Surefooted Tome of the Marathon I","type":"tome","tomeType":"marathon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"87","name":"tome.movement"}},"identifications":{"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":3,"raw":10,"max":13}},"rarity":"fabled"},"Fleetfooted Tome of the Marathon I":{"internalName":"Fleetfooted Tome of the Marathon I","type":"tome","tomeType":"marathon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Orphion's Nexus of Light","type":"raid","coordinates":[-732,100,-6412]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"87","name":"tome.movement"}},"identifications":{"walkSpeed":{"min":2,"raw":5,"max":7}},"rarity":"fabled"},"Esoteric Tome of Combat Mastery I":{"internalName":"Esoteric Tome of Combat Mastery I","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawSpellDamage":{"min":10,"raw":34,"max":44}},"rarity":"fabled"},"Nimble Tome of Combat Mastery I":{"internalName":"Nimble Tome of Combat Mastery I","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"rawMainAttackDamage":{"min":14,"raw":45,"max":59}},"rarity":"fabled"},"Fighter's Tome of Combat Mastery I":{"internalName":"Fighter's Tome of Combat Mastery I","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7}},"rarity":"fabled"},"Sorcerer's Tome of Combat Mastery I":{"internalName":"Sorcerer's Tome of Combat Mastery I","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7}},"rarity":"fabled"},"Tome of Combat Mastery":{"internalName":"Tome of Combat Mastery","type":"tome","tomeType":"weapon_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"89","name":"tome.weapon"}},"identifications":{"damage":{"min":1,"raw":4,"max":5}},"rarity":"legendary"},"Courageous Tome of Defensive Mastery I":{"internalName":"Courageous Tome of Defensive Mastery I","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":50,"raw":165,"max":215},"fireDefence":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Blooming Tome of Defensive Mastery I":{"internalName":"Blooming Tome of Defensive Mastery I","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":50,"raw":165,"max":215},"earthDefence":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Pulsing Tome of Defensive Mastery I":{"internalName":"Pulsing Tome of Defensive Mastery I","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":50,"raw":165,"max":215},"thunderDefence":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Tome of Defensive Mastery":{"internalName":"Tome of Defensive Mastery","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":44,"raw":145,"max":189}},"rarity":"legendary"},"Clouded Tome of Defensive Mastery I":{"internalName":"Clouded Tome of Defensive Mastery I","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":50,"raw":165,"max":215},"airDefence":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Oceanic Tome of Defensive Mastery I":{"internalName":"Oceanic Tome of Defensive Mastery I","type":"tome","tomeType":"armour_tome","raidReward":true,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":60},"dropMeta":{"name":"Nest of the Grootslangs","type":"raid","coordinates":[-1977,63,-5615]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"83","name":"tome.armour"}},"identifications":{"rawHealth":{"min":50,"raw":165,"max":215},"waterDefence":{"min":2,"raw":6,"max":8}},"rarity":"fabled"},"Rusty Axe Head":{"internalName":"Rusty Axe Head","type":"ingredient","requirements":{"level":60,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"mainAttackDamage":{"min":-8,"raw":-8,"max":-5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Swamp Ogre","coords":[[-1642,56,-5236,186],[-1851,50,-5158,16],[-1960,44,-5485,10]]},{"name":"Ingredient Dummy","coords":null}]},"Aqua Vitae":{"internalName":"Aqua Vitae","type":"ingredient","requirements":{"level":60,"skills":["alchemism"]},"icon":{"format":"legacy","value":"374:0"},"identifications":{"waterDamage":{"min":15,"raw":15,"max":17}},"tier":3,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Olux Plague Doctor","coords":null}]},"Spiked Capsule":{"internalName":"Spiked Capsule","type":"ingredient","requirements":{"level":60,"skills":["alchemism","cooking"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"healthRegen":{"min":6,"raw":6,"max":10},"mainAttackDamage":{"min":-7,"raw":-7,"max":-4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Olux Plague Doctor","coords":null}]},"Alga":{"internalName":"Alga","type":"ingredient","requirements":{"level":60,"skills":["tailoring"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"rawMainAttackDamage":{"min":24,"raw":24,"max":26},"rawStrength":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pond Nymph","coords":[[-1032,47,-4727,7],[-1132,47,-4710,7],[-1126,46,-4563,7],[-980,44,-4558,7],[-859,42,-4608,10],[-859,43,-4608,12],[-875,44,-4631,7],[-810,44,-4594,7],[-810,45,-4594,7],[-851,46,-4658,7],[-866,43,-4777,12],[-866,44,-4777,10],[-934,43,-4782,7],[-928,43,-4801,7],[-933,43,-4793,7],[-1037,44,-4513,7],[-900,46,-4619,7],[-878,44,-4566,7],[-905,44,-4985,7],[-1208,42,-5093,7],[-1136,44,-4859,7],[-1013,43,-4634,7]]},{"name":"Aldor-Nix","coords":[[-706,43,-4765,5],[-799,27,-4740,5]]},{"name":"Kuklops","coords":null},{"name":"Feligember Frog","coords":[[-1760,62,-5308,16],[-1512,48,-5257,15],[-1516,54,-5263,24]]}]},"Shiny Gravel":{"internalName":"Shiny Gravel","type":"ingredient","requirements":{"level":60,"skills":["jeweling"]},"icon":{"format":"legacy","value":"13:0"},"identifications":{"rawEarthMainAttackDamage":{"min":14,"raw":14,"max":16},"lootBonus":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Aquatic Beauty":{"internalName":"Aquatic Beauty","type":"ingredient","requirements":{"level":60,"skills":["scribing"]},"icon":{"format":"legacy","value":"38:3"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":3},"rawDefence":{"min":4,"raw":4,"max":4},"rawIntelligence":{"min":2,"raw":2,"max":4},"rawDexterity":{"min":2,"raw":2,"max":5},"rawAgility":{"min":2,"raw":2,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pirate","coords":[[-630,42,-3140,10],[-644,54,-3116,3],[-699,53,-3081,5],[-651,53,-3061,5],[-622,53,-3075,5],[-700,38,-3077,5],[-675,38,-3081,5],[-649,37,-3074,5],[-664,38,-3047,5],[-640,38,-3046,5],[-623,38,-3073,5],[-651,77,-3072,8]]},{"name":"Drowned Sarnfic Citizen","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]},{"name":"Hurricane","coords":[[-210,6,-3405,15],[-213,6,-3372,15],[-210,6,-3326,15],[-176,6,-3283,15],[-141,6,-3253,15],[-109,6,-3217,15],[-110,6,-3190,15],[-142,10,-3123,15],[-192,6,-3124,15],[-193,6,-3094,15],[-170,6,-3046,15],[-116,6,-3052,30],[-116,6,-3052,30],[-84,6,-3253,30],[-84,6,-3253,30]]}]},"Resistant Strain":{"internalName":"Resistant Strain","type":"ingredient","requirements":{"level":60,"skills":["scribing"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"poison":{"min":140,"raw":140,"max":170},"earthDefence":{"min":4,"raw":4,"max":5},"thunderDefence":{"min":3,"raw":3,"max":3},"fireDefence":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Vulcor Adrenophage","coords":null}]},"Red Scale":{"internalName":"Red Scale","type":"ingredient","requirements":{"level":60,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"331:0"},"identifications":{"healingEfficiency":{"min":0,"raw":0,"max":3},"fireDefence":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Red Scale Spider","coords":[[-1029,42,-5163,10],[-1024,21,-5154,10],[-1046,17,-5160,10],[-1024,48,-5157,22],[-1024,48,-5157,22],[-1024,48,-5157,22],[-1024,48,-5157,22],[-1024,48,-5157,22],[-1024,48,-5157,22]]}]},"Candy Button":{"internalName":"Candy Button","type":"ingredient","requirements":{"level":60,"skills":["jeweling","cooking"]},"icon":{"format":"legacy","value":"175:0"},"identifications":{"rawIntelligence":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Adventurer's Diary":{"internalName":"Adventurer's Diary","type":"ingredient","requirements":{"level":60,"skills":["scribing"]},"icon":{"format":"legacy","value":"340:0"},"identifications":{"xpBonus":{"min":4,"raw":4,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-99,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cursed Adventurer","coords":[[-972,46,-5209,26],[-1075,43,-5335,30]]}]},"Victim's Skull":{"internalName":"Victim's Skull","type":"ingredient","requirements":{"level":60,"skills":["armouring"]},"icon":{"format":"skin","value":"1ae3855f952cd4a03c148a946e3f812a5955ad35cbcb52627ea4acd47d3081"},"identifications":{"xpBonus":{"min":-4,"raw":-4,"max":-2},"lootBonus":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":18000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Flaming Skull","coords":[[-1324,46,-5516,60],[-1274,45,-5418,36],[-1162,43,-5326,50],[-1258,45,-5149,32]]}]},"Big Jawbreaker":{"internalName":"Big Jawbreaker","type":"ingredient","requirements":{"level":60,"skills":["weaponsmithing","cooking"]},"icon":{"format":"legacy","value":"332:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Acidic Solution":{"internalName":"Acidic Solution","type":"ingredient","requirements":{"level":60,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"poison":{"min":500,"raw":500,"max":550}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-77000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Olux Plague Doctor","coords":null}]},"Licorice Ropes":{"internalName":"Licorice Ropes","type":"ingredient","requirements":{"level":60,"skills":["tailoring","cooking"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":3},"healthRegen":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Consecrated Ivory":{"internalName":"Consecrated Ivory","type":"ingredient","requirements":{"level":60,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"198:0"},"identifications":{"sprint":{"min":8,"raw":8,"max":12},"reflection":{"min":8,"raw":8,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":8},"droppedBy":[{"name":"Ramhead Worshipper","coords":[192,4,-3950,5]},{"name":"Ramhead Worshipper","coords":[239,5,-3957,10]},{"name":"Ramhead Charger","coords":[192,4,-3950,5]},{"name":"Ramhead Charger","coords":[239,5,-3957,10]},{"name":"Aries Priest","coords":[165,13,-3959,50]}]},"Ibjub Fruit":{"internalName":"Ibjub Fruit","type":"ingredient","requirements":{"level":60,"skills":["cooking"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"lifeSteal":{"min":10,"raw":10,"max":12},"rawDefence":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":-300,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Raincloud Uma","coords":[[-600,23,-435,30],[-610,26,-400,30],[-610,26,-400,30],[-570,21,-535,25],[-580,23,-565,25],[-580,23,-565,35]]},{"name":"Vampire Bat","coords":[[-792,61,-610,5],[-787,53,-594,5],[-782,48,-580,5],[-771,42,-567,5],[-754,35,-568,5]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Carnagator","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Fruit Bat","coords":[[-765,67,-604,4],[-757,65,-600,4],[-752,64,-605,4],[-757,64,-619,4],[-770,67,-627,4]]}]},"Climber's Padding":{"internalName":"Climber's Padding","type":"ingredient","requirements":{"level":60,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"171:0"},"identifications":{"sprintRegen":{"min":6,"raw":6,"max":7},"rawHealth":{"min":40,"raw":40,"max":65}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":6},"droppedBy":[{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger Sentry","coords":[[44,66,-3884,0],[47,66,-3884,0],[124,52,-3948,0],[242,55,-3930,0],[240,55,-3928,0],[346,70,-3991,0],[245,30,-4036,0],[200,54,-4058,0],[200,54,-4061,0]]},{"name":"Jewel Scavenger","coords":[[205,66,-4002,3],[233,66,-4015,6],[246,61,-4007,6],[259,54,-3999,6],[251,44,-4014,6],[241,42,-4009,6],[252,38,-3999,6],[257,33,-4011,6],[247,30,-4016,2],[239,68,-4075,2],[247,56,-4036,6],[240,62,-4058,7],[240,62,-4058,7],[150,2,-4040,5],[153,8,-3975,5],[106,4,-3945,7],[127,11,-3950,7]]}]},"Koi Oil 3":{"internalName":"Refined Koi Oil 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilKoi"}},"tier":3},"Millet String 2":{"internalName":"Refined Millet String 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMillet"}},"tier":2},"Millet String 3":{"internalName":"Refined Millet String 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMillet"}},"tier":3},"Cobalt Gem 3":{"internalName":"Refined Cobalt Gem 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"69","name":"profession.gemCobalt"}},"tier":3},"Millet String 1":{"internalName":"Refined Millet String 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMillet"}},"tier":1},"Dark Paper 2":{"internalName":"Refined Dark Paper 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDark"}},"tier":2},"Cobalt Ingot 1":{"internalName":"Refined Cobalt Ingot 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"57","name":"profession.ingotCobalt"}},"tier":1},"Cobalt Gem 2":{"internalName":"Refined Cobalt Gem 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"69","name":"profession.gemCobalt"}},"tier":2},"Dark Paper 1":{"internalName":"Refined Dark Paper 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDark"}},"tier":1},"Dark Wood 1":{"internalName":"Refined Dark Wood 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ad297b1c2e43bfca511cb279e5f631f6201fb1cf40de6ebbf7da7c60a506a366"},"tier":1},"Cobalt Gem 1":{"internalName":"Refined Cobalt Gem 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"69","name":"profession.gemCobalt"}},"tier":1},"Cobalt Ingot 3":{"internalName":"Refined Cobalt Ingot 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"57","name":"profession.ingotCobalt"}},"tier":3},"Koi Oil 2":{"internalName":"Refined Koi Oil 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilKoi"}},"tier":2},"Koi Meat 2":{"internalName":"Refined Koi Meat 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatKoi"}},"tier":2},"Millet Grains 3":{"internalName":"Refined Millet Grains 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMillet"}},"tier":3},"Dark Wood 2":{"internalName":"Refined Dark Wood 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ad297b1c2e43bfca511cb279e5f631f6201fb1cf40de6ebbf7da7c60a506a366"},"tier":2},"Koi Meat 1":{"internalName":"Refined Koi Meat 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatKoi"}},"tier":1},"Millet Grains 1":{"internalName":"Refined Millet Grains 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMillet"}},"tier":1},"Millet Grains 2":{"internalName":"Refined Millet Grains 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMillet"}},"tier":2},"Dark Paper 3":{"internalName":"Refined Dark Paper 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperDark"}},"tier":3},"Dark Wood 3":{"internalName":"Refined Dark Wood 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"ad297b1c2e43bfca511cb279e5f631f6201fb1cf40de6ebbf7da7c60a506a366"},"tier":3},"Cobalt Ingot 2":{"internalName":"Refined Cobalt Ingot 2","type":"material","identified":true,"requirements":{"level":60},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"57","name":"profession.ingotCobalt"}},"tier":2},"Koi Oil 1":{"internalName":"Refined Koi Oil 1","type":"material","identified":true,"requirements":{"level":60},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilKoi"}},"tier":1},"Koi Meat 3":{"internalName":"Refined Koi Meat 3","type":"material","identified":true,"requirements":{"level":60},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatKoi"}},"tier":3},"Circlet of Silver Feathers":{"internalName":"Circlet of Silver Feathers","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":60,"agility":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"manaRegen":6,"walkSpeed":-10,"sprintRegen":20,"jumpHeight":1,"fireDefence":-25},"base":{"baseWaterDefence":10,"baseAirDefence":12},"rarity":"legendary"},"Meep":{"internalName":"Meep","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":59},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawAgility":5,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":-135},"rarity":"unique"},"Masochist":{"internalName":"Masochist","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"strength":30},"powderSlots":2,"lore":"\\[Community Event Winner\\]","identifications":{"rawStrength":7,"mainAttackDamage":{"min":11,"raw":35,"max":46},"spellDamage":{"min":-58,"raw":-45,"max":-31},"healthRegen":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":-299,"raw":-230,"max":-161},"manaSteal":{"min":-5,"raw":-4,"max":-3},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":1350,"baseEarthDefence":30,"baseAirDefence":-40},"rarity":"rare"},"Pure Light Oak Relik":{"internalName":"Pure Light Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":234,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":92,"raw":92,"max":95}},"rarity":"common"},"Pure Light Oak Bow":{"internalName":"Pure Light Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":241,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":106,"raw":106,"max":128}},"rarity":"common"},"Void Catalyst":{"internalName":"Void Catalyst","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":386,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"shaman","dexterity":43},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":25,"raw1stSpellCost":{"min":7,"raw":5,"max":4},"raw2ndSpellCost":{"min":7,"raw":5,"max":4},"raw3rdSpellCost":{"min":7,"raw":5,"max":4},"raw4thSpellCost":{"min":7,"raw":5,"max":4},"thunderDamage":{"min":14,"raw":45,"max":59}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":515}},"rarity":"rare"},"Pure Light Oak Spear":{"internalName":"Pure Light Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":161,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":70,"raw":70,"max":86}},"rarity":"common"},"Antimony":{"internalName":"Antimony","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"strength":25,"defence":10},"powderSlots":1,"lore":"\\[Community Event Winner\\]","identifications":{"rawStrength":5,"rawDefence":4,"poison":{"min":140,"raw":465,"max":605},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-16,"raw":-12,"max":-8},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":975,"baseWaterDefence":-80,"baseFireDefence":75},"rarity":"rare"},"Anokumeme":{"internalName":"Anokumeme","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":153,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"mage","intelligence":40,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"waterDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":62},"baseAirDamage":{"min":32,"raw":32,"max":70}},"rarity":"unique"},"Synergy":{"internalName":"Synergy","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":1000},"rarity":"unique"},"Rycar's Elation":{"internalName":"Rycar's Elation","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":59},"lore":"Created from the lip of a wine bottle and dropped in the mystic waters of Lake Gylia, this glass ring seems to follow Rycar's drunken escapades wherever she wanders.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":6,"healthRegenRaw":{"min":-32,"raw":-25,"max":-17},"poison":{"min":102,"raw":340,"max":442}},"base":{"baseHealth":-140},"rarity":"legendary"},"Ultramarine Crown":{"internalName":"Ultramarine Crown","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":59,"intelligence":70},"powderSlots":1,"identifications":{"rawIntelligence":7,"lootBonus":{"min":2,"raw":6,"max":8},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":800,"baseWaterDefence":140},"rarity":"set"},"Ingrainment":{"internalName":"Ingrainment","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"strength":30,"intelligence":40},"powderSlots":2,"identifications":{"healthRegen":{"min":9,"raw":30,"max":39},"healthRegenRaw":{"min":17,"raw":55,"max":72},"lifeSteal":{"min":14,"raw":46,"max":60},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-32,"raw":-25,"max":-17},"thunderDamage":{"min":-65,"raw":-50,"max":-35},"fireDamage":{"min":-65,"raw":-50,"max":-35},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":230,"baseEarthDefence":90,"baseWaterDefence":90,"baseFireDefence":-40},"rarity":"unique"},"Whitecap":{"internalName":"Whitecap","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":313,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"archer","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"spellDamage":{"min":5,"raw":16,"max":21},"fireDamage":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":76,"raw":76,"max":112},"baseWaterDamage":{"min":51,"raw":51,"max":65}},"rarity":"unique"},"Soundwave":{"internalName":"Soundwave","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":423,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"archer","dexterity":70},"lore":"This bow's thick string fails to shoot arrows effectively, but instead produces low frequency sound waves that erupt from the source in all directions. The sound can implode the eardrums of an enemy with a single strum.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"202","name":"bow.thunder3"}},"identifications":{"rawDexterity":8,"mainAttackDamage":{"min":5,"raw":18,"max":23},"spellDamage":{"min":-52,"raw":-40,"max":-28},"thunderDamage":{"min":4,"raw":12,"max":16}},"base":{"baseThunderDamage":{"min":514,"raw":514,"max":1143}},"rarity":"legendary"},"Talaria":{"internalName":"Talaria","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"agility":70},"powderSlots":1,"identifications":{"rawAgility":9,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":7,"raw":23,"max":30},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":770,"baseFireDefence":-40},"rarity":"rare"},"Skyfall":{"internalName":"Skyfall","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":288,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"warrior","agility":38},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"walkSpeed":{"min":5,"raw":18,"max":23},"xpBonus":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-16,"raw":-12,"max":-8},"thunderDamage":{"min":-16,"raw":-12,"max":-8},"waterDamage":{"min":-16,"raw":-12,"max":-8},"fireDamage":{"min":-16,"raw":-12,"max":-8},"airDamage":{"min":7,"raw":24,"max":31}},"base":{"baseDamage":{"min":25,"raw":25,"max":55},"baseAirDamage":{"min":55,"raw":55,"max":95}},"rarity":"legendary"},"Cerid's Dynamo":{"internalName":"Cerid's Dynamo","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":90,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"mage","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"elementalDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":5,"raw":5,"max":37}},"rarity":"rare"},"Pure Light Oak Wand":{"internalName":"Pure Light Oak Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":116,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":44,"raw":44,"max":49}},"rarity":"common"},"Omnia Mors":{"internalName":"Omnia Mors","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":414,"dropRestriction":"never","requirements":{"level":59,"classRequirement":"assassin","strength":40,"agility":40},"majorIds":{"Flurry of Blows":"+Flurry of Blows: Turn Double Slice into a 10-hit pummeling of 16% damage per hit."},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":7,"rawAgility":7,"airSpellDamage":{"min":6,"raw":20,"max":26},"earthMainAttackDamage":{"min":7,"raw":22,"max":29},"rawHealth":{"min":-650,"raw":-500,"max":-350},"poison":{"min":370,"raw":1234,"max":1604},"manaSteal":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":45,"raw":45,"max":45},"baseEarthDamage":{"min":55,"raw":55,"max":65},"baseAirDamage":{"min":58,"raw":58,"max":63}},"rarity":"fabled"},"Lookout":{"internalName":"Lookout","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":59,"agility":25},"powderSlots":2,"dropMeta":{"name":"Gelibord","type":"merchant","coordinates":[-1022,49,-5305]},"identifications":{"rawAgility":6,"mainAttackDamage":-5,"walkSpeed":12,"xpBonus":10,"airDamage":6},"base":{"baseHealth":790,"baseEarthDefence":30,"baseAirDefence":30},"rarity":"unique"},"High-Quality Chain Leggings":{"internalName":"High-Quality Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59},"powderSlots":2,"base":{"baseHealth":735},"rarity":"common"},"Nerium Long Spear":{"internalName":"Nerium Long Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":203,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"warrior","strength":25,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-26,"raw":-20,"max":-14},"poison":{"min":108,"raw":360,"max":468},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseEarthDamage":{"min":77,"raw":77,"max":97},"baseAirDamage":{"min":77,"raw":77,"max":97}},"rarity":"unique"},"Autumn Leaves":{"internalName":"Autumn Leaves","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":59,"strength":20,"agility":20},"powderSlots":3,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"identifications":{"rawAgility":12,"healthRegen":25,"walkSpeed":15,"fireDamage":-10,"airDamage":10},"base":{"baseHealth":950,"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"rare"},"Pure Light Oak Dagger":{"internalName":"Pure Light Oak Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":200,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":59,"raw":59,"max":70}},"rarity":"common"},"Magma Rod":{"internalName":"Magma Rod","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":192,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"warrior","defence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawStrength":5,"healthRegenRaw":{"min":-45,"raw":-35,"max":-24},"exploding":{"min":8,"raw":25,"max":33},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseFireDamage":{"min":74,"raw":74,"max":112}},"rarity":"unique"},"Perun's Crown":{"internalName":"Perun's Crown","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"dexterity":40,"agility":50},"powderSlots":2,"identifications":{"rawDexterity":8,"rawAgility":8,"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":4,"raw":14,"max":18},"fireDamage":{"min":-68,"raw":-52,"max":-36},"airDamage":{"min":4,"raw":14,"max":18},"fireDefence":{"min":-34,"raw":-26,"max":-18}},"base":{"baseHealth":1000,"baseThunderDefence":50,"baseFireDefence":-75,"baseAirDefence":50},"rarity":"legendary"},"Palette":{"internalName":"Palette","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":247,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"assassin","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"rawSpellDamage":{"min":15,"raw":50,"max":65},"healthRegenRaw":{"min":15,"raw":50,"max":65},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":0,"raw":0,"max":90},"baseEarthDamage":{"min":15,"raw":15,"max":15},"baseThunderDamage":{"min":15,"raw":15,"max":15},"baseWaterDamage":{"min":15,"raw":15,"max":15},"baseFireDamage":{"min":15,"raw":15,"max":15},"baseAirDamage":{"min":15,"raw":15,"max":15}},"rarity":"unique"},"Tarnkappe":{"internalName":"Tarnkappe","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"dexterity":20,"agility":40},"powderSlots":1,"identifications":{"rawDexterity":8,"rawDefence":-15,"rawAgility":10,"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"walkSpeed":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":900},"rarity":"rare"},"Repulsion":{"internalName":"Repulsion","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":301,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"assassin","dexterity":30,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawSpellDamage":{"min":17,"raw":55,"max":72},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-23,"raw":-18,"max":-13},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":9,"max":12},"earthDefence":{"min":-30,"raw":-23,"max":-16}},"base":{"baseDamage":{"min":22,"raw":22,"max":22},"baseThunderDamage":{"min":33,"raw":33,"max":42},"baseWaterDamage":{"min":33,"raw":33,"max":42}},"rarity":"rare"},"Galena":{"internalName":"Galena","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"defence":45},"powderSlots":2,"identifications":{"rawDefence":5,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":15,"raw":50,"max":65},"rawHealth":{"min":60,"raw":200,"max":260},"lifeSteal":{"min":18,"raw":60,"max":78},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":700,"baseWaterDefence":-80,"baseFireDefence":60},"rarity":"unique"},"Chrysoprase":{"internalName":"Chrysoprase","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":308,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"archer","strength":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":-17,"raw":-13,"max":-9},"rawHealth":{"min":90,"raw":300,"max":390},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":50,"raw":50,"max":100},"baseEarthDamage":{"min":40,"raw":40,"max":90},"baseFireDamage":{"min":40,"raw":40,"max":90}},"rarity":"unique"},"Demon Seeker":{"internalName":"Demon Seeker","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":206,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"spellDamage":{"min":6,"raw":20,"max":26},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":80,"raw":80,"max":120}},"rarity":"rare"},"Lapis Necklace":{"internalName":"Lapis Necklace","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":59,"intelligence":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"rawSpellDamage":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Recharge":{"internalName":"Recharge","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-12,"raw":-9,"max":-6},"spellDamage":{"min":3,"raw":11,"max":14},"rawSpellDamage":{"min":15,"raw":50,"max":65},"manaRegen":{"min":-70,"raw":-54,"max":-38},"manaSteal":{"min":10,"raw":32,"max":42},"rawMaxMana":{"min":14,"raw":46,"max":60}},"base":{"baseHealth":1000},"rarity":"rare"},"Altimeter":{"internalName":"Altimeter","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":178,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"mage","strength":25,"agility":27},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":10,"raw":34,"max":44},"spellDamage":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":25,"raw":25,"max":30},"baseAirDamage":{"min":28,"raw":28,"max":32}},"rarity":"rare"},"Ife":{"internalName":"Ife","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":59,"intelligence":10,"agility":25},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-12,"raw":-9,"max":-6},"rawHealth":{"min":45,"raw":150,"max":195},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":6,"max":8},"fireDamage":{"min":-18,"raw":-14,"max":-10},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":900,"baseAirDefence":25},"rarity":"unique"},"Skien's Paranoia":{"internalName":"Skien's Paranoia","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":322,"dropRestriction":"normal","requirements":{"level":59,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawIntelligence":-5,"healthRegenRaw":{"min":18,"raw":60,"max":78},"rawHealth":{"min":143,"raw":475,"max":618},"lifeSteal":{"min":42,"raw":140,"max":182},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thorns":{"min":12,"raw":40,"max":52},"reflection":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":65,"raw":65,"max":85}},"rarity":"rare"},"Soapstone":{"internalName":"Soapstone","type":"ingredient","requirements":{"level":59,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"1:5"},"identifications":{"rawMainAttackDamage":{"min":20,"raw":20,"max":25},"rawHealth":{"min":-150,"raw":-150,"max":-120}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Mountain Ram","coords":[174,62,-3871,4]},{"name":"Mountain Ram","coords":[[273,58,-3869,2],[326,54,-3931,6],[321,50,-3940,6],[79,103,-3853,8],[79,103,-3853,8],[246,99,-3901,8],[246,99,-3901,8]]},{"name":"Mountain Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]},{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger Sentry","coords":[[44,66,-3884,0],[47,66,-3884,0],[124,52,-3948,0],[242,55,-3930,0],[240,55,-3928,0],[346,70,-3991,0],[245,30,-4036,0],[200,54,-4058,0],[200,54,-4061,0]]},{"name":"Jewel Scavenger","coords":[[205,66,-4002,3],[233,66,-4015,6],[246,61,-4007,6],[259,54,-3999,6],[251,44,-4014,6],[241,42,-4009,6],[252,38,-3999,6],[257,33,-4011,6],[247,30,-4016,2],[239,68,-4075,2],[247,56,-4036,6],[240,62,-4058,7],[240,62,-4058,7],[150,2,-4040,5],[153,8,-3975,5],[106,4,-3945,7],[127,11,-3950,7]]},{"name":"Ramhead Charger","coords":[192,4,-3950,5]},{"name":"Ramhead Charger","coords":[239,5,-3957,10]},{"name":"Ramhead Worshipper","coords":[192,4,-3950,5]},{"name":"Ramhead Worshipper","coords":[239,5,-3957,10]},{"name":"Bedrock Buster","coords":[[303,54,-3869,0],[351,55,-3941,0],[39,65,-3931,0],[64,58,-3939,0],[142,75,-3948,0],[155,5,-4000,0],[149,5,-4000,0],[224,60,-4119,0]]},{"name":"Altitude Walker","coords":[[353,56,-3942,0],[171,82,-3932,0],[49,94,-3924,0],[368,82,-3983,0],[355,95,-3997,0],[224,60,-4119,0]]},{"name":"Ferrous Crushbeast","coords":[[155,83,-3973,0],[155,81,-3964,0],[152,2,-4024,0]]},{"name":"Aries Priest","coords":[165,13,-3959,50]},{"name":"Sunstone Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]}]},"Ancient Coins":{"internalName":"Ancient Coins","type":"ingredient","requirements":{"level":59,"skills":["jeweling","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"walkSpeed":{"min":-6,"raw":-6,"max":-5},"lootBonus":{"min":4,"raw":4,"max":6},"xpBonus":{"min":4,"raw":4,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-122000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]},{"name":"Herb Spawn","coords":[-590,101,-583,3]},{"name":"Herb Spawn","coords":[-476,59,-838,15]},{"name":"Mossy Golem","coords":[-808,104,-687,4]},{"name":"Lost Adventurer","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Risen Explorer","coords":[[-748,30,-546,4],[-822,37,-285,4],[-594,40,-389,5]]},{"name":"Overgrown Zombie","coords":null},{"name":"Iboju Exile","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Rotten Zombie","coords":[-554,59,-595,10]},{"name":"Rotten Zombie","coords":[[-620,50,-675,20],[-620,50,-675,20],[-620,50,-675,20],[-665,56,-725,10],[-603,44,-744,8]]},{"name":"Ancient Iboju Undead","coords":[[-495,25,-950,18],[-482,29,-971,18],[-473,33,-986,12],[-451,41,-943,12],[-451,41,-943,12]]},{"name":"Ancient Iboju Undead","coords":[[-495,25,-950,18],[-482,29,-971,18],[-473,33,-986,12],[-451,41,-943,12],[-451,41,-943,12]]},{"name":"Idol Guardian","coords":[[-675,23,-241,1],[-665,26,-268,1]]},{"name":"Wayward Idol","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Corrupted Blade","coords":[[-601,64,-594,4],[-649,26,-440,4],[-656,26,-451,4],[-671,26,-429,4]]},{"name":"Ancient Idol","coords":[-710,26,-370,14]},{"name":"Corrupted Idol","coords":[-710,26,-370,14]},{"name":"Thunder Grub","coords":[-583,27,-817,2]},{"name":"Jungle Slime","coords":[-494,49,-589,8]},{"name":"Jungle Slime","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Jungle Slime","coords":null},{"name":"Queen Slime","coords":[-819,100,-711,3]},{"name":"Carnagator","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Earthsculpter Uraqi","coords":[-688,26,-529,15]},{"name":"Ayri Drifter","coords":[-688,26,-529,15]},{"name":"Vampire Bat","coords":[[-792,61,-610,5],[-787,53,-594,5],[-782,48,-580,5],[-771,42,-567,5],[-754,35,-568,5]]},{"name":"Fruit Bat","coords":[[-765,67,-604,4],[-757,65,-600,4],[-752,64,-605,4],[-757,64,-619,4],[-770,67,-627,4]]},{"name":"Tree Spider","coords":[[-817,24,-498,10],[-771,23,-539,10],[-704,24,-447,10],[-724,24,-331,10],[-815,23,-305,10],[-912,26,-387,10]]},{"name":"Wild Leopard","coords":[[-731,25,-483,20],[-746,24,-436,29],[-761,25,-416,20],[-748,25,-392,20],[-764,31,-305,20],[-742,30,-323,20],[-692,25,-395,20],[-684,25,-412,20],[-766,20,-348,20],[-792,27,-295,20],[-788,23,-323,20],[-817,21,-332,20],[-848,23,-316,20],[-863,23,-370,20],[-899,24,-356,20],[-909,24,-443,20],[-880,22,-481,20],[-878,24,-513,20],[-901,21,-526,20],[-889,23,-542,20],[-859,26,-535,20],[-841,26,-565,20],[-879,24,-568,20],[-858,24,-581,20],[-899,24,-622,20],[-917,24,-628,20],[-872,27,-679,20],[-913,24,-673,20],[-866,36,-635,20],[-818,26,-565,20],[-699,25,-500,20],[-819,24,-446,20]]},{"name":"Canopy Leopard","coords":[[-528,60,-508,3],[-582,66,-406,3],[-608,52,-386,3],[-598,70,-357,3],[-598,70,-357,3],[-598,70,-357,3]]},{"name":"Jungle Viper","coords":[[-768,26,-460,8],[-770,33,-447,8],[-759,23,-467,8],[-792,24,-470,8],[-593,48,-304,10],[-691,37,-528,6]]}]},"Sealed Blaze":{"internalName":"Sealed Blaze","type":"ingredient","requirements":{"level":59,"skills":["alchemism"]},"icon":{"format":"legacy","value":"213:0"},"identifications":{"earthDefence":{"min":4,"raw":4,"max":5},"thunderDefence":{"min":4,"raw":4,"max":5},"waterDefence":{"min":-10,"raw":-10,"max":-8},"fireDefence":{"min":12,"raw":12,"max":15},"airDefence":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crystallized Flare","coords":[[-827,86,-3663,60],[-861,82,-3769,60]]}]},"Scorching Horn":{"internalName":"Scorching Horn","type":"ingredient","requirements":{"level":59,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"manaRegen":{"min":7,"raw":7,"max":8},"fireDamage":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":15,"agilityRequirement":0}},"Slate Sheet":{"internalName":"Slate Sheet","type":"ingredient","requirements":{"level":59,"skills":["armouring"]},"icon":{"format":"legacy","value":"70:0"},"identifications":{"rawAgility":{"min":-4,"raw":-4,"max":-3},"rawHealth":{"min":280,"raw":280,"max":315}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":-8}},"Secret Herb":{"internalName":"Secret Herb","type":"ingredient","requirements":{"level":59,"skills":["alchemism","scribing","cooking"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":3},"healthRegenRaw":{"min":20,"raw":20,"max":25}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Serpentine":{"internalName":"Serpentine","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":352,"dropRestriction":"never","requirements":{"level":58,"classRequirement":"archer","strength":30,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"poison":{"min":202,"raw":673,"max":875},"manaSteal":{"min":2,"raw":8,"max":10},"rawEarthMainAttackDamage":{"min":47,"raw":158,"max":205},"thorns":{"min":4,"raw":12,"max":16},"mainAttackRange":{"min":-52,"raw":-40,"max":-28}},"base":{"baseDamage":{"min":20,"raw":20,"max":50},"baseEarthDamage":{"min":90,"raw":90,"max":110},"baseWaterDamage":{"min":75,"raw":75,"max":125}},"rarity":"rare"},"Botched Experiment":{"internalName":"Botched Experiment","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":271,"dropRestriction":"never","requirements":{"level":58,"classRequirement":"mage","strength":37,"defence":29,"agility":23},"majorIds":{"Perilous Flare":"+Perilous Flare: Pyrokinesis moves much slower, but has an increased Area of Effect and +50%."},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawIntelligence":-13,"poison":{"min":427,"raw":1423,"max":1850},"healingEfficiency":{"min":-25,"raw":-19,"max":-13},"earthMainAttackDamage":{"min":7,"raw":23,"max":30},"elementalSpellDamage":{"min":-40,"raw":-31,"max":-22},"rawFireMainAttackDamage":{"min":52,"raw":173,"max":225}},"base":{"baseEarthDamage":{"min":127,"raw":127,"max":127},"baseFireDamage":{"min":97,"raw":97,"max":113},"baseAirDamage":{"min":89,"raw":89,"max":101}},"rarity":"fabled"},"Tonbo":{"internalName":"Tonbo","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":350,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"archer","strength":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":7,"rawAgility":7,"mainAttackDamage":{"min":3,"raw":11,"max":14},"spellDamage":{"min":-25,"raw":-19,"max":-13},"walkSpeed":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseEarthDamage":{"min":35,"raw":35,"max":90},"baseAirDamage":{"min":35,"raw":35,"max":90}},"rarity":"rare"},"Sharp":{"internalName":"Sharp","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":58},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"thorns":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Melon Cutter":{"internalName":"Melon Cutter","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":165,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"mage","strength":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawHealth":{"min":-455,"raw":-350,"max":-245},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":0,"raw":0,"max":160}},"rarity":"unique"},"Coriolis":{"internalName":"Coriolis","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58,"agility":35},"powderSlots":2,"identifications":{"rawAgility":4,"reflection":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":3,"raw":11,"max":14},"earthDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":800,"baseEarthDefence":-60,"baseAirDefence":55},"rarity":"unique"},"Maple":{"internalName":"Maple","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":161,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":7,"healthRegenRaw":{"min":12,"raw":40,"max":52},"thorns":{"min":3,"raw":11,"max":14},"earthDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":43,"raw":43,"max":57},"baseEarthDamage":{"min":22,"raw":22,"max":34}},"rarity":"unique"},"High-Quality Chain Boots":{"internalName":"High-Quality Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58},"powderSlots":2,"base":{"baseHealth":700},"rarity":"common"},"Greaves of Honor":{"internalName":"Greaves of Honor","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":58,"quest":"An Iron Heart Part II"},"powderSlots":2,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":1050},"rarity":"rare"},"Kratke":{"internalName":"Kratke","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":3,"lore":"Spurred on by a drunken bet, the great Thanos smith Kratke improved a pair of leggings from a rival that were once thought to be perfection.","identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":3,"raw":10,"max":13},"elementalDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1000,"baseEarthDefence":40,"baseThunderDefence":40,"baseWaterDefence":40,"baseFireDefence":40,"baseAirDefence":40},"rarity":"legendary"},"Marsh Runner":{"internalName":"Marsh Runner","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":58,"intelligence":20},"powderSlots":2,"identifications":{"rawIntelligence":5,"reflection":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-5,"raw":-4,"max":-3},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":920,"baseThunderDefence":-60,"baseWaterDefence":75},"rarity":"unique"},"Bob's Lost Leggings":{"internalName":"Bob's Lost Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58},"powderSlots":2,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":880,"baseFireDefence":30},"rarity":"unique"},"Blueberry":{"internalName":"Blueberry","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58},"powderSlots":2,"identifications":{"manaSteal":{"min":1,"raw":4,"max":5},"healingEfficiency":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":870,"baseThunderDefence":-30,"baseWaterDefence":40},"rarity":"unique"},"Souffle":{"internalName":"Souffle","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":242,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"assassin","agility":28},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":9,"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseAirDamage":{"min":105,"raw":105,"max":130}},"rarity":"unique"},"Heat Burst":{"internalName":"Heat Burst","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":312,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"shaman","defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"spellDamage":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":29,"raw":95,"max":124},"waterDamage":{"min":-45,"raw":-35,"max":-24},"fireDamage":{"min":10,"raw":32,"max":42},"airDamage":{"min":10,"raw":32,"max":42}},"base":{"baseDamage":{"min":50,"raw":50,"max":54},"baseFireDamage":{"min":76,"raw":76,"max":80},"baseAirDamage":{"min":76,"raw":76,"max":80}},"rarity":"unique"},"Carrot":{"internalName":"Carrot","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":196,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"warrior","strength":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":13,"rawIntelligence":-20,"rawAgility":-5,"mainAttackDamage":{"min":8,"raw":25,"max":33},"lifeSteal":{"min":-117,"raw":-90,"max":-63},"manaSteal":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":1,"raw":1,"max":280},"baseEarthDamage":{"min":1,"raw":1,"max":190}},"rarity":"unique"},"Rycar's Bravado":{"internalName":"Rycar's Bravado","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":58,"strength":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":6,"rawDexterity":2,"rawIntelligence":-8,"rawAgility":2},"base":{"baseEarthDefence":20,"baseWaterDefence":-35,"baseAirDefence":20},"rarity":"rare"},"Electrum":{"internalName":"Electrum","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":58,"dexterity":35,"intelligence":25},"powderSlots":2,"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"rawSpellDamage":{"min":23,"raw":75,"max":98},"earthDamage":{"min":-39,"raw":-30,"max":-21},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":780,"baseEarthDefence":-90,"baseThunderDefence":45,"baseWaterDefence":45},"rarity":"unique"},"Naragath's Hoof":{"internalName":"Naragath's Hoof","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":58,"dexterity":30,"defence":30},"powderSlots":2,"identifications":{"rawDexterity":8,"rawIntelligence":-6,"rawDefence":8,"healingEfficiency":{"min":-16,"raw":-12,"max":-8},"exploding":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":850,"baseThunderDefence":60,"baseWaterDefence":-100,"baseFireDefence":60},"rarity":"rare"},"Devotion":{"internalName":"Devotion","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":58},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"rawMainAttackDamage":{"min":-21,"raw":-16,"max":-11},"spellDamage":{"min":2,"raw":5,"max":7},"healthRegen":{"min":2,"raw":5,"max":7}},"base":{"baseWaterDefence":10,"baseAirDefence":15},"rarity":"rare"},"Shameful Greaves":{"internalName":"Shameful Greaves","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":58,"quest":"An Iron Heart Part II"},"powderSlots":2,"identifications":{"poison":{"min":86,"raw":285,"max":371},"lifeSteal":{"min":23,"raw":75,"max":98},"lootBonus":{"min":9,"raw":30,"max":39},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":1050},"rarity":"rare"},"Diablo":{"internalName":"Diablo","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":232,"dropRestriction":"normal","requirements":{"level":58,"classRequirement":"mage","strength":10,"defence":30},"powderSlots":1,"lore":"One of the most unstable wands known to man, using the bark of the Flerisi trunk it reaps firey destruction upon its enemies.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"334","name":"wand.fire3"}},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":11,"raw":36,"max":47},"spellDamage":{"min":-31,"raw":-24,"max":-17},"healingEfficiency":{"min":-30,"raw":-23,"max":-16},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":10,"raw":33,"max":43},"waterDamage":{"min":-65,"raw":-50,"max":-35},"fireDamage":{"min":8,"raw":25,"max":33},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":50,"raw":50,"max":80},"baseFireDamage":{"min":60,"raw":60,"max":120}},"rarity":"legendary"},"Bloodstained Remains":{"internalName":"Bloodstained Remains","type":"ingredient","requirements":{"level":58,"skills":["tailoring"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"lifeSteal":{"min":20,"raw":20,"max":30},"healthRegenRaw":{"min":-20,"raw":-20,"max":-15}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Naga Commander","coords":[[-2030,57,-5312,45],[-1832,54,-5304,20],[-1619,52,-5201,35],[-1619,55,-5201,35],[-2126,54,-5463,45],[-2032,47,-5527,55],[-1976,54,-5539,60],[-1940,56,-5364,20]]},{"name":"Ingredient Dummy","coords":null}]},"Rototilled Soil":{"internalName":"Rototilled Soil","type":"ingredient","requirements":{"level":58,"skills":["woodworking"]},"icon":{"format":"legacy","value":"3:1"},"identifications":{"thorns":{"min":7,"raw":7,"max":8},"manaRegen":{"min":4,"raw":4,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Squid Brain":{"internalName":"Squid Brain","type":"ingredient","requirements":{"level":58,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"spellDamage":{"min":8,"raw":8,"max":10},"rawMainAttackDamage":{"min":30,"raw":30,"max":35}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Squid Vicious","coords":[-914,24,-2855,100]},{"name":"Deep Blue Squid","coords":[[992,30,-3924,25],[743,30,-3967,25]]},{"name":"Squid","coords":[[-1063,30,-2197,20],[357,25,-2238,20],[393,25,-2179,20],[759,30,-2470,20],[-2055,30,-4264,20],[-2135,31,-4255,20],[-1961,25,-4210,20],[-1364,28,-4221,20],[-1316,26,-4194,20],[-1232,28,-4210,20],[-937,28,-4247,20],[-832,27,-4205,20],[-257,26,-4104,20],[-247,24,-2962,20],[1270,24,-4064,20],[1250,19,-4003,20],[1280,19,-3953,20],[1369,20,-3967,20],[1418,10,-4009,20],[1447,7,-4057,10],[1376,23,-3925,20],[1354,19,-3875,20],[1237,20,-4004,20]]},{"name":"Giant Squid","coords":[[-44,26,-3344,20],[185,24,-3680,20],[618,25,-3943,20],[1079,22,-3926,20],[1381,25,-3930,5],[-834,15,-2440,10],[-1177,27,-1919,20],[-2068,27,-2362,20]]}]},"Blazing Stimulants":{"internalName":"Blazing Stimulants","type":"ingredient","requirements":{"level":58,"skills":["alchemism"]},"icon":{"format":"legacy","value":"374:0"},"identifications":{"sprintRegen":{"min":16,"raw":16,"max":19},"walkSpeed":{"min":8,"raw":8,"max":9},"healthRegenRaw":{"min":-24,"raw":-24,"max":-32}},"tier":2,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Volcano Sludge","coords":[[-1024,41,-3653,12],[-1024,41,-3653,12],[-1020,43,-3695,12],[-980,48,-3625,10],[-1063,40,-3631,8],[-1063,40,-3631,8],[-900,45,-3758,12],[-873,46,-3801,15],[-873,46,-3801,15],[-831,46,-3745,15],[-840,43,-3705,15],[-808,49,-3710,15],[-802,48,-3682,20],[-778,49,-3648,15],[-811,59,-3644,20],[-861,54,-3660,15],[-1025,63,-3630,7],[-1025,63,-3630,7],[-1072,96,-3645,5]]},{"name":"Volcano Sludge","coords":null},{"name":"Galvambler","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcantern","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcini","coords":null},{"name":"Deep Volcano Sludge","coords":[[-861,15,-3832,7],[-883,15,-3819,10],[-883,15,-3819,10]]},{"name":"Deep Volcano Sludge","coords":null},{"name":"Crystallized Flare","coords":[[-827,86,-3663,60],[-861,82,-3769,60]]}]},"Crumbly Rock":{"internalName":"Crumbly Rock","type":"ingredient","requirements":{"level":58,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"13:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mountain Ram","coords":[174,62,-3871,4]},{"name":"Mountain Ram","coords":[[273,58,-3869,2],[326,54,-3931,6],[321,50,-3940,6],[79,103,-3853,8],[79,103,-3853,8],[246,99,-3901,8],[246,99,-3901,8]]},{"name":"Mountain Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]},{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger","coords":[[64,61,-3846,6],[41,66,-3861,6],[101,61,-3970,6],[101,61,-3970,6],[120,69,-3981,2],[129,62,-3918,6],[145,65,-3919,6],[137,70,-3904,6],[252,57,-3904,4],[226,58,-3921,6],[355,60,-4003,6],[357,72,-4013,6],[346,47,-4013,6],[360,39,-4022,4]]},{"name":"Scavenger Sentry","coords":[[44,66,-3884,0],[47,66,-3884,0],[124,52,-3948,0],[242,55,-3930,0],[240,55,-3928,0],[346,70,-3991,0],[245,30,-4036,0],[200,54,-4058,0],[200,54,-4061,0]]},{"name":"Bedrock Buster","coords":[[303,54,-3869,0],[351,55,-3941,0],[39,65,-3931,0],[64,58,-3939,0],[142,75,-3948,0],[155,5,-4000,0],[149,5,-4000,0],[224,60,-4119,0]]},{"name":"Altitude Walker","coords":[[353,56,-3942,0],[171,82,-3932,0],[49,94,-3924,0],[368,82,-3983,0],[355,95,-3997,0],[224,60,-4119,0]]},{"name":"Ferrous Crushbeast","coords":[[155,83,-3973,0],[155,81,-3964,0],[152,2,-4024,0]]},{"name":"Magma Rock","coords":[[-825,86,-3660,60],[-1031,75,-3664,60],[-1031,75,-3664,60]]},{"name":"Volcano Sludge","coords":[[-1024,41,-3653,12],[-1024,41,-3653,12],[-1020,43,-3695,12],[-980,48,-3625,10],[-1063,40,-3631,8],[-1063,40,-3631,8],[-900,45,-3758,12],[-873,46,-3801,15],[-873,46,-3801,15],[-831,46,-3745,15],[-840,43,-3705,15],[-808,49,-3710,15],[-802,48,-3682,20],[-778,49,-3648,15],[-811,59,-3644,20],[-861,54,-3660,15],[-1025,63,-3630,7],[-1025,63,-3630,7],[-1072,96,-3645,5]]},{"name":"Volcano Sludge","coords":null},{"name":"Galvambler","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcantern","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcini","coords":null}]},"Zhight Weird Magic Rock":{"internalName":"Zhight Weird Magic Rock","type":"ingredient","requirements":{"level":58,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":6},"sprintRegen":{"min":5,"raw":5,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Sewer Slugger":{"internalName":"Sewer Slugger","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":247,"dropRestriction":"never","requirements":{"level":57,"classRequirement":"warrior","strength":35,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.earth2"}},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":6,"raw":20,"max":26},"sprint":{"min":-16,"raw":-12,"max":-8},"knockback":{"min":8,"raw":25,"max":33},"rawMaxMana":{"min":8,"raw":25,"max":33},"mainAttackRange":{"min":6,"raw":20,"max":26},"airDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseDamage":{"min":80,"raw":80,"max":90},"baseEarthDamage":{"min":185,"raw":185,"max":215},"baseWaterDamage":{"min":150,"raw":150,"max":250}},"rarity":"rare"},"Claws of Atypical Expanse":{"internalName":"Claws of Atypical Expanse","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":270,"dropRestriction":"never","requirements":{"level":57,"classRequirement":"assassin","strength":30,"defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"263","name":"dagger.earth2"}},"identifications":{"mainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"knockback":{"min":8,"raw":27,"max":35},"mainAttackRange":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":80,"raw":80,"max":100},"baseEarthDamage":{"min":40,"raw":40,"max":50},"baseFireDamage":{"min":30,"raw":30,"max":60}},"rarity":"rare"},"Spear of Vix":{"internalName":"Spear of Vix","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":180,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"warrior","dexterity":5,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"thorns":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-10,"raw":-8,"max":-6},"airDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-10,"raw":-8,"max":-6},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":11,"raw":11,"max":28},"baseAirDamage":{"min":22,"raw":22,"max":55}},"rarity":"unique"},"Pure Stone Relik":{"internalName":"Pure Stone Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":229,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":147,"raw":147,"max":158}},"rarity":"common"},"Firesworn":{"internalName":"Firesworn","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":295,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"shaman","defence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":18,"raw":61,"max":79},"healthRegenRaw":{"min":-47,"raw":-36,"max":-25},"fireDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":61,"raw":61,"max":82},"baseFireDamage":{"min":61,"raw":61,"max":82}},"rarity":"unique"},"Skien's Fatigues":{"internalName":"Skien's Fatigues","type":"armour","armourType":"chestplate","armourColor":"rgb(131,132,98)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":57,"strength":35,"defence":35},"powderSlots":2,"identifications":{"rawStrength":8,"rawDefence":8,"mainAttackDamage":{"min":5,"raw":17,"max":22},"rawMainAttackDamage":{"min":35,"raw":115,"max":150},"spellDamage":{"min":-26,"raw":-20,"max":-14},"rawSpellDamage":{"min":-182,"raw":-140,"max":-98}},"base":{"baseHealth":1000},"rarity":"set"},"Mask of Enlightenment":{"internalName":"Mask of Enlightement","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":57,"quest":"The Passage","intelligence":30},"powderSlots":2,"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"skin","value":"4b748257eee768b6d03b4eda53cfb52c5affbf16b7d8d93d4d61ceb4c6e2114"},"identifications":{"rawIntelligence":5,"spellDamage":10,"manaRegen":12,"lootBonus":10,"waterDamage":20},"base":{"baseHealth":750,"baseWaterDefence":60},"rarity":"legendary"},"Pure Stone Wand":{"internalName":"Pure Stone Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":115,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":71,"raw":71,"max":82}},"rarity":"common"},"High-Quality Chain Helmet":{"internalName":"High-Quality Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57},"powderSlots":2,"base":{"baseHealth":660},"rarity":"common"},"Pure Stone Dagger":{"internalName":"Pure Stone Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":187,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":84,"raw":84,"max":98}},"rarity":"common"},"Electrolytic":{"internalName":"Electrolytic","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":335,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"archer","dexterity":33,"intelligence":33},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":21,"raw":70,"max":91},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":25,"raw":25,"max":47},"baseThunderDamage":{"min":3,"raw":3,"max":69},"baseWaterDamage":{"min":14,"raw":14,"max":58}},"rarity":"rare"},"Mask of Rage":{"internalName":"Mask of Rage","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":57,"quest":"The Passage","strength":30},"powderSlots":2,"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"skin","value":"6acc872a0dd7227489fdedbebc2ea62158eef7e5dd96cc87699977ab920fa"},"identifications":{"rawStrength":5,"mainAttackDamage":25,"lootBonus":10,"earthDamage":20},"base":{"baseHealth":1050,"baseEarthDefence":40},"rarity":"legendary"},"Pure Stone Bow":{"internalName":"Pure Stone Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":226,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":249,"raw":249,"max":296}},"rarity":"common"},"Pure Diamond Chestplate":{"internalName":"Pure Diamond Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"diamond","dropRestriction":"never","requirements":{"level":57},"powderSlots":2,"base":{"baseHealth":700},"rarity":"common"},"Reaction":{"internalName":"Reaction","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"dexterity":30},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":15,"raw":50,"max":65},"thorns":{"min":6,"raw":20,"max":26},"exploding":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":770,"baseEarthDefence":-50,"baseThunderDefence":45},"rarity":"unique"},"Chameleon":{"internalName":"Chameleon","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":2,"identifications":{"rawStrength":-5,"rawDexterity":-5,"rawIntelligence":-5,"rawDefence":-5,"rawAgility":-5,"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":3,"raw":9,"max":12},"thorns":{"min":3,"raw":9,"max":12},"reflection":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":750,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"unique"},"Locrian":{"internalName":"Locrian","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":291,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"assassin","dexterity":15,"intelligence":20,"agility":15},"powderSlots":2,"lore":"Skien's trust in others was shattered permanently by the wielder of this dagger, who fell to the corruption and attacked his legion during a great corrupted siege.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawDexterity":7,"rawIntelligence":9,"rawAgility":7,"rawSpellDamage":{"min":38,"raw":125,"max":163},"lifeSteal":{"min":35,"raw":115,"max":150},"manaSteal":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-52,"raw":-40,"max":-28},"fireDefence":{"min":-52,"raw":-40,"max":-28}},"base":{"baseThunderDamage":{"min":17,"raw":17,"max":55},"baseWaterDamage":{"min":28,"raw":28,"max":33},"baseAirDamage":{"min":22,"raw":22,"max":33}},"rarity":"legendary"},"Mask of Hate":{"internalName":"Mask of Hate","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":57,"quest":"The Passage","dexterity":30},"powderSlots":2,"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"skin","value":"5c32ded5d7657df31114dfdd319219337e576465b7797dc06b5632cebd4c37"},"identifications":{"rawDexterity":5,"rawMainAttackDamage":110,"lootBonus":10,"thunderDamage":20},"base":{"baseHealth":1100,"baseThunderDefence":20},"rarity":"legendary"},"Crescendo":{"internalName":"Crescendo","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"intelligence":30,"defence":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegen":{"min":7,"raw":22,"max":29},"manaRegen":{"min":2,"raw":6,"max":8},"earthDefence":{"min":5,"raw":18,"max":23},"thunderDefence":{"min":5,"raw":18,"max":23},"airDefence":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":900,"baseWaterDefence":45,"baseFireDefence":45},"rarity":"rare"},"Rockworm":{"internalName":"Rockworm","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":57},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":1,"raw":3,"max":4},"poison":{"min":41,"raw":135,"max":176},"earthDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Pure Stone Spear":{"internalName":"Pure Stone Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":151,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":162,"raw":162,"max":201}},"rarity":"common"},"Cage of Bones":{"internalName":"Cage of Bones","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"dexterity":35,"defence":25},"lore":"The ancient bones of the demon Garaheth are stronger than steel. They clamp down when worn to constrict the bearer, inciting a slow madness.","identifications":{"rawDefence":7,"mainAttackDamage":{"min":6,"raw":20,"max":26},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"healthRegen":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":800,"baseThunderDefence":60,"baseWaterDefence":-100,"baseFireDefence":80},"rarity":"legendary"},"Mask of Fear":{"internalName":"Mask of Fear","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":57,"quest":"The Passage","agility":30},"powderSlots":2,"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"skin","value":"babeeab51c36475d06f683c91ea8b3e382a9e71e847129cecde8711d97bda6"},"identifications":{"rawAgility":5,"walkSpeed":15,"lootBonus":10,"airDamage":20},"base":{"baseHealth":1000,"baseAirDefence":80},"rarity":"legendary"},"Mercury Bomb":{"internalName":"Mercury Bomb","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":68,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"shaman","dexterity":35,"defence":35},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":12,"healthRegen":{"min":-130,"raw":-100,"max":-70},"poison":{"min":720,"raw":2400,"max":3120},"lifeSteal":{"min":9,"raw":30,"max":39},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thorns":{"min":6,"raw":20,"max":26},"exploding":{"min":12,"raw":39,"max":51},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseFireDamage":{"min":42,"raw":42,"max":48}},"rarity":"legendary"},"Heat Death":{"internalName":"Heat Death","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":229,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"mage","intelligence":55,"agility":35},"majorIds":{"Flashfreeze":"+Flashfreeze: Ice Snake is instant and freezes for +1s."},"lore":"Everything slowly loses heat, and will eventually stop moving. Are you prepared?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"340","name":"wand.water3"}},"identifications":{"rawSpellDamage":{"min":33,"raw":110,"max":143},"rawHealth":{"min":-650,"raw":-500,"max":-350},"lifeSteal":{"min":33,"raw":110,"max":143},"manaRegen":{"min":2,"raw":6,"max":8},"4thSpellCost":{"min":-8,"raw":-28,"max":-36}},"base":{"baseWaterDamage":{"min":36,"raw":36,"max":38},"baseAirDamage":{"min":26,"raw":26,"max":48}},"rarity":"fabled"},"Kitten Claw":{"internalName":"Kitten Claw","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":232,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":13,"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"spellDamage":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":13,"raw":13,"max":42},"baseThunderDamage":{"min":20,"raw":20,"max":75}},"rarity":"unique"},"Mask of Courage":{"internalName":"Mask of Courage","type":"armour","armourType":"helmet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":57,"quest":"The Passage","defence":30},"powderSlots":2,"dropMeta":{"name":"Iboju Village","type":"merchant","coordinates":[-688,64,-749]},"icon":{"format":"skin","value":"33aa7ec824d85eb9fc78efc96689b8a9fe828838bb16fee52ff9caaae83cc3a"},"identifications":{"rawDefence":5,"healthRegen":20,"rawHealth":500,"lootBonus":10,"fireDamage":20},"base":{"baseHealth":1400,"baseFireDefence":100},"rarity":"legendary"},"Dragon Skin":{"internalName":"Dragon Skin","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"defence":25},"powderSlots":2,"identifications":{"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":800,"baseWaterDefence":-20,"baseFireDefence":30},"rarity":"unique"},"Frosted Leggings":{"internalName":"Frosted Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"intelligence":30},"powderSlots":2,"identifications":{"rawIntelligence":7,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":1000,"baseWaterDefence":60,"baseFireDefence":-60},"rarity":"rare"},"Windforce":{"internalName":"Windforce","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":267,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":7,"walkSpeed":{"min":4,"raw":14,"max":18},"earthDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":33,"raw":33,"max":51},"baseAirDamage":{"min":31,"raw":31,"max":57}},"rarity":"unique"},"Absorption":{"internalName":"Absorption","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":206,"dropRestriction":"normal","requirements":{"level":57,"classRequirement":"warrior","dexterity":25,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseThunderDamage":{"min":40,"raw":40,"max":70},"baseWaterDamage":{"min":30,"raw":30,"max":60}},"rarity":"unique"},"Dolomite":{"internalName":"Dolomite","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":57,"strength":35},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":5,"raw":15,"max":20},"lootBonus":{"min":2,"raw":7,"max":9},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":830,"baseEarthDefence":50,"baseAirDefence":-50},"rarity":"unique"},"Sentient Slimeball":{"internalName":"Sentient Slimeball","type":"ingredient","requirements":{"level":57,"skills":["scribing"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"earthDamage":{"min":6,"raw":6,"max":7},"spellDamage":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]}]},"Tacky Goop":{"internalName":"Tacky Goop","type":"ingredient","requirements":{"level":57,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"stealing":{"min":6,"raw":6,"max":7},"manaSteal":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-71000,"strengthRequirement":0,"dexterityRequirement":8,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Zhight Coral Piece":{"internalName":"Zhight Coral Piece","type":"ingredient","requirements":{"level":57,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"waterDefence":{"min":4,"raw":4,"max":6},"fireDefence":{"min":1,"raw":1,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Zhight Shiny Stone":{"internalName":"Zhight Shiny Stone","type":"ingredient","requirements":{"level":57,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"xpBonus":{"min":2,"raw":2,"max":4},"lootBonus":{"min":2,"raw":2,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Gloomy Orb":{"internalName":"Gloomy Orb","type":"ingredient","requirements":{"level":57,"skills":["jeweling"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"thunderDamage":{"min":3,"raw":3,"max":5},"lifeSteal":{"min":-12,"raw":-12,"max":-8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Malevolent Mist","coords":[-1642,56,-5270,145]}]},"Bottled Decay":{"internalName":"Bottled Decay","type":"ingredient","requirements":{"level":57,"skills":["alchemism"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"earthDamage":{"min":12,"raw":12,"max":18},"thunderDamage":{"min":12,"raw":12,"max":18},"healthRegenRaw":{"min":-40,"raw":-40,"max":-30}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Malevolent Mist","coords":[-1642,56,-5270,145]}]},"Isostatic Rebound":{"internalName":"Isostatic Rebound","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":56,"defence":45},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"rawDefence":8,"rawHealth":{"min":105,"raw":350,"max":455},"manaRegen":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1400,"baseFireDefence":55},"rarity":"legendary"},"Pure Oak Spear":{"internalName":"Pure Oak Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":147,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":91,"raw":91,"max":105}},"rarity":"common"},"Drizzling Doublet":{"internalName":"Drizzling Doublet","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"intelligence":40},"powderSlots":3,"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":4,"raw":12,"max":16},"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":2,"raw":7,"max":9},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":375,"baseThunderDefence":-30},"rarity":"unique"},"Pure Oak Relik":{"internalName":"Pure Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":102,"raw":102,"max":108}},"rarity":"common"},"Piranha":{"internalName":"Piranha","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":56,"intelligence":35},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"identifications":{"rawDexterity":5,"rawAgility":5,"manaSteal":8,"waterDamage":25},"base":{"baseHealth":470,"baseWaterDefence":20},"rarity":"rare"},"Pure Oak Wand":{"internalName":"Pure Oak Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":108,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":45,"raw":45,"max":60}},"rarity":"common"},"Pure Oak Dagger":{"internalName":"Pure Oak Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":175,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":62,"raw":62,"max":78}},"rarity":"common"},"The Mark":{"internalName":"The Mark","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"dexterity":35,"defence":35},"identifications":{"rawIntelligence":-5,"spellDamage":{"min":6,"raw":20,"max":26},"healingEfficiency":{"min":-8,"raw":-6,"max":-4},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":800,"baseWaterDefence":-30},"rarity":"unique"},"Deluge":{"internalName":"Deluge","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"strength":45,"dexterity":15},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"earthDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":700},"rarity":"unique"},"Plasma Ray":{"internalName":"Plasma Ray","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":332,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"archer","dexterity":25,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDexterity":7,"rawDefence":7,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":5,"raw":18,"max":23},"manaSteal":{"min":1,"raw":4,"max":5},"earthDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":-16,"raw":-12,"max":-8},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseThunderDamage":{"min":99,"raw":99,"max":143},"baseFireDamage":{"min":88,"raw":88,"max":112}},"rarity":"rare"},"Hailstone":{"internalName":"Hailstone","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"intelligence":30,"agility":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":800,"baseThunderDefence":-80,"baseWaterDefence":40,"baseAirDefence":40},"rarity":"rare"},"Mist":{"internalName":"Mist","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"intelligence":20,"agility":30},"identifications":{"rawAgility":7,"damage":{"min":-13,"raw":-10,"max":-7},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":6,"max":8},"rawMaxMana":{"min":11,"raw":35,"max":46},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":1000,"baseWaterDefence":50,"baseFireDefence":-100,"baseAirDefence":50},"rarity":"unique"},"Fierte":{"internalName":"Fierte","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":288,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"warrior","defence":35},"powderSlots":2,"lore":"Only the most honourable warriors of Gavel's army are presented the fearsome, fiery spear forged from the rarest metals of the Molten Heights.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":8,"rawHealth":{"min":210,"raw":700,"max":910},"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"fireDamage":{"min":4,"raw":13,"max":17},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseFireDamage":{"min":55,"raw":55,"max":110}},"rarity":"legendary"},"Skien's Madness":{"internalName":"Skien's Madness","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":42,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"warrior","dexterity":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":7,"rawDexterity":13,"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"raw2ndSpellCost":{"min":13,"raw":10,"max":7},"rawAttackSpeed":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":10,"raw":10,"max":155}},"rarity":"rare"},"Pure Oak Bow":{"internalName":"Pure Oak Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":220,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":135,"raw":135,"max":159}},"rarity":"common"},"Squid Dagger":{"internalName":"Squid Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":258,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"assassin","intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":7,"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13},"stealing":1,"fireDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-39,"raw":-30,"max":-21},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseWaterDamage":{"min":40,"raw":40,"max":60}},"rarity":"rare"},"Ice Band":{"internalName":"Ice Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":56,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"reflection":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":-4,"raw":-3,"max":-2},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseWaterDefence":25,"baseFireDefence":-20},"rarity":"unique"},"Naga Viper":{"internalName":"Naga Viper","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"strength":10,"agility":10},"powderSlots":2,"identifications":{"rawAgility":9,"rawHealth":{"min":-162,"raw":-125,"max":-87},"poison":{"min":83,"raw":275,"max":358},"walkSpeed":{"min":3,"raw":9,"max":12},"stealing":{"min":1,"raw":2,"max":3},"earthDamage":{"min":4,"raw":12,"max":16},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":940},"rarity":"rare"},"Refined Chain Mail":{"internalName":"Refined Chain Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56},"powderSlots":2,"base":{"baseHealth":625},"rarity":"common"},"Lodestone":{"internalName":"Lodestone","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":56,"intelligence":25},"lore":"The magical oddity known as lodestone has been studied for years as an active counterpart to quartz's passive magical properties. Research continues, but it is valuable when creating magical items.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"spellDamage":{"min":3,"raw":11,"max":14},"rawSpellDamage":{"min":9,"raw":30,"max":39},"manaRegen":{"min":-8,"raw":-6,"max":-4},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":-15,"baseWaterDefence":10},"rarity":"legendary"},"Magmawalkers":{"internalName":"Magmawalkers","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"strength":15,"defence":15},"powderSlots":2,"identifications":{"rawStrength":4,"rawDefence":7,"healthRegen":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":2,"raw":8,"max":10},"airDamage":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":8,"raw":25,"max":33},"fireDefence":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":775,"baseEarthDefence":40,"baseFireDefence":15},"rarity":"unique"},"Dravarden":{"internalName":"Dravarden","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56,"dexterity":15,"intelligence":15,"defence":15},"powderSlots":3,"identifications":{"rawDexterity":7,"rawIntelligence":7,"rawDefence":7,"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":-52,"raw":-40,"max":-28},"earthDefence":{"min":-32,"raw":-25,"max":-17},"airDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":950,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30},"rarity":"rare"},"Mach":{"internalName":"Mach","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":167,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"assassin","defence":10,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":8,"healthRegenRaw":{"min":9,"raw":30,"max":39},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"exploding":{"min":4,"raw":12,"max":16},"fireDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":18,"raw":18,"max":46},"baseAirDamage":{"min":12,"raw":12,"max":32}},"rarity":"unique"},"Burning Torch":{"internalName":"Burning Torch","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":137,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"mage","defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-16,"raw":-12,"max":-8},"rawHealth":{"min":-117,"raw":-90,"max":-63},"exploding":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":10,"raw":10,"max":30},"baseFireDamage":{"min":110,"raw":110,"max":180}},"rarity":"unique"},"Shiny Coin":{"internalName":"Shiny Coin","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":56},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":120},"rarity":"unique"},"The Smoking Barrel":{"internalName":"The Smoking Barrel","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":270,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"archer","defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":250,"raw":250,"max":400}},"rarity":"unique"},"Call of the Void":{"internalName":"Call of the Void","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":56},"powderSlots":2,"lore":"Originating from the unspeakable dark land, looking into the helmet will show nothing but darkness. Wearing it is said to reverse your morality, as if it were draining your will to live into the void.","identifications":{"rawAgility":-8,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":-97,"raw":-75,"max":-52},"thorns":{"min":20,"raw":65,"max":85},"reflection":{"min":20,"raw":65,"max":85}},"base":{"baseHealth":700},"rarity":"legendary"},"Mirror":{"internalName":"Mirror","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":56},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":175},"rarity":"rare"},"Couteau":{"internalName":"Couteau","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":292,"dropRestriction":"normal","requirements":{"level":56,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawStrength":8,"rawDexterity":8,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":66,"raw":66,"max":70}},"rarity":"unique"},"Broken Ram Horn":{"internalName":"Broken Ram Horn","type":"ingredient","requirements":{"level":56,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"154:0"},"identifications":{"sprint":{"min":4,"raw":4,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":8},"droppedBy":[{"name":"Mountain Ram","coords":[174,62,-3871,4]},{"name":"Mountain Ram","coords":[[273,58,-3869,2],[326,54,-3931,6],[321,50,-3940,6],[79,103,-3853,8],[79,103,-3853,8],[246,99,-3901,8],[246,99,-3901,8]]},{"name":"Mountain Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]},{"name":"Sunstone Ram","coords":[[365,72,-3976,5],[365,72,-3976,5],[156,128,-3945,8],[164,131,-3972,6],[320,97,-3930,8],[366,81,-4050,8],[366,81,-4050,8],[237,105,-4014,6],[245,105,-4021,8]]},{"name":"Ramhead Worshipper","coords":[192,4,-3950,5]},{"name":"Ramhead Worshipper","coords":[239,5,-3957,10]},{"name":"Ramhead Charger","coords":[192,4,-3950,5]},{"name":"Ramhead Charger","coords":[239,5,-3957,10]},{"name":"Aries Priest","coords":[165,13,-3959,50]}]},"Metal Scraps":{"internalName":"Metal Scraps","type":"ingredient","requirements":{"level":56,"skills":["armouring"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"walkSpeed":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":5000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Swamp Ogre","coords":[[-1642,56,-5236,186],[-1851,50,-5158,16],[-1960,44,-5485,10]]},{"name":"Ingredient Dummy","coords":null}]},"Mangrove Root":{"internalName":"Mangrove Root","type":"ingredient","requirements":{"level":56,"skills":["cooking"]},"icon":{"format":"legacy","value":"6:5"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"rawStrength":{"min":5,"raw":5,"max":6},"mainAttackDamage":{"min":5,"raw":5,"max":9}},"tier":3,"consumableOnlyIDs":{"duration":-620,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]},{"name":"Festering Fleshmass'","coords":[[-1800,54,-5274,100],[-1650,54,-5274,50],[-1650,54,-5374,30]]}]},"Rotting Bandage":{"internalName":"Rotting Bandage","type":"ingredient","requirements":{"level":56,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"healingEfficiency":{"min":2,"raw":2,"max":3},"healthRegen":{"min":-15,"raw":-15,"max":-12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-73000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rotten Zombie","coords":[-554,59,-595,10]}]},"The Grootslang's Heart":{"internalName":"The Grootslang's Heart","type":"ingredient","requirements":{"level":56,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"earthDefence":{"min":16,"raw":16,"max":24},"rawHealth":{"min":320,"raw":320,"max":350},"walkSpeed":{"min":-8,"raw":-8,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Herbstzeitlose":{"internalName":"Herbstzeitlose","type":"ingredient","requirements":{"level":56,"skills":["alchemism"]},"icon":{"format":"legacy","value":"38:2"},"identifications":{"poison":{"min":270,"raw":270,"max":320},"waterDamage":{"min":9,"raw":9,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wannabe Assassin","coords":[-1902,47,-5538,10]}]},"Big Carapace":{"internalName":"Big Carapace","type":"ingredient","requirements":{"level":56,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"303:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":4},"earthDamage":{"min":6,"raw":6,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-74000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Severed Leg":{"internalName":"Severed Leg","type":"ingredient","requirements":{"level":56,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"rawMainAttackDamage":{"min":12,"raw":12,"max":16}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wannabe Assassin","coords":[-1902,47,-5538,10]}]},"Molten Greaves":{"internalName":"Molten Greaves","type":"armour","armourType":"leggings","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":56,"defence":30},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"identifications":{"rawStrength":5,"healthRegen":20,"rawEarthMainAttackDamage":135,"fireDamage":15},"base":{"baseHealth":1100,"baseEarthDefence":50,"baseThunderDefence":50,"baseFireDefence":80,"baseAirDefence":50},"rarity":"rare"},"Barbed":{"internalName":"Barbed","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":212,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":56,"classRequirement":"warrior","dexterity":50},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDefence":5,"mainAttackDamage":15,"thorns":40,"reflection":40,"thunderDamage":15,"thunderDefence":20},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseThunderDamage":{"min":0,"raw":0,"max":80}},"rarity":"rare"},"Joyous":{"internalName":"Joyous","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":266,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"walkSpeed":10,"xpBonus":30,"lootBonus":10},"base":{"baseDamage":{"min":155,"raw":155,"max":200}},"rarity":"unique"},"Water Lily":{"internalName":"Water Lily","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":154,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"343","name":"wand.water2"}},"identifications":{"rawIntelligence":8,"poison":{"min":173,"raw":577,"max":750},"rawWaterSpellDamage":{"min":23,"raw":77,"max":100},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"rawMaxMana":{"min":8,"raw":25,"max":33},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":15,"raw":15,"max":35},"baseWaterDamage":{"min":40,"raw":40,"max":60}},"rarity":"rare"},"Coal Cadaver":{"internalName":"Coal Cadaver","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":299,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"shaman","dexterity":30,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.basicWood"}},"identifications":{"rawHealth":{"min":104,"raw":346,"max":450},"poison":{"min":300,"raw":1000,"max":1300},"lifeSteal":{"min":25,"raw":83,"max":108},"rawThunderSpellDamage":{"min":23,"raw":76,"max":99},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseThunderDamage":{"min":5,"raw":5,"max":95},"baseFireDamage":{"min":35,"raw":35,"max":65}},"rarity":"rare"},"Attrition":{"internalName":"Attrition","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":450,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"archer","intelligence":40,"defence":40},"majorIds":{"Methodical":"+Methodical: Initiator's reset time is reduced by 75%. Arrow Bomb deals less area damage, but more direct hit damage."},"powderSlots":3,"lore":"Outrun. Outsmart. Outlast.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":25,"spellDamage":{"min":-38,"raw":-29,"max":-20},"healthRegenRaw":{"min":16,"raw":54,"max":70},"rawHealth":{"min":150,"raw":500,"max":650},"manaRegen":{"min":-29,"raw":-22,"max":-15},"rawMaxMana":{"min":46,"raw":154,"max":200}},"base":{"baseDamage":{"min":65,"raw":65,"max":90},"baseFireDamage":{"min":210,"raw":210,"max":235}},"rarity":"fabled"},"Whirlwind":{"internalName":"Whirlwind","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":278,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"archer","agility":40},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"airSpellDamage":15,"reflection":40,"walkSpeed":10,"waterDefence":20,"airDefence":20},"base":{"baseDamage":{"min":55,"raw":55,"max":80},"baseAirDamage":{"min":50,"raw":50,"max":85}},"rarity":"rare"},"Jungle Spirit":{"internalName":"Jungle Spirit","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":138,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"mage","agility":40},"powderSlots":3,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":5,"rawAirMainAttackDamage":65,"walkSpeed":15,"jumpHeight":1,"mainAttackRange":25,"knockback":25},"base":{"baseAirDamage":{"min":30,"raw":30,"max":80}},"rarity":"rare"},"Granite Plate":{"internalName":"Granite Plate","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"strength":40},"powderSlots":1,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"identifications":{"mainAttackDamage":35,"spellDamage":-30,"earthMainAttackDamage":15,"walkSpeed":-15,"knockback":60,"mainAttackRange":-20},"base":{"baseHealth":800,"baseEarthDefence":40},"rarity":"rare"},"Nativitate":{"internalName":"Nativitate","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":262,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"xpBonus":10,"lootBonus":33,"stealing":5},"base":{"baseDamage":{"min":90,"raw":90,"max":120}},"rarity":"unique"},"Repose":{"internalName":"Repose","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":55,"strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"elementalDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":17,"raw":55,"max":72},"poison":{"min":195,"raw":650,"max":845},"lifeSteal":{"min":21,"raw":70,"max":91},"manaRegen":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":1100,"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":30},"rarity":"legendary"},"Olux's Prized Relik":{"internalName":"Olux's Prized Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":365,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"shaman","quest":"The Shadow of the Beast"},"powderSlots":2,"lore":"This expertly crafted relik was notched by a cryptid-researching fanatic. Its feathers and baubles chime with a soothing melody.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"poison":295,"manaRegen":6,"thorns":10,"xpBonus":15,"earthDamage":10,"waterDefence":10},"base":{"baseDamage":{"min":60,"raw":60,"max":64},"baseEarthDamage":{"min":70,"raw":70,"max":72},"baseWaterDamage":{"min":40,"raw":40,"max":48}},"rarity":"legendary"},"Thunder Relic Wand":{"internalName":"Thunder Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":162,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","dexterity":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":55},"baseThunderDamage":{"min":10,"raw":10,"max":55}},"rarity":"rare"},"Matryoshka Shell":{"internalName":"Matryoshka Shell","type":"armour","armourType":"chestplate","armourColor":"rgb(204,204,204)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":55,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":18,"lore":"The armor worn by the enigmatic Matryoshka Idol. It appears to have a nearly uncountably high number of inlets and sockets set inside.","identifications":{"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":6,"raw":20,"max":26},"lootBonus":{"min":6,"raw":20,"max":26},"elementalDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":550,"baseEarthDefence":50,"baseThunderDefence":50,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":50},"rarity":"legendary"},"Air Relic Wand":{"internalName":"Air Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":138,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","agility":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":7,"rawSpellDamage":{"min":18,"raw":60,"max":78},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":20,"raw":20,"max":35},"baseAirDamage":{"min":20,"raw":20,"max":35}},"rarity":"rare"},"Despair":{"internalName":"Despair","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":206,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"assassin","dexterity":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"spellDamage":{"min":4,"raw":13,"max":17},"healthRegen":{"min":-17,"raw":-13,"max":-9},"lifeSteal":{"min":23,"raw":75,"max":98},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-17,"raw":-13,"max":-9}},"base":{"baseDamage":{"min":0,"raw":0,"max":80},"baseThunderDamage":{"min":0,"raw":0,"max":60},"baseFireDamage":{"min":0,"raw":0,"max":60}},"rarity":"unique"},"Zhight Souvenir Coin":{"internalName":"Zhight Souvenir Coin","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island"},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"xpBonus":5,"lootBonus":10,"stealing":1},"base":{"baseHealth":100},"rarity":"unique"},"Zhight Powwow Bangle":{"internalName":"Zhight Powwow Bangle","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island","strength":6,"dexterity":6,"intelligence":6,"defence":6,"agility":6},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":9,"lootBonus":9,"stealing":5,"elementalDamage":7},"base":{"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"unique"},"Cuthroat":{"internalName":"Cuthroat","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":206,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"assassin","defence":40},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":5,"rawHealth":980,"lifeSteal":75,"thorns":15},"base":{"baseDamage":{"min":40,"raw":40,"max":65},"baseFireDamage":{"min":65,"raw":65,"max":105}},"rarity":"rare"},"Olux's Prized Spear":{"internalName":"Olux's Prized Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":248,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"warrior","quest":"The Shadow of the Beast"},"powderSlots":2,"lore":"This expertly crafted spear was forged by a cryptid-researching fanatic. It shines brilliantly in even the weakest sunlight.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"poison":295,"manaRegen":6,"thorns":10,"xpBonus":15,"earthDamage":10,"waterDefence":10},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseEarthDamage":{"min":65,"raw":65,"max":90},"baseWaterDamage":{"min":25,"raw":25,"max":40}},"rarity":"legendary"},"Yuletide":{"internalName":"Yuletide","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":131,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"mage","defence":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":6,"mainAttackDamage":15,"rawHealth":150,"waterDamage":-5,"fireDamage":15,"waterDefence":-10},"base":{"baseDamage":{"min":40,"raw":40,"max":75},"baseEarthDamage":{"min":20,"raw":20,"max":40}},"rarity":"unique"},"Prancer":{"internalName":"Prancer","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":55,"strength":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":2,"rawDefence":2,"earthDamage":7},"base":{"baseHealth":130,"baseEarthDefence":15,"baseThunderDefence":5,"baseFireDefence":10},"rarity":"rare"},"Water Relic Wand":{"internalName":"Water Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":134,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","intelligence":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseWaterDamage":{"min":30,"raw":30,"max":35}},"rarity":"rare"},"Fire Relic Wand":{"internalName":"Fire Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":144,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","defence":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":15,"raw":50,"max":65},"rawHealth":{"min":177,"raw":590,"max":767},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseFireDamage":{"min":30,"raw":30,"max":40}},"rarity":"rare"},"Green Ornament":{"internalName":"Green Ornament","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"xpBonus":6,"earthDamage":6},"base":{"baseEarthDefence":25},"rarity":"set"},"Infinity":{"internalName":"Infinity","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":335,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"archer","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"majorIds":{"Evershot":"+Evershot: Arrow Hurricane becomes a consistent, straight stream of arrows with a slower fire rate, dealing greater knockback and triple damage per arrow."},"powderSlots":2,"lore":"If you reach for ammunition from your quiver, as long as you have a single arrow, you will find you never run out.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"raw1stSpellCost":{"min":-2,"raw":-6,"max":-8},"raw2ndSpellCost":{"min":-1,"raw":-2,"max":-3},"raw3rdSpellCost":{"min":-1,"raw":-2,"max":-3},"raw4thSpellCost":{"min":-1,"raw":-2,"max":-3},"elementalDefence":{"min":6,"raw":19,"max":25}},"base":{"baseDamage":{"min":10,"raw":10,"max":16},"baseEarthDamage":{"min":10,"raw":10,"max":16},"baseThunderDamage":{"min":10,"raw":10,"max":16},"baseWaterDamage":{"min":10,"raw":10,"max":16},"baseFireDamage":{"min":10,"raw":10,"max":16},"baseAirDamage":{"min":10,"raw":10,"max":16}},"rarity":"legendary"},"Olux's Prized Dagger":{"internalName":"Olux's Prized Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":312,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"assassin","quest":"The Shadow of the Beast"},"powderSlots":2,"lore":"This expertly crafted dagger was smithed by a cryptid-researching fanatic. It can chop through even the thickest of the swamp's clay with ease.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"poison":295,"manaRegen":6,"thorns":10,"xpBonus":15,"earthDamage":10,"waterDefence":10},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseEarthDamage":{"min":55,"raw":55,"max":60},"baseWaterDamage":{"min":25,"raw":25,"max":40}},"rarity":"legendary"},"Black Skull":{"internalName":"Black Skull","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"dexterity":65},"identifications":{"rawDexterity":5,"manaSteal":-12,"rawAttackSpeed":1,"sprintRegen":-20,"thunderDamage":8,"thunderDefence":12},"base":{"baseHealth":850,"baseAirDefence":-80},"rarity":"rare"},"Candy Cane":{"internalName":"Candy Cane","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":170,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"warrior","defence":15,"agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawAgility":6,"mainAttackDamage":-5,"healthRegen":25,"healthRegenRaw":15,"lifeSteal":90,"walkSpeed":12,"waterDefence":-8},"base":{"baseDamage":{"min":18,"raw":18,"max":26},"baseFireDamage":{"min":13,"raw":13,"max":20},"baseAirDamage":{"min":11,"raw":11,"max":22}},"rarity":"unique"},"Molten Fleshmass":{"internalName":"Molten Fleshmass","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":55,"strength":15,"dexterity":15,"defence":30},"majorIds":{"Temblor":"+Temblor: Bash gains +1 Area of Effect and is 25% faster."},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawIntelligence":-15,"rawFireDamage":{"min":30,"raw":100,"max":130},"healthRegenRaw":{"min":-104,"raw":-80,"max":-56},"raw1stSpellCost":{"min":-2,"raw":-6,"max":-8},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":-300,"baseWaterDefence":-45,"baseFireDefence":30},"rarity":"fabled"},"Never-Ending Nightmare":{"internalName":"Never-Ending Nightmare","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55},"majorIds":{"Fright or Flight":"+Fright or Flight: Plays spooky tunes."},"identifications":{"lifeSteal":75,"walkSpeed":35,"sprint":35,"xpBonus":15,"lootBonus":15},"base":{"baseHealth":850},"rarity":"rare"},"Jera":{"internalName":"Jera","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55},"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":12,"raw":40,"max":52}},"base":{"baseHealth":500,"baseEarthDefence":-50,"baseThunderDefence":-50,"baseWaterDefence":-50,"baseFireDefence":-50,"baseAirDefence":-50},"rarity":"rare"},"Zhight Shiny Ring":{"internalName":"Zhight Shiny Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island","dexterity":30},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"xpBonus":6,"thunderDamage":9},"base":{"baseHealth":-65},"rarity":"rare"},"Frankincense":{"internalName":"Frankincense","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"spellDamage":-5,"healthRegenRaw":25},"base":{"baseHealth":200},"rarity":"rare"},"Illuminite":{"internalName":"Illuminite","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"dexterity":15,"intelligence":20},"powderSlots":1,"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":2,"raw":5,"max":7},"xpBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":725,"baseThunderDefence":60},"rarity":"rare"},"Czytash's Compass":{"internalName":"Czytash's Compass","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":20},"rarity":"rare"},"Nitre":{"internalName":"Nitre","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"dexterity":15,"defence":30},"powderSlots":2,"identifications":{"rawDefence":5,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":3,"raw":11,"max":14},"healthRegen":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":14,"raw":45,"max":59},"waterDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":660,"baseWaterDefence":-30,"baseFireDefence":-20},"rarity":"unique"},"Olux's Prized Wand":{"internalName":"Olux's Prized Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":185,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"mage","quest":"The Shadow of the Beast"},"powderSlots":2,"lore":"This expertly crafted wand was shaped by a cryptid-researching fanatic. It shimmers with the purest water from the swamp.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"poison":295,"manaRegen":6,"thorns":10,"xpBonus":15,"earthDamage":10,"waterDefence":10},"base":{"baseDamage":{"min":15,"raw":15,"max":40},"baseEarthDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":15,"raw":15,"max":30}},"rarity":"legendary"},"Flawless Light Jungle Wand":{"internalName":"Flawless Light Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":101,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":36,"raw":36,"max":45}},"rarity":"common"},"Blight":{"internalName":"Blight","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":45,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"poison":{"min":300,"raw":1000,"max":1300},"thorns":{"min":5,"raw":15,"max":20},"earthDefence":{"min":10,"raw":33,"max":43}},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseEarthDamage":{"min":10,"raw":10,"max":20}},"rarity":"rare"},"Doomsday":{"internalName":"Doomsday","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":154,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"mage","strength":40,"dexterity":15},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawDexterity":8,"mainAttackDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"healingEfficiency":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":20,"raw":20,"max":60},"baseThunderDamage":{"min":0,"raw":0,"max":70}},"rarity":"rare"},"Tidebreaker":{"internalName":"Tidebreaker","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":319,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"shaman","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":5,"raw":16,"max":21},"exploding":{"min":3,"raw":10,"max":13},"waterDamage":{"min":4,"raw":14,"max":18},"thunderDefence":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":80,"raw":80,"max":120},"baseEarthDamage":{"min":110,"raw":110,"max":115}},"rarity":"rare"},"Flawless Light Jungle Relik":{"internalName":"Flawless Light Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":202,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":80,"raw":80,"max":82}},"rarity":"common"},"Flawless Light Jungle Bow":{"internalName":"Flawless Light Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":208,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":112}},"rarity":"common"},"Fingertrap":{"internalName":"Fingertrap","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"157","name":"ring.multi2"}},"identifications":{"rawDexterity":-1,"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"healthRegenRaw":{"min":-6,"raw":-5,"max":-3}},"rarity":"unique"},"Plague Mask":{"internalName":"Plague Mask","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","requirements":{"level":55},"powderSlots":4,"dropMeta":{"name":"Plague Laboratory","type":"altar","coordinates":[-1833,46,-5259]},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegen":{"min":6,"raw":20,"max":26},"poison":{"min":120,"raw":400,"max":520},"lifeSteal":{"min":29,"raw":95,"max":124},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":925,"baseEarthDefence":70,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":70},"rarity":"legendary"},"Fetish":{"internalName":"Fetish","type":"armour","armourType":"leggings","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"dexterity":35},"powderSlots":3,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"identifications":{"rawDexterity":5,"rawMainAttackDamage":90,"poison":600,"thorns":20,"walkSpeed":5,"thunderDamage":15},"base":{"baseHealth":700,"baseThunderDefence":30},"rarity":"rare"},"Dual":{"internalName":"Dual","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":181,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"warrior","dexterity":15},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawAgility":5,"walkSpeed":5,"thunderDamage":5,"airDamage":10},"base":{"baseDamage":{"min":22,"raw":22,"max":28},"baseThunderDamage":{"min":28,"raw":28,"max":39}},"rarity":"unique"},"Hurricane":{"internalName":"Hurricane","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":55,"strength":10,"agility":25},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"identifications":{"rawStrength":2,"rawAgility":4,"walkSpeed":10,"earthDamage":6,"airDamage":10},"base":{"baseHealth":750,"baseEarthDefence":-40,"baseFireDefence":-100,"baseAirDefence":100},"rarity":"rare"},"Alaxica":{"internalName":"Alaxica","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":104,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"mage","agility":40},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":8,"spellDamage":{"min":5,"raw":15,"max":20},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseAirDamage":{"min":27,"raw":27,"max":56}},"rarity":"unique"},"Dead Man's Flats":{"internalName":"Dead Man's Flats","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"defence":25,"agility":25},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":9,"max":12},"healthRegen":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"fireDamage":{"min":4,"raw":12,"max":16},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":620,"baseWaterDefence":-75,"baseFireDefence":40,"baseAirDefence":30},"rarity":"unique"},"Zhight Beaded Broach":{"internalName":"Zhight Beaded Broach","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island","dexterity":30},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"rawMainAttackDamage":13,"rawSpellDamage":10,"healthRegenRaw":10,"lootBonus":8},"rarity":"unique"},"Flawless Light Jungle Spear":{"internalName":"Flawless Light Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":139,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":60,"raw":60,"max":75}},"rarity":"common"},"Earth Relic Wand":{"internalName":"Earth Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":180,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage","strength":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":50,"raw":50,"max":70},"baseEarthDamage":{"min":50,"raw":50,"max":70}},"rarity":"rare"},"Sludge Slicer":{"internalName":"Sludge Slicer","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":226,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"warrior","strength":25,"dexterity":25},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawEarthMainAttackDamage":{"min":9,"raw":30,"max":39},"rawThunderMainAttackDamage":{"min":9,"raw":30,"max":39},"poison":{"min":300,"raw":1000,"max":1300},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":18,"max":23}},"base":{"baseEarthDamage":{"min":27,"raw":27,"max":45},"baseThunderDamage":{"min":23,"raw":23,"max":51}},"rarity":"legendary"},"Sacrificial":{"internalName":"Sacrificial","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":349,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"shaman","strength":30,"dexterity":30},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"lifeSteal":85,"manaSteal":4,"raw1stSpellCost":-5,"earthDamage":10,"thunderDamage":10},"base":{"baseEarthDamage":{"min":80,"raw":80,"max":85},"baseThunderDamage":{"min":79,"raw":79,"max":95}},"rarity":"rare"},"Krakem":{"internalName":"Krakem","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":309,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"archer","intelligence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawStrength":5,"rawIntelligence":9,"mainAttackDamage":{"min":3,"raw":9,"max":12},"rawSpellDamage":{"min":24,"raw":80,"max":104},"earthDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-21,"raw":-16,"max":-11}},"base":{"baseDamage":{"min":343,"raw":343,"max":503},"baseWaterDamage":{"min":137,"raw":137,"max":229}},"rarity":"rare"},"Convallaria":{"internalName":"Convallaria","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"strength":40},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":30,"raw":100,"max":130},"poison":{"min":90,"raw":300,"max":390},"lifeSteal":{"min":23,"raw":75,"max":98},"thorns":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":900,"baseEarthDefence":55,"baseAirDefence":-65},"rarity":"legendary"},"Bovine Cuff":{"internalName":"Bovine Cuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawStrength":6,"mainAttackDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":50,"baseEarthDefence":20},"rarity":"rare"},"Zhight Coral Band":{"internalName":"Zhight Coral Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island","intelligence":15,"defence":30},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"spellDamage":-6,"healthRegenRaw":15,"thunderDamage":-8,"waterDefence":10},"base":{"baseHealth":200,"baseWaterDefence":35},"rarity":"rare"},"Zhight Weird Magic Necklace":{"internalName":"Zhight Weird Magic Necklace","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":55,"quest":"Zhight Island","strength":25,"intelligence":20},"dropMeta":{"name":"Zhight Island","type":"merchant","coordinates":[-533,39,-2747]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":2,"spellDamage":7,"waterDamage":7},"base":{"baseEarthDefence":5,"baseWaterDefence":5},"rarity":"rare"},"Light Kaekell":{"internalName":"Light Kaekell","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"dexterity":25,"agility":25},"powderSlots":2,"identifications":{"rawDexterity":4,"rawAgility":4,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":500,"baseThunderDefence":15,"baseAirDefence":15},"rarity":"unique"},"Skien Leggings":{"internalName":"Skien Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(131,132,98)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":55},"powderSlots":2,"identifications":{"rawDefence":5,"rawMainAttackDamage":{"min":29,"raw":95,"max":124},"rawSpellDamage":{"min":-149,"raw":-115,"max":-80},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":850},"rarity":"set"},"Vanilla Spade":{"internalName":"Vanilla Spade","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":154,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"warrior","intelligence":20,"agility":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawIntelligence":10,"rawAgility":10,"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-6,"raw":-5,"max":-3},"thunderDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseWaterDamage":{"min":30,"raw":30,"max":45},"baseAirDamage":{"min":30,"raw":30,"max":45}},"rarity":"unique"},"White Noise":{"internalName":"White Noise","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":285,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"shaman","agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"rawSpellDamage":{"min":20,"raw":66,"max":86},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":4,"raw":14,"max":18},"earthDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseAirDamage":{"min":74,"raw":74,"max":110}},"rarity":"unique"},"Karabiner":{"internalName":"Karabiner","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":214,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"assassin","defence":25,"agility":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":4,"rawAgility":5,"healthRegen":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":8,"max":10},"airDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":34,"raw":34,"max":48},"baseFireDamage":{"min":23,"raw":23,"max":33}},"rarity":"unique"},"Ballista":{"internalName":"Ballista","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":249,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"archer","strength":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawDexterity":-2,"rawDefence":5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":125,"raw":125,"max":250},"baseEarthDamage":{"min":75,"raw":75,"max":150}},"rarity":"unique"},"Relic Wand":{"internalName":"Relic Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":179,"dropRestriction":"never","requirements":{"level":55,"classRequirement":"mage"},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-654,88,-738,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":12,"raw":12,"max":17},"baseEarthDamage":{"min":12,"raw":12,"max":17},"baseThunderDamage":{"min":12,"raw":12,"max":17},"baseWaterDamage":{"min":12,"raw":12,"max":17},"baseFireDamage":{"min":12,"raw":12,"max":17},"baseAirDamage":{"min":12,"raw":12,"max":17}},"rarity":"rare"},"Crumbling Foundation":{"internalName":"Crumbling Foundation","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":55,"dexterity":50},"majorIds":{"Entropy":"+Entropy: Meteor falls three times faster."},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"rawDexterity":10,"thunderSpellDamage":{"min":7,"raw":22,"max":29},"lifeSteal":{"min":-104,"raw":-80,"max":-56},"manaSteal":{"min":3,"raw":10,"max":13},"healingEfficiency":{"min":-65,"raw":-50,"max":-35},"waterDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":900,"baseThunderDefence":50,"baseWaterDefence":-100},"rarity":"fabled"},"Refined Chain Leggings":{"internalName":"Refined Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55},"powderSlots":2,"base":{"baseHealth":590},"rarity":"common"},"Pure Iron Leggings":{"internalName":"Pure Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":55},"powderSlots":2,"base":{"baseHealth":600},"rarity":"common"},"Capstone":{"internalName":"Capstone","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":55,"strength":10,"defence":30},"powderSlots":1,"identifications":{"rawStrength":4,"rawDefence":7,"walkSpeed":{"min":-8,"raw":-6,"max":-4},"lootBonus":{"min":4,"raw":14,"max":18},"earthDefence":{"min":4,"raw":14,"max":18},"fireDefence":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":880,"baseEarthDefence":35,"baseWaterDefence":-30,"baseFireDefence":35,"baseAirDefence":-30},"rarity":"unique"},"Holiday Spirit":{"internalName":"Holiday Spirit","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":215,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"shaman","intelligence":15,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"mainAttackDamage":-10,"healthRegenRaw":45,"manaRegen":18,"lootBonus":20},"base":{"baseDamage":{"min":18,"raw":18,"max":22},"baseWaterDamage":{"min":30,"raw":30,"max":36},"baseFireDamage":{"min":30,"raw":30,"max":36}},"rarity":"unique"},"Olux's Prized Bow":{"internalName":"Olux's Prized Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":375,"dropRestriction":"never","identified":true,"requirements":{"level":55,"classRequirement":"archer","quest":"The Shadow of the Beast"},"powderSlots":2,"lore":"This expertly crafted bow was whittled by a cryptid-researching fanatic. Its frame was cut from the very toughest tree roots.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"poison":295,"manaRegen":6,"thorns":10,"xpBonus":15,"earthDamage":10,"waterDefence":10},"base":{"baseDamage":{"min":60,"raw":60,"max":100},"baseEarthDamage":{"min":80,"raw":80,"max":120},"baseWaterDamage":{"min":60,"raw":60,"max":80}},"rarity":"legendary"},"Purification Bead":{"internalName":"Purification Bead","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":55,"defence":20},"dropMeta":{"name":"Plague Laboratory","type":"altar","coordinates":[-1833,46,-5259]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawDefence":5,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":9,"raw":30,"max":39}},"rarity":"rare"},"Floodgate":{"internalName":"Floodgate","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":180,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"warrior","intelligence":55},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":13,"spellDamage":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-52,"raw":-40,"max":-28},"thunderDamage":{"min":-52,"raw":-40,"max":-28},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-52,"raw":-40,"max":-28},"airDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":200}},"rarity":"unique"},"Flawless Light Jungle Dagger":{"internalName":"Flawless Light Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":172,"dropRestriction":"normal","requirements":{"level":55,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":50,"raw":50,"max":61}},"rarity":"common"},"Creepvine Cluster":{"internalName":"Creepvine Cluster","type":"ingredient","requirements":{"level":55,"skills":["alchemism"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"gatherXpBonus":{"min":4,"raw":4,"max":4},"rawStrength":{"min":5,"raw":5,"max":7},"walkSpeed":{"min":-5,"raw":-5,"max":-3}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]},{"name":"Festering Fleshmass'","coords":[[-1800,54,-5274,100],[-1650,54,-5274,50],[-1650,54,-5374,30]]}]},"Broken Steel Blade":{"internalName":"Broken Steel Blade","type":"ingredient","requirements":{"level":55,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":6},"rawStrength":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Skien's Scout","coords":[[378,63,-3523,10],[383,71,-3517,10],[371,79,-3529,10],[385,79,-3526,10]]},{"name":"Skien's Footsoldier","coords":[[386,1,-3523,5],[379,1,-3540,5],[367,1,-3532,5],[351,1,-3517,5],[338,1,-3501,5],[356,2,-3495,5]]},{"name":"Skien's Bomber","coords":[[306,63,-3523,1],[349,55,-3594,1],[369,49,-3610,1],[393,44,-3626,1],[502,33,-3593,4],[502,33,-3593,4],[413,36,-3404,1],[500,34,-3492,1],[414,35,-3403,1]]},{"name":"Skien's Bomber","coords":[380,64,-3574,1]},{"name":"Skien's Elite","coords":[[468,40,-3533,10],[422,42,-3517,15],[398,54,-3485,15],[382,53,-3480,15],[348,58,-3467,15],[351,59,-3496,15]]},{"name":"Skien's Elite","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]},{"name":"Skien's Ravager","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]},{"name":"Skien's Vanguard","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]}]},"Festering Face":{"internalName":"Festering Face","type":"ingredient","requirements":{"level":55,"skills":["armouring","cooking"]},"icon":{"format":"skin","value":"ce1ea11b738cf444f76945f586a084516412166ba9e0250df28ce3f614359e24"},"identifications":{"manaSteal":{"min":7,"raw":7,"max":8},"walkSpeed":{"min":8,"raw":8,"max":11}},"tier":3,"consumableOnlyIDs":{"duration":-620,"charges":0},"ingredientPositionModifiers":{"left":-40,"right":-40,"above":-40,"under":-40,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-110000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Festering Fleshmass'","coords":[[-1800,54,-5274,100],[-1650,54,-5274,50],[-1650,54,-5374,30]]}]},"Zhight Herbal Mix":{"internalName":"Zhight Herbal Mix","type":"ingredient","requirements":{"level":55,"skills":["cooking","scribing","alchemism"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"mainAttackDamage":{"min":-4,"raw":-4,"max":-1},"spellDamage":{"min":-4,"raw":-4,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":24,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Broken Antic Bead":{"internalName":"Broken Antic Bead","type":"ingredient","requirements":{"level":55,"skills":["jeweling"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"lootBonus":{"min":2,"raw":2,"max":3},"xpBonus":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Raincloud Uma","coords":[[-600,23,-435,30],[-610,26,-400,30],[-610,26,-400,30],[-570,21,-535,25],[-580,23,-565,25],[-580,23,-565,35]]},{"name":"Tribe Zombie Chief","coords":null}]},"Grootslang Fin":{"internalName":"Grootslang Fin","type":"ingredient","requirements":{"level":55,"skills":["cooking"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":5},"walkSpeed":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":-280,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Worm Sign":{"internalName":"Worm Sign","type":"ingredient","requirements":{"level":55,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"323:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":3},"xpBonus":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Red Crystal Dust":{"internalName":"Red Crystal Dust","type":"ingredient","requirements":{"level":55,"skills":["scribing"]},"icon":{"format":"legacy","value":"331:0"},"identifications":{"rawDefence":{"min":3,"raw":3,"max":7},"lifeSteal":{"min":20,"raw":20,"max":30}},"tier":3,"consumableOnlyIDs":{"duration":-200,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Vulcini","coords":null},{"name":"Crystallized Flare","coords":[[-827,86,-3663,60],[-861,82,-3769,60]]}]},"Mineral Cinder":{"internalName":"Mineral Cinder","type":"ingredient","requirements":{"level":55,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"385:0"},"identifications":{"exploding":{"min":1,"raw":1,"max":7}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Magma Rock","coords":[[-825,86,-3660,60],[-1031,75,-3664,60],[-1031,75,-3664,60]]},{"name":"Volcano Sludge","coords":[[-1024,41,-3653,12],[-1024,41,-3653,12],[-1020,43,-3695,12],[-980,48,-3625,10],[-1063,40,-3631,8],[-1063,40,-3631,8],[-900,45,-3758,12],[-873,46,-3801,15],[-873,46,-3801,15],[-831,46,-3745,15],[-840,43,-3705,15],[-808,49,-3710,15],[-802,48,-3682,20],[-778,49,-3648,15],[-811,59,-3644,20],[-861,54,-3660,15],[-1025,63,-3630,7],[-1025,63,-3630,7],[-1072,96,-3645,5]]},{"name":"Volcano Sludge","coords":null},{"name":"Galvambler","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcantern","coords":[[-1034,41,-3719,10],[-1021,41,-3731,10],[-989,39,-3781,3],[-960,55,-3668,5],[-940,42,-3553,7],[-927,43,-3808,6],[-802,44,-3800,7],[-812,40,-3735,15],[-812,40,-3735,15],[-812,40,-3735,15],[-878,47,-3609,7],[-861,53,-3629,5],[-872,47,-3695,6],[-1042,45,-3621,6]]},{"name":"Vulcini","coords":null},{"name":"Pyrosilver Spitter","coords":[[-973,56,-3586,6],[-1132,52,-3606,6],[-928,42,-3806,4],[-815,53,-3768,8],[-791,58,-3657,6],[-824,58,-3631,6],[-882,42,-3657,10],[-891,15,-3799,3]]},{"name":"Pyrocobalt Screech","coords":[[-973,56,-3586,6],[-1132,52,-3606,6],[-928,42,-3806,4],[-815,53,-3768,8],[-791,58,-3657,6],[-824,58,-3631,6],[-882,42,-3657,10],[-891,15,-3799,3]]},{"name":"Deep Volcano Sludge","coords":[[-861,15,-3832,7],[-883,15,-3819,10],[-883,15,-3819,10]]},{"name":"Deep Volcano Sludge","coords":null},{"name":"Crystallized Flare","coords":[[-827,86,-3663,60],[-861,82,-3769,60]]}]},"Tattered Magic Cloth":{"internalName":"Tattered Magic Cloth","type":"ingredient","requirements":{"level":55,"skills":["tailoring"]},"icon":{"format":"legacy","value":"171:14"},"identifications":{"manaRegen":{"min":3,"raw":3,"max":4},"fireSpellDamage":{"min":7,"raw":7,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-69000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":14,"agilityRequirement":0}},"Bloated Artery":{"internalName":"Bloated Artery","type":"ingredient","requirements":{"level":55,"skills":["tailoring","woodworking"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"healthRegen":{"min":12,"raw":12,"max":15},"lifeSteal":{"min":-35,"raw":-35,"max":-30}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-73000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Festering Fleshmass'","coords":[[-1800,54,-5274,100],[-1650,54,-5274,50],[-1650,54,-5374,30]]}]},"Bioluminescent Moss":{"internalName":"Bioluminescent Moss","type":"ingredient","requirements":{"level":55,"skills":["cooking"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"waterDamage":{"min":6,"raw":6,"max":7},"thunderDamage":{"min":5,"raw":5,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":-410,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Naga Tail":{"internalName":"Naga Tail","type":"ingredient","requirements":{"level":55,"skills":["alchemism"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"earthDamage":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Naga Fighter","coords":[[-2030,57,-5312,45],[-1832,54,-5304,20],[-1619,52,-5201,35],[-1619,55,-5201,35],[-2126,54,-5463,45],[-2032,47,-5527,55],[-1976,54,-5539,60],[-1940,56,-5364,20]]},{"name":"Naga Commander","coords":[[-2030,57,-5312,45],[-1832,54,-5304,20],[-1619,52,-5201,35],[-1619,55,-5201,35],[-2126,54,-5463,45],[-2032,47,-5527,55],[-1976,54,-5539,60],[-1940,56,-5364,20]]},{"name":"Swamp Naga","coords":[[-1620,52,-5408,1],[-1607,52,-5413,1],[-1599,52,-5405,1]]}]},"Broken Steel Hook":{"internalName":"Broken Steel Hook","type":"ingredient","requirements":{"level":55,"skills":["woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawMainAttackDamage":{"min":18,"raw":18,"max":22},"rawDexterity":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Skien's Bowman","coords":[[399,70,-3574,0],[373,72,-3557,0],[330,69,-3566,0]]},{"name":"Skien's Jailkeeper","coords":[343,1,-3538,9]},{"name":"Skien's Bomber","coords":[[306,63,-3523,1],[349,55,-3594,1],[369,49,-3610,1],[393,44,-3626,1],[502,33,-3593,4],[502,33,-3593,4],[413,36,-3404,1],[500,34,-3492,1],[414,35,-3403,1]]},{"name":"Skien's Bomber","coords":[380,64,-3574,1]},{"name":"Skien's Elite","coords":[[468,40,-3533,10],[422,42,-3517,15],[398,54,-3485,15],[382,53,-3480,15],[348,58,-3467,15],[351,59,-3496,15]]},{"name":"Skien's Elite","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]},{"name":"Skien's Marksman","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]}]},"Lizard Tail":{"internalName":"Lizard Tail","type":"ingredient","requirements":{"level":55,"skills":["cooking","scribing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"healthRegenRaw":{"min":5,"raw":5,"max":7},"healthRegen":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lizardman Darter","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]},{"name":"Lizardman Bruiser","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]}]},"Gathering Pickaxe T7":{"internalName":"Gathering Pickaxe 7","type":"tool","toolType":"pickaxe","gatheringSpeed":120,"identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"53","name":"gatheringTool.pickaxe7"}},"rarity":"common"},"Gathering Axe T7":{"internalName":"Gathering Axe 7","type":"tool","toolType":"axe","gatheringSpeed":120,"identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"48","name":"gatheringTool.axe7"}},"rarity":"common"},"Gathering Rod T7":{"internalName":"Gathering Rod 7","type":"tool","toolType":"rod","gatheringSpeed":120,"identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"58","name":"gatheringTool.rod7"}},"rarity":"common"},"Gathering Scythe T7":{"internalName":"Gathering Scythe 7","type":"tool","toolType":"scythe","gatheringSpeed":120,"identified":true,"requirements":{"level":55},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"63","name":"gatheringTool.scythe7"}},"rarity":"common"},"Lobotomy":{"internalName":"Lobotomy","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":54,"agility":35},"powderSlots":2,"dropMeta":{"name":"Undergrowth Ruins","type":"dungeonMerchant","coordinates":[-635,61,-864]},"identifications":{"rawIntelligence":-20,"rawAgility":5,"rawAirDamage":85,"walkSpeed":20,"airDamage":20},"base":{"baseHealth":640,"baseAirDefence":40},"rarity":"rare"},"Sightlines":{"internalName":"Sightlines","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54,"strength":15,"agility":35},"powderSlots":2,"identifications":{"rawStrength":7,"rawAgility":3,"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":7,"max":9},"earthDamage":{"min":2,"raw":7,"max":9},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":600,"baseFireDefence":-60,"baseAirDefence":50},"rarity":"unique"},"Paradigm Shift":{"internalName":"Paradigm Shift","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":175,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"mage","strength":15,"dexterity":15,"intelligence":15,"defence":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"elementalDamage":{"min":2,"raw":8,"max":10},"elementalDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseEarthDamage":{"min":11,"raw":11,"max":17},"baseThunderDamage":{"min":11,"raw":11,"max":17},"baseWaterDamage":{"min":11,"raw":11,"max":17},"baseFireDamage":{"min":11,"raw":11,"max":17},"baseAirDamage":{"min":11,"raw":11,"max":17}},"rarity":"rare"},"Rotten Swamp":{"internalName":"Rotten Swamp","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":101,"dropRestriction":"never","identified":true,"requirements":{"level":54,"classRequirement":"mage","strength":28},"powderSlots":2,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"spellDamage":5,"healthRegen":-16,"poison":600,"waterDamage":10},"base":{"baseDamage":{"min":20,"raw":20,"max":35},"baseEarthDamage":{"min":30,"raw":30,"max":50}},"rarity":"unique"},"Flawless Granite Dagger":{"internalName":"Flawless Granite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":168,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":75,"raw":75,"max":88}},"rarity":"common"},"Monsoon":{"internalName":"Monsoon","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":338,"dropRestriction":"never","requirements":{"level":54,"classRequirement":"assassin","intelligence":60},"majorIds":{"Hurricane's Eye":"+Hurricane's Eye: Violent Vortex applies 2 marks to every enemy it hits."},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawStrength":15,"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-1105,"raw":-850,"max":-595},"reflection":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":75,"raw":75,"max":85},"baseWaterDamage":{"min":50,"raw":50,"max":60}},"rarity":"fabled"},"Flawless Granite Wand":{"internalName":"Flawless Granite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":103,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":60,"raw":60,"max":77}},"rarity":"common"},"Ice-cold Robe":{"internalName":"Ice-cold Robe","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":54,"intelligence":50},"powderSlots":2,"identifications":{"rawAgility":-5,"4thSpellCost":-50,"walkSpeed":-33,"waterDamage":10,"waterSpellDamage":15,"earthDefence":-20,"fireDefence":-20},"base":{"baseHealth":850,"baseWaterDefence":50,"baseAirDefence":50},"rarity":"rare"},"Flawless Granite Bow":{"internalName":"Flawless Granite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":203,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":213,"raw":213,"max":277}},"rarity":"common"},"Flawless Granite Relik":{"internalName":"Flawless Granite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":207,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":135,"raw":135,"max":141}},"rarity":"common"},"Mould Breaker":{"internalName":"Mould Breaker","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":54,"strength":15,"dexterity":10,"defence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawIntelligence":-9,"manaRegen":{"min":-8,"raw":-6,"max":-4},"healingEfficiency":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":9,"max":12},"exploding":{"min":5,"raw":15,"max":20},"earthDamage":{"min":4,"raw":12,"max":16},"rawThunderDamage":{"min":11,"raw":36,"max":47}},"base":{"baseEarthDefence":-10,"baseThunderDefence":-10,"baseWaterDefence":-15,"baseFireDefence":-10,"baseAirDefence":-10},"rarity":"legendary"},"Flawless Granite Spear":{"internalName":"Flawless Granite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":135,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":150,"raw":150,"max":176}},"rarity":"common"},"Garnet":{"internalName":"Garnet","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":200,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"warrior","intelligence":20,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":-62,"raw":-48,"max":-34},"fireDamage":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseWaterDamage":{"min":20,"raw":20,"max":60}},"rarity":"rare"},"Nesaak's Shadow":{"internalName":"Nesaak's Shadow","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54,"dexterity":10,"agility":10},"powderSlots":1,"identifications":{"lifeSteal":{"min":20,"raw":65,"max":85},"lootBonus":{"min":2,"raw":8,"max":10},"stealing":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":730,"baseThunderDefence":-30,"baseWaterDefence":50},"rarity":"unique"},"Piston String":{"internalName":"Piston String","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":260,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"archer","intelligence":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawDexterity":-12,"healthRegenRaw":{"min":12,"raw":40,"max":52},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":32,"raw":32,"max":55},"baseWaterDamage":{"min":44,"raw":44,"max":86},"baseFireDamage":{"min":44,"raw":44,"max":86}},"rarity":"unique"},"Creek":{"internalName":"Creek","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54,"intelligence":20},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":700,"baseThunderDefence":-50,"baseWaterDefence":50},"rarity":"unique"},"Dorian":{"internalName":"Dorian","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":309,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"archer","defence":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":8,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":14,"raw":45,"max":59},"lifeSteal":{"min":-136,"raw":-105,"max":-73},"waterDamage":{"min":-25,"raw":-19,"max":-13}},"base":{"baseDamage":{"min":100,"raw":100,"max":106},"baseFireDamage":{"min":100,"raw":100,"max":106}},"rarity":"rare"},"Flaming Fangs":{"internalName":"Flaming Fangs","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":204,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawStrength":-3,"rawDefence":10,"rawSpellDamage":{"min":15,"raw":50,"max":65},"thorns":{"min":4,"raw":12,"max":16},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":56,"raw":56,"max":68},"baseFireDamage":{"min":32,"raw":32,"max":42}},"rarity":"unique"},"Wintergreen":{"internalName":"Wintergreen","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":391,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"shaman","strength":20,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-1300,"raw":-1000,"max":-700},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6},"rawAttackSpeed":1,"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":90,"raw":90,"max":100},"baseEarthDamage":{"min":45,"raw":45,"max":50},"baseAirDamage":{"min":45,"raw":45,"max":50}},"rarity":"legendary"},"Waxed Overalls":{"internalName":"Waxed Overalls","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":54},"powderSlots":1,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"identifications":{"rawAgility":4,"reflection":6,"walkSpeed":4,"waterDefence":20},"base":{"baseHealth":675,"baseWaterDefence":45,"baseFireDefence":-45},"rarity":"unique"},"Andante":{"internalName":"Andante","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":266,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"shaman","strength":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":100,"raw":100,"max":140},"baseEarthDamage":{"min":201,"raw":201,"max":201}},"rarity":"unique"},"Strobelight":{"internalName":"Strobelight","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":54,"defence":30},"majorIds":{"Taunt":"+Taunt: Provoke's Cooldown is lowered by -3s."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawDefence":7,"reflection":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":350},"rarity":"fabled"},"Philophobia":{"internalName":"Philophobia","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"poison":{"min":77,"raw":255,"max":332},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":840},"rarity":"rare"},"Jester Necklace":{"internalName":"Jester Necklace","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":54},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"xpBonus":{"min":-32,"raw":-25,"max":-17},"lootBonus":{"min":-32,"raw":-25,"max":-17},"stealing":{"min":1,"raw":4,"max":5}},"rarity":"set"},"Venison":{"internalName":"Venison","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54,"strength":20,"intelligence":15},"powderSlots":1,"lore":"This ancient Elven sacrificial mask contains only a sliver of its previous magic, yet the blessing of the Elven god Entia still greatly empowers those who don it.","identifications":{"rawStrength":7,"rawIntelligence":7,"mainAttackDamage":{"min":6,"raw":19,"max":25},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":735,"baseEarthDefence":60,"baseWaterDefence":45,"baseFireDefence":-75},"rarity":"legendary"},"Electric Torc":{"internalName":"Electric Torc","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":54,"dexterity":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":140,"baseEarthDefence":-30,"baseThunderDefence":30},"rarity":"unique"},"Eil":{"internalName":"Eil","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":170,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawIntelligence":-2,"rawDefence":13,"rawAgility":-2,"rawHealth":{"min":150,"raw":500,"max":650}},"base":{"baseDamage":{"min":80,"raw":80,"max":85}},"rarity":"unique"},"Refined Chain Boots":{"internalName":"Refined Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54},"powderSlots":2,"base":{"baseHealth":560},"rarity":"common"},"Turmoil":{"internalName":"Turmoil","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":166,"dropRestriction":"normal","requirements":{"level":54,"classRequirement":"warrior","strength":30,"dexterity":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-10,"raw":-8,"max":-6},"poison":{"min":183,"raw":610,"max":793},"earthDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":50,"raw":50,"max":150},"baseEarthDamage":{"min":25,"raw":25,"max":75},"baseThunderDamage":{"min":25,"raw":25,"max":75}},"rarity":"rare"},"Geis":{"internalName":"Geis","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":54,"strength":40,"dexterity":40},"powderSlots":3,"identifications":{"rawIntelligence":-15,"rawDefence":-10,"rawAgility":-10,"healthRegenRaw":{"min":12,"raw":40,"max":52},"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":8,"raw":25,"max":33},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":850,"baseWaterDefence":-90},"rarity":"rare"},"Warlord":{"internalName":"Warlord","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":198,"dropRestriction":"never","identified":true,"requirements":{"level":54,"classRequirement":"warrior","strength":25},"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":2,"rawDexterity":-3,"rawDefence":2,"rawAgility":-3,"healthRegenRaw":40,"rawHealth":450,"walkSpeed":-4},"base":{"baseDamage":{"min":320,"raw":320,"max":457}},"rarity":"rare"},"Mellow Mango":{"internalName":"Mellow Mango","type":"ingredient","requirements":{"level":54,"skills":["cooking"]},"icon":{"format":"skin","value":"9fd0e330a688d8bb9519befe1bfc34337b371ac75150216fdd03959eb7b44"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"rawMainAttackDamage":{"min":20,"raw":20,"max":25},"rawSpellDamage":{"min":16,"raw":16,"max":20}},"tier":2,"consumableOnlyIDs":{"duration":-410,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]}]},"Galvanic Stone":{"internalName":"Galvanic Stone","type":"ingredient","requirements":{"level":54,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"213:0"},"identifications":{"fireDamage":{"min":8,"raw":8,"max":12},"earthDamage":{"min":8,"raw":8,"max":10}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-105000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Magma Rock","coords":[[-825,86,-3660,60],[-1031,75,-3664,60],[-1031,75,-3664,60]]},{"name":"Pyrosilver Spitter","coords":[[-973,56,-3586,6],[-1132,52,-3606,6],[-928,42,-3806,4],[-815,53,-3768,8],[-791,58,-3657,6],[-824,58,-3631,6],[-882,42,-3657,10],[-891,15,-3799,3]]},{"name":"Pyrocobalt Screech","coords":[[-973,56,-3586,6],[-1132,52,-3606,6],[-928,42,-3806,4],[-815,53,-3768,8],[-791,58,-3657,6],[-824,58,-3631,6],[-882,42,-3657,10],[-891,15,-3799,3]]},{"name":"Crystallized Flare","coords":[[-827,86,-3663,60],[-861,82,-3769,60]]}]},"Zombie Eye":{"internalName":"Zombie Eye","type":"ingredient","requirements":{"level":54,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"375:0"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":2},"rawMainAttackDamage":{"min":8,"raw":8,"max":15}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Miner","coords":[[-512,81,-889,9],[-485,65,-850,20],[-485,65,-850,20],[-636,39,-926,22],[-588,29,-924,12],[-588,29,-924,12],[-546,25,-924,12],[-546,25,-924,12]]},{"name":"Overgrown Zombie","coords":false},{"name":"Iboju Exile","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Rotten Zombie","coords":[-554,59,-595,10]},{"name":"Rotten Zombie","coords":[[-620,50,-675,20],[-620,50,-675,20],[-620,50,-675,20],[-665,56,-725,10],[-603,44,-744,8]]},{"name":"Ancient Iboju Undead","coords":[[-495,25,-950,18],[-482,29,-971,18],[-473,33,-986,12],[-451,41,-943,12],[-451,41,-943,12]]},{"name":"Ancient Iboju Undead","coords":[[-495,25,-950,18],[-482,29,-971,18],[-473,33,-986,12],[-451,41,-943,12],[-451,41,-943,12]]},{"name":"Oni Shaman","coords":null},{"name":"Jewel Miner","coords":null},{"name":"Knife","coords":null},{"name":"Yahya`s Apprentice","coords":[-614,93,-666,1]},{"name":"Soaked Zombie","coords":[-658,70,-726,2]},{"name":"Ancient Iboju Shaman","coords":[-446,41,-935,3]}]},"Rebellion":{"internalName":"Rebellion","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":236,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"warrior","dexterity":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawIntelligence":-4,"spellDamage":{"min":-8,"raw":-6,"max":-4},"rawHealth":{"min":-299,"raw":-230,"max":-161},"lifeSteal":{"min":30,"raw":100,"max":130},"exploding":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":5,"raw":17,"max":22},"fireDamage":{"min":5,"raw":17,"max":22},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":45,"raw":45,"max":60},"baseThunderDamage":{"min":45,"raw":45,"max":60},"baseFireDamage":{"min":45,"raw":45,"max":60}},"rarity":"legendary"},"Flawless Jungle Bow":{"internalName":"Flawless Jungle Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":199,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":122,"raw":122,"max":143}},"rarity":"common"},"Flawless Jungle Relik":{"internalName":"Flawless Jungle Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":195,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":92,"raw":92,"max":97}},"rarity":"common"},"Coyopa":{"internalName":"Coyopa","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":272,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"shaman","dexterity":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":4,"spellDamage":{"min":4,"raw":12,"max":16},"lifeSteal":{"min":18,"raw":60,"max":78},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseThunderDamage":{"min":52,"raw":52,"max":96}},"rarity":"unique"},"Haze":{"internalName":"Haze","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":247,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"archer","defence":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDefence":10,"rawAgility":10,"rawHealth":{"min":105,"raw":350,"max":455},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseFireDamage":{"min":20,"raw":20,"max":50},"baseAirDamage":{"min":20,"raw":20,"max":50}},"rarity":"rare"},"Living Slime":{"internalName":"Living Slime","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":53,"dexterity":25},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"healthRegen":{"min":-13,"raw":-10,"max":-7},"poison":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":11,"raw":35,"max":46},"xpBonus":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":2,"raw":7,"max":9}},"base":{"baseThunderDefence":-10,"baseFireDefence":-10},"rarity":"legendary"},"Armageddon":{"internalName":"Armageddon","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":245,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"archer","strength":10,"dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawStrength":9,"rawDexterity":9,"spellDamage":{"min":2,"raw":6,"max":8},"earthDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":120,"raw":120,"max":150},"baseThunderDamage":{"min":70,"raw":70,"max":250}},"rarity":"unique"},"Flawless Jungle Spear":{"internalName":"Flawless Jungle Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":133,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":77,"raw":77,"max":100}},"rarity":"common"},"Anaklusmos":{"internalName":"Anaklusmos","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":262,"dropRestriction":"never","requirements":{"level":53,"classRequirement":"assassin","intelligence":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"271","name":"dagger.water3"}},"identifications":{"waterSpellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":12,"raw":40,"max":52},"manaRegen":{"min":2,"raw":6,"max":8},"1stSpellCost":{"min":-2,"raw":-8,"max":-10},"elementalDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseDamage":{"min":10,"raw":10,"max":40},"baseWaterDamage":{"min":70,"raw":70,"max":90}},"rarity":"legendary"},"Blizzard":{"internalName":"Blizzard","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":242,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"archer","intelligence":35,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-17,"raw":-13,"max":-9},"spellDamage":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-16,"raw":-12,"max":-8},"fireDefence":{"min":-22,"raw":-17,"max":-12}},"base":{"baseDamage":{"min":11,"raw":11,"max":13},"baseWaterDamage":{"min":29,"raw":29,"max":37},"baseAirDamage":{"min":29,"raw":29,"max":37}},"rarity":"unique"},"Flawless Jungle Dagger":{"internalName":"Flawless Jungle Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":158,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":56,"raw":56,"max":70}},"rarity":"common"},"Bladerunners":{"internalName":"Bladerunners","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"normal","requirements":{"level":53,"dexterity":20,"intelligence":20},"powderSlots":2,"identifications":{"rawDexterity":5,"rawIntelligence":4,"rawSpellDamage":{"min":11,"raw":35,"max":46},"healthRegen":{"min":-21,"raw":-16,"max":-11},"walkSpeed":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":550,"baseEarthDefence":-40,"baseThunderDefence":20,"baseWaterDefence":40,"baseAirDefence":-20},"rarity":"unique"},"Bough of Fir":{"internalName":"Bough of Fir","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":165,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage","strength":20,"intelligence":10},"powderSlots":2,"lore":"Crafted from Mandragora roots and adorned with decorative wreaths of Elven pines, these wands are utilized in Efilim's solstice festivals to celebrate each passing year of Villager and Elven comradery.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawIntelligence":9,"spellDamage":{"min":5,"raw":16,"max":21},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":16,"max":21},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":-26,"raw":-20,"max":-14},"earthDefence":{"min":9,"raw":30,"max":39},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":65},"baseEarthDamage":{"min":20,"raw":20,"max":35}},"rarity":"legendary"},"Troms' Climbing Trousers":{"internalName":"Troms' Climbing Trousers","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"agility":30},"powderSlots":2,"identifications":{"rawDefence":-5,"rawAgility":7,"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":7,"max":9},"fireDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":700,"baseFireDefence":-30,"baseAirDefence":30},"rarity":"unique"},"Sunsetter":{"internalName":"Sunsetter","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":119,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage","intelligence":15,"agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawDefence":-3,"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":-6,"raw":-5,"max":-3},"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":26,"raw":26,"max":37},"baseWaterDamage":{"min":24,"raw":24,"max":29}},"rarity":"unique"},"Bamboo Cuff":{"internalName":"Bamboo Cuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":53,"strength":15,"dexterity":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"poison":{"min":38,"raw":125,"max":163},"earthDamage":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":1,"raw":4,"max":5},"fireDefence":{"min":-10,"raw":-8,"max":-6},"airDefence":{"min":-10,"raw":-8,"max":-6}},"rarity":"unique"},"Skien Boots":{"internalName":"Skien Boots","type":"armour","armourType":"boots","armourColor":"rgb(131,132,98)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":53},"powderSlots":2,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":775},"rarity":"set"},"Soqueira":{"internalName":"Soqueira","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":53,"strength":20,"agility":20},"majorIds":{"Power Fist":"+Power Fist: Striking enemies with an empty hand greatly knocks them back."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":3,"rawAgility":2,"rawMainAttackDamage":{"min":11,"raw":35,"max":46},"walkSpeed":{"min":2,"raw":6,"max":8},"earthDamage":{"min":1,"raw":4,"max":5},"fireDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseEarthDefence":10,"baseAirDefence":10},"rarity":"legendary"},"Suchimu":{"internalName":"Suchimu","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"intelligence":30,"defence":20},"powderSlots":2,"identifications":{"rawIntelligence":4,"rawDefence":4,"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":11,"raw":35,"max":46},"manaRegen":{"min":2,"raw":6,"max":8},"damage":{"min":-10,"raw":-8,"max":-6},"rawMaxMana":{"min":9,"raw":30,"max":39},"thunderDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseHealth":550,"baseWaterDefence":40,"baseFireDefence":40},"rarity":"unique"},"Crowbeak":{"internalName":"Crowbeak","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":231,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawAgility":5,"spellDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-8,"raw":-6,"max":-4},"thunderDefence":{"min":-8,"raw":-6,"max":-4},"airDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":30,"raw":30,"max":60},"baseThunderDamage":{"min":14,"raw":14,"max":36},"baseAirDamage":{"min":21,"raw":21,"max":24}},"rarity":"rare"},"Mistpuff":{"internalName":"Mistpuff","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"intelligence":15,"agility":20},"powderSlots":2,"identifications":{"rawIntelligence":4,"rawDefence":-3,"rawAgility":5,"reflection":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":3,"raw":9,"max":12},"earthDamage":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":600,"baseThunderDefence":-60,"baseWaterDefence":20,"baseAirDefence":30},"rarity":"unique"},"Pure Iron Boots":{"internalName":"Pure Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":53},"powderSlots":2,"base":{"baseHealth":520},"rarity":"common"},"Skyspiral":{"internalName":"Skyspiral","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":328,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"shaman","dexterity":20,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawDexterity":5,"rawDefence":-5,"rawMainAttackDamage":{"min":18,"raw":59,"max":77},"rawSpellDamage":{"min":18,"raw":60,"max":78},"rawHealth":{"min":-416,"raw":-320,"max":-224},"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":31,"raw":31,"max":31},"baseThunderDamage":{"min":38,"raw":38,"max":42},"baseAirDamage":{"min":57,"raw":57,"max":63}},"rarity":"rare"},"Brass Knuckle":{"internalName":"Brass Knuckle","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":53,"strength":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"147","name":"ring.air2"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":3,"max":4},"airDamage":{"min":-8,"raw":-6,"max":-4}},"rarity":"rare"},"Ice Sickle":{"internalName":"Ice Sickle","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":202,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"assassin","intelligence":30,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawDexterity":-10,"rawIntelligence":8,"rawAgility":8,"walkSpeed":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"waterDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":22,"raw":22,"max":32},"baseWaterDamage":{"min":12,"raw":12,"max":42},"baseAirDamage":{"min":2,"raw":2,"max":52}},"rarity":"unique"},"Slime Plate":{"internalName":"Slime Plate","type":"armour","armourType":"chestplate","armourColor":"rgb(35,137,19)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":53,"strength":20,"defence":35},"powderSlots":2,"identifications":{"poison":{"min":87,"raw":290,"max":377},"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":800,"baseEarthDefence":30},"rarity":"set"},"Xystus":{"internalName":"Xystus","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":165,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"warrior","agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":8,"walkSpeed":{"min":2,"raw":8,"max":10},"airDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":10,"raw":10,"max":50},"baseAirDamage":{"min":30,"raw":30,"max":70}},"rarity":"unique"},"Thunderstruck":{"internalName":"Thunderstruck","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":158,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"warrior","dexterity":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":5,"rawAgility":5,"walkSpeed":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-26,"raw":-20,"max":-14},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-26,"raw":-20,"max":-14},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":27},"baseThunderDamage":{"min":15,"raw":15,"max":27},"baseAirDamage":{"min":15,"raw":15,"max":27}},"rarity":"unique"},"Refined Chain Helmet":{"internalName":"Refined Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53},"powderSlots":2,"base":{"baseHealth":530},"rarity":"common"},"Assurance":{"internalName":"Assurance","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":171,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"warrior","strength":15,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":40,"raw":40,"max":52},"baseEarthDamage":{"min":30,"raw":30,"max":38},"baseFireDamage":{"min":30,"raw":30,"max":38}},"rarity":"unique"},"Quartz-Laced Leggings":{"internalName":"Quartz-laced Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53},"powderSlots":2,"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":660},"rarity":"unique"},"Chasseur":{"internalName":"Chasseur","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":270,"dropRestriction":"never","identified":true,"requirements":{"level":53,"classRequirement":"archer","strength":20,"agility":20},"powderSlots":2,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":3,"rawAgility":2,"spellDamage":-10,"walkSpeed":6,"airDamage":7},"base":{"baseDamage":{"min":100,"raw":100,"max":150},"baseEarthDamage":{"min":120,"raw":120,"max":190},"baseAirDamage":{"min":30,"raw":30,"max":60}},"rarity":"unique"},"Roughcut":{"internalName":"Roughcut","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"strength":15},"identifications":{"rawDexterity":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":560,"baseEarthDefence":30,"baseThunderDefence":20,"baseAirDefence":-50},"rarity":"unique"},"Whirlpool":{"internalName":"Whirlpool","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":124,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawSpellDamage":{"min":18,"raw":60,"max":78},"waterDamage":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":-25,"raw":-19,"max":-13}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseWaterDamage":{"min":10,"raw":10,"max":60}},"rarity":"unique"},"Muskeg":{"internalName":"Muskeg","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"strength":30,"intelligence":30},"powderSlots":2,"identifications":{"rawAgility":-4,"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"rawMaxMana":{"min":9,"raw":31,"max":40},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":780,"baseEarthDefence":45,"baseWaterDefence":45,"baseAirDefence":-55},"rarity":"rare"},"Return":{"internalName":"Return","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":53},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"thorns":{"min":3,"raw":9,"max":12},"reflection":{"min":3,"raw":9,"max":12}},"rarity":"unique"},"Impulse":{"internalName":"Impulse","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":312,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"assassin","strength":25,"dexterity":25},"powderSlots":2,"lore":"Prolonged exposure to the corruption may cause sudden bursts of madness in soldiers. To assure themselves of their sanity, some have even begun to play tricks on their brethren.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawIntelligence":-5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":-97,"raw":-75,"max":-52},"lifeSteal":{"min":33,"raw":110,"max":143},"manaRegen":{"min":-55,"raw":-42,"max":-29},"manaSteal":{"min":7,"raw":24,"max":31},"earthDamage":{"min":4,"raw":14,"max":18},"thunderDamage":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":0,"raw":0,"max":229},"baseEarthDamage":{"min":126,"raw":126,"max":371},"baseThunderDamage":{"min":126,"raw":126,"max":371}},"rarity":"legendary"},"Asterisk":{"internalName":"Asterisk","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":121,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage","dexterity":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawStrength":-4,"rawDefence":-4,"spellDamage":{"min":4,"raw":13,"max":17},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":11,"raw":11,"max":15},"baseThunderDamage":{"min":11,"raw":11,"max":15},"baseAirDamage":{"min":11,"raw":11,"max":15}},"rarity":"unique"},"Solar Pillar":{"internalName":"Solar Pillar","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":145,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage","intelligence":35,"defence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawDefence":7,"spellDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":180,"raw":600,"max":780},"xpBonus":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-156,"raw":-120,"max":-84},"waterDamage":{"min":8,"raw":25,"max":33},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":35,"raw":35,"max":46},"baseFireDamage":{"min":27,"raw":27,"max":33}},"rarity":"legendary"},"Flawless Jungle Wand":{"internalName":"Flawless Jungle Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":98,"dropRestriction":"normal","requirements":{"level":53,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":41,"raw":41,"max":54}},"rarity":"common"},"Turbulence":{"internalName":"Turbulence","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":53,"agility":30},"powderSlots":2,"identifications":{"rawDexterity":-4,"mainAttackDamage":{"min":4,"raw":13,"max":17},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":490,"baseThunderDefence":-50,"baseFireDefence":-40,"baseAirDefence":40},"rarity":"unique"},"Pink Pelulite":{"internalName":"Pink Pelulite","type":"ingredient","requirements":{"level":53,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"38:7"},"identifications":{"rawMainAttackDamage":{"min":45,"raw":45,"max":50},"sprint":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]}]},"Cyclone Blue Leaves":{"internalName":"Cyclone Blue Leaves","type":"ingredient","requirements":{"level":53,"skills":["cooking"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"jumpHeight":{"min":1,"raw":1,"max":1},"walkSpeed":{"min":-6,"raw":-6,"max":-5}},"tier":2,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]}]},"Cursed Venom Sac":{"internalName":"Cursed Venom Sac","type":"ingredient","requirements":{"level":53,"skills":["alchemism"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"poison":{"min":165,"raw":165,"max":195}},"tier":0,"consumableOnlyIDs":{"duration":-67,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cursed Silk Spiderling","coords":[[-1944,53,-5161,20],[-1939,64,-5154,22],[-1587,54,-5253,22],[-1399,41,-5346,22],[-1848,41,-5369,22]]},{"name":"Cursed Silk Spider","coords":[-1762,65,-5205,45]}]},"Thick Vines":{"internalName":"Thick Vines","type":"ingredient","requirements":{"level":53,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"walkSpeed":{"min":-5,"raw":-5,"max":-3},"earthDefence":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Herb Spawn","coords":[-590,101,-583,3]},{"name":"Herb Spawn","coords":[-476,59,-838,15]},{"name":"Mossy Golem","coords":[-808,104,-687,4]},{"name":"Flicker Frog","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Jungle Fetish","coords":[[-662,58,-815,27],[-563,65,-900,38]]},{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]}]},"Lizard Scale":{"internalName":"Lizard Scale","type":"ingredient","requirements":{"level":53,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"earthDefence":{"min":3,"raw":3,"max":5},"rawHealth":{"min":110,"raw":110,"max":130}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lizardman Darter","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]},{"name":"Lizardman Bruiser","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]}]},"Bionic Fiber":{"internalName":"Bionic Fiber","type":"ingredient","requirements":{"level":53,"skills":["woodworking"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"rawDexterity":{"min":4,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":7,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]},{"name":"Festering Fleshmass'","coords":[[-1800,54,-5274,100],[-1650,54,-5274,50],[-1650,54,-5374,30]]}]},"Death Whistle Leaf":{"internalName":"Death Whistle Leaf","type":"ingredient","requirements":{"level":53,"skills":["alchemism","scribing","cooking"]},"icon":{"format":"legacy","value":"351:0"},"tier":3,"consumableOnlyIDs":{"duration":110,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]}]},"Stolen Harvest":{"internalName":"Stolen Harvest","type":"ingredient","requirements":{"level":53,"skills":["cooking"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"healthRegenRaw":{"min":5,"raw":5,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lizardman Darter","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]},{"name":"Lizardman Bruiser","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]}]},"Pink Pelute":{"internalName":"Pink Pelute","type":"ingredient","requirements":{"level":53,"skills":["alchemism","scribing","cooking"]},"icon":{"format":"legacy","value":"38:2"},"identifications":{"xpBonus":{"min":1,"raw":1,"max":6},"lootBonus":{"min":1,"raw":1,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Pink Pelute","coords":[-1627,53,-5285,150]},{"name":"Pink Pelulite","coords":[-1627,53,-5285,150]},{"name":"Blue Cyclone","coords":[-1627,53,-5285,150]},{"name":"Death Whistle","coords":[-1627,53,-5285,150]}]},"Tropical Honeysuckle":{"internalName":"Tropical Honeysuckle","type":"ingredient","requirements":{"level":53,"skills":["alchemism"]},"icon":{"format":"legacy","value":"37:0"},"identifications":{"gatherSpeed":{"min":4,"raw":4,"max":5},"healthRegenRaw":{"min":18,"raw":18,"max":20},"walkSpeed":{"min":4,"raw":4,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-95,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]}]},"Mangrove":{"internalName":"Mangrove","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"strength":30,"intelligence":30},"powderSlots":2,"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":9,"raw":30,"max":39},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-14,"raw":-11,"max":-8},"earthDefence":{"min":2,"raw":8,"max":10},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":630,"baseEarthDefence":50,"baseWaterDefence":50,"baseFireDefence":-65},"rarity":"unique"},"Salt Crag":{"internalName":"Salt Crag","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":322,"dropRestriction":"never","requirements":{"level":52,"classRequirement":"archer","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawStrength":7,"damage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":50,"raw":50,"max":200},"baseWaterDamage":{"min":90,"raw":90,"max":90}},"rarity":"legendary"},"Devilish":{"internalName":"Devilish","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":52,"dexterity":5,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawHealth":{"min":-117,"raw":-90,"max":-63},"poison":{"min":58,"raw":192,"max":250},"lifeSteal":{"min":9,"raw":29,"max":38},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseWaterDefence":-15,"baseAirDefence":-15},"rarity":"rare"},"Balm":{"internalName":"Balm","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"defence":20,"agility":30},"powderSlots":1,"identifications":{"rawStrength":-4,"rawAgility":4,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":630,"baseAirDefence":30},"rarity":"unique"},"Dark Mage Robes":{"internalName":"Dark Mage Robes","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"dexterity":15,"intelligence":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":525,"baseThunderDefence":30,"baseWaterDefence":30},"rarity":"rare"},"Evanescent":{"internalName":"Evanescent","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":325,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"archer","intelligence":30,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":10,"mainAttackDamage":{"min":-52,"raw":-40,"max":-28},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":0,"raw":0,"max":150},"baseWaterDamage":{"min":55,"raw":55,"max":55}},"rarity":"legendary"},"Wardrummer":{"internalName":"Wardrummer","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":251,"dropRestriction":"never","identified":true,"requirements":{"level":52,"classRequirement":"shaman","strength":16,"defence":16},"powderSlots":3,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"mainAttackDamage":-10,"spellDamage":-10,"earthDamage":20,"fireDamage":20},"base":{"baseDamage":{"min":155,"raw":155,"max":180}},"rarity":"unique"},"Hypercane":{"internalName":"Hypercane","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":239,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"assassin","intelligence":25,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":22,"raw":22,"max":44},"baseWaterDamage":{"min":11,"raw":11,"max":33},"baseFireDamage":{"min":0,"raw":0,"max":44}},"rarity":"rare"},"Purity Filter":{"internalName":"Purity Filter","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":52,"intelligence":25},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawIntelligence":3,"poison":{"min":-650,"raw":-500,"max":-350},"lifeSteal":{"min":-32,"raw":-25,"max":-17},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":100},"rarity":"legendary"},"Dysnomia":{"internalName":"Dysnomia","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"strength":25,"dexterity":40},"powderSlots":2,"identifications":{"healthRegen":{"min":-52,"raw":-40,"max":-28},"manaSteal":{"min":2,"raw":8,"max":10},"healingEfficiency":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":600,"baseWaterDefence":-40,"baseAirDefence":-40},"rarity":"unique"},"Snow Dust":{"internalName":"Snow Dust","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52},"powderSlots":2,"identifications":{"rawDexterity":4,"rawAgility":4,"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":5,"max":7},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":550,"baseEarthDefence":-20,"baseThunderDefence":25,"baseFireDefence":-20,"baseAirDefence":25},"rarity":"unique"},"Scumlord":{"internalName":"Scumlord","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":165,"dropRestriction":"never","requirements":{"level":52,"classRequirement":"mage","strength":40},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":-5,"raw":-4,"max":-3},"thorns":{"min":4,"raw":12,"max":16},"slowEnemy":{"min":2,"raw":8,"max":10},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":24,"raw":24,"max":36},"baseEarthDamage":{"min":72,"raw":72,"max":88}},"rarity":"legendary"},"Scarlet Veil":{"internalName":"Scarlet Veil","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52},"majorIds":{"Explosive Impact":"+Explosive Impact: Your Exploding ID can trigger when hitting mobs with your Main Attack."},"lore":"You're seeing red... Time to see more of it.","identifications":{"mainAttackDamage":{"min":8,"raw":25,"max":33},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"rawAttackSpeed":1,"walkSpeed":{"min":2,"raw":8,"max":10},"elementalDefence":{"min":-130,"raw":-100,"max":-70}},"base":{"baseHealth":1000,"baseEarthDefence":-30,"baseThunderDefence":-30,"baseWaterDefence":-30,"baseFireDefence":-30,"baseAirDefence":-30},"rarity":"fabled"},"Anchoryl":{"internalName":"Anchoryl","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"defence":25},"powderSlots":2,"lore":"Despite being a much smaller settlement compared to the mighty citadel of Rodoroc, the dwarven smiths of Thanos still can forge mighty products, such as these heavy diamond-alloy boots.","identifications":{"healthRegen":{"min":7,"raw":23,"max":30},"healthRegenRaw":{"min":15,"raw":50,"max":65},"rawHealth":{"min":75,"raw":250,"max":325},"thorns":{"min":3,"raw":11,"max":14},"reflection":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":900,"baseFireDefence":50},"rarity":"legendary"},"Ohms' Rage":{"internalName":"Ohms' Rage","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"dungeon","requirements":{"level":52,"dexterity":40},"powderSlots":2,"lore":"These ancient, spark-coursing greaves are all that remains of the great thunder mage Ohms' favorite golem familiar after a dark force turned it against its masters.","identifications":{"mainAttackDamage":{"min":9,"raw":30,"max":39},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":-5,"raw":-4,"max":-3},"2ndSpellCost":{"min":-5,"raw":-18,"max":-23},"3rdSpellCost":{"min":-4,"raw":-13,"max":-17},"thunderDamage":{"min":9,"raw":30,"max":39},"earthDefence":{"min":-71,"raw":-55,"max":-38},"waterDefence":{"min":-58,"raw":-45,"max":-31}},"base":{"baseHealth":440,"baseThunderDefence":50,"baseAirDefence":20},"rarity":"legendary"},"Heart of Fire":{"internalName":"Heart of Fire","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"defence":30},"powderSlots":1,"identifications":{"healthRegenRaw":{"min":11,"raw":35,"max":46},"rawHealth":{"min":45,"raw":150,"max":195},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":650,"baseWaterDefence":-35,"baseFireDefence":35},"rarity":"unique"},"Vine Machete":{"internalName":"Vine Machete","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":218,"dropRestriction":"never","identified":true,"requirements":{"level":52,"classRequirement":"assassin","agility":20},"powderSlots":2,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"mainAttackDamage":12,"walkSpeed":8,"fireDamage":12,"earthDefence":10},"base":{"baseDamage":{"min":80,"raw":80,"max":115},"baseAirDamage":{"min":40,"raw":40,"max":55}},"rarity":"rare"},"Coeur de Lion":{"internalName":"Coeur de Lion","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":158,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"warrior","defence":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":10,"healthRegen":{"min":5,"raw":15,"max":20},"rawHealth":{"min":180,"raw":600,"max":780},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":2,"raw":5,"max":7},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":50,"raw":50,"max":75},"baseFireDamage":{"min":30,"raw":30,"max":55}},"rarity":"rare"},"Capsaicin":{"internalName":"Capsaicin","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"defence":35},"powderSlots":1,"identifications":{"rawSpellDamage":{"min":15,"raw":50,"max":65},"healthRegen":{"min":-32,"raw":-25,"max":-17},"healthRegenRaw":{"min":-52,"raw":-40,"max":-28},"damage":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":12,"max":16},"fireDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseHealth":725,"baseFireDefence":-30},"rarity":"rare"},"Meteoric Arch":{"internalName":"Meteoric Arch","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":285,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"archer"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"rawSpellDamage":{"min":18,"raw":60,"max":78},"healthRegenRaw":{"min":11,"raw":35,"max":46}},"base":{"baseDamage":{"min":150,"raw":150,"max":230}},"rarity":"rare"},"Seraph":{"internalName":"Seraph","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":144,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"assassin","intelligence":5,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":27,"raw":27,"max":45},"baseAirDamage":{"min":32,"raw":32,"max":36}},"rarity":"unique"},"Shine Suffocator":{"internalName":"Shine Suffocator","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":301,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"shaman","dexterity":25,"intelligence":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":10,"spellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-52,"raw":-40,"max":-28},"manaSteal":{"min":4,"raw":12,"max":16},"1stSpellCost":{"min":390,"raw":300,"max":210},"3rdSpellCost":{"min":-24,"raw":-80,"max":-104},"raw4thSpellCost":{"min":13,"raw":10,"max":7}},"base":{"baseDamage":{"min":36,"raw":36,"max":42},"baseThunderDamage":{"min":26,"raw":26,"max":32},"baseWaterDamage":{"min":26,"raw":26,"max":32}},"rarity":"legendary"},"Standard Chain Mail":{"internalName":"Standard Chain Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52},"powderSlots":2,"base":{"baseHealth":500},"rarity":"common"},"Quartz Choker":{"internalName":"Quartz Choker","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":52},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":125},"rarity":"unique"},"The Judge":{"internalName":"The Judge","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":52},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"identifications":{"mainAttackDamage":20,"spellDamage":15,"healthRegen":15,"lifeSteal":-80,"manaSteal":-8,"xpBonus":15,"lootBonus":15},"base":{"baseHealth":750},"rarity":"rare"},"Robin":{"internalName":"Robin","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":120,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"mage","defence":20,"agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":11,"raw":11,"max":16},"baseFireDamage":{"min":5,"raw":5,"max":9},"baseAirDamage":{"min":4,"raw":4,"max":11}},"rarity":"unique"},"Jinxed Coif":{"internalName":"Jinxed Coif","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":52,"strength":15,"dexterity":25},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"healthRegenRaw":{"min":-47,"raw":-36,"max":-25},"lifeSteal":{"min":17,"raw":55,"max":72},"manaSteal":{"min":2,"raw":5,"max":7},"lootBonus":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":750,"baseEarthDefence":20,"baseThunderDefence":40},"rarity":"rare"},"Placid Step":{"internalName":"Placid Step","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"intelligence":45},"powderSlots":2,"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":565,"baseThunderDefence":-30,"baseWaterDefence":40},"rarity":"unique"},"Chimney":{"internalName":"Chimney","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":52,"defence":25,"agility":25},"powderSlots":2,"identifications":{"rawDefence":5,"rawAgility":5,"healthRegen":{"min":6,"raw":20,"max":26},"exploding":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":4,"raw":12,"max":16},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":760,"baseWaterDefence":-55,"baseFireDefence":55,"baseAirDefence":55},"rarity":"rare"},"Luminis":{"internalName":"Luminis","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":52,"intelligence":30},"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"rawSpellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseThunderDefence":-15},"rarity":"rare"},"Hellkite's Wing":{"internalName":"Hellkite's Wing","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":144,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"mage","dexterity":10,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawIntelligence":-5,"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":3,"raw":9,"max":12},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseThunderDamage":{"min":32,"raw":32,"max":72},"baseFireDamage":{"min":40,"raw":40,"max":48}},"rarity":"rare"},"Kenaz":{"internalName":"Kenaz","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":148,"dropRestriction":"normal","requirements":{"level":52,"classRequirement":"warrior","defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawHealth":{"min":45,"raw":150,"max":195},"reflection":{"min":4,"raw":13,"max":17},"waterDamage":{"min":-6,"raw":-5,"max":-3},"fireDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":62,"raw":62,"max":71},"baseFireDamage":{"min":28,"raw":28,"max":36}},"rarity":"unique"},"Gelatinous Slime Chunk":{"internalName":"Gelatinous Slime Chunk","type":"ingredient","requirements":{"level":52,"skills":["scribing","alchemism","cooking"]},"icon":{"format":"legacy","value":"165:0"},"identifications":{"walkSpeed":{"min":-4,"raw":-4,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":96,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Jungle Slime","coords":[-494,49,-589,8]},{"name":"Jungle Slime","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Jungle Slime","coords":null},{"name":"Queen Slime","coords":[-819,100,-711,3]},{"name":"Manifested Goo","coords":null},{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Biohazard Amalgamate","coords":null}]},"Reptile Scales":{"internalName":"Reptile Scales","type":"ingredient","requirements":{"level":52,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"435:0"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":2},"lifeSteal":{"min":7,"raw":7,"max":13}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hanja Ranger","coords":null},{"name":"Hanja Guardian","coords":null},{"name":"Lizardman Darter","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]},{"name":"Lizardman Bruiser","coords":[[-1724,65,-5204,5],[-1997,57,-5394,12],[-1974,57,-5318,6],[-2122,61,-5319,8],[-1834,58,-5120,20],[-1929,56,-5194,30],[-1833,53,-5262,20],[-1577,53,-5370,30]]}]},"Dancer's Rhythm":{"internalName":"Dancer's Rhythm","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":186,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"archer","agility":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDefence":-5,"rawAgility":7,"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":58,"raw":58,"max":75},"baseAirDamage":{"min":20,"raw":20,"max":28}},"rarity":"unique"},"Saving Grace":{"internalName":"Saving Grace","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":258,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"shaman","intelligence":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":3,"raw":10,"max":13},"waterDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDamage":{"min":45,"raw":45,"max":55},"baseFireDamage":{"min":70,"raw":70,"max":80}},"rarity":"rare"},"Onyx":{"internalName":"Onyx","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":210,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"assassin","strength":15,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":5,"rawDefence":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":90,"raw":300,"max":390},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":70,"raw":70,"max":70},"baseEarthDamage":{"min":35,"raw":35,"max":35},"baseFireDamage":{"min":10,"raw":10,"max":60}},"rarity":"unique"},"Vampire Touch":{"internalName":"Vampire Touch","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":194,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"assassin","dexterity":12},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":17,"raw":55,"max":72},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":35,"raw":35,"max":60},"baseThunderDamage":{"min":20,"raw":20,"max":40}},"rarity":"unique"},"Moonlight":{"internalName":"Moonlight","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":216,"dropRestriction":"never","identified":true,"requirements":{"level":51,"classRequirement":"shaman","intelligence":16,"agility":16},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"mainAttackDamage":-15,"healthRegenRaw":25,"waterDefence":10,"airDefence":10,"elementalDefence":15},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseWaterDamage":{"min":25,"raw":25,"max":35},"baseAirDamage":{"min":25,"raw":25,"max":35}},"rarity":"unique"},"Jagged Bone Necklace":{"internalName":"Jagged Bone Necklace","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":51,"dexterity":15,"agility":15},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawDexterity":2,"rawAgility":2,"rawDamage":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":-55,"baseThunderDefence":15,"baseAirDefence":15},"rarity":"rare"},"Pacemaker":{"internalName":"Pacemaker","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"dexterity":20},"powderSlots":2,"identifications":{"rawHealth":{"min":47,"raw":155,"max":202},"walkSpeed":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":570,"baseEarthDefence":-20,"baseThunderDefence":50,"baseWaterDefence":-10,"baseFireDefence":-10,"baseAirDefence":-10},"rarity":"rare"},"Sharpened Stylus":{"internalName":"Sharpened Stylus","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"mage","dexterity":17,"intelligence":17},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"mainAttackDamage":{"min":4,"raw":14,"max":18},"spellDamage":{"min":4,"raw":14,"max":18},"rawHealth":{"min":-221,"raw":-170,"max":-119},"thunderDamage":{"min":4,"raw":14,"max":18},"waterDamage":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":15,"raw":15,"max":19},"baseThunderDamage":{"min":15,"raw":15,"max":19},"baseWaterDamage":{"min":15,"raw":15,"max":19}},"rarity":"unique"},"Black Veil":{"internalName":"Black Veil","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":51},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"poison":{"min":32,"raw":105,"max":137},"lifeSteal":{"min":15,"raw":49,"max":64},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":-10,"raw":-8,"max":-6},"lootBonus":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":570,"baseEarthDefence":-30,"baseThunderDefence":30},"rarity":"rare"},"Sano's Wisdom":{"internalName":"Sano's Wisdom","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"intelligence":15,"agility":10},"powderSlots":2,"identifications":{"healthRegenRaw":{"min":8,"raw":25,"max":33},"manaRegen":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":8,"raw":25,"max":33},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":565,"baseWaterDefence":35,"baseAirDefence":15},"rarity":"rare"},"Hardline":{"internalName":"Hardline","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"strength":25,"defence":25},"powderSlots":1,"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-10,"raw":-8,"max":-6},"rawHealth":{"min":98,"raw":325,"max":423},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":650,"baseEarthDefence":35,"baseWaterDefence":-20,"baseFireDefence":20,"baseAirDefence":-20},"rarity":"unique"},"Hexed Amulet":{"internalName":"Hexed Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":51},"lore":"Although the warlock's curse placed upon this simple, Olux-crafted charm will reduce the abilities of the wearer significantly, its original luck-bolstering properties still are in place.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"rawStrength":-2,"rawDexterity":-2,"rawIntelligence":-2,"rawDefence":-2,"rawAgility":-2,"xpBonus":{"min":5,"raw":16,"max":21},"lootBonus":{"min":5,"raw":16,"max":21},"stealing":{"min":2,"raw":5,"max":7}},"rarity":"legendary"},"Sandscar":{"internalName":"Sandscar","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":144,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":5,"rawAgility":5,"poison":{"min":110,"raw":365,"max":475},"earthDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":-6,"raw":-5,"max":-3},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":26,"raw":26,"max":42},"baseEarthDamage":{"min":16,"raw":16,"max":28},"baseAirDamage":{"min":10,"raw":10,"max":18}},"rarity":"unique"},"Fibreglass":{"internalName":"Fibreglass","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":188,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"assassin","strength":17,"agility":17},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":14,"raw":46,"max":60},"spellDamage":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseEarthDamage":{"min":10,"raw":10,"max":40},"baseAirDamage":{"min":0,"raw":0,"max":50}},"rarity":"unique"},"Pure Iron Helmet":{"internalName":"Pure Iron Helmet","type":"armour","armourType":"helmet","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":51},"powderSlots":2,"base":{"baseHealth":440},"rarity":"common"},"Great Brace":{"internalName":"Great Brace","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":51,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"healthRegen":{"min":2,"raw":5,"max":7},"healthRegenRaw":{"min":5,"raw":18,"max":23},"waterDamage":{"min":-9,"raw":-7,"max":-5},"fireDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":150,"baseWaterDefence":-20,"baseFireDefence":20},"rarity":"unique"},"Zombified Branch":{"internalName":"Zombified Branch","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":115,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"lifeSteal":{"min":17,"raw":55,"max":72},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":126,"raw":126,"max":150}},"rarity":"unique"},"Dinosaur":{"internalName":"Dinosaur","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":51},"powderSlots":1,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"identifications":{"rawStrength":3,"rawIntelligence":-5,"mainAttackDamage":6,"thorns":5},"base":{"baseHealth":650,"baseEarthDefence":40,"baseAirDefence":-50},"rarity":"unique"},"Tainted Step":{"internalName":"Tainted Step","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"strength":30},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"poison":{"min":42,"raw":140,"max":182},"lifeSteal":{"min":13,"raw":42,"max":55}},"base":{"baseHealth":550,"baseWaterDefence":-25,"baseFireDefence":-25,"baseAirDefence":-25},"rarity":"unique"},"Overly Ironed Pants":{"internalName":"Overly Ironed Pants","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51},"powderSlots":3,"identifications":{"exploding":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":610},"rarity":"unique"},"Ozone":{"internalName":"Ozone","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":275,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"archer","dexterity":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDefence":-10,"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":64},"baseAirDamage":{"min":21,"raw":21,"max":43}},"rarity":"rare"},"Nacreous":{"internalName":"Nacreous","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"strength":11,"dexterity":11,"intelligence":11,"defence":11,"agility":11},"powderSlots":3,"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"xpBonus":{"min":3,"raw":9,"max":12},"lootBonus":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":600,"baseEarthDefence":30,"baseThunderDefence":30,"baseWaterDefence":30,"baseFireDefence":30,"baseAirDefence":30},"rarity":"rare"},"Catamaran":{"internalName":"Catamaran","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":236,"dropRestriction":"never","requirements":{"level":51,"classRequirement":"warrior","intelligence":40,"agility":40},"majorIds":{"Rally":"+Rally: Charge heals you by 10% and nearby allies by 15% on impact, but becomes harmless."},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawAgility":5,"rawWaterSpellDamage":{"min":26,"raw":85,"max":111},"rawHealth":{"min":-299,"raw":-230,"max":-161},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":5,"raw":15,"max":20},"sprint":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":0,"raw":0,"max":10},"baseWaterDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":20,"raw":20,"max":30}},"rarity":"fabled"},"Moisture":{"internalName":"Moisture","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"intelligence":30,"agility":30},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawSpellDamage":{"min":12,"raw":40,"max":52},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":550,"baseThunderDefence":-50,"baseWaterDefence":15,"baseAirDefence":20},"rarity":"unique"},"Tears":{"internalName":"Tears","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":51,"intelligence":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"155","name":"ring.water2"}},"identifications":{"rawIntelligence":3,"spellDamage":{"min":1,"raw":3,"max":4},"lifeSteal":{"min":-27,"raw":-21,"max":-15},"manaSteal":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Bloodbag":{"internalName":"Bloodbag","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":232,"dropRestriction":"never","requirements":{"level":51,"classRequirement":"shaman","defence":50},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":75,"raw":250,"max":325},"healingEfficiency":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseFireDamage":{"min":60,"raw":60,"max":75}},"rarity":"rare"},"Empathy Purge":{"internalName":"Empathy Purge","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":51,"defence":50},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawIntelligence":-7,"rawFireMainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":11,"raw":37,"max":48},"thorns":{"min":5,"raw":18,"max":23},"rawAttackSpeed":1,"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":820,"baseFireDefence":30},"rarity":"legendary"},"Longtail Boots":{"internalName":"Longtail Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":51},"powderSlots":3,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"identifications":{"healthRegen":20,"thorns":7,"walkSpeed":14},"base":{"baseHealth":600},"rarity":"unique"},"Ghostly Tunic":{"internalName":"Ghostly Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(118,97,135)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":51,"intelligence":45},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":520,"baseEarthDefence":-25,"baseWaterDefence":30},"rarity":"set"},"Noisemaker":{"internalName":"Noisemaker","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"agility":35},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":3,"raw":9,"max":12},"rawHealth":{"min":-156,"raw":-120,"max":-84},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":525,"baseEarthDefence":-15,"baseFireDefence":-15,"baseAirDefence":25},"rarity":"unique"},"Standard Chain Leggings":{"internalName":"Standard Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51},"powderSlots":2,"base":{"baseHealth":470},"rarity":"common"},"Medecin":{"internalName":"Medecin","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":215,"dropRestriction":"never","identified":true,"requirements":{"level":51,"classRequirement":"archer","intelligence":25},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":2,"mainAttackDamage":-10,"spellDamage":10,"manaRegen":6,"reflection":5},"base":{"baseDamage":{"min":34,"raw":34,"max":52},"baseWaterDamage":{"min":34,"raw":34,"max":52}},"rarity":"unique"},"Hecatomb":{"internalName":"Hecatomb","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":195,"dropRestriction":"never","requirements":{"level":51,"classRequirement":"warrior","strength":30,"defence":20},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-260,"raw":-200,"max":-140},"poison":{"min":255,"raw":850,"max":1105},"xpBonus":{"min":4,"raw":14,"max":18},"earthDamage":{"min":7,"raw":22,"max":29},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":7,"raw":22,"max":29}},"base":{"baseEarthDamage":{"min":60,"raw":60,"max":80},"baseFireDamage":{"min":50,"raw":50,"max":70}},"rarity":"legendary"},"Bridge of the Divide":{"internalName":"Bridge of the Divide","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"dexterity":20,"intelligence":20},"powderSlots":2,"lore":"These leggings hold the interest of many researching the corruption, as they are the only documented case of a non-corrupt fusion of dark and light energy, made of pure twilight.","identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":6,"raw":20,"max":26},"waterDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":650,"baseThunderDefence":50,"baseWaterDefence":50},"rarity":"legendary"},"Reaper of Soul":{"internalName":"Reaper of Soul","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":268,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"assassin"},"powderSlots":2,"lore":"A grave digger uncovered this blade from the resting place of a notorious pirate that pillaged the islands of the ocean for four decades.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawAgility":7,"lifeSteal":{"min":30,"raw":100,"max":130},"manaSteal":{"min":2,"raw":8,"max":10},"stealing":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":90,"raw":90,"max":170}},"rarity":"legendary"},"Oasis":{"internalName":"Oasis","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":226,"dropRestriction":"normal","requirements":{"level":51,"classRequirement":"shaman","strength":18,"intelligence":18},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"healthRegenRaw":{"min":7,"raw":24,"max":31},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":36,"raw":36,"max":37},"baseEarthDamage":{"min":108,"raw":108,"max":128},"baseWaterDamage":{"min":108,"raw":108,"max":128}},"rarity":"unique"},"Contamination":{"internalName":"Contamination","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":26,"dropRestriction":"never","requirements":{"level":51,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"spellDamage":{"min":-19,"raw":-15,"max":-10},"poison":{"min":300,"raw":1000,"max":1300},"walkSpeed":{"min":2,"raw":6,"max":8},"exploding":{"min":20,"raw":65,"max":85}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":30}},"rarity":"legendary"},"Slime Boots":{"internalName":"Slime Boots","type":"armour","armourType":"boots","armourColor":"rgb(35,137,19)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":51,"strength":15,"defence":35},"powderSlots":2,"identifications":{"rawStrength":7,"rawDefence":5,"rawAgility":-4,"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":715},"rarity":"set"},"Dust Bowl":{"internalName":"Dust Bowl","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":51,"strength":20,"agility":15},"identifications":{"rawStrength":7,"rawSpellDamage":{"min":-39,"raw":-30,"max":-21},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":500,"baseEarthDefence":15,"baseAirDefence":20},"rarity":"unique"},"Viscous Slime":{"internalName":"Viscous Slime","type":"ingredient","requirements":{"level":51,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"poison":{"min":175,"raw":175,"max":195}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Thunder Grub","coords":[-583,27,-817,2]},{"name":"Jungle Slime","coords":[-494,49,-589,8]},{"name":"Jungle Slime","coords":[[-549,63,-694,34],[-607,66,-640,38],[-525,68,-642,31],[-514,73,-766,25],[-619,60,-756,36],[-699,62,-729,32]]},{"name":"Jungle Slime","coords":null},{"name":"Queen Slime","coords":[-819,100,-711,3]},{"name":"Ijaba Molsk","coords":[[-560,69,-661,70],[-592,60,-776,70],[-551,60,-881,55]]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Corroded Chunk":{"internalName":"Corroded Chunk","type":"ingredient","requirements":{"level":51,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"336:0"},"identifications":{"mainAttackDamage":{"min":-6,"raw":-6,"max":-4},"rawMainAttackDamage":{"min":20,"raw":20,"max":24}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Skien's Scout","coords":[[438,2,-3489,12],[422,4,-3469,10],[404,6,-3451,10],[382,10,-3441,12],[412,6,-3451,8],[413,63,-3558,10]]},{"name":"Skien's Scout","coords":[[378,63,-3523,10],[383,71,-3517,10],[371,79,-3529,10],[385,79,-3526,10]]},{"name":"Skien's Footsoldier","coords":[[438,2,-3489,12],[422,4,-3469,10],[404,6,-3451,10],[382,10,-3441,12],[412,6,-3451,8],[413,63,-3558,10]]},{"name":"Skien's Footsoldier","coords":[[386,1,-3523,5],[379,1,-3540,5],[367,1,-3532,5],[351,1,-3517,5],[338,1,-3501,5],[356,2,-3495,5]]},{"name":"Skien's Bowman","coords":[[448,58,-3576,8],[477,40,-3498,12],[441,39,-3458,10],[351,52,-3426,10],[405,6,-3468,3]]},{"name":"Skien's Bowman","coords":[[399,70,-3574,0],[373,72,-3557,0],[330,69,-3566,0]]},{"name":"Skien's Bomber","coords":[[306,63,-3523,1],[349,55,-3594,1],[369,49,-3610,1],[393,44,-3626,1],[502,33,-3593,4],[502,33,-3593,4],[413,36,-3404,1],[500,34,-3492,1],[414,35,-3403,1]]},{"name":"Skien's Bomber","coords":[380,64,-3574,1]},{"name":"Skien's Jailkeeper","coords":[343,1,-3538,9]},{"name":"Skien's Elite","coords":[[468,40,-3533,10],[422,42,-3517,15],[398,54,-3485,15],[382,53,-3480,15],[348,58,-3467,15],[351,59,-3496,15]]},{"name":"Skien's Elite","coords":[[385,50,-3523,5],[369,50,-3525,5],[363,50,-3544,5]]}]},"Primitive Delicacy":{"internalName":"Primitive Delicacy","type":"ingredient","requirements":{"level":51,"skills":["cooking"]},"icon":{"format":"legacy","value":"412:0"},"identifications":{"spellDamage":{"min":-10,"raw":-10,"max":-6}},"tier":1,"consumableOnlyIDs":{"duration":90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hanja Brood Guard","coords":null},{"name":"Cursed Silk Spider","coords":[-1762,65,-5205,45]}]},"Winter Solstice":{"internalName":"Winter Solstice","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":50,"dexterity":20,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawSpellDamage":31,"healthRegenRaw":-13,"manaRegen":4,"manaSteal":3},"base":{"baseHealth":-195},"rarity":"legendary"},"Piranha Oil 3":{"internalName":"Refined Piranha Oil 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilPiranha"}},"tier":3},"Rye String 1":{"internalName":"Refined Rye String 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRye"}},"tier":1},"Silver Gem 2":{"internalName":"Refined Silver Gem 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"68","name":"profession.gemSilver"}},"tier":2},"Jungle Wood 1":{"internalName":"Refined Jungle Wood 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"58c0fee4cb1f9256007c35a4afb10e65e1315ed070588a133e51130463bf6f5f"},"tier":1},"Silver Ingot 3":{"internalName":"Refined Silver Ingot 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"56","name":"profession.ingotSilver"}},"tier":3},"Piranha Meat 3":{"internalName":"Refined Piranha Meat 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatPiranha"}},"tier":3},"Jungle Wood 2":{"internalName":"Refined Jungle Wood 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"58c0fee4cb1f9256007c35a4afb10e65e1315ed070588a133e51130463bf6f5f"},"tier":2},"Rye Grains 3":{"internalName":"Refined Rye Grains 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRye"}},"tier":3},"Piranha Meat 1":{"internalName":"Refined Piranha Meat 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatPiranha"}},"tier":1},"Cupid":{"internalName":"Cupid","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":50,"strength":20,"intelligence":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"rawMainAttackDamage":-19,"spellDamage":-10,"healthRegen":10,"healthRegenRaw":12,"manaRegen":6},"base":{"baseEarthDefence":5,"baseWaterDefence":10},"rarity":"rare"},"Unrefined Leggings":{"internalName":"Unrefined Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"strength":25},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"lootBonus":{"min":4,"raw":13,"max":17},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":500,"baseEarthDefence":30},"rarity":"unique"},"Standard Chain Boots":{"internalName":"Standard Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50},"powderSlots":2,"base":{"baseHealth":445},"rarity":"common"},"Treat":{"internalName":"Treat","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","requirements":{"level":50,"quest":"A Grave Mistake"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"exploding":{"min":-13,"raw":-10,"max":-7},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":50},"rarity":"set"},"Flawless Light Spruce Dagger":{"internalName":"Flawless Light Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":144,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":41,"raw":41,"max":52}},"rarity":"common"},"Foreword":{"internalName":"Foreword","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":250,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"shaman","agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"walkSpeed":20,"xpBonus":20,"lootBonus":20,"airDamage":20,"airDefence":20},"base":{"baseDamage":{"min":5,"raw":5,"max":10},"baseAirDamage":{"min":90,"raw":90,"max":95}},"rarity":"rare"},"Incandescent":{"internalName":"Incandescent","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"intelligence":20,"defence":20},"powderSlots":2,"identifications":{"healthRegen":{"min":4,"raw":13,"max":17},"reflection":{"min":5,"raw":17,"max":22},"rawMaxMana":{"min":8,"raw":25,"max":33},"xpBonus":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":450,"baseEarthDefence":-50,"baseWaterDefence":35,"baseFireDefence":35},"rarity":"unique"},"Hero's Mask":{"internalName":"Hero's Mask","type":"armour","armourType":"helmet","dropRestriction":"never","requirements":{"level":50},"powderSlots":2,"lore":"It bears the visage of a great hero. Thank you for participating in the Festival of the Heroes!","icon":{"format":"skin","value":"79b5adc800fdea323b71d4ea081f371269874e15c81eb70c3d906b10c90ac5e4"},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":700,"baseEarthDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"Decaybound Spindle":{"internalName":"Decaybound Spindle","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":356,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"shaman","strength":45},"majorIds":{"Gruesome Knots":"+Gruesome Knots: Bleeding and Twisted Tether deal double damage, but Bleeding duration is reduced."},"powderSlots":2,"lore":"Decay spreads unseen, but you know it spreads, and that is enough.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"poison":{"min":390,"raw":1300,"max":1690},"rawHealth":{"min":-422,"raw":-325,"max":-227},"healthRegenRaw":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseEarthDamage":{"min":40,"raw":40,"max":50}},"rarity":"fabled"},"Air Relic Bow":{"internalName":"Air Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":237,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer","agility":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":7,"rawSpellDamage":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseAirDamage":{"min":45,"raw":45,"max":70}},"rarity":"rare"},"Earthmover":{"internalName":"Earthmover","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":188,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"warrior","strength":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawEarthDamage":{"min":23,"raw":75,"max":98},"poison":{"min":225,"raw":750,"max":975},"raw1stSpellCost":{"min":-1,"raw":-4,"max":-5},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":50,"raw":50,"max":55},"baseEarthDamage":{"min":65,"raw":65,"max":80}},"rarity":"rare"},"Quickshot":{"internalName":"Quickshot","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":205,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"archer","dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":8,"xpBonus":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":55,"raw":55,"max":77}},"rarity":"unique"},"Ignatius":{"internalName":"Ignatius","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":206,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"shaman","defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":5,"healthRegen":{"min":2,"raw":5,"max":7},"healthRegenRaw":{"min":8,"raw":25,"max":33},"rawHealth":{"min":45,"raw":150,"max":195},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseFireDamage":{"min":70,"raw":70,"max":80}},"rarity":"unique"},"Culex":{"internalName":"Culex","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"agility":20},"powderSlots":2,"identifications":{"rawAgility":9,"poison":{"min":52,"raw":172,"max":224},"lifeSteal":{"min":18,"raw":60,"max":78}},"base":{"baseHealth":585,"baseThunderDefence":-25,"baseAirDefence":-20},"rarity":"rare"},"Static Flood":{"internalName":"Static Flood","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":178,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"assassin","dexterity":35,"intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"mainAttackDamage":{"min":-21,"raw":-16,"max":-11},"spellDamage":{"min":2,"raw":5,"max":7},"healthRegen":{"min":-19,"raw":-15,"max":-10},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":4,"raw":13,"max":17},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseThunderDamage":{"min":7,"raw":7,"max":42},"baseWaterDamage":{"min":42,"raw":42,"max":51}},"rarity":"unique"},"Ragni's Mail":{"internalName":"Ragni's Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"strength":20,"defence":5},"powderSlots":2,"lore":"One of the few remaining standard issue mails that were used against the first hordes to emerge from the infamous portal over 1000 years ago.","identifications":{"rawDefence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-32,"raw":-25,"max":-17},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":850,"baseEarthDefence":60,"baseAirDefence":-30},"rarity":"legendary"},"Monk's Battle Staff":{"internalName":"Monk's Battle Staff","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":149,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"mage","strength":29},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":39,"raw":130,"max":169},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawSpellDamage":{"min":-58,"raw":-45,"max":-31},"walkSpeed":{"min":1,"raw":3,"max":4},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":110,"raw":110,"max":130},"baseEarthDamage":{"min":45,"raw":45,"max":75}},"rarity":"rare"},"Ballad":{"internalName":"Ballad","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"intelligence":30,"defence":20},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"healthRegen":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":500,"baseWaterDefence":20,"baseFireDefence":20},"rarity":"unique"},"Mistletoe":{"internalName":"Mistletoe","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":50,"strength":10,"intelligence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"earthDamage":5,"waterDamage":5,"earthDefence":6,"waterDefence":6},"base":{"baseHealth":120,"baseEarthDefence":20,"baseWaterDefence":20},"rarity":"unique"},"Spine":{"internalName":"Spine","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":102,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"mage","dexterity":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"thorns":{"min":3,"raw":10,"max":13},"exploding":{"min":3,"raw":10,"max":13},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":11,"raw":11,"max":22},"baseThunderDamage":{"min":1,"raw":1,"max":32}},"rarity":"unique"},"Elf Robe":{"internalName":"Elf Robe","type":"armour","armourType":"chestplate","armourColor":"rgb(114,178,56)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":50,"defence":35},"powderSlots":3,"identifications":{"rawDefence":5,"healthRegenRaw":35,"lootBonus":8},"base":{"baseHealth":775,"baseFireDefence":40,"baseAirDefence":10},"rarity":"set"},"Ghostly Pants":{"internalName":"Ghostly Pants","type":"armour","armourType":"leggings","armourColor":"rgb(118,97,135)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":50,"dexterity":45},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-31,"raw":-24,"max":-17},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":550,"baseEarthDefence":-30,"baseThunderDefence":30},"rarity":"set"},"Pigman's Ribbing":{"internalName":"Pigman's Ribbing","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"strength":20},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-19,"raw":-15,"max":-10},"thorns":{"min":2,"raw":5,"max":7},"earthDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":550,"baseEarthDefence":30,"baseFireDefence":10,"baseAirDefence":-20},"rarity":"unique"},"Coronium":{"internalName":"Coronium","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"dexterity":20,"defence":15},"powderSlots":1,"identifications":{"rawDefence":5,"healthRegen":{"min":-10,"raw":-8,"max":-6},"healingEfficiency":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":550,"baseThunderDefence":30,"baseWaterDefence":-40},"rarity":"unique"},"Elf Cap":{"internalName":"Elf Cap","type":"armour","armourType":"helmet","armourColor":"rgb(114,178,56)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":50,"agility":35},"powderSlots":2,"identifications":{"rawAgility":5,"walkSpeed":8,"lootBonus":9},"base":{"baseHealth":640,"baseFireDefence":10,"baseAirDefence":40},"rarity":"set"},"Blasphemy":{"internalName":"Blasphemy","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":50,"intelligence":40},"powderSlots":2,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"lifeSteal":66,"manaSteal":16,"xpBonus":10},"base":{"baseHealth":540,"baseWaterDefence":30},"rarity":"legendary"},"Earth Relic Bow":{"internalName":"Earth Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":290,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer","strength":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":150,"raw":150,"max":200},"baseEarthDamage":{"min":150,"raw":150,"max":200}},"rarity":"rare"},"Elf Pants":{"internalName":"Elf Pants","type":"armour","armourType":"leggings","armourColor":"rgb(114,178,56)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":50,"defence":25,"agility":10},"powderSlots":2,"identifications":{"healthRegenRaw":30,"walkSpeed":6,"lootBonus":9},"base":{"baseHealth":730,"baseFireDefence":30,"baseAirDefence":20},"rarity":"set"},"Doppler":{"internalName":"Doppler","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"dexterity":25,"agility":25},"powderSlots":2,"identifications":{"rawDefence":-5,"spellDamage":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16},"fireDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseHealth":400,"baseEarthDefence":-45,"baseThunderDefence":30,"baseFireDefence":-45,"baseAirDefence":30},"rarity":"unique"},"Flawless Light Spruce Relik":{"internalName":"Flawless Light Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":170,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":67,"raw":67,"max":69}},"rarity":"common"},"Cooler":{"internalName":"Cooler","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"intelligence":20},"powderSlots":2,"identifications":{"rawIntelligence":5,"rawSpellDamage":{"min":17,"raw":55,"max":72},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-14,"raw":-11,"max":-8},"fireDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":490,"baseThunderDefence":-30,"baseWaterDefence":40,"baseFireDefence":-30,"baseAirDefence":25},"rarity":"unique"},"Morph-Iron":{"internalName":"Morph-Iron","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"strength":22,"dexterity":22,"intelligence":22,"defence":22,"agility":22},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":600,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"set"},"Cremation":{"internalName":"Cremation","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":50,"defence":15},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawAgility":-4,"rawFireDamage":{"min":9,"raw":30,"max":39},"rawFireSpellDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseFireDefence":15},"rarity":"legendary"},"Basaltic Schynbalds":{"internalName":"Basaltic Schynbalds","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"strength":20,"intelligence":20},"powderSlots":2,"identifications":{"healthRegen":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":620,"baseEarthDefence":40,"baseWaterDefence":40},"rarity":"unique"},"Defender":{"internalName":"Defender","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":154,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"assassin","defence":30},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":3,"spellDamage":-6,"rawHealth":400},"base":{"baseDamage":{"min":100,"raw":100,"max":110},"baseFireDamage":{"min":65,"raw":65,"max":95}},"rarity":"unique"},"Binding Brace":{"internalName":"Binding Brace","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","requirements":{"level":50,"dexterity":25},"lore":"An oppressively dark aura emanates from this shackle, dampening both the will and magic potency of those that wear it.","dropMeta":{"name":"Prison of Souls","type":"altar","coordinates":[51,68,-485]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDexterity":6,"spellDamage":{"min":-5,"raw":-4,"max":-3},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseThunderDefence":25},"rarity":"legendary"},"Marius' Prison":{"internalName":"Marius' Prison","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","requirements":{"level":50,"intelligence":45},"powderSlots":2,"lore":"\"I know the Beast may return one day...but these chains shall bind it for eternity.\" The inscription glows bright in the darkness.","dropMeta":{"name":"Prison of Souls","type":"altar","coordinates":[51,68,-485]},"identifications":{"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"rawSpellDamage":{"min":20,"raw":65,"max":85},"lifeSteal":{"min":15,"raw":51,"max":66},"manaSteal":{"min":3,"raw":10,"max":13},"rawAttackSpeed":-1,"walkSpeed":{"min":-26,"raw":-20,"max":-14},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":685},"rarity":"legendary"},"Fire Relic Bow":{"internalName":"Fire Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":255,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer","defence":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":12,"raw":40,"max":52},"rawHealth":{"min":132,"raw":440,"max":572},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":70,"raw":70,"max":100},"baseFireDamage":{"min":70,"raw":70,"max":100}},"rarity":"rare"},"Battalion":{"internalName":"Battalion","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":50},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"identifications":{"rawDefence":5,"walkSpeed":8,"waterDamage":-10,"fireDamage":5,"airDamage":-10},"base":{"baseHealth":640},"rarity":"unique"},"Conifer":{"internalName":"Conifer","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":225,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"assassin","strength":10,"defence":10,"agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"healthRegen":20,"healthRegenRaw":30,"rawHealth":250,"thorns":20,"walkSpeed":-10},"base":{"baseEarthDamage":{"min":36,"raw":36,"max":64},"baseFireDamage":{"min":42,"raw":42,"max":58},"baseAirDamage":{"min":44,"raw":44,"max":56}},"rarity":"rare"},"Elf Shoes":{"internalName":"Elf Shoes","type":"armour","armourType":"boots","armourColor":"rgb(114,178,56)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":50,"defence":10,"agility":25},"powderSlots":2,"identifications":{"healthRegen":15,"walkSpeed":6,"lootBonus":9},"base":{"baseHealth":685,"baseFireDefence":20,"baseAirDefence":30},"rarity":"set"},"Wipe":{"internalName":"Wipe","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":150,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"mage","agility":50},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":15,"mainAttackDamage":15,"healthRegenRaw":-250,"manaSteal":8,"walkSpeed":28,"airDamage":22},"base":{"baseDamage":{"min":13,"raw":13,"max":21},"baseAirDamage":{"min":26,"raw":26,"max":37}},"rarity":"rare"},"Battle Bishop":{"internalName":"Battle Bishop","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"intelligence":35},"powderSlots":2,"identifications":{"rawStrength":4,"rawIntelligence":4,"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":3,"raw":10,"max":13},"rawSpellDamage":{"min":14,"raw":45,"max":59},"healingEfficiency":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":475,"baseThunderDefence":-30,"baseWaterDefence":60},"rarity":"rare"},"Sleigher":{"internalName":"Sleigher","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":162,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"warrior","strength":10,"agility":20},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawStrength":8,"rawAgility":2,"mainAttackDamage":12,"rawMainAttackDamage":46,"spellDamage":-15,"walkSpeed":12,"earthDamage":20,"fireDefence":-20},"base":{"baseDamage":{"min":35,"raw":35,"max":35},"baseAirDamage":{"min":30,"raw":30,"max":30}},"rarity":"rare"},"Broken Balance":{"internalName":"Broken Balance","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50},"lore":"Torn scraps of metal line the inside of these boots. They provide no protection, instead forcing a constant adrenaline rush while worn.","identifications":{"rawStrength":-7,"rawDexterity":-7,"rawIntelligence":-7,"rawDefence":-7,"rawAgility":-7,"mainAttackDamage":{"min":32,"raw":108,"max":140},"spellDamage":{"min":32,"raw":108,"max":140}},"base":{"baseHealth":-500},"rarity":"legendary"},"Yellow Ornament":{"internalName":"Yellow Ornament","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"xpBonus":6,"thunderDamage":6},"base":{"baseThunderDefence":25},"rarity":"set"},"Water Relic Bow":{"internalName":"Water Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":225,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer","intelligence":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":70,"raw":70,"max":80},"baseWaterDamage":{"min":70,"raw":70,"max":80}},"rarity":"rare"},"Flawless Light Spruce Wand":{"internalName":"Flawless Light Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":85,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":30,"raw":30,"max":38}},"rarity":"common"},"Relic Bow":{"internalName":"Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":306,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer"},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":27,"raw":27,"max":41},"baseEarthDamage":{"min":27,"raw":27,"max":41},"baseThunderDamage":{"min":27,"raw":27,"max":41},"baseWaterDamage":{"min":27,"raw":27,"max":41},"baseFireDamage":{"min":27,"raw":27,"max":41},"baseAirDamage":{"min":27,"raw":27,"max":41}},"rarity":"rare"},"Running Water":{"internalName":"Running Water","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":200,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"shaman","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":9,"walkSpeed":{"min":5,"raw":15,"max":20},"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":30},"baseWaterDamage":{"min":50,"raw":50,"max":70}},"rarity":"unique"},"Thunder Relic Bow":{"internalName":"Thunder Relic Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":278,"dropRestriction":"never","requirements":{"level":50,"classRequirement":"archer","dexterity":20},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-170,76,-694,80]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":35,"raw":35,"max":100},"baseThunderDamage":{"min":35,"raw":35,"max":100}},"rarity":"rare"},"Charm of the Leech":{"internalName":"Charm of the Leech","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":50,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lifeSteal":{"min":6,"raw":21,"max":27},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":100},"rarity":"unique"},"Snowstorm":{"internalName":"Snowstorm","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":239,"dropRestriction":"never","identified":true,"requirements":{"level":50,"classRequirement":"archer","dexterity":20,"intelligence":20,"agility":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":-5,"spellDamage":8,"rawSpellDamage":50,"manaSteal":8,"walkSpeed":12,"xpBonus":12,"fireDefence":-36},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":37},"baseWaterDamage":{"min":0,"raw":0,"max":37},"baseAirDamage":{"min":0,"raw":0,"max":37}},"rarity":"rare"},"Flawless Light Spruce Bow":{"internalName":"Flawless Light Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":175,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":72,"raw":72,"max":98}},"rarity":"common"},"Wasp":{"internalName":"Wasp","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":50,"dexterity":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"healthRegenRaw":{"min":-16,"raw":-12,"max":-8},"poison":{"min":47,"raw":155,"max":202},"thunderDamage":{"min":2,"raw":6,"max":8}},"rarity":"rare"},"Flawless Light Spruce Spear":{"internalName":"Flawless Light Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":116,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":50,"raw":50,"max":63}},"rarity":"common"},"Factory Helmet":{"internalName":"Factory Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"quest item","dropRestriction":"never","requirements":{"level":50,"quest":"An Iron Heart Part I"},"powderSlots":2,"identifications":{"rawDefence":7,"healthRegen":{"min":5,"raw":15,"max":20},"rawHealth":{"min":60,"raw":200,"max":260},"manaRegen":{"min":-8,"raw":-6,"max":-4},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":500},"rarity":"unique"},"Wicked":{"internalName":"Wicked","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"dexterity":20,"defence":20},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":-8,"raw":-6,"max":-4},"exploding":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":550,"baseWaterDefence":-60},"rarity":"unique"},"Templar":{"internalName":"Templar","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":50,"defence":35,"agility":25},"identifications":{"spellDamage":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":6,"max":8},"stealing":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":800,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"unique"},"Spike":{"internalName":"Spike","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":239,"dropRestriction":"normal","requirements":{"level":50,"classRequirement":"assassin","strength":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":2,"raw":5,"max":7},"poison":{"min":96,"raw":320,"max":416},"thorns":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":75,"raw":75,"max":93},"baseEarthDamage":{"min":24,"raw":24,"max":40}},"rarity":"rare"},"Trick":{"internalName":"Trick","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","requirements":{"level":50,"quest":"A Grave Mistake"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"exploding":{"min":3,"raw":10,"max":13},"lootBonus":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":50},"rarity":"set"},"Red Ornament":{"internalName":"Red Ornament","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":50},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"xpBonus":6,"fireDamage":6},"base":{"baseFireDefence":25},"rarity":"set"},"Flesh-forged Circuit":{"internalName":"Flesh-forged Circuit","type":"ingredient","requirements":{"level":50,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"356:0"},"identifications":{"thunderDamage":{"min":4,"raw":4,"max":6},"rawDexterity":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mistake","coords":[-2090,57,-5569,10]}]},"Wriggling Wooden Arm":{"internalName":"Wriggling Wooden Arm","type":"ingredient","requirements":{"level":50,"skills":["woodworking"]},"icon":{"format":"legacy","value":"280:0"},"identifications":{"mainAttackDamage":{"min":8,"raw":8,"max":9},"fireDefence":{"min":-14,"raw":-14,"max":-10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]}]},"Ancient Core":{"internalName":"Ancient Core","type":"ingredient","requirements":{"level":50,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"264:0"},"identifications":{"rawDefence":{"min":3,"raw":3,"max":5},"healingEfficiency":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frost Golem","coords":[[-363,14,-350,6],[-328,14,-355,6],[-306,16,-369,6],[-305,18,-409,6],[-332,17,-438,6],[-362,17,-443,6],[-382,16,-433,6]]},{"name":"Glacial Golem","coords":[[-363,14,-350,6],[-328,14,-355,6],[-306,16,-369,6],[-305,18,-409,6],[-332,17,-438,6],[-362,17,-443,6],[-382,16,-433,6]]}]},"Nightmare Fuel":{"internalName":"Nightmare Fuel","type":"ingredient","requirements":{"level":50,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"manaSteal":{"min":4,"raw":4,"max":4},"lifeSteal":{"min":10,"raw":10,"max":15}},"tier":1,"consumableOnlyIDs":{"duration":-101,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Unfettered","coords":null},{"name":"The Unbound","coords":null}]},"Eye of The Beast":{"internalName":"Eye of The Beast","type":"ingredient","requirements":{"level":50,"skills":["jeweling"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"manaRegen":{"min":4,"raw":4,"max":4},"spellDamage":{"min":-6,"raw":-6,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":-100,"under":-100,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-150000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Unfettered","coords":null}]},"Enchanted Chain Link":{"internalName":"Enchanted Chain Link","type":"ingredient","requirements":{"level":50,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"manaRegen":{"min":-4,"raw":-4,"max":-4},"spellDamage":{"min":8,"raw":8,"max":9},"mainAttackDamage":{"min":7,"raw":7,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"The Unbound","coords":null}]},"Dominant Force":{"internalName":"Dominant Force","type":"ingredient","requirements":{"level":50,"skills":["woodworking","scribing"]},"icon":{"format":"legacy","value":"263:1"},"tier":3,"consumableOnlyIDs":{"duration":-300,"charges":0},"ingredientPositionModifiers":{"left":-50,"right":-50,"above":-75,"under":-75,"touching":120,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-125000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]}]},"Torn Skin":{"internalName":"Torn Skin","type":"ingredient","requirements":{"level":50,"skills":["alchemism"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"poison":{"min":135,"raw":135,"max":155}},"tier":0,"consumableOnlyIDs":{"duration":-66,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Stirge","coords":[[-1927,57,-5294,5],[-2150,62,-5330,5],[-1744,55,-5138,5],[-1521,49,-5183,5],[-1456,46,-5333,5]]},{"name":"Cursed Silk Spider","coords":[-1762,65,-5205,45]},{"name":"Cursed Silk Spiderling","coords":[[-1944,53,-5161,20],[-1939,64,-5154,22],[-1587,54,-5253,22],[-1399,41,-5346,22],[-1848,41,-5369,22]]}]},"Canned Sardines":{"internalName":"Canned Sardines","type":"ingredient","requirements":{"level":50,"skills":["cooking"]},"icon":{"format":"skin","value":"e288f677fa73d89628315a691746dd46fc89b50ec26db03cc2cf3b0f00ec539d"},"identifications":{"thunderDamage":{"min":5,"raw":5,"max":7},"waterDamage":{"min":5,"raw":5,"max":7},"healthRegen":{"min":-3,"raw":-3,"max":-2}},"tier":1,"consumableOnlyIDs":{"duration":-250,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Rye String 2":{"internalName":"Refined Rye String 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRye"}},"tier":2},"Jungle Paper 2":{"internalName":"Refined Jungle Paper 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperJungle"}},"tier":2},"Piranha Oil 1":{"internalName":"Refined Piranha Oil 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilPiranha"}},"tier":1},"Piranha Meat 2":{"internalName":"Refined Piranha Meat 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatPiranha"}},"tier":2},"Piranha Oil 2":{"internalName":"Refined Piranha Oil 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilPiranha"}},"tier":2},"Silver Gem 3":{"internalName":"Refined Silver Gem 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"68","name":"profession.gemSilver"}},"tier":3},"Jungle Wood 3":{"internalName":"Refined Jungle Wood 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"58c0fee4cb1f9256007c35a4afb10e65e1315ed070588a133e51130463bf6f5f"},"tier":3},"Rye String 3":{"internalName":"Refined Rye String 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringRye"}},"tier":3},"Jungle Paper 1":{"internalName":"Refined Jungle Paper 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperJungle"}},"tier":1},"Rye Grains 2":{"internalName":"Refined Rye Grains 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRye"}},"tier":2},"Silver Ingot 1":{"internalName":"Refined Silver Ingot 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"56","name":"profession.ingotSilver"}},"tier":1},"Silver Gem 1":{"internalName":"Refined Silver Gem 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"68","name":"profession.gemSilver"}},"tier":1},"Silver Ingot 2":{"internalName":"Refined Silver Ingot 2","type":"material","identified":true,"requirements":{"level":50},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"56","name":"profession.ingotSilver"}},"tier":2},"Rye Grains 1":{"internalName":"Refined Rye Grains 1","type":"material","identified":true,"requirements":{"level":50},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainRye"}},"tier":1},"Jungle Paper 3":{"internalName":"Refined Jungle Paper 3","type":"material","identified":true,"requirements":{"level":50},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperJungle"}},"tier":3},"Iron Foot":{"internalName":"Iron Foot","type":"armour","armourType":"boots","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":49,"strength":40},"powderSlots":2,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"rawStrength":8,"mainAttackDamage":25,"walkSpeed":-10,"mainAttackRange":25,"earthDamage":15,"fireDefence":-15},"base":{"baseHealth":650,"baseEarthDefence":30},"rarity":"legendary"},"Standard Chain Helmet":{"internalName":"Standard Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49},"powderSlots":2,"base":{"baseHealth":420},"rarity":"common"},"Holocene":{"internalName":"Holocene","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":225,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"shaman","strength":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"raw4thSpellCost":{"min":-1,"raw":-5,"max":-6},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-10,"raw":-8,"max":-6},"waterDamage":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":-10,"raw":-8,"max":-6},"airDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseEarthDamage":{"min":90,"raw":90,"max":110}},"rarity":"unique"},"Cognizance":{"internalName":"Cognizance","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49,"intelligence":40},"powderSlots":2,"identifications":{"rawStrength":-4,"rawIntelligence":12,"rawDefence":-4,"healingEfficiency":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":425},"rarity":"unique"},"Twist Band":{"internalName":"Twist Band","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":49,"intelligence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawAgility":4,"rawSpellDamage":{"min":4,"raw":12,"max":16},"thorns":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Criistal":{"internalName":"Criistal","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":49},"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"188","name":"necklace.multi2"}},"identifications":{"walkSpeed":5,"xpBonus":15,"lootBonus":10},"rarity":"legendary"},"Helm of Andesite":{"internalName":"Helm of Andesite","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49,"strength":20,"agility":10},"powderSlots":2,"identifications":{"rawStrength":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"exploding":{"min":2,"raw":6,"max":8},"earthDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-6,"raw":-5,"max":-3},"waterDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":630,"baseEarthDefence":20,"baseWaterDefence":-40,"baseFireDefence":20},"rarity":"rare"},"Discotek":{"internalName":"Discotek","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":350,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"shaman","strength":11,"dexterity":11,"intelligence":11,"defence":11,"agility":11},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":-390,"raw":-300,"max":-210},"1stSpellCost":{"min":33,"raw":25,"max":18},"3rdSpellCost":{"min":-7,"raw":-24,"max":-31},"walkSpeed":{"min":3,"raw":10,"max":13},"jumpHeight":1},"base":{"baseEarthDamage":{"min":23,"raw":23,"max":33},"baseThunderDamage":{"min":23,"raw":23,"max":33},"baseWaterDamage":{"min":23,"raw":23,"max":33},"baseFireDamage":{"min":23,"raw":23,"max":33},"baseAirDamage":{"min":23,"raw":23,"max":33}},"rarity":"legendary"},"Death's Toe":{"internalName":"Death's Toe","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49,"dexterity":10},"powderSlots":2,"identifications":{"poison":{"min":33,"raw":110,"max":143},"lifeSteal":{"min":8,"raw":28,"max":36},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":450,"baseEarthDefence":-35},"rarity":"unique"},"Razor":{"internalName":"Razor","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"warrior"},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawStrength":7,"rawDexterity":-5,"rawIntelligence":7,"rawDefence":7,"rawAgility":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":-52,"raw":-40,"max":-28},"waterDamage":{"min":6,"raw":20,"max":26},"fireDamage":{"min":6,"raw":20,"max":26},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseThunderDamage":{"min":30,"raw":30,"max":70}},"rarity":"unique"},"Quartron's Eye":{"internalName":"Quartron's Eye","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":49,"quest":"Rise of the Quartron"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"exploding":{"min":3,"raw":10,"max":13},"elementalDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":-60},"rarity":"rare"},"Stagnant":{"internalName":"Stagnant","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":49,"intelligence":15},"powderSlots":2,"dropMeta":{"name":"Olux","type":"merchant","coordinates":[-1746,66,-5512]},"identifications":{"healthRegen":-15,"poison":230,"earthDamage":7,"waterDamage":10},"base":{"baseHealth":370,"baseWaterDefence":40},"rarity":"rare"},"The Traveler":{"internalName":"The Traveler","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":226,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawAgility":8,"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":7,"raw":23,"max":30},"stealing":{"min":1,"raw":2,"max":3},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":59,"raw":59,"max":87}},"rarity":"rare"},"Brook Keeper":{"internalName":"Brook Keeper","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49,"intelligence":15},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8},"waterSpellDamage":{"min":2,"raw":8,"max":10},"rawMaxMana":{"min":8,"raw":25,"max":33},"fireDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":460,"baseThunderDefence":-20,"baseWaterDefence":30},"rarity":"unique"},"Bibliotek":{"internalName":"Bibliotek","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":300,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.basicWood"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"rawHealth":{"min":-390,"raw":-300,"max":-210},"2ndSpellCost":{"min":33,"raw":25,"max":18},"4thSpellCost":{"min":-7,"raw":-24,"max":-31},"xpBonus":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":200,"raw":200,"max":200}},"rarity":"rare"},"Marius' Lament":{"internalName":"Marius' Lament","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":49,"dexterity":5,"intelligence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"rawAgility":5,"lifeSteal":{"min":9,"raw":29,"max":38}},"base":{"baseHealth":-125,"baseEarthDefence":-25,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":-25,"baseAirDefence":15},"rarity":"rare"},"Nordstrom":{"internalName":"Nordstrom","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":105,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"mage","strength":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawAgility":5,"mainAttackDamage":{"min":3,"raw":9,"max":12},"thorns":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":7,"max":9},"airDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":28,"raw":28,"max":54},"baseEarthDamage":{"min":20,"raw":20,"max":38}},"rarity":"unique"},"Eruption":{"internalName":"Eruption","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":357,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"archer","strength":30,"defence":10},"powderSlots":2,"lore":"No one expected the WynnExcavation volcanic site to produce any valuable materials, but this heavy, obsidian-blend bow silenced the critics.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawStrength":7,"rawDefence":9,"mainAttackDamage":{"min":8,"raw":25,"max":33},"spellDamage":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":165,"raw":550,"max":715},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":8,"raw":25,"max":33},"fireDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":250,"raw":250,"max":350},"baseEarthDamage":{"min":100,"raw":100,"max":160}},"rarity":"legendary"},"Heartbreak":{"internalName":"Heartbreak","type":"armour","armourType":"boots","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":49,"dexterity":50},"powderSlots":2,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"rawDexterity":5,"rawAttackSpeed":1,"thunderDamage":10},"base":{"baseHealth":550,"baseThunderDefence":30},"rarity":"legendary"},"Ozoth's Breath":{"internalName":"Ozoth's Breath","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":49,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDexterity":5},"base":{"baseHealth":80,"baseFireDefence":25},"rarity":"unique"},"Sawdust":{"internalName":"Sawdust","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":49},"powderSlots":3,"lore":"Once cursed by a druid who had his grove chopped away by a greedy Villager, it was then purified and mass-produced for sale as armor, to the druid's utter disappointment.","identifications":{"rawAgility":10,"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"thorns":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":3,"raw":9,"max":12},"airDamage":{"min":4,"raw":13,"max":17},"earthDefence":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":700,"baseEarthDefence":30,"baseFireDefence":-40,"baseAirDefence":45},"rarity":"legendary"},"Rigor Mortis":{"internalName":"Rigor Mortis","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":274,"dropRestriction":"never","requirements":{"level":49,"classRequirement":"archer","strength":20,"intelligence":20},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":7,"rawIntelligence":7,"rawEarthMainAttackDamage":{"min":60,"raw":200,"max":260},"rawWaterSpellDamage":{"min":23,"raw":75,"max":98},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":9,"raw":30,"max":39},"slowEnemy":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":90,"raw":90,"max":100},"baseEarthDamage":{"min":125,"raw":125,"max":135},"baseWaterDamage":{"min":100,"raw":100,"max":110}},"rarity":"legendary"},"Ghostly Boots":{"internalName":"Ghostly Boots","type":"armour","armourType":"boots","armourColor":"rgb(118,97,135)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":49,"intelligence":35},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-23,"raw":-18,"max":-13},"rawSpellDamage":{"min":20,"raw":65,"max":85},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":520,"baseEarthDefence":-15,"baseWaterDefence":20},"rarity":"set"},"Twin Daggers":{"internalName":"Twin Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":185,"dropRestriction":"normal","requirements":{"level":49,"classRequirement":"assassin","dexterity":20,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawDexterity":10,"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseThunderDamage":{"min":16,"raw":16,"max":27},"baseAirDamage":{"min":16,"raw":16,"max":27}},"rarity":"unique"},"Large Lapis":{"internalName":"Large Lapis","type":"ingredient","requirements":{"level":49,"skills":["jeweling"]},"icon":{"format":"legacy","value":"351:4"},"identifications":{"rawIntelligence":{"min":-6,"raw":-6,"max":-4},"spellDamage":{"min":4,"raw":4,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-103000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ice Zombie","coords":null},{"name":"Snow Zombie","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Thawing Ice Zombie","coords":[48,75,-534,20]},{"name":"Thawing Snow Zombie","coords":[48,75,-534,20]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Cold Fang","coords":[[-116,67,-890,5],[15,70,-824,5],[22,68,-739,5],[-60,67,-699,5],[3,68,-673,5],[193,72,-735,5],[197,80,-1013,5]]},{"name":"Frigid Fang","coords":[[-388,23,-323,50],[-388,23,-323,50],[-264,23,-342,50],[-264,23,-342,50],[-146,24,-396,70],[-146,24,-396,70],[-42,71,-708,10],[-66,67,-765,10],[11,67,-690,30]]},{"name":"Dire Fang","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Rogue Snowman","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Phantom","coords":[[63,71,-351,7],[92,74,-359,1],[103,79,-406,7],[141,77,-405,12],[142,79,-348,10],[112,74,-338,5],[114,74,-359,3],[114,79,-373,5],[113,79,-392,4],[109,88,-381,5],[116,90,-359,7],[109,88,-341,4],[119,63,-363,9]]},{"name":"Howling Phantom","coords":[[130,77,-379,6],[130,77,-379,6],[99,77,-380,4],[66,71,-335,10],[70,72,-368,10],[82,75,-380,10],[81,74,-334,10],[90,77,-307,10]]},{"name":"Disembodied Head","coords":[[-49,89,-360,8],[-49,87,-323,15],[-37,77,-305,8],[-10,77,-274,10],[-8,82,-254,7],[-45,60,-256,15],[-24,73,-218,10],[-40,71,-217,10]]},{"name":"Frozen Spirit","coords":[48,75,-534,20]},{"name":"Restless Armour","coords":[[-30,78,-342,8],[6,77,-298,6],[17,73,-290,5],[-24,74,-267,8],[-22,72,-248,8],[-37,62,-242,10],[-59,56,-248,6],[-62,63,-255,6]]},{"name":"Rotten Woodcutter","coords":[-191,67,-912,20]},{"name":"Dead Ice Cutter","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Baby Yeti","coords":[[-106,67,-330,6],[-296,82,-534,8],[-229,52,-514,4],[-459,85,-437,4],[-450,70,-296,4],[-377,66,-270,4],[-251,91,-272,4],[-173,64,-546,4]]},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Snow Owl","coords":[[148,72,-986,20],[127,70,-921,20],[219,74,-736,22],[61,67,-959,16]]},{"name":"Penguin","coords":[[-9,71,-850,20],[-2,70,-940,20],[-11,72,-723,22],[-93,70,-861,22]]},{"name":"Cold Shadow","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Snow-Bear","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Enraged Snow-Bear","coords":[[-73,67,-760,5],[-89,69,-879,5],[-145,67,-911,6],[-145,69,-851,6],[0,71,-845,6],[-17,67,-903,6],[42,68,-908,6],[66,70,-825,6],[64,69,-731,6],[15,68,-678,6],[124,74,-705,6],[191,72,-735,6],[216,73,-829,6],[204,77,-948,6],[135,71,-962,6],[105,69,-903,6]]},{"name":"Ice Elemental","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Frozen Berserker","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Frostbite","coords":[[-8,71,-850,20],[222,72,-786,15],[147,72,-986,15],[126,70,-921,15],[-1,70,-940,15],[-10,72,-723,25],[218,74,-736,12],[-92,70,-861,12],[-92,67,-680,6],[60,67,-959,6]]},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]},{"name":"Mountain Zombie","coords":[-132,30,-301,7]}]},"Soul Stone":{"internalName":"Soul Stone","type":"ingredient","requirements":{"level":49,"skills":["jeweling","alchemism"]},"icon":{"format":"legacy","value":"168:1"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"walkSpeed":{"min":3,"raw":3,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]}]},"Hearthfire":{"internalName":"Hearthfire","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":48,"defence":30},"powderSlots":1,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"rawDefence":7,"lifeSteal":60,"fireDefence":45},"base":{"baseHealth":900,"baseFireDefence":50},"rarity":"legendary"},"Shade":{"internalName":"Shade","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":48,"agility":30},"powderSlots":2,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"rawAgility":10,"walkSpeed":20,"airDamage":35,"elementalDamage":-10},"base":{"baseHealth":450,"baseAirDefence":40},"rarity":"legendary"},"Cementing String":{"internalName":"Cementing String","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":210,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"archer","strength":25,"intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"rawStrength":8,"rawAgility":-6,"manaRegen":{"min":2,"raw":6,"max":8},"damage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseEarthDamage":{"min":40,"raw":40,"max":55},"baseWaterDamage":{"min":40,"raw":40,"max":55}},"rarity":"unique"},"Fissure":{"internalName":"Fissure","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":191,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"warrior","strength":40},"majorIds":{"Temblor":"+Temblor: Bash gains +1 Area of Effect and is 25% faster."},"powderSlots":2,"lore":"Dwarven folklore tells of this mighty maul, used by gods to break mountains, shape continents, and crack the earth to form caverns.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":5,"raw":18,"max":23},"spellDamage":{"min":-12,"raw":-9,"max":-6},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":8,"raw":26,"max":34},"earthDamage":{"min":3,"raw":11,"max":14},"fireDamage":{"min":8,"raw":25,"max":33},"airDamage":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":80,"raw":80,"max":140},"baseEarthDamage":{"min":70,"raw":70,"max":170}},"rarity":"legendary"},"White Storm":{"internalName":"White Storm","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48},"powderSlots":1,"identifications":{"rawAgility":7,"poison":{"min":39,"raw":130,"max":169},"walkSpeed":{"min":3,"raw":10,"max":13},"earthDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":510,"baseFireDefence":-20,"baseAirDefence":25},"rarity":"unique"},"Glaciate":{"internalName":"Glaciate","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":48,"quest":"Frost Bite","dexterity":20,"intelligence":25},"powderSlots":2,"identifications":{"rawDexterity":7,"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":420,"baseEarthDefence":-30,"baseWaterDefence":30},"rarity":"rare"},"Unholy Wand":{"internalName":"Unholy Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":114,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"mage","dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":4,"rawAgility":-3,"exploding":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":3,"raw":10,"max":13},"airDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":15,"raw":15,"max":35},"baseThunderDamage":{"min":1,"raw":1,"max":60}},"rarity":"rare"},"Pragmatism":{"internalName":"Pragmatism","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"dexterity":10},"powderSlots":3,"identifications":{"rawMainAttackDamage":{"min":18,"raw":59,"max":77},"rawHealth":{"min":-91,"raw":-70,"max":-49},"poison":{"min":46,"raw":154,"max":200},"manaSteal":{"min":-5,"raw":-4,"max":-3},"thorns":{"min":3,"raw":9,"max":12},"exploding":1,"stealing":{"min":1,"raw":3,"max":4},"thunderDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":425},"rarity":"unique"},"Folklore":{"internalName":"Folklore","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":48,"dexterity":15,"intelligence":15},"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"151","name":"ring.fire2"}},"identifications":{"rawDefence":4,"mainAttackDamage":4,"healthRegenRaw":25},"base":{"baseHealth":100,"baseFireDefence":10},"rarity":"rare"},"Dematerialized":{"internalName":"Dematerialized","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":189,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"assassin","intelligence":15,"agility":40},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":8,"rawHealth":{"min":-234,"raw":-180,"max":-126},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":5,"raw":16,"max":21},"earthDefence":{"min":-19,"raw":-15,"max":-10},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":0,"raw":0,"max":61},"baseAirDamage":{"min":0,"raw":0,"max":61}},"rarity":"rare"},"Grenouille":{"internalName":"Grenouille","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":185,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"archer","intelligence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawAgility":5,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":50,"raw":50,"max":75},"baseWaterDamage":{"min":20,"raw":20,"max":35}},"rarity":"unique"},"Marble":{"internalName":"Marble","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":48,"strength":4,"dexterity":4,"intelligence":4,"defence":4,"agility":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"156","name":"ring.multi1"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":90,"baseEarthDefence":4,"baseThunderDefence":4,"baseWaterDefence":4,"baseFireDefence":4,"baseAirDefence":4},"rarity":"rare"},"Melody":{"internalName":"Melody","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":48,"agility":24},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":3,"mainAttackDamage":{"min":1,"raw":4,"max":5},"rawSpellDamage":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":1,"raw":2,"max":3}},"base":{"baseAirDefence":6},"rarity":"unique"},"Sparkles":{"internalName":"Sparkles","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":214,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"archer","dexterity":22},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":38,"raw":38,"max":50},"baseThunderDamage":{"min":18,"raw":18,"max":65}},"rarity":"unique"},"Goswhit":{"internalName":"Goswhit","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"defence":40},"powderSlots":2,"identifications":{"rawDefence":5,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":7,"raw":23,"max":30},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":500,"baseFireDefence":50},"rarity":"unique"},"Iron Scrap":{"internalName":"Iron Scrap","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"strength":10,"defence":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"thorns":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":600,"baseEarthDefence":30,"baseFireDefence":30,"baseAirDefence":-40},"rarity":"unique"},"Mythos":{"internalName":"Mythos","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":48,"intelligence":15,"defence":15},"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"153","name":"ring.thunder2"}},"identifications":{"rawDexterity":4,"spellDamage":4,"lifeSteal":25},"base":{"baseHealth":100,"baseThunderDefence":10},"rarity":"rare"},"Stainless Steel":{"internalName":"Stainless Steel","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":48,"defence":30},"dropMeta":{"name":"Bucie","type":"merchant","coordinates":[-1484,43,-4725]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"reflection":8},"base":{"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"The Nautilus":{"internalName":"The Nautilus","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":140,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"warrior","intelligence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":5,"max":7},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":2,"raw":5,"max":7},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":52,"raw":52,"max":70},"baseWaterDamage":{"min":28,"raw":28,"max":36}},"rarity":"rare"},"Narima Pasukan":{"internalName":"Narima Pasukan","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"strength":8,"dexterity":8,"intelligence":8,"defence":8,"agility":8},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"elementalDamage":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":500},"rarity":"rare"},"Durum's Journey":{"internalName":"Durum's Journey","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48},"identifications":{"rawIntelligence":7,"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":8,"raw":25,"max":33},"rawHealth":{"min":21,"raw":70,"max":91},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":550,"baseEarthDefence":30,"baseThunderDefence":-25,"baseWaterDefence":15,"baseFireDefence":-20},"rarity":"rare"},"Astigmatism":{"internalName":"Astigmatism","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":3,"identifications":{"mainAttackDamage":{"min":5,"raw":18,"max":23},"spellDamage":{"min":5,"raw":18,"max":23},"healthRegen":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":-8,"raw":-6,"max":-4},"elementalDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":600,"baseEarthDefence":-20,"baseThunderDefence":-20,"baseWaterDefence":-20,"baseFireDefence":-20,"baseAirDefence":-20},"rarity":"legendary"},"Foot Warmers":{"internalName":"Foot Warmers","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48,"defence":10},"powderSlots":1,"identifications":{"rawDefence":5,"healthRegen":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"xpBonus":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":2,"raw":6,"max":8},"airDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":550,"baseFireDefence":30},"rarity":"unique"},"Malfunction":{"internalName":"Malfunction","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":155,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"warrior","dexterity":20,"intelligence":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"spellDamage":{"min":4,"raw":14,"max":18},"healthRegen":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":-195,"raw":-150,"max":-105},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-26,"raw":-20,"max":-14},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":50},"baseWaterDamage":{"min":0,"raw":0,"max":50}},"rarity":"unique"},"Col Legno":{"internalName":"Col Legno","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":231,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"shaman","strength":24,"dexterity":24},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDefence":-10,"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"lifeSteal":{"min":-65,"raw":-50,"max":-35},"earthDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":25,"raw":25,"max":30},"baseEarthDamage":{"min":30,"raw":30,"max":35},"baseThunderDamage":{"min":30,"raw":30,"max":35}},"rarity":"unique"},"Ciocca":{"internalName":"Ciocca","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":94,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"mage","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDefence":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseAirDamage":{"min":10,"raw":10,"max":25}},"rarity":"unique"},"Flawed Chain Mail":{"internalName":"Flawed Chain Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":48},"powderSlots":1,"base":{"baseHealth":400},"rarity":"common"},"Chest Breaker":{"internalName":"Chest Breaker","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":136,"dropRestriction":"normal","requirements":{"level":48,"classRequirement":"warrior","strength":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":7,"rawDefence":-4,"mainAttackDamage":{"min":5,"raw":18,"max":23},"spellDamage":{"min":2,"raw":7,"max":9},"rawHealth":{"min":-273,"raw":-210,"max":-147},"exploding":{"min":2,"raw":8,"max":10},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":92}},"rarity":"unique"},"Ghostly Cap":{"internalName":"Ghostly Cap","type":"armour","armourType":"helmet","armourColor":"rgb(118,97,135)","armourMaterial":"leather","dropRestriction":"normal","allowCraftsman":true,"requirements":{"level":48},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"rawSpellDamage":{"min":20,"raw":65,"max":85},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":550,"baseEarthDefence":-20,"baseThunderDefence":20},"rarity":"set"},"Battle Staff":{"internalName":"Battle Staff","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":103,"dropRestriction":"never","identified":true,"requirements":{"level":48,"classRequirement":"mage"},"powderSlots":2,"dropMeta":{"name":"Troms","type":"merchant","coordinates":[-805,70,-920]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"mainAttackDamage":6,"spellDamage":4,"exploding":5,"earthDamage":5},"base":{"baseDamage":{"min":25,"raw":25,"max":30},"baseFireDamage":{"min":15,"raw":15,"max":30}},"rarity":"unique"},"Icy Crampons":{"internalName":"Icy Crampons","type":"ingredient","requirements":{"level":48,"skills":["armouring","tailoring","weaponsmithing"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"sprint":{"min":10,"raw":10,"max":15},"thorns":{"min":8,"raw":8,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-92000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":-5},"droppedBy":[{"name":"Frozen Warrior","coords":[[1078,56,-3331,6],[1078,56,-3331,6],[1077,69,-3332,6],[1077,69,-3332,6],[1093,71,-3341,3],[1109,54,-3337,9],[1109,54,-3337,9],[1108,59,-3357,7],[1108,59,-3357,7],[1083,71,-3374,5],[1066,68,-3377,6],[1054,67,-3365,5],[1077,55,-3368,7],[1077,55,-3368,7]]},{"name":"Icy Ranger","coords":[[1130,46,-3334,4],[1122,70,-3335,1]]},{"name":"Frosted Shaman","coords":[1077,55,-3369,4]},{"name":"Catapult Operator","coords":[[1121,69,-3321,1],[1125,69,-3346,1]]},{"name":"Frigid Climber","coords":[[855,39,-3536,8],[855,39,-3536,8],[855,39,-3536,8],[1085,42,-3410,8],[1098,42,-3422,8],[1074,42,-3423,8],[1083,39,-3298,6],[1083,39,-3298,8],[1083,39,-3298,12],[1127,39,-3366,10],[1125,39,-3393,10],[1144,39,-3380,12]]},{"name":"Gelid Commander","coords":[1075,54,-3358,30]}]},"Yeti Fur":{"internalName":"Yeti Fur","type":"ingredient","requirements":{"level":48,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"waterDefence":{"min":7,"raw":7,"max":9},"airDefence":{"min":7,"raw":7,"max":9},"fireDefence":{"min":-9,"raw":-9,"max":-7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-68000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Baby Yeti","coords":[[-106,67,-330,6],[-296,82,-534,8],[-229,52,-514,4],[-459,85,-437,4],[-450,70,-296,4],[-377,66,-270,4],[-251,91,-272,4],[-173,64,-546,4]]}]},"Ghostly Essence":{"internalName":"Ghostly Essence","type":"ingredient","requirements":{"level":48,"skills":["jeweling","scribing"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"rawAgility":{"min":0,"raw":0,"max":1},"thunderDamage":{"min":0,"raw":0,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-34000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cold Shadow","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Phantom","coords":[[63,71,-351,7],[92,74,-359,1],[103,79,-406,7],[141,77,-405,12],[142,79,-348,10],[112,74,-338,5],[114,74,-359,3],[114,79,-373,5],[113,79,-392,4],[109,88,-381,5],[116,90,-359,7],[109,88,-341,4],[119,63,-363,9]]},{"name":"Howling Phantom","coords":[[130,77,-379,6],[130,77,-379,6],[99,77,-380,4],[66,71,-335,10],[70,72,-368,10],[82,75,-380,10],[81,74,-334,10],[90,77,-307,10]]},{"name":"Restless Armour","coords":[[-30,78,-342,8],[6,77,-298,6],[17,73,-290,5],[-24,74,-267,8],[-22,72,-248,8],[-37,62,-242,10],[-59,56,-248,6],[-62,63,-255,6]]},{"name":"Cavalry Specter","coords":[[-19,74,-368,7],[-19,74,-351,7],[-10,73,-326,7]]},{"name":"Disembodied Head","coords":[[-49,89,-360,8],[-49,87,-323,15],[-37,77,-305,8],[-10,77,-274,10],[-8,82,-254,7],[-45,60,-256,15],[-24,73,-218,10],[-40,71,-217,10]]},{"name":"Frozen Spirit","coords":[48,75,-534,20]},{"name":"Headless Horseman","coords":[-36,72,-213,4]},{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]}]},"Sage":{"internalName":"Sage","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":162,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"mage"},"powderSlots":1,"lore":"Discipline and experience is channeled into these wands for 10 years in the Bantisu monastery of the canyon, in the hope that they will pass on its teachings to less experienced users.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"346","name":"wand.multi2"}},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":8,"raw":25,"max":33},"lootBonus":{"min":3,"raw":10,"max":13},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":54,"raw":54,"max":76}},"rarity":"legendary"},"Smithy":{"internalName":"Smithy","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":47},"dropMeta":{"name":"Bucie","type":"merchant","coordinates":[-1484,43,-4725]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"earthDamage":6,"fireDamage":6,"earthDefence":7,"fireDefence":7},"base":{"baseEarthDefence":10,"baseWaterDefence":-15},"rarity":"unique"},"Bear Opener":{"internalName":"Bear Opener","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":166,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"assassin","strength":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":5,"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegen":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":17,"raw":55,"max":72},"exploding":{"min":2,"raw":8,"max":10},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":90,"raw":90,"max":150},"baseEarthDamage":{"min":60,"raw":60,"max":100}},"rarity":"unique"},"Gale Rider":{"internalName":"Gale Rider","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":102,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"warrior","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawDefence":-5,"rawAgility":8,"rawHealth":{"min":-78,"raw":-60,"max":-42},"walkSpeed":{"min":6,"raw":20,"max":26},"lootBonus":{"min":4,"raw":12,"max":16},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":12,"raw":12,"max":20},"baseAirDamage":{"min":14,"raw":14,"max":20}},"rarity":"unique"},"Threshold":{"internalName":"Threshold","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":272,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"shaman","dexterity":20,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"mainAttackDamage":{"min":-71,"raw":-55,"max":-38},"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"rawSpellDamage":{"min":18,"raw":60,"max":78},"rawHealth":{"min":-156,"raw":-120,"max":-84},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseThunderDamage":{"min":55,"raw":55,"max":77},"baseWaterDamage":{"min":58,"raw":58,"max":74}},"rarity":"rare"},"Refined Iron Chainmail":{"internalName":"Refined Iron Chainmail","type":"armour","armourType":"chestplate","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":47},"powderSlots":1,"base":{"baseHealth":380},"rarity":"common"},"Flawless Diorite Spear":{"internalName":"Flawless Diorite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":107,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":112,"raw":112,"max":145}},"rarity":"common"},"Flawless Diorite Relik":{"internalName":"Flawless Diorite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":162,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":104,"raw":104,"max":112}},"rarity":"common"},"Whistling Helmet":{"internalName":"Whistling Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":47,"agility":30},"powderSlots":2,"identifications":{"rawAgility":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":7,"max":9},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":430,"baseFireDefence":-30,"baseAirDefence":20},"rarity":"unique"},"Interference":{"internalName":"Interference","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":250,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"shaman","dexterity":28},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":7,"rawSpellDamage":{"min":17,"raw":56,"max":73},"lifeSteal":{"min":-49,"raw":-38,"max":-27},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"thunderDamage":{"min":3,"raw":9,"max":12},"earthDefence":{"min":-27,"raw":-21,"max":-15}},"base":{"baseThunderDamage":{"min":3,"raw":3,"max":158}},"rarity":"rare"},"Flawless Diorite Bow":{"internalName":"Flawless Diorite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":160,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":178,"raw":178,"max":207}},"rarity":"common"},"Scorcher":{"internalName":"Scorcher","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":190,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"archer","defence":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"exploding":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":34,"raw":34,"max":40},"baseFireDamage":{"min":50,"raw":50,"max":60}},"rarity":"unique"},"Erhu":{"internalName":"Erhu","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":200,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"assassin","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawAgility":7,"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseAirDamage":{"min":60,"raw":60,"max":100}},"rarity":"rare"},"Flawless Diorite Dagger":{"internalName":"Flawless Diorite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":132,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":60,"raw":60,"max":68}},"rarity":"common"},"Flawless Diorite Wand":{"internalName":"Flawless Diorite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":80,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":47,"raw":47,"max":60}},"rarity":"common"},"Shinespark":{"internalName":"Shinespark","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":47,"dexterity":30,"defence":20},"powderSlots":2,"lore":"There have been many attempts to create a reliable power system in Llevigar, and this plasma-charged helmet was reforged from a notable prototype.","identifications":{"rawSpellDamage":{"min":18,"raw":60,"max":78},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"exploding":{"min":6,"raw":20,"max":26},"earthDamage":{"min":-65,"raw":-50,"max":-35},"thunderDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":575,"baseEarthDefence":-30,"baseWaterDefence":-20},"rarity":"legendary"},"The Creationist":{"internalName":"The Creationist","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":121,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"mage","intelligence":35,"agility":35},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawStrength":-4,"rawDexterity":-4,"rawIntelligence":8,"rawDefence":-4,"rawAgility":8,"mainAttackDamage":{"min":-18,"raw":-14,"max":-10},"spellDamage":{"min":6,"raw":19,"max":25}},"base":{"baseWaterDamage":{"min":17,"raw":17,"max":22},"baseAirDamage":{"min":17,"raw":17,"max":22}},"rarity":"rare"},"Temporal Lantern":{"internalName":"Temporal Lantern","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":303,"dropRestriction":"normal","requirements":{"level":47,"classRequirement":"shaman","defence":22,"agility":22},"powderSlots":2,"lore":"No eyes see past the dark fog that enshrouds the future. But if you could perhaps light the way, what would you see? Invigorating hope? Or a warning to be heeded?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawStrength":-3,"rawDexterity":-3,"rawIntelligence":-3,"rawDefence":8,"rawAgility":8,"healthRegenRaw":{"min":11,"raw":35,"max":46},"rawHealth":{"min":86,"raw":285,"max":371},"healingEfficiency":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseFireDamage":{"min":101,"raw":101,"max":101},"baseAirDamage":{"min":95,"raw":95,"max":107}},"rarity":"legendary"},"Arterial Spray":{"internalName":"Arterial Spray","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":212,"dropRestriction":"never","requirements":{"level":47,"classRequirement":"assassin","dexterity":25,"defence":5},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":10,"manaSteal":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":3,"raw":10,"max":13},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseThunderDamage":{"min":20,"raw":20,"max":60},"baseFireDamage":{"min":25,"raw":25,"max":35}},"rarity":"rare"},"Tarod's Search":{"internalName":"Tarod's Search","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":47,"intelligence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawHealth":{"min":-52,"raw":-40,"max":-28},"reflection":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":2,"raw":7,"max":9},"waterDefence":{"min":2,"raw":6,"max":8}},"base":{"baseWaterDefence":20,"baseAirDefence":10},"rarity":"rare"},"Kaleidoscope":{"internalName":"Kaleidoscope","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":47,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":2,"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":570,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"Dragon Hide Leggings":{"internalName":"Dragon Hide Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":47,"defence":25},"identifications":{"rawStrength":7,"rawDefence":7,"spellDamage":{"min":2,"raw":5,"max":7},"exploding":{"min":1,"raw":3,"max":4},"lootBonus":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-65,"raw":-50,"max":-35},"fireDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":510,"baseWaterDefence":-50,"baseFireDefence":50},"rarity":"unique"},"Flawed Chain Leggings":{"internalName":"Flawed Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":47},"powderSlots":1,"base":{"baseHealth":380},"rarity":"common"},"Viking Stone":{"internalName":"Viking Stone","type":"ingredient","requirements":{"level":47,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"168:0"},"identifications":{"rawIntelligence":{"min":2,"raw":2,"max":3},"waterDamage":{"min":4,"raw":4,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":7,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frozen Warrior","coords":[[1078,56,-3331,6],[1078,56,-3331,6],[1077,69,-3332,6],[1077,69,-3332,6],[1093,71,-3341,3],[1109,54,-3337,9],[1109,54,-3337,9],[1108,59,-3357,7],[1108,59,-3357,7],[1083,71,-3374,5],[1066,68,-3377,6],[1054,67,-3365,5],[1077,55,-3368,7],[1077,55,-3368,7]]},{"name":"Catapult Operator","coords":[[1121,69,-3321,1],[1125,69,-3346,1]]},{"name":"Gelid Commander","coords":[1075,54,-3358,30]}]},"Flashfrost":{"internalName":"Flashfrost","type":"ingredient","requirements":{"level":47,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"174:0"},"identifications":{"waterDamage":{"min":7,"raw":7,"max":10},"walkSpeed":{"min":-4,"raw":-4,"max":-3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-67000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]}]},"Pykrete":{"internalName":"Pykrete","type":"ingredient","requirements":{"level":47,"skills":["woodworking","scribing"]},"icon":{"format":"legacy","value":"168:0"},"identifications":{"waterDefence":{"min":3,"raw":3,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]}]},"Lost Heirloom":{"internalName":"Lost Heirloom","type":"ingredient","requirements":{"level":47,"skills":["tailoring"]},"icon":{"format":"legacy","value":"145:0"},"identifications":{"gatherXpBonus":{"min":3,"raw":3,"max":3},"manaSteal":{"min":4,"raw":4,"max":5},"thunderDamage":{"min":6,"raw":6,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-100000,"strengthRequirement":0,"dexterityRequirement":16,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Twisted Fairy Devourer","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7]]},{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]}]},"Pillaged Fragment":{"internalName":"Pillaged Fragment","type":"ingredient","requirements":{"level":47,"skills":["jeweling"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"stealing":{"min":3,"raw":3,"max":4},"lootBonus":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Restless Armour","coords":[[-30,78,-342,8],[6,77,-298,6],[17,73,-290,5],[-24,74,-267,8],[-22,72,-248,8],[-37,62,-242,10],[-59,56,-248,6],[-62,63,-255,6]]},{"name":"Cavalry Specter","coords":[[-19,74,-368,7],[-19,74,-351,7],[-10,73,-326,7]]}]},"Brainfreeze":{"internalName":"Brainfreeze","type":"armour","armourType":"helmet","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":46},"powderSlots":3,"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"identifications":{"rawIntelligence":-10,"damage":18},"base":{"baseHealth":550,"baseWaterDefence":20,"baseAirDefence":20},"rarity":"rare"},"Nesaak's Will":{"internalName":"Nesaak's Will","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":123,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"warrior","strength":10,"intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"walkSpeed":{"min":-6,"raw":-5,"max":-3},"xpBonus":{"min":3,"raw":11,"max":14},"earthDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":46,"raw":46,"max":68},"baseWaterDamage":{"min":21,"raw":21,"max":29}},"rarity":"unique"},"Butcher's Clever":{"internalName":"Butcher's Clever","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":142,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"assassin","intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":8,"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":40,"raw":40,"max":55},"baseWaterDamage":{"min":40,"raw":40,"max":55}},"rarity":"unique"},"Pewter Ring":{"internalName":"Pewter Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":46,"defence":10},"dropMeta":{"name":"Bucie","type":"merchant","coordinates":[-1484,43,-4725]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawDefence":3},"base":{"baseHealth":70},"rarity":"unique"},"Steel Mail":{"internalName":"Steel Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"healthRegen":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":415},"rarity":"unique"},"Stingray":{"internalName":"Stingray","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":195,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"archer","dexterity":27,"intelligence":27},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":5,"rawIntelligence":8,"spellDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":1,"raw":4,"max":5},"earthDamage":{"min":-18,"raw":-14,"max":-10},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-18,"raw":-14,"max":-10}},"base":{"baseThunderDamage":{"min":20,"raw":20,"max":110},"baseWaterDamage":{"min":50,"raw":50,"max":80}},"rarity":"unique"},"Woebegone":{"internalName":"Woebegone","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":46,"intelligence":20,"defence":20},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"waterSpellDamage":{"min":4,"raw":13,"max":17},"fireSpellDamage":{"min":4,"raw":13,"max":17},"rawHealth":{"min":53,"raw":175,"max":228},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"xpBonus":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":675,"baseWaterDefence":35,"baseFireDefence":35},"rarity":"legendary"},"Ripper":{"internalName":"Ripper","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":46,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":3,"rawMainAttackDamage":{"min":5,"raw":17,"max":22},"xpBonus":{"min":1,"raw":3,"max":4}},"base":{"baseEarthDefence":-6},"rarity":"unique"},"Sorcerer's Stick":{"internalName":"Sorcerer's Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":70,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"mage","dexterity":20,"intelligence":10},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"mainAttackDamage":{"min":-12,"raw":-9,"max":-6},"spellDamage":{"min":4,"raw":14,"max":18},"rawSpellDamage":{"min":15,"raw":50,"max":65},"reflection":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":10,"raw":10,"max":18},"baseThunderDamage":{"min":17,"raw":17,"max":23}},"rarity":"unique"},"Stonebreaker":{"internalName":"Stonebreaker","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":191,"dropRestriction":"never","identified":true,"requirements":{"level":46,"classRequirement":"assassin","strength":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":1,"spellDamage":-5,"lootBonus":5,"waterDamage":-15},"base":{"baseDamage":{"min":120,"raw":120,"max":180},"baseEarthDamage":{"min":60,"raw":60,"max":100}},"rarity":"unique"},"Flawed Chain Boots":{"internalName":"Flawed Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46},"powderSlots":1,"base":{"baseHealth":355},"rarity":"common"},"Wolf Crest":{"internalName":"Wolf Crest","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":46,"agility":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"177","name":"necklace.air1"}},"identifications":{"rawStrength":4,"rawAgility":4,"walkSpeed":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":90},"rarity":"unique"},"Clovis Leg Guards":{"internalName":"Clovis Leg Guards","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46,"strength":20,"agility":20},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawMainAttackDamage":{"min":20,"raw":65,"max":85},"spellDamage":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":2,"raw":8,"max":10},"earthDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":380,"baseEarthDefence":15,"baseFireDefence":-40,"baseAirDefence":15},"rarity":"unique"},"Bravery":{"internalName":"Bravery","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":165,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"assassin","strength":15,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":45,"raw":150,"max":195},"walkSpeed":{"min":2,"raw":6,"max":8},"earthDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":45,"raw":45,"max":65},"baseEarthDamage":{"min":18,"raw":18,"max":22},"baseAirDamage":{"min":20,"raw":20,"max":50}},"rarity":"unique"},"Sunshine Shortsword":{"internalName":"Sunshine Shortsword","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":158,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"assassin","dexterity":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDexterity":5,"rawDefence":5,"rawHealth":{"min":38,"raw":125,"max":163}},"base":{"baseDamage":{"min":13,"raw":13,"max":21},"baseThunderDamage":{"min":13,"raw":13,"max":21},"baseFireDamage":{"min":13,"raw":13,"max":21}},"rarity":"unique"},"Infatuation":{"internalName":"Infatuation","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":155,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"assassin","defence":25,"agility":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawIntelligence":-5,"rawSpellDamage":{"min":-78,"raw":-60,"max":-42},"healthRegen":{"min":5,"raw":15,"max":20},"rawHealth":{"min":135,"raw":450,"max":585},"lifeSteal":{"min":14,"raw":48,"max":62},"airDamage":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":55,"raw":55,"max":70},"baseFireDamage":{"min":27,"raw":27,"max":55}},"rarity":"unique"},"Qaxezine":{"internalName":"Qaxezine","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":186,"dropRestriction":"normal","requirements":{"level":46,"classRequirement":"archer","strength":25,"dexterity":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":14,"thorns":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-27,"raw":-21,"max":-15},"exploding":{"min":4,"raw":12,"max":16},"lootBonus":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":74,"raw":74,"max":82},"baseEarthDamage":{"min":62,"raw":62,"max":84},"baseThunderDamage":{"min":50,"raw":50,"max":96}},"rarity":"unique"},"Shrok":{"internalName":"Shrok","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46,"dexterity":20},"powderSlots":2,"identifications":{"rawDexterity":8,"mainAttackDamage":{"min":1,"raw":4,"max":5},"rawMainAttackDamage":{"min":16,"raw":53,"max":69},"thunderDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":385,"baseEarthDefence":-25,"baseThunderDefence":30},"rarity":"unique"},"The Levee":{"internalName":"The Levee","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46,"intelligence":15,"defence":30},"identifications":{"rawDefence":9,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"waterDamage":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":6,"raw":20,"max":26},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":800,"baseWaterDefence":40,"baseFireDefence":40},"rarity":"legendary"},"Dance Boots":{"internalName":"Dance Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":46,"agility":20},"powderSlots":1,"identifications":{"rawAgility":5,"walkSpeed":{"min":3,"raw":11,"max":14},"earthDamage":{"min":-6,"raw":-5,"max":-3},"fireDamage":{"min":-6,"raw":-5,"max":-3},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":360,"baseEarthDefence":-10,"baseFireDefence":-10,"baseAirDefence":15},"rarity":"unique"},"Brainbleed":{"internalName":"Brainbleed","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":46,"dexterity":20,"defence":20},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"lifeSteal":{"min":14,"raw":45,"max":59},"healingEfficiency":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":600,"baseThunderDefence":20,"baseFireDefence":20},"rarity":"legendary"},"Frozen Ghostly Essence":{"internalName":"Frozen Ghostly Essence","type":"ingredient","requirements":{"level":46,"skills":["jeweling"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"rawSpellDamage":{"min":12,"raw":12,"max":16},"walkSpeed":{"min":-7,"raw":-7,"max":-6},"rawIntelligence":{"min":1,"raw":1,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":25,"defenceRequirement":0,"agilityRequirement":-15},"droppedBy":[{"name":"Phantom","coords":[[63,71,-351,7],[92,74,-359,1],[103,79,-406,7],[141,77,-405,12],[142,79,-348,10],[112,74,-338,5],[114,74,-359,3],[114,79,-373,5],[113,79,-392,4],[109,88,-381,5],[116,90,-359,7],[109,88,-341,4],[119,63,-363,9]]},{"name":"Howling Phantom","coords":[[130,77,-379,6],[130,77,-379,6],[99,77,-380,4],[66,71,-335,10],[70,72,-368,10],[82,75,-380,10],[81,74,-334,10],[90,77,-307,10]]},{"name":"Disembodied Head","coords":[[-49,89,-360,8],[-49,87,-323,15],[-37,77,-305,8],[-10,77,-274,10],[-8,82,-254,7],[-45,60,-256,15],[-24,73,-218,10],[-40,71,-217,10]]},{"name":"Frozen Spirit","coords":[48,75,-534,20]}]},"Orc Teeth":{"internalName":"Orc Teeth","type":"ingredient","requirements":{"level":46,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"77:0"},"identifications":{"earthDamage":{"min":1,"raw":1,"max":2},"mainAttackDamage":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Orc Zealot","coords":[-1656,55,-4894,250]},{"name":"Orc Fighter","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Orc Lookout","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Mudspring Orc Chemist","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Pulper","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Waterbearer","coords":[-1994,54,-5019,7]},{"name":"Roothome Orc Protector","coords":[[-1681,35,-4953,2],[-1733,34,-4960,2],[-1736,31,-4995,2],[-1754,27,-4973,2],[-1736,22,-4928,2]]},{"name":"Sablestone Orc Smasher","coords":[-1731,60,-4912,10]},{"name":"Sablestone Orc Basher","coords":[-1731,60,-4912,10]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]},{"name":"Sunspark Orc Altarkris","coords":[-1907,34,-4974,7]},{"name":"Sunspark Orc Tomewriter","coords":[-1910,52,-4997,9]},{"name":"Sunspark Orc Skyrollicker","coords":[-1910,52,-4997,9]}]},"Penguin Egg":{"internalName":"Penguin Egg","type":"ingredient","requirements":{"level":46,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"383:0"},"identifications":{"waterDefence":{"min":3,"raw":3,"max":5},"airDefence":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-260,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Penguin","coords":[[-9,71,-850,20],[-2,70,-940,20],[-11,72,-723,22],[-93,70,-861,22]]}]},"Bandit Rations":{"internalName":"Bandit Rations","type":"ingredient","requirements":{"level":46,"skills":["cooking"]},"icon":{"format":"legacy","value":"424:0"},"identifications":{"xpBonus":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-190,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Harnort Compound Grunt","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Roughneck","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Watch","coords":[[-1486,47,-4411,0],[-1486,47,-4407,0],[-1486,48,-4398,0],[-1486,47,-4392,0],[-1486,47,-4384,0],[-1487,52,-4419,0],[-1486,52,-4411,0],[-1486,52,-4404,0],[-1486,53,-4397,0],[-1486,52,-4384,0],[-1508,79,-4493,0],[-1548,58,-4415,0]]},{"name":"Harnort Compound Tally Checker","coords":[-1508,41,-4384,8]},{"name":"Harnort Compound Matron","coords":[-1508,41,-4384,8]},{"name":"Karoc Turncoat","coords":null},{"name":"Quartz Bandit","coords":[[-1771,33,-4476,5],[-1788,45,-4504,5]]},{"name":"Quartz Ranger","coords":[-1777,39,-4488,1]}]},"Vapor":{"internalName":"Vapor","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":45,"intelligence":25},"dropMeta":{"name":"Ice Barrows","type":"dungeonMerchant","coordinates":[132,85,-660]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"waterDamage":-10,"fireDamage":15},"base":{"baseFireDefence":10},"rarity":"rare"},"Oyster":{"internalName":"Oyster","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":45,"intelligence":15},"lore":"\\[Community Event Winner\\]","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"lootBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":2,"raw":5,"max":7},"waterDefence":{"min":1,"raw":4,"max":5}},"base":{"baseWaterDefence":15},"rarity":"rare"},"Shackles of the Beast":{"internalName":"Shackles of the Beast","type":"armour","armourType":"leggings","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","requirements":{"level":45,"strength":10,"defence":20},"powderSlots":2,"dropMeta":{"name":"Prison of Souls","type":"altar","coordinates":[51,68,-485]},"identifications":{"rawStrength":7,"rawDefence":7,"mainAttackDamage":{"min":8,"raw":25,"max":33},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":158,"raw":525,"max":683},"manaRegen":{"min":-8,"raw":-6,"max":-4},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":525,"baseThunderDefence":50,"baseWaterDefence":-60,"baseAirDefence":50},"rarity":"rare"},"Chroma Cannon":{"internalName":"Chroma Cannon","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":187,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer","strength":11,"dexterity":11,"intelligence":11,"defence":11,"agility":11},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawHealth":{"min":-195,"raw":-150,"max":-105},"elementalDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":40},"baseEarthDamage":{"min":20,"raw":20,"max":60},"baseThunderDamage":{"min":20,"raw":20,"max":60},"baseWaterDamage":{"min":20,"raw":20,"max":60},"baseFireDamage":{"min":20,"raw":20,"max":60},"baseAirDamage":{"min":20,"raw":20,"max":60}},"rarity":"unique"},"Inclemency":{"internalName":"Inclemency","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":45,"strength":30},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"rawMainAttackDamage":{"min":51,"raw":170,"max":221},"rawAttackSpeed":-1,"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":5,"raw":18,"max":23},"fireDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":600,"baseFireDefence":-30},"rarity":"legendary"},"Rectificator":{"internalName":"Rectificator","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":185,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"shaman"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawHealth":{"min":45,"raw":150,"max":195},"elementalDamage":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":80,"raw":80,"max":100}},"rarity":"unique"},"Flaming War Spear":{"internalName":"Flaming War Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":148,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"warrior","defence":5},"powderSlots":2,"dropMeta":{"name":"Nodguj Nation","type":"merchant","coordinates":[793,59,-3350]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":5,"rawHealth":350,"fireDamage":15,"earthDefence":20,"waterDefence":-20},"base":{"baseDamage":{"min":33,"raw":33,"max":46},"baseFireDamage":{"min":50,"raw":50,"max":68}},"rarity":"rare"},"Flawed Chain Helmet":{"internalName":"Flawed Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45},"powderSlots":1,"base":{"baseHealth":335},"rarity":"common"},"Viking Breath":{"internalName":"Viking Breath","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":115,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"mage","agility":20},"powderSlots":2,"dropMeta":{"name":"Dujgon Nation","type":"merchant","coordinates":[991,38,-3455]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"mainAttackDamage":20,"spellDamage":-10,"rawHealth":-255,"earthDamage":30,"airDamage":15},"base":{"baseDamage":{"min":17,"raw":17,"max":29},"baseAirDamage":{"min":29,"raw":29,"max":37}},"rarity":"rare"},"Oxalate":{"internalName":"Oxalate","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":126,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"warrior","strength":20,"intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawStrength":5,"rawIntelligence":5,"healthRegen":{"min":5,"raw":16,"max":21},"thunderDamage":{"min":-3,"raw":-2,"max":-1},"waterDamage":{"min":3,"raw":9,"max":12},"earthDefence":{"min":3,"raw":9,"max":12},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":0,"raw":0,"max":40},"baseEarthDamage":{"min":20,"raw":20,"max":44},"baseWaterDamage":{"min":20,"raw":20,"max":44}},"rarity":"unique"},"Sulphurous Sling":{"internalName":"Sulphurous Sling","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":155,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer","dexterity":25,"defence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"spellDamage":{"min":4,"raw":14,"max":18},"exploding":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":4,"raw":14,"max":18},"waterDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":21,"raw":21,"max":30},"baseFireDamage":{"min":6,"raw":6,"max":15}},"rarity":"unique"},"Sleigh Bell":{"internalName":"Sleigh Bell","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":225,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"archer","agility":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":15,"walkSpeed":15,"airDamage":15,"airDefence":15},"base":{"baseDamage":{"min":30,"raw":30,"max":70},"baseAirDamage":{"min":25,"raw":25,"max":55}},"rarity":"rare"},"Water Relic Relik":{"internalName":"Water Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":227,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman","intelligence":15},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseWaterDamage":{"min":50,"raw":50,"max":60}},"rarity":"rare"},"Muddy Soles":{"internalName":"Muddy Soles","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45,"strength":15,"intelligence":5},"powderSlots":2,"identifications":{"rawStrength":7,"walkSpeed":{"min":-9,"raw":-7,"max":-5},"airDamage":{"min":-8,"raw":-6,"max":-4},"earthDefence":{"min":2,"raw":8,"max":10},"thunderDefence":{"min":3,"raw":10,"max":13},"waterDefence":{"min":2,"raw":8,"max":10},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":410,"baseEarthDefence":15,"baseWaterDefence":10,"baseAirDefence":-20},"rarity":"unique"},"Flawless Spruce Relik":{"internalName":"Flawless Spruce Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":148,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":70,"raw":70,"max":74}},"rarity":"common"},"Thunder Relic Relik":{"internalName":"Thunder Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":225,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman","dexterity":15},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":18,"raw":59,"max":77},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":80},"baseThunderDamage":{"min":10,"raw":10,"max":80}},"rarity":"rare"},"The Abacus":{"internalName":"The Abacus","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":191,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer","strength":35,"agility":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":7,"rawAgility":8,"mainAttackDamage":{"min":2,"raw":7,"max":9},"earthDamage":{"min":3,"raw":9,"max":12},"airDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-14,"raw":-11,"max":-8}},"base":{"baseDamage":{"min":40,"raw":40,"max":45},"baseEarthDamage":{"min":42,"raw":42,"max":43},"baseAirDamage":{"min":41,"raw":41,"max":44}},"rarity":"unique"},"Chain Link":{"internalName":"Chain Link","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":3,"identifications":{"rawSpellDamage":{"min":9,"raw":30,"max":39},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":400},"rarity":"unique"},"Coconut":{"internalName":"Coconut֎","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":162,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"assassin","strength":20,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":90,"raw":90,"max":105},"baseWaterDamage":{"min":90,"raw":90,"max":105}},"rarity":"unique"},"Bloodied Wreath":{"internalName":"Bloodied Wreath","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":45,"intelligence":20,"agility":15},"powderSlots":2,"lore":"...It's pulling towards something.","identifications":{"waterSpellDamage":{"min":5,"raw":16,"max":21},"airSpellDamage":{"min":5,"raw":16,"max":21},"elementalDamage":{"min":-10,"raw":-8,"max":-6},"manaRegen":{"min":3,"raw":9,"max":12},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":400,"baseEarthDefence":-20,"baseThunderDefence":-20,"baseFireDefence":-20},"rarity":"rare"},"Steel Bracer":{"internalName":"Steel Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":45,"defence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDefence":5,"reflection":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":125,"baseWaterDefence":-10,"baseFireDefence":12},"rarity":"unique"},"Faith of the Bovemist":{"internalName":"Faith of the Bovemist","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":4,"thunderDefence":{"min":2,"raw":7,"max":9}},"rarity":"rare"},"Ajax":{"internalName":"Ajax","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45,"strength":25},"identifications":{"rawStrength":13,"rawAgility":-10,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":26,"raw":85,"max":111},"rawSpellDamage":{"min":-52,"raw":-40,"max":-28},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":525,"baseEarthDefence":30,"baseAirDefence":-30},"rarity":"rare"},"Flawless Spruce Spear":{"internalName":"Flawless Spruce Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":100,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":63,"raw":63,"max":71}},"rarity":"common"},"Scylla Shell":{"internalName":"Scylla Shell","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45,"strength":20,"intelligence":20},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"rawMaxMana":{"min":9,"raw":31,"max":40},"earthDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":400,"baseEarthDefence":15,"baseWaterDefence":15,"baseAirDefence":-40},"rarity":"unique"},"Fire Relic Relik":{"internalName":"Fire Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":227,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman","defence":15},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":5,"healthRegenRaw":{"min":9,"raw":30,"max":39},"rawHealth":{"min":101,"raw":335,"max":436},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":40,"raw":40,"max":70},"baseFireDamage":{"min":40,"raw":40,"max":70}},"rarity":"rare"},"Goblin Cloak":{"internalName":"Goblin Cloak","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":45,"strength":30,"dexterity":30},"powderSlots":2,"identifications":{"lifeSteal":33,"manaSteal":4,"lootBonus":15},"base":{"baseHealth":470,"baseAirDefence":-20},"rarity":"set"},"Deadeye":{"internalName":"Deadeye","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":295,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":45,"classRequirement":"archer"},"majorIds":{"Hawkeye":"+Hawkeye: Condense Arrow Storm into a tight beam. Arrows deal 10%, 1%, and 1%."},"powderSlots":1,"lore":"The weapon of the fearsome lone bandit, Rymek Luke, it is unique in that it is designed to fire small metal rounds instead of more traditional projectiles.","dropMeta":{"name":"Sunrise Canyon","type":"altar","coordinates":[1417,100,-1462]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawDexterity":30,"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":577,"raw":577,"max":578}},"rarity":"fabled"},"Blue Ornament":{"internalName":"Blue Ornament","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"xpBonus":6,"waterDamage":6},"base":{"baseWaterDefence":25},"rarity":"set"},"Holly":{"internalName":"Holly","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":113,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"mage","strength":10,"intelligence":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"mainAttackDamage":5,"spellDamage":10,"healthRegen":15,"manaRegen":6,"thorns":10,"waterDefence":15},"base":{"baseDamage":{"min":12,"raw":12,"max":24},"baseEarthDamage":{"min":17,"raw":17,"max":28},"baseWaterDamage":{"min":11,"raw":11,"max":18}},"rarity":"rare"},"Earth Relic Relik":{"internalName":"Earth Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":232,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman","strength":15},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":55,"raw":55,"max":100},"baseEarthDamage":{"min":55,"raw":55,"max":100}},"rarity":"rare"},"Air Relic Relik":{"internalName":"Air Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":225,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman","agility":15},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawAgility":5,"rawSpellDamage":{"min":18,"raw":60,"max":78},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":25,"raw":25,"max":65},"baseAirDamage":{"min":25,"raw":25,"max":65}},"rarity":"rare"},"Cross-Aegis":{"internalName":"Cross-aegis","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":189,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer","defence":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":9,"healthRegen":{"min":6,"raw":19,"max":25},"healthRegenRaw":{"min":10,"raw":32,"max":42},"rawHealth":{"min":135,"raw":450,"max":585},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-39,"raw":-30,"max":-21},"fireDefence":{"min":4,"raw":13,"max":17},"airDefence":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":72,"raw":72,"max":105},"baseFireDamage":{"min":31,"raw":31,"max":44}},"rarity":"rare"},"Devoreuse":{"internalName":"Devoreuse","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":93,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawIntelligence":-3,"healthRegen":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":12,"raw":41,"max":53},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":58,"raw":58,"max":66}},"rarity":"unique"},"Joker":{"internalName":"Joker","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":165,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"warrior","strength":5,"defence":5,"agility":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"poison":{"min":36,"raw":120,"max":156},"thorns":1,"reflection":1,"exploding":1,"xpBonus":{"min":3,"raw":10,"max":13},"stealing":1},"base":{"baseDamage":{"min":0,"raw":0,"max":40},"baseEarthDamage":{"min":0,"raw":0,"max":40},"baseFireDamage":{"min":0,"raw":0,"max":40},"baseAirDamage":{"min":0,"raw":0,"max":40}},"rarity":"rare"},"Flawless Spruce Dagger":{"internalName":"Flawless Spruce Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":120,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":42,"raw":42,"max":54}},"rarity":"common"},"Bob's Sacrifice":{"internalName":"Bob's Sacrifice","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":45,"strength":10},"powderSlots":1,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"identifications":{"rawStrength":3,"mainAttackDamage":23,"rawMainAttackDamage":-13,"thorns":10,"walkSpeed":-6},"base":{"baseHealth":290,"baseThunderDefence":-25},"rarity":"unique"},"Wooly Cap":{"internalName":"Wooly Cap","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":45},"powderSlots":2,"identifications":{"rawDefence":10,"thorns":5,"waterDefence":15,"airDefence":20},"base":{"baseHealth":575,"baseWaterDefence":40,"baseAirDefence":30},"rarity":"rare"},"Jilted":{"internalName":"Jilted","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":45,"defence":30},"powderSlots":2,"identifications":{"rawDefence":5,"rawHealth":{"min":30,"raw":100,"max":130},"thorns":{"min":5,"raw":15,"max":20},"fireDamage":{"min":1,"raw":4,"max":5},"fireDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":400,"baseEarthDefence":8,"baseThunderDefence":8,"baseWaterDefence":8,"baseFireDefence":8,"baseAirDefence":8},"rarity":"unique"},"Splinter":{"internalName":"Splinter","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":188,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawMainAttackDamage":59,"thorns":15,"exploding":15,"xpBonus":15},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseEarthDamage":{"min":15,"raw":15,"max":20}},"rarity":"rare"},"Permafrosted Saxifrage":{"internalName":"Permafrosted Saxifrage","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":253,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"shaman","strength":18,"agility":18},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"rawAgility":5,"mainAttackDamage":10,"earthDamage":10,"airDamage":10,"waterDefence":20,"fireDefence":-20},"base":{"baseEarthDamage":{"min":60,"raw":60,"max":63},"baseAirDamage":{"min":50,"raw":50,"max":73}},"rarity":"rare"},"Handmade Bucie Knife":{"internalName":"Handmade Bucie Knife","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":147,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawStrength":5,"rawHealth":{"min":60,"raw":200,"max":260},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9},"earthDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":48,"raw":48,"max":58},"baseFireDamage":{"min":34,"raw":34,"max":56}},"rarity":"unique"},"Golem Gauntlet":{"internalName":"Golem Gauntlet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":45,"defence":20},"dropMeta":{"name":"Bucie","type":"merchant","coordinates":[-1484,43,-4725]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawStrength":1,"rawDefence":5,"walkSpeed":-6},"rarity":"unique"},"Hillich":{"internalName":"Hillich","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":148,"dropRestriction":"never","identified":true,"requirements":{"level":45,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"healthRegenRaw":30,"manaRegen":6,"xpBonus":20},"base":{"baseDamage":{"min":64,"raw":64,"max":80}},"rarity":"rare"},"Bob's Battle Chestplate":{"internalName":"Bob's Battle Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":45,"quest":"Bob's Lost Soul"},"powderSlots":3,"lore":"This battered chestplate was once worn by the legendary Wynnic protector, Bob, during the fearsome corrupted sieges before he gave it away to an old friend. An air of melancholy hangs over it.","identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":450},"rarity":"unique"},"Flawless Spruce Bow":{"internalName":"Flawless Spruce Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":151,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":111}},"rarity":"common"},"Flawless Spruce Wand":{"internalName":"Flawless Spruce Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":73,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":31,"raw":31,"max":40}},"rarity":"common"},"Constrict Collar":{"internalName":"Constrict Collar","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":45},"dropMeta":{"name":"Prison of Souls","type":"altar","coordinates":[51,68,-485]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawDefence":7,"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":29,"raw":96,"max":125},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":100},"rarity":"rare"},"Refined Iron Leggings":{"internalName":"Refined Iron Leggings","type":"armour","armourType":"leggings","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":45},"powderSlots":1,"base":{"baseHealth":340},"rarity":"common"},"Relic Relik":{"internalName":"Relic Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":260,"dropRestriction":"never","requirements":{"level":45,"classRequirement":"shaman"},"powderSlots":3,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-289,23,-471,100]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":20,"raw":20,"max":22},"baseEarthDamage":{"min":20,"raw":20,"max":22},"baseThunderDamage":{"min":20,"raw":20,"max":22},"baseWaterDamage":{"min":20,"raw":20,"max":22},"baseFireDamage":{"min":20,"raw":20,"max":22},"baseAirDamage":{"min":20,"raw":20,"max":22}},"rarity":"rare"},"Cerid's Ingenuity":{"internalName":"Cerid's Ingenuity","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"dungeon","requirements":{"level":45,"intelligence":15,"defence":20},"powderSlots":2,"lore":"One of the master tinkerer Cerid's greatest inventions, these odd gear-laced boots clink and chime with the sound of clockworks keeping its powerful magic dynamos constantly running.","identifications":{"healthRegen":{"min":5,"raw":18,"max":23},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":7,"raw":23,"max":30},"fireDamage":{"min":7,"raw":23,"max":30},"earthDefence":{"min":-30,"raw":-23,"max":-16},"thunderDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":630,"baseWaterDefence":50,"baseFireDefence":50,"baseAirDefence":30},"rarity":"legendary"},"Nivla's Arch":{"internalName":"Nivla's Arch","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":180,"dropRestriction":"normal","requirements":{"level":45,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"poison":{"min":75,"raw":250,"max":325},"thorns":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":122,"raw":122,"max":136},"baseEarthDamage":{"min":80,"raw":80,"max":96}},"rarity":"unique"},"Quartz Cluster":{"internalName":"Quartz Cluster","type":"ingredient","requirements":{"level":45,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawSpellDamage":{"min":25,"raw":25,"max":35},"xpBonus":{"min":6,"raw":6,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Twisted Fairy Devourer","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7]]},{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]}]},"Bloodweb":{"internalName":"Bloodweb","type":"ingredient","requirements":{"level":45,"skills":["tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"lifeSteal":{"min":5,"raw":5,"max":9},"walkSpeed":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bloodweb Spider Broody","coords":[-2090,51,-4968,15]}]},"Chipped Quartz":{"internalName":"Chipped Quartz","type":"ingredient","requirements":{"level":45,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"spellDamage":{"min":1,"raw":1,"max":4},"rawSpellDamage":{"min":10,"raw":10,"max":15}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Quartz Bandit","coords":[[-1771,33,-4476,5],[-1788,45,-4504,5]]},{"name":"Quartz Ranger","coords":[-1777,39,-4488,1]},{"name":"Harnort Compound Grunt","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Roughneck","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Watch","coords":[[-1486,47,-4411,0],[-1486,47,-4407,0],[-1486,48,-4398,0],[-1486,47,-4392,0],[-1486,47,-4384,0],[-1487,52,-4419,0],[-1486,52,-4411,0],[-1486,52,-4404,0],[-1486,53,-4397,0],[-1486,52,-4384,0],[-1508,79,-4493,0],[-1548,58,-4415,0]]},{"name":"Harnort Compound Tally Checker","coords":[-1508,41,-4384,8]},{"name":"Harnort Compound Matron","coords":[-1508,41,-4384,8]},{"name":"Karoc Turncoat","coords":null},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Digger","coords":[-1491,33,-4814,7]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]}]},"Pure Quartz":{"internalName":"Pure Quartz","type":"ingredient","requirements":{"level":45,"skills":["weaponsmithing","armouring","woodworking","tailoring"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":4},"rawSpellDamage":{"min":16,"raw":16,"max":24}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-75000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Quartz Bandit","coords":[[-1771,33,-4476,5],[-1788,45,-4504,5]]},{"name":"Quartz Ranger","coords":[-1777,39,-4488,1]},{"name":"Harnort Compound Grunt","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Roughneck","coords":[-1431,52,-4354,20]},{"name":"Harnort Compound Watch","coords":[[-1486,47,-4411,0],[-1486,47,-4407,0],[-1486,48,-4398,0],[-1486,47,-4392,0],[-1486,47,-4384,0],[-1487,52,-4419,0],[-1486,52,-4411,0],[-1486,52,-4404,0],[-1486,53,-4397,0],[-1486,52,-4384,0],[-1508,79,-4493,0],[-1548,58,-4415,0]]},{"name":"Harnort Compound Tally Checker","coords":[-1508,41,-4384,8]},{"name":"Harnort Compound Matron","coords":[-1508,41,-4384,8]},{"name":"Karoc Turncoat","coords":null},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Digger","coords":[-1491,33,-4814,7]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]}]},"Primeval Skin":{"internalName":"Primeval Skin","type":"ingredient","requirements":{"level":45,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":4},"rawIntelligence":{"min":-5,"raw":-5,"max":-5},"rawDefence":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":6,"agilityRequirement":0},"droppedBy":[{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]}]},"Snow Clump":{"internalName":"Snow Clump","type":"ingredient","requirements":{"level":45,"skills":["tailoring"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"waterDamage":{"min":1,"raw":1,"max":2},"reflection":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ice Zombie","coords":null},{"name":"Snow Zombie","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Thawing Ice Zombie","coords":[48,75,-534,20]},{"name":"Thawing Snow Zombie","coords":[48,75,-534,20]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Cold Fang","coords":[[-116,67,-890,5],[15,70,-824,5],[22,68,-739,5],[-60,67,-699,5],[3,68,-673,5],[193,72,-735,5],[197,80,-1013,5]]},{"name":"Frigid Fang","coords":[[-388,23,-323,50],[-388,23,-323,50],[-264,23,-342,50],[-264,23,-342,50],[-146,24,-396,70],[-146,24,-396,70],[-42,71,-708,10],[-66,67,-765,10],[11,67,-690,30]]},{"name":"Dire Fang","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Rogue Snowman","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Frozen Spirit","coords":[48,75,-534,20]},{"name":"Rotten Woodcutter","coords":[-191,67,-912,20]},{"name":"Dead Ice Cutter","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Baby Yeti","coords":[[-106,67,-330,6],[-296,82,-534,8],[-229,52,-514,4],[-459,85,-437,4],[-450,70,-296,4],[-377,66,-270,4],[-251,91,-272,4],[-173,64,-546,4]]},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Snow Owl","coords":[[148,72,-986,20],[127,70,-921,20],[219,74,-736,22],[61,67,-959,16]]},{"name":"Penguin","coords":[[-9,71,-850,20],[-2,70,-940,20],[-11,72,-723,22],[-93,70,-861,22]]},{"name":"Cold Shadow","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Snow-Bear","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Enraged Snow-Bear","coords":[[-73,67,-760,5],[-89,69,-879,5],[-145,67,-911,6],[-145,69,-851,6],[0,71,-845,6],[-17,67,-903,6],[42,68,-908,6],[66,70,-825,6],[64,69,-731,6],[15,68,-678,6],[124,74,-705,6],[191,72,-735,6],[216,73,-829,6],[204,77,-948,6],[135,71,-962,6],[105,69,-903,6]]},{"name":"Ice Elemental","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Frozen Berserker","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Frostbite","coords":[[-8,71,-850,20],[222,72,-786,15],[147,72,-986,15],[126,70,-921,15],[-1,70,-940,15],[-10,72,-723,25],[218,74,-736,12],[-92,70,-861,12],[-92,67,-680,6],[60,67,-959,6]]},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]}]},"Icy Shard":{"internalName":"Icy Shard","type":"ingredient","requirements":{"level":45,"skills":["armouring"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"waterDamage":{"min":1,"raw":1,"max":2},"thorns":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ice Zombie","coords":null},{"name":"Frostbite","coords":[[-8,71,-850,20],[222,72,-786,15],[147,72,-986,15],[126,70,-921,15],[-1,70,-940,15],[-10,72,-723,25],[218,74,-736,12],[-92,70,-861,12],[-92,67,-680,6],[60,67,-959,6]]},{"name":"Frozen Berserker","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Ice Elemental","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Dead Ice Cutter","coords":[[-35,72,-729,70],[9,68,-902,70]]}]},"Jagged Icicle":{"internalName":"Jagged Icicle","type":"ingredient","requirements":{"level":45,"skills":["tailoring"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"rawNeutralMainAttackDamage":{"min":30,"raw":30,"max":35},"lifeSteal":{"min":10,"raw":10,"max":15}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-61000,"strengthRequirement":0,"dexterityRequirement":8,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Ancient Heart":{"internalName":"Ancient Heart","type":"ingredient","requirements":{"level":45,"skills":["alchemism"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"mainAttackDamage":{"min":-6,"raw":-6,"max":-4},"spellDamage":{"min":-8,"raw":-8,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":370,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]}]},"Black Sulphur":{"internalName":"Black Sulphur","type":"ingredient","requirements":{"level":45,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"exploding":{"min":10,"raw":10,"max":14},"fireDamage":{"min":4,"raw":4,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-370,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dynamite","coords":null}]},"Empty Casings":{"internalName":"Empty Casings","type":"ingredient","requirements":{"level":45,"skills":["jeweling"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":3},"exploding":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dynamite","coords":null}]},"Bottled Fairy":{"internalName":"Bottled Fairy","type":"ingredient","requirements":{"level":45,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"manaRegen":{"min":12,"raw":12,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-99000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":40,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sweet Fairy","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7],[-2214,74,-4815,10],[-2214,74,-4815,15]]}]},"Archaic Medallion":{"internalName":"Archaic Medallion","type":"ingredient","requirements":{"level":45,"skills":["jeweling"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"healthRegen":{"min":10,"raw":10,"max":12},"spellDamage":{"min":-6,"raw":-6,"max":-4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]},{"name":"Mudspring Orc Chemist","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Pulper","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Waterbearer","coords":[-1994,54,-5019,7]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]},{"name":"Sunspark Orc Altarkris","coords":[-1907,34,-4974,7]},{"name":"Sunspark Orc Tomewriter","coords":[-1910,52,-4997,9]},{"name":"Sunspark Orc Skyrollicker","coords":[-1910,52,-4997,9]}]},"Gathering Scythe T6":{"internalName":"Gathering Scythe 6","type":"tool","toolType":"scythe","gatheringSpeed":90,"identified":true,"requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"62","name":"gatheringTool.scythe6"}},"rarity":"common"},"Gathering Axe T6":{"internalName":"Gathering Axe 6","type":"tool","toolType":"axe","gatheringSpeed":90,"identified":true,"requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"47","name":"gatheringTool.axe6"}},"rarity":"common"},"Gathering Rod T6":{"internalName":"Gathering Rod 6","type":"tool","toolType":"rod","gatheringSpeed":90,"identified":true,"requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"57","name":"gatheringTool.rod6"}},"rarity":"common"},"Gathering Pickaxe T6":{"internalName":"Gathering Pickaxe 6","type":"tool","toolType":"pickaxe","gatheringSpeed":90,"identified":true,"requirements":{"level":45},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"52","name":"gatheringTool.pickaxe6"}},"rarity":"common"},"Lingering Twilight":{"internalName":"Lingering Twilight","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":44,"strength":15,"dexterity":15,"agility":15},"powderSlots":2,"lore":"In the harshest reaches of the mountains, dusk brings a gentle magic to the air, prolonging the faintest vestiges of sundown before night truly falls.","identifications":{"rawAgility":5,"rawElementalDamage":{"min":22,"raw":73,"max":95},"walkSpeed":{"min":6,"raw":19,"max":25},"rawMaxMana":{"min":-18,"raw":-14,"max":-10}},"base":{"baseHealth":515,"baseEarthDefence":15,"baseThunderDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Syringe":{"internalName":"Syringe","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":118,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"warrior","intelligence":15,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"healthRegenRaw":{"min":6,"raw":19,"max":25},"rawHealth":{"min":57,"raw":190,"max":247},"poison":{"min":-318,"raw":-245,"max":-171},"lifeSteal":{"min":12,"raw":41,"max":53},"fireDamage":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":25,"raw":25,"max":40},"baseWaterDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Hide of Poxper":{"internalName":"Hide of Gregg'r","type":"armour","armourType":"chestplate","armourColor":"rgb(121,147,78)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":44,"quest":"Green Skinned Trouble","defence":15,"agility":10},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":2,"raw":8,"max":10},"exploding":{"min":2,"raw":8,"max":10},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":600,"baseWaterDefence":-50,"baseFireDefence":40,"baseAirDefence":20},"rarity":"rare"},"Sandstorm Walker":{"internalName":"SandStorm Walker","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44,"strength":5},"powderSlots":2,"identifications":{"rawStrength":4,"rawDexterity":4,"thorns":{"min":1,"raw":3,"max":4},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":435,"baseThunderDefence":20,"baseAirDefence":-30},"rarity":"unique"},"Frozen Brook":{"internalName":"Frozen Brook","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":91,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"mage","intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawIntelligence":10,"rawAgility":-5,"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":2,"raw":8,"max":10},"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"thunderDefence":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":55,"raw":55,"max":80},"baseWaterDamage":{"min":30,"raw":30,"max":55}},"rarity":"rare"},"Aggression":{"internalName":"Aggression","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":44,"strength":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":7,"max":9},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":10,"baseThunderDefence":-20,"baseWaterDefence":-20,"baseFireDefence":-20,"baseAirDefence":-20},"rarity":"rare"},"Bloodless":{"internalName":"Bloodless","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44},"powderSlots":2,"identifications":{"healthRegen":{"min":-39,"raw":-30,"max":-21},"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":90,"raw":300,"max":390},"lifeSteal":{"min":12,"raw":41,"max":53}},"base":{"baseHealth":250},"rarity":"rare"},"Eclipse":{"internalName":"Eclipse","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":90,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"mage","intelligence":22,"defence":22},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawMainAttackDamage":{"min":-17,"raw":-13,"max":-9},"rawSpellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegen":{"min":5,"raw":15,"max":20},"healthRegenRaw":{"min":6,"raw":20,"max":26},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":30},"baseWaterDamage":{"min":10,"raw":10,"max":30},"baseFireDamage":{"min":10,"raw":10,"max":30}},"rarity":"unique"},"Sow Thistle":{"internalName":"Sow Thistle","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44,"strength":30},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"healthRegen":{"min":-19,"raw":-15,"max":-10},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":450,"baseEarthDefence":30,"baseAirDefence":-40},"rarity":"rare"},"Pulsar":{"internalName":"Pulsar","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":180,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"warrior","strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":2,"lore":"The density of this weapon is almost immeasurable. Despite being light and easy to wield, the spear seems to have its own gravitational pull, slowly dragging enemies closer and making it nearly impossible to put down.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"identifications":{"rawMainAttackDamage":{"min":14,"raw":46,"max":60},"spellDamage":{"min":4,"raw":14,"max":18},"poison":{"min":-474,"raw":-365,"max":-255},"thorns":{"min":6,"raw":21,"max":27},"reflection":{"min":6,"raw":21,"max":27},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":12,"raw":12,"max":12},"baseEarthDamage":{"min":10,"raw":10,"max":14},"baseThunderDamage":{"min":2,"raw":2,"max":22},"baseWaterDamage":{"min":6,"raw":6,"max":18},"baseFireDamage":{"min":8,"raw":8,"max":16},"baseAirDamage":{"min":4,"raw":4,"max":20}},"rarity":"legendary"},"Helm of the Dead":{"internalName":"Helm of the Dead","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44,"strength":5,"dexterity":5},"powderSlots":2,"identifications":{"rawStrength":7,"rawAgility":-5,"healthRegen":{"min":5,"raw":15,"max":20},"lifeSteal":{"min":8,"raw":27,"max":35},"airDamage":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":390,"baseEarthDefence":15,"baseThunderDefence":20,"baseAirDefence":-30},"rarity":"unique"},"Dissector":{"internalName":"Dissector","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":153,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"lifeSteal":{"min":17,"raw":55,"max":72},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":48,"raw":48,"max":51}},"rarity":"unique"},"Crafted Gem":{"internalName":"Crafted Gem","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":89,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"archer"},"powderSlots":4,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":1,"raw":1,"max":70}},"rarity":"unique"},"The Vampire Blade":{"internalName":"The Vampire Blade","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":99,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"lifeSteal":{"min":14,"raw":47,"max":61}},"base":{"baseDamage":{"min":18,"raw":18,"max":28},"baseThunderDamage":{"min":10,"raw":10,"max":40}},"rarity":"unique"},"Wastelands":{"internalName":"Wastelands","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":44,"strength":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":2,"raw":5,"max":7},"poison":{"min":27,"raw":90,"max":117},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"rarity":"unique"},"Homemade Fur Coat":{"internalName":"Homemade Fur Coat","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":44,"agility":15},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"identifications":{"rawAgility":2,"healthRegen":15,"walkSpeed":5,"airDamage":7,"airDefence":6},"base":{"baseHealth":375,"baseFireDefence":-30,"baseAirDefence":30},"rarity":"unique"},"Vibrato":{"internalName":"Vibrato","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":199,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"shaman","dexterity":16,"agility":16},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawDefence":-12,"manaSteal":{"min":1,"raw":4,"max":5},"1stSpellCost":{"min":-7,"raw":-23,"max":-30},"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":21,"raw":21,"max":22},"baseThunderDamage":{"min":55,"raw":55,"max":56},"baseAirDamage":{"min":55,"raw":55,"max":56}},"rarity":"unique"},"Mutilated Corpse":{"internalName":"Mutilated Corpse","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":44,"strength":30,"agility":15},"powderSlots":2,"lore":"Freshly slain foes in well below freezing conditions often provide enough warmth to weather the storm. However, this Corrupted seems to still be alive in some sickening way, draining life force to sustain itself. It's pulling towards something. ","identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":12,"raw":40,"max":52},"rawEarthMainAttackDamage":{"min":24,"raw":80,"max":104},"spellDamage":{"min":-19,"raw":-15,"max":-10},"healthRegenRaw":{"min":-65,"raw":-50,"max":-35},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":650,"baseEarthDefence":20,"baseFireDefence":-15,"baseAirDefence":10},"rarity":"legendary"},"Solstice":{"internalName":"Solstice","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":185,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"archer","intelligence":15,"defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"healthRegen":{"min":4,"raw":14,"max":18},"rawHealth":{"min":72,"raw":240,"max":312},"earthDamage":{"min":-18,"raw":-14,"max":-10},"thunderDamage":{"min":-18,"raw":-14,"max":-10},"airDamage":{"min":-18,"raw":-14,"max":-10}},"base":{"baseDamage":{"min":10,"raw":10,"max":65},"baseWaterDamage":{"min":25,"raw":25,"max":35},"baseFireDamage":{"min":20,"raw":20,"max":25}},"rarity":"unique"},"Orc Slasher":{"internalName":"Orc Slasher","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":138,"dropRestriction":"never","identified":true,"requirements":{"level":44,"classRequirement":"assassin"},"powderSlots":2,"dropMeta":{"name":"LLevigar","type":"merchant","coordinates":[-1997,81,-528]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"mainAttackDamage":5,"healthRegen":10,"walkSpeed":3},"base":{"baseDamage":{"min":22,"raw":22,"max":28},"baseThunderDamage":{"min":11,"raw":11,"max":28}},"rarity":"unique"},"Dissever":{"internalName":"Dissever","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":177,"dropRestriction":"never","requirements":{"level":44,"classRequirement":"warrior","dexterity":15,"agility":15},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.air2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":4,"raw":13,"max":17},"airDamage":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":14,"raw":14,"max":18},"baseThunderDamage":{"min":15,"raw":15,"max":30},"baseAirDamage":{"min":15,"raw":15,"max":22}},"rarity":"rare"},"Silver Short Spear":{"internalName":"Silver Short Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":118,"dropRestriction":"never","identified":true,"requirements":{"level":44,"classRequirement":"warrior","strength":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawStrength":4,"mainAttackDamage":8,"xpBonus":8,"lootBonus":15,"stealing":3},"base":{"baseDamage":{"min":45,"raw":45,"max":70}},"rarity":"unique"},"Unfinished Chain Mail":{"internalName":"Unfinished Chain Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44},"powderSlots":1,"base":{"baseHealth":320},"rarity":"common"},"Winter's Essence":{"internalName":"Winter's Essence","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44,"intelligence":20,"agility":20},"powderSlots":2,"lore":"These pure, snow-white leggings are rumored to have been crafted by the legendary ice mage Theorick. The people of Nesaak view them as cursed, seeking to destroy them in a bid to stop the endless winter surrounding them.","identifications":{"rawIntelligence":8,"rawAgility":8,"spellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-65,"raw":-50,"max":-35},"lifeSteal":{"min":12,"raw":41,"max":53},"manaRegen":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":360,"baseWaterDefence":50,"baseFireDefence":-100,"baseAirDefence":50},"rarity":"legendary"},"Reciprocator":{"internalName":"Reciprocator","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":224,"dropRestriction":"never","identified":true,"requirements":{"level":44,"classRequirement":"shaman"},"powderSlots":1,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawDefence":-10,"rawAgility":10,"raw1stSpellCost":-5,"thorns":40,"reflection":40,"walkSpeed":-10,"waterDamage":15},"base":{"baseDamage":{"min":240,"raw":240,"max":300}},"rarity":"rare"},"Horseshoe":{"internalName":"Horseshoe","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":44,"agility":15},"dropMeta":{"name":"Bucie","type":"merchant","coordinates":[-1484,43,-4725]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":2,"rawMainAttackDamage":16,"walkSpeed":9},"rarity":"rare"},"Scorpion":{"internalName":"Scorpion","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":216,"dropRestriction":"normal","requirements":{"level":44,"classRequirement":"assassin"},"powderSlots":2,"lore":"This dagger has no blade. Instead, it is layered with the stingers of the Black Shadow Scorpion, which has the ability to vanish entirely from its prey.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"poison":{"min":135,"raw":450,"max":585},"manaSteal":{"min":2,"raw":8,"max":10},"thorns":{"min":8,"raw":25,"max":33},"lootBonus":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-6,"raw":-5,"max":-3},"waterDefence":{"min":-6,"raw":-5,"max":-3},"fireDefence":{"min":-6,"raw":-5,"max":-3},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":90,"raw":90,"max":120}},"rarity":"legendary"},"Traitor":{"internalName":"Traitor","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":112,"dropRestriction":"never","identified":true,"requirements":{"level":44,"classRequirement":"warrior","defence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":3,"rawAgility":2,"healthRegen":10,"walkSpeed":5,"fireDamage":-10,"airDamage":15},"base":{"baseDamage":{"min":35,"raw":35,"max":55},"baseFireDamage":{"min":20,"raw":20,"max":40}},"rarity":"unique"},"Seven-League Boots":{"internalName":"Seven-League Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":44,"agility":50},"majorIds":{"Lightweight":"+Lightweight: You no longer take fall damage."},"lore":"Bending the fabric of reality to allow the wearer to take massive strides, these boots are rumored to contain rogue djinni to power them.","identifications":{"rawAgility":18,"walkSpeed":{"min":8,"raw":27,"max":35},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":450,"baseEarthDefence":-60,"baseAirDefence":30},"rarity":"legendary"},"Snow Tunic":{"internalName":"Snow Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(255,255,255)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":44,"intelligence":25,"agility":25},"powderSlots":2,"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":2,"raw":6,"max":8},"waterDefence":{"min":2,"raw":8,"max":10},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":450,"baseWaterDefence":25,"baseAirDefence":25},"rarity":"set"},"Poison Sac":{"internalName":"Poison Sac","type":"ingredient","requirements":{"level":44,"skills":["alchemism"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"poison":{"min":140,"raw":140,"max":160}},"tier":1,"consumableOnlyIDs":{"duration":-87,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bloodweb Spider Broody","coords":[-2090,51,-4968,15]},{"name":"Acromantula","coords":[[-1808,84,-4610,10],[-1828,79,-4636,10],[-1829,73,-4663,10]]}]},"Orc Eye":{"internalName":"Orc Eye","type":"ingredient","requirements":{"level":44,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"375:0"},"identifications":{"walkSpeed":{"min":-5,"raw":-5,"max":-3},"rawMainAttackDamage":{"min":7,"raw":7,"max":13}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Orc Zealot","coords":[-1656,55,-4894,250]},{"name":"Orc Fighter","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Orc Lookout","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Loamsprout Orc Muckraker","coords":[-1698,50,-4745,2]},{"name":"Loamsprout Orc Rotflinger","coords":[-1698,50,-4745,2]},{"name":"Mudspring Orc Chemist","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Pulper","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Waterbearer","coords":[-1994,54,-5019,7]},{"name":"Roothome Orc Protector","coords":[[-1681,35,-4953,2],[-1733,34,-4960,2],[-1736,31,-4995,2],[-1754,27,-4973,2],[-1736,22,-4928,2]]},{"name":"Sablestone Orc Smasher","coords":[-1731,60,-4912,10]},{"name":"Sablestone Orc Basher","coords":[-1731,60,-4912,10]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]},{"name":"Sunspark Orc Altarkris","coords":[-1907,34,-4974,7]},{"name":"Sunspark Orc Tomewriter","coords":[-1910,52,-4997,9]},{"name":"Sunspark Orc Skyrollicker","coords":[-1910,52,-4997,9]}]},"Ursine Claw":{"internalName":"Ursine Claw","type":"ingredient","requirements":{"level":44,"skills":["armouring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"rawMainAttackDamage":{"min":20,"raw":20,"max":25},"rawSpellDamage":{"min":-25,"raw":-25,"max":-20}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-46000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Yeti","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Possessed Armor Stand","coords":[-17,77,-315,100]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]}]},"Wendigo Bone":{"internalName":"Wendigo Bone","type":"ingredient","requirements":{"level":44,"skills":["alchemism","weaponsmithing"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"lifeSteal":{"min":24,"raw":24,"max":30},"healthRegenRaw":{"min":-15,"raw":-15,"max":-12}},"tier":2,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]}]},"Frostbitten Flesh":{"internalName":"Frostbitten Flesh","type":"ingredient","requirements":{"level":44,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"rawHealth":{"min":120,"raw":120,"max":140},"walkSpeed":{"min":-4,"raw":-4,"max":-3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Snow Zombie","coords":[[-53,68,-779,8],[-29,71,-822,5]]},{"name":"Thawing Snow Zombie","coords":[48,75,-534,20]},{"name":"Dead Ice Cutter","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Thawing Ice Zombie","coords":[48,75,-534,20]},{"name":"Ice Zombie","coords":null}]},"Green Scale":{"internalName":"Green Scale","type":"ingredient","requirements":{"level":44,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"111:0"},"identifications":{"earthDamage":{"min":2,"raw":2,"max":6},"earthDefence":{"min":2,"raw":2,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]}]},"Red Ko Rhu":{"internalName":"Red Ko Rhu","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":43},"powderSlots":2,"identifications":{"rawStrength":8,"thorns":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":3,"raw":10,"max":13},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":470,"baseEarthDefence":40,"baseFireDefence":-60,"baseAirDefence":40},"rarity":"rare"},"Avalanche":{"internalName":"Avalanche","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":43,"quest":"Fate of the Fallen","intelligence":20},"powderSlots":2,"identifications":{"rawIntelligence":7,"manaRegen":{"min":4,"raw":12,"max":16},"thorns":{"min":6,"raw":20,"max":26},"xpBonus":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":225,"baseFireDefence":-20},"rarity":"rare"},"Goblin Arm Bracer":{"internalName":"Goblin Arm Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":43},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDefence":4,"mainAttackDamage":4,"lootBonus":9},"base":{"baseHealth":75},"rarity":"unique"},"Current":{"internalName":"Current","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":109,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"warrior"},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawSpellDamage":35,"walkSpeed":5,"xpBonus":6,"waterDamage":10},"base":{"baseDamage":{"min":20,"raw":20,"max":27},"baseThunderDamage":{"min":10,"raw":10,"max":30}},"rarity":"unique"},"Fleet":{"internalName":"Fleet","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":43,"intelligence":10,"agility":20},"powderSlots":1,"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"rawMainAttackDamage":{"min":-58,"raw":-45,"max":-31},"walkSpeed":{"min":4,"raw":14,"max":18},"xpBonus":{"min":3,"raw":9,"max":12},"airDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":3,"raw":11,"max":14},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":345,"baseThunderDefence":-20,"baseWaterDefence":15,"baseAirDefence":15},"rarity":"unique"},"Babbling Bow":{"internalName":"Babbling Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":159,"dropRestriction":"normal","requirements":{"level":43,"classRequirement":"archer","intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":2,"raw":6,"max":8},"rawSpellDamage":{"min":9,"raw":30,"max":39},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":4,"raw":13,"max":17},"walkSpeed":{"min":2,"raw":5,"max":7},"fireDamage":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":16,"raw":16,"max":22},"baseWaterDamage":{"min":36,"raw":36,"max":53}},"rarity":"unique"},"Gernald's Amulet":{"internalName":"Gernald's Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":43},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"xpBonus":{"min":-5,"raw":-4,"max":-3},"lootBonus":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":70,"baseEarthDefence":7,"baseThunderDefence":7,"baseWaterDefence":7,"baseFireDefence":7,"baseAirDefence":7},"rarity":"rare"},"Solid Quartz Chestplate":{"internalName":"Solid Quartz Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":43,"defence":20},"powderSlots":2,"identifications":{"rawDefence":5,"healthRegen":10,"healthRegenRaw":20},"base":{"baseHealth":360},"rarity":"unique"},"Kanata":{"internalName":"Kanata","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":122,"dropRestriction":"normal","requirements":{"level":43,"classRequirement":"assassin","agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"walkSpeed":{"min":2,"raw":6,"max":8},"stealing":{"min":1,"raw":3,"max":4},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":12,"raw":12,"max":32},"baseAirDamage":{"min":22,"raw":22,"max":32}},"rarity":"unique"},"Cigar":{"internalName":"Cigar","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":81,"dropRestriction":"normal","requirements":{"level":43,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"exploding":{"min":2,"raw":5,"max":7},"earthDamage":{"min":2,"raw":6,"max":8},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":48,"raw":48,"max":60}},"rarity":"unique"},"Calamaro's Spear":{"internalName":"Calamaro's Spear","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":121,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"warrior","quest":"Underice"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-5,"spellDamage":12,"manaRegen":6,"walkSpeed":10,"rawMaxMana":20},"base":{"baseDamage":{"min":14,"raw":14,"max":22},"baseWaterDamage":{"min":17,"raw":17,"max":25},"baseAirDamage":{"min":7,"raw":7,"max":12}},"rarity":"rare"},"Snow Pants":{"internalName":"Snow Pants","type":"armour","armourType":"leggings","armourColor":"rgb(255,255,255)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":43,"intelligence":20,"agility":20},"powderSlots":2,"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"reflection":{"min":3,"raw":10,"max":13},"waterDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":425,"baseWaterDefence":20,"baseAirDefence":20},"rarity":"set"},"Refined Iron Boots":{"internalName":"Refined Iron Boots","type":"armour","armourType":"boots","armourMaterial":"iron","dropRestriction":"never","requirements":{"level":43},"powderSlots":1,"base":{"baseHealth":285},"rarity":"common"},"Greysmith":{"internalName":"Greysmith","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":43,"quest":"Ice Nations","strength":10},"dropMeta":{"name":"Dujgon Nation","type":"merchant","coordinates":[991,38,-3455]},"identifications":{"rawStrength":3,"rawDexterity":4,"earthDamage":10,"thunderDamage":30},"base":{"baseHealth":400,"baseFireDefence":-60},"rarity":"rare"},"Nodguj Warrior Sword":{"internalName":"Nodguj Warrior Sword","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":196,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"assassin","quest":"Ice Nations","intelligence":10},"powderSlots":2,"dropMeta":{"name":"Nodguj Nation","type":"merchant","coordinates":[793,59,-3350]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":5,"spellDamage":15,"rawHealth":-200,"manaRegen":6,"waterDamage":20},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseWaterDamage":{"min":45,"raw":45,"max":75}},"rarity":"legendary"},"Rime":{"internalName":"Rime","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":43,"intelligence":15,"agility":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":4,"spellDamage":{"min":2,"raw":7,"max":9},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"airDamage":{"min":1,"raw":4,"max":5},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseWaterDefence":10,"baseFireDefence":-30,"baseAirDefence":15},"rarity":"legendary"},"Unfinished Chain Leggings":{"internalName":"Unfinished Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":43},"powderSlots":1,"base":{"baseHealth":300},"rarity":"common"},"Strategist":{"internalName":"Strategist","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":43,"quest":"Ice Nations","intelligence":15},"powderSlots":2,"dropMeta":{"name":"Nodguj Nation","type":"merchant","coordinates":[793,59,-3350]},"identifications":{"rawIntelligence":4,"spellDamage":25,"rawSpellDamage":40,"manaRegen":-18,"rawMaxMana":-10,"waterDamage":30},"base":{"baseHealth":150},"rarity":"rare"},"Calamaro's Sword":{"internalName":"Calamaro's Sword","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":136,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"assassin","quest":"Underice"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-5,"spellDamage":12,"manaRegen":6,"walkSpeed":10,"rawMaxMana":20},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseWaterDamage":{"min":18,"raw":18,"max":28},"baseAirDamage":{"min":9,"raw":9,"max":14}},"rarity":"rare"},"Goblin Luck Charm":{"internalName":"Goblin Luck Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":43},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lootBonus":12,"stealing":4},"rarity":"rare"},"Dujgon Warrior Hammer":{"internalName":"Dujgon Warrior Hammer","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":175,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"warrior","quest":"Ice Nations","strength":15,"dexterity":5},"powderSlots":1,"dropMeta":{"name":"Dujgon Nation","type":"merchant","coordinates":[991,38,-3455]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":6,"rawDexterity":2,"rawHealth":-130,"earthDamage":8},"base":{"baseEarthDamage":{"min":46,"raw":46,"max":67}},"rarity":"legendary"},"Tearing Seam":{"internalName":"Tearing Seam","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":172,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"shaman","strength":16,"defence":16},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawDexterity":-7,"rawIntelligence":-7,"rawAgility":-7,"rawMainAttackDamage":43,"rawHealth":150,"lifeSteal":33,"xpBonus":7},"base":{"baseDamage":{"min":20,"raw":20,"max":26},"baseEarthDamage":{"min":23,"raw":23,"max":29},"baseFireDamage":{"min":17,"raw":17,"max":23}},"rarity":"unique"},"Rosario":{"internalName":"Rosario","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":82,"dropRestriction":"normal","requirements":{"level":43,"classRequirement":"mage","strength":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"spellDamage":{"min":-26,"raw":-20,"max":-14},"healthRegen":{"min":3,"raw":9,"max":12},"healthRegenRaw":{"min":5,"raw":15,"max":20},"rawHealth":{"min":75,"raw":250,"max":325},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseEarthDamage":{"min":23,"raw":23,"max":32},"baseFireDamage":{"min":23,"raw":23,"max":32}},"rarity":"unique"},"Calamaro's Relik":{"internalName":"Calamaro's Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":152,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"shaman","quest":"Underice"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-5,"spellDamage":12,"manaRegen":6,"walkSpeed":10,"rawMaxMana":20},"base":{"baseDamage":{"min":21,"raw":21,"max":23},"baseWaterDamage":{"min":25,"raw":25,"max":26},"baseAirDamage":{"min":13,"raw":13,"max":14}},"rarity":"rare"},"Goblin Runners":{"internalName":"Goblin Runners","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":43,"strength":10,"dexterity":25},"powderSlots":2,"identifications":{"mainAttackDamage":-7,"manaSteal":4,"walkSpeed":12,"lootBonus":10},"base":{"baseHealth":420},"rarity":"set"},"Kolkhaar":{"internalName":"Kolkhaar","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":104,"dropRestriction":"normal","requirements":{"level":43,"classRequirement":"warrior","strength":25,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"mainAttackDamage":{"min":-78,"raw":-60,"max":-42},"poison":{"min":74,"raw":245,"max":319},"rawAttackSpeed":{"min":1,"raw":2,"max":3},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":21,"raw":21,"max":25},"baseEarthDamage":{"min":17,"raw":17,"max":29},"baseThunderDamage":{"min":13,"raw":13,"max":33}},"rarity":"unique"},"Calamaro's Staff":{"internalName":"Calamaro's Staff","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":105,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"mage","quest":"Underice"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-5,"spellDamage":12,"manaRegen":6,"walkSpeed":10,"rawMaxMana":20},"base":{"baseDamage":{"min":12,"raw":12,"max":18},"baseWaterDamage":{"min":16,"raw":16,"max":22},"baseAirDamage":{"min":6,"raw":6,"max":10}},"rarity":"rare"},"Ice Climbing Boots":{"internalName":"Ice Climbing Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":43,"strength":5,"intelligence":10},"powderSlots":2,"identifications":{"rawSpellDamage":{"min":11,"raw":35,"max":46},"thorns":{"min":3,"raw":9,"max":12},"walkSpeed":{"min":-4,"raw":-3,"max":-2},"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":440,"baseEarthDefence":10,"baseThunderDefence":-40,"baseWaterDefence":30},"rarity":"rare"},"The Knight's Chestplate":{"internalName":"The Knight's Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":43},"identifications":{"rawStrength":7,"rawDexterity":7,"spellDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-39,"raw":-30,"max":-21},"thunderDamage":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":440,"baseEarthDefence":-20,"baseThunderDefence":15},"rarity":"unique"},"Blessing":{"internalName":"Blessing","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":75,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"mage","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":4,"walkSpeed":6,"xpBonus":5,"lootBonus":5,"fireDamage":-10},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseAirDamage":{"min":12,"raw":12,"max":18}},"rarity":"unique"},"Calamaro's Bow":{"internalName":"Calamaro's Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":152,"dropRestriction":"never","identified":true,"requirements":{"level":43,"classRequirement":"archer","quest":"Underice"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-5,"spellDamage":12,"manaRegen":6,"walkSpeed":10,"rawMaxMana":20},"base":{"baseDamage":{"min":17,"raw":17,"max":27},"baseWaterDamage":{"min":20,"raw":20,"max":31},"baseAirDamage":{"min":11,"raw":11,"max":16}},"rarity":"rare"},"Coarse Torc":{"internalName":"Corase Torc","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":43,"strength":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":3,"poison":{"min":24,"raw":80,"max":104},"earthDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":55,"baseEarthDefence":20,"baseAirDefence":-20},"rarity":"unique"},"Foul Fairy Dust":{"internalName":"Foul Fairy Dust","type":"ingredient","requirements":{"level":43,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"manaRegen":{"min":-8,"raw":-8,"max":-7},"spellDamage":{"min":12,"raw":12,"max":16}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-96000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":30,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Twisted Fairy Devourer","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7]]}]},"Spider Leg":{"internalName":"Spider Leg","type":"ingredient","requirements":{"level":43,"skills":["tailoring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawHealth":{"min":-50,"raw":-50,"max":-40},"walkSpeed":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":5},"droppedBy":[{"name":"Acromantula","coords":[[-1808,84,-4610,10],[-1828,79,-4636,10],[-1829,73,-4663,10]]}]},"Snow Heart":{"internalName":"Snow Heart","type":"ingredient","requirements":{"level":43,"skills":["alchemism","cooking"]},"icon":{"format":"legacy","value":"332:0"},"identifications":{"waterDamage":{"min":1,"raw":1,"max":4},"spellDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-180,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rogue Snowman","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Snowball","coords":null},{"name":"Ice Elemental","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]}]},"Owl Feather":{"internalName":"Owl Feather","type":"ingredient","requirements":{"level":43,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Snow Owl","coords":[[148,72,-986,20],[127,70,-921,20],[219,74,-736,22],[61,67,-959,16]]}]},"Twisted Organ":{"internalName":"Twisted Organ","type":"ingredient","requirements":{"level":43,"skills":["cooking"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"manaRegen":{"min":-6,"raw":-6,"max":-6},"spellDamage":{"min":11,"raw":11,"max":13}},"tier":2,"consumableOnlyIDs":{"duration":-370,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Twisted Fairy Devourer","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7]]}]},"Wood Shavings":{"internalName":"Wood Shavings","type":"ingredient","requirements":{"level":43,"skills":["scribing","woodworking"]},"icon":{"format":"legacy","value":"351:3"},"identifications":{"xpBonus":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Rotten Woodcutter","coords":[-191,67,-912,20]},{"name":"Orc Lookout","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]}]},"Acidic Blood":{"internalName":"Acidic Blood","type":"ingredient","requirements":{"level":43,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"441:0"},"identifications":{"poison":{"min":175,"raw":175,"max":225}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-65000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Acromantula","coords":[[-1808,84,-4610,10],[-1828,79,-4636,10],[-1829,73,-4663,10]]}]},"Torn Rawhide":{"internalName":"Torn Rawhide","type":"ingredient","requirements":{"level":43,"skills":["tailoring"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":4},"rawDefence":{"min":-4,"raw":-4,"max":-2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Warg","coords":[-1734,72,-4913,30]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Forager","coords":[[-1888,44,-4896,4],[-1837,52,-4875,4],[-1788,54,-4902,4],[-1674,56,-4887,4],[-1706,55,-4859,4],[-1708,61,-4891,4],[-1637,51,-4925,6],[-1637,51,-4925,3]]},{"name":"Goblin Revenge Seeker","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Waterway Bootlegger","coords":[-1711,22,-4934,12]},{"name":"Waterway Fermenter","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Moonshiner","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Bucket Brigade","coords":[[-1711,49,-4918,2],[-1702,48,-4926,2],[-1712,45,-4938,2]]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Loamsprout Orc Muckraker","coords":[-1698,50,-4745,2]},{"name":"Loamsprout Orc Rotflinger","coords":[-1698,50,-4745,2]},{"name":"Sablestone Orc Smasher","coords":[-1731,60,-4912,10]},{"name":"Sablestone Orc Basher","coords":[-1731,60,-4912,10]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Secretcove Orc Ruinseeker","coords":false}]},"Runner's Bandages":{"internalName":"Runner's Bandages","type":"ingredient","requirements":{"level":43,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"sprintRegen":{"min":8,"raw":8,"max":11}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Orc Lookout","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Sablestone Orc Basher","coords":[-1731,60,-4912,10]},{"name":"Sablestone Orc Smasher","coords":[-1731,60,-4912,10]},{"name":"Secretcove Orc Sneak","coords":[-1840,27,-4890,3]},{"name":"Goblin Forager","coords":[[-1888,44,-4896,4],[-1837,52,-4875,4],[-1788,54,-4902,4],[-1674,56,-4887,4],[-1706,55,-4859,4],[-1708,61,-4891,4],[-1637,51,-4925,6],[-1637,51,-4925,3]]},{"name":"Goblin Traveller","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Revenge Seeker","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Mistdawn Fogcatcher","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Raindancer","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Speaker","coords":[-1711,22,-4934,12]},{"name":"Mistdawn Windwhistler","coords":[-1548,45,-4845,7]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Waterway Fermenter","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Moonshiner","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Bootlegger","coords":[-1711,22,-4934,12]},{"name":"Waterway Bucket Brigade","coords":[[-1711,49,-4918,2],[-1702,48,-4926,2],[-1712,45,-4938,2]]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]}]},"Prosto Boots":{"internalName":"Prosto Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42},"powderSlots":2,"identifications":{"rawStrength":5,"rawDefence":8,"rawAgility":-2},"base":{"baseHealth":350},"rarity":"unique"},"Dogfight":{"internalName":"Dogfight","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":42,"intelligence":15,"agility":15},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"178","name":"necklace.air2"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":2,"raw":8,"max":10},"sprintRegen":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":80},"rarity":"legendary"},"Misericorde":{"internalName":"Misericorde","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":179,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"assassin","strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-16,"raw":-12,"max":-8},"healthRegenRaw":{"min":-36,"raw":-28,"max":-20},"lifeSteal":{"min":17,"raw":55,"max":72},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":4,"raw":4,"max":25},"baseEarthDamage":{"min":14,"raw":14,"max":15},"baseThunderDamage":{"min":14,"raw":14,"max":15},"baseWaterDamage":{"min":14,"raw":14,"max":15},"baseFireDamage":{"min":14,"raw":14,"max":15},"baseAirDamage":{"min":14,"raw":14,"max":15}},"rarity":"rare"},"Okit":{"internalName":"Okit","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":42},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":55,"baseWaterDefence":-2,"baseFireDefence":10},"rarity":"unique"},"Willpower":{"internalName":"Willpower","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":42,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"185","name":"necklace.water1"}},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":-15,"baseThunderDefence":-15,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"unique"},"Climbing Helmet":{"internalName":"Climbing Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(152,118,59)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":42,"quest":"Ice Nations"},"powderSlots":2,"identifications":{"rawStrength":5,"rawAgility":5,"rawMainAttackDamage":{"min":17,"raw":56,"max":73},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":350,"baseEarthDefence":30,"baseAirDefence":30},"rarity":"unique"},"Thunderbolt":{"internalName":"Thunderbolt","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":292,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"archer","dexterity":20},"powderSlots":1,"lore":"This bow has no string. Instead, a thin lightning-like thread is strung upon it. It is said to be limited only by the speed of the user.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawAgility":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"earthDamage":{"min":-187,"raw":-144,"max":-101},"thunderDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-47,"raw":-36,"max":-25}},"base":{"baseDamage":{"min":11,"raw":11,"max":23},"baseThunderDamage":{"min":1,"raw":1,"max":101}},"rarity":"legendary"},"Pelier":{"internalName":"Pelier","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42},"powderSlots":2,"lore":"Occasional whisperings can be heard by the wearers of this stone mask, reforged from a phylactery of souls. Although not dangerous, staring into the eyes of the mask can bring fear of one's soul being trapped within.","identifications":{"rawMainAttackDamage":{"min":24,"raw":80,"max":104},"lifeSteal":{"min":14,"raw":47,"max":61},"lootBonus":{"min":8,"raw":25,"max":33},"earthDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":565,"baseThunderDefence":20,"baseAirDefence":-40},"rarity":"legendary"},"Minus":{"internalName":"Minus","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":261,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"shaman","strength":18,"dexterity":18},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawHealth":{"min":-240,"raw":-185,"max":-129},"raw1stSpellCost":{"min":-1,"raw":-5,"max":-6},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":84,"raw":84,"max":90},"baseThunderDamage":{"min":75,"raw":75,"max":99}},"rarity":"rare"},"Sharp Terror":{"internalName":"Sharp Terror","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":94,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"warrior","intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":25,"raw":25,"max":31},"baseWaterDamage":{"min":31,"raw":31,"max":39}},"rarity":"unique"},"Heavensent":{"internalName":"Heavensent","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":305,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"shaman","intelligence":17,"agility":17},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":15,"rawDefence":-8,"rawAgility":15,"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":0,"raw":0,"max":4},"baseWaterDamage":{"min":54,"raw":54,"max":66},"baseAirDamage":{"min":54,"raw":54,"max":66}},"rarity":"legendary"},"Wirt's Leg":{"internalName":"Wirt's Leg","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":75,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"lootBonus":{"min":7,"raw":23,"max":30},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":26,"raw":26,"max":34}},"rarity":"unique"},"Celsius":{"internalName":"Celsius","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":128,"dropRestriction":"never","identified":true,"requirements":{"level":42,"classRequirement":"assassin","intelligence":20,"agility":15},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"reflection":8,"walkSpeed":-4,"waterDamage":10,"fireDamage":-20,"airDamage":10},"base":{"baseDamage":{"min":11,"raw":11,"max":17},"baseWaterDamage":{"min":20,"raw":20,"max":28},"baseAirDamage":{"min":18,"raw":18,"max":30}},"rarity":"unique"},"Flawless Light Birch Wand":{"internalName":"Flawless Light Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":64,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":23,"raw":23,"max":28}},"rarity":"common"},"Flawless Light Birch Bow":{"internalName":"Flawless Light Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":132,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":56,"raw":56,"max":72}},"rarity":"common"},"Unfinished Chain Boots":{"internalName":"Unfinished Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42},"powderSlots":1,"base":{"baseHealth":285},"rarity":"common"},"Crossbow":{"internalName":"Crossbow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":170,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":200,"raw":200,"max":210}},"rarity":"unique"},"Duskshield":{"internalName":"DuskShield","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42,"dexterity":10,"intelligence":10},"powderSlots":2,"identifications":{"spellDamage":{"min":-6,"raw":-5,"max":-3},"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10},"earthDamage":{"min":-10,"raw":-8,"max":-6},"fireDamage":{"min":-10,"raw":-8,"max":-6},"thunderDefence":{"min":2,"raw":6,"max":8},"waterDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":350,"baseThunderDefence":15,"baseWaterDefence":15},"rarity":"unique"},"Affrettando":{"internalName":"Affrettando","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":98,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"warrior","dexterity":30,"agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"rawStrength":-5,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":6,"raw":21,"max":27},"thunderDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":-39,"raw":-30,"max":-21}},"base":{"baseDamage":{"min":3,"raw":3,"max":15},"baseAirDamage":{"min":14,"raw":14,"max":31}},"rarity":"unique"},"Horse Mask":{"internalName":"Horse Mask","type":"armour","armourType":"helmet","armourColor":"rgb(111,111,111)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":42,"strength":25},"powderSlots":2,"identifications":{"rawStrength":7,"mainAttackDamage":{"min":2,"raw":7,"max":9},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":405,"baseEarthDefence":20,"baseFireDefence":-20},"rarity":"set"},"Hotline":{"internalName":"Hotline","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":176,"dropRestriction":"never","identified":true,"requirements":{"level":42,"classRequirement":"shaman","dexterity":15,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDexterity":7,"rawDefence":7,"healthRegenRaw":-17,"lifeSteal":34,"walkSpeed":8,"xpBonus":8},"base":{"baseDamage":{"min":36,"raw":36,"max":42},"baseThunderDamage":{"min":36,"raw":36,"max":42},"baseFireDamage":{"min":36,"raw":36,"max":42}},"rarity":"unique"},"Poison-Tipped Poleaxe":{"internalName":"Poison-Tipped Poleaxe","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"warrior","strength":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"poison":{"min":105,"raw":350,"max":455},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":24,"raw":24,"max":30},"baseEarthDamage":{"min":20,"raw":20,"max":28}},"rarity":"unique"},"Cerid's Precision":{"internalName":"Cerid's Precision","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42,"dexterity":25},"powderSlots":1,"identifications":{"rawDexterity":9,"rawMainAttackDamage":{"min":18,"raw":60,"max":78},"spellDamage":{"min":3,"raw":10,"max":13},"exploding":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":300,"baseEarthDefence":-20,"baseThunderDefence":30,"baseWaterDefence":-20},"rarity":"rare"},"Giant's Bracer":{"internalName":"Giant's Bracer","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42,"strength":20},"powderSlots":2,"lore":"This ill-fitting, bulky chestplate was never intended to be a chestplate at all. Rather, it is a broken fragment of an arm bracer, from the time of giants.","identifications":{"rawStrength":12,"rawDexterity":-2,"rawAgility":-2,"mainAttackDamage":{"min":6,"raw":19,"max":25},"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"rawSpellDamage":{"min":-91,"raw":-70,"max":-49},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":600},"rarity":"legendary"},"Flawless Light Birch Dagger":{"internalName":"Flawless Light Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":108,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":30,"raw":30,"max":40}},"rarity":"common"},"Flawless Light Birch Relik":{"internalName":"Flawless Light Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":50,"raw":50,"max":52}},"rarity":"common"},"Short Cutter":{"internalName":"Short Cutter","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":164,"dropRestriction":"never","identified":true,"requirements":{"level":42,"classRequirement":"assassin","dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":33,"poison":215,"lifeSteal":46,"walkSpeed":12,"xpBonus":8,"lootBonus":15},"base":{"baseDamage":{"min":22,"raw":22,"max":39},"baseThunderDamage":{"min":17,"raw":17,"max":28}},"rarity":"rare"},"Katana":{"internalName":"Katana","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":186,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":14,"raw":46,"max":60},"rawSpellDamage":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":74,"raw":74,"max":75}},"rarity":"rare"},"Enhanced Duskshield":{"internalName":"Enhanced DuskShield","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":42,"dexterity":10,"intelligence":10},"powderSlots":2,"lore":"They look extremely bulky and uncomfortable...do they have a right to call it \"enhanced\"?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"spellDamage":-10,"thorns":6,"reflection":6,"earthDamage":-14,"fireDamage":-14,"thunderDefence":5,"waterDefence":5},"base":{"baseHealth":585,"baseThunderDefence":12,"baseWaterDefence":12},"rarity":"unique"},"Haqherphix":{"internalName":"Haqherphix","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":138,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"mage","strength":30,"dexterity":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":5,"raw":16,"max":21},"exploding":{"min":5,"raw":17,"max":22},"xpBonus":{"min":3,"raw":9,"max":12}},"base":{"baseEarthDamage":{"min":11,"raw":11,"max":21},"baseThunderDamage":{"min":0,"raw":0,"max":32}},"rarity":"legendary"},"Candlestick":{"internalName":"Candlestick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":79,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawIntelligence":5,"spellDamage":{"min":2,"raw":8,"max":10},"exploding":{"min":1,"raw":4,"max":5},"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":11,"raw":11,"max":22},"baseFireDamage":{"min":11,"raw":11,"max":33}},"rarity":"unique"},"Snow Helmet":{"internalName":"Snow Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(255,255,255)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":42,"agility":15},"powderSlots":2,"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"reflection":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":405,"baseAirDefence":15},"rarity":"set"},"Flawless Light Birch Spear":{"internalName":"Flawless Light Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":88,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":37,"raw":37,"max":48}},"rarity":"common"},"Copper-Alloy Pike":{"internalName":"Copper-Alloy Pike","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":111,"dropRestriction":"normal","requirements":{"level":42,"classRequirement":"warrior","dexterity":10,"defence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"manaSteal":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":26,"raw":26,"max":38},"baseThunderDamage":{"min":8,"raw":8,"max":14},"baseFireDamage":{"min":8,"raw":8,"max":14}},"rarity":"unique"},"Mythical Trousers":{"internalName":"Mythical Trousers","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42,"defence":25},"powderSlots":1,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":8,"raw":27,"max":35},"rawHealth":{"min":45,"raw":150,"max":195},"lifeSteal":{"min":11,"raw":37,"max":48},"manaRegen":{"min":-8,"raw":-6,"max":-4},"fireDamage":{"min":2,"raw":7,"max":9},"elementalDamage":{"min":-9,"raw":-7,"max":-5},"fireDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":500},"rarity":"rare"},"Goblin Hex Focus":{"internalName":"Goblin Hex Focus","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":42},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"spellDamage":6,"poison":65,"elementalDamage":3},"base":{"baseHealth":-70},"rarity":"rare"},"Upside Down Bucket":{"internalName":"Upside Down Bucket","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":42},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-4,"raw":-3,"max":-2},"reflection":{"min":2,"raw":8,"max":10},"waterDamage":{"min":5,"raw":16,"max":21},"waterDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":350,"baseThunderDefence":-15,"baseWaterDefence":25},"rarity":"unique"},"Fish Tail":{"internalName":"Fish Tail","type":"ingredient","requirements":{"level":42,"skills":["alchemism"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"manaRegen":{"min":5,"raw":5,"max":7},"waterDefence":{"min":8,"raw":8,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defishious","coords":[[872,38,-3016,100],[452,35,-3768,100],[127,40,-3571,100],[-293,42,-3275,100],[453,36,-3768,100]]}]},"Goblin Trinket":{"internalName":"Goblin Trinket","type":"ingredient","requirements":{"level":42,"skills":["jeweling"]},"icon":{"format":"legacy","value":"379:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":1},"stealing":{"min":3,"raw":3,"max":4},"xpBonus":{"min":3,"raw":3,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Twisted Fairy Devourer","coords":[[-2031,42,-4766,7],[-2051,42,-4723,7],[-1943,40,-4665,7],[-1993,43,-4786,7],[-1617,50,-4909,7],[-1700,55,-4861,7],[-1899,44,-4890,7],[-2058,52,-4961,7],[-1992,44,-4894,7]]},{"name":"Ancient Resurrected Orc","coords":[[-1943,51,-4948,60],[-1831,47,-4784,60],[-1700,50,-4813,60],[-1510,44,-4834,60],[-1695,54,-4602,60],[-1528,45,-4657,30],[-1677,54,-5008,30],[-2088,50,-4899,30],[-2063,43,-4763,30],[-2018,38,-4716,22]]}]},"Gold Nugget":{"internalName":"Gold Nugget","type":"ingredient","requirements":{"level":42,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"lootBonus":{"min":-1,"raw":-1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-19000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Goblin Traveller","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Forager","coords":[[-1888,44,-4896,4],[-1837,52,-4875,4],[-1788,54,-4902,4],[-1674,56,-4887,4],[-1706,55,-4859,4],[-1708,61,-4891,4],[-1637,51,-4925,6],[-1637,51,-4925,3]]},{"name":"Goblin Revenge Seeker","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Mistdawn Fogcatcher","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Raindancer","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Windwhistler","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Speaker","coords":[-1711,22,-4934,12]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Digger","coords":[-1491,33,-4814,7]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Waterway Bootlegger","coords":[-1711,22,-4934,12]},{"name":"Waterway Fermenter","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Moonshiner","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Bucket Brigade","coords":[[-1711,49,-4918,2],[-1702,48,-4926,2],[-1712,45,-4938,2]]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]},{"name":"Angry Goblin","coords":null}]},"Defishious":{"internalName":"Defishious","type":"ingredient","requirements":{"level":42,"skills":["cooking"]},"icon":{"format":"legacy","value":"349:1"},"identifications":{"manaRegen":{"min":4,"raw":4,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defishious","coords":[[872,38,-3016,100],[452,35,-3768,100],[127,40,-3571,100],[-293,42,-3275,100],[453,36,-3768,100]]}]},"Natural Nitrates":{"internalName":"Natural Nitrates","type":"ingredient","requirements":{"level":42,"skills":["alchemism"]},"icon":{"format":"legacy","value":"6:4"},"identifications":{"sprintRegen":{"min":12,"raw":12,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Orc Fighter","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Earthpit Orc Drummer","coords":[-1915,11,-4721,8]},{"name":"Earthpit Orc Reveler","coords":[[-1932,11,-4767,2],[-1915,11,-4767,2]]},{"name":"Loamsprout Orc Rotflinger","coords":[-1698,50,-4745,2]},{"name":"Loamsprout Orc Muckraker","coords":[-1698,50,-4745,2]},{"name":"Mudspring Orc Chemist","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Pulper","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Waterbearer","coords":[-1994,54,-5019,7]},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Goblin Forager","coords":[[-1888,44,-4896,4],[-1837,52,-4875,4],[-1788,54,-4902,4],[-1674,56,-4887,4],[-1706,55,-4859,4],[-1708,61,-4891,4],[-1637,51,-4925,6],[-1637,51,-4925,3]]},{"name":"Goblin Traveller","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Pickpocket","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Revenge Seeker","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Mistdawn Fogcatcher","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Raindancer","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Speaker","coords":[-1711,22,-4934,12]},{"name":"Mistdawn Windwhistler","coords":[-1548,45,-4845,7]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Waterway Fermenter","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Moonshiner","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Bootlegger","coords":[-1711,22,-4934,12]},{"name":"Waterway Bucket Brigade","coords":[[-1711,49,-4918,2],[-1702,48,-4926,2],[-1712,45,-4938,2]]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]}]},"Troll Hair":{"internalName":"Troll Hair","type":"ingredient","requirements":{"level":42,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"walkSpeed":{"min":-6,"raw":-6,"max":-4},"mainAttackDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tower Troll","coords":[321,112,-4524,0]},{"name":"Displaced Troll","coords":null},{"name":"Troll Brute","coords":[[841,46,-5376,5],[844,44,-5347,5],[764,45,-5313,5],[752,47,-5377,5],[749,46,-5352,5],[744,45,-5332,5],[758,45,-5328,5]]},{"name":"Troll Splinterbone","coords":[[841,46,-5376,5],[844,44,-5347,5],[764,45,-5313,5],[752,47,-5377,5],[749,46,-5352,5],[744,45,-5332,5],[758,45,-5328,5]]},{"name":"Troll Minion","coords":false},{"name":"Cave Troll","coords":false}]},"Ice Silver":{"internalName":"Ice Silver","type":"ingredient","requirements":{"level":42,"skills":["woodworking","tailoring"]},"icon":{"format":"legacy","value":"42:0"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":4},"lootBonus":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":7},"droppedBy":[{"name":"Frozen Warrior","coords":[[1078,56,-3331,6],[1078,56,-3331,6],[1077,69,-3332,6],[1077,69,-3332,6],[1093,71,-3341,3],[1109,54,-3337,9],[1109,54,-3337,9],[1108,59,-3357,7],[1108,59,-3357,7],[1083,71,-3374,5],[1066,68,-3377,6],[1054,67,-3365,5],[1077,55,-3368,7],[1077,55,-3368,7]]},{"name":"Icy Ranger","coords":[[1130,46,-3334,4],[1122,70,-3335,1]]},{"name":"Frosted Shaman","coords":[1077,55,-3369,4]},{"name":"Catapult Operator","coords":[[1121,69,-3321,1],[1125,69,-3346,1]]},{"name":"Frigid Climber","coords":[[855,39,-3536,8],[855,39,-3536,8],[855,39,-3536,8],[1085,42,-3410,8],[1098,42,-3422,8],[1074,42,-3423,8],[1083,39,-3298,6],[1083,39,-3298,8],[1083,39,-3298,12],[1127,39,-3366,10],[1125,39,-3393,10],[1144,39,-3380,12]]},{"name":"Gelid Commander","coords":[1075,54,-3358,30]}]},"Blazing Bangle":{"internalName":"Blazing Bangle","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":41,"defence":15},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"165","name":"bracelet.fire2"}},"identifications":{"rawDefence":3,"fireSpellDamage":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":-16,"raw":-12,"max":-8},"xpBonus":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseFireDefence":15},"rarity":"legendary"},"Refined Chainmail Helmet":{"internalName":"Refined Chainmail Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":41},"powderSlots":1,"base":{"baseHealth":245},"rarity":"common"},"Nodguj Warrior Chestplate":{"internalName":"Nodguj Warrior Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":41,"quest":"Ice Nations"},"powderSlots":2,"dropMeta":{"name":"Nodguj Nation","type":"merchant","coordinates":[793,59,-3350]},"identifications":{"rawDefence":8,"mainAttackDamage":5,"healthRegen":25,"stealing":10,"earthDamage":10,"fireDamage":10,"earthDefence":20,"fireDefence":20},"base":{"baseHealth":625,"baseEarthDefence":10,"baseFireDefence":20},"rarity":"legendary"},"Obsidian":{"internalName":"Obsidian","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":135,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"assassin","strength":30},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-6,"raw":-5,"max":-3},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"lootBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseEarthDamage":{"min":38,"raw":38,"max":52}},"rarity":"unique"},"Bleeding Wand":{"internalName":"Bleeding Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":78,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"healthRegen":{"min":-17,"raw":-13,"max":-9},"rawHealth":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":10,"raw":33,"max":43}},"base":{"baseDamage":{"min":35,"raw":35,"max":41}},"rarity":"unique"},"Alarm":{"internalName":"Alarm","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":73,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage","dexterity":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"rawStrength":-5,"rawDexterity":5,"rawAgility":5,"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"earthDamage":{"min":-18,"raw":-14,"max":-10}},"base":{"baseThunderDamage":{"min":4,"raw":4,"max":13},"baseAirDamage":{"min":7,"raw":7,"max":10}},"rarity":"unique"},"Fighting Spirit":{"internalName":"Fighting Spirit","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":136,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"warrior"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":6,"raw":19,"max":25},"elementalDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":52,"raw":52,"max":80}},"rarity":"rare"},"Flamiche":{"internalName":"Flamiche","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":130,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"archer","defence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"healthRegen":{"min":5,"raw":16,"max":21},"rawHealth":{"min":75,"raw":250,"max":325},"waterDefence":{"min":-6,"raw":-5,"max":-3},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":24},"baseFireDamage":{"min":18,"raw":18,"max":22}},"rarity":"unique"},"Unfinished Chain Helmet":{"internalName":"Unfinished Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":41},"powderSlots":1,"base":{"baseHealth":265},"rarity":"common"},"Valorheart":{"internalName":"Valorheart","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":135,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"assassin","intelligence":20,"defence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":5,"rawHealth":{"min":75,"raw":250,"max":325},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":50},"baseFireDamage":{"min":40,"raw":40,"max":50}},"rarity":"unique"},"Seabreeze":{"internalName":"Seabreeze","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":41,"intelligence":10,"agility":10},"powderSlots":2,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"identifications":{"mainAttackDamage":-15,"raw4thSpellCost":-2,"reflection":15,"rawWaterSpellDamage":40,"rawAirSpellDamage":40},"base":{"baseHealth":350,"baseFireDefence":20},"rarity":"rare"},"Sunbreeze":{"internalName":"Sunbreeze","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":70,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage","defence":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":5,"rawAgility":5,"rawHealth":{"min":81,"raw":270,"max":351},"walkSpeed":{"min":2,"raw":5,"max":7},"waterDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":6,"raw":6,"max":10},"baseFireDamage":{"min":8,"raw":8,"max":12},"baseAirDamage":{"min":8,"raw":8,"max":12}},"rarity":"unique"},"Assassin's Hood":{"internalName":"Assassin's Hood","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":41},"powderSlots":1,"identifications":{"rawDexterity":4,"poison":{"min":33,"raw":110,"max":143},"stealing":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":315,"baseEarthDefence":-10},"rarity":"unique"},"Aeolus":{"internalName":"Aeolus","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":41,"agility":25},"identifications":{"rawDefence":-7,"walkSpeed":{"min":5,"raw":17,"max":22},"xpBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":230,"baseFireDefence":-30},"rarity":"unique"},"Ice Fishing Spear":{"internalName":"Ice Fishing Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":101,"dropRestriction":"never","identified":true,"requirements":{"level":41,"classRequirement":"warrior","intelligence":25,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawDexterity":5,"healthRegen":-10,"lifeSteal":25,"raw2ndSpellCost":-5,"thunderDamage":10,"waterDamage":12},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseWaterDamage":{"min":15,"raw":15,"max":25}},"rarity":"unique"},"Generator Amulet":{"internalName":"Generator Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":41,"quest":"Heart of Llevigar"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"184","name":"necklace.thunder2"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"rawSpellDamage":{"min":6,"raw":20,"max":26},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":-20,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":-10},"rarity":"rare"},"Weighted Nimble Fingers":{"internalName":"Weighted Nimble Fingers","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":41,"dexterity":25},"lore":"The extra metal on the glove completely defeats the purpose... It's unclear why it was re-smithed like this.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":4,"mainAttackDamage":-5,"lootBonus":4,"stealing":3},"base":{"baseHealth":60},"rarity":"unique"},"Soul":{"internalName":"Soul","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":100,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage","agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":3,"mainAttackDamage":{"min":1,"raw":4,"max":5},"spellDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":10,"raw":10,"max":30},"baseAirDamage":{"min":10,"raw":10,"max":30}},"rarity":"rare"},"Foehn Wind":{"internalName":"Foehn Wind","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":159,"dropRestriction":"never","identified":true,"requirements":{"level":41,"classRequirement":"shaman","defence":14,"agility":14},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"xpBonus":14,"lootBonus":14,"fireDamage":14,"airDamage":14,"waterDefence":-28,"fireDefence":14,"airDefence":14},"base":{"baseDamage":{"min":60,"raw":60,"max":68},"baseFireDamage":{"min":56,"raw":56,"max":72},"baseAirDamage":{"min":52,"raw":52,"max":76}},"rarity":"unique"},"Hallfred's Greed":{"internalName":"Hallfred's Greed","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":41},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"stealing":{"min":2,"raw":6,"max":8}},"rarity":"rare"},"Howler Hide":{"internalName":"Howler Hide","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":41,"strength":25},"powderSlots":1,"identifications":{"rawStrength":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":2,"raw":8,"max":10},"airDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":430,"baseEarthDefence":25,"baseFireDefence":-20},"rarity":"rare"},"Decoder Ring":{"internalName":"Decoder Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":41,"intelligence":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"xpBonus":{"min":3,"raw":9,"max":12},"lootBonus":{"min":2,"raw":6,"max":8}},"rarity":"rare"},"Sticky Decoder Ring":{"internalName":"Sticky Decoder Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":41,"intelligence":8},"lore":"Each one is welded stuck to just one letter. Apparently, to decode the special Rymek message, you need to buy twenty six. ...do they think you're a fool?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"spellDamage":4,"xpBonus":7,"lootBonus":4},"base":{"baseHealth":60},"rarity":"rare"},"Dujgon Warrior Chestplate":{"internalName":"Dujgon Warrior Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":41,"quest":"Ice Nations"},"powderSlots":2,"dropMeta":{"name":"Dujgon Nation","type":"merchant","coordinates":[991,38,-3455]},"identifications":{"rawAgility":8,"mainAttackDamage":10,"healthRegen":10,"stealing":10,"thunderDamage":10,"airDamage":10,"thunderDefence":20,"airDefence":20},"base":{"baseHealth":625,"baseThunderDefence":10,"baseAirDefence":20},"rarity":"legendary"},"Magicant":{"internalName":"Magicant","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":103,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"elementalDefence":{"min":4,"raw":12,"max":16}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":15},"baseThunderDamage":{"min":5,"raw":5,"max":15},"baseWaterDamage":{"min":5,"raw":5,"max":15},"baseFireDamage":{"min":5,"raw":5,"max":15},"baseAirDamage":{"min":5,"raw":5,"max":15}},"rarity":"rare"},"Snow Boots":{"internalName":"Snow Boots","type":"armour","armourType":"boots","armourColor":"rgb(255,255,255)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":41,"intelligence":15},"powderSlots":2,"identifications":{"healthRegen":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":2,"raw":6,"max":8},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":380,"baseWaterDefence":15},"rarity":"set"},"Ringing Mail":{"internalName":"Ringing Mail","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":41,"intelligence":20},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"waterDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":265,"baseThunderDefence":-20,"baseWaterDefence":20},"rarity":"unique"},"Nimble Fingers":{"internalName":"Nimble Fingers","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":41,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"lootBonus":{"min":2,"raw":5,"max":7},"stealing":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Rhunaex":{"internalName":"Rhunaex","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"assassin","strength":25,"dexterity":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":10,"raw":33,"max":43},"rawSpellDamage":{"min":8,"raw":25,"max":33},"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"lifeSteal":{"min":10,"raw":33,"max":43},"airDamage":{"min":-25,"raw":-19,"max":-13}},"base":{"baseDamage":{"min":13,"raw":13,"max":21},"baseEarthDamage":{"min":0,"raw":0,"max":34},"baseThunderDamage":{"min":0,"raw":0,"max":34}},"rarity":"unique"},"Chill":{"internalName":"Chill","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":41,"intelligence":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawSpellDamage":{"min":4,"raw":13,"max":17},"walkSpeed":{"min":-4,"raw":-3,"max":-2},"waterDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-40,"baseWaterDefence":5,"baseFireDefence":-5,"baseAirDefence":5},"rarity":"unique"},"Upgraded Flare Blitz":{"internalName":"Upgraded Flare Blitz","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":262,"dropRestriction":"never","identified":true,"requirements":{"level":41,"classRequirement":"shaman","defence":24},"powderSlots":3,"lore":"The weapon nearly catches fire during the merchant's demonstration. He still refuses to discount it despite this.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":8,"mainAttackDamage":8,"healthRegenRaw":-18,"rawHealth":-120,"lifeSteal":32,"fireDamage":6},"base":{"baseFireDamage":{"min":97,"raw":97,"max":113}},"rarity":"rare"},"Precious":{"internalName":"Precious","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":41},"lore":"A strange magic attracts you to this ring. Maybe you shouldn't tell anyone about its existence?","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawIntelligence":3,"rawAgility":3,"healthRegenRaw":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-80},"rarity":"legendary"},"Goblin Hood":{"internalName":"Goblin Hood","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":41,"strength":25,"dexterity":10},"powderSlots":2,"identifications":{"spellDamage":-7,"lifeSteal":27,"walkSpeed":8,"lootBonus":10},"base":{"baseHealth":380,"baseAirDefence":-10},"rarity":"set"},"Enhanced Assassin's Hood":{"internalName":"Enhanced Assassin's Hood","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":41},"powderSlots":1,"lore":"The chains comprising the mesh are rusty and old. It looks terrible, especially with the newer metal added on.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawDexterity":4,"poison":88,"stealing":4,"thunderDamage":4},"base":{"baseHealth":520,"baseEarthDefence":-15},"rarity":"unique"},"Reminiscence":{"internalName":"Reminiscence","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":41,"intelligence":30,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"169","name":"bracelet.water2"}},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10},"healthRegenRaw":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":80,"baseEarthDefence":-30,"baseWaterDefence":10,"baseFireDefence":20},"rarity":"legendary"},"The Scavenged":{"internalName":"The Scavenged","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":41,"dexterity":10,"defence":10,"agility":15},"majorIds":{"Escape Route":"+Escape Route: Frenzy and Time Dilation charge twice as fast, but to a halved maximum."},"identifications":{"rawDexterity":3,"rawAgility":3,"mainAttackDamage":{"min":-32,"raw":-25,"max":-17},"spellDamage":{"min":5,"raw":15,"max":20},"rawAttackSpeed":1,"walkSpeed":{"min":7,"raw":23,"max":30},"sprint":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":-275,"baseThunderDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"fabled"},"Blackened Boots":{"internalName":"Blackened Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":41,"dexterity":15},"powderSlots":2,"identifications":{"rawDexterity":4,"spellDamage":{"min":2,"raw":6,"max":8},"poison":{"min":33,"raw":110,"max":143},"manaSteal":{"min":1,"raw":4,"max":5},"healingEfficiency":{"min":-6,"raw":-5,"max":-3},"thunderDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":300,"baseEarthDefence":-15,"baseThunderDefence":20},"rarity":"unique"},"Flare Blitz":{"internalName":"Flare Blitz","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":200,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"shaman","defence":24},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":8,"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":-130,"raw":-100,"max":-70},"lifeSteal":{"min":12,"raw":40,"max":52},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseFireDamage":{"min":73,"raw":73,"max":87}},"rarity":"rare"},"Tourmaline Lyre":{"internalName":"Tourmaline Lyre","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":138,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"archer","defence":20,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawDefence":5,"rawAgility":5,"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":36},"baseFireDamage":{"min":10,"raw":10,"max":17},"baseAirDamage":{"min":8,"raw":8,"max":19}},"rarity":"unique"},"Snowslicer":{"internalName":"Snowslicer","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"assassin","intelligence":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":23,"raw":23,"max":32},"baseWaterDamage":{"min":18,"raw":18,"max":29}},"rarity":"unique"},"Glare":{"internalName":"Glare","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":129,"dropRestriction":"normal","requirements":{"level":41,"classRequirement":"mage","dexterity":15},"powderSlots":2,"lore":"The blazing sun has been revered by many druidic sects as a god in its own right, and the jewel in this brilliant wand glows with the brightness of their holy star.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawSpellDamage":{"min":15,"raw":50,"max":65},"thorns":{"min":5,"raw":15,"max":20},"reflection":{"min":12,"raw":40,"max":52},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":-19,"raw":-15,"max":-10},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":3,"raw":3,"max":10},"baseThunderDamage":{"min":30,"raw":30,"max":40}},"rarity":"legendary"},"Wolf Fang":{"internalName":"Wolf Fang","type":"ingredient","requirements":{"level":41,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"mainAttackDamage":{"min":1,"raw":1,"max":2},"walkSpeed":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cold Fang","coords":[[-116,67,-890,5],[15,70,-824,5],[22,68,-739,5],[-60,67,-699,5],[3,68,-673,5],[193,72,-735,5],[197,80,-1013,5]]},{"name":"Frigid Fang","coords":[[-388,23,-323,50],[-388,23,-323,50],[-264,23,-342,50],[-264,23,-342,50],[-146,24,-396,70],[-146,24,-396,70],[-42,71,-708,10],[-66,67,-765,10],[11,67,-690,30]]},{"name":"Dire Fang","coords":[[-265,21,-386,40],[-236,23,-400,40],[-188,24,-369,40],[-189,23,-421,40]]},{"name":"Docile Wolf","coords":false},{"name":"Ghost The Direwolf","coords":[-187,76,-739,4]},{"name":"Snow Fang","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Crazy Wolf Tamer","coords":[273,36,-641,1]}]},"Ice Fishing Hook":{"internalName":"Ice Fishing Hook","type":"ingredient","requirements":{"level":41,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"rawMainAttackDamage":{"min":16,"raw":16,"max":20},"rawSpellDamage":{"min":16,"raw":16,"max":20},"rawHealth":{"min":-100,"raw":-100,"max":-80}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Rotten Log":{"internalName":"Rotten Log","type":"ingredient","requirements":{"level":41,"skills":["scribing"]},"icon":{"format":"skin","value":"2a95dd2eda03ca491796f538d625579a828b71843fb60869b12c91ece1516"},"identifications":{"earthDamage":{"min":3,"raw":3,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-84,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Basher","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Treent Archer","coords":[[-35,72,-729,60],[9,68,-902,60],[77,68,-497,60],[-195,23,-414,100],[181,74,-700,60],[36,68,-673,60]]},{"name":"Rotten Woodcutter","coords":[-191,67,-912,20]},{"name":"Orc Lookout","coords":[[-2122,60,-4696,15],[-2089,50,-4808,45],[-2027,50,-4888,20],[-2013,56,-4971,35],[-1851,50,-4780,45],[-1783,51,-4782,20],[-1729,61,-4862,25],[-1671,51,-4776,20],[-1684,60,-4936,20],[-1666,59,-5046,30],[-1737,51,-4705,25],[-1620,53,-4780,20],[-1536,48,-4777,15],[-1582,49,-4683,20],[-2077,41,-4667,20]]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]}]},"Ice Fishing Bait":{"internalName":"Ice Fishing Bait","type":"ingredient","requirements":{"level":41,"skills":["cooking"]},"icon":{"format":"legacy","value":"349:0"},"identifications":{"waterDamage":{"min":3,"raw":3,"max":5},"airDamage":{"min":3,"raw":3,"max":5},"walkSpeed":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-250,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Ice Fishing Net":{"internalName":"Ice Fishing Net","type":"ingredient","requirements":{"level":41,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"30:0"},"identifications":{"rawMainAttackDamage":{"min":10,"raw":10,"max":10},"rawSpellDamage":{"min":10,"raw":10,"max":10},"rawHealth":{"min":25,"raw":25,"max":40}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Ice Fishing Twine":{"internalName":"Ice Fishing Twine","type":"ingredient","requirements":{"level":41,"skills":["woodworking"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawMainAttackDamage":{"min":-20,"raw":-20,"max":-16},"rawSpellDamage":{"min":-20,"raw":-20,"max":-16},"rawHealth":{"min":80,"raw":80,"max":100}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Dune Kiln":{"internalName":"Dune Kiln","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":255,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":40,"classRequirement":"shaman","defence":30},"powderSlots":2,"lore":"\"You don't really advance much when it comes to ovens. For clay, glass, ceramics...it was perfected a long time ago.\" -Treous, Almuj Glassblower","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.fire2"}},"identifications":{"healthRegenRaw":25,"manaSteal":10,"1stSpellCost":-25,"walkSpeed":-15,"exploding":40},"base":{"baseDamage":{"min":150,"raw":150,"max":250},"baseFireDamage":{"min":275,"raw":275,"max":325}},"rarity":"legendary"},"Sprout":{"internalName":"Sprout","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":137,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":40,"classRequirement":"mage","strength":30},"powderSlots":2,"lore":"\"The plants loathe to take hold upon the red stone. And so, we must hunt instead.\" -Caras, Owl Tribesman","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"spellDamage":-20,"earthMainAttackDamage":25,"earthSpellDamage":15,"walkSpeed":-15,"knockback":50},"base":{"baseDamage":{"min":40,"raw":40,"max":50},"baseEarthDamage":{"min":110,"raw":110,"max":130}},"rarity":"legendary"},"Goblin-Silver Ring":{"internalName":"Goblin-Silver Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"xpBonus":12,"lootBonus":8},"base":{"baseHealth":30,"baseEarthDefence":6,"baseThunderDefence":6,"baseWaterDefence":6,"baseFireDefence":6,"baseAirDefence":6},"rarity":"unique"},"Spruce Paper 1":{"internalName":"Refined Spruce Paper 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperSpruce"}},"tier":1},"Hops String 1":{"internalName":"Refined Hops String 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHops"}},"tier":1},"Spruce Wood 3":{"internalName":"Refined Spruce Wood 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"7f9d5bc6840f2c68f4e5a09a51bbda659f4e79f32fe6fa1d8460ce28cf34a0e4"},"tier":3},"Iron Ingot 1":{"internalName":"Refined Iron Ingot 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"55","name":"profession.ingotIron"}},"tier":1},"Spruce Wood 1":{"internalName":"Refined Spruce Wood 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"7f9d5bc6840f2c68f4e5a09a51bbda659f4e79f32fe6fa1d8460ce28cf34a0e4"},"tier":1},"Iron Gem 1":{"internalName":"Refined Iron Gem 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"67","name":"profession.gemIron"}},"tier":1},"Iron Ingot 3":{"internalName":"Refined Iron Ingot 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"55","name":"profession.ingotIron"}},"tier":3},"Spruce Paper 3":{"internalName":"Refined Spruce Paper 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperSpruce"}},"tier":3},"Spruce Wood 2":{"internalName":"Refined Spruce Wood 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"7f9d5bc6840f2c68f4e5a09a51bbda659f4e79f32fe6fa1d8460ce28cf34a0e4"},"tier":2},"Thunder Relic Leggings":{"internalName":"Thunder Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"dexterity":42},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"rawDexterity":8,"thunderDamage":{"min":5,"raw":16,"max":21},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":335,"baseThunderDefence":12},"rarity":"set"},"Ghostly Blades":{"internalName":"Ghostly Blades","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":129,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"assassin","intelligence":15,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawStrength":-5,"rawIntelligence":7,"rawAgility":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"rawSpellDamage":{"min":9,"raw":30,"max":39},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDamage":{"min":13,"raw":13,"max":17},"baseAirDamage":{"min":13,"raw":13,"max":17}},"rarity":"unique"},"Hornblende":{"internalName":"Hornblende","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":40,"strength":5},"powderSlots":2,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":340,"baseEarthDefence":20,"baseAirDefence":-15},"rarity":"unique"},"Diorite Boots":{"internalName":"Diorite Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"strength":25,"defence":15},"powderSlots":2,"identifications":{"rawDefence":8,"mainAttackDamage":{"min":4,"raw":12,"max":16},"exploding":{"min":2,"raw":6,"max":8},"earthDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":-31,"raw":-24,"max":-17}},"base":{"baseHealth":425,"baseEarthDefence":15,"baseWaterDefence":-40,"baseFireDefence":20},"rarity":"rare"},"Bow of Retribution":{"internalName":"Bow of Retribution","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":144,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"archer"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"lifeSteal":{"min":12,"raw":39,"max":51},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":5,"raw":18,"max":23},"reflection":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseThunderDamage":{"min":20,"raw":20,"max":20}},"rarity":"unique"},"Air Relic Leggings":{"internalName":"Air Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"agility":42},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"rawAgility":8,"airDamage":{"min":4,"raw":13,"max":17},"airDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":355,"baseAirDefence":20},"rarity":"set"},"Sundown Poncho":{"internalName":"Sundown Poncho","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","requirements":{"level":40,"dexterity":15,"defence":15},"powderSlots":2,"dropMeta":{"name":"Sunrise Canyon","type":"altar","coordinates":[1417,100,-1462]},"identifications":{"rawDexterity":9,"rawDefence":9,"mainAttackDamage":{"min":10,"raw":34,"max":44},"rawAttackSpeed":-1,"xpBonus":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":9,"raw":30,"max":39},"fireDamage":{"min":9,"raw":30,"max":39},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":500,"baseThunderDefence":30,"baseFireDefence":25},"rarity":"legendary"},"Slash and Burn":{"internalName":"Slash and Burn","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":124,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"assassin","strength":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawStrength":7,"exploding":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseFireDamage":{"min":25,"raw":25,"max":30}},"rarity":"unique"},"Enhanced Phosphene":{"internalName":"Enhanced Phosphene","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":40,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":2,"lore":"The paintjob on the armor is incredibly garish. Who thinks to combine sea green, mud, hot pink, and neon yellow?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"mainAttackDamage":8,"rawMainAttackDamage":26,"spellDamage":8,"rawSpellDamage":30},"base":{"baseHealth":600},"rarity":"rare"},"Daybreak":{"internalName":"Daybreak","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":87,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"mage","dexterity":10,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"spellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":3,"raw":10,"max":13},"rawHealth":{"min":38,"raw":125,"max":163},"rawAttackSpeed":-1,"walkSpeed":{"min":-19,"raw":-15,"max":-10},"lootBonus":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":20,"raw":20,"max":50},"baseThunderDamage":{"min":10,"raw":10,"max":60},"baseFireDamage":{"min":30,"raw":30,"max":40}},"rarity":"unique"},"Shining Golden Chestplate":{"internalName":"Shining Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40},"powderSlots":1,"base":{"baseHealth":247},"rarity":"common"},"Meteorite":{"internalName":"Meteorite","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":100,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"warrior","strength":10,"defence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseEarthDamage":{"min":15,"raw":15,"max":25},"baseFireDamage":{"min":10,"raw":10,"max":30}},"rarity":"unique"},"Phosphene":{"internalName":"Phosphene","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"spellDamage":{"min":4,"raw":12,"max":16},"rawSpellDamage":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":400},"rarity":"rare"},"Redrock Bandanna":{"internalName":"Redrock Bandanna","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","requirements":{"level":40,"defence":30},"powderSlots":1,"dropMeta":{"name":"Sunrise Canyon","type":"altar","coordinates":[1417,100,-1462]},"identifications":{"rawStrength":9,"xpBonus":{"min":3,"raw":11,"max":14},"fireDamage":{"min":6,"raw":19,"max":25},"fireDefence":{"min":6,"raw":19,"max":25}},"base":{"baseHealth":425,"baseFireDefence":25},"rarity":"rare"},"Galloping Spurs":{"internalName":"Galloping Spurs","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":40,"strength":25},"majorIds":{"Cavalryman":"+Cavalryman: You may cast spells and attack with a -30% damage penalty while on a horse."},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"earthDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":560,"baseEarthDefence":20},"rarity":"fabled"},"Psychopomp's Pileus":{"internalName":"Psychopomp's Pileus","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":40,"strength":40},"powderSlots":2,"identifications":{"mainAttackDamage":40,"healthRegen":-20,"3rdSpellCost":-20,"sprint":-20,"earthDamage":15},"base":{"baseHealth":300,"baseEarthDefence":30,"baseWaterDefence":-25,"baseFireDefence":-25},"rarity":"rare"},"Holy Greaves":{"internalName":"Holy Greaves","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40},"powderSlots":2,"lore":"Many blacksmiths have tried to craft their products in this armor's image, but none so far have been able to capture the brilliance of these Bovemist-blessed greaves.","identifications":{"rawIntelligence":9,"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":23,"raw":75,"max":98},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":500,"baseEarthDefence":-30,"baseThunderDefence":25,"baseWaterDefence":25},"rarity":"legendary"},"Water Relic Leggings":{"internalName":"Water Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"intelligence":42},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"rawIntelligence":8,"waterDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":320,"baseWaterDefence":24},"rarity":"set"},"Kilij":{"internalName":"Kilij","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":14,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"assassin","strength":20,"agility":20},"powderSlots":5,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawMainAttackDamage":{"min":27,"raw":90,"max":117},"spellDamage":{"min":-39,"raw":-30,"max":-21},"thorns":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":6,"raw":20,"max":26},"earthDamage":{"min":6,"raw":20,"max":26},"thunderDamage":{"min":-104,"raw":-80,"max":-56},"airDamage":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":2,"raw":2,"max":4},"baseAirDamage":{"min":0,"raw":0,"max":5}},"rarity":"legendary"},"Great Charm":{"internalName":"Great Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":40},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawHealth":{"min":38,"raw":125,"max":163},"xpBonus":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Solar Sailers":{"internalName":"Solar Sailers","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":40,"defence":15,"agility":20},"identifications":{"manaRegen":{"min":-6,"raw":-5,"max":-3},"raw2ndSpellCost":{"min":-2,"raw":-6,"max":-8},"walkSpeed":{"min":4,"raw":12,"max":16},"sprint":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":475,"baseFireDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Sacred":{"internalName":"Sacred","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":40,"intelligence":15,"agility":10},"powderSlots":2,"identifications":{"rawAgility":3,"manaRegen":6,"healingEfficiency":5,"xpBonus":10,"waterDamage":7,"airDamage":7},"base":{"baseHealth":310,"baseWaterDefence":15,"baseAirDefence":10},"rarity":"unique"},"Pangea":{"internalName":"Pangea","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":208,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"shaman","strength":18,"intelligence":18},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":50,"raw":50,"max":70},"baseEarthDamage":{"min":80,"raw":80,"max":110},"baseWaterDamage":{"min":80,"raw":80,"max":110}},"rarity":"rare"},"Salmon":{"internalName":"Salmon","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":159,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"archer","intelligence":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"spellDamage":{"min":2,"raw":7,"max":9},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":1,"raw":4,"max":5},"waterDamage":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":22,"raw":22,"max":44},"baseWaterDamage":{"min":33,"raw":33,"max":55}},"rarity":"unique"},"Wynnter Scarf":{"internalName":"Wynnter Scarf","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":40,"defence":20,"agility":20},"powderSlots":1,"identifications":{"rawDefence":3,"rawAgility":3,"healthRegen":20,"healthRegenRaw":20,"fireDefence":25,"airDefence":25},"base":{"baseHealth":425,"baseWaterDefence":-70,"baseFireDefence":40,"baseAirDefence":40},"rarity":"rare"},"Kelvik":{"internalName":"Kelvik","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":40,"defence":15},"powderSlots":2,"identifications":{"rawDefence":5,"rawHealth":{"min":24,"raw":80,"max":104},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"waterDamage":{"min":-9,"raw":-7,"max":-5},"fireDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":350,"baseFireDefence":15},"rarity":"unique"},"Breathing Helmet II":{"internalName":"Breathing Helmet II","type":"armour","armourType":"helmet","armourColor":"rgb(127,153,184)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"allowCraftsman":true,"requirements":{"level":40},"identifications":{"reflection":20,"walkSpeed":5,"waterDamage":15},"base":{"baseHealth":300,"baseThunderDefence":-40,"baseWaterDefence":40},"rarity":"unique"},"Phantom":{"internalName":"Phantom","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":150,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"archer","dexterity":19,"agility":19},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":-8,"rawDexterity":8,"rawDefence":-8,"rawAgility":8,"rawMainAttackDamage":{"min":9,"raw":29,"max":38}},"base":{"baseThunderDamage":{"min":9,"raw":9,"max":33},"baseAirDamage":{"min":0,"raw":0,"max":55}},"rarity":"unique"},"Earth Relic Leggings":{"internalName":"Earth Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"strength":42},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"rawStrength":8,"earthDamage":{"min":4,"raw":14,"max":18},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":375,"baseEarthDefence":16},"rarity":"set"},"Feithid":{"internalName":"Feithid","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"agility":20},"powderSlots":2,"identifications":{"rawAgility":7,"lifeSteal":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":270,"baseFireDefence":-5},"rarity":"unique"},"Gladiator":{"internalName":"Gladiator","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":40,"strength":12,"dexterity":12,"defence":12},"powderSlots":2,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"identifications":{"rawStrength":5,"rawDefence":5,"rawMainAttackDamage":85,"healthRegenRaw":25,"earthDamage":10,"thunderDamage":15,"fireDamage":10},"base":{"baseHealth":450,"baseWaterDefence":15,"baseAirDefence":15},"rarity":"rare"},"Funambulist":{"internalName":"Funambulist","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":40,"agility":35},"majorIds":{"Juggle":"+Juggle: Mutilate adds an additional 12 hits. All hits are reduced by -10%."},"powderSlots":2,"identifications":{"rawDexterity":11,"spellDamage":{"min":8,"raw":27,"max":35},"elementalDamage":{"min":-14,"raw":-11,"max":-8},"1stSpellCost":{"min":-2,"raw":-7,"max":-9},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"jumpHeight":1},"base":{"baseHealth":475,"baseAirDefence":-25},"rarity":"fabled"},"Rusher":{"internalName":"Rusher","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":40,"agility":20},"powderSlots":2,"dropMeta":{"name":"Dujgon Nation","type":"merchant","coordinates":[991,38,-3455]},"identifications":{"rawAgility":5,"walkSpeed":20,"thunderDamage":15,"airDamage":15},"base":{"baseHealth":150,"baseThunderDefence":10,"baseAirDefence":10},"rarity":"rare"},"Jolt of Inspiration":{"internalName":"Jolt of Inspiration","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":139,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"assassin","dexterity":10,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawIntelligence":4,"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-23,"raw":-18,"max":-13},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":21,"raw":21,"max":30},"baseThunderDamage":{"min":13,"raw":13,"max":22},"baseWaterDamage":{"min":11,"raw":11,"max":14}},"rarity":"rare"},"Kaas' Fur":{"internalName":"Kaas' Fur","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"intelligence":15},"powderSlots":2,"identifications":{"spellDamage":{"min":-16,"raw":-12,"max":-8},"manaRegen":{"min":4,"raw":12,"max":16},"rawMaxMana":{"min":9,"raw":30,"max":39},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":400,"baseWaterDefence":40},"rarity":"rare"},"Frozen Earth":{"internalName":"Frozen Earth","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":138,"dropRestriction":"never","identified":true,"requirements":{"level":40,"classRequirement":"archer","strength":25,"intelligence":5},"powderSlots":1,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":5,"rawIntelligence":2,"manaRegen":6,"walkSpeed":-7,"airDamage":12},"base":{"baseDamage":{"min":34,"raw":34,"max":63},"baseEarthDamage":{"min":137,"raw":137,"max":194},"baseWaterDamage":{"min":46,"raw":46,"max":69}},"rarity":"rare"},"Spirit":{"internalName":"Spirit","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":196,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"archer","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"rawDefence":-8,"rawAgility":10,"manaSteal":{"min":1,"raw":4,"max":5},"airDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":27,"raw":27,"max":54},"baseAirDamage":{"min":43,"raw":43,"max":66}},"rarity":"rare"},"Relic Leggings":{"internalName":"Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"strength":12,"dexterity":12,"intelligence":12,"defence":12,"agility":12},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":375,"baseEarthDefence":14,"baseThunderDefence":14,"baseWaterDefence":14,"baseFireDefence":14,"baseAirDefence":14},"rarity":"set"},"Discord":{"internalName":"Discord","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"dexterity":40},"identifications":{"rawDexterity":7,"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":6,"max":8},"exploding":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":370,"baseEarthDefence":-30,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"unique"},"Shield":{"internalName":"Shield","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":40,"defence":20},"powderSlots":2,"dropMeta":{"name":"Nodguj Nation","type":"merchant","coordinates":[793,59,-3350]},"identifications":{"rawDefence":15,"healthRegenRaw":20},"base":{"baseHealth":250,"baseEarthDefence":15,"baseThunderDefence":15,"baseWaterDefence":15,"baseFireDefence":15,"baseAirDefence":15},"rarity":"rare"},"Gargantuan":{"internalName":"Gargantuan","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":40,"strength":15},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":400},"rarity":"rare"},"Horse Hoof":{"internalName":"Horse Hoof","type":"armour","armourType":"boots","armourColor":"rgb(111,111,111)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":40,"agility":25},"powderSlots":2,"identifications":{"rawAgility":7,"walkSpeed":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":355,"baseFireDefence":-20,"baseAirDefence":20},"rarity":"set"},"Mystical Tags":{"internalName":"Mystical Tags","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":40,"agility":35},"identifications":{"spellDamage":-15,"manaRegen":12,"2ndSpellCost":-20,"reflection":15,"airSpellDamage":30},"base":{"baseHealth":330,"baseFireDefence":-18,"baseAirDefence":20},"rarity":"rare"},"Spinal Estoc":{"internalName":"Spinal Estoc","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":165,"dropRestriction":"never","requirements":{"level":40,"classRequirement":"assassin"},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"poison":{"min":300,"raw":1000,"max":1300},"lifeSteal":{"min":15,"raw":50,"max":65},"waterDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseDamage":{"min":75,"raw":75,"max":85}},"rarity":"rare"},"Fire Relic Leggings":{"internalName":"Fire Relic Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":40,"defence":42},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[-103,80,-869,100]},"identifications":{"rawDefence":8,"fireDamage":{"min":4,"raw":12,"max":16},"fireDefence":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":425,"baseFireDefence":20},"rarity":"set"},"Nilrem's Curse":{"internalName":"Nilrem's Curse","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","identified":true,"requirements":{"level":40,"dexterity":15},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"identifications":{"rawMainAttackDamage":39,"rawSpellDamage":35,"healthRegenRaw":-15,"xpBonus":6},"base":{"baseHealth":310,"baseThunderDefence":15,"baseWaterDefence":10},"rarity":"unique"},"Cleansing Flame":{"internalName":"Cleansing Flame","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":231,"dropRestriction":"normal","requirements":{"level":40,"classRequirement":"shaman","intelligence":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":8,"rawHealth":{"min":60,"raw":200,"max":260},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":8,"raw":8,"max":16},"baseWaterDamage":{"min":45,"raw":45,"max":55},"baseFireDamage":{"min":45,"raw":45,"max":55}},"rarity":"legendary"},"Regretless Talisman":{"internalName":"Regretless Talisman","type":"ingredient","requirements":{"level":40,"skills":["jeweling"]},"icon":{"format":"legacy","value":"259:21"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":1},"healthRegen":{"min":3,"raw":3,"max":4},"rawHealth":{"min":25,"raw":25,"max":30}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-91000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Reggie","coords":[1236,65,-1431,200]}]},"Stretched Rawhide":{"internalName":"Stretched Rawhide","type":"ingredient","requirements":{"level":40,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":4},"rawStrength":{"min":-4,"raw":-4,"max":-2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-44000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Warg","coords":[-1734,72,-4913,30]},{"name":"Goblin Traveller","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Revenge Seeker","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Mistdawn Fogcatcher","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Raindancer","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Windwhistler","coords":[-1548,45,-4845,7]},{"name":"Mistdawn Speaker","coords":[-1711,22,-4934,12]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Digger","coords":[-1491,33,-4814,7]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Exhibitioner","coords":[-1705,29,-4980,12]},{"name":"Tinkernook Knapper","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Whittler","coords":[-1870,24,-4804,7]},{"name":"Tinkernook Smelter","coords":[-1870,24,-4804,7]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]},{"name":"Holehold Orc Gofer","coords":[[-1749,26,-4721,3],[-1749,26,-4721,3],[-1718,28,-4716,0],[-1718,28,-4716,0]]},{"name":"Holehold Orc Keeper","coords":[[-1704,27,-4746,1],[-1715,27,-4746,4],[-1730,27,-4686,3],[-1730,27,-4686,3],[-1721,24,-4674,0],[-1722,22,-4664,0],[-1732,21,-4666,0],[-1734,24,-4676,3]]},{"name":"Holehold Orc Marathon","coords":[-1712,26,-4747,0]},{"name":"Mudspring Orc Chemist","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Pulper","coords":[-1994,54,-5019,7]},{"name":"Mudspring Orc Waterbearer","coords":[-1994,54,-5019,7]},{"name":"Shineridge Orc Appraiser","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Barterer","coords":[-1619,46,-4635,12]},{"name":"Shineridge Orc Jewelsetter","coords":[-1619,46,-4635,12]},{"name":"Stonecave Orc Assayer","coords":[[-2108,17,-4920,0],[-2107,34,-4937,0]]},{"name":"Stonecave Orc Rockwrecker","coords":[-2076,28,-4946,8]},{"name":"Stonecave Orc Metalworker","coords":[-2076,28,-4946,8]}]},"Shimmering Jewel":{"internalName":"Shimmering Jewel","type":"ingredient","requirements":{"level":40,"skills":["woodworking","alchemism"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"spellDamage":{"min":6,"raw":6,"max":10},"reflection":{"min":5,"raw":5,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-63000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Goblin Traveller","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Goblin Wayfinder","coords":[[-1683,61,-4936,20],[-1550,54,-5025,35],[-1643,59,-4815,40],[-1535,49,-4612,30],[-1726,53,-4666,40],[-1847,83,-4706,30],[-1847,83,-4706,15],[-1923,38,-4660,20],[-1902,54,-4676,15]]},{"name":"Rivertunnel Bottler","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Digger","coords":[-1491,33,-4814,7]},{"name":"Rivertunnel Siever","coords":[-1486,16,-4800,6]},{"name":"Rivertunnel Shiny Baron","coords":[-1705,29,-4980,12]},{"name":"Roothome Scamp","coords":[-1711,22,-4934,12]},{"name":"Roothome Overseer","coords":[-1768,29,-4927,0]},{"name":"Roothome Grudgebearer","coords":[-1767,23,-4943,8]},{"name":"Roothome Chanter","coords":[-1711,22,-4934,12]},{"name":"Roothome Dancer","coords":[-1711,22,-4934,12]},{"name":"Roothome Flutist","coords":[-1711,22,-4934,12]}]},"Rabbit Carcass":{"internalName":"Rabbit Carcass","type":"ingredient","requirements":{"level":40,"skills":["cooking"]},"icon":{"format":"legacy","value":"411:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":2},"rawDexterity":{"min":2,"raw":2,"max":2},"rawIntelligence":{"min":2,"raw":2,"max":2},"rawAgility":{"min":2,"raw":2,"max":2},"rawDefence":{"min":2,"raw":2,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":-360,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Warg","coords":[-1734,72,-4913,30]},{"name":"Cliffhearth Orc Chopper","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Kindler","coords":[-2163,46,-4779,10]},{"name":"Cliffhearth Orc Smoker","coords":[-2163,46,-4779,10]},{"name":"Sablestone Orc Smasher","coords":[-1731,60,-4912,10]},{"name":"Sablestone Orc Basher","coords":[-1731,60,-4912,10]},{"name":"Trunkstump Foot Biter","coords":[-1990,44,-4900,10]},{"name":"Trunkstump Pebbleflinger","coords":[-2003,45,-4903,4]},{"name":"Trunkstump Piker","coords":[-1705,29,-4980,12]},{"name":"Waterway Bootlegger","coords":[-1711,22,-4934,12]},{"name":"Waterway Fermenter","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Moonshiner","coords":[[-1696,45,-4946,5],[-1718,43,-4943,4],[-1726,43,-4949,6]]},{"name":"Waterway Bucket Brigade","coords":[[-1711,49,-4918,2],[-1702,48,-4926,2],[-1712,45,-4938,2]]}]},"Ice Sliver":{"internalName":"Ice Sliver","type":"ingredient","requirements":{"level":40,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"79:0"},"identifications":{"rawDexterity":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":0,"dexterityRequirement":5,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Frozen Warrior","coords":[[1078,56,-3331,6],[1078,56,-3331,6],[1077,69,-3332,6],[1077,69,-3332,6],[1093,71,-3341,3],[1109,54,-3337,9],[1109,54,-3337,9],[1108,59,-3357,7],[1108,59,-3357,7],[1083,71,-3374,5],[1066,68,-3377,6],[1054,67,-3365,5],[1077,55,-3368,7],[1077,55,-3368,7]]},{"name":"Icy Ranger","coords":[[1130,46,-3334,4],[1122,70,-3335,1]]},{"name":"Frosted Shaman","coords":[1077,55,-3369,4]},{"name":"Catapult Operator","coords":[[1121,69,-3321,1],[1125,69,-3346,1]]},{"name":"Frigid Climber","coords":[[855,39,-3536,8],[855,39,-3536,8],[855,39,-3536,8],[1085,42,-3410,8],[1098,42,-3422,8],[1074,42,-3423,8],[1083,39,-3298,6],[1083,39,-3298,8],[1083,39,-3298,12],[1127,39,-3366,10],[1125,39,-3393,10],[1144,39,-3380,12]]},{"name":"Gelid Commander","coords":[1075,54,-3358,30]}]},"Iron Gem 3":{"internalName":"Refined Iron Gem 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"67","name":"profession.gemIron"}},"tier":3},"Icefish Oil 2":{"internalName":"Refined Icefish Oil 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilIce"}},"tier":2},"Icefish Meat 3":{"internalName":"Refined Icefish Meat 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatIce"}},"tier":3},"Iron Ingot 2":{"internalName":"Refined Iron Ingot 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"55","name":"profession.ingotIron"}},"tier":2},"Hops Grains 2":{"internalName":"Refined Hops Grains 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHops"}},"tier":2},"Hops Grains 1":{"internalName":"Refined Hops Grains 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHops"}},"tier":1},"Hops String 3":{"internalName":"Refined Hops String 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHops"}},"tier":3},"Spruce Paper 2":{"internalName":"Refined Spruce Paper 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"99","name":"profession.paperSpruce"}},"tier":2},"Iron Gem 2":{"internalName":"Refined Iron Gem 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"67","name":"profession.gemIron"}},"tier":2},"Icefish Oil 3":{"internalName":"Refined Icefish Oil 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilIce"}},"tier":3},"Hops String 2":{"internalName":"Refined Hops String 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringHops"}},"tier":2},"Icefish Meat 2":{"internalName":"Refined Icefish Meat 2","type":"material","identified":true,"requirements":{"level":40},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatIce"}},"tier":2},"Icefish Oil 1":{"internalName":"Refined Icefish Oil 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilIce"}},"tier":1},"Hops Grains 3":{"internalName":"Refined Hops Grains 3","type":"material","identified":true,"requirements":{"level":40},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainHops"}},"tier":3},"Icefish Meat 1":{"internalName":"Refined Icefish Meat 1","type":"material","identified":true,"requirements":{"level":40},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatIce"}},"tier":1},"Clunderthap":{"internalName":"Clunderthap","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":99,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"mage","dexterity":20},"powderSlots":1,"lore":"\"It never rains here, but we hear the thunder echoing in the distance.\" -Lanu, Almuj Archaeomancer","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":5,"rawHealth":-50,"2ndSpellCost":-15,"thorns":15,"xpBonus":20,"thunderDamage":20},"base":{"baseDamage":{"min":12,"raw":12,"max":22},"baseThunderDamage":{"min":1,"raw":1,"max":29}},"rarity":"rare"},"Springtrap":{"internalName":"Springtrap","type":"armour","armourType":"chestplate","armourMaterial":"chain","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":39},"powderSlots":2,"lore":"\"After nearly getting trapped in an iron maiden, I figure I can study those mummies just as well from home.\" -Achper, Almuj Archaeologist","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"identifications":{"healthRegen":-25,"thorns":65,"reflection":50,"exploding":40},"base":{"baseHealth":650,"baseEarthDefence":50},"rarity":"legendary"},"Mithril Leggings":{"internalName":"Mithril Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":39,"strength":20},"powderSlots":1,"identifications":{"rawDefence":10,"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":350,"baseThunderDefence":-5,"baseWaterDefence":-5,"baseFireDefence":-5,"baseAirDefence":-5},"rarity":"unique"},"Lockpick":{"internalName":"Lockpick֎","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":129,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"assassin","dexterity":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDexterity":7,"walkSpeed":{"min":3,"raw":10,"max":13},"stealing":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-16,"raw":-12,"max":-8},"earthDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":3,"raw":3,"max":10},"baseThunderDamage":{"min":14,"raw":14,"max":21},"baseAirDamage":{"min":14,"raw":14,"max":21}},"rarity":"unique"},"Flawless Andesite Dagger":{"internalName":"Flawless Andesite Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":98,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":43,"raw":43,"max":52}},"rarity":"common"},"Vitriol":{"internalName":"Vitriol","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":39,"strength":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"healthRegen":{"min":-13,"raw":-10,"max":-7},"poison":{"min":25,"raw":83,"max":108},"lifeSteal":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":-60,"baseEarthDefence":10,"baseWaterDefence":-5},"rarity":"unique"},"Flawless Andesite Spear":{"internalName":"Flawless Andesite Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":78,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":80,"raw":80,"max":109}},"rarity":"common"},"Fierce Thunder":{"internalName":"Fierce Thunder","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":152,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"warrior","dexterity":20},"powderSlots":2,"lore":"Every time this spear hits an enemy, a sharp electrical jolt hits the users hands that forces powerful lightning to release.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":8,"max":10},"waterDamage":{"min":6,"raw":20,"max":26},"earthDefence":{"min":-32,"raw":-25,"max":-17},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":17,"raw":17,"max":38},"baseThunderDamage":{"min":20,"raw":20,"max":47}},"rarity":"legendary"},"Outlaw Cap":{"internalName":"Outlaw Cap","type":"armour","armourType":"helmet","armourColor":"rgb(187,149,116)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":39,"agility":40},"powderSlots":1,"identifications":{"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"lifeSteal":{"min":9,"raw":31,"max":40},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":370,"baseFireDefence":-30},"rarity":"set"},"Stormflash":{"internalName":"Stormflash","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":74,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"mage","dexterity":15,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":5,"rawIntelligence":5,"spellDamage":{"min":2,"raw":8,"max":10},"healthRegen":{"min":-12,"raw":-9,"max":-6},"xpBonus":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":23},"baseWaterDamage":{"min":1,"raw":1,"max":23}},"rarity":"unique"},"Lycoris":{"internalName":"Lycoris","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":39,"dexterity":15,"intelligence":15},"powderSlots":2,"identifications":{"spellDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-195,"raw":-150,"max":-105},"poison":{"min":47,"raw":155,"max":202},"lifeSteal":{"min":-43,"raw":-33,"max":-23},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":450,"baseEarthDefence":-40,"baseThunderDefence":15,"baseWaterDefence":15},"rarity":"legendary"},"Ragni's Old Shoes":{"internalName":"Ragni's Old Shoes","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":39},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":300,"baseEarthDefence":20,"baseAirDefence":-10},"rarity":"unique"},"Flawless Andesite Relik":{"internalName":"Flawless Andesite Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":121,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":77,"raw":77,"max":84}},"rarity":"common"},"Karma":{"internalName":"Karma","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":77,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"warrior","intelligence":25},"powderSlots":2,"lore":"\"When payback is the rule of the land, it feels safest to do nothing.\" -Ormrod, Self-exiled Almuj Resident","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawIntelligence":6,"spellDamage":108,"manaRegen":12,"waterDamage":10,"airDamage":20},"base":{"baseWaterDamage":{"min":30,"raw":30,"max":45}},"rarity":"legendary"},"Chaser":{"internalName":"Chaser","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":206,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"archer","agility":30},"powderSlots":1,"lore":"\"My husband's such a scaredy-cat. What good is tomb raiding if you're not in the tomb?\" -Dr. Junes, Almuj Archaeologist","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":10,"poison":150,"walkSpeed":30},"base":{"baseDamage":{"min":20,"raw":20,"max":24},"baseAirDamage":{"min":39,"raw":39,"max":50}},"rarity":"legendary"},"Loam":{"internalName":"Loam","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":72,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"mage","strength":10,"intelligence":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawIntelligence":5,"poison":{"min":54,"raw":180,"max":234},"thunderDamage":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":21,"raw":21,"max":24},"baseEarthDamage":{"min":10,"raw":10,"max":15}},"rarity":"unique"},"Anno":{"internalName":"Anno","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":39,"dexterity":10,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"healthRegenRaw":{"min":2,"raw":8,"max":10},"poison":{"min":33,"raw":110,"max":143}},"base":{"baseHealth":40},"rarity":"rare"},"Balankia":{"internalName":"Balankia","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":39},"powderSlots":5,"identifications":{"rawStrength":-5,"rawDexterity":-5,"rawIntelligence":-5,"rawDefence":-5,"rawAgility":-5,"elementalDamage":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":380},"rarity":"rare"},"Quartz Driller":{"internalName":"Quartz Driller","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":144,"dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"archer","dexterity":10},"powderSlots":2,"dropMeta":{"name":"LLevigar","type":"merchant","coordinates":[-1997,81,-528]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawStrength":3,"rawDexterity":3,"rawMainAttackDamage":46,"xpBonus":6,"lootBonus":6},"base":{"baseDamage":{"min":25,"raw":25,"max":35},"baseEarthDamage":{"min":15,"raw":15,"max":20},"baseThunderDamage":{"min":10,"raw":10,"max":35}},"rarity":"unique"},"Summer":{"internalName":"Summer","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":101,"dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"mage","defence":10},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawHealth":200,"earthDamage":8,"fireDamage":8,"fireDefence":6},"base":{"baseDamage":{"min":27,"raw":27,"max":38},"baseFireDamage":{"min":30,"raw":30,"max":40}},"rarity":"unique"},"Ehwaz":{"internalName":"Ehwaz","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":39,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawAgility":3,"walkSpeed":{"min":3,"raw":10,"max":13}},"rarity":"unique"},"Shining Golden Leggings":{"internalName":"Shining Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":39},"powderSlots":1,"base":{"baseHealth":233},"rarity":"common"},"Faded":{"internalName":"Faded","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":39},"powderSlots":3,"identifications":{"reflection":{"min":2,"raw":5,"max":7},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":190},"rarity":"unique"},"Lydian":{"internalName":"Lydian","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":105,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"warrior","strength":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"poison":{"min":135,"raw":450,"max":585},"walkSpeed":{"min":-16,"raw":-12,"max":-8},"earthDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":0,"raw":0,"max":70},"baseEarthDamage":{"min":0,"raw":0,"max":70}},"rarity":"rare"},"Hue":{"internalName":"Hue","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":166,"dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"shaman","strength":9,"dexterity":9,"intelligence":9,"defence":9,"agility":9},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"lootBonus":12,"elementalDefence":12},"base":{"baseDamage":{"min":17,"raw":17,"max":20},"baseEarthDamage":{"min":17,"raw":17,"max":20},"baseThunderDamage":{"min":17,"raw":17,"max":20},"baseWaterDamage":{"min":17,"raw":17,"max":20},"baseFireDamage":{"min":17,"raw":17,"max":20},"baseAirDamage":{"min":17,"raw":17,"max":20}},"rarity":"unique"},"Treachery":{"internalName":"Treachery","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":129,"dropRestriction":"never","requirements":{"level":39,"classRequirement":"mage","strength":14},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"manaRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":20,"raw":20,"max":25},"baseEarthDamage":{"min":30,"raw":30,"max":50}},"rarity":"rare"},"Hashr Claw":{"internalName":"Hashr Claw","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":183,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":39,"classRequirement":"assassin","dexterity":30},"powderSlots":2,"lore":"\"Betrayal stings sharper than a scorpion's tail, and festers worse than the poison inside.\" -Attributed to Hashr","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"waterSpellDamage":30,"3rdSpellCost":-15,"walkSpeed":10,"xpBonus":10},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseThunderDamage":{"min":10,"raw":10,"max":50}},"rarity":"legendary"},"Flawless Andesite Wand":{"internalName":"Flawless Andesite Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":60,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":35,"raw":35,"max":45}},"rarity":"common"},"Diluted Vitriol":{"internalName":"Diluted Vitriol","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":39,"strength":15},"lore":"The glass capsule holding the poison vial is too cloudy to see what's inside. The merchant's reassurances are anything but.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"healthRegen":-12,"poison":66,"lifeSteal":10},"base":{"baseHealth":-35,"baseEarthDefence":12,"baseWaterDefence":-7},"rarity":"unique"},"Union":{"internalName":"Union","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":39,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"xpBonus":{"min":2,"raw":8,"max":10}},"rarity":"rare"},"Flawless Andesite Bow":{"internalName":"Flawless Andesite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":118,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":130,"raw":130,"max":154}},"rarity":"common"},"Nevermore":{"internalName":"Nevermore","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":39,"intelligence":30},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"manaRegen":{"min":4,"raw":12,"max":16},"xpBonus":{"min":3,"raw":10,"max":13},"waterDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":300,"baseWaterDefence":35},"rarity":"rare"},"Nerium Old Spear":{"internalName":"Nerium Old Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":103,"dropRestriction":"normal","requirements":{"level":39,"classRequirement":"warrior","strength":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"poison":{"min":54,"raw":180,"max":234},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDefence":{"min":2,"raw":8,"max":10},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseEarthDamage":{"min":24,"raw":24,"max":30},"baseAirDamage":{"min":24,"raw":24,"max":30}},"rarity":"unique"},"Stolen Egg":{"internalName":"Stolen Egg","type":"ingredient","requirements":{"level":39,"skills":["cooking"]},"icon":{"format":"legacy","value":"122:0"},"identifications":{"healthRegenRaw":{"min":15,"raw":15,"max":20},"walkSpeed":{"min":6,"raw":6,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":-300,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Corrupted Metal Scrap":{"internalName":"Corrupted Metal Scrap","type":"ingredient","requirements":{"level":39,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"manaRegen":{"min":4,"raw":4,"max":5},"manaSteal":{"min":-2,"raw":-2,"max":-1}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":0,"dexterityRequirement":-6,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0}},"Moldy Wrapping":{"internalName":"Moldy Wrapping","type":"ingredient","requirements":{"level":39,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawHealth":{"min":-30,"raw":-30,"max":-20},"thunderDamage":{"min":4,"raw":4,"max":6},"rawSpellDamage":{"min":9,"raw":9,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":9,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Jaw Breaker":{"internalName":"Jaw Breaker","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":158,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":38,"classRequirement":"assassin","strength":25},"powderSlots":1,"lore":"\"Bandit attacks losing you sleep? Free fighting classes here! Only 10 emeralds- they won't know what hit 'em!\" -Almuj Self-Defense Class Advertisement","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":8,"mainAttackDamage":10,"walkSpeed":-5,"exploding":15,"knockback":25,"xpBonus":10},"base":{"baseDamage":{"min":60,"raw":60,"max":80},"baseEarthDamage":{"min":105,"raw":105,"max":135}},"rarity":"rare"},"Mummy's Rag":{"internalName":"Mummy's Rag","type":"armour","armourType":"chestplate","armourColor":"rgb(153,153,153)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":38,"quest":"Wrath of the Mummy"},"lore":"The accursed mummy once wore this robe as a great pharaoh of the desert. It has long since rotted, leaving only a cursed shell of its former greatness.","identifications":{"thorns":{"min":2,"raw":5,"max":7},"reflection":{"min":2,"raw":5,"max":7},"rawAttackSpeed":1,"walkSpeed":{"min":-26,"raw":-20,"max":-14}},"base":{"baseHealth":400,"baseEarthDefence":20,"baseAirDefence":20},"rarity":"legendary"},"Zipper":{"internalName":"Zipper","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":149,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"shaman","dexterity":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":3,"raw":11,"max":14},"lootBonus":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":3,"raw":11,"max":14},"earthDefence":{"min":-27,"raw":-21,"max":-15},"thunderDefence":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":5,"raw":5,"max":20},"baseThunderDamage":{"min":50,"raw":50,"max":70}},"rarity":"unique"},"Upgraded Long Bow":{"internalName":"Upgraded Long Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":195,"dropRestriction":"never","identified":true,"requirements":{"level":38,"classRequirement":"archer","strength":25},"powderSlots":2,"lore":"Apparently, they thought to make a long bow better, they should make it longer. You can barely hold it.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":7,"rawAgility":-5,"healthRegen":12,"thorns":12,"walkSpeed":-12,"lootBonus":8,"earthDamage":8},"base":{"baseDamage":{"min":60,"raw":60,"max":70},"baseEarthDamage":{"min":60,"raw":60,"max":70}},"rarity":"unique"},"Salience":{"internalName":"Salience","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":38,"intelligence":10,"defence":10},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-8,"raw":-6,"max":-4},"healthRegen":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":3,"raw":10,"max":13},"waterDefence":{"min":3,"raw":9,"max":12},"fireDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":300,"baseWaterDefence":15,"baseFireDefence":20},"rarity":"unique"},"HellRaiser":{"internalName":"HellRaiser","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":131,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"assassin","defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"exploding":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-39,"raw":-30,"max":-21},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseFireDamage":{"min":26,"raw":26,"max":36}},"rarity":"unique"},"Curse":{"internalName":"Curse","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":90,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"mage","strength":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawIntelligence":7,"healthRegen":{"min":4,"raw":12,"max":16},"lifeSteal":{"min":-26,"raw":-20,"max":-14},"manaRegen":{"min":2,"raw":6,"max":8},"earthDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":7,"raw":7,"max":11},"baseEarthDamage":{"min":9,"raw":9,"max":11},"baseWaterDamage":{"min":9,"raw":9,"max":11}},"rarity":"rare"},"Enhanced Zeal":{"internalName":"Enhanced Zeal","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":38,"defence":15},"powderSlots":2,"lore":"Supposedly this chestplate belonged to a legendary paladin. The merchant has no explanation for why there are dozens of them.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"mainAttackDamage":4,"spellDamage":-10,"healthRegen":6,"rawHealth":40,"walkSpeed":4,"fireDamage":4},"base":{"baseHealth":455},"rarity":"unique"},"Whisper":{"internalName":"Whisper","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":118,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"assassin","agility":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDexterity":6,"rawAgility":4,"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":20,"raw":20,"max":24}},"rarity":"unique"},"Gouttes":{"internalName":"Gouttes","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":38,"intelligence":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":4,"spellDamage":{"min":2,"raw":6,"max":8}},"base":{"baseThunderDefence":-4,"baseWaterDefence":8},"rarity":"unique"},"Lurking Peril":{"internalName":"Lurking Peril","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":38,"strength":30},"majorIds":{"Lunge":"+Lunge: Hop and Leap's horizontal velocity is greatly increased."},"identifications":{"rawStrength":8,"healthRegen":{"min":6,"raw":19,"max":25},"3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"raw4thSpellCost":-1,"walkSpeed":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":450,"baseEarthDefence":25},"rarity":"fabled"},"Chained Pixels":{"internalName":"Chained Pixels","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":38,"strength":8,"dexterity":8,"intelligence":8,"defence":8,"agility":8},"lore":"Materials of all sorts have been lashed together in this crude, blocky set of leggings. From darksteel to leather to rotting wood, each part is a perfect square. It has, so far, been impossible to recreate.","identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"xpBonus":{"min":5,"raw":16,"max":21},"lootBonus":{"min":5,"raw":16,"max":21},"elementalDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":512,"baseEarthDefence":16,"baseThunderDefence":16,"baseWaterDefence":16,"baseFireDefence":16,"baseAirDefence":16},"rarity":"legendary"},"Zeal":{"internalName":"Zeal","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":38,"defence":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegen":{"min":2,"raw":8,"max":10},"rawHealth":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":2,"raw":5,"max":7},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":275},"rarity":"unique"},"Long Bow":{"internalName":"Long Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":138,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"archer","strength":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":7,"rawAgility":-5,"healthRegen":{"min":5,"raw":15,"max":20},"thorns":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"lootBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":42,"raw":42,"max":50},"baseEarthDamage":{"min":42,"raw":42,"max":50}},"rarity":"unique"},"Copper-Alloy Boots":{"internalName":"Copper-Alloy Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":38,"dexterity":10,"defence":10},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"healthRegenRaw":{"min":5,"raw":15,"max":20},"earthDamage":{"min":-9,"raw":-7,"max":-5},"thunderDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-9,"raw":-7,"max":-5},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":275,"baseEarthDefence":-10,"baseThunderDefence":8,"baseWaterDefence":-10,"baseFireDefence":8},"rarity":"unique"},"Dragon Fang":{"internalName":"Dragon Fang","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":100,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"warrior","defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":7,"exploding":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":5,"max":7},"waterDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":4,"raw":4,"max":18},"baseFireDamage":{"min":22,"raw":22,"max":36}},"rarity":"unique"},"Shining Golden Boots":{"internalName":"Shining Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":38},"powderSlots":1,"base":{"baseHealth":220},"rarity":"common"},"Miasma":{"internalName":"Miasma","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":194,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":38,"classRequirement":"archer","agility":35},"powderSlots":2,"lore":"\"I have to wonder just how healthy slime found in the depths of a desert cavern can be to drink.\" -Eluzterp, Almuj resident","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawAgility":3,"lifeSteal":39,"manaSteal":12,"walkSpeed":10},"base":{"baseDamage":{"min":20,"raw":20,"max":40},"baseAirDamage":{"min":35,"raw":35,"max":60}},"rarity":"rare"},"Cherufe":{"internalName":"Cherufe","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":193,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"archer","strength":25,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"rawDefence":5,"rawMainAttackDamage":{"min":44,"raw":145,"max":189},"lifeSteal":{"min":15,"raw":50,"max":65},"earthDamage":{"min":3,"raw":10,"max":13},"waterDefence":{"min":-23,"raw":-18,"max":-13}},"base":{"baseDamage":{"min":80,"raw":80,"max":90},"baseEarthDamage":{"min":65,"raw":65,"max":75},"baseFireDamage":{"min":75,"raw":75,"max":80}},"rarity":"rare"},"Geothermal":{"internalName":"Geothermal","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":38,"strength":10,"defence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"healthRegen":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":5,"max":7},"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":10,"baseWaterDefence":-10},"rarity":"unique"},"Outlaw Tunic":{"internalName":"Outlaw Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(187,149,116)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":38,"agility":35},"identifications":{"lifeSteal":{"min":9,"raw":29,"max":38},"stealing":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":380,"baseWaterDefence":-20},"rarity":"set"},"Influence":{"internalName":"Influence","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":185,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"assassin"},"powderSlots":3,"lore":"This knife does not belong in your hands... yet somehow it feels right at home.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":4,"raw":14,"max":18},"lifeSteal":{"min":14,"raw":46,"max":60},"xpBonus":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":54,"raw":54,"max":66},"baseFireDamage":{"min":27,"raw":27,"max":33}},"rarity":"legendary"},"Randall's Leg Plating":{"internalName":"Randall's Leg Plating","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":38,"defence":45},"powderSlots":2,"identifications":{"rawStrength":4,"rawDefence":15,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":-19,"raw":-15,"max":-10},"lootBonus":{"min":5,"raw":15,"max":20},"fireDefence":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":450},"rarity":"rare"},"Enhanced Salience":{"internalName":"Enhanced Salience","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":38,"intelligence":10,"defence":10},"powderSlots":1,"lore":"Adding hard metal onto a religious cap seems blasphemous to you. The merchant disagrees.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"mainAttackDamage":-12,"spellDamage":-7,"healthRegen":10,"healthRegenRaw":8,"waterDefence":7,"fireDefence":7},"base":{"baseHealth":495,"baseWaterDefence":18,"baseFireDefence":24},"rarity":"unique"},"Viper":{"internalName":"Viper","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":70,"dropRestriction":"normal","requirements":{"level":38,"classRequirement":"mage","dexterity":22},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":2,"raw":6,"max":8},"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"lifeSteal":{"min":8,"raw":26,"max":34},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":6,"raw":6,"max":11},"baseThunderDamage":{"min":6,"raw":6,"max":22}},"rarity":"unique"},"Upgraded HellRaiser":{"internalName":"Upgraded HellRaiser","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":179,"dropRestriction":"never","identified":true,"requirements":{"level":38,"classRequirement":"assassin","defence":10},"powderSlots":1,"lore":"The blade is covered in tape that's been scribbled on in order to make it look fiery. This doesn't seem like a wise purchase.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"exploding":4,"waterDamage":-36,"fireDamage":8},"base":{"baseDamage":{"min":40,"raw":40,"max":48},"baseFireDamage":{"min":36,"raw":36,"max":50}},"rarity":"unique"},"Bandit's Locket":{"internalName":"Bandit's Locket","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":38},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"183","name":"necklace.thunder1"}},"identifications":{"lootBonus":{"min":1,"raw":4,"max":5},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-10},"rarity":"set"},"Upgraded Whisper":{"internalName":"Upgraded Whisper","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":160,"dropRestriction":"never","identified":true,"requirements":{"level":38,"classRequirement":"assassin","agility":20},"powderSlots":3,"lore":"The blade seems sharper than normal, but it also seems rather brittle. The smithing was obviously a hack-job...","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDexterity":6,"rawAgility":4,"walkSpeed":10,"airDamage":10},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseAirDamage":{"min":27,"raw":27,"max":31}},"rarity":"unique"},"Chains of Steel":{"internalName":"Chains of Steel","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":38},"powderSlots":2,"identifications":{"rawStrength":7,"rawHealth":{"min":12,"raw":40,"max":52},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":280},"rarity":"unique"},"Firecloud":{"internalName":"Firecloud","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":38},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":3,"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"fireDamage":{"min":1,"raw":4,"max":5}},"base":{"baseAirDefence":4},"rarity":"unique"},"Lunar Charm":{"internalName":"Lunar Charm","type":"ingredient","requirements":{"level":38,"skills":["scribing","alchemism","jeweling"]},"icon":{"format":"legacy","value":"259:18"},"tier":3,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":25,"notTouching":25},"itemOnlyIDs":{"durabilityModifier":-87000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Interloper","coords":[1045,37,-2655,8]},{"name":"Lunar Possessed","coords":[[1002,46,-2555,4],[925,35,-2590,7],[862,43,-2609,7],[1049,77,-2621,8]]},{"name":"Lunar Darksider","coords":null},{"name":"Lunar Effigy","coords":[861,80,-2601,0]},{"name":"§eLunar Effigy","coords":[1004,94,-2580,0]},{"name":"§eLunar Effigy","coords":[969,87,-2469,0]}]},"Lava Blisters":{"internalName":"Lava Blisters","type":"ingredient","requirements":{"level":38,"skills":["armouring"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"fireDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":4,"agilityRequirement":0},"droppedBy":[{"name":"Melting Cowboy","coords":[[1298,32,-1549,0],[1311,32,-1604,0],[1323,35,-1576,0]]},{"name":"Lava Monster","coords":[1342,142,-1210,30]}]},"Squid Beak":{"internalName":"Squid Beak","type":"ingredient","requirements":{"level":38,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":6},"spellDamage":{"min":1,"raw":1,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Squid","coords":[[890,10,-2561,30],[846,20,-2641,30]]},{"name":"Squid Vicious","coords":[-914,24,-2855,100]},{"name":"Deep Blue Squid","coords":[[992,30,-3924,25],[743,30,-3967,25]]},{"name":"Squid","coords":[[-1063,30,-2197,20],[357,25,-2238,20],[393,25,-2179,20],[759,30,-2470,20],[-2055,30,-4264,20],[-2135,31,-4255,20],[-1961,25,-4210,20],[-1364,28,-4221,20],[-1316,26,-4194,20],[-1232,28,-4210,20],[-937,28,-4247,20],[-832,27,-4205,20],[-257,26,-4104,20],[-247,24,-2962,20],[1270,24,-4064,20],[1250,19,-4003,20],[1280,19,-3953,20],[1369,20,-3967,20],[1418,10,-4009,20],[1447,7,-4057,10],[1376,23,-3925,20],[1354,19,-3875,20],[1237,20,-4004,20]]},{"name":"Giant Squid","coords":[[-44,26,-3344,20],[185,24,-3680,20],[618,25,-3943,20],[1079,22,-3926,20],[1381,25,-3930,5],[-834,15,-2440,10],[-1177,27,-1919,20],[-2068,27,-2362,20]]}]},"Sol":{"internalName":"Sol","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":124,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":37,"classRequirement":"warrior","defence":15},"powderSlots":1,"lore":"\"The sun and related symbols appear quite often in these ancient glyphs. Interesting, but unsurprising, no?\" -Svin, Legend Keeper","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"healthRegenRaw":25,"rawHealth":360,"rawFireDamage":30,"reflection":10},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseFireDamage":{"min":30,"raw":30,"max":40}},"rarity":"rare"},"Woljawh":{"internalName":"Woljawh","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":37},"powderSlots":2,"dropMeta":{"name":"Nesaak","type":"merchant","coordinates":[112,78,-773]},"identifications":{"healthRegen":10,"healthRegenRaw":20,"lifeSteal":26},"base":{"baseHealth":425},"rarity":"rare"},"Archpriest":{"internalName":"Archpriest","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":119,"dropRestriction":"normal","requirements":{"level":37,"classRequirement":"warrior","intelligence":18,"agility":18},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawIntelligence":5,"rawAgility":5,"rawMainAttackDamage":{"min":-27,"raw":-21,"max":-15},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"thunderDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":11,"raw":11,"max":18},"baseWaterDamage":{"min":11,"raw":11,"max":13},"baseAirDamage":{"min":11,"raw":11,"max":13}},"rarity":"rare"},"Desert Stalker":{"internalName":"Desert Stalker","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":37,"dexterity":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"175","name":"necklace.basicBroach"}},"identifications":{"rawDexterity":3,"rawHealth":{"min":-39,"raw":-30,"max":-21},"lifeSteal":{"min":6,"raw":19,"max":25},"thunderDamage":{"min":2,"raw":8,"max":10}},"base":{"baseThunderDefence":5,"baseAirDefence":-5},"rarity":"set"},"Tainted Ruby":{"internalName":"Tainted Ruby","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":37,"defence":5},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"healthRegenRaw":{"min":4,"raw":13,"max":17},"poison":{"min":17,"raw":55,"max":72},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":40},"rarity":"rare"},"Vampire Stick":{"internalName":"Vampire Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":72,"dropRestriction":"normal","requirements":{"level":37,"classRequirement":"mage"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"healthRegen":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":10,"raw":32,"max":42}},"base":{"baseDamage":{"min":32,"raw":32,"max":38}},"rarity":"unique"},"Flawless Chain Chestplate":{"internalName":"Flawless Chain Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":37},"powderSlots":1,"base":{"baseHealth":192},"rarity":"common"},"Giant Step":{"internalName":"Giant Step","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37},"powderSlots":2,"lore":"Found in a mystically-charged Giant ruin, these snug boots recall fond memories, incite calmness, and provide comfort for the wearer.","identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3,"healthRegen":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":450},"rarity":"legendary"},"Vandalizer":{"internalName":"Vandalizer","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":154,"dropRestriction":"never","requirements":{"level":37,"classRequirement":"assassin","defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"lifeSteal":{"min":12,"raw":39,"max":51},"exploding":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseFireDamage":{"min":50,"raw":50,"max":100}},"rarity":"rare"},"Trinket":{"internalName":"Trinket","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":37},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"stealing":{"min":1,"raw":2,"max":3}},"rarity":"unique"},"Outlaw Pants":{"internalName":"Outlaw Pants","type":"armour","armourType":"leggings","armourColor":"rgb(187,149,116)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":37,"agility":35},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"lifeSteal":{"min":9,"raw":29,"max":38},"stealing":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":345,"baseThunderDefence":-20},"rarity":"set"},"The Mind":{"internalName":"The Mind","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":89,"dropRestriction":"normal","requirements":{"level":37,"classRequirement":"assassin","intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"rawIntelligence":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":5,"raw":16,"max":21},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":20,"raw":20,"max":24},"baseWaterDamage":{"min":16,"raw":16,"max":26}},"rarity":"unique"},"Yume":{"internalName":"Yume","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37,"agility":25},"powderSlots":1,"identifications":{"rawAgility":5,"rawSpellDamage":{"min":15,"raw":50,"max":65},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":385,"baseFireDefence":-40,"baseAirDefence":15},"rarity":"legendary"},"Upgraded Archpriest":{"internalName":"Upgraded Archpriest","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":144,"dropRestriction":"never","identified":true,"requirements":{"level":37,"classRequirement":"warrior","intelligence":18,"agility":18},"powderSlots":2,"lore":"It seems stronger at first glance, but upon closer inspection the blade is rather...soft?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawIntelligence":5,"rawAgility":5,"rawMainAttackDamage":-25,"spellDamage":10,"reflection":9,"thunderDamage":-12,"thunderDefence":6},"base":{"baseDamage":{"min":13,"raw":13,"max":24},"baseWaterDamage":{"min":13,"raw":13,"max":15},"baseAirDamage":{"min":13,"raw":13,"max":15}},"rarity":"rare"},"Ebb and Flow":{"internalName":"Ebb and Flow","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":175,"dropRestriction":"normal","requirements":{"level":37,"classRequirement":"shaman","intelligence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawStrength":-5,"rawDexterity":-5,"rawIntelligence":14,"rawDefence":-5,"rawAgility":-5,"spellDamage":{"min":3,"raw":11,"max":14},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":16,"raw":16,"max":24},"baseWaterDamage":{"min":46,"raw":46,"max":54}},"rarity":"rare"},"Gypsum":{"internalName":"Gypsum","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37,"strength":25},"powderSlots":1,"identifications":{"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"spellDamage":{"min":-13,"raw":-10,"max":-7},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":2,"raw":6,"max":8},"earthDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":325,"baseEarthDefence":20,"baseAirDefence":-20},"rarity":"rare"},"Sandust":{"internalName":"Sandust","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":37,"dexterity":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":4,"walkSpeed":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Morph-Emerald":{"internalName":"Morph-Emerald","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":37,"strength":16,"dexterity":16,"intelligence":16,"defence":16,"agility":16},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"149","name":"ring.earth2"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":50},"rarity":"set"},"Pebble Mesh":{"internalName":"Pebble Mesh","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37,"strength":15},"powderSlots":2,"identifications":{"rawStrength":5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":15,"raw":49,"max":64},"xpBonus":{"min":3,"raw":11,"max":14},"earthDamage":{"min":2,"raw":7,"max":9},"waterDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":190,"baseEarthDefence":15,"baseAirDefence":-10},"rarity":"unique"},"Pierced Helmet":{"internalName":"Pierced Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"normal","requirements":{"level":37},"powderSlots":3,"identifications":{"rawDexterity":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7},"reflection":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":260,"baseEarthDefence":20,"baseAirDefence":-10},"rarity":"unique"},"Enhanced Gypsum":{"internalName":"Enhanced Gypsum","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":37,"strength":25},"powderSlots":1,"lore":"The merchant launched into a tirade on how the hardness scale of stones means nothing the instant you saw part of the boots flake off upon being touched.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawMainAttackDamage":56,"spellDamage":-12,"walkSpeed":-10,"exploding":5,"earthDamage":10},"base":{"baseHealth":455,"baseEarthDefence":24,"baseAirDefence":-30},"rarity":"rare"},"Kilpkonn":{"internalName":"Kilpkonn","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37,"defence":12},"powderSlots":1,"identifications":{"rawDefence":10,"healthRegenRaw":{"min":5,"raw":16,"max":21},"rawHealth":{"min":12,"raw":40,"max":52},"reflection":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":360,"baseThunderDefence":-15,"baseWaterDefence":25},"rarity":"rare"},"Window Pane":{"internalName":"Window Pane","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":148,"dropRestriction":"normal","requirements":{"level":37,"classRequirement":"shaman","dexterity":13,"intelligence":13},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawStrength":-6,"rawDexterity":4,"rawIntelligence":4,"mainAttackDamage":{"min":-18,"raw":-14,"max":-10},"spellDamage":{"min":4,"raw":14,"max":18},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":9,"max":12},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":11,"raw":11,"max":13},"baseThunderDamage":{"min":27,"raw":27,"max":33},"baseWaterDamage":{"min":27,"raw":27,"max":33}},"rarity":"unique"},"Sunshade":{"internalName":"Sunshade","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37},"powderSlots":1,"identifications":{"thorns":{"min":-13,"raw":-10,"max":-7},"reflection":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-6,"raw":-5,"max":-3},"thunderDefence":{"min":2,"raw":8,"max":10},"fireDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":345,"baseWaterDefence":-15,"baseFireDefence":15},"rarity":"rare"},"New Moon":{"internalName":"Oni Helm","type":"armour","armourType":"helmet","armourColor":"rgb(25,25,25)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":37},"powderSlots":1,"identifications":{"spellDamage":{"min":6,"raw":19,"max":25},"manaSteal":{"min":4,"raw":12,"max":16},"rawMaxMana":{"min":15,"raw":50,"max":65},"waterDefence":{"min":20,"raw":65,"max":85},"airDefence":{"min":20,"raw":65,"max":85}},"base":{"baseWaterDefence":15,"baseAirDefence":15},"rarity":"legendary"},"Shining Golden Helmet":{"internalName":"Shining Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37},"powderSlots":1,"base":{"baseHealth":206},"rarity":"common"},"Broken Sandust":{"internalName":"Broken Sandust","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":37,"dexterity":15},"lore":"The silver looks rather tarnished...does he expect you to believe that \"gem\" isn't just a cheap glass bauble?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":4,"walkSpeed":4,"thunderDamage":5},"base":{"baseHealth":40},"rarity":"unique"},"Sting-Glass Necklace":{"internalName":"Sting-Glass Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":37,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"185","name":"necklace.water1"}},"identifications":{"mainAttackDamage":5,"rawMainAttackDamage":16,"spellDamage":5,"rawSpellDamage":15},"base":{"baseHealth":-60},"rarity":"rare"},"Sandstone Leggings":{"internalName":"Sandstone Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37},"powderSlots":2,"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":270,"baseEarthDefence":8,"baseWaterDefence":-15,"baseAirDefence":8},"rarity":"unique"},"Grisly Gauntlet":{"internalName":"Grisly Gauntlet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":37,"strength":20},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"rawStrength":5,"rawMainAttackDamage":{"min":12,"raw":40,"max":52},"healthRegenRaw":{"min":-12,"raw":-9,"max":-6},"lifeSteal":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":20},"rarity":"legendary"},"Rotten":{"internalName":"Rotten","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":37},"powderSlots":1,"identifications":{"poison":{"min":48,"raw":160,"max":208},"thorns":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":280,"baseEarthDefence":25,"baseFireDefence":-15},"rarity":"rare"},"Bat Heart":{"internalName":"Bat Heart","type":"ingredient","requirements":{"level":37,"skills":["alchemism"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"walkSpeed":{"min":24,"raw":24,"max":28},"mainAttackDamage":{"min":-20,"raw":-20,"max":-20},"spellDamage":{"min":-20,"raw":-20,"max":-20}},"tier":3,"consumableOnlyIDs":{"duration":90,"charges":-1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Bat","coords":[[1239,45,-1517,15],[1202,64,-1653,20]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Limestone Core":{"internalName":"Limestone Core","type":"ingredient","requirements":{"level":37,"skills":["armouring"]},"icon":{"format":"legacy","value":"6:4"},"identifications":{"rawDefence":{"min":6,"raw":6,"max":8},"waterDefence":{"min":-12,"raw":-12,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-91000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":18,"agilityRequirement":0},"droppedBy":[{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]}]},"Swooper Wing":{"internalName":"Swooper Wing","type":"ingredient","requirements":{"level":37,"skills":["cooking"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"airDamage":{"min":4,"raw":4,"max":5},"earthDefence":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":-350,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Gunpowder":{"internalName":"Gunpowder","type":"ingredient","requirements":{"level":37,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"exploding":{"min":11,"raw":11,"max":16}},"tier":1,"consumableOnlyIDs":{"duration":-81,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Prospector","coords":[[1049,34,-1369,15],[1068,31,-1302,10],[1106,31,-1280,10],[1081,34,-1281,18],[1081,35,-1281,18],[1058,34,-1256,10],[1078,43,-1242,10],[1035,46,-1251,10],[998,44,-1249,20],[1430,30,-1269,10],[1471,130,-1410,12],[1477,129,-1426,12],[1469,133,-1450,12]]},{"name":"U-0iner Bot","coords":null},{"name":"Reggie","coords":[1236,65,-1431,200]},{"name":"Tumbleweed","coords":[[1109,28,-1444,45],[1333,98,-1468,30],[1165,101,-1485,20],[1124,102,-1472,20]]},{"name":"Gunpowder Imp","coords":null}]},"Shinesting Scorpion Tail":{"internalName":"Shinesting Scorpion Tail","type":"ingredient","requirements":{"level":37,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"rawMainAttackDamage":{"min":15,"raw":15,"max":25},"thunderDamage":{"min":5,"raw":5,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":15,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Shinesting Scorpion","coords":null}]},"Ancient Panel":{"internalName":"Ancient Panel","type":"ingredient","requirements":{"level":37,"skills":["woodworking"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"fireDamage":{"min":6,"raw":6,"max":8},"healthRegen":{"min":7,"raw":7,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":12,"agilityRequirement":0},"droppedBy":[{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]}]},"Lucky Rabbit's Foot":{"internalName":"Lucky Rabbit's Foot","type":"ingredient","requirements":{"level":37,"skills":["armouring","tailoring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"392:0"},"identifications":{"lootBonus":{"min":2,"raw":2,"max":8},"xpBonus":{"min":3,"raw":3,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Reggie","coords":[1236,65,-1431,200]},{"name":"Tumbleweed","coords":[[1109,28,-1444,45],[1333,98,-1468,30],[1165,101,-1485,20],[1124,102,-1472,20]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Eternal Flame":{"internalName":"Eternal Flame","type":"ingredient","requirements":{"level":37,"skills":["alchemism"]},"icon":{"format":"legacy","value":"385:0"},"identifications":{"healthRegenRaw":{"min":16,"raw":16,"max":20},"rawDefence":{"min":5,"raw":5,"max":6},"mainAttackDamage":{"min":-10,"raw":-10,"max":-8},"spellDamage":{"min":-10,"raw":-10,"max":-8}},"tier":2,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lava Monster","coords":[1342,142,-1210,30]},{"name":"Lava Geyser","coords":[[1275,36,-1607,7],[1281,32,-1633,7],[1281,32,-1633,7],[1298,30,-1616,12]]}]},"Spirograph Tablet":{"internalName":"Spirograph Tablet","type":"ingredient","requirements":{"level":37,"skills":["woodworking"]},"icon":{"format":"legacy","value":"321:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":3},"rawDexterity":{"min":3,"raw":3,"max":3},"rawIntelligence":{"min":3,"raw":3,"max":3},"rawDefence":{"min":3,"raw":3,"max":3},"rawAgility":{"min":3,"raw":3,"max":3},"mainAttackDamage":{"min":-6,"raw":-6,"max":-4},"spellDamage":{"min":-6,"raw":-6,"max":-4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-90000,"strengthRequirement":4,"dexterityRequirement":4,"intelligenceRequirement":4,"defenceRequirement":4,"agilityRequirement":4},"droppedBy":[{"name":"Withered Quasinobility","coords":[[1014,71,-2100,50],[1139,76,-1938,50],[1020,71,-1780,50]]},{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Philosopher":{"internalName":"Philosopher","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"classRequirement":"shaman","intelligence":20},"majorIds":{"Peaceful Effigy":"+Peaceful Effigy: Your Totem will last twice as long."},"powderSlots":2,"lore":"What better excuse is there to sit in the shade and think about life?","identifications":{"rawDefence":4,"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegen":{"min":5,"raw":15,"max":20},"healingEfficiency":{"min":2,"raw":8,"max":10},"reflection":{"min":14,"raw":45,"max":59},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":525,"baseFireDefence":15},"rarity":"fabled"},"Sandshooter":{"internalName":"Sandshooter","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":188,"dropRestriction":"never","requirements":{"level":36,"classRequirement":"archer","strength":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"196","name":"bow.earth3"}},"identifications":{"rawStrength":9,"thorns":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-19,"raw":-15,"max":-10},"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":25,"raw":25,"max":125},"baseEarthDamage":{"min":25,"raw":25,"max":75}},"rarity":"rare"},"Sonicboom":{"internalName":"Sonicboom","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":242,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"shaman","agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawAgility":12,"spellDamage":{"min":9,"raw":30,"max":39},"manaSteal":{"min":1,"raw":4,"max":5},"3rdSpellCost":{"min":46,"raw":35,"max":25},"walkSpeed":{"min":8,"raw":25,"max":33},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseAirDamage":{"min":417,"raw":417,"max":531}},"rarity":"legendary"},"Sandslasher":{"internalName":"Sandslasher","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":149,"dropRestriction":"never","requirements":{"level":36,"classRequirement":"assassin","strength":10,"agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"spellDamage":{"min":-6,"raw":-5,"max":-3},"rawSpellDamage":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":1,"raw":4,"max":5},"earthDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":55,"raw":55,"max":90}},"rarity":"rare"},"Dulled Amethyst Ring":{"internalName":"Dulled Amethyst Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":36,"intelligence":5,"defence":10},"lore":"The merchant insists the gem is real. It's easy to tell that the issue is the quality of the gem, though...","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawIntelligence":3,"healthRegenRaw":8},"base":{"baseHealth":48,"baseWaterDefence":5,"baseFireDefence":5},"rarity":"rare"},"Enhanced Icarus":{"internalName":"Enhanced Icarus","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":36,"agility":15},"powderSlots":1,"lore":"Apparently, gluing some feathers on top of the decorative armor wings is supposed to allow you to fly- so says the merchant, at least.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawAgility":5,"reflection":8,"walkSpeed":10,"fireDamage":-14,"airDamage":5,"fireDefence":-12},"base":{"baseHealth":375,"baseFireDefence":-30,"baseAirDefence":24},"rarity":"unique"},"Flawless Birch Dagger":{"internalName":"Flawless Birch Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":85,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":29,"raw":29,"max":39}},"rarity":"common"},"Outlaw Boots":{"internalName":"Outlaw Boots","type":"armour","armourType":"boots","armourColor":"rgb(187,149,116)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":36,"agility":30},"powderSlots":2,"identifications":{"rawAgility":7,"lifeSteal":{"min":9,"raw":29,"max":38},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":325,"baseEarthDefence":-20},"rarity":"set"},"Pickpockets":{"internalName":"Pickpockets","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"dexterity":15,"agility":10},"powderSlots":1,"identifications":{"rawDexterity":7,"rawDefence":-5,"rawAgility":5,"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":210},"rarity":"rare"},"Enhanced Skeleton Boots":{"internalName":"Enhanced Skeleton Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":36,"agility":10},"powderSlots":2,"lore":"Some of the bones used to make the frame of the boots have crumbled. The merchant refuses to comment.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawAgility":6,"walkSpeed":10,"sprintRegen":8,"airDamage":11,"fireDefence":-12},"base":{"baseHealth":345,"baseFireDefence":-22,"baseAirDefence":24},"rarity":"unique"},"Gavel's Memory":{"internalName":"Gavel's Memory","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":65,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"mage","agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawAgility":4,"healingEfficiency":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":1,"raw":1,"max":30},"baseAirDamage":{"min":14,"raw":14,"max":18}},"rarity":"unique"},"Bandit's Bangle":{"internalName":"Bandit's Bangle","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":36},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"lootBonus":{"min":2,"raw":6,"max":8},"stealing":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":-15},"rarity":"set"},"Midnight Sun":{"internalName":"Midnight Sun","type":"armour","armourType":"leggings","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":36,"dexterity":6,"defence":6},"powderSlots":1,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"bonfire","coordinates":[-345,35,-3970]},"identifications":{"rawDexterity":4,"rawDefence":4,"spellDamage":12,"manaSteal":3,"fireDefence":20},"base":{"baseHealth":250,"baseThunderDefence":10},"rarity":"unique"},"Tremolo":{"internalName":"Tremolo","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":190,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":36,"classRequirement":"shaman","dexterity":13,"agility":13},"powderSlots":2,"lore":"\"It feels like all these \"ancient\" civilizations have better tech than we do nowadays.\" -Knox, Corkus Immigrant and Sandstorm Vandals bandit","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawStrength":-11,"rawDexterity":11,"rawAgility":11,"jumpHeight":1,"xpBonus":11,"lootBonus":11},"base":{"baseThunderDamage":{"min":34,"raw":34,"max":47},"baseAirDamage":{"min":35,"raw":35,"max":36}},"rarity":"rare"},"Mesarock Arch":{"internalName":"Mesarock Arch","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":225,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"archer","strength":10},"powderSlots":3,"lore":"The two mesa tribes once were allies until their sacred totems were stolen. Before that time, however, they often shared their talents, and this bow hewn from mesa stone was one such lost craft.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":100,"raw":100,"max":100},"baseEarthDamage":{"min":25,"raw":25,"max":75}},"rarity":"legendary"},"Stylist's Scissors":{"internalName":"Stylist's Scissors","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":152,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"assassin","dexterity":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawAttackSpeed":1,"xpBonus":{"min":4,"raw":12,"max":16},"lootBonus":{"min":3,"raw":10,"max":13},"stealing":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":28,"raw":28,"max":48},"baseThunderDamage":{"min":18,"raw":18,"max":54}},"rarity":"rare"},"Upgraded Cursed Bow":{"internalName":"Upgraded Cursed Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":231,"dropRestriction":"never","identified":true,"requirements":{"level":36,"classRequirement":"archer","dexterity":18},"powderSlots":2,"lore":"\"100% curse-free or your money back!\" The merchant explained that this policy is not legally binding after you read it.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"spellDamage":30,"manaRegen":-12,"xpBonus":8,"lootBonus":8,"airDefence":-18},"base":{"baseDamage":{"min":46,"raw":46,"max":58},"baseThunderDamage":{"min":1,"raw":1,"max":80}},"rarity":"rare"},"Flawless Birch Spear":{"internalName":"Flawless Birch Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":71,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":35,"raw":35,"max":60}},"rarity":"common"},"Favian's Wing":{"internalName":"Favian's Wing","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":36,"agility":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseThunderDefence":-15,"baseAirDefence":-10},"rarity":"rare"},"Mixolydian":{"internalName":"Mixolydian","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":101,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"warrior","agility":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":7,"walkSpeed":{"min":5,"raw":15,"max":20},"airDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":21},"baseAirDamage":{"min":12,"raw":12,"max":17}},"rarity":"unique"},"Mesoskeleton":{"internalName":"Mesoskeleton","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":36,"strength":15,"defence":20},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawMainAttackDamage":{"min":21,"raw":70,"max":91},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":27,"raw":90,"max":117},"thorns":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":460,"baseEarthDefence":20},"rarity":"legendary"},"Enhanced Pickpockets":{"internalName":"Enhanced Pickpockets","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":36,"dexterity":15,"agility":10},"powderSlots":1,"lore":"Aside from the added plating, they look more or less intact. Somehow, that doesn't surprise you.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawDexterity":7,"rawDefence":-5,"rawAgility":5,"lootBonus":12,"stealing":4},"base":{"baseHealth":330},"rarity":"rare"},"Upgraded Phoenix":{"internalName":"Upgraded Phoenix","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":116,"dropRestriction":"never","identified":true,"requirements":{"level":36,"classRequirement":"mage","defence":25},"powderSlots":3,"lore":"According to the merchant, the wand is extra flammable, so that it can burn up and disappear with all the mages quicker.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"spellDamage":-10,"healthRegen":16,"healthRegenRaw":12,"rawHealth":105,"fireDamage":8},"base":{"baseDamage":{"min":32,"raw":32,"max":38},"baseFireDamage":{"min":32,"raw":32,"max":52}},"rarity":"rare"},"Cactus":{"internalName":"Cactus","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":36},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"lifeSteal":{"min":-14,"raw":-11,"max":-8},"thorns":{"min":4,"raw":12,"max":16}},"rarity":"unique"},"Phoenix":{"internalName":"Phoenix","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":87,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"mage","defence":25},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"spellDamage":{"min":-10,"raw":-8,"max":-6},"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":5,"raw":15,"max":20},"rawHealth":{"min":39,"raw":130,"max":169},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":24,"raw":24,"max":28},"baseFireDamage":{"min":24,"raw":24,"max":40}},"rarity":"rare"},"Voleur":{"internalName":"Voleur","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"dexterity":10,"agility":5},"powderSlots":1,"identifications":{"rawDexterity":3,"rawAgility":3,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"walkSpeed":{"min":1,"raw":4,"max":5},"lootBonus":{"min":4,"raw":12,"max":16},"stealing":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":270},"rarity":"rare"},"Leggings of the Halt":{"internalName":"Leggings of the Halt","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"defence":20},"powderSlots":3,"identifications":{"walkSpeed":{"min":-25,"raw":-19,"max":-13},"airDefence":{"min":-39,"raw":-30,"max":-21},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":300},"rarity":"unique"},"Amethyst Ring":{"internalName":"Amethyst Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":36,"intelligence":5,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"rawIntelligence":3,"healthRegenRaw":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDefence":4,"baseFireDefence":4},"rarity":"rare"},"New Golden Chestplate":{"internalName":"New Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36},"powderSlots":1,"base":{"baseHealth":192},"rarity":"common"},"Desert Sands":{"internalName":"Desert Sands","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":36,"defence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawDefence":3,"healthRegen":{"min":4,"raw":12,"max":16},"manaRegen":{"min":-3,"raw":-2,"max":-1},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":60,"baseFireDefence":5},"rarity":"set"},"Largo":{"internalName":"Largo","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":249,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"shaman","strength":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"397","name":"relik.earth1"}},"identifications":{"rawStrength":8,"rawDexterity":-12,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":53,"raw":175,"max":228},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":50,"raw":50,"max":150},"baseEarthDamage":{"min":150,"raw":150,"max":250}},"rarity":"legendary"},"Flaming Wing":{"internalName":"Flaming Wing","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":185,"dropRestriction":"never","requirements":{"level":36,"classRequirement":"archer","defence":15,"agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":7,"rawAgility":7,"healthRegenRaw":{"min":6,"raw":20,"max":26},"xpBonus":{"min":5,"raw":17,"max":22},"thunderDamage":{"min":-26,"raw":-20,"max":-14},"fireDamage":{"min":4,"raw":13,"max":17},"airDamage":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":35,"raw":35,"max":45},"baseFireDamage":{"min":25,"raw":25,"max":30},"baseAirDamage":{"min":20,"raw":20,"max":25}},"rarity":"legendary"},"Flawless Birch Wand":{"internalName":"Flawless Birch Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":53,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":21,"raw":21,"max":30}},"rarity":"common"},"Reversal":{"internalName":"Reversal","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":150,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"shaman","strength":12,"agility":12},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"thorns":{"min":9,"raw":30,"max":39},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":17,"raw":17,"max":23},"baseEarthDamage":{"min":23,"raw":23,"max":30},"baseAirDamage":{"min":23,"raw":23,"max":30}},"rarity":"unique"},"Dune Beast Jaw":{"internalName":"Dune Beast Jaw","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":36,"strength":15},"powderSlots":1,"lore":"\"We're trying to dig up history, not horrors! What is wrong with this province?!\" -Excavator Vade, WynnExcavation Site A Director","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeonMerchant","coordinates":[1390,90,-1835]},"identifications":{"rawStrength":10,"mainAttackDamage":10,"thorns":5,"walkSpeed":5},"base":{"baseHealth":400},"rarity":"rare"},"Flawless Birch Bow":{"internalName":"Flawless Birch Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":107,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":63,"raw":63,"max":80}},"rarity":"common"},"Prologue":{"internalName":"Prologue","type":"armour","armourType":"boots","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":36,"strength":10,"dexterity":5,"intelligence":10,"defence":5,"agility":5},"powderSlots":1,"dropMeta":{"name":"Isles of Fiction","type":["event","merchant"],"event":"heroes","coordinates":[-307,36,-4102]},"identifications":{"rawElementalDamage":80,"healthRegenRaw":25,"manaRegen":8,"walkSpeed":15,"xpBonus":25,"lootBonus":15},"base":{"baseHealth":400,"baseEarthDefence":15,"baseThunderDefence":5,"baseWaterDefence":15,"baseFireDefence":5,"baseAirDefence":5},"rarity":"legendary"},"Cursed Bow":{"internalName":"Cursed Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":174,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"archer","dexterity":18},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":5,"raw":16,"max":21},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":30,"raw":30,"max":48},"baseThunderDamage":{"min":1,"raw":1,"max":60}},"rarity":"rare"},"Sneaky Caster":{"internalName":"Sneaky Caster","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":68,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"mage","agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"mainAttackDamage":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":3,"raw":10,"max":13},"lootBonus":{"min":2,"raw":5,"max":7},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":23,"raw":23,"max":30},"baseAirDamage":{"min":4,"raw":4,"max":9}},"rarity":"unique"},"Unhalting Eagle":{"internalName":"Unhalting Eagle","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":138,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"archer","strength":5,"agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":17,"raw":17,"max":39},"baseAirDamage":{"min":11,"raw":11,"max":22}},"rarity":"unique"},"Ancient Jazerant":{"internalName":"Ancient Jazerant","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":36,"intelligence":20},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8},"thorns":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":270,"baseEarthDefence":20,"baseFireDefence":-10},"rarity":"rare"},"Flawless Birch Relik":{"internalName":"Flawless Birch Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":105,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":49,"raw":49,"max":53}},"rarity":"common"},"Scorpion Tail":{"internalName":"Scorpion Tail","type":"armour","armourType":"leggings","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"dungeon","requirements":{"level":36},"powderSlots":1,"dropMeta":{"name":"Sand-Swept Tomb","type":"dungeon","coordinates":[1390,90,-1835]},"identifications":{"poison":{"min":41,"raw":135,"max":176},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":250},"rarity":"rare"},"Icarus":{"internalName":"Icarus","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"agility":15},"powderSlots":1,"identifications":{"rawAgility":5,"reflection":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-16,"raw":-12,"max":-8},"airDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":220,"baseFireDefence":-20,"baseAirDefence":20},"rarity":"unique"},"Skeleton Boots":{"internalName":"Skeleton Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":36,"agility":10},"powderSlots":2,"identifications":{"rawAgility":6,"walkSpeed":{"min":4,"raw":12,"max":16},"sprintRegen":{"min":3,"raw":10,"max":13},"airDamage":{"min":4,"raw":14,"max":18},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":200,"baseFireDefence":-15,"baseAirDefence":20},"rarity":"unique"},"Darkiron Zweihander":{"internalName":"Darkiron Zweihander","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":187,"dropRestriction":"normal","requirements":{"level":36,"classRequirement":"assassin","defence":25,"agility":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":12,"raw":39,"max":51},"waterDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":6,"raw":20,"max":26},"airDefence":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":0,"raw":0,"max":125},"baseFireDamage":{"min":50,"raw":50,"max":125},"baseAirDamage":{"min":50,"raw":50,"max":100}},"rarity":"legendary"},"Ra":{"internalName":"Ra","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":36},"lore":"Undecipherable symbols are carved into this long arm band, though the fiery glow and bright jewel has led archaeologists to believe it is somehow related to the sun.","dropMeta":{"name":"Sand-Swept Tomb","type":"dungeon","coordinates":[1390,90,-1835]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"healthRegen":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":4,"raw":12,"max":16},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseWaterDefence":-20},"rarity":"legendary"},"The Swarm":{"internalName":"The Swarm","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":36,"strength":15,"defence":15,"agility":15},"powderSlots":2,"lore":"The scratching in the walls is the only warning you get.","identifications":{"rawStrength":5,"damage":15,"rawMainAttackDamage":90,"poison":350,"walkSpeed":15,"knockback":15},"base":{"baseHealth":400,"baseEarthDefence":25,"baseFireDefence":25,"baseAirDefence":25},"rarity":"rare"},"Contraband Miracle Berry":{"internalName":"Contraband Miracle Berry","type":"ingredient","requirements":{"level":36,"skills":["cooking"]},"icon":{"format":"legacy","value":"434:0"},"identifications":{"mainAttackDamage":{"min":-6,"raw":-6,"max":-4},"spellDamage":{"min":-6,"raw":-6,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Contraband Absinthe":{"internalName":"Contraband Absinthe","type":"ingredient","requirements":{"level":36,"skills":["alchemism"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":2},"rawDexterity":{"min":2,"raw":2,"max":2},"rawIntelligence":{"min":2,"raw":2,"max":2},"rawDefence":{"min":2,"raw":2,"max":2},"rawAgility":{"min":2,"raw":2,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Contraband Hibiscus":{"internalName":"Contraband Hibiscus","type":"ingredient","requirements":{"level":36,"skills":["scribing"]},"icon":{"format":"legacy","value":"38:8"},"identifications":{"earthDamage":{"min":5,"raw":5,"max":7},"thunderDamage":{"min":5,"raw":5,"max":7},"waterDamage":{"min":5,"raw":5,"max":7},"fireDamage":{"min":5,"raw":5,"max":7},"airDamage":{"min":5,"raw":5,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Weathered Idol":{"internalName":"Weathered Idol","type":"ingredient","requirements":{"level":36,"skills":["scribing"]},"icon":{"format":"legacy","value":"145:0"},"identifications":{"rawSpellDamage":{"min":30,"raw":30,"max":36},"airDamage":{"min":10,"raw":10,"max":14},"walkSpeed":{"min":6,"raw":6,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Withered Quasinobility","coords":[[1014,71,-2100,50],[1139,76,-1938,50],[1020,71,-1780,50]]}]},"Lunar Chunk":{"internalName":"Lunar Chunk","type":"ingredient","requirements":{"level":36,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"353:0"},"identifications":{"spellDamage":{"min":4,"raw":4,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Interloper","coords":[1045,37,-2655,8]},{"name":"Lunatic Remnant","coords":[1045,37,-2655,8]},{"name":"Lunar Possessed","coords":[[1002,46,-2555,4],[925,35,-2590,7],[862,43,-2609,7],[1049,77,-2621,8]]},{"name":"Lunar Parasite","coords":[[941,56,-2612,1],[968,58,-2639,2],[1014,62,-2649,0],[1000,75,-2594,5],[1026,80,-2601,5],[1065,69,-2636,5]]},{"name":"Lunar Effigy","coords":[861,80,-2601,0]},{"name":"§eLunar Effigy","coords":[1004,94,-2580,0]},{"name":"§eLunar Effigy","coords":[969,87,-2469,0]}]},"Algae Mat":{"internalName":"Algae Mat","type":"ingredient","requirements":{"level":36,"skills":["scribing"]},"icon":{"format":"legacy","value":"106:0"},"identifications":{"thorns":{"min":6,"raw":6,"max":10},"reflection":{"min":5,"raw":5,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-78,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tiderider Squid","coords":[[-259,24,-2649,10],[-235,24,-2666,10],[-208,24,-2684,10]]},{"name":"Lunatic Squid","coords":[[890,10,-2561,30],[846,20,-2641,30]]},{"name":"Squid Vicious","coords":[-914,24,-2855,100]},{"name":"Deep Blue Squid","coords":[[992,30,-3924,25],[743,30,-3967,25]]}]},"Rusty Spurs":{"internalName":"Rusty Spurs","type":"ingredient","requirements":{"level":36,"skills":["jeweling"]},"icon":{"format":"legacy","value":"101:0"},"identifications":{"sprint":{"min":1,"raw":1,"max":3},"sprintRegen":{"min":0,"raw":0,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Cowboy","coords":[[1253,9,-1501,3],[1218,12,-1506,3],[1202,12,-1515,3],[1171,10,-1525,3]]}]},"Burial Talisman":{"internalName":"Burial Talisman","type":"ingredient","requirements":{"level":36,"skills":["jeweling"]},"icon":{"format":"legacy","value":"259:18"},"identifications":{"thunderDamage":{"min":4,"raw":4,"max":5},"waterDefence":{"min":-5,"raw":-5,"max":-4},"airDefence":{"min":-5,"raw":-5,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":0,"dexterityRequirement":9,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Withered Quasinobility","coords":[[1014,71,-2100,50],[1139,76,-1938,50],[1020,71,-1780,50]]}]},"Oxford":{"internalName":"Oxford","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"dexterity":20},"powderSlots":1,"identifications":{"rawMainAttackDamage":{"min":12,"raw":39,"max":51},"healthRegen":{"min":-19,"raw":-15,"max":-10},"reflection":{"min":3,"raw":10,"max":13},"xpBonus":{"min":4,"raw":12,"max":16},"lootBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":225,"baseEarthDefence":-25,"baseThunderDefence":20},"rarity":"unique"},"Flawless Chain Leggings":{"internalName":"Flawless Chain Leggings","type":"armour","armourType":"leggings","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":35},"powderSlots":1,"base":{"baseHealth":176},"rarity":"common"},"Upgraded Echolocation":{"internalName":"Upgraded Echolocation","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":183,"dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"shaman"},"powderSlots":3,"lore":"Did the merchant really think that adding severed bat wings to the weapon would make it more authentic?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"poison":89,"lifeSteal":14,"thorns":-12,"reflection":-12},"base":{"baseDamage":{"min":56,"raw":56,"max":62}},"rarity":"unique"},"Helm of Darkness":{"internalName":"Helm of Darkness","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35},"powderSlots":1,"identifications":{"spellDamage":{"min":4,"raw":12,"max":16},"reflection":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":140,"baseThunderDefence":15},"rarity":"rare"},"Relic Chestplate":{"internalName":"Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"strength":8,"dexterity":8,"intelligence":8,"defence":8,"agility":8},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"elementalDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":285,"baseEarthDefence":12,"baseThunderDefence":12,"baseWaterDefence":12,"baseFireDefence":12,"baseAirDefence":12},"rarity":"set"},"New Golden Leggings":{"internalName":"New Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35},"powderSlots":1,"base":{"baseHealth":178},"rarity":"common"},"Stonehall":{"internalName":"Stonehall","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":35,"strength":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":5,"walkSpeed":{"min":-4,"raw":-3,"max":-2},"earthDamage":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Mummy's Talisman":{"internalName":"Mummy's Talisman","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":35},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lifeSteal":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"xpBonus":{"min":2,"raw":8,"max":10}},"rarity":"legendary"},"Glass Skin":{"internalName":"Glass Skin","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":35},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"163","name":"bracelet.earth2"}},"identifications":{"rawDefence":-3,"rawAgility":-3,"mainAttackDamage":{"min":3,"raw":9,"max":12},"spellDamage":{"min":3,"raw":9,"max":12},"healthRegenRaw":{"min":-12,"raw":-9,"max":-6},"xpBonus":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":-60},"rarity":"legendary"},"Tribal Flute":{"internalName":"Tribal Flute","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":82,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"mage","agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"rawStrength":4,"rawAgility":4,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":2,"raw":5,"max":7},"earthDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":13,"raw":13,"max":22},"baseAirDamage":{"min":11,"raw":11,"max":20}},"rarity":"rare"},"Artifice":{"internalName":"Artifice","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"dexterity":20},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-12,"raw":-9,"max":-6}},"base":{"baseHealth":200,"baseEarthDefence":-25,"baseThunderDefence":20},"rarity":"unique"},"Enhanced Oxford":{"internalName":"Enhanced Oxford","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":35,"dexterity":20},"powderSlots":1,"lore":"They look like at once point they may have been fairly upscale. Now they just look like a metallic mess.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawMainAttackDamage":31,"healthRegen":-18,"reflection":8,"xpBonus":10,"lootBonus":8,"thunderDamage":8},"base":{"baseHealth":375,"baseEarthDefence":-37,"baseThunderDefence":24},"rarity":"unique"},"Desert Sepulcher":{"internalName":"Desert Sepulcher","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":35,"intelligence":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":3,"lifeSteal":{"min":-19,"raw":-15,"max":-10},"raw1stSpellCost":-1,"raw2ndSpellCost":-1},"base":{"baseHealth":-30},"rarity":"set"},"Tempo Trident":{"internalName":"Tempo Trident","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":120,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"warrior"},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"healthRegenRaw":15,"lifeSteal":30,"manaRegen":12,"manaSteal":4,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":70,"raw":70,"max":90}},"rarity":"legendary"},"Tempo Tanto":{"internalName":"Tempo Tanto","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":152,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"assassin"},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"healthRegenRaw":15,"lifeSteal":30,"manaRegen":12,"manaSteal":4,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":56,"raw":56,"max":66}},"rarity":"legendary"},"Thunder Relic Chestplate":{"internalName":"Thunder Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"dexterity":27},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"rawDexterity":7,"thunderDamage":{"min":4,"raw":14,"max":18},"thunderDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":260,"baseThunderDefence":9},"rarity":"set"},"Earth Relic Chestplate":{"internalName":"Earth Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"strength":27},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"rawStrength":7,"earthDamage":{"min":4,"raw":12,"max":16},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":285,"baseEarthDefence":12},"rarity":"set"},"Copper Plate":{"internalName":"Copper Plate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"dexterity":15,"defence":5},"powderSlots":1,"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"reflection":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":225,"baseThunderDefence":-8,"baseFireDefence":-8},"rarity":"unique"},"Waves Raiser":{"internalName":"Waves Raiser","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":107,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"mage","intelligence":35},"powderSlots":1,"lore":"The mystery of the ocean’s appearance has eluded scholars for centuries. It is believed that many years ago, warlocks used wands like this one in an attempt to submerge the world.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseWaterDamage":{"min":44,"raw":44,"max":60}},"rarity":"legendary"},"Fire Relic Chestplate":{"internalName":"Fire Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"defence":27},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"rawDefence":7,"fireDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":330,"baseFireDefence":15},"rarity":"set"},"Cracked Stonehall":{"internalName":"Cracked Stonehall","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":35,"strength":15},"lore":"It looks like someone tried and failed to improve it. The re-smithing job was obviously rushed...","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":5,"walkSpeed":-4,"earthDamage":6},"base":{"baseHealth":35},"rarity":"unique"},"Tribal Headdress":{"internalName":"Tribal Headdress","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"agility":5},"powderSlots":2,"identifications":{"rawStrength":5,"rawAgility":3,"rawMainAttackDamage":{"min":14,"raw":46,"max":60},"spellDamage":{"min":-6,"raw":-5,"max":-3},"walkSpeed":{"min":2,"raw":5,"max":7},"earthDefence":{"min":2,"raw":5,"max":7},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":200},"rarity":"unique"},"Erratio":{"internalName":"Erratio","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"dexterity":6,"agility":12},"powderSlots":1,"lore":"The blind prophet who crafted this macabre breastplate used the bones of only the most ruthless justiciars and executioners. Its wearers are supposedly destined to only die either a heroic or a just death.","identifications":{"rawMainAttackDamage":{"min":5,"raw":16,"max":21},"healthRegenRaw":{"min":-8,"raw":-6,"max":-4},"poison":{"min":18,"raw":61,"max":79},"lifeSteal":{"min":17,"raw":55,"max":72},"thorns":{"min":3,"raw":11,"max":14},"reflection":{"min":1,"raw":3,"max":4},"airDamage":{"min":1,"raw":4,"max":5},"airDefence":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":413},"rarity":"legendary"},"Tempo Totem":{"internalName":"Tempo Totem","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":181,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"shaman"},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"healthRegenRaw":15,"lifeSteal":30,"manaRegen":12,"manaSteal":4,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":86,"raw":86,"max":90}},"rarity":"legendary"},"Water Relic Chestplate":{"internalName":"Water Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"intelligence":27},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"rawIntelligence":7,"waterDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":245,"baseWaterDefence":18},"rarity":"set"},"Anchor Chain":{"internalName":"Anchor Chain","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":141,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"warrior","strength":15,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawStrength":10,"mainAttackDamage":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":4,"raw":12,"max":16},"airDefence":{"min":-25,"raw":-19,"max":-13}},"base":{"baseDamage":{"min":40,"raw":40,"max":60},"baseEarthDamage":{"min":20,"raw":20,"max":100},"baseWaterDamage":{"min":40,"raw":40,"max":80}},"rarity":"legendary"},"Charm of the Tick":{"internalName":"Charm of the Tick","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"poison":{"min":18,"raw":60,"max":78},"lifeSteal":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":45},"rarity":"unique"},"Weather Warning":{"internalName":"Weather Warning","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"archer","dexterity":15,"intelligence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-17,"raw":-13,"max":-9},"fireDefence":{"min":-17,"raw":-13,"max":-9},"airDefence":{"min":-17,"raw":-13,"max":-9}},"base":{"baseThunderDamage":{"min":0,"raw":0,"max":50},"baseWaterDamage":{"min":25,"raw":25,"max":25}},"rarity":"unique"},"Fractured Lyre":{"internalName":"Fractured Lyre","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":165,"dropRestriction":"never","requirements":{"level":35,"classRequirement":"shaman","defence":20,"agility":20},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawAgility":7,"spellDamage":{"min":-8,"raw":-6,"max":-4},"healthRegenRaw":{"min":6,"raw":20,"max":26},"rawHealth":{"min":53,"raw":175,"max":228},"xpBonus":{"min":3,"raw":11,"max":14},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseFireDamage":{"min":30,"raw":30,"max":50},"baseAirDamage":{"min":20,"raw":20,"max":40}},"rarity":"rare"},"Enhanced Meditation Robe":{"internalName":"Enhanced Meditation Robe","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":35,"intelligence":25},"powderSlots":1,"lore":"The psalm tag has been replaced with a custom message from the armorer. What it says about the original owner is better left to the imagination.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"mainAttackDamage":-12,"spellDamage":18,"xpBonus":8,"waterDamage":10,"thunderDefence":-12},"base":{"baseHealth":395,"baseThunderDefence":-37,"baseWaterDefence":12},"rarity":"unique"},"Etikal":{"internalName":"Etikal","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":116,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"archer","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":22,"raw":22,"max":32},"baseEarthDamage":{"min":8,"raw":8,"max":12},"baseThunderDamage":{"min":8,"raw":8,"max":12},"baseWaterDamage":{"min":8,"raw":8,"max":12},"baseFireDamage":{"min":8,"raw":8,"max":12},"baseAirDamage":{"min":8,"raw":8,"max":12}},"rarity":"unique"},"Air Relic Chestplate":{"internalName":"Air Relic Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":35,"agility":27},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1091,116,-1476,100]},"identifications":{"rawAgility":7,"airDamage":{"min":3,"raw":11,"max":14},"airDefence":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":275,"baseAirDefence":15},"rarity":"set"},"Meditation Robe":{"internalName":"Meditation Robe","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":35,"intelligence":25},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13},"waterDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":235,"baseThunderDefence":-25,"baseWaterDefence":10},"rarity":"unique"},"Tempo Ticker":{"internalName":"Tempo Ticker","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":93,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"mage"},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"healthRegenRaw":15,"lifeSteal":30,"manaRegen":12,"manaSteal":4,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":40,"raw":40,"max":50}},"rarity":"legendary"},"Tempo Trebuchet":{"internalName":"Tempo Trebuchet","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":182,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":35,"classRequirement":"archer"},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"healthRegenRaw":15,"lifeSteal":30,"manaRegen":12,"manaSteal":4,"xpBonus":20,"lootBonus":20},"base":{"baseDamage":{"min":115,"raw":115,"max":128}},"rarity":"legendary"},"Cypress":{"internalName":"Cypress","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":148,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"assassin","strength":18,"intelligence":18},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":4,"rawIntelligence":4,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":3,"raw":10,"max":13},"earthDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"airDefence":{"min":-25,"raw":-19,"max":-13}},"base":{"baseDamage":{"min":28,"raw":28,"max":38},"baseEarthDamage":{"min":16,"raw":16,"max":50},"baseWaterDamage":{"min":9,"raw":9,"max":57}},"rarity":"rare"},"Echolocation":{"internalName":"Echolocation","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":130,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"poison":{"min":33,"raw":111,"max":144},"lifeSteal":{"min":5,"raw":18,"max":23},"thorns":{"min":-13,"raw":-10,"max":-7},"reflection":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":39,"raw":39,"max":45}},"rarity":"unique"},"Steel Sabre":{"internalName":"Steel Sabre","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":105,"dropRestriction":"normal","requirements":{"level":35,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"rawStrength":5,"mainAttackDamage":{"min":1,"raw":4,"max":5},"spellDamage":{"min":2,"raw":7,"max":9},"poison":{"min":45,"raw":150,"max":195},"fireDamage":{"min":-19,"raw":-15,"max":-10},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":42,"raw":42,"max":58},"baseEarthDamage":{"min":18,"raw":18,"max":22}},"rarity":"unique"},"Emerald Knife":{"internalName":"Emerald Knife","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":138,"dropRestriction":"never","requirements":{"level":35,"classRequirement":"assassin"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":7,"raw":23,"max":30},"stealing":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":42,"raw":42,"max":68}},"rarity":"rare"},"Enhanced Copper Plate":{"internalName":"Enhanced Copper Plate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":35,"dexterity":15,"defence":5},"powderSlots":1,"lore":"The merchant insists that the wear and oxidation on the armor \"is a feature.\"","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"spellDamage":7,"reflection":4,"thunderDamage":6,"fireDamage":5},"base":{"baseHealth":395,"baseThunderDefence":-12,"baseFireDefence":-12},"rarity":"unique"},"Condor Feather":{"internalName":"Condor Feather","type":"ingredient","requirements":{"level":35,"skills":["tailoring"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"airDamage":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-42000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12},"droppedBy":[{"name":"Canyon Condor","coords":[[1098,41,-1329,10],[1040,43,-1504,10],[1101,47,-1536,10],[1189,46,-1581,10],[1368,44,-1533,10],[1379,40,-1505,10],[1221,43,-1452,10],[1270,46,-1435,10],[1385,44,-1406,10],[1339,44,-1415,10]]},{"name":"Canyon Condor","coords":null},{"name":"The Cockatrice","coords":null},{"name":"Tumbleweed","coords":[[1109,28,-1444,45],[1333,98,-1468,30],[1165,101,-1485,20],[1124,102,-1472,20]]}]},"Sentient Magmatic Gem":{"internalName":"Sentient Magmatic Gem","type":"ingredient","requirements":{"level":35,"skills":["jeweling"]},"icon":{"format":"legacy","value":"95:14"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":25,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-104000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0}},"Tanned Flesh":{"internalName":"Tanned Flesh","type":"ingredient","requirements":{"level":35,"skills":["tailoring"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"fireDefence":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":4,"agilityRequirement":0},"droppedBy":[{"name":"Scorched Zombie","coords":[[1037,84,-1589,5],[1169,93,-1608,5],[1349,88,-1677,5],[1446,91,-1558,5],[1361,152,-1136,5],[1472,125,-1234,5],[1501,143,-1329,5],[1467,94,-1456,5],[1154,31,-1543,5],[1298,31,-1415,5],[1430,31,-1518,5],[1181,31,-1563,5],[1034,39,-1432,5],[1182,31,-1392,5]]},{"name":"Dead Cowboy","coords":[[1253,9,-1501,3],[1218,12,-1506,3],[1202,12,-1515,3],[1171,10,-1525,3]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Stonewalker Core":{"internalName":"Stonewalker Core","type":"ingredient","requirements":{"level":35,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"earthDefence":{"min":6,"raw":6,"max":10},"rawStrength":{"min":3,"raw":3,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":12,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Presocietal Stonewalker","coords":[[1137,77,-2196,7],[1448,84,-2143,8]]}]},"Chain Loop":{"internalName":"Chain Loop","type":"ingredient","requirements":{"level":35,"skills":["armouring"]},"icon":{"format":"legacy","value":"101:0"},"identifications":{"rawHealth":{"min":50,"raw":50,"max":70},"waterDefence":{"min":-6,"raw":-6,"max":-4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0},"droppedBy":[{"name":"Dire Subaltern","coords":[[1137,77,-2196,7],[1448,84,-2143,8]]},{"name":"Possessive Militarist","coords":[903,46,-2089,5]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Stolen Pearls":{"internalName":"Stolen Pearls","type":"ingredient","requirements":{"level":35,"skills":["jeweling"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"stealing":{"min":2,"raw":2,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":60000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tribal Exile","coords":[1488,113,-1513,7]},{"name":"Tribal Exile","coords":[1488,113,-1513,7]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]}]},"Sharp Edge":{"internalName":"Sharp Edge","type":"ingredient","requirements":{"level":35,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"mainAttackDamage":{"min":8,"raw":8,"max":9},"spellDamage":{"min":-9,"raw":-9,"max":-8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dire Subaltern","coords":[[1137,77,-2196,7],[1448,84,-2143,8]]},{"name":"Possessive Militarist","coords":[903,46,-2089,5]},{"name":"Aggressive Runabout","coords":null},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Crystal Dust":{"internalName":"Crystal Dust","type":"ingredient","requirements":{"level":35,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"spellDamage":{"min":4,"raw":4,"max":6},"walkSpeed":{"min":-5,"raw":-5,"max":-2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":8,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crystallized Miner","coords":[1104,9,-2110,8]},{"name":"Crystallized Miner","coords":[1104,9,-2110,8]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]},{"name":"Crystal Fanatic Leader","coords":[1022,15,-2065,22]},{"name":"Crystal Fanatic Leader","coords":[1022,5,-2065,5]},{"name":"Crystallized Scarab","coords":[1016,16,-2047,2]}]},"Pokey Cactus":{"internalName":"Pokey Cactus","type":"ingredient","requirements":{"level":35,"skills":["tailoring","scribing"]},"icon":{"format":"legacy","value":"81:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"thorns":{"min":10,"raw":10,"max":15},"rawHealth":{"min":30,"raw":30,"max":40}},"tier":2,"consumableOnlyIDs":{"duration":-115,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Withered Quasinobility","coords":[[1014,71,-2100,50],[1139,76,-1938,50],[1020,71,-1780,50]]},{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Gathering Pickaxe T5":{"internalName":"Gathering Pickaxe 5","type":"tool","toolType":"pickaxe","gatheringSpeed":65,"identified":true,"requirements":{"level":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"52","name":"gatheringTool.pickaxe5"}},"rarity":"common"},"Gathering Scythe T5":{"internalName":"Gathering Scythe 5","type":"tool","toolType":"scythe","gatheringSpeed":65,"identified":true,"requirements":{"level":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"62","name":"gatheringTool.scythe5"}},"rarity":"common"},"Gathering Rod T5":{"internalName":"Gathering Rod 5","type":"tool","toolType":"rod","gatheringSpeed":65,"identified":true,"requirements":{"level":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"57","name":"gatheringTool.rod5"}},"rarity":"common"},"Gathering Axe T5":{"internalName":"Gathering Axe 5","type":"tool","toolType":"axe","gatheringSpeed":65,"identified":true,"requirements":{"level":35},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"47","name":"gatheringTool.axe5"}},"rarity":"common"},"Rite Staff":{"internalName":"Rite Staff","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":66,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"mage","intelligence":10,"defence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"rawHealth":{"min":-195,"raw":-150,"max":-105},"lifeSteal":{"min":8,"raw":25,"max":33},"lootBonus":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":20,"raw":20,"max":26},"baseWaterDamage":{"min":9,"raw":9,"max":12},"baseFireDamage":{"min":9,"raw":9,"max":12}},"rarity":"unique"},"Priest's Underwears":{"internalName":"Priest's Underwears","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34},"powderSlots":2,"identifications":{"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":215,"baseEarthDefence":-15,"baseThunderDefence":25,"baseFireDefence":-15,"baseAirDefence":10},"rarity":"unique"},"Incense Burner":{"internalName":"Incense Burner","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":123,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"shaman","defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":5,"healthRegenRaw":{"min":3,"raw":10,"max":13},"rawHealth":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":36,"raw":36,"max":46},"baseFireDamage":{"min":31,"raw":31,"max":51}},"rarity":"unique"},"Desert Wretch":{"internalName":"Desert Wretch","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":34,"strength":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":3,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"sprint":{"min":-10,"raw":-8,"max":-6},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseEarthDefence":5,"baseAirDefence":-5},"rarity":"set"},"Quicksand Crossers":{"internalName":"Quicksand Crossers","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":34,"agility":15},"powderSlots":1,"identifications":{"rawAgility":7,"walkSpeed":{"min":3,"raw":9,"max":12},"lootBonus":{"min":3,"raw":10,"max":13},"earthDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":235,"baseEarthDefence":10,"baseWaterDefence":-20,"baseAirDefence":10},"rarity":"rare"},"Steel Buster":{"internalName":"Steel Buster","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":88,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"warrior","strength":15,"defence":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":2,"raw":6,"max":8},"earthDamage":{"min":2,"raw":8,"max":10},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":37,"raw":37,"max":45},"baseEarthDamage":{"min":16,"raw":16,"max":20}},"rarity":"unique"},"Radiance":{"internalName":"Radiance","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":115,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"archer","intelligence":15,"defence":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"healthRegen":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":34,"raw":34,"max":49},"baseWaterDamage":{"min":12,"raw":12,"max":24},"baseFireDamage":{"min":15,"raw":15,"max":19}},"rarity":"unique"},"Umbrella Hat":{"internalName":"Umbrella Hat","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34,"intelligence":25},"powderSlots":2,"identifications":{"rawDexterity":-4,"spellDamage":{"min":2,"raw":5,"max":7},"manaRegen":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-16,"raw":-12,"max":-8},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":200,"baseThunderDefence":-20},"rarity":"rare"},"The Berserker's Helm":{"internalName":"The Berserker's Helm","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34,"strength":25},"powderSlots":1,"lore":"Worn by a terrible berserker during his fanatical rampage through the land, his rage permeates this horned blackiron helmet.","identifications":{"rawStrength":9,"rawIntelligence":-3,"mainAttackDamage":{"min":6,"raw":21,"max":27},"healthRegenRaw":{"min":-17,"raw":-13,"max":-9},"lifeSteal":{"min":8,"raw":26,"max":34},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":310},"rarity":"legendary"},"Lullaby":{"internalName":"Lullaby","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":64,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"mage","intelligence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"healthRegen":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"healingEfficiency":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":15,"raw":15,"max":21},"baseWaterDamage":{"min":11,"raw":11,"max":15}},"rarity":"unique"},"Windowframe":{"internalName":"Windowframe","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":148,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"shaman","strength":12,"dexterity":12},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":-6,"mainAttackDamage":{"min":4,"raw":14,"max":18},"spellDamage":{"min":-18,"raw":-14,"max":-10},"earthDamage":{"min":3,"raw":9,"max":12},"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":11,"raw":11,"max":13},"baseEarthDamage":{"min":27,"raw":27,"max":33},"baseThunderDamage":{"min":27,"raw":27,"max":33}},"rarity":"unique"},"Crocodile":{"internalName":"Crocodile","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":34,"intelligence":5},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"identifications":{"rawIntelligence":2,"rawSpellDamage":30,"walkSpeed":-6},"base":{"baseHealth":220,"baseWaterDefence":10},"rarity":"unique"},"Sandstorm":{"internalName":"Sandstorm","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":128,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"warrior","agility":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":5,"poison":{"min":15,"raw":50,"max":65},"thorns":{"min":2,"raw":7,"max":9},"rawAttackSpeed":1,"walkSpeed":{"min":5,"raw":15,"max":20},"earthDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseDamage":{"min":14,"raw":14,"max":29},"baseAirDamage":{"min":20,"raw":20,"max":39}},"rarity":"rare"},"Crystal-Blend Pendant":{"internalName":"Crystal-Blend Pendant","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":34,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"spellDamage":-5,"rawSpellDamage":-15,"manaRegen":6},"rarity":"rare"},"Lust":{"internalName":"Lust","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":120,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"warrior","intelligence":15,"defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"waterDefence":{"min":3,"raw":10,"max":13},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseWaterDamage":{"min":10,"raw":10,"max":70},"baseFireDamage":{"min":15,"raw":15,"max":65}},"rarity":"rare"},"Upgraded Lullaby":{"internalName":"Upgraded Lullaby","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":89,"dropRestriction":"never","identified":true,"requirements":{"level":34,"classRequirement":"mage","intelligence":10},"powderSlots":3,"lore":"The inscribed lyrics have been scratched out and replaced with a barely-legible insult.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"mainAttackDamage":-7,"spellDamage":10,"healthRegen":8,"healingEfficiency":5,"walkSpeed":-6,"waterDamage":6},"base":{"baseDamage":{"min":23,"raw":23,"max":29},"baseWaterDamage":{"min":15,"raw":15,"max":19}},"rarity":"unique"},"Valiant":{"internalName":"Valiant","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":68,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"mage","strength":20,"agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":3,"raw":9,"max":12},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":10,"raw":10,"max":13},"baseEarthDamage":{"min":18,"raw":18,"max":21},"baseAirDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Ridge":{"internalName":"Ridge","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":2,"identifications":{"elementalDamage":{"min":4,"raw":12,"max":16},"elementalDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":100,"baseEarthDefence":20,"baseThunderDefence":20,"baseWaterDefence":20,"baseFireDefence":20,"baseAirDefence":20},"rarity":"rare"},"Wild Charge":{"internalName":"Wild Charge","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":113,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"warrior","dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":5,"raw":17,"max":22},"healthRegen":{"min":-13,"raw":-10,"max":-7},"sprint":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":22},"baseThunderDamage":{"min":7,"raw":7,"max":29}},"rarity":"unique"},"Glitz":{"internalName":"Glitz","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":34},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"lootBonus":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Silverfish Helm":{"internalName":"Silverfish Helm","type":"armour","armourType":"helmet","armourColor":"rgb(135,135,135)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":34,"agility":35},"powderSlots":2,"identifications":{"poison":{"min":44,"raw":145,"max":189},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":15,"baseEarthDefence":6,"baseAirDefence":12},"rarity":"set"},"Seal Breaker":{"internalName":"Seal Breaker","type":"armour","armourType":"boots","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":34},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"spellDamage":25,"xpBonus":15},"base":{"baseHealth":335},"rarity":"legendary"},"Plankton":{"internalName":"Plankton","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34,"intelligence":25},"identifications":{"rawIntelligence":4,"spellDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":5,"raw":15,"max":20},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":210,"baseThunderDefence":-30,"baseWaterDefence":20},"rarity":"rare"},"Upgraded Radiance":{"internalName":"Upgraded Radiance","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":152,"dropRestriction":"never","identified":true,"requirements":{"level":34,"classRequirement":"archer","intelligence":15,"defence":15},"powderSlots":2,"lore":"The craftsmanship on this bow is rather poor. The paint on the \"crystals\" is chipping...","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"spellDamage":10,"healthRegen":12},"base":{"baseDamage":{"min":40,"raw":40,"max":66},"baseWaterDamage":{"min":20,"raw":20,"max":28},"baseFireDamage":{"min":18,"raw":18,"max":30}},"rarity":"unique"},"Chipped Glitz":{"internalName":"Chipped Glitz","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":34},"lore":"There are little chips and cracks all over this... was someone trying to break it down for gold?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"lootBonus":6},"base":{"baseHealth":33},"rarity":"unique"},"Rubber Rainboots":{"internalName":"Rubber Rainboots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34},"powderSlots":2,"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"waterDefence":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":225,"baseThunderDefence":10},"rarity":"unique"},"The Thief":{"internalName":"The Thief","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34},"powderSlots":1,"identifications":{"rawDexterity":1,"mainAttackDamage":{"min":-5,"raw":-4,"max":-3},"lifeSteal":{"min":6,"raw":20,"max":26},"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":1,"raw":4,"max":5},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":180},"rarity":"unique"},"Snakeroot Bow":{"internalName":"Snakeroot Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":216,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"archer","dexterity":20,"defence":20},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"200","name":"bow.thunder1"}},"identifications":{"rawDexterity":8,"spellDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-260,"raw":-200,"max":-140},"poison":{"min":131,"raw":435,"max":566},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"thunderDamage":{"min":4,"raw":12,"max":16},"fireDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":110,"raw":110,"max":140},"baseThunderDamage":{"min":50,"raw":50,"max":85},"baseFireDamage":{"min":50,"raw":50,"max":85}},"rarity":"legendary"},"Upgraded Steel Buster":{"internalName":"Upgraded Steel Buster","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":122,"dropRestriction":"never","identified":true,"requirements":{"level":34,"classRequirement":"warrior","strength":15,"defence":5},"powderSlots":2,"lore":"It is significantly heavier than usual...you can't tell if that is good or not, in this case.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":8,"walkSpeed":-12,"exploding":5,"earthDamage":6,"airDamage":-12},"base":{"baseDamage":{"min":50,"raw":50,"max":64},"baseEarthDamage":{"min":21,"raw":21,"max":28}},"rarity":"unique"},"New Golden Boots":{"internalName":"New Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":34},"powderSlots":1,"base":{"baseHealth":168},"rarity":"common"},"Enhanced Umbrella Hat":{"internalName":"Enhanced Umbrella Hat","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":34,"intelligence":25},"powderSlots":2,"lore":"The only difference you can see is that a tacky logo for Rymek Armoury has been stenciled onto the top.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawDexterity":-4,"spellDamage":22,"thunderDefence":-14,"waterDefence":6},"base":{"baseHealth":310,"baseThunderDefence":-30},"rarity":"rare"},"Saffron Arch":{"internalName":"Saffron Arch","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":131,"dropRestriction":"normal","requirements":{"level":34,"classRequirement":"archer","dexterity":8,"defence":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"mainAttackDamage":{"min":-18,"raw":-14,"max":-10},"spellDamage":{"min":2,"raw":6,"max":8},"healthRegen":{"min":2,"raw":7,"max":9},"rawHealth":{"min":48,"raw":160,"max":208},"lifeSteal":{"min":10,"raw":33,"max":43},"waterDamage":{"min":-9,"raw":-7,"max":-5}},"base":{"baseDamage":{"min":35,"raw":35,"max":52},"baseThunderDamage":{"min":10,"raw":10,"max":34},"baseFireDamage":{"min":14,"raw":14,"max":30}},"rarity":"unique"},"Bandit's Knuckle":{"internalName":"Bandit's Knuckle","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":34},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"lootBonus":{"min":1,"raw":3,"max":4},"stealing":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":-25},"rarity":"set"},"Sandy Bonemeal":{"internalName":"Sandy Bonemeal","type":"ingredient","requirements":{"level":34,"skills":["jeweling","armouring"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"earthDamage":{"min":3,"raw":3,"max":3},"airDefence":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sandshorn Skeleton","coords":[1383,100,-1997,8]},{"name":"Salt-soaked Skeleton","coords":null}]},"Scalding Sand":{"internalName":"Scalding Sand","type":"ingredient","requirements":{"level":34,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":2,"raw":2,"max":6},"rawDefence":{"min":1,"raw":1,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Bringer of Red Sands","coords":[[1290,78,-1702,12],[1163,81,-1691,12],[1151,73,-1711,12],[1104,76,-2014,7],[1123,75,-2060,7],[1160,79,-2008,7]]},{"name":"Scorchskin","coords":[934,72,-2269,12]},{"name":"Sand Golem","coords":[[1064,4,-2088,32],[1012,40,-1815,10]]},{"name":"Sand Golem","coords":[[1064,4,-2088,32],[1012,40,-1815,10]]}]},"Coyote Fang":{"internalName":"Coyote Fang","type":"ingredient","requirements":{"level":34,"skills":["jeweling"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawDexterity":{"min":1,"raw":1,"max":1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Plateau Coyote","coords":[[1289,107,-1493,8],[1223,111,-1509,8],[1135,111,-1475,8]]},{"name":"Ravenous Coyote","coords":[[1194,45,-1429,20],[1148,53,-1402,20],[1092,61,-1415,20],[1119,65,-1368,20],[1118,58,-1409,20],[1126,56,-1379,20],[1082,45,-1402,20],[1085,39,-1423,10],[1336,51,-1470,40],[1408,85,-1702,10],[1408,85,-1702,10],[1115,95,-1576,10],[1360,91,-1695,15]]},{"name":"Guard Coyote","coords":null}]},"Prized Pelt":{"internalName":"Prized Pelt","type":"ingredient","requirements":{"level":34,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"reflection":{"min":4,"raw":4,"max":8},"thorns":{"min":4,"raw":4,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ravenous Coyote","coords":[[1194,45,-1429,20],[1148,53,-1402,20],[1092,61,-1415,20],[1119,65,-1368,20],[1118,58,-1409,20],[1126,56,-1379,20],[1082,45,-1402,20],[1085,39,-1423,10],[1336,51,-1470,40],[1408,85,-1702,10],[1408,85,-1702,10],[1115,95,-1576,10],[1360,91,-1695,15]]},{"name":"Plateau Coyote","coords":[[1289,107,-1493,8],[1223,111,-1509,8],[1135,111,-1475,8]]},{"name":"Crazed Donkey","coords":[[1406,60,-1397,30],[1382,60,-1482,30],[1312,60,-1420,30],[1213,60,-1462,30],[1172,60,-1429,30],[1113,60,-1442,30],[1065,60,-1450,30],[1239,60,-1591,60],[1239,60,-1591,60],[1147,62,-1510,30],[1159,97,-1635,25],[1159,97,-1635,25],[1034,97,-1555,30],[1034,97,-1555,30]]},{"name":"Tamed Hyena","coords":[1071,84,-1651,2]}]},"Salt":{"internalName":"Salt","type":"ingredient","requirements":{"level":34,"skills":["cooking"]},"icon":{"format":"legacy","value":"353:0"},"tier":1,"consumableOnlyIDs":{"duration":120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Salt-soaked Skeleton","coords":null},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Lunar Shard":{"internalName":"Lunar Shard","type":"ingredient","requirements":{"level":34,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"manaSteal":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Interloper","coords":[1045,37,-2655,8]},{"name":"Lunatic Remnant","coords":[1045,37,-2655,8]},{"name":"Lunar Possessed","coords":[[1002,46,-2555,4],[925,35,-2590,7],[862,43,-2609,7],[1049,77,-2621,8]]},{"name":"Lunar Parasite","coords":[[941,56,-2612,1],[968,58,-2639,2],[1014,62,-2649,0],[1000,75,-2594,5],[1026,80,-2601,5],[1065,69,-2636,5]]},{"name":"Lunar Effigy","coords":[861,80,-2601,0]},{"name":"§eLunar Effigy","coords":[1004,94,-2580,0]},{"name":"§eLunar Effigy","coords":[969,87,-2469,0]}]},"Goredrinker":{"internalName":"Goredrinker","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":169,"dropRestriction":"never","requirements":{"level":33,"classRequirement":"assassin","dexterity":20,"defence":10},"powderSlots":2,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDefence":5,"healthRegen":{"min":-26,"raw":-20,"max":-14},"lifeSteal":{"min":12,"raw":40,"max":52},"xpBonus":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":20,"raw":20,"max":25},"baseThunderDamage":{"min":15,"raw":15,"max":40},"baseFireDamage":{"min":15,"raw":15,"max":20}},"rarity":"legendary"},"Diminution":{"internalName":"Diminution","type":"armour","armourType":"leggings","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":33},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"rawAgility":4,"lootBonus":15},"base":{"baseHealth":320},"rarity":"legendary"},"Black Cap":{"internalName":"Black Cap","type":"armour","armourType":"helmet","armourColor":"rgb(27,27,27)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":33,"dexterity":10},"powderSlots":1,"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":8,"raw":26,"max":34}},"base":{"baseHealth":195,"baseThunderDefence":7},"rarity":"set"},"Black Pants":{"internalName":"Black Pants","type":"armour","armourType":"leggings","armourColor":"rgb(27,27,27)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":33,"dexterity":20},"powderSlots":1,"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":220,"baseEarthDefence":-10,"baseThunderDefence":7},"rarity":"set"},"The Juggernaut":{"internalName":"The Juggernaut","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":33,"defence":20},"identifications":{"rawDefence":9,"rawHealth":{"min":23,"raw":77,"max":100},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":275,"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":-10,"baseFireDefence":10,"baseAirDefence":5},"rarity":"rare"},"Fluffy Spear":{"internalName":"Fluffy Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":82,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"warrior","defence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawDefence":8,"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":38,"raw":125,"max":163},"fireDefence":{"min":2,"raw":8,"max":10},"airDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":43,"raw":43,"max":66}},"rarity":"unique"},"Sylar":{"internalName":"Sylar","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":158,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"archer","agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawAgility":5,"rawSpellDamage":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":3,"raw":11,"max":14},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":27,"raw":27,"max":63},"baseAirDamage":{"min":9,"raw":9,"max":27}},"rarity":"rare"},"Upgraded Scalpel":{"internalName":"Upgraded Scalpel","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":168,"dropRestriction":"never","identified":true,"requirements":{"level":33,"classRequirement":"assassin","dexterity":15},"powderSlots":2,"lore":"The blade actually looks to be of good quality, unlike the other products. The only problem is the questionable stain covering most of it.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"healthRegenRaw":8,"lifeSteal":16},"base":{"baseDamage":{"min":38,"raw":38,"max":40}},"rarity":"rare"},"Carnivorous":{"internalName":"Carnivorous","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":33},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"rawMainAttackDamage":{"min":3,"raw":9,"max":12},"healthRegenRaw":{"min":1,"raw":4,"max":5},"lifeSteal":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":-8},"rarity":"rare"},"Handcuff":{"internalName":"Handcuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":33,"strength":5,"defence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":4,"rawDexterity":-2,"rawDefence":4,"mainAttackDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-5,"raw":-4,"max":-3}},"rarity":"unique"},"Lacerator":{"internalName":"Lacerator","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":104,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDexterity":7,"poison":{"min":59,"raw":195,"max":254},"lifeSteal":{"min":7,"raw":23,"max":30}},"base":{"baseDamage":{"min":17,"raw":17,"max":50}},"rarity":"unique"},"Black Boots":{"internalName":"Black Boots","type":"armour","armourType":"boots","armourColor":"rgb(27,27,27)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":33,"dexterity":13},"powderSlots":1,"identifications":{"rawDexterity":7,"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":220,"baseEarthDefence":-10,"baseThunderDefence":7},"rarity":"set"},"Desert Winds":{"internalName":"Desert Winds","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":33,"agility":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":3,"rawAirDamage":{"min":6,"raw":19,"max":25},"walkSpeed":{"min":3,"raw":9,"max":12},"earthDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseAirDefence":5},"rarity":"set"},"Snowtread Boots":{"internalName":"Snowtread Boots","type":"armour","armourType":"boots","armourColor":"rgb(242,127,165)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":33},"majorIds":{"Snowy Steps":"+Snowy Steps: Leaves a trail of snow behind you."},"powderSlots":1,"lore":"According to the tag on the heels, these boots leave a trail of snow no matter where one walks with them.","identifications":{"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":300},"rarity":"rare"},"Warsong":{"internalName":"Warsong","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":33,"strength":10,"dexterity":10},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawStrength":2,"rawDexterity":2,"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":2,"raw":6,"max":8},"manaRegen":{"min":-5,"raw":-4,"max":-3}},"base":{"baseHealth":50},"rarity":"legendary"},"Flawless Light Oak Wand":{"internalName":"Flawless Light Oak Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":45,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":16,"raw":16,"max":20}},"rarity":"common"},"Viscera Burst":{"internalName":"Viscera Burst","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":208,"requirements":{"level":33,"classRequirement":"archer","strength":15,"dexterity":20},"majorIds":{"Fallout":"+Fallout: Bomb Arrow's blast becomes giant. Damage, self-damage, and recoil are severely increased."},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"manaSteal":{"min":2,"raw":5,"max":7},"exploding":{"min":9,"raw":30,"max":39},"xpBonus":{"min":4,"raw":14,"max":18},"earthDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":75,"raw":75,"max":85},"baseEarthDamage":{"min":65,"raw":65,"max":75},"baseThunderDamage":{"min":75,"raw":75,"max":125}},"rarity":"fabled"},"Black Tunic":{"internalName":"Black Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(27,27,27)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":33,"dexterity":30},"powderSlots":2,"identifications":{"rawDexterity":7,"rawSpellDamage":{"min":13,"raw":42,"max":55},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":245,"baseEarthDefence":-10,"baseThunderDefence":7},"rarity":"set"},"Noctilucent":{"internalName":"Noctilucent","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":120,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"archer","intelligence":17,"agility":17},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":6,"raw":6,"max":10},"baseWaterDamage":{"min":15,"raw":15,"max":25},"baseAirDamage":{"min":10,"raw":10,"max":30}},"rarity":"unique"},"Flawless Light Oak Bow":{"internalName":"Flawless Light Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":93,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":41,"raw":41,"max":49}},"rarity":"common"},"Santa Boots":{"internalName":"Santa Boots","type":"armour","armourType":"boots","armourColor":"rgb(242,127,165)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":33,"quest":"Meaningful Holiday"},"powderSlots":1,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":17,"raw":55,"max":72},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":3,"raw":10,"max":13},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":275,"baseFireDefence":20},"rarity":"rare"},"Tarnhelm":{"internalName":"Tarnhelm","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33},"powderSlots":2,"identifications":{"rawStrength":9,"mainAttackDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":240,"baseEarthDefence":20,"baseWaterDefence":-20},"rarity":"rare"},"Upgraded Vartija":{"internalName":"Upgraded Vartija","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":92,"dropRestriction":"never","identified":true,"requirements":{"level":33,"classRequirement":"warrior","defence":10,"agility":10},"powderSlots":1,"lore":"The guard on the spear is smaller, but at least twice as thick. What purpose does that have?","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDefence":9,"spellDamage":-8,"rawHealth":130,"walkSpeed":12},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseFireDamage":{"min":3,"raw":3,"max":6},"baseAirDamage":{"min":3,"raw":3,"max":6}},"rarity":"unique"},"Hilltop":{"internalName":"Hilltop","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"rawMainAttackDamage":{"min":14,"raw":46,"max":60},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":210,"baseEarthDefence":15,"baseAirDefence":-7},"rarity":"unique"},"New Golden Helmet":{"internalName":"New Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33},"powderSlots":1,"base":{"baseHealth":158},"rarity":"common"},"Vartija":{"internalName":"Vartija","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":82,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"warrior","defence":10,"agility":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"478","name":"spear.multi2"}},"identifications":{"rawDefence":9,"spellDamage":{"min":-9,"raw":-7,"max":-5},"rawHealth":{"min":48,"raw":160,"max":208},"walkSpeed":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":9,"raw":9,"max":13},"baseFireDamage":{"min":2,"raw":2,"max":6},"baseAirDamage":{"min":2,"raw":2,"max":6}},"rarity":"unique"},"Chaleur":{"internalName":"Chaleur","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":146,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"warrior","defence":25},"lore":"This blackiron blade was left to sear in the desert for months on end by a fanatical berserker. It burned him alive as he cut down those who opposed him.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawIntelligence":-5,"rawDefence":7,"rawMainAttackDamage":{"min":18,"raw":59,"max":77},"rawSpellDamage":{"min":11,"raw":35,"max":46},"healthRegen":{"min":-32,"raw":-25,"max":-17},"exploding":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseFireDamage":{"min":70,"raw":70,"max":125}},"rarity":"legendary"},"Jingu Headband":{"internalName":"Jingu Headband","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33,"dexterity":10,"intelligence":10},"powderSlots":1,"identifications":{"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":11,"max":14},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":200,"baseEarthDefence":-12,"baseThunderDefence":6,"baseWaterDefence":6},"rarity":"unique"},"Dune Sandals":{"internalName":"Dune Sandals","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33,"agility":10},"powderSlots":1,"identifications":{"rawStrength":4,"walkSpeed":{"min":2,"raw":7,"max":9},"earthDamage":{"min":4,"raw":12,"max":16},"waterDamage":{"min":-13,"raw":-10,"max":-7},"airDamage":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":220,"baseEarthDefence":15,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":20},"rarity":"rare"},"Flawless Light Oak Dagger":{"internalName":"Flawless Light Oak Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":78,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":21,"raw":21,"max":29}},"rarity":"common"},"Salamander":{"internalName":"Salamander","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":57,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"mage","agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"poison":{"min":39,"raw":130,"max":169},"lifeSteal":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseDamage":{"min":6,"raw":6,"max":11},"baseThunderDamage":{"min":1,"raw":1,"max":19}},"rarity":"unique"},"Scalpel":{"internalName":"Scalpel","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"assassin","dexterity":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"healthRegenRaw":{"min":5,"raw":16,"max":21},"lifeSteal":{"min":10,"raw":32,"max":42}},"base":{"baseDamage":{"min":28,"raw":28,"max":30}},"rarity":"rare"},"Standoff":{"internalName":"Standoff","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33,"defence":25},"powderSlots":1,"identifications":{"rawDefence":5,"rawHealth":{"min":60,"raw":200,"max":260},"walkSpeed":{"min":-36,"raw":-28,"max":-20}},"base":{"baseHealth":350},"rarity":"rare"},"Drought Savior":{"internalName":"Drought Savior","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":80,"dropRestriction":"never","identified":true,"requirements":{"level":33,"classRequirement":"assassin","intelligence":15},"powderSlots":2,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"healthRegen":5,"healthRegenRaw":12,"rawHealth":35,"manaRegen":6},"base":{"baseDamage":{"min":18,"raw":18,"max":24},"baseWaterDamage":{"min":14,"raw":14,"max":22}},"rarity":"unique"},"Flawless Light Oak Spear":{"internalName":"Flawless Light Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":62,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":27,"raw":27,"max":33}},"rarity":"common"},"Flawless Light Oak Relik":{"internalName":"Flawless Light Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":90,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":35,"raw":35,"max":37}},"rarity":"common"},"Desert Cyclone":{"internalName":"Desert Cyclone","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":33,"agility":20},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawAgility":8,"rawNeutralMainAttackDamage":{"min":18,"raw":60,"max":78},"reflection":{"min":7,"raw":24,"max":31},"walkSpeed":{"min":4,"raw":12,"max":16},"xpBonus":{"min":4,"raw":12,"max":16},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":210,"baseAirDefence":15},"rarity":"rare"},"Flawless Chain Boots":{"internalName":"Flawless Chain Boots","type":"armour","armourType":"boots","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":33},"powderSlots":1,"base":{"baseHealth":155},"rarity":"common"},"Ormrod's Isolation":{"internalName":"Ormrod's Isolation","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":33,"strength":5,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":-9,"raw":-7,"max":-5},"walkSpeed":{"min":2,"raw":8,"max":10},"airDamage":{"min":1,"raw":4,"max":5}},"base":{"baseEarthDefence":10,"baseWaterDefence":-15,"baseAirDefence":5},"rarity":"rare"},"Blossom":{"internalName":"Blossom","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":108,"dropRestriction":"normal","requirements":{"level":33,"classRequirement":"mage","strength":30,"intelligence":10},"powderSlots":2,"lore":"A mystical sapling native to the shores of Mage Island has been fashioned into this simple staff. Even uprooted, you notice its continuous growth.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"331","name":"wand.earth3"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseEarthDamage":{"min":40,"raw":40,"max":65}},"rarity":"legendary"},"Enhanced Hilltop":{"internalName":"Enhanced Hilltop","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":33},"powderSlots":1,"lore":"Looks like it was hastily repainted to match the colors of the mesa. ...but you can see the original greens and browns underneath.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"mainAttackDamage":5,"rawMainAttackDamage":37,"walkSpeed":-5,"earthDefence":5},"base":{"baseHealth":350,"baseEarthDefence":18,"baseAirDefence":-10},"rarity":"unique"},"Vagabond":{"internalName":"Vagabond","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":33,"dexterity":20,"agility":10},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"identifications":{"rawDexterity":2,"rawAgility":2,"poison":90,"walkSpeed":6,"xpBonus":7},"base":{"baseHealth":160,"baseEarthDefence":-12,"baseThunderDefence":10},"rarity":"rare"},"Sprint Belt":{"internalName":"Sprint Belt","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33,"agility":33},"identifications":{"rawAgility":8,"walkSpeed":{"min":5,"raw":18,"max":23},"sprint":{"min":5,"raw":18,"max":23},"sprintRegen":{"min":5,"raw":18,"max":23},"airDamage":{"min":5,"raw":18,"max":23}},"rarity":"rare"},"Knight Boots":{"internalName":"Knight Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":33,"strength":12,"defence":12},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-6,"raw":-5,"max":-3},"healthRegen":{"min":6,"raw":20,"max":26},"earthDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":230,"baseEarthDefence":10,"baseWaterDefence":-5,"baseFireDefence":10,"baseAirDefence":-5},"rarity":"unique"},"Dried Kelp":{"internalName":"Dried Kelp","type":"ingredient","requirements":{"level":33,"skills":["scribing","cooking","alchemism"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"healthRegen":{"min":6,"raw":6,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Squid","coords":[[890,10,-2561,30],[846,20,-2641,30]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Wave Cult Initiate","coords":[-254,35,-2703,15]}]},"Illicit Hemlock":{"internalName":"Illicit Hemlock","type":"ingredient","requirements":{"level":33,"skills":["tailoring","alchemism"]},"icon":{"format":"legacy","value":"175:3"},"identifications":{"poison":{"min":35,"raw":35,"max":40},"lifeSteal":{"min":12,"raw":12,"max":16}},"tier":1,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Terracotta Chunk":{"internalName":"Terracotta Chunk","type":"ingredient","requirements":{"level":33,"skills":["armouring"]},"icon":{"format":"legacy","value":"336:0"},"identifications":{"earthDefence":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":4,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Terracotta Soldier","coords":[[1290,78,-1702,12],[1163,81,-1691,12],[1151,73,-1711,12],[1104,76,-2014,7],[1123,75,-2060,7],[1160,79,-2008,7]]},{"name":"Presocietal Stonewalker","coords":[[1137,77,-2196,7],[1448,84,-2143,8]]}]},"Dry Bone":{"internalName":"Dry Bone","type":"ingredient","requirements":{"level":33,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"352:0"},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":4000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sandshorn Skeleton","coords":[1383,100,-1997,8]},{"name":"Salt-soaked Skeleton","coords":null}]},"Illicit Tingflower":{"internalName":"Illicit Tingflower","type":"ingredient","requirements":{"level":33,"skills":["jeweling","alchemism"]},"icon":{"format":"legacy","value":"175:0"},"identifications":{"thunderDamage":{"min":2,"raw":2,"max":4},"thunderDefence":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-10,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Illicit Quince":{"internalName":"Illicit Quince","type":"ingredient","requirements":{"level":33,"skills":["woodworking","alchemism"]},"icon":{"format":"legacy","value":"38:4"},"identifications":{"rawHealth":{"min":40,"raw":40,"max":45},"healthRegen":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Illicit Whitethorn":{"internalName":"Illicit Whitethorn","type":"ingredient","requirements":{"level":33,"skills":["weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"38:3"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":3},"airDamage":{"min":4,"raw":4,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Illicit Yarrow":{"internalName":"Illicit Yarrow","type":"ingredient","requirements":{"level":33,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"38:1"},"identifications":{"rawIntelligence":{"min":1,"raw":1,"max":2},"rawSpellDamage":{"min":10,"raw":10,"max":12}},"tier":1,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Sanguine Spaulder":{"internalName":"Sanguine Spaulder","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":32,"dexterity":10,"defence":20},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawIntelligence":-3,"rawDefence":9,"spellDamage":{"min":5,"raw":17,"max":22},"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":38,"raw":125,"max":163},"lifeSteal":{"min":8,"raw":25,"max":33},"xpBonus":{"min":3,"raw":11,"max":14},"fireDamage":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":350,"baseThunderDefence":15,"baseFireDefence":25},"rarity":"legendary"},"Libella":{"internalName":"Libella","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":32},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":1,"raw":4,"max":5},"airDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Santa's Coat":{"internalName":"Santa's Coat","type":"armour","armourType":"chestplate","armourColor":"rgb(242,127,165)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":32},"powderSlots":1,"identifications":{"healthRegenRaw":{"min":5,"raw":15,"max":20},"rawHealth":{"min":12,"raw":40,"max":52},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":260},"rarity":"rare"},"Perfumed Chestplate":{"internalName":"Perfumed Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32},"powderSlots":1,"identifications":{"healingEfficiency":{"min":2,"raw":5,"max":7},"rawMaxMana":{"min":5,"raw":15,"max":20},"waterDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":195,"baseThunderDefence":-20},"rarity":"unique"},"Wybel Paw":{"internalName":"Wybel Paw","type":"weapon","weaponType":"dagger","attackSpeed":"fast","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32,"classRequirement":"assassin"},"lore":"Even reduced to just the bones, you can't help but feel bad for the poor thing this paw came from.","icon":{"format":"legacy","value":"352:0"},"identifications":{"rawAgility":5,"mainAttackDamage":-100,"spellDamage":-100,"healthRegen":-100,"walkSpeed":35},"rarity":"unique"},"Dead Sands":{"internalName":"Dead Sands","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32},"powderSlots":1,"lore":"Found in the middle of the Almuj desert, these greaves seem to slowly poison all life around them. Theorists suggest they were the handiwork of a wicked necromancer, though the truth is not known.","identifications":{"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":-45,"raw":-35,"max":-24},"rawHealth":{"min":-130,"raw":-100,"max":-70},"poison":{"min":44,"raw":145,"max":189},"lifeSteal":{"min":8,"raw":26,"max":34},"waterDefence":{"min":-26,"raw":-20,"max":-14},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":300},"rarity":"legendary"},"Alternator":{"internalName":"Alternator","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32,"dexterity":20},"lore":"Llevigar's schools of wizardry are notorious for their difficult training regimens. These leg plates, forcing users to balance spellcasting with direct combat, are often cited as the tipping point for successful wizards.","identifications":{"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"spellDamage":{"min":6,"raw":19,"max":25},"manaRegen":{"min":-16,"raw":-12,"max":-8},"manaSteal":{"min":4,"raw":12,"max":16},"lootBonus":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":250,"baseEarthDefence":-5,"baseThunderDefence":5,"baseWaterDefence":-10},"rarity":"legendary"},"Hourslip":{"internalName":"Hourslip","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"walkSpeed":30,"lootBonus":15},"base":{"baseHealth":315,"baseAirDefence":12},"rarity":"legendary"},"Misshapen Libella":{"internalName":"Misshapen Libella","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":32},"lore":"It's completely impossible to use this for its intended purpose now. It barely can fit on your finger as is.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":4,"walkSpeed":3,"airDamage":3},"base":{"baseHealth":30},"rarity":"unique"},"Shadow Spear":{"internalName":"Shadow Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":115,"dropRestriction":"never","requirements":{"level":32,"classRequirement":"warrior","dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":10,"rawAgility":4,"rawHealth":{"min":-78,"raw":-60,"max":-42},"walkSpeed":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":1,"raw":1,"max":111}},"rarity":"rare"},"Seismic Chaps":{"internalName":"Seismic Chaps","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32,"strength":15},"powderSlots":1,"identifications":{"rawStrength":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":18,"raw":59,"max":77},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDamage":{"min":5,"raw":15,"max":20},"airDamage":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":270},"rarity":"rare"},"The Chapel":{"internalName":"The Chapel","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":200,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"unique"},"Ocean Blade":{"internalName":"Ocean Blade","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":58,"dropRestriction":"normal","requirements":{"level":32,"classRequirement":"warrior","intelligence":25},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"rawDefence":-3,"spellDamage":{"min":4,"raw":12,"max":16},"rawSpellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":-13,"raw":-10,"max":-7},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":1,"raw":1,"max":20},"baseWaterDamage":{"min":15,"raw":15,"max":20}},"rarity":"unique"},"Hood of the Resistance":{"internalName":"Hood of the Resistance","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":32,"strength":15},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"identifications":{"rawStrength":4,"lootBonus":4,"stealing":3},"base":{"baseHealth":175,"baseEarthDefence":5,"baseThunderDefence":5,"baseAirDefence":-8},"rarity":"unique"},"Vitium":{"internalName":"Vitium","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":32},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"poison":{"min":15,"raw":50,"max":65},"lifeSteal":{"min":3,"raw":10,"max":13},"exploding":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":-20,"baseAirDefence":-5},"rarity":"rare"},"Used Golden Chestplate":{"internalName":"Used Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32},"powderSlots":1,"base":{"baseHealth":148},"rarity":"common"},"Stabsand":{"internalName":"StabSand","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":176,"dropRestriction":"normal","requirements":{"level":32,"classRequirement":"assassin"},"powderSlots":1,"lore":"The art of endurance fighting is a skill lost to time. However, a thief that to this day has not been caught, imbued this dagger with the very same ability.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"258","name":"dagger.air2"}},"identifications":{"rawDexterity":8,"lifeSteal":{"min":11,"raw":38,"max":49},"exploding":{"min":9,"raw":30,"max":39},"airDamage":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":10,"raw":10,"max":190},"baseAirDamage":{"min":15,"raw":15,"max":20}},"rarity":"legendary"},"Blood-Tinted Necklace":{"internalName":"Blood-Tinted Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"181","name":"necklace.fire1"}},"identifications":{"poison":60},"rarity":"unique"},"Precision":{"internalName":"Precision","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":141,"dropRestriction":"normal","requirements":{"level":32,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"exploding":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":160,"raw":160,"max":180}},"rarity":"unique"},"Dust":{"internalName":"Dust","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32},"powderSlots":1,"identifications":{"rawAgility":5,"healthRegen":{"min":-12,"raw":-9,"max":-6},"poison":{"min":32,"raw":105,"max":137},"earthDamage":{"min":1,"raw":4,"max":5},"airDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":190,"baseAirDefence":-15},"rarity":"rare"},"Scarab-Shelled Charm":{"internalName":"Scarab-Shelled Charm","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"183","name":"necklace.thunder1"}},"identifications":{"rawMainAttackDamage":13},"rarity":"unique"},"Silverfish Boots":{"internalName":"Silverfish Boots","type":"armour","armourType":"boots","armourColor":"rgb(135,135,135)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":32,"agility":30},"powderSlots":2,"identifications":{"rawAgility":13,"poison":{"min":39,"raw":130,"max":169}},"base":{"baseHealth":10,"baseEarthDefence":2,"baseAirDefence":8},"rarity":"set"},"Bandit's Ring":{"internalName":"Bandit's Ring","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":32},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"lootBonus":{"min":2,"raw":7,"max":9},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":-20},"rarity":"set"},"Marrow-Tinted Necklace":{"internalName":"Marrow-Tinted Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"176","name":"necklace.basicPearl"}},"identifications":{"lifeSteal":10},"rarity":"unique"},"Urheus":{"internalName":"Urheus","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":32,"strength":10,"defence":5},"powderSlots":1,"identifications":{"rawStrength":5,"rawDefence":3,"rawMainAttackDamage":{"min":14,"raw":48,"max":62},"healthRegen":{"min":5,"raw":15,"max":20},"airDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":200,"baseEarthDefence":10,"baseWaterDefence":-12,"baseFireDefence":8},"rarity":"unique"},"Trouble Tamer":{"internalName":"Trouble Tamer","type":"armour","armourType":"boots","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"mainAttackDamage":35,"lootBonus":15},"base":{"baseHealth":315,"baseEarthDefence":12},"rarity":"legendary"},"Webbed Glass Charm":{"internalName":"Webbed Glass Charm","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":32,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"177","name":"necklace.air1"}},"identifications":{"walkSpeed":10},"rarity":"unique"},"Fault Lines":{"internalName":"Fault Lines","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":212,"dropRestriction":"normal","requirements":{"level":32,"classRequirement":"shaman","strength":15,"defence":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawStrength":8,"rawDefence":8,"rawAgility":-10,"mainAttackDamage":{"min":5,"raw":18,"max":23},"walkSpeed":{"min":-19,"raw":-15,"max":-10},"earthDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":5,"raw":18,"max":23},"airDamage":{"min":-26,"raw":-20,"max":-14},"airDefence":{"min":-26,"raw":-20,"max":-14}},"base":{"baseEarthDamage":{"min":125,"raw":125,"max":130},"baseFireDamage":{"min":125,"raw":125,"max":130}},"rarity":"legendary"},"Scarab Husk":{"internalName":"Scarab Husk","type":"ingredient","requirements":{"level":32,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":5,"agilityRequirement":0},"droppedBy":[{"name":"Speedy Scarab","coords":null},{"name":"Scarab","coords":[[967,72,-2242,5],[967,72,-2242,5],[1090,75,-2185,5],[1122,75,-2130,5],[1190,77,-2087,5],[1200,77,-1787,5],[1047,71,-1733,5],[919,67,-1773,5]]},{"name":"Sandy Scarab","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]}]},"Snake Scale":{"internalName":"Snake Scale","type":"ingredient","requirements":{"level":32,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"435:0"},"identifications":{"reflection":{"min":3,"raw":3,"max":7},"thorns":{"min":3,"raw":3,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-5,"agilityRequirement":0},"droppedBy":[{"name":"Desert Rattler","coords":[[1474,92,-2167,30],[1009,59,-1739,15]]},{"name":"Death Worm","coords":[[1149,47,-2162,16],[1172,54,-2149,12],[1194,55,-2139,12],[1213,61,-2155,10],[1186,75,-2164,8],[1103,35,-2099,8],[1096,40,-2118,10],[1088,47,-2091,8]]}]},"Sea Salt":{"internalName":"Sea Salt","type":"ingredient","requirements":{"level":32,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"353:0"},"tier":1,"consumableOnlyIDs":{"duration":90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sturdy Crab","coords":[[-210,41,-2722,2],[-216,39,-2741,2],[-242,37,-2764,2],[-231,56,-2751,2],[-223,58,-2716,2],[-282,35,-2676,2]]},{"name":"Island Crab","coords":[[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]}]},"Gritty Rocks":{"internalName":"Gritty Rocks","type":"ingredient","requirements":{"level":32,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"rawMainAttackDamage":{"min":8,"raw":8,"max":12},"rawSpellDamage":{"min":-12,"raw":-12,"max":-8}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-28000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Gritty Zombie","coords":[1389,100,-2002,7]},{"name":"Sandshorn Skeleton","coords":[1383,100,-1997,8]},{"name":"Undead Miner","coords":[[1278,58,-1510,3],[1261,92,-1397,3],[1228,95,-1418,3],[1225,99,-1444,3],[1281,104,-1383,3],[1470,77,-1714,9],[1496,67,-1709,12],[1488,73,-1732,9],[1514,70,-1716,12],[1441,84,-1709,9],[1444,84,-1698,9],[1450,84,-1689,9],[1456,84,-1681,8]]},{"name":"Dead Prospector","coords":[[1049,34,-1369,15],[1068,31,-1302,10],[1106,31,-1280,10],[1081,34,-1281,18],[1081,35,-1281,18],[1058,34,-1256,10],[1078,43,-1242,10],[1035,46,-1251,10],[998,44,-1249,20],[1430,30,-1269,10],[1471,130,-1410,12],[1477,129,-1426,12],[1469,133,-1450,12]]},{"name":"Tumbleweed","coords":[[1109,28,-1444,45],[1333,98,-1468,30],[1165,101,-1485,20],[1124,102,-1472,20]]},{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Crawler Eye":{"internalName":"Crawler Eye","type":"ingredient","requirements":{"level":32,"skills":["alchemism"]},"icon":{"format":"legacy","value":"375:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":5},"healthRegen":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":-54,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sand Crawler","coords":[1305,80,-1918,60]},{"name":"Sand Crawler","coords":[[967,72,-2242,5],[967,72,-2242,5],[1090,75,-2185,5],[1122,75,-2130,5],[1190,77,-2087,5],[1200,77,-1787,5],[1047,71,-1733,5],[919,67,-1773,5]]}]},"Lunar Dust":{"internalName":"Lunar Dust","type":"ingredient","requirements":{"level":32,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-57,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Devote","coords":[[1023,40,-2599,14],[979,37,-2611,10],[961,46,-2511,5],[959,42,-2593,8],[994,54,-2644,5],[996,79,-2603,10],[996,79,-2603,10],[1048,77,-2621,7],[967,38,-2493,5],[967,38,-2493,5]]},{"name":"Lunatic Squid","coords":[[890,10,-2561,30],[846,20,-2641,30]]},{"name":"Lunatic Interloper","coords":[1045,37,-2655,8]},{"name":"Lunatic Remnant","coords":[1045,37,-2655,8]},{"name":"Lunar Possessed","coords":[[1002,46,-2555,4],[925,35,-2590,7],[862,43,-2609,7],[1049,77,-2621,8]]},{"name":"Lunar Parasite","coords":[[941,56,-2612,1],[968,58,-2639,2],[1014,62,-2649,0],[1000,75,-2594,5],[1026,80,-2601,5],[1065,69,-2636,5]]},{"name":"Lunar Effigy","coords":[861,80,-2601,0]},{"name":"§eLunar Effigy","coords":[1004,94,-2580,0]},{"name":"§eLunar Effigy","coords":[969,87,-2469,0]}]},"Enhanced Coalwalkers":{"internalName":"Enhanced Coalwalkers","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":31,"strength":5,"defence":10},"powderSlots":1,"lore":"Even ignoring the numerous scorches all over, these boots hardly look any better.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawStrength":3,"rawDefence":4,"rawHealth":55,"walkSpeed":-6,"exploding":6},"base":{"baseHealth":350,"baseEarthDefence":6,"baseWaterDefence":-20,"baseFireDefence":18},"rarity":"unique"},"Upgraded Melange":{"internalName":"Upgraded Melange","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":185,"dropRestriction":"never","identified":true,"requirements":{"level":31,"classRequirement":"shaman","strength":7,"dexterity":7,"intelligence":7,"defence":7,"agility":7},"powderSlots":3,"lore":"There are parts from at least six separately recognizable weapons mashed together to make this. There's no way it's effective.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"mainAttackDamage":5,"spellDamage":5,"walkSpeed":5,"xpBonus":5,"lootBonus":5,"earthDamage":5,"thunderDamage":5,"waterDamage":5,"fireDamage":5,"airDamage":5,"earthDefence":5,"thunderDefence":5,"waterDefence":5,"fireDefence":5,"airDefence":5},"base":{"baseDamage":{"min":15,"raw":15,"max":15},"baseEarthDamage":{"min":12,"raw":12,"max":18},"baseThunderDamage":{"min":10,"raw":10,"max":20},"baseWaterDamage":{"min":13,"raw":13,"max":17},"baseFireDamage":{"min":14,"raw":14,"max":16},"baseAirDamage":{"min":11,"raw":11,"max":19}},"rarity":"unique"},"Melange":{"internalName":"Melange","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":136,"dropRestriction":"normal","requirements":{"level":31,"classRequirement":"shaman","strength":7,"dexterity":7,"intelligence":7,"defence":7,"agility":7},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"410","name":"relik.multi2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9},"earthDamage":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":2,"raw":7,"max":9},"earthDefence":{"min":2,"raw":7,"max":9},"thunderDefence":{"min":2,"raw":7,"max":9},"waterDefence":{"min":2,"raw":7,"max":9},"fireDefence":{"min":2,"raw":7,"max":9},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":11,"raw":11,"max":11},"baseEarthDamage":{"min":8,"raw":8,"max":14},"baseThunderDamage":{"min":6,"raw":6,"max":16},"baseWaterDamage":{"min":9,"raw":9,"max":13},"baseFireDamage":{"min":10,"raw":10,"max":12},"baseAirDamage":{"min":7,"raw":7,"max":15}},"rarity":"unique"},"Wiggling Villager":{"internalName":"Wiggling Villager","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":57,"dropRestriction":"normal","requirements":{"level":31,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"xpBonus":{"min":3,"raw":11,"max":14},"lootBonus":{"min":6,"raw":19,"max":25}},"base":{"baseDamage":{"min":5,"raw":5,"max":50}},"rarity":"unique"},"Emerald-Tinted Charm":{"internalName":"Emerald-Tinted Charm","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":31,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"xpBonus":4,"lootBonus":8},"rarity":"unique"},"Hard Hat":{"internalName":"Hard Hat","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":31,"defence":10},"identifications":{"rawDefence":7,"rawHealth":{"min":15,"raw":50,"max":65},"reflection":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":180},"rarity":"unique"},"Flawless Chain Helmet":{"internalName":"Flawless Chain Helmet","type":"armour","armourType":"helmet","armourMaterial":"chain","dropRestriction":"never","requirements":{"level":31},"powderSlots":1,"base":{"baseHealth":135},"rarity":"common"},"Plain Glass Necklace":{"internalName":"Plain Glass Necklace","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":31,"quest":"Green Gloop"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"xpBonus":7},"base":{"baseHealth":30},"rarity":"unique"},"Coalwalkers":{"internalName":"Coalwalkers","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":31,"strength":5,"defence":10},"powderSlots":1,"identifications":{"rawStrength":3,"rawDefence":4,"rawHealth":{"min":21,"raw":70,"max":91},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"exploding":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":210,"baseEarthDefence":5,"baseWaterDefence":-15,"baseFireDefence":15},"rarity":"unique"},"Dilation":{"internalName":"Dilation","type":"armour","armourType":"leggings","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":31},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"xpBonus":15,"elementalDamage":20},"base":{"baseHealth":295,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"legendary"},"Clawctus":{"internalName":"Clawctus","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":79,"dropRestriction":"never","identified":true,"requirements":{"level":31,"classRequirement":"assassin"},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawDexterity":3,"rawMainAttackDamage":25,"thorns":8,"earthDamage":7},"base":{"baseDamage":{"min":20,"raw":20,"max":26},"baseThunderDamage":{"min":1,"raw":1,"max":16}},"rarity":"unique"},"Skeleton Bones":{"internalName":"Skeleton Bones","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":31},"powderSlots":1,"identifications":{"rawAgility":5,"healthRegen":{"min":-10,"raw":-8,"max":-6},"poison":{"min":25,"raw":82,"max":107},"lifeSteal":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":210},"rarity":"rare"},"Reversion":{"internalName":"Reversion","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":31},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"lifeSteal":32,"lootBonus":10,"stealing":5},"base":{"baseHealth":295,"baseFireDefence":10},"rarity":"legendary"},"Rusted Ring":{"internalName":"Rusted Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":31},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"thunderDefence":{"min":-4,"raw":-3,"max":-2},"waterDefence":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":28,"baseThunderDefence":-3,"baseWaterDefence":6},"rarity":"unique"},"Acidstream":{"internalName":"Acidstream","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":70,"dropRestriction":"normal","requirements":{"level":31,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"poison":{"min":93,"raw":311,"max":404},"manaSteal":{"min":1,"raw":4,"max":5},"earthDefence":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-45,"raw":-35,"max":-24}},"base":{"baseEarthDamage":{"min":12,"raw":12,"max":14},"baseWaterDamage":{"min":31,"raw":31,"max":37}},"rarity":"rare"},"Used Golden Leggings":{"internalName":"Used Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":31},"powderSlots":1,"base":{"baseHealth":137},"rarity":"common"},"Broken Harp":{"internalName":"Broken Harp","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":75,"dropRestriction":"normal","requirements":{"level":31,"classRequirement":"mage","intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"339","name":"wand.water2"}},"identifications":{"rawIntelligence":4,"spellDamage":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":-6,"raw":-5,"max":-3},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":25,"raw":25,"max":40},"baseWaterDamage":{"min":15,"raw":15,"max":20}},"rarity":"rare"},"Santa's Pants":{"internalName":"Santa's Pants","type":"armour","armourType":"leggings","armourColor":"rgb(242,127,165)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":31},"powderSlots":1,"identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":11,"raw":35,"max":46},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":5,"raw":15,"max":20},"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":250,"baseThunderDefence":-20,"baseWaterDefence":25},"rarity":"rare"},"Harmstick":{"internalName":"Harmstick","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":75,"dropRestriction":"never","requirements":{"level":31,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-186,"raw":-143,"max":-100},"exploding":{"min":8,"raw":25,"max":33},"xpBonus":{"min":4,"raw":12,"max":16},"lootBonus":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseEarthDamage":{"min":31,"raw":31,"max":43},"baseThunderDamage":{"min":31,"raw":31,"max":43},"baseWaterDamage":{"min":31,"raw":31,"max":43},"baseFireDamage":{"min":31,"raw":31,"max":43}},"rarity":"rare"},"Bugbite":{"internalName":"Bugbite","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":70,"dropRestriction":"never","requirements":{"level":31,"classRequirement":"warrior"},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawAgility":7,"poison":{"min":75,"raw":250,"max":325},"lifeSteal":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":4,"raw":14,"max":18},"airDefence":{"min":4,"raw":14,"max":18}},"base":{"baseDamage":{"min":6,"raw":6,"max":10},"baseThunderDamage":{"min":10,"raw":10,"max":20},"baseAirDamage":{"min":4,"raw":4,"max":6}},"rarity":"rare"},"Lucky Coin":{"internalName":"Lucky Coin","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":31},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"lootBonus":{"min":2,"raw":5,"max":7},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":30},"rarity":"unique"},"Devil's Scissor":{"internalName":"Devil's Scissor","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":90,"dropRestriction":"normal","requirements":{"level":31,"classRequirement":"assassin","dexterity":10,"defence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"267","name":"dagger.thunder2"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"lifeSteal":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":16,"raw":16,"max":24},"baseThunderDamage":{"min":16,"raw":16,"max":24},"baseFireDamage":{"min":16,"raw":16,"max":24}},"rarity":"unique"},"Red Shale":{"internalName":"Red Shale","type":"ingredient","requirements":{"level":31,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"healthRegen":{"min":8,"raw":8,"max":10},"rawDefence":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-39000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Withered Quasinobility","coords":[[1014,71,-2100,50],[1139,76,-1938,50],[1020,71,-1780,50]]},{"name":"Limestone Machination","coords":[[1330,77,-1960,22],[1340,83,-2110,50]]},{"name":"Diurnal Canyon Swooper","coords":[[1425,30,-1425,20],[1438,30,-1467,20],[1374,30,-1519,25],[1330,30,-1540,20],[1190,30,-1594,25],[1103,30,-1538,20],[1054,30,-1515,20],[1101,30,-1308,45]]}]},"Dead Naval Shard":{"internalName":"Dead Naval Shard","type":"ingredient","requirements":{"level":31,"skills":["jeweling"]},"icon":{"format":"legacy","value":"296:0"},"identifications":{"spellDamage":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ocean Waker","coords":[-254,35,-2703,15]},{"name":"Wave Raiser","coords":[-251,34,-2721,1]}]},"Crawler Web":{"internalName":"Crawler Web","type":"ingredient","requirements":{"level":31,"skills":["tailoring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"rawDefence":{"min":-2,"raw":-2,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":5000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sand Crawler","coords":[1305,80,-1918,60]},{"name":"Sand Crawler","coords":[[967,72,-2242,5],[967,72,-2242,5],[1090,75,-2185,5],[1122,75,-2130,5],[1190,77,-2087,5],[1200,77,-1787,5],[1047,71,-1733,5],[919,67,-1773,5]]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Glittering Silt":{"internalName":"Glittering Silt","type":"ingredient","requirements":{"level":31,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"stealing":{"min":3,"raw":3,"max":5},"lootBonus":{"min":3,"raw":3,"max":5}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hangry Seagull","coords":[[757,39,-2438,15],[659,41,-2504,15],[580,42,-2391,15],[432,40,-2608,10],[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]},{"name":"Cursed Pirate","coords":[919,40,-2398,2]},{"name":"Sturdy Crab","coords":[[-210,41,-2722,2],[-216,39,-2741,2],[-242,37,-2764,2],[-231,56,-2751,2],[-223,58,-2716,2],[-282,35,-2676,2]]},{"name":"Island Crab","coords":[[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]}]},"Spark of the Oasis":{"internalName":"Spark of the Oasis","type":"ingredient","requirements":{"level":31,"skills":["woodworking","alchemism"]},"icon":{"format":"legacy","value":"6:4"},"identifications":{"rawSpellDamage":{"min":32,"raw":32,"max":32},"rawMainAttackDamage":{"min":28,"raw":28,"max":28}},"tier":3,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":8,"intelligenceRequirement":8,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Oasis Leech","coords":[[880,30,-2123,10],[981,58,-1686,6]]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Gold Bar":{"internalName":"Gold Bar","type":"ingredient","requirements":{"level":31,"skills":["jeweling"]},"icon":{"format":"legacy","value":"266:0"},"identifications":{"lootBonus":{"min":1,"raw":1,"max":2},"mainAttackDamage":{"min":-4,"raw":-4,"max":-3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corkus Bandit","coords":[[1431,74,-1673,7],[1438,74,-1666,7]]},{"name":"Emerald Knives Bandit","coords":[[1431,74,-1673,7],[1438,74,-1666,7]]},{"name":"Undead Miner","coords":[[1278,58,-1510,3],[1261,92,-1397,3],[1228,95,-1418,3],[1225,99,-1444,3],[1281,104,-1383,3],[1470,77,-1714,9],[1496,67,-1709,12],[1488,73,-1732,9],[1514,70,-1716,12],[1441,84,-1709,9],[1444,84,-1698,9],[1450,84,-1689,9],[1456,84,-1681,8]]},{"name":"Dead Prospector","coords":[[1049,34,-1369,15],[1068,31,-1302,10],[1106,31,-1280,10],[1081,34,-1281,18],[1081,35,-1281,18],[1058,34,-1256,10],[1078,43,-1242,10],[1035,46,-1251,10],[998,44,-1249,20],[1430,30,-1269,10],[1471,130,-1410,12],[1477,129,-1426,12],[1469,133,-1450,12]]},{"name":"Dead Cowboy","coords":[[1253,9,-1501,3],[1218,12,-1506,3],[1202,12,-1515,3],[1171,10,-1525,3]]},{"name":"Tribal Exile","coords":[1488,113,-1513,7]},{"name":"Tribal Exile","coords":[1488,113,-1513,7]},{"name":"Tumbleweed","coords":[[1109,28,-1444,45],[1333,98,-1468,30],[1165,101,-1485,20],[1124,102,-1472,20]]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Mud":{"internalName":"Mud","type":"armour","armourType":"boots","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":31,"strength":15},"powderSlots":1,"lore":"\"Some pigmen snuffle through dirt for things to eat. We dig up that soil to plant our crops in; it's always full of life.\" -Thomas, Ravine Village Resident","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"identifications":{"rawStrength":6,"mainAttackDamage":40,"thorns":5,"walkSpeed":-10,"knockback":25},"base":{"baseHealth":350,"baseEarthDefence":20},"rarity":"legendary"},"Slainte":{"internalName":"Slainte","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"xpBonus":10,"lootBonus":5},"base":{"baseHealth":100},"rarity":"rare"},"Secondsaver":{"internalName":"Secondsaver","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"mainAttackDamage":-25,"rawAttackSpeed":1,"xpBonus":15},"base":{"baseHealth":270},"rarity":"legendary"},"Enhanced Panorama":{"internalName":"Enhanced Panorama","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":30,"strength":6,"dexterity":6,"intelligence":6,"defence":6,"agility":6},"lore":"They added stilts to the leggings, so that they could \"live up to the name.\" The fact you can barely stand in them is neatly avoided when you ask.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"earthDamage":4,"thunderDamage":4,"waterDamage":4,"fireDamage":4,"airDamage":4,"earthDefence":4,"thunderDefence":4,"waterDefence":4,"fireDefence":4,"airDefence":4},"base":{"baseHealth":255},"rarity":"unique"},"Zombified Pants":{"internalName":"Zombified Pants","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":30},"powderSlots":1,"identifications":{"healthRegen":{"min":4,"raw":14,"max":18},"rawHealth":{"min":15,"raw":50,"max":65},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":182,"baseThunderDefence":-3,"baseFireDefence":-3,"baseAirDefence":-3},"rarity":"unique"},"Thunder Relic Helmet":{"internalName":"Thunder Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"dexterity":21},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"rawDexterity":5,"thunderDamage":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":190,"baseThunderDefence":6},"rarity":"set"},"Nemract's Rage":{"internalName":"Nemract's Rage","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":139,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"archer","intelligence":25},"powderSlots":2,"lore":"A year-long monsoon soaked this Nemract-made bow so much, that it has harnessed the very essence of water.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"204","name":"bow.water2"}},"identifications":{"spellDamage":{"min":7,"raw":23,"max":30},"manaRegen":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseDamage":{"min":15,"raw":15,"max":30},"baseWaterDamage":{"min":30,"raw":30,"max":60}},"rarity":"legendary"},"Panorama":{"internalName":"Panorama","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":30,"strength":6,"dexterity":6,"intelligence":6,"defence":6,"agility":6},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"earthDamage":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":2,"raw":5,"max":7},"fireDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":2,"raw":5,"max":7},"waterDefence":{"min":2,"raw":5,"max":7},"fireDefence":{"min":2,"raw":5,"max":7},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":150},"rarity":"unique"},"Law of the Jungle":{"internalName":"Law of the Jungle","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":30,"strength":12},"lore":"An uncountably old relic of Time Valley which has changed owners only through death, there is an inscription carved on it: '⒠⒜⒯ ⒪⒭ ⒝⒠ ⒠⒜⒯⒠⒩'","dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":3,"lifeSteal":{"min":6,"raw":19,"max":25},"xpBonus":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":-80},"rarity":"legendary"},"Used Wolf Paw":{"internalName":"Used Wolf Paw","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":30,"strength":8,"agility":8},"lore":"It looks more like a dog paw to you, but you don't feel like risking your life arguing with the merchant.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"mainAttackDamage":3,"walkSpeed":3,"earthDamage":3,"airDamage":3},"base":{"baseHealth":31,"baseEarthDefence":6,"baseAirDefence":6},"rarity":"unique"},"Wolf Paw":{"internalName":"Wolf Paw","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":30,"strength":8,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"mainAttackDamage":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":1,"raw":4,"max":5},"earthDamage":{"min":1,"raw":4,"max":5},"airDamage":{"min":1,"raw":4,"max":5}},"base":{"baseEarthDefence":5,"baseAirDefence":5},"rarity":"unique"},"Flawless Stone Wand":{"internalName":"Flawless Stone Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":41,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":24,"raw":24,"max":31}},"rarity":"common"},"Streak":{"internalName":"Streak","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":30,"dexterity":10},"powderSlots":1,"identifications":{"rawDexterity":5,"rawHealth":{"min":-39,"raw":-30,"max":-21},"reflection":{"min":1,"raw":3,"max":4},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":175,"baseEarthDefence":-10,"baseThunderDefence":10},"rarity":"unique"},"Haros' Oar":{"internalName":"Haros' Oar","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":95,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":30,"classRequirement":"mage","intelligence":15},"powderSlots":2,"lore":"The weathered oar of Haros, the outcast ferryman of Charon's Forsaken Legion. Magical implements have been jury-rigged onto the silver pole, glowing dull out of his bony grasp.","dropMeta":{"name":"Rotten Passage","type":"altar","coordinates":[321,32,-2035]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.thunder2"}},"identifications":{"rawDexterity":7,"spellDamage":{"min":5,"raw":15,"max":20},"poison":{"min":23,"raw":75,"max":98},"manaSteal":{"min":2,"raw":8,"max":10},"xpBonus":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":25,"raw":25,"max":37},"baseThunderDamage":{"min":12,"raw":12,"max":18}},"rarity":"legendary"},"Red Candle":{"internalName":"Red Candle","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":82,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"mage","defence":15},"powderSlots":2,"lore":"The flickering flame atop this simple wand is a marvel of magic. It always burns at a comfortable heat, cannot scorch skin even if touched, and never can be snuffed out under any circumstance.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":7,"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":5,"raw":15,"max":20},"rawHealth":{"min":30,"raw":100,"max":130},"lifeSteal":{"min":9,"raw":31,"max":40}},"base":{"baseFireDamage":{"min":30,"raw":30,"max":50}},"rarity":"legendary"},"Practice":{"internalName":"Practice","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawMainAttackDamage":16},"rarity":"rare"},"Desert Fossil":{"internalName":"Desert Fossil","type":"ingredient","requirements":{"level":30,"skills":["jeweling"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawDefence":{"min":2,"raw":2,"max":2},"rawAgility":{"min":2,"raw":2,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":10},"droppedBy":[{"name":"Sandy Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Sloughing Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Salty Sandpile","coords":[1305,80,-1918,60]},{"name":"Sandy Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]}]},"Ablution":{"internalName":"Ablution","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":103,"dropRestriction":"never","identified":true,"requirements":{"level":30,"classRequirement":"shaman","intelligence":12},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawIntelligence":6,"manaRegen":6,"thunderDamage":-10,"waterDamage":10,"thunderDefence":-10,"waterDefence":10},"base":{"baseWaterDamage":{"min":40,"raw":40,"max":60}},"rarity":"unique"},"Longevity":{"internalName":"Longevity","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"healthRegenRaw":15},"rarity":"rare"},"Field":{"internalName":"Field","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"lore":"\"After the Nivla forest fire, I'm glad the corrupteds haven't thought to try and burn the Detlas Suburbs.\" -Sergeant Klafson, Detlas Legion","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"156","name":"ring.multi1"}},"identifications":{"earthDamage":9,"thunderDamage":8,"waterDamage":5,"fireDamage":6,"airDamage":7},"base":{"baseEarthDefence":6,"baseThunderDefence":2,"baseWaterDefence":10,"baseFireDefence":8,"baseAirDefence":4},"rarity":"legendary"},"Giant's Kneecap":{"internalName":"Giant's Kneecap","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":30,"strength":18,"defence":10},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawStrength":6,"mainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":-13,"raw":-10,"max":-7},"rawHealth":{"min":30,"raw":100,"max":130},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":425,"baseEarthDefence":20,"baseFireDefence":15},"rarity":"rare"},"Relic Helmet":{"internalName":"Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"strength":7,"dexterity":7,"intelligence":7,"defence":7,"agility":7},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"elementalDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":215,"baseEarthDefence":8,"baseThunderDefence":8,"baseWaterDefence":8,"baseFireDefence":8,"baseAirDefence":8},"rarity":"set"},"Flawless Stone Spear":{"internalName":"Flawless Stone Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":54,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":55,"raw":55,"max":76}},"rarity":"common"},"Vindicator":{"internalName":"Vindicator","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":30,"quest":"The Mercenary"},"majorIds":{"Magnet":"+Magnet: Pulls items dropped by mobs towards you."},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":50},"rarity":"fabled"},"White":{"internalName":"White","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"airDamage":{"min":2,"raw":7,"max":9},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseAirDefence":5},"rarity":"rare"},"Santa Earmuffs":{"internalName":"Santa Earmuffs","type":"armour","armourType":"helmet","armourColor":"rgb(250,92,92)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":30},"majorIds":{"Festive Spirit":"+Festive Spirit: Plays wintery tunes."},"powderSlots":1,"identifications":{"healthRegen":30,"rawHealth":25,"xpBonus":15,"lootBonus":15,"waterDefence":10},"base":{"baseHealth":230},"rarity":"rare"},"Venom":{"internalName":"Venom","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":96,"dropRestriction":"never","identified":true,"requirements":{"level":30,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":3,"healthRegen":-12,"healthRegenRaw":14,"poison":160,"thorns":5},"base":{"baseDamage":{"min":28,"raw":28,"max":40},"baseFireDamage":{"min":20,"raw":20,"max":40}},"rarity":"unique"},"Flawless Stone Dagger":{"internalName":"Flawless Stone Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":67,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":30,"raw":30,"max":35}},"rarity":"common"},"Ba'al's Betrayal":{"internalName":"Ba'al's Betrayal","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":4,"lifeSteal":{"min":7,"raw":23,"max":30},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":-45},"rarity":"rare"},"Intuition":{"internalName":"Intuition","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":30},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"rawSpellDamage":12},"rarity":"rare"},"Melted Ruby":{"internalName":"Melted Ruby","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":56,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"mage","defence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"spellDamage":{"min":3,"raw":9,"max":12},"rawHealth":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":12,"raw":12,"max":18},"baseFireDamage":{"min":10,"raw":10,"max":14}},"rarity":"unique"},"Fire Relic Helmet":{"internalName":"Fire Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"defence":21},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"rawDefence":5,"fireDamage":{"min":2,"raw":8,"max":10},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":245,"baseFireDefence":10},"rarity":"set"},"Hammer of the Blacksmith":{"internalName":"Hammer of the Blacksmith","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":96,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"warrior","strength":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":7,"raw":22,"max":29},"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"spellDamage":{"min":-19,"raw":-15,"max":-10},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseDamage":{"min":23,"raw":23,"max":46},"baseEarthDamage":{"min":126,"raw":126,"max":183}},"rarity":"rare"},"The Head Ripper":{"internalName":"The Head Ripper","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":68,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"warrior","strength":5,"agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseEarthDamage":{"min":10,"raw":10,"max":15},"baseAirDamage":{"min":15,"raw":15,"max":25}},"rarity":"unique"},"Life Charge":{"internalName":"Life Charge","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":30},"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":2,"raw":7,"max":9},"manaRegen":-1},"base":{"baseHealth":80},"rarity":"unique"},"Air Relic Helmet":{"internalName":"Air Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"agility":21},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"rawAgility":5,"airDamage":{"min":3,"raw":9,"max":12},"airDefence":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":205,"baseAirDefence":10},"rarity":"set"},"Overreach":{"internalName":"Overreach","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":97,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"warrior","agility":25},"majorIds":{"Overwhelm":"+Overwhelm: Bash will hit +2 times."},"powderSlots":2,"lore":"Quick, over there!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawHealth":{"min":-195,"raw":-150,"max":-105},"walkSpeed":{"min":6,"raw":20,"max":26},"rawElementalMainAttackDamage":{"min":5,"raw":15,"max":20},"rawEarthSpellDamage":{"min":18,"raw":59,"max":77},"thunderDamage":{"min":-52,"raw":-40,"max":-28}},"base":{"baseDamage":{"min":5,"raw":5,"max":15},"baseAirDamage":{"min":1,"raw":1,"max":24}},"rarity":"fabled"},"Earth Relic Helmet":{"internalName":"Earth Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"strength":21},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"rawStrength":5,"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":212,"baseEarthDefence":8},"rarity":"set"},"Adigard's Snowshoes":{"internalName":"Adigard's Snowshoes","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":30},"identifications":{"rawAgility":5,"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":1,"raw":4,"max":5},"rawMaxMana":{"min":8,"raw":25,"max":33},"xpBonus":{"min":4,"raw":12,"max":16},"thunderDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":200,"baseWaterDefence":15,"baseFireDefence":-5},"rarity":"rare"},"Blazing Ruin":{"internalName":"Blazing Ruin","type":"weapon","weaponType":"dagger","attackSpeed":"super_slow","averageDps":143,"dropRestriction":"dungeon","requirements":{"level":30,"classRequirement":"assassin","defence":45},"lore":"One who forsook all others in pursuit of their own gain forced an extension of their own will into existence. This culmination of that will consumes all it touches.","dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"rawDefence":10,"lifeSteal":{"min":-39,"raw":-30,"max":-21},"exploding":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":5,"max":7},"fireDamage":{"min":9,"raw":31,"max":40},"waterDefence":{"min":-58,"raw":-45,"max":-31}},"base":{"baseFireDamage":{"min":240,"raw":240,"max":320}},"rarity":"legendary"},"Santa Hat":{"internalName":"Santa Hat","type":"armour","armourType":"helmet","armourColor":"rgb(242,127,165)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":30,"quest":"Craftmas Chaos"},"powderSlots":1,"identifications":{"healthRegen":{"min":9,"raw":30,"max":39},"rawHealth":{"min":8,"raw":25,"max":33},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":5,"raw":15,"max":20},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":230},"rarity":"rare"},"Takan's Treachery":{"internalName":"Takan's Treachery","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":4,"lifeSteal":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":-45},"rarity":"rare"},"Flawless Stone Bow":{"internalName":"Flawless Stone Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":81,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":90,"raw":90,"max":106}},"rarity":"common"},"Used Golden Boots":{"internalName":"Used Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":30},"powderSlots":1,"base":{"baseHealth":127},"rarity":"common"},"Sky Glaze":{"internalName":"Sky Glaze","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":112,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"shaman","intelligence":10,"agility":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"395","name":"relik.air2"}},"identifications":{"rawDexterity":-10,"spellDamage":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":2,"raw":5,"max":7},"lootBonus":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":25,"raw":25,"max":25},"baseWaterDamage":{"min":20,"raw":20,"max":30},"baseAirDamage":{"min":15,"raw":15,"max":35}},"rarity":"unique"},"Red":{"internalName":"Red","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawHealth":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":25,"baseFireDefence":4},"rarity":"unique"},"Water Relic Helmet":{"internalName":"Water Relic Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":30,"intelligence":21},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[1328,80,-2084,120]},"identifications":{"rawIntelligence":5,"waterDamage":{"min":2,"raw":6,"max":8},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":185,"baseWaterDefence":12},"rarity":"set"},"Rusted Cog":{"internalName":"Rusted Cog","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":30},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"thunderDamage":{"min":3,"raw":9,"max":12},"waterDamage":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":-35,"baseThunderDefence":-10,"baseWaterDefence":-10},"rarity":"rare"},"Flawless Stone Relik":{"internalName":"Flawless Stone Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":82,"dropRestriction":"normal","requirements":{"level":30,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":51,"raw":51,"max":59}},"rarity":"common"},"Coagulated Soulmass":{"internalName":"Coagulated Soulmass","type":"ingredient","requirements":{"level":30,"skills":["scribing"]},"icon":{"format":"skin","value":"1ea6f932b45fdf3b693d9e44bd05bca364eb5b9aff497226fdb52abb2436422"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":25,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Soul Corrupter","coords":[[232,66,-1347,1],[297,48,-1197,1],[299,58,-1242,1]]}]},"Oceanic Sand":{"internalName":"Oceanic Sand","type":"ingredient","requirements":{"level":30,"skills":["jeweling"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"waterDefence":{"min":3,"raw":3,"max":4},"earthDefence":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":4,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wynnic Sailor","coords":[629,39,-2680,0]},{"name":"Island Crab","coords":[[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]}]},"Soft Sand":{"internalName":"Soft Sand","type":"ingredient","requirements":{"level":30,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"12:0"},"identifications":{"mainAttackDamage":{"min":1,"raw":1,"max":1},"walkSpeed":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sandy Scarab Hiding In Sand","coords":null},{"name":"Sandy Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Shifting Sandpile","coords":[1305,80,-1918,60]},{"name":"Sloughing Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Salty Sandpile","coords":[1305,80,-1918,60]},{"name":"Sandy Sandpile","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]}]},"Scoria Pollen":{"internalName":"Scoria Pollen","type":"ingredient","requirements":{"level":30,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"rawDexterity":{"min":2,"raw":2,"max":3},"rawFireDamage":{"min":21,"raw":21,"max":26}},"tier":2,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Powdery Bone":{"internalName":"Powdery Bone","type":"ingredient","requirements":{"level":30,"skills":["scribing"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"walkSpeed":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-75,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Haros","coords":false}]},"Chaotic Embers":{"internalName":"Chaotic Embers","type":"ingredient","requirements":{"level":30,"skills":["tailoring"]},"icon":{"format":"legacy","value":"385:0"},"identifications":{"fireDamage":{"min":9,"raw":9,"max":10},"fireDefence":{"min":-10,"raw":-10,"max":-9}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-55000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Hellblaze God","coords":[251,65,-1279,35]}]},"Fiery Essence":{"internalName":"Fiery Essence","type":"ingredient","requirements":{"level":30,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":12,"raw":12,"max":16}},"tier":3,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hellblaze God","coords":[251,65,-1279,35]}]},"Haros' Broken Badge":{"internalName":"Haros' Broken Badge","type":"ingredient","requirements":{"level":30,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"spellDamage":{"min":1,"raw":1,"max":3},"rawDexterity":{"min":1,"raw":1,"max":2}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-82000,"strengthRequirement":0,"dexterityRequirement":9,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Haros","coords":false}]},"Router's Shield":{"internalName":"Router's Shield","type":"ingredient","requirements":{"level":30,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"273:36"},"identifications":{"rawDefence":{"min":5,"raw":5,"max":6},"rawHealth":{"min":65,"raw":65,"max":80}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":7,"agilityRequirement":0},"droppedBy":[{"name":"Haros","coords":false}]},"Mashed Insect":{"internalName":"Mashed Insect","type":"ingredient","requirements":{"level":30,"skills":["cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"healthRegen":{"min":1,"raw":1,"max":2},"healthRegenRaw":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Scarab","coords":[[967,72,-2242,5],[967,72,-2242,5],[1090,75,-2185,5],[1122,75,-2130,5],[1190,77,-2087,5],[1200,77,-1787,5],[1047,71,-1733,5],[919,67,-1773,5]]},{"name":"River Locust Swarm","coords":[[1221,77,-2013,6],[1228,77,-1948,6],[1215,77,-1779,6],[1229,77,-1801,6],[1267,77,-1719,6],[1259,77,-1821,6],[1273,77,-1806,6],[1266,77,-1788,6],[1256,77,-1903,6],[1263,77,-2030,6],[1249,77,-2113,6]]},{"name":"Speedy Scarab","coords":null},{"name":"Sandy Scarab","coords":[[1001,67,-1725,40],[1303,76,-1772,50]]},{"name":"Giant Ant Larva","coords":null},{"name":"Giant Spearer Mantis","coords":null},{"name":"Pyreant Larva","coords":null},{"name":"Giant Ant Worker","coords":null},{"name":"Cave Crawler","coords":null},{"name":"Beach Hopper","coords":[716,39,-2472,4]},{"name":"Stirge","coords":[[-1927,57,-5294,5],[-2150,62,-5330,5],[-1744,55,-5138,5],[-1521,49,-5183,5],[-1456,46,-5333,5]]},{"name":"Tree Cicada","coords":null},{"name":"Pyreant Soldier","coords":[[1225,10,-5300,5],[1209,11,-5313,5],[1207,13,-5296,5],[1207,14,-5323,5],[1212,18,-5334,5],[1244,10,-5300,5],[1254,11,-5299,5],[1276,10,-5290,5],[1211,27,-5288,5]]},{"name":"Mushroom Mite","coords":[[-1136,11,-5084,20],[-1136,11,-5084,20],[-1136,11,-5084,20],[-1136,11,-5084,20]]},{"name":"Pyreant Worker","coords":[[1225,10,-5300,5],[1209,11,-5313,5],[1207,13,-5296,5],[1207,14,-5323,5],[1212,18,-5334,5],[1244,10,-5300,5],[1254,11,-5299,5],[1276,10,-5290,5],[1211,27,-5288,5]]},{"name":"Giant Ant Soldier","coords":null},{"name":"Ledant Queen","coords":[-1219,9,-4862,0]},{"name":"Giant Prayer Mantis","coords":null},{"name":"Aquifer Silkworm","coords":[-1743,20,-5468,8]},{"name":"Coast Lobster","coords":[615,34,-2190,4]},{"name":"Desert Crawler","coords":[[1187,54,-2140,5],[1110,37,-2104,8],[968,53,-1705,8],[968,53,-1705,8],[967,57,-1678,5],[976,55,-1734,8],[985,54,-1777,16],[985,54,-1777,16],[985,54,-1777,16],[985,54,-1777,16]]},{"name":"Crystallized Scarab","coords":[1016,16,-2047,2]}]},"Cracked Skin":{"internalName":"Cracked Skin","type":"ingredient","requirements":{"level":30,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"320:0"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":2},"airDefence":{"min":-8,"raw":-8,"max":-4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-28000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dry Zombie","coords":[1305,80,-1918,60]},{"name":"Desert Rattler","coords":[[1474,92,-2167,30],[1009,59,-1739,15]]},{"name":"Dead Cowboy","coords":[[1253,9,-1501,3],[1218,12,-1506,3],[1202,12,-1515,3],[1171,10,-1525,3]]},{"name":"Scorched Zombie","coords":[[1037,84,-1589,5],[1169,93,-1608,5],[1349,88,-1677,5],[1446,91,-1558,5],[1361,152,-1136,5],[1472,125,-1234,5],[1501,143,-1329,5],[1467,94,-1456,5],[1154,31,-1543,5],[1298,31,-1415,5],[1430,31,-1518,5],[1181,31,-1563,5],[1034,39,-1432,5],[1182,31,-1392,5]]},{"name":"Dead Prospector","coords":[[1049,34,-1369,15],[1068,31,-1302,10],[1106,31,-1280,10],[1081,34,-1281,18],[1081,35,-1281,18],[1058,34,-1256,10],[1078,43,-1242,10],[1035,46,-1251,10],[998,44,-1249,20],[1430,30,-1269,10],[1471,130,-1410,12],[1477,129,-1426,12],[1469,133,-1450,12]]},{"name":"Wayward Vagabond","coords":[[1320,76,-1964,46],[1342,82,-2130,90]]}]},"Carp Oil 1":{"internalName":"Refined Carp Oil 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilCarp"}},"tier":1},"Carp Oil 3":{"internalName":"Refined Carp Oil 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilCarp"}},"tier":3},"Malt String 1":{"internalName":"Refined Malt String 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMalt"}},"tier":1},"Malt String 3":{"internalName":"Refined Malt String 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMalt"}},"tier":3},"Carp Meat 3":{"internalName":"Refined Carp Meat 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatCarp"}},"tier":3},"Sandstone Ingot 3":{"internalName":"Refined Sandstone Ingot 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"54","name":"profession.ingotSandstone"}},"tier":3},"Malt Grains 3":{"internalName":"Refined Malt Grains 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMalt"}},"tier":3},"Sandstone Ingot 2":{"internalName":"Refined Sandstone Ingot 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"54","name":"profession.ingotSandstone"}},"tier":2},"Acacia Paper 3":{"internalName":"Refined Acacia Paper 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAcacia"}},"tier":3},"Malt Grains 2":{"internalName":"Refined Malt Grains 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMalt"}},"tier":2},"Carp Meat 1":{"internalName":"Refined Carp Meat 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatCarp"}},"tier":1},"Acacia Paper 2":{"internalName":"Refined Acacia Paper 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAcacia"}},"tier":2},"Acacia Wood 2":{"internalName":"Refined Acacia Wood 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"cc7ab4ee36cdf2949b42e16c2cd768fe921c7092cd5f5e9095be7473c2886609"},"tier":2},"Sandstone Gem 2":{"internalName":"Refined Sandstone Gem 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"66","name":"profession.gemSandstone"}},"tier":2},"Carp Meat 2":{"internalName":"Refined Carp Meat 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"95","name":"profession.meatCarp"}},"tier":2},"Acacia Paper 1":{"internalName":"Refined Acacia Paper 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperAcacia"}},"tier":1},"Carp Oil 2":{"internalName":"Refined Carp Oil 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"90","name":"profession.oilCarp"}},"tier":2},"Acacia Wood 3":{"internalName":"Refined Acacia Wood 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"cc7ab4ee36cdf2949b42e16c2cd768fe921c7092cd5f5e9095be7473c2886609"},"tier":3},"Sandstone Gem 3":{"internalName":"Refined Sandstone Gem 3","type":"material","identified":true,"requirements":{"level":30},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"66","name":"profession.gemSandstone"}},"tier":3},"Sandstone Ingot 1":{"internalName":"Refined Sandstone Ingot 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"54","name":"profession.ingotSandstone"}},"tier":1},"Malt String 2":{"internalName":"Refined Malt String 2","type":"material","identified":true,"requirements":{"level":30},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringMalt"}},"tier":2},"Malt Grains 1":{"internalName":"Refined Malt Grains 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainMalt"}},"tier":1},"Sandstone Gem 1":{"internalName":"Refined Sandstone Gem 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"66","name":"profession.gemSandstone"}},"tier":1},"Acacia Wood 1":{"internalName":"Refined Acacia Wood 1","type":"material","identified":true,"requirements":{"level":30},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"cc7ab4ee36cdf2949b42e16c2cd768fe921c7092cd5f5e9095be7473c2886609"},"tier":1},"Bow Of Wisdom":{"internalName":"Bow Of Wisdom","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":100,"dropRestriction":"never","requirements":{"level":29,"classRequirement":"archer","intelligence":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"manaRegen":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":50,"raw":50,"max":66},"baseWaterDamage":{"min":6,"raw":6,"max":12}},"rarity":"unique"},"Blade of Snow":{"internalName":"Blade of Snow","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":78,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"assassin","intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"270","name":"dagger.water2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":-12,"raw":-9,"max":-6},"airDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-9,"raw":-7,"max":-5},"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":17,"raw":17,"max":28},"baseWaterDamage":{"min":12,"raw":12,"max":19}},"rarity":"unique"},"Amiscia":{"internalName":"Amiscia","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29,"dexterity":15},"powderSlots":1,"identifications":{"rawDexterity":5,"spellDamage":{"min":2,"raw":6,"max":8},"lifeSteal":{"min":4,"raw":13,"max":17},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":155,"baseEarthDefence":-10,"baseThunderDefence":10},"rarity":"unique"},"Rubber Helm":{"internalName":"Rubber Helm","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29},"powderSlots":1,"identifications":{"rawDexterity":-3,"rawAgility":-3,"thorns":{"min":3,"raw":10,"max":13},"reflection":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":165},"rarity":"unique"},"Phantom Blade":{"internalName":"Phantom Blade","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":96,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"assassin","intelligence":10,"agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"rawDefence":-5,"rawAgility":7,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":2,"raw":8,"max":10},"rawSpellDamage":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseWaterDamage":{"min":13,"raw":13,"max":18},"baseAirDamage":{"min":13,"raw":13,"max":18}},"rarity":"rare"},"Dern's Desolation":{"internalName":"Dern's Desolation","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":93,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"warrior","dexterity":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"poison":{"min":30,"raw":100,"max":130},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"airDamage":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":24,"raw":24,"max":38},"baseThunderDamage":{"min":4,"raw":4,"max":24}},"rarity":"rare"},"Adventurer's Tunic":{"internalName":"Adventurer's Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(127,153,184)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":29},"powderSlots":1,"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":165},"rarity":"set"},"Aeronaut":{"internalName":"Aeronaut","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29,"agility":15},"identifications":{"rawAgility":5,"reflection":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":3,"raw":9,"max":12},"airDamage":{"min":2,"raw":7,"max":9},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":140,"baseFireDefence":-10,"baseAirDefence":10},"rarity":"rare"},"Spider Silk Carduroys":{"internalName":"Spider Silk Carduroys","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":29},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"identifications":{"rawAgility":3,"healthRegen":10,"lifeSteal":13},"base":{"baseHealth":185},"rarity":"unique"},"Black Mask":{"internalName":"Black Mask","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":29,"quest":"Creeper Infiltration"},"identifications":{"lifeSteal":18,"lootBonus":12,"stealing":3,"thunderDamage":14},"base":{"baseHealth":210},"rarity":"rare"},"Aeolian":{"internalName":"Aeolian","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":113,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"archer","agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawStrength":-3,"rawAgility":5,"walkSpeed":{"min":2,"raw":5,"max":7},"airDamage":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":24,"raw":24,"max":50},"baseAirDamage":{"min":14,"raw":14,"max":22}},"rarity":"unique"},"Blindblight":{"internalName":"Blindblight","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29},"identifications":{"rawStrength":8,"rawDexterity":-4,"rawMainAttackDamage":{"min":11,"raw":36,"max":47},"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"poison":{"min":29,"raw":95,"max":124},"lifeSteal":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":200,"baseEarthDefence":-3,"baseThunderDefence":-3,"baseWaterDefence":-3,"baseFireDefence":-3,"baseAirDefence":-3},"rarity":"rare"},"Sharp Heels":{"internalName":"Sharp Heels","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29,"dexterity":15},"identifications":{"rawDexterity":5,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":9,"raw":29,"max":38}},"base":{"baseHealth":130,"baseEarthDefence":-5},"rarity":"unique"},"Bow of Wisdom":{"internalName":"Bow of Wisdom","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":100,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"archer","intelligence":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"manaRegen":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":50,"raw":50,"max":66},"baseWaterDamage":{"min":6,"raw":6,"max":12}},"rarity":"unique"},"Vivace":{"internalName":"Vivace","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":116,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"shaman","dexterity":10,"agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"rawDexterity":5,"rawAgility":5,"spellDamage":{"min":3,"raw":11,"max":14},"walkSpeed":{"min":3,"raw":11,"max":14},"earthDefence":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":13,"raw":13,"max":18},"baseThunderDamage":{"min":9,"raw":9,"max":13},"baseAirDamage":{"min":9,"raw":9,"max":13}},"rarity":"unique"},"Advancement":{"internalName":"Advancement","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":29},"powderSlots":2,"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"identifications":{"manaSteal":8,"xpBonus":10},"base":{"baseHealth":255},"rarity":"legendary"},"Abolition":{"internalName":"Abolition","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":144,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":29,"classRequirement":"assassin","defence":15},"powderSlots":1,"lore":"\"Those bloody zombies don't kip down at night, what makes you think a curfew might bally-well help?\" -General Graken, Nemract Militia","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"lifeSteal":30,"xpBonus":22,"lootBonus":22,"fireDamage":10},"base":{"baseFireDamage":{"min":40,"raw":40,"max":100}},"rarity":"legendary"},"Scorch Breath":{"internalName":"Scorch Breath","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":133,"dropRestriction":"dungeon","requirements":{"level":29,"classRequirement":"archer","defence":30},"powderSlots":1,"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":12,"raw":40,"max":52},"raw1stSpellCost":{"min":-1,"raw":-3,"max":-4},"raw2ndSpellCost":{"min":13,"raw":10,"max":7},"raw3rdSpellCost":{"min":-1,"raw":-3,"max":-4},"raw4thSpellCost":{"min":13,"raw":10,"max":7},"xpBonus":{"min":3,"raw":10,"max":13},"fireDamage":{"min":6,"raw":20,"max":26}},"base":{"baseFireDamage":{"min":32,"raw":32,"max":54}},"rarity":"rare"},"Hook":{"internalName":"Hook","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":80,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"warrior","agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawDexterity":4,"walkSpeed":{"min":2,"raw":7,"max":9},"xpBonus":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":2,"raw":6,"max":8},"airDamage":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":13,"raw":13,"max":18},"baseAirDamage":{"min":13,"raw":13,"max":20}},"rarity":"unique"},"Avocado":{"internalName":"Avocado","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":111,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"shaman","strength":10,"intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawStrength":7,"rawIntelligence":7,"healthRegenRaw":{"min":6,"raw":20,"max":26},"rawHealth":{"min":20,"raw":65,"max":85}},"base":{"baseEarthDamage":{"min":25,"raw":25,"max":29},"baseWaterDamage":{"min":25,"raw":25,"max":29}},"rarity":"unique"},"Meanderthal":{"internalName":"Meanderthal","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29,"strength":12},"powderSlots":1,"lore":"These boots were retrieved from a frozen man, uncovered on an expedition to Mt. Wynn. It is believed that the man had been wandering the world before his death.","identifications":{"rawStrength":9,"rawDefence":9,"mainAttackDamage":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":335,"baseEarthDefence":20},"rarity":"legendary"},"Bloodied Chaps":{"internalName":"Bloodied Chaps","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":29,"strength":10,"defence":10},"lore":"...It's pulling towards something.","identifications":{"rawStrength":4,"rawDefence":4,"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":4,"raw":13,"max":17}},"base":{"baseHealth":220,"baseEarthDefence":15,"baseFireDefence":15},"rarity":"rare"},"Used Golden Helmet":{"internalName":"Used Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29},"powderSlots":1,"base":{"baseHealth":119},"rarity":"common"},"Ancient Waters":{"internalName":"Ancient Waters","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":134,"dropRestriction":"dungeon","requirements":{"level":29,"classRequirement":"shaman","intelligence":25},"powderSlots":2,"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"rawIntelligence":10,"manaRegen":{"min":4,"raw":14,"max":18},"waterSpellDamage":{"min":6,"raw":20,"max":26},"thunderDefence":{"min":-31,"raw":-24,"max":-17}},"base":{"baseWaterDamage":{"min":152,"raw":152,"max":170}},"rarity":"rare"},"Detlas' Skin":{"internalName":"Detlas' Skin","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":29,"intelligence":5,"defence":5},"powderSlots":1,"identifications":{"healingEfficiency":{"min":2,"raw":7,"max":9},"xpBonus":{"min":5,"raw":15,"max":20},"lootBonus":{"min":2,"raw":5,"max":7},"fireDefence":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":175,"baseThunderDefence":-15,"baseWaterDefence":20},"rarity":"unique"},"Conclave Crossfire":{"internalName":"Conclave Crossfire","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":146,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"shaman","dexterity":13,"defence":13},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawStrength":-10,"rawDexterity":15,"poison":{"min":30,"raw":99,"max":129},"exploding":{"min":-130,"raw":-100,"max":-70},"earthDamage":{"min":-65,"raw":-50,"max":-35},"airDamage":{"min":-65,"raw":-50,"max":-35}},"base":{"baseDamage":{"min":5,"raw":5,"max":9},"baseThunderDamage":{"min":12,"raw":12,"max":15},"baseFireDamage":{"min":12,"raw":12,"max":15}},"rarity":"rare"},"Ronco":{"internalName":"Ronco","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":140,"dropRestriction":"normal","requirements":{"level":29,"classRequirement":"archer","dexterity":30},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":5,"spellDamage":{"min":4,"raw":12,"max":16},"rawHealth":{"min":-117,"raw":-90,"max":-63},"walkSpeed":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":5,"raw":5,"max":11},"baseThunderDamage":{"min":1,"raw":1,"max":48}},"rarity":"rare"},"Portal Emanation":{"internalName":"Portal Emanation","type":"ingredient","requirements":{"level":29,"skills":["weaponsmithing","woodworking","tailoring","armouring"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"spellDamage":{"min":-8,"raw":-8,"max":-6},"manaRegen":{"min":5,"raw":5,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-54000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":15,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Soul Corrupter","coords":[[232,66,-1347,1],[297,48,-1197,1],[299,58,-1242,1]]},{"name":"Basin Wight","coords":[[264,38,-1343,15],[230,42,-1338,18],[234,65,-1348,6],[254,63,-1347,6],[326,56,-1251,6],[299,57,-1245,4],[250,60,-1243,6],[239,46,-1250,6],[239,18,-1322,20],[217,38,-1385,15]]}]},"Vitre":{"internalName":"Vitre","type":"accessory","accessoryType":"bracelet","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":29},"lore":"\"They say the eyes are the windows to the soul. That's ridiculous, ocular fluids are primarily opaque.\" -Ragon, Elemental Researcher","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawIntelligence":5,"rawDefence":-3,"reflection":15},"rarity":"unique"},"Death's Reach":{"internalName":"Death's Reach","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":129,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":29,"classRequirement":"archer","strength":10},"powderSlots":1,"lore":"\"We'll ensure that under our watch, all your families will be reunited!\" -Haros, of the Banished Legion","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"rawStrength":4,"spellDamage":-20,"earthMainAttackDamage":70,"walkSpeed":-40},"base":{"baseDamage":{"min":34,"raw":34,"max":50},"baseEarthDamage":{"min":38,"raw":38,"max":50}},"rarity":"rare"},"Garoth's Hope":{"internalName":"Garoth's Hope","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":29,"defence":10},"lore":"\"Strangest thing, it turns out Creepers are incredibly flammable...\" -Garull, Cryptid Researcher ","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"identifications":{"walkSpeed":-5,"fireDamage":30,"fireDefence":20},"base":{"baseHealth":185,"baseWaterDefence":-20,"baseFireDefence":15},"rarity":"rare"},"Uncanny Mirage":{"internalName":"Uncanny Mirage","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":93,"dropRestriction":"never","requirements":{"level":29,"classRequirement":"assassin","agility":30},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"260","name":"dagger.air2"}},"identifications":{"manaSteal":{"min":-10,"raw":-8,"max":-6},"rawAirSpellDamage":{"min":14,"raw":45,"max":59},"rawAirMainAttackDamage":{"min":9,"raw":30,"max":39},"rawAttackSpeed":1,"mainAttackRange":{"min":12,"raw":40,"max":52}},"base":{"baseDamage":{"min":0,"raw":0,"max":30},"baseAirDamage":{"min":0,"raw":0,"max":30}},"rarity":"legendary"},"Timelocked Coal":{"internalName":"Timelocked Coal","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":3,"xpBonus":8,"fireDamage":5},"rarity":"unique"},"Timelocked Stone":{"internalName":"Timelocked Stone","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":3,"xpBonus":8,"earthDamage":5},"rarity":"unique"},"Timelocked Dew":{"internalName":"Timelocked Dew","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":3,"xpBonus":8,"waterDamage":5},"rarity":"unique"},"Timelocked Spark":{"internalName":"Timelocked Spark","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":3,"xpBonus":8,"thunderDamage":5},"rarity":"unique"},"Roaming Thief":{"internalName":"Roaming Thief","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28},"powderSlots":1,"identifications":{"rawDexterity":3,"lifeSteal":{"min":4,"raw":13,"max":17},"lootBonus":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":200},"rarity":"rare"},"Flawless Oak Wand":{"internalName":"Flawless Oak Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":36,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":15,"raw":15,"max":20}},"rarity":"common"},"Dark Needle":{"internalName":"Dark Needle","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":48,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"mage","dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"earthDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":6,"raw":6,"max":10},"baseThunderDamage":{"min":6,"raw":6,"max":16}},"rarity":"unique"},"Bombardier":{"internalName":"Bombardier","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":90,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"archer","defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawHealth":{"min":-65,"raw":-50,"max":-35},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":25,"raw":25,"max":45},"baseFireDamage":{"min":15,"raw":15,"max":35}},"rarity":"unique"},"Mortar":{"internalName":"Mortar","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28,"strength":10},"powderSlots":1,"identifications":{"rawStrength":4,"mainAttackDamage":{"min":3,"raw":10,"max":13},"exploding":{"min":1,"raw":2,"max":3},"earthDamage":{"min":2,"raw":7,"max":9},"airDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":140,"baseEarthDefence":10,"baseAirDefence":-5},"rarity":"unique"},"Upgraded Dark Needle":{"internalName":"Upgraded Dark Needle","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":70,"dropRestriction":"never","identified":true,"requirements":{"level":28,"classRequirement":"mage","dexterity":10},"powderSlots":2,"lore":"The magic in this wand seems much weaker than normal...and there's a rather rude message written on the handle.","dropMeta":{"name":"Rymek","type":"merchant","coordinates":[1233,31,-1295]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"mainAttackDamage":8,"spellDamage":4,"earthDefence":-6},"base":{"baseDamage":{"min":9,"raw":9,"max":13},"baseThunderDamage":{"min":10,"raw":10,"max":24}},"rarity":"unique"},"Barrage":{"internalName":"Barrage","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":28,"dexterity":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":4,"thunderDamage":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Sweden":{"internalName":"Sweden","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":101,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"shaman","agility":14},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"rawAgility":7,"reflection":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":4,"raw":14,"max":18},"jumpHeight":1},"base":{"baseDamage":{"min":21,"raw":21,"max":28},"baseAirDamage":{"min":21,"raw":21,"max":28}},"rarity":"unique"},"Verstand":{"internalName":"Verstand","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28,"intelligence":15},"powderSlots":1,"identifications":{"rawStrength":-3,"rawIntelligence":4,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":2,"raw":6,"max":8},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":130,"baseThunderDefence":-8,"baseWaterDefence":10},"rarity":"unique"},"Ginto":{"internalName":"Ginto","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28},"powderSlots":1,"identifications":{"rawIntelligence":4,"spellDamage":{"min":3,"raw":9,"max":12},"lootBonus":{"min":5,"raw":18,"max":23},"fireDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":180},"rarity":"rare"},"Ice Mask":{"internalName":"Ice Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":28,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"56aab58fa01fce9af469ed747aed811d7ba18c476f5a7f9088e129c31b45f3"},"identifications":{"rawMainAttackDamage":50,"manaSteal":5,"reflection":12,"airDamage":10},"base":{"baseHealth":130,"baseFireDefence":-8,"baseAirDefence":12},"rarity":"rare"},"Water Mask":{"internalName":"Water Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":28,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"5c7ecbfd6d33e873a1cf9a92f57f146152b52d9d7311694602671111a302f"},"identifications":{"rawIntelligence":5,"spellDamage":10,"manaRegen":10,"healingEfficiency":10,"waterDamage":10},"base":{"baseHealth":-40,"baseWaterDefence":15},"rarity":"rare"},"Lucky Boots":{"internalName":"Lucky Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28},"powderSlots":1,"identifications":{"lootBonus":{"min":3,"raw":10,"max":13},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":150},"rarity":"unique"},"Power Scale":{"internalName":"Power Scale","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":28},"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"lifeSteal":{"min":-21,"raw":-16,"max":-11},"manaSteal":{"min":1,"raw":3,"max":4},"xpBonus":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"unique"},"Flawless Oak Bow":{"internalName":"Flawless Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":74,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":41,"raw":41,"max":58}},"rarity":"common"},"Spirit Calling":{"internalName":"Spirit Calling","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":28},"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"177","name":"necklace.air1"}},"identifications":{"rawIntelligence":-4,"rawAgility":2,"manaRegen":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Cross":{"internalName":"Cross","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":70,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"identifications":{"mainAttackDamage":{"min":-4,"raw":-3,"max":-2},"spellDamage":{"min":-5,"raw":-4,"max":-3},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":41,"raw":41,"max":53}},"rarity":"unique"},"Enflame":{"internalName":"Enflame","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":62,"dropRestriction":"dungeon","requirements":{"level":28,"classRequirement":"warrior","defence":20},"powderSlots":1,"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":5,"rawHealth":{"min":21,"raw":70,"max":91},"4thSpellCost":{"min":-6,"raw":-19,"max":-25},"exploding":{"min":5,"raw":15,"max":20},"fireDamage":{"min":5,"raw":16,"max":21},"waterDefence":{"min":-42,"raw":-32,"max":-22}},"base":{"baseDamage":{"min":20,"raw":20,"max":30}},"rarity":"unique"},"Adventurer's Pants":{"internalName":"Adventurer's Pants","type":"armour","armourType":"leggings","armourColor":"rgb(127,153,184)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":28},"powderSlots":1,"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":153},"rarity":"set"},"Nether Boots":{"internalName":"Nether Boots","type":"armour","armourType":"boots","armourColor":"rgb(133,57,57)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":28,"defence":25},"powderSlots":1,"identifications":{"exploding":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":200,"baseWaterDefence":-6,"baseFireDefence":12},"rarity":"set"},"The Banhammer":{"internalName":"The Banhammer","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":75,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":28,"raw":28,"max":38},"baseEarthDamage":{"min":14,"raw":14,"max":20}},"rarity":"rare"},"Flawless Oak Dagger":{"internalName":"Flawless Oak Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":59,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":20,"raw":20,"max":27}},"rarity":"common"},"Nostalgia":{"internalName":"Nostalgia","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":28,"strength":10,"intelligence":10,"defence":10},"powderSlots":2,"lore":"It once held little meaning, another lilac left unnoticed in the quotidian meadows of yesteryear. Yet just its scent brings forth a deluge of memory, crashing down with the force of a time long past.","identifications":{"spellDamage":{"min":8,"raw":27,"max":35},"rawSpellDamage":{"min":-52,"raw":-40,"max":-28},"healthRegen":{"min":8,"raw":27,"max":35},"rawHealth":{"min":23,"raw":77,"max":100},"rawMaxMana":{"min":8,"raw":27,"max":35}},"base":{"baseHealth":235,"baseEarthDefence":10,"baseWaterDefence":10,"baseFireDefence":10},"rarity":"legendary"},"Worn Golden Chestplate":{"internalName":"Worn Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":28},"powderSlots":1,"base":{"baseHealth":111},"rarity":"common"},"Flawless Oak Spear":{"internalName":"Flawless Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":50,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":27,"raw":27,"max":39}},"rarity":"common"},"Sickle":{"internalName":"Sickle","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":75,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"assassin","agility":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.air1"}},"identifications":{"rawAgility":7,"walkSpeed":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":5,"raw":5,"max":30},"baseAirDamage":{"min":5,"raw":5,"max":20}},"rarity":"unique"},"Fortitude":{"internalName":"Fortitude","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":28,"defence":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawDefence":5,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"healthRegenRaw":{"min":2,"raw":6,"max":8},"rawHealth":{"min":8,"raw":25,"max":33},"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":40,"baseWaterDefence":-8,"baseFireDefence":5},"rarity":"rare"},"Flawless Oak Relik":{"internalName":"Flawless Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":73,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":34,"raw":34,"max":37}},"rarity":"common"},"Crystal Necklace":{"internalName":"Crystal Necklace","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":28,"strength":3,"dexterity":3,"intelligence":3,"defence":3,"agility":3},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"reflection":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"unique"},"Sea Legs":{"internalName":"Sea Legs","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":28,"intelligence":20},"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"rawIntelligence":3,"mainAttackDamage":-8,"manaRegen":6,"rawMaxMana":15,"waterDamage":10},"base":{"baseHealth":180,"baseThunderDefence":-6,"baseWaterDefence":8},"rarity":"rare"},"Psion Marker":{"internalName":"Psion Marker","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":114,"dropRestriction":"normal","requirements":{"level":28,"classRequirement":"warrior","dexterity":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"rawDexterity":5,"mainAttackDamage":{"min":6,"raw":20,"max":26},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"exploding":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":16},"baseThunderDamage":{"min":10,"raw":10,"max":12}},"rarity":"legendary"},"Dynamic":{"internalName":"Dynamic","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":28,"dexterity":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseEarthDefence":-7,"baseThunderDefence":7},"rarity":"unique"},"Strange Geode":{"internalName":"Strange Geode","type":"ingredient","requirements":{"level":28,"skills":["jeweling"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"earthDefence":{"min":5,"raw":5,"max":6},"walkSpeed":{"min":-4,"raw":-4,"max":-3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Miner","coords":[[781,31,-1226,8],[752,31,-1228,8],[723,31,-1247,8],[810,31,-1217,8]]},{"name":"Amoral Miner","coords":[[798,30,-1174,6],[799,29,-1163,6],[811,29,-1148,8],[811,29,-1148,8],[811,29,-1148,8],[819,32,-1195,8],[840,30,-1216,8],[780,34,-1196,3],[780,34,-1196,3],[745,31,-1227,3]]},{"name":"Amoral Miner","coords":[[703,31,-1215,4],[703,31,-1215,4],[754,31,-1192,1],[802,29,-1148,1],[787,29,-1150,1],[830,30,-1195,5],[840,30,-1216,8],[780,34,-1196,3]]},{"name":"TNT Minecart","coords":[[700,31,-1192,4],[700,31,-1192,4],[811,31,-1218,1],[836,30,-1190,2],[836,30,-1190,3],[836,30,-1190,3]]}]},"Squid Ink":{"internalName":"Squid Ink","type":"ingredient","requirements":{"level":28,"skills":["scribing","cooking"]},"icon":{"format":"legacy","value":"351:0"},"identifications":{"waterDamage":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tiderider Squid","coords":[[-259,24,-2649,10],[-235,24,-2666,10],[-208,24,-2684,10]]},{"name":"Lunatic Squid","coords":[[890,10,-2561,30],[846,20,-2641,30]]},{"name":"Squid Vicious","coords":[-914,24,-2855,100]},{"name":"Deep Blue Squid","coords":[[992,30,-3924,25],[743,30,-3967,25]]},{"name":"Squid","coords":[[-1063,30,-2197,20],[357,25,-2238,20],[393,25,-2179,20],[759,30,-2470,20],[-2055,30,-4264,20],[-2135,31,-4255,20],[-1961,25,-4210,20],[-1364,28,-4221,20],[-1316,26,-4194,20],[-1232,28,-4210,20],[-937,28,-4247,20],[-832,27,-4205,20],[-257,26,-4104,20],[-247,24,-2962,20],[1270,24,-4064,20],[1250,19,-4003,20],[1280,19,-3953,20],[1369,20,-3967,20],[1418,10,-4009,20],[1447,7,-4057,10],[1376,23,-3925,20],[1354,19,-3875,20],[1237,20,-4004,20]]},{"name":"Giant Squid","coords":[[-44,26,-3344,20],[185,24,-3680,20],[618,25,-3943,20],[1079,22,-3926,20],[1381,25,-3930,5],[-834,15,-2440,10],[-1177,27,-1919,20],[-2068,27,-2362,20]]}]},"Cat Food":{"internalName":"Cat Food","type":"ingredient","requirements":{"level":28,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"350:0"},"identifications":{"manaRegen":{"min":3,"raw":3,"max":3},"xpBonus":{"min":-10,"raw":-10,"max":-8}},"tier":2,"consumableOnlyIDs":{"duration":-310,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crazy Cat Lady","coords":[[668,81,-1889,60],[769,76,-1791,70],[778,79,-1718,50],[805,74,-2077,60],[735,76,-1763,60],[845,71,-1757,60]]}]},"Captain's Glass":{"internalName":"Captain's Glass","type":"ingredient","requirements":{"level":28,"skills":["weaponsmithing","tailoring"]},"icon":{"format":"legacy","value":"390:0"},"identifications":{"walkSpeed":{"min":-6,"raw":-6,"max":-3},"rawMainAttackDamage":{"min":15,"raw":15,"max":16}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":10,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Drunk Captain","coords":[484,58,-2107,16]}]},"Lion Fang":{"internalName":"Lion Fang","type":"ingredient","requirements":{"level":28,"skills":["jeweling","tailoring"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawMainAttackDamage":{"min":4,"raw":4,"max":6},"rawSpellDamage":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Trained Lion Cub","coords":[[746,85,-2302,8],[817,87,-2266,7],[797,29,-2307,7]]}]},"Salted Salmon":{"internalName":"Salted Salmon","type":"ingredient","requirements":{"level":28,"skills":["cooking"]},"icon":{"format":"legacy","value":"349:1"},"identifications":{"gatherSpeed":{"min":2,"raw":2,"max":3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]},{"name":"Skelemancer","coords":[249,45,-1937,120]},{"name":"Bonesy","coords":[-7,59,-2069,100]}]},"Timelocked Breath":{"internalName":"Timelocked Breath","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"dropMeta":{"name":"Tempo Town","type":"merchant","coordinates":[-299,49,-1159]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":3,"xpBonus":8,"airDamage":5},"rarity":"unique"},"Damnation":{"internalName":"Damnation","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":147,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28,"classRequirement":"archer","defence":20},"powderSlots":2,"lore":"\"I got a name, known far and wide! Run along, you bandit scum, before you have to learn it the hard way!\" -Sayleros' Brother, killed by bandits","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawDefence":4,"fireMainAttackDamage":60,"exploding":30,"xpBonus":10,"fireDamage":30},"base":{"baseDamage":{"min":60,"raw":60,"max":83}},"rarity":"legendary"},"Sanies":{"internalName":"Sanies","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":105,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28,"classRequirement":"warrior","intelligence":15},"powderSlots":1,"lore":"\"Can anyone else understand that General Graken? Because I can't.\" -Commander Takan, Nemract Militia","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"475","name":"spear.water2"}},"identifications":{"manaSteal":-20,"earthSpellDamage":30,"waterSpellDamage":15,"1stSpellCost":-10},"base":{"baseDamage":{"min":27,"raw":27,"max":43},"baseWaterDamage":{"min":27,"raw":27,"max":43}},"rarity":"legendary"},"Hymn of the Dead":{"internalName":"Hymn of the Dead","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":41,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28,"classRequirement":"mage"},"powderSlots":1,"lore":"\"The dead can still hear. I figure a lullaby might help convince them to sleep a bit longer.\" -Merloni, Saint's Row Priest","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"327","name":"wand.air2"}},"identifications":{"poison":400,"walkSpeed":20,"airDamage":20},"base":{"baseAirDamage":{"min":18,"raw":18,"max":22}},"rarity":"legendary"},"Gold Digger":{"internalName":"Gold Digger","type":"armour","armourType":"leggings","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28},"powderSlots":1,"lore":"\"With the corruption seemingly tied to the emeralds dug by the Roots, people thought gold was the next best thing, the idiots.\" -Gerald, Retired Miner ","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"identifications":{"damage":-5,"walkSpeed":5,"xpBonus":10,"lootBonus":30},"base":{"baseHealth":145},"rarity":"rare"},"Thriller":{"internalName":"Thriller","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":174,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":28,"classRequirement":"shaman","dexterity":20},"powderSlots":2,"lore":"\"And no one's going to save us from the beasts about to strike. We've seen horrors stare us in the eyes, and we're fighting for our lives.\" -Poe, Nemract Sewer Dweller","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawHealth":-100,"manaSteal":5,"rawThunderSpellDamage":40,"walkSpeed":8,"thunderDefence":15},"base":{"baseDamage":{"min":6,"raw":6,"max":28},"baseThunderDamage":{"min":28,"raw":28,"max":50}},"rarity":"legendary"},"Metal Mask":{"internalName":"Metal Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":27,"quest":"Creeper Infiltration"},"powderSlots":1,"icon":{"format":"skin","value":"bba8459145d83ffc44ad58c3260e74ca5a0f634c7eeb59a1ad3234849c933c"},"identifications":{"rawDefence":8,"healthRegenRaw":7},"base":{"baseHealth":185,"baseFireDefence":10},"rarity":"unique"},"Ultraviolet":{"internalName":"Ultraviolet","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"archer","strength":7,"dexterity":7,"intelligence":7,"defence":7,"agility":7},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"206","name":"bow.multi1"}},"identifications":{"healthRegen":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":2,"raw":7,"max":9},"elementalDamage":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDamage":{"min":8,"raw":8,"max":12},"baseThunderDamage":{"min":0,"raw":0,"max":20},"baseWaterDamage":{"min":4,"raw":4,"max":16},"baseFireDamage":{"min":6,"raw":6,"max":14},"baseAirDamage":{"min":2,"raw":2,"max":18}},"rarity":"rare"},"Black Ripper":{"internalName":"Black Ripper","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":27,"dexterity":15},"powderSlots":1,"lore":"\"The skeletons at Ancient Nemract are rotted! is it even physically possible to rot a bone?\" -Laen, Nemract Librarian ","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"identifications":{"rawMainAttackDamage":38,"thunderDamage":20},"base":{"baseHealth":215,"baseWaterDefence":-10},"rarity":"rare"},"Evalach":{"internalName":"Evalach","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27,"defence":12},"powderSlots":1,"identifications":{"rawDefence":8,"healthRegen":{"min":5,"raw":18,"max":23},"thorns":{"min":1,"raw":4,"max":5},"reflection":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"waterDamage":{"min":-8,"raw":-6,"max":-4},"waterDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":200,"baseFireDefence":12},"rarity":"rare"},"Adventurer's Boots":{"internalName":"Adventurer's Boots","type":"armour","armourType":"boots","armourColor":"rgb(127,153,184)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":27},"powderSlots":1,"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":147},"rarity":"set"},"Fiend":{"internalName":"Fiend","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":60,"dropRestriction":"never","requirements":{"level":27,"classRequirement":"mage","intelligence":10},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.water1"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"waterDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":15,"raw":15,"max":20},"baseWaterDamage":{"min":8,"raw":8,"max":15}},"rarity":"rare"},"Oxidation":{"internalName":"Oxidation","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27,"agility":10},"powderSlots":1,"identifications":{"healthRegen":{"min":-13,"raw":-10,"max":-7},"poison":{"min":14,"raw":45,"max":59},"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":1,"raw":3,"max":4},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":120},"rarity":"unique"},"Darting Blur":{"internalName":"Darting Blur","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"dungeon","requirements":{"level":27,"agility":25},"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"identifications":{"walkSpeed":{"min":6,"raw":19,"max":25},"sprint":{"min":5,"raw":16,"max":21},"sprintRegen":{"min":6,"raw":21,"max":27},"rawAirMainAttackDamage":{"min":9,"raw":29,"max":38}},"base":{"baseHealth":90,"baseEarthDefence":-6,"baseFireDefence":-6,"baseAirDefence":8},"rarity":"unique"},"Uriel":{"internalName":"Uriel","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":27,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"walkSpeed":{"min":4,"raw":12,"max":16}},"rarity":"rare"},"Glacial Crest":{"internalName":"Glacial Crest","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":170,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"archer","agility":20},"powderSlots":1,"lore":"Used for endurance training on the Icy Islands, this bow forces the wielder's body temperature to drop to near-hypothermic levels.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"192","name":"bow.air2"}},"identifications":{"mainAttackDamage":{"min":5,"raw":15,"max":20},"spellDamage":{"min":2,"raw":8,"max":10},"healthRegenRaw":{"min":-19,"raw":-15,"max":-10},"rawHealth":{"min":-97,"raw":-75,"max":-52},"lifeSteal":{"min":11,"raw":36,"max":47},"manaRegen":{"min":2,"raw":6,"max":8},"fireDamage":{"min":-39,"raw":-30,"max":-21},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":30,"raw":30,"max":50},"baseAirDamage":{"min":20,"raw":20,"max":36}},"rarity":"legendary"},"Cobra":{"internalName":"Cobra","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":56,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"archer","dexterity":15},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":7,"raw":23,"max":30},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"stealing":{"min":2,"raw":6,"max":8},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":8,"raw":8,"max":13},"baseThunderDamage":{"min":6,"raw":6,"max":18}},"rarity":"unique"},"Average Golden Chestplate":{"internalName":"Average Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":27},"powderSlots":1,"base":{"baseHealth":112},"rarity":"common"},"Brise":{"internalName":"Brise","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":27,"intelligence":12},"powderSlots":1,"lore":"\"With the hot, dry winds from the Roots and the cold, wet winds from Nesaak, these houses rot faster than you can blink.\" -Viraex, Elkurn Citizen","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"identifications":{"rawIntelligence":5,"spellDamage":15,"manaRegen":6},"base":{"baseHealth":170},"rarity":"unique"},"Worn Golden Leggings":{"internalName":"Worn Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27},"powderSlots":1,"base":{"baseHealth":109},"rarity":"common"},"The Crow's Nest":{"internalName":"The Crow's Nest","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":27,"dexterity":12},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"rawDexterity":5,"xpBonus":4,"thunderDamage":7},"base":{"baseHealth":135,"baseEarthDefence":-3,"baseThunderDefence":5},"rarity":"unique"},"Hero's Beginning":{"internalName":"Hero's Beginning","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27,"strength":15},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawMainAttackDamage":{"min":10,"raw":33,"max":43},"spellDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":140,"baseEarthDefence":3,"baseThunderDefence":3,"baseWaterDefence":3,"baseFireDefence":3,"baseAirDefence":3},"rarity":"unique"},"Breath of the Dragon":{"internalName":"Breath of the Dragon","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":125,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"shaman","defence":11,"agility":11},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"identifications":{"rawDefence":6,"rawAgility":6,"healthRegenRaw":{"min":3,"raw":9,"max":12},"raw1stSpellCost":{"min":7,"raw":5,"max":4},"fireDamage":{"min":5,"raw":15,"max":20},"airDefence":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":10,"raw":10,"max":10},"baseFireDamage":{"min":13,"raw":13,"max":17},"baseAirDamage":{"min":23,"raw":23,"max":27}},"rarity":"rare"},"Zombie Eye Pendant":{"internalName":"Zombie Eye Pendant","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":27,"strength":8},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":2,"rawMainAttackDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":40},"rarity":"rare"},"Disco":{"internalName":"Disco","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27},"powderSlots":2,"lore":"Recovered from a corrupted soldier who wore them, it was found dancing instead of attacking those around it. Even after it was killed, it jostled and jerked around like a dancing puppet.","identifications":{"rawStrength":6,"rawDexterity":6,"rawIntelligence":6,"rawDefence":6,"rawAgility":6,"walkSpeed":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":100},"rarity":"legendary"},"Nemract's Ruin":{"internalName":"Nemract's Ruin","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27,"strength":10,"intelligence":5},"powderSlots":1,"lore":"This chestplate was originally created as a memorial ornament to the lost lives of Ancient Nemract before being reforged into a powerful piece of armor for Nemract's guard.","identifications":{"rawIntelligence":7,"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"spellDamage":{"min":4,"raw":12,"max":16},"earthDamage":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":-8,"raw":-6,"max":-4},"waterDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":235,"baseEarthDefence":20,"baseThunderDefence":-10,"baseWaterDefence":20,"baseAirDefence":-10},"rarity":"legendary"},"Mud Mask":{"internalName":"Mud Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":27,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"1ea6f932b45fdf3b693d9e44bd05bca364eb5b9aff497226fdb52abb2436422"},"identifications":{"poison":90,"damage":8,"walkSpeed":-8,"rawMaxMana":20},"base":{"baseHealth":150,"baseEarthDefence":8,"baseWaterDefence":8,"baseAirDefence":-10},"rarity":"unique"},"Bush Mask":{"internalName":"Bush Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":27,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"3795edeeb6b7ed41c268cefeafbe960b7c49550daeb631b56156bf5feb9847"},"identifications":{"rawStrength":4,"thorns":20,"walkSpeed":12},"base":{"baseHealth":125,"baseEarthDefence":10,"baseFireDefence":-8,"baseAirDefence":5},"rarity":"unique"},"Nether Pants":{"internalName":"Nether Pants","type":"armour","armourType":"leggings","armourColor":"rgb(133,57,57)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":27,"defence":20},"powderSlots":1,"identifications":{"rawDefence":7,"exploding":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":190,"baseWaterDefence":-6,"baseFireDefence":10},"rarity":"set"},"Ocelot Claw":{"internalName":"Ocelot Claw","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":90,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":11,"raw":11,"max":18},"baseThunderDamage":{"min":1,"raw":1,"max":28}},"rarity":"unique"},"Little Inferno":{"internalName":"Little Inferno","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":27,"defence":15},"powderSlots":2,"lore":"It is cold to the touch until worn. Once donned, it engulfs the wearer in excruciatingly hot flames, but never shall the wearer burn; only their enemies will feel the pain of the fire.","identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":6,"raw":20,"max":26},"exploding":{"min":8,"raw":25,"max":33},"fireDamage":{"min":5,"raw":15,"max":20},"waterDefence":{"min":-32,"raw":-25,"max":-17}},"base":{"baseHealth":120,"baseWaterDefence":-20},"rarity":"legendary"},"Kamikaze":{"internalName":"Kamikaze","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":60,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"mage","defence":18},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"333","name":"wand.fire2"}},"identifications":{"rawDefence":-3,"rawAgility":7,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":3,"raw":10,"max":13},"lifeSteal":{"min":-10,"raw":-8,"max":-6},"exploding":{"min":3,"raw":10,"max":13},"waterDamage":{"min":-13,"raw":-10,"max":-7},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":16,"raw":16,"max":20},"baseFireDamage":{"min":20,"raw":20,"max":24}},"rarity":"rare"},"Timbre":{"internalName":"Timbre","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":52,"dropRestriction":"normal","requirements":{"level":27,"classRequirement":"mage","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":7,"max":9}},"base":{"baseEarthDamage":{"min":7,"raw":7,"max":7},"baseThunderDamage":{"min":7,"raw":7,"max":7},"baseWaterDamage":{"min":7,"raw":7,"max":7},"baseFireDamage":{"min":7,"raw":7,"max":7},"baseAirDamage":{"min":7,"raw":7,"max":7}},"rarity":"unique"},"Drywind":{"internalName":"Drywind","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":78,"dropRestriction":"never","identified":true,"requirements":{"level":27,"classRequirement":"warrior","agility":15},"powderSlots":1,"dropMeta":{"name":"Almuj","type":"merchant","coordinates":[855,67,-1956]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":2,"spellDamage":6,"reflection":5,"walkSpeed":5},"base":{"baseDamage":{"min":6,"raw":6,"max":14},"baseAirDamage":{"min":16,"raw":16,"max":26}},"rarity":"rare"},"Intermittenstirrups":{"internalName":"Intermittenstirrups","type":"ingredient","requirements":{"level":27,"skills":["weaponsmithing","woodworking","tailoring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"sprint":{"min":4,"raw":4,"max":6},"sprintRegen":{"min":5,"raw":5,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-34000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":3},"droppedBy":[{"name":"Intermittenstallion","coords":[[-555,70,-1219,15],[-509,70,-1103,20],[-420,70,-1071,30]]},{"name":"Sporadicavalry","coords":[[-555,70,-1219,15],[-509,70,-1103,20],[-420,70,-1071,30]]}]},"Seabird Egg":{"internalName":"Seabird Egg","type":"ingredient","requirements":{"level":27,"skills":["cooking"]},"icon":{"format":"legacy","value":"370:0"},"identifications":{"rawAgility":{"min":3,"raw":3,"max":4},"airDefence":{"min":6,"raw":6,"max":10}},"tier":2,"consumableOnlyIDs":{"duration":-310,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hangry Seagull","coords":[[757,39,-2438,15],[659,41,-2504,15],[580,42,-2391,15],[432,40,-2608,10],[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]}]},"Lion Heart":{"internalName":"Lion Heart","type":"ingredient","requirements":{"level":27,"skills":["armouring"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"rawDefence":{"min":4,"raw":4,"max":6},"fireDamage":{"min":8,"raw":8,"max":12},"healthRegen":{"min":-12,"raw":-12,"max":-8}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0},"droppedBy":[{"name":"Pride Male Lion","coords":[900,30,-2323,0]}]},"Sun-Stained Skin":{"internalName":"Sun-Stained Skin","type":"ingredient","requirements":{"level":27,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"healthRegenRaw":{"min":7,"raw":7,"max":9},"healthRegen":{"min":-8,"raw":-8,"max":-6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-80000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crazy Cat Lady","coords":[[668,81,-1889,60],[769,76,-1791,70],[778,79,-1718,50],[805,74,-2077,60],[735,76,-1763,60],[845,71,-1757,60]]},{"name":"Highwayman","coords":[701,83,-1886,20]}]},"Spike Residue":{"internalName":"Spike Residue","type":"ingredient","requirements":{"level":27,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"263:0"},"identifications":{"thorns":{"min":6,"raw":6,"max":11},"rawHealth":{"min":36,"raw":36,"max":48}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Basin Wight","coords":[[264,38,-1343,15],[230,42,-1338,18],[234,65,-1348,6],[254,63,-1347,6],[326,56,-1251,6],[299,57,-1245,4],[250,60,-1243,6],[239,46,-1250,6],[239,18,-1322,20],[217,38,-1385,15]]},{"name":"Corrupt Stone","coords":[198,51,-1291,35]}]},"Oceanic Silt":{"internalName":"Oceanic Silt","type":"ingredient","requirements":{"level":27,"skills":["armouring"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"rawMainAttackDamage":{"min":4,"raw":4,"max":11}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wave Cult Initiate","coords":[-254,35,-2703,15]},{"name":"Ocean Waker","coords":[-254,35,-2703,15]}]},"Enraged Soul":{"internalName":"Enraged Soul","type":"ingredient","requirements":{"level":27,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":6,"raw":6,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]}]},"Cathedral":{"internalName":"Cathedral","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":87,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":27,"classRequirement":"warrior","agility":20},"powderSlots":2,"lore":"\"The gravestone for the brother of that man, Sayleros? For whatever reason, it didn't have a proper name on it.\" -Sacre, Saint's Row Priest","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"462","name":"spear.air1"}},"identifications":{"rawAirMainAttackDamage":25,"elementalSpellDamage":15,"airDefence":15},"base":{"baseDamage":{"min":6,"raw":6,"max":10},"baseAirDamage":{"min":14,"raw":14,"max":26}},"rarity":"rare"},"Butterfly":{"internalName":"Butterfly","type":"armour","armourType":"helmet","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":27,"agility":10},"powderSlots":2,"lore":"\"Time travel cares less about small things like a flapping wing, and more about big things, like becoming your own grandfather.\" -Martyn, Time Valley Resident ","dropMeta":{"name":"Timelost Sanctum","type":"dungeonMerchant","coordinates":[-254,80,-1046]},"identifications":{"rawAgility":12,"walkSpeed":8,"sprintRegen":10},"base":{"baseHealth":90,"baseAirDefence":8},"rarity":"unique"},"Life Extractor":{"internalName":"Life Extractor","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":117,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"198","name":"bow.fire2"}},"identifications":{"rawHealth":{"min":14,"raw":46,"max":60},"lifeSteal":{"min":11,"raw":35,"max":46},"lootBonus":{"min":2,"raw":5,"max":7},"waterDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":32,"raw":32,"max":46},"baseFireDamage":{"min":32,"raw":32,"max":46}},"rarity":"rare"},"Legendary Smasher":{"internalName":"Legendary Smasher","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":104,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"warrior"},"powderSlots":1,"lore":"Many have tried to duplicate the properties of this spear, but very few have succeeded in enchanting a spearhead with explosive magic that does not cause the spear itself to explode.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"469","name":"spear.fire2"}},"identifications":{"rawDefence":4,"exploding":{"min":20,"raw":65,"max":85},"waterDamage":{"min":-19,"raw":-15,"max":-10},"waterDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":50,"raw":50,"max":125},"baseFireDamage":{"min":25,"raw":25,"max":50}},"rarity":"legendary"},"Emotion":{"internalName":"Emotion","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":117,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"shaman","intelligence":12,"defence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawIntelligence":12,"rawDefence":10,"rawAgility":-5,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":-6,"raw":-5,"max":-3},"healthRegenRaw":{"min":2,"raw":8,"max":10},"lifeSteal":{"min":-10,"raw":-8,"max":-6},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":22,"raw":22,"max":30},"baseWaterDamage":{"min":23,"raw":23,"max":29},"baseFireDamage":{"min":24,"raw":24,"max":28}},"rarity":"rare"},"Juniper":{"internalName":"Juniper","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":26,"strength":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"healthRegenRaw":{"min":1,"raw":4,"max":5},"earthDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Disappeared":{"internalName":"Disappeared","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":26,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawAgility":7},"base":{"baseHealth":-50,"baseAirDefence":10},"rarity":"rare"},"Duskhelm":{"internalName":"DuskHelm","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":26},"powderSlots":2,"identifications":{"healingEfficiency":{"min":2,"raw":8,"max":10},"thorns":{"min":3,"raw":9,"max":12},"reflection":{"min":3,"raw":9,"max":12},"fireDamage":{"min":2,"raw":6,"max":8},"waterDefence":{"min":-9,"raw":-7,"max":-5},"fireDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":150,"baseWaterDefence":-7,"baseFireDefence":10},"rarity":"unique"},"Barbed Spear":{"internalName":"Barbed Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":58,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"warrior","strength":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"spellDamage":{"min":-9,"raw":-7,"max":-5},"healthRegen":{"min":-13,"raw":-10,"max":-7},"poison":{"min":36,"raw":120,"max":156}},"base":{"baseDamage":{"min":65,"raw":65,"max":75}},"rarity":"unique"},"Stick of Brilliance":{"internalName":"Stick of Brilliance","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":30,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"mage","intelligence":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":4,"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":11,"raw":11,"max":18}},"rarity":"unique"},"Villager Mail":{"internalName":"Villager Mail","type":"armour","armourType":"chestplate","armourColor":"rgb(142,96,96)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":26},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":140},"rarity":"set"},"Dusty Staff":{"internalName":"Dusty Staff","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":45,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"mage","strength":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"poison":{"min":24,"raw":80,"max":104},"lootBonus":{"min":4,"raw":12,"max":16},"earthDefence":{"min":2,"raw":7,"max":9},"airDefence":{"min":-5,"raw":-4,"max":-3}},"base":{"baseDamage":{"min":12,"raw":12,"max":20},"baseEarthDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Shiny Mask":{"internalName":"Shiny Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":26,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"65d7bed8df714cea063e457ba5e87931141de293dd1d9b9146b0f5ab383866"},"identifications":{"rawSpellDamage":16,"xpBonus":15,"lootBonus":15},"base":{"baseHealth":115},"rarity":"unique"},"Sharpshooter":{"internalName":"Sharpshooter","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":81,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":5,"mainAttackDamage":{"min":1,"raw":4,"max":5},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":36,"raw":36,"max":43}},"rarity":"unique"},"The Divide":{"internalName":"The Divide","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":129,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"assassin","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":1,"lore":"Once having held unstoppable amounts of magic, being forced to fuse into one form locked away all but the smallest sliver of their power.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"273","name":"dagger.multi2"}},"identifications":{"spellDamage":{"min":3,"raw":10,"max":13},"manaSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":2,"raw":8,"max":10},"exploding":{"min":2,"raw":7,"max":9},"elementalDefence":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDamage":{"min":1,"raw":1,"max":24},"baseThunderDamage":{"min":1,"raw":1,"max":24},"baseWaterDamage":{"min":1,"raw":1,"max":24},"baseFireDamage":{"min":1,"raw":1,"max":24},"baseAirDamage":{"min":1,"raw":1,"max":24}},"rarity":"legendary"},"Rock Head":{"internalName":"Rock Head","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"dungeon","requirements":{"level":26,"strength":20},"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"identifications":{"spellDamage":{"min":-23,"raw":-18,"max":-13},"walkSpeed":{"min":1,"raw":4,"max":5},"earthDamage":{"min":8,"raw":28,"max":36},"earthDefence":{"min":5,"raw":17,"max":22}},"base":{"baseHealth":150,"baseEarthDefence":7},"rarity":"unique"},"Seafarer's Coat":{"internalName":"Seafarer's Coat","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":26},"powderSlots":2,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"spellDamage":10,"rawMaxMana":20,"lootBonus":6},"base":{"baseHealth":150,"baseWaterDefence":7,"baseAirDefence":5},"rarity":"unique"},"Bronze-Plated Greaves":{"internalName":"Bronze-Plated Greaves","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":26,"strength":10,"defence":10},"powderSlots":1,"identifications":{"rawStrength":4,"rawDefence":4,"reflection":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":160,"baseFireDefence":8,"baseAirDefence":-5},"rarity":"unique"},"Body Axe":{"internalName":"Body Axe","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"dungeon","requirements":{"level":26,"strength":16,"dexterity":16},"powderSlots":1,"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"identifications":{"rawStrength":4,"rawDexterity":4,"mainAttackDamage":{"min":8,"raw":26,"max":34},"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"walkSpeed":{"min":-23,"raw":-18,"max":-13}},"base":{"baseHealth":185},"rarity":"rare"},"Nucleoken":{"internalName":"Nucleoken","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":56,"dropRestriction":"normal","requirements":{"level":26,"classRequirement":"assassin","strength":2,"dexterity":2,"intelligence":2,"defence":2,"agility":2},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"272","name":"dagger.multi1"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10},"elementalDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":30}},"rarity":"unique"},"Worn Golden Boots":{"internalName":"Worn Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":26},"powderSlots":1,"base":{"baseHealth":100},"rarity":"common"},"Rock Mask":{"internalName":"Rock Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":26,"quest":"Creeper Infiltration"},"icon":{"format":"skin","value":"454d9c488c3fbde5454e38619f9cc5b5ba8c6c0186f8aa1da60900fcbc3ea6"},"identifications":{"mainAttackDamage":17,"spellDamage":-8,"earthDamage":8},"base":{"baseHealth":145,"baseEarthDefence":8},"rarity":"unique"},"Boots of the Sorcerer":{"internalName":"Boots of the Sorcerer","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":26,"intelligence":10},"powderSlots":1,"identifications":{"rawIntelligence":3,"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":3,"raw":10,"max":13},"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":3,"raw":10,"max":13},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":96,"baseThunderDefence":10,"baseWaterDefence":5},"rarity":"unique"},"Fishing Hook":{"internalName":"Fishing Hook","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":72,"dropRestriction":"never","identified":true,"requirements":{"level":26,"classRequirement":"assassin","dexterity":5,"intelligence":5},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"walkSpeed":6,"xpBonus":5,"thunderDamage":6},"base":{"baseDamage":{"min":12,"raw":12,"max":16},"baseThunderDamage":{"min":2,"raw":2,"max":6},"baseWaterDamage":{"min":8,"raw":8,"max":14}},"rarity":"unique"},"Adventurer's Cap":{"internalName":"Adventurer's Cap","type":"armour","armourType":"helmet","armourColor":"rgb(127,153,184)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":26},"powderSlots":1,"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":135},"rarity":"set"},"Mangled Soul":{"internalName":"Mangled Soul","type":"ingredient","requirements":{"level":26,"skills":["scribing","armouring","tailoring"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"thunderDamage":{"min":5,"raw":5,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]}]},"Electroplasm":{"internalName":"Electroplasm","type":"ingredient","requirements":{"level":26,"skills":["scribing","woodworking","weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"rawDexterity":{"min":4,"raw":4,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":12,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]}]},"Premium Hay Bale":{"internalName":"Premium Hay Bale","type":"ingredient","requirements":{"level":26,"skills":["armouring"]},"icon":{"format":"legacy","value":"170:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"walkSpeed":{"min":4,"raw":4,"max":6},"fireDefence":{"min":-9,"raw":-9,"max":-7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":5},"droppedBy":[{"name":"Crazy Cat Lady","coords":[[668,81,-1889,60],[769,76,-1791,70],[778,79,-1718,50],[805,74,-2077,60],[735,76,-1763,60],[845,71,-1757,60]]},{"name":"Highwayman","coords":[701,83,-1886,20]}]},"Blaze Powder":{"internalName":"Blaze Powder","type":"ingredient","requirements":{"level":26,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":1,"raw":1,"max":5},"fireDefence":{"min":1,"raw":1,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-51,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Globule","coords":[198,51,-1291,35]},{"name":"Corrupt Stone","coords":[198,51,-1291,35]},{"name":"Hellblaze God","coords":[251,65,-1279,35]},{"name":"Blazing Construct","coords":[251,65,-1279,35]},{"name":"Rampaging Blaze","coords":null}]},"Glimmering Coin":{"internalName":"Glimmering Coin","type":"ingredient","requirements":{"level":26,"skills":["armouring","tailoring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"175:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":5},"lootBonus":{"min":6,"raw":6,"max":8},"healthRegenRaw":{"min":-22,"raw":-22,"max":-18}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-79000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Steppe-Lurker","coords":[[600,82,-1798,20],[799,69,-1991,15],[787,73,-1927,20]]},{"name":"Highway Bandit","coords":[[723,76,-1736,5],[734,76,-1760,5],[733,76,-1790,5],[732,76,-1812,5],[710,79,-1864,5],[703,82,-1887,5],[705,79,-1912,5],[704,78,-1926,5],[670,77,-1980,5],[675,76,-2002,5],[648,74,-1962,5],[621,66,-1977,5],[725,76,-1955,5],[781,74,-1958,5],[815,68,-1958,5],[772,72,-1997,5]]},{"name":"Undead Bandit","coords":null},{"name":"Highwayman","coords":[701,83,-1886,20]}]},"Seabird Feather":{"internalName":"Seabird Feather","type":"ingredient","requirements":{"level":26,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"airDamage":{"min":2,"raw":2,"max":6},"mainAttackDamage":{"min":-3,"raw":-3,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hangry Seagull","coords":[[757,39,-2438,15],[659,41,-2504,15],[580,42,-2391,15],[432,40,-2608,10],[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]},{"name":"Storm Shaker","coords":[-251,22,-2767,0]}]},"Worn Coin":{"internalName":"Worn Coin","type":"ingredient","requirements":{"level":26,"skills":["armouring","tailoring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"walkSpeed":{"min":-5,"raw":-5,"max":-3},"lootBonus":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Steppe-Lurker","coords":[[600,82,-1798,20],[799,69,-1991,15],[787,73,-1927,20]]},{"name":"Highway Bandit","coords":[[723,76,-1736,5],[734,76,-1760,5],[733,76,-1790,5],[732,76,-1812,5],[710,79,-1864,5],[703,82,-1887,5],[705,79,-1912,5],[704,78,-1926,5],[670,77,-1980,5],[675,76,-2002,5],[648,74,-1962,5],[621,66,-1977,5],[725,76,-1955,5],[781,74,-1958,5],[815,68,-1958,5],[772,72,-1997,5]]},{"name":"Undead Bandit","coords":null},{"name":"Highwayman","coords":[701,83,-1886,20]}]},"Boundary":{"internalName":"Boundary","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":124,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":26,"classRequirement":"shaman","strength":15},"powderSlots":2,"dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"rawStrength":8,"spellDamage":-10,"thorns":20,"knockback":20,"elementalDefence":20},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseEarthDamage":{"min":45,"raw":45,"max":70}},"rarity":"rare"},"Styx's Grab":{"internalName":"Styx's Grab","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":95,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":26,"classRequirement":"assassin","intelligence":12},"powderSlots":1,"lore":"\"Never wish to see a dead loved one again. In this day and age, they'll come back to see you.\" -Mylo, Nemract Conscript","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"lifeSteal":20,"manaSteal":8,"waterSpellDamage":25},"base":{"baseDamage":{"min":14,"raw":14,"max":22},"baseWaterDamage":{"min":18,"raw":18,"max":22}},"rarity":"rare"},"Wind Spine":{"internalName":"Wind Spine","type":"weapon","weaponType":"wand","attackSpeed":"super_fast","averageDps":60,"dropRestriction":"dungeon","requirements":{"level":25,"classRequirement":"mage","agility":20},"powderSlots":1,"dropMeta":{"name":"Timelost Sanctum","type":"dungeon","coordinates":[-254,80,-1046]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"manaSteal":{"min":1,"raw":2,"max":3},"xpBonus":{"min":3,"raw":10,"max":13},"airMainAttackDamage":{"min":6,"raw":20,"max":26},"fireDefence":{"min":-36,"raw":-28,"max":-20}},"base":{"baseAirDamage":{"min":0,"raw":0,"max":28}},"rarity":"rare"},"Morph-Gold":{"internalName":"Morph-Gold","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25,"strength":10,"dexterity":10,"intelligence":10,"defence":10,"agility":10},"powderSlots":3,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":150,"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"set"},"Embers":{"internalName":"Embers","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":78,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"assassin","defence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"264","name":"dagger.fire2"}},"identifications":{"healthRegen":{"min":4,"raw":13,"max":17},"lifeSteal":{"min":5,"raw":17,"max":22},"waterDamage":{"min":-12,"raw":-9,"max":-6},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":16,"raw":16,"max":30},"baseFireDamage":{"min":11,"raw":11,"max":19}},"rarity":"rare"},"Kuiper":{"internalName":"Kuiper","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":58,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"warrior","strength":6,"dexterity":6,"intelligence":6,"defence":6,"agility":6},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"identifications":{"rawStrength":6,"rawDexterity":6,"rawIntelligence":6,"rawDefence":6,"rawAgility":6,"rawHealth":{"min":-51,"raw":-39,"max":-27}},"base":{"baseDamage":{"min":5,"raw":5,"max":5},"baseEarthDamage":{"min":9,"raw":9,"max":17},"baseThunderDamage":{"min":9,"raw":9,"max":17},"baseWaterDamage":{"min":9,"raw":9,"max":17},"baseFireDamage":{"min":9,"raw":9,"max":17},"baseAirDamage":{"min":9,"raw":9,"max":17}},"rarity":"unique"},"Light Jungle Wood Relik":{"internalName":"Light Jungle Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":61,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":24,"raw":24,"max":25}},"rarity":"common"},"Impure Morph-Gold":{"internalName":"Impure Morph-Gold","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":25,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"identifications":{"rawStrength":3,"rawDexterity":3,"rawIntelligence":3,"rawDefence":3,"rawAgility":3},"base":{"baseHealth":125,"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"unique"},"Grindcore":{"internalName":"Grindcore","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":132,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"shaman","strength":10,"dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"404","name":"relik.thunder2"}},"identifications":{"rawStrength":4,"rawDexterity":4,"rawMainAttackDamage":{"min":16,"raw":52,"max":68},"poison":{"min":30,"raw":100,"max":130},"lifeSteal":{"min":-19,"raw":-15,"max":-10},"1stSpellCost":{"min":23,"raw":18,"max":13}},"base":{"baseDamage":{"min":36,"raw":36,"max":40},"baseEarthDamage":{"min":20,"raw":20,"max":28},"baseThunderDamage":{"min":24,"raw":24,"max":28}},"rarity":"rare"},"Light Jungle Wood Dagger":{"internalName":"Light Jungle Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":54,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":15,"raw":15,"max":20}},"rarity":"common"},"Detlas' Legacy":{"internalName":"Detlas' Legacy","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":75,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"mage","dexterity":10,"intelligence":5},"powderSlots":2,"lore":"One of Detlas’ buildings was struck by lightning 60 years ago and burnt to the ground, apart from one wooden beam that began to glow. It was fashioned into an exclusive wand for resident mages.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"342","name":"wand.multi2"}},"identifications":{"rawDexterity":5,"rawIntelligence":5,"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":4,"raw":12,"max":16},"xpBonus":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseThunderDamage":{"min":5,"raw":5,"max":30},"baseWaterDamage":{"min":10,"raw":10,"max":15}},"rarity":"legendary"},"Backbiter":{"internalName":"Backbiter","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":120,"dropRestriction":"never","requirements":{"level":25,"classRequirement":"assassin","dexterity":15,"defence":5},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"manaSteal":{"min":2,"raw":7,"max":9},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseThunderDamage":{"min":20,"raw":20,"max":40},"baseFireDamage":{"min":25,"raw":25,"max":35}},"rarity":"rare"},"Nether Tunic":{"internalName":"Nether Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(133,57,57)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":25,"defence":15},"powderSlots":1,"identifications":{"rawDefence":5,"fireDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":160,"baseWaterDefence":-6,"baseFireDefence":8},"rarity":"set"},"Mist Blade":{"internalName":"Mist Blade","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":72,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"warrior","agility":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"463","name":"spear.air2"}},"identifications":{"rawAgility":4,"manaSteal":{"min":1,"raw":4,"max":5},"waterDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":13,"raw":13,"max":24},"baseAirDamage":{"min":7,"raw":7,"max":14}},"rarity":"rare"},"Average Golden Leggings":{"internalName":"Average Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":25},"powderSlots":1,"base":{"baseHealth":86},"rarity":"common"},"The Swordfish":{"internalName":"The Swordfish","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":90,"dropRestriction":"never","requirements":{"level":25,"classRequirement":"warrior","intelligence":15},"powderSlots":1,"lore":"The ocean's bounty is full of many strange things. Sailor's tales of a peculiar fish with a snout like a sword and the unbelievable stories of its power thus inspired fanciful ideas in blacksmiths. The results speak for themselves.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"rawSpellDamage":{"min":11,"raw":35,"max":46},"2ndSpellCost":{"min":-9,"raw":-30,"max":-39},"walkSpeed":{"min":3,"raw":10,"max":13},"jumpHeight":1,"thunderDefence":{"min":-58,"raw":-45,"max":-31}},"base":{"baseWaterDamage":{"min":15,"raw":15,"max":27}},"rarity":"legendary"},"Muscle Shirt":{"internalName":"Muscle Shirt","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25,"strength":15},"identifications":{"rawStrength":8},"base":{"baseHealth":140},"rarity":"unique"},"Earth Relic Boots":{"internalName":"Earth Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"strength":15},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"rawStrength":4,"earthDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":150,"baseEarthDefence":4},"rarity":"set"},"Backstaff":{"internalName":"Backstaff","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":49,"dropRestriction":"never","identified":true,"requirements":{"level":25,"classRequirement":"mage"},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawStrength":3,"rawMainAttackDamage":16,"rawHealth":60,"earthDefence":10},"base":{"baseDamage":{"min":14,"raw":14,"max":18},"baseEarthDamage":{"min":6,"raw":6,"max":10}},"rarity":"unique"},"Light Jungle Wood Bow":{"internalName":"Light Jungle Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":64,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":28,"raw":28,"max":34}},"rarity":"common"},"Relic Boots":{"internalName":"Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"elementalDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":150,"baseEarthDefence":4,"baseThunderDefence":4,"baseWaterDefence":4,"baseFireDefence":4,"baseAirDefence":4},"rarity":"set"},"Air Relic Boots":{"internalName":"Air Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"agility":15},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"rawAgility":4,"airDamage":{"min":2,"raw":7,"max":9},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":145,"baseAirDefence":5},"rarity":"set"},"Cracheur":{"internalName":"Cracheur","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":70,"dropRestriction":"never","identified":true,"requirements":{"level":25,"classRequirement":"archer","intelligence":14},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"rawIntelligence":2,"spellDamage":6,"thorns":4,"airDamage":4},"base":{"baseDamage":{"min":8,"raw":8,"max":14},"baseWaterDamage":{"min":12,"raw":12,"max":22}},"rarity":"unique"},"Crossbolt":{"internalName":"Crossbolt","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":120,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":25,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Rotten Passage","type":"altar","coordinates":[321,32,-2035]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"mainAttackDamage":{"min":15,"raw":50,"max":65},"rawSpellDamage":{"min":-32,"raw":-25,"max":-17},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":60,"raw":60,"max":100}},"rarity":"rare"},"The Brigand's Brogues":{"internalName":"The Brigand's Brogues","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25,"dexterity":10,"agility":5},"powderSlots":1,"identifications":{"rawDexterity":4,"walkSpeed":{"min":4,"raw":14,"max":18},"stealing":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":145},"rarity":"rare"},"Creeper Mask":{"internalName":"Creeper Mask","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"allowCraftsman":true,"requirements":{"level":25},"identifications":{"thorns":10,"exploding":12},"base":{"baseHealth":120},"rarity":"unique"},"Laen's Curiosity":{"internalName":"Laen's Curiosity","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":25,"intelligence":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawIntelligence":5,"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseWaterDefence":6},"rarity":"rare"},"Fire Relic Boots":{"internalName":"Fire Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"defence":15},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"rawDefence":4,"fireDamage":{"min":2,"raw":6,"max":8},"fireDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":170,"baseFireDefence":5},"rarity":"set"},"Selchar's Famous Breeches":{"internalName":"Selchar's Famous Breeches","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":25},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"mainAttackDamage":7,"spellDamage":5,"xpBonus":7,"lootBonus":5},"base":{"baseHealth":125},"rarity":"unique"},"Head Knocker":{"internalName":"Head Knocker","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":45,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"mage","strength":18},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"330","name":"wand.earth2"}},"identifications":{"rawIntelligence":-3,"mainAttackDamage":{"min":1,"raw":4,"max":5},"rawMainAttackDamage":{"min":11,"raw":36,"max":47},"spellDamage":{"min":-16,"raw":-12,"max":-8},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":22,"raw":22,"max":30},"baseEarthDamage":{"min":22,"raw":22,"max":34}},"rarity":"unique"},"Light Jungle Wood Wand":{"internalName":"Light Jungle Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":34,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":12,"raw":12,"max":15}},"rarity":"common"},"Zjarr":{"internalName":"Zjarr","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":25,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":3,"spellDamage":{"min":-4,"raw":-3,"max":-2},"healthRegenRaw":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":20},"rarity":"unique"},"Light Jungle Wood Spear":{"internalName":"Light Jungle Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":43,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":18,"raw":18,"max":24}},"rarity":"common"},"Mage-Crafted Staff":{"internalName":"Mage-Crafted Staff","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":45,"dropRestriction":"never","identified":true,"requirements":{"level":25,"classRequirement":"mage","intelligence":10,"defence":5},"powderSlots":2,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":-20,"healthRegen":12,"healingEfficiency":8,"reflection":5},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseFireDamage":{"min":12,"raw":12,"max":18}},"rarity":"rare"},"Ventilator":{"internalName":"Ventilator","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25,"agility":15},"powderSlots":1,"identifications":{"walkSpeed":{"min":4,"raw":12,"max":16},"fireDamage":{"min":-10,"raw":-8,"max":-6},"airDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":100,"baseFireDefence":-6,"baseAirDefence":6},"rarity":"unique"},"Durum's Serenity":{"internalName":"Durum's Serenity","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":25,"strength":5,"intelligence":10},"lore":"Carried by the Durum Protector, this small necklace holds but an ounce of the vibrance and life of the Durum Isles.","dropMeta":{"name":"Bovine Barn","type":"altar","coordinates":[471,44,-2912]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":3,"rawIntelligence":5,"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":75,"baseEarthDefence":7,"baseWaterDefence":7},"rarity":"legendary"},"Staff of the Dark Vexations":{"internalName":"Staff of the Dark Vexations","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":50,"dropRestriction":"never","requirements":{"level":25,"classRequirement":"mage","dexterity":5,"intelligence":5,"defence":5},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawDexterity":4,"rawIntelligence":4,"rawDefence":4,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":13},"baseWaterDamage":{"min":6,"raw":6,"max":7},"baseFireDamage":{"min":4,"raw":4,"max":9}},"rarity":"set"},"Almuj's Walker":{"internalName":"Almuj's Walker","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25},"powderSlots":3,"lore":"There used to be a constant battle between Almuj's thieves over these feather-light, gold-plated boots, until one day they were stolen by an unknown pickpocket and never seen again.","identifications":{"rawDexterity":7,"rawAgility":7,"walkSpeed":{"min":8,"raw":25,"max":33},"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":200},"rarity":"legendary"},"Thunder Relic Boots":{"internalName":"Thunder Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"dexterity":15},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"rawDexterity":4,"thunderDamage":{"min":3,"raw":10,"max":13},"thunderDefence":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":135,"baseThunderDefence":3},"rarity":"set"},"Water Relic Boots":{"internalName":"Water Relic Boots","type":"armour","armourType":"boots","armourColor":"rgb(51,153,255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"normal","requirements":{"level":25,"intelligence":15},"powderSlots":2,"dropMeta":{"name":"Relic Guardian","type":"miniboss","coordinates":[707,75,-1819,80]},"identifications":{"rawIntelligence":4,"waterDamage":{"min":1,"raw":4,"max":5},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":130,"baseWaterDefence":6},"rarity":"set"},"Conductor":{"internalName":"Conductor","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25,"dexterity":10,"intelligence":5},"powderSlots":1,"lore":"Using an unorthodox method of smithing, these copper leggings are insulated with an extremely conductive blend of liquid to improve electrical discharge.","identifications":{"rawDexterity":8,"spellDamage":{"min":4,"raw":14,"max":18},"thorns":{"min":3,"raw":9,"max":12},"exploding":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":180,"baseThunderDefence":-10,"baseWaterDefence":-10},"rarity":"legendary"},"Obolus":{"internalName":"Obolus","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","requirements":{"level":25},"powderSlots":2,"dropMeta":{"name":"Rotten Passage","type":"altar","coordinates":[321,32,-2035]},"identifications":{"rawDefence":9,"healthRegenRaw":{"min":13,"raw":42,"max":55},"lifeSteal":{"min":11,"raw":38,"max":49},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":9,"raw":30,"max":39}},"base":{"baseEarthDefence":25,"baseThunderDefence":25,"baseWaterDefence":25,"baseFireDefence":35,"baseAirDefence":25},"rarity":"legendary"},"Nettle":{"internalName":"Nettle","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":25,"strength":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"healthRegen":{"min":-5,"raw":-4,"max":-3},"poison":{"min":12,"raw":40,"max":52},"earthDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Flux and Flow":{"internalName":"Flux and Flow","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":91,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"shaman","dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":8,"raw":27,"max":35},"1stSpellCost":{"min":18,"raw":14,"max":10},"thunderDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":28,"raw":28,"max":34},"baseThunderDamage":{"min":12,"raw":12,"max":14}},"rarity":"unique"},"Worn Golden Helmet":{"internalName":"Worn Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":25},"powderSlots":1,"base":{"baseHealth":92},"rarity":"common"},"Beachside Conch":{"internalName":"Beachside Conch","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":81,"dropRestriction":"normal","requirements":{"level":25,"classRequirement":"shaman","intelligence":8},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"healthRegenRaw":{"min":2,"raw":7,"max":9},"healingEfficiency":{"min":3,"raw":10,"max":13},"waterDamage":{"min":2,"raw":8,"max":10},"waterDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":51,"raw":51,"max":57}},"rarity":"set"},"Portable Buoys":{"internalName":"Portable Buoys","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":25},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"reflection":9,"walkSpeed":4,"waterDefence":12},"base":{"baseHealth":130,"baseWaterDefence":7},"rarity":"unique"},"Intestine Lasso":{"internalName":"Intestine Lasso","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":108,"dropRestriction":"never","requirements":{"level":25,"classRequirement":"shaman"},"powderSlots":1,"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"identifications":{"rawDamage":{"min":11,"raw":35,"max":46},"4thSpellCost":{"min":-13,"raw":-45,"max":-58},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":50,"raw":50,"max":55}},"rarity":"rare"},"Aged Medallion":{"internalName":"Aged Medallion","type":"ingredient","requirements":{"level":25,"skills":["jeweling","weaponsmithing"]},"icon":{"format":"legacy","value":"175:0"},"identifications":{"xpBonus":{"min":3,"raw":3,"max":4},"spellDamage":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-51000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":8,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Undead Commander","coords":[320,42,-1974,50]}]},"Sticky Fern":{"internalName":"Sticky Fern","type":"ingredient","requirements":{"level":25,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"lifeSteal":{"min":5,"raw":5,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-70,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Undead Explorer","coords":[[-170,35,-2034,0],[-199,38,-1984,0],[-179,23,-1995,0],[-167,25,-2006,0],[-159,23,-1991,0]]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Reinforced Leather":{"internalName":"Reinforced Leather","type":"ingredient","requirements":{"level":25,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawHealth":{"min":45,"raw":45,"max":56},"rawStrength":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":6,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Durum Protector β","coords":null}]},"Piranha Jaw":{"internalName":"Piranha Jaw","type":"ingredient","requirements":{"level":25,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":6},"thunderDamage":{"min":3,"raw":3,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lung Piranha","coords":[[656,31,-2367,5],[678,30,-2372,6],[678,30,-2372,6],[681,31,-2343,5]]}]},"Unsettling Soul":{"internalName":"Unsettling Soul","type":"ingredient","requirements":{"level":25,"skills":["scribing"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"manaSteal":{"min":4,"raw":4,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":75,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spirit of Vexation","coords":null}]},"Shattered Memory Shard":{"internalName":"Shattered Memory Shard","type":"ingredient","requirements":{"level":25,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"airDefence":{"min":3,"raw":3,"max":7},"airDamage":{"min":5,"raw":5,"max":9}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-50000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":10},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Crawler Sludge":{"internalName":"Crawler Sludge","type":"ingredient","requirements":{"level":25,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"walkSpeed":{"min":-4,"raw":-4,"max":-2},"mainAttackDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mine Crawler","coords":[[812,7,-1242,4],[804,5,-1217,4],[760,5,-1178,4],[783,6,-1183,4],[795,7,-1163,4],[805,10,-1141,4],[814,8,-1169,4]]}]},"Beef Tongue":{"internalName":"Beef Tongue","type":"ingredient","requirements":{"level":25,"skills":["cooking"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"rawHealth":{"min":24,"raw":24,"max":36},"healthRegen":{"min":5,"raw":5,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Durum Protector β","coords":null}]},"Mysterious Mist":{"internalName":"Mysterious Mist","type":"ingredient","requirements":{"level":25,"skills":["scribing"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"rawAgility":{"min":4,"raw":4,"max":4},"spellDamage":{"min":4,"raw":4,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":-100,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]},{"name":"Skelemancer","coords":[249,45,-1937,120]},{"name":"Bonesy","coords":[-7,59,-2069,100]}]},"Fake Tooth":{"internalName":"Gold Tooth","type":"ingredient","requirements":{"level":25,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"lootBonus":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mutineer","coords":[[597,13,-2020,10],[457,23,-2021,10],[446,37,-2063,7],[431,28,-2022,10]]},{"name":"Cursed Mutineer","coords":[612,35,-2175,30]},{"name":"Cadaverous Pirate","coords":[484,58,-2107,16]},{"name":"Drunk Bandit","coords":[1315,92,-1678,7]},{"name":"Mesa Outlaw","coords":[1315,92,-1678,7]},{"name":"Dead Prospector","coords":[[1049,34,-1369,15],[1068,31,-1302,10],[1106,31,-1280,10],[1081,34,-1281,18],[1081,35,-1281,18],[1058,34,-1256,10],[1078,43,-1242,10],[1035,46,-1251,10],[998,44,-1249,20],[1430,30,-1269,10],[1471,130,-1410,12],[1477,129,-1426,12],[1469,133,-1450,12]]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]},{"name":"Rymek Citizen","coords":[[1265,30,-1280,5],[1296,31,-1252,5],[1296,31,-1268,5],[1303,31,-1311,10],[1303,31,-1311,10],[1345,31,-1315,5],[1332,31,-1336,5],[1311,31,-1347,5],[1273,31,-1327,5],[1240,31,-1338,5]]}]},"Snake Tooth":{"internalName":"Snake Tooth","type":"ingredient","requirements":{"level":25,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":4},"poison":{"min":28,"raw":28,"max":33}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Savannah Snake","coords":[[772,68,-2332,10],[772,68,-2332,10],[772,68,-2332,10],[741,43,-2244,5],[741,43,-2244,5],[741,43,-2244,5],[769,36,-2299,6],[801,15,-2279,8],[801,15,-2279,8],[801,15,-2279,8],[815,30,-2347,5],[833,29,-2355,5]]}]},"Conscription Letter":{"internalName":"Conscription Letter","type":"ingredient","requirements":{"level":25,"skills":["scribing"]},"icon":{"format":"legacy","value":"339:0"},"identifications":{"stealing":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":-50,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mutineer","coords":[[597,13,-2020,10],[457,23,-2021,10],[446,37,-2063,7],[431,28,-2022,10]]},{"name":"Cursed Mutineer","coords":[612,35,-2175,30]}]},"Savannah Stone":{"internalName":"Savannah Stone","type":"ingredient","requirements":{"level":25,"skills":["jeweling"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":4},"rawDefence":{"min":1,"raw":1,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-36000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":4,"agilityRequirement":0},"droppedBy":[{"name":"Crazy Cat Lady","coords":[[668,81,-1889,60],[769,76,-1791,70],[778,79,-1718,50],[805,74,-2077,60],[735,76,-1763,60],[845,71,-1757,60]]},{"name":"Highwayman","coords":[701,83,-1886,20]}]},"Corrupted Bracken":{"internalName":"Corrupted Bracken","type":"ingredient","requirements":{"level":25,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"rawFireMainAttackDamage":{"min":11,"raw":11,"max":13},"healingEfficiency":{"min":-5,"raw":-5,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-53000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Burning Bronco","coords":[[253,84,-1085,70],[253,84,-1085,70],[426,82,-1345,60],[529,70,-1330,100],[529,70,-1330,100],[529,70,-1330,100],[269,87,-1209,20],[374,82,-1334,30],[88,67,-1316,20]]},{"name":"Corrupt Stone","coords":[198,51,-1291,35]},{"name":"Blazing Construct","coords":[251,65,-1279,35]},{"name":"Corrupted Globule","coords":[198,51,-1291,35]},{"name":"Basin Wight","coords":[[264,38,-1343,15],[230,42,-1338,18],[234,65,-1348,6],[254,63,-1347,6],[326,56,-1251,6],[299,57,-1245,4],[250,60,-1243,6],[239,46,-1250,6],[239,18,-1322,20],[217,38,-1385,15]]}]},"Ocelot Tail":{"internalName":"Ocelot Tail","type":"ingredient","requirements":{"level":25,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"369:0"},"identifications":{"walkSpeed":{"min":1,"raw":1,"max":3},"rawStrength":{"min":-2,"raw":-2,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Savannah Ocelot","coords":[[743,75,-1737,5],[732,76,-1844,5],[670,77,-1925,5],[783,72,-2014,5],[788,72,-1957,5],[813,73,-1833,5],[833,73,-1719,5],[725,71,-1669,5]]},{"name":"Savannah Ocelot","coords":[[600,82,-1798,20],[799,69,-1991,15],[787,73,-1927,20]]}]},"Gathering Rod T4":{"internalName":"Gathering Rod 4","type":"tool","toolType":"rod","gatheringSpeed":45,"identified":true,"requirements":{"level":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"57","name":"gatheringTool.rod4"}},"rarity":"common"},"Gathering Axe T4":{"internalName":"Gathering Axe 4","type":"tool","toolType":"axe","gatheringSpeed":45,"identified":true,"requirements":{"level":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"47","name":"gatheringTool.axe4"}},"rarity":"common"},"Gathering Scythe T4":{"internalName":"Gathering Scythe 4","type":"tool","toolType":"scythe","gatheringSpeed":45,"identified":true,"requirements":{"level":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"62","name":"gatheringTool.scythe4"}},"rarity":"common"},"Gathering Pickaxe T4":{"internalName":"Gathering Pickaxe 4","type":"tool","toolType":"pickaxe","gatheringSpeed":45,"identified":true,"requirements":{"level":25},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"52","name":"gatheringTool.pickaxe4"}},"rarity":"common"},"Putrid":{"internalName":"Putrid","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":65,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":25,"classRequirement":"mage"},"powderSlots":1,"lore":"\"Leave us down here to die, why don't you all. Just turn us into another statistic and be done, huh?\" -Ragamal, Nemract Sewer Dweller","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawHealth":130,"poison":120,"walkSpeed":-3},"base":{"baseEarthDamage":{"min":15,"raw":15,"max":20},"baseWaterDamage":{"min":12,"raw":12,"max":16}},"rarity":"rare"},"Effervescence":{"internalName":"Effervescence","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":74,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"mage","intelligence":24},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.water1"}},"identifications":{"rawIntelligence":8,"spellDamage":{"min":7,"raw":22,"max":29},"healthRegenRaw":{"min":-18,"raw":-14,"max":-10},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":0,"raw":0,"max":4},"baseWaterDamage":{"min":0,"raw":0,"max":44}},"rarity":"legendary"},"Equilibrium":{"internalName":"Equilibrium","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"strength":2,"dexterity":2,"intelligence":2,"defence":2,"agility":2},"powderSlots":2,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2},"base":{"baseHealth":120,"baseEarthDefence":8,"baseThunderDefence":8,"baseWaterDefence":8,"baseFireDefence":8,"baseAirDefence":8},"rarity":"unique"},"Bulldozer":{"internalName":"Bulldozer","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":116,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"assassin","strength":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"260","name":"dagger.earth1"}},"identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"rawMainAttackDamage":{"min":32,"raw":105,"max":137},"rawHealth":{"min":-130,"raw":-100,"max":-70},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":6,"raw":20,"max":26},"earthDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":60,"raw":60,"max":90},"baseEarthDamage":{"min":55,"raw":55,"max":75}},"rarity":"legendary"},"Cyclops' Spear":{"internalName":"Cyclops' Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":64,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"warrior","intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawIntelligence":7,"spellDamage":{"min":2,"raw":6,"max":8},"rawSpellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":-10,"raw":-8,"max":-6},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":16,"raw":16,"max":18},"baseWaterDamage":{"min":12,"raw":12,"max":16}},"rarity":"rare"},"Relay":{"internalName":"Relay","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"dexterity":15},"powderSlots":1,"identifications":{"rawStrength":-4,"rawDexterity":5,"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":160,"baseEarthDefence":-15,"baseThunderDefence":15},"rarity":"rare"},"Gilded Mail":{"internalName":"Gilded Mail","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":100},"rarity":"unique"},"Nether Cap":{"internalName":"Nether Cap","type":"armour","armourType":"helmet","armourColor":"rgb(133,57,57)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":24,"defence":10},"powderSlots":1,"identifications":{"rawDefence":4,"exploding":{"min":2,"raw":8,"max":10},"lootBonus":{"min":3,"raw":9,"max":12}},"base":{"baseHealth":150,"baseWaterDefence":-6,"baseFireDefence":6},"rarity":"set"},"Eel Spear":{"internalName":"Eel Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":56,"dropRestriction":"never","identified":true,"requirements":{"level":24,"classRequirement":"warrior","intelligence":10},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"rawSpellDamage":24,"walkSpeed":5,"xpBonus":6},"base":{"baseDamage":{"min":9,"raw":9,"max":13},"baseWaterDamage":{"min":6,"raw":6,"max":8}},"rarity":"unique"},"Alumia":{"internalName":"Alumia","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"dexterity":8},"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":6,"max":8},"earthDamage":{"min":-13,"raw":-10,"max":-7},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":150,"baseEarthDefence":-5,"baseThunderDefence":10},"rarity":"rare"},"The Saltwater Rune":{"internalName":"The Saltwater Rune","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":110,"dropRestriction":"never","identified":true,"requirements":{"level":24,"classRequirement":"shaman","strength":8,"intelligence":12},"powderSlots":2,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"407","name":"relik.water2"}},"identifications":{"spellDamage":-12,"healingEfficiency":10,"raw3rdSpellCost":-10,"waterDamage":20,"earthDefence":15,"waterDefence":15},"base":{"baseDamage":{"min":80,"raw":80,"max":95},"baseEarthDamage":{"min":40,"raw":40,"max":50}},"rarity":"rare"},"Sunblock":{"internalName":"Sunblock","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"defence":5},"powderSlots":1,"identifications":{"healthRegen":{"min":4,"raw":14,"max":18},"reflection":{"min":2,"raw":6,"max":8},"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":124,"baseWaterDefence":-7,"baseFireDefence":10},"rarity":"unique"},"Nutrition":{"internalName":"Nutrition","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":24,"strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"rarity":"rare"},"Saint's Scar":{"internalName":"Saint's Scar","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":68,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"assassin","strength":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"261","name":"dagger.earth2"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-6,"raw":-5,"max":-3},"poison":{"min":26,"raw":85,"max":111},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":19,"raw":19,"max":24},"baseEarthDamage":{"min":8,"raw":8,"max":15}},"rarity":"unique"},"Tricorne":{"internalName":"Tricorne","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":24},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"identifications":{"rawAgility":1,"healthRegenRaw":5,"walkSpeed":7,"lootBonus":7},"base":{"baseHealth":115},"rarity":"unique"},"Blade of Wisdom":{"internalName":"Blade of Wisdom","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":45,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"warrior","intelligence":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"rawIntelligence":4,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-6,"raw":-5,"max":-3},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":12,"raw":12,"max":16},"baseWaterDamage":{"min":12,"raw":12,"max":20}},"rarity":"unique"},"Karraska":{"internalName":"Karraska","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"strength":8},"powderSlots":2,"identifications":{"rawStrength":8,"rawAgility":-2,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":-6,"raw":-5,"max":-3},"rawHealth":{"min":11,"raw":35,"max":46},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":5,"max":7},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":140,"baseAirDefence":-7},"rarity":"rare"},"The Wildwing":{"internalName":"The Wildwing","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":80,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"archer","agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":10,"raw":10,"max":23},"baseAirDamage":{"min":15,"raw":15,"max":30}},"rarity":"unique"},"Darkiron Ring":{"internalName":"Darkiron Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":24,"defence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"rawDefence":4,"healthRegenRaw":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"rarity":"rare"},"Jackal Crest":{"internalName":"Jackal Crest","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":24},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"181","name":"necklace.fire1"}},"identifications":{"healthRegen":{"min":3,"raw":9,"max":12},"healthRegenRaw":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":20},"rarity":"unique"},"Boulder":{"internalName":"Boulder","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":24,"strength":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawMainAttackDamage":{"min":2,"raw":8,"max":10},"rawSpellDamage":{"min":-3,"raw":-2,"max":-1},"earthDefence":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":6},"rarity":"unique"},"Tsunami":{"internalName":"Tsunami","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"intelligence":30},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"thunderDamage":{"min":-10,"raw":-8,"max":-6},"waterDamage":{"min":2,"raw":5,"max":7},"thunderDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":100,"baseThunderDefence":-15,"baseWaterDefence":15},"rarity":"legendary"},"Dead Samurai's Plate":{"internalName":"Dead Samurai's Plate","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":24,"agility":10},"powderSlots":1,"lore":"\"We get a lot of weirdos coming from Gavel by airship. That plate mail looked unusably ornate!\" -Calo, Private Airship Operator","dropMeta":{"name":"Underworld Crypt","type":"dungeonMerchant","coordinates":[284,18,-1952]},"identifications":{"walkSpeed":15,"xpBonus":8,"thunderDamage":15,"airDamage":10},"base":{"baseHealth":115,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":12},"rarity":"rare"},"Cruel Sun":{"internalName":"Cruel Sun","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":133,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"shaman","defence":15},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"401","name":"relik.fire2"}},"identifications":{"rawDefence":10,"mainAttackDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-13,"raw":-10,"max":-7},"lifeSteal":{"min":6,"raw":20,"max":26},"raw1stSpellCost":{"min":13,"raw":10,"max":7},"exploding":{"min":9,"raw":30,"max":39},"fireDamage":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":75,"raw":75,"max":85},"baseFireDamage":{"min":75,"raw":75,"max":85}},"rarity":"legendary"},"Stave of Tribute":{"internalName":"Stave of Tribute","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":41,"dropRestriction":"normal","requirements":{"level":24,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":17,"raw":17,"max":23}},"rarity":"unique"},"Villager Pants":{"internalName":"Villager Pants","type":"armour","armourType":"leggings","armourColor":"rgb(142,96,96)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":24},"powderSlots":1,"identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":120},"rarity":"set"},"Diode":{"internalName":"Diode","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"dexterity":10},"powderSlots":2,"identifications":{"rawDexterity":5,"reflection":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":1,"raw":4,"max":5},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":140},"rarity":"rare"},"Aged Golden Chestplate":{"internalName":"Aged Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24},"base":{"baseHealth":86},"rarity":"common"},"The Archaeologist":{"internalName":"The Archaeologist","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"strength":10},"powderSlots":1,"identifications":{"rawStrength":4,"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8},"earthDamage":{"min":2,"raw":7,"max":9},"earthDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":130,"baseEarthDefence":25,"baseAirDefence":-15},"rarity":"unique"},"Stamina":{"internalName":"Stamina","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24},"powderSlots":1,"identifications":{"rawDefence":4,"healthRegenRaw":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":120,"baseAirDefence":5},"rarity":"unique"},"Gilded Cuff":{"internalName":"Gilded Cuff","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":24},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"lootBonus":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Dark Diadem":{"internalName":"Dark Diadem","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":24,"quest":"The Dark Descent"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"181","name":"necklace.fire1"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseWaterDefence":-20},"rarity":"rare"},"Back Protector":{"internalName":"Back Protector","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":24,"strength":5},"powderSlots":2,"identifications":{"rawDefence":5,"thorns":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":130,"baseWaterDefence":-6},"rarity":"unique"},"Tendon Clump":{"internalName":"Tendon Clump","type":"ingredient","requirements":{"level":24,"skills":["cooking","scribing"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"rawAgility":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Eyeball","coords":null}]},"Residual Spirit":{"internalName":"Residual Spirit","type":"ingredient","requirements":{"level":24,"skills":["alchemism"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"lifeSteal":{"min":8,"raw":8,"max":10},"thunderDamage":{"min":6,"raw":6,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-99,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":10,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Cultist","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]},{"name":"Dark Cultist","coords":[[-592,114,-1378,0],[-566,124,-1373,0],[-631,102,-1356,0],[-646,95,-1370,0]]},{"name":"Spirit of Vexation","coords":null},{"name":"Spirit of Vexation","coords":null}]},"Cracked Geode":{"internalName":"Cracked Geode","type":"ingredient","requirements":{"level":24,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Geodesic Cluster","coords":[[666,42,-2360,0],[667,40,-2365,0],[665,36,-2343,0],[669,37,-2345,0],[668,40,-2343,0],[674,37,-2341,0]]}]},"Coeur Brise":{"internalName":"Coeur Brise","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":24,"defence":12},"powderSlots":2,"lore":"Left to brittle introspection, love unrequited stings the most when it brings down something built to last.","identifications":{"rawStrength":3,"rawIntelligence":3,"rawDefence":-3,"healthRegenRaw":{"min":2,"raw":8,"max":10},"manaRegen":{"min":3,"raw":10,"max":13},"reflection":{"min":5,"raw":15,"max":20},"elementalDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseHealth":125,"baseFireDefence":-5},"rarity":"rare"},"Regrets":{"internalName":"Regrets","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":58,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"assassin","intelligence":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"spellDamage":{"min":4,"raw":12,"max":16},"rawSpellDamage":{"min":6,"raw":21,"max":27}},"base":{"baseDamage":{"min":12,"raw":12,"max":16},"baseWaterDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Nymeria":{"internalName":"Nymeria","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":62,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"assassin","dexterity":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawAgility":3,"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":10,"raw":10,"max":12},"baseThunderDamage":{"min":10,"raw":10,"max":18}},"rarity":"unique"},"Swamp Treads":{"internalName":"Swamp Treads","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":23},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"poison":35,"thorns":7,"walkSpeed":-3,"stealing":2},"base":{"baseHealth":105},"rarity":"unique"},"Lake":{"internalName":"Lake","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":23},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":3,"rawSpellDamage":{"min":2,"raw":5,"max":7},"waterDamage":{"min":1,"raw":2,"max":3},"waterDefence":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Gestation":{"internalName":"Gestation","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":105,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"shaman","strength":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"rawStrength":5,"healthRegenRaw":{"min":8,"raw":25,"max":33},"rawHealth":{"min":18,"raw":60,"max":78},"1stSpellCost":{"min":18,"raw":14,"max":10},"raw3rdSpellCost":{"min":-1,"raw":-5,"max":-6},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":42,"raw":42,"max":44},"baseEarthDamage":{"min":21,"raw":21,"max":33}},"rarity":"rare"},"Regal Chaps":{"internalName":"Regal Chaps","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":8,"max":10},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":90},"rarity":"unique"},"Hunter":{"internalName":"Hunter","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":50,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"warrior","dexterity":12},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"walkSpeed":{"min":1,"raw":4,"max":5},"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":5,"max":7},"earthDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":6,"raw":6,"max":9},"baseThunderDamage":{"min":2,"raw":2,"max":15}},"rarity":"unique"},"Katoa's Warmth":{"internalName":"Katoa's Warmth","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23},"powderSlots":2,"lore":"Brilliantly golden as the crops from the humble farm, its mere presence fills stomachs and brings comfort, but only to those who are modest and generous.","identifications":{"rawMainAttackDamage":{"min":-34,"raw":-26,"max":-18},"rawSpellDamage":{"min":-32,"raw":-25,"max":-17},"healthRegen":{"min":14,"raw":45,"max":59},"rawHealth":{"min":23,"raw":75,"max":98}},"base":{"baseHealth":185,"baseFireDefence":15},"rarity":"legendary"},"Aneroid":{"internalName":"Aneroid","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23,"strength":7},"powderSlots":1,"identifications":{"rawStrength":5,"rawIntelligence":-2,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":95,"baseEarthDefence":10,"baseAirDefence":-5},"rarity":"unique"},"Average Golden Boots":{"internalName":"Average Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":23},"powderSlots":1,"base":{"baseHealth":73},"rarity":"common"},"Ancient Battle Crossbow":{"internalName":"Ancient Battle Crossbow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":124,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"archer","strength":45},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"195","name":"bow.earth2"}},"identifications":{"rawStrength":15,"rawDexterity":8,"mainAttackDamage":{"min":7,"raw":23,"max":30},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":65,"raw":65,"max":85},"baseEarthDamage":{"min":55,"raw":55,"max":95}},"rarity":"rare"},"Celestial":{"internalName":"Celestial","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":50,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"mage","agility":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"reflection":{"min":1,"raw":3,"max":4},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":7,"raw":7,"max":16},"baseAirDamage":{"min":6,"raw":6,"max":11}},"rarity":"rare"},"Harpoon":{"internalName":"Harpoon","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":66,"dropRestriction":"never","identified":true,"requirements":{"level":23,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Selchar","type":"merchant","coordinates":[99,70,-3193]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"206","name":"bow.multi1"}},"identifications":{"rawDexterity":3,"mainAttackDamage":4,"spellDamage":8,"walkSpeed":-5,"thunderDefence":-7},"base":{"baseDamage":{"min":74,"raw":74,"max":84}},"rarity":"unique"},"Meridian":{"internalName":"Meridian","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":101,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"archer","intelligence":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"rawIntelligence":7,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":4,"raw":12,"max":16},"waterDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":28,"raw":28,"max":32},"baseWaterDamage":{"min":14,"raw":14,"max":24}},"rarity":"rare"},"Beachside Headwrap":{"internalName":"Beachside Headwrap","type":"armour","armourType":"helmet","armourColor":"rgb(232,212,139)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":23,"intelligence":5},"powderSlots":2,"identifications":{"rawIntelligence":3,"rawMaxMana":{"min":6,"raw":20,"max":26},"lootBonus":{"min":2,"raw":8,"max":10},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":130,"baseWaterDefence":6},"rarity":"set"},"Big Ol' Hammer":{"internalName":"Big Ol' Hammer","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":51,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"warrior","strength":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":5,"rawAgility":-4,"mainAttackDamage":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseEarthDamage":{"min":18,"raw":18,"max":25}},"rarity":"unique"},"Skeletal Legs":{"internalName":"Skeletal Legs","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":23,"quest":"Pit of the Dead"},"powderSlots":1,"identifications":{"rawDefence":-3,"rawHealth":{"min":-39,"raw":-30,"max":-21},"poison":{"min":12,"raw":41,"max":53},"lifeSteal":{"min":3,"raw":11,"max":14},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":144},"rarity":"rare"},"Led Balloon":{"internalName":"Led Balloon","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":81,"dropRestriction":"normal","requirements":{"level":23,"classRequirement":"shaman","strength":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":5,"max":7},"sprint":{"min":-16,"raw":-12,"max":-8},"airDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":97,"raw":97,"max":114},"baseEarthDamage":{"min":51,"raw":51,"max":57}},"rarity":"unique"},"Aged Golden Leggings":{"internalName":"Aged Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23},"base":{"baseHealth":80},"rarity":"common"},"Hertz":{"internalName":"Hertz","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23,"dexterity":10},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":90,"baseEarthDefence":-10,"baseThunderDefence":8},"rarity":"unique"},"Sound of Silence":{"internalName":"Sound of Silence","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":23,"agility":12},"powderSlots":1,"identifications":{"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseAirDefence":10},"rarity":"unique"},"The Fallen":{"internalName":"The Fallen","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":32,"dropRestriction":"never","identified":true,"requirements":{"level":23,"classRequirement":"warrior"},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"rawDefence":3,"rawHealth":50,"xpBonus":6},"base":{"baseDamage":{"min":4,"raw":4,"max":10},"baseFireDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Carapace Fragment":{"internalName":"Carapace Fragment","type":"ingredient","requirements":{"level":23,"skills":["armouring","woodworking"]},"icon":{"format":"legacy","value":"265:0"},"identifications":{"walkSpeed":{"min":4,"raw":4,"max":6},"rawMainAttackDamage":{"min":8,"raw":8,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":12},"droppedBy":[{"name":"Coast Lobster","coords":[615,34,-2190,4]},{"name":"Beach Crab","coords":[[593,35,-2125,5],[496,35,-2073,5],[509,48,-1969,5],[562,34,-2127,5]]}]},"Ocelot Pelt":{"internalName":"Ocelot Pelt","type":"ingredient","requirements":{"level":23,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"walkSpeed":{"min":0,"raw":0,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":4},"droppedBy":[{"name":"Savannah Ocelot","coords":[[743,75,-1737,5],[732,76,-1844,5],[670,77,-1925,5],[783,72,-2014,5],[788,72,-1957,5],[813,73,-1833,5],[833,73,-1719,5],[725,71,-1669,5]]},{"name":"Savannah Ocelot","coords":[[600,82,-1798,20],[799,69,-1991,15],[787,73,-1927,20]]},{"name":"Crazy Cat Lady","coords":[[668,81,-1889,60],[769,76,-1791,70],[778,79,-1718,50],[805,74,-2077,60],[735,76,-1763,60],[845,71,-1757,60]]}]},"Corn Husk":{"internalName":"Corn Husk","type":"ingredient","requirements":{"level":23,"skills":["cooking","scribing"]},"icon":{"format":"legacy","value":"296:0"},"identifications":{"healthRegenRaw":{"min":3,"raw":3,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-210,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Durum Scarecrow","coords":[[514,41,-2815,15],[564,39,-2959,15],[514,41,-2815,15],[564,39,-2959,15]]},{"name":"Durum Protector β","coords":null}]},"Haleva Plant":{"internalName":"Haleva Plant","type":"ingredient","requirements":{"level":23,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"38:3"},"identifications":{"manaRegen":{"min":4,"raw":4,"max":6},"manaSteal":{"min":2,"raw":2,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":-98,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fishy Zombie","coords":[[86,46,-1986,5],[17,53,-1879,5]]}]},"Seagrass":{"internalName":"Seagrass","type":"ingredient","requirements":{"level":23,"skills":["cooking"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":4},"walkSpeed":{"min":-4,"raw":-4,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":-150,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cursed Pirate","coords":[919,40,-2398,2]},{"name":"Island Crab","coords":[[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]},{"name":"Sturdy Crab","coords":[[-210,41,-2722,2],[-216,39,-2741,2],[-242,37,-2764,2],[-231,56,-2751,2],[-223,58,-2716,2],[-282,35,-2676,2]]}]},"Shredded Bone":{"internalName":"Shredded Bone","type":"ingredient","requirements":{"level":23,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"thorns":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Chamber Lurker","coords":[[549,40,-1214,10],[507,15,-1245,10],[537,16,-1267,10],[560,16,-1260,10]]}]},"River Clay":{"internalName":"River Clay","type":"ingredient","requirements":{"level":23,"skills":["jeweling","tailoring","armouring"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"mainAttackDamage":{"min":-4,"raw":-4,"max":-2},"waterDamage":{"min":3,"raw":3,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Turtle","coords":[[234,35,-2105,6],[150,43,-2042,6],[127,42,-2057,5],[32,52,-1869,4],[20,53,-1854,3],[9,54,-1845,5],[326,37,-1813,6],[312,31,-1826,9],[271,27,-1820,6],[284,33,-1785,5]]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Spider Eggs":{"internalName":"Spider Eggs","type":"ingredient","requirements":{"level":23,"skills":["jeweling","scribing"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"poison":{"min":8,"raw":8,"max":10}},"tier":0,"consumableOnlyIDs":{"duration":-48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Tunnel Spider","coords":[[783,12,-1203,3],[750,10,-1195,5],[768,12,-1159,3],[783,12,-1139,3],[833,12,-1167,3]]}]},"Fuming Lava Rock":{"internalName":"Fuming Lava Rock","type":"ingredient","requirements":{"level":23,"skills":["weaponsmithing","armouring","jeweling"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":4},"exploding":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":15,"agilityRequirement":0},"droppedBy":[{"name":"Lava Infused Miner","coords":[332,50,-1208,7]},{"name":"Fuming Ferrite","coords":[[710,75,-1175,13],[718,75,-1178,10]]},{"name":"Blazing Host","coords":[1008,38,-1426,3]},{"name":"Hothead","coords":[989,36,-1425,0]}]},"Web Plate":{"internalName":"Web Plate","type":"armour","armourType":"chestplate","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":22},"powderSlots":1,"lore":"\"I just need a little more spider silk to finish this vest!\" -Lacrona, Detlas Tailor, found eaten by Nivla spiders ","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"identifications":{"lifeSteal":16,"manaSteal":8,"walkSpeed":-10,"earthDamage":5},"base":{"baseHealth":50,"baseEarthDefence":5,"baseFireDefence":-10},"rarity":"legendary"},"Granite-Hewn Wand":{"internalName":"Granite-hewn Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":32,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":17,"raw":17,"max":25}},"rarity":"common"},"Frankenstein":{"internalName":"Frankenstein","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":35,"dropRestriction":"never","identified":true,"requirements":{"level":22,"classRequirement":"mage","dexterity":5},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"rawStrength":3,"healthRegen":-5,"earthDamage":7,"thunderDamage":7},"base":{"baseDamage":{"min":6,"raw":6,"max":8},"baseThunderDamage":{"min":2,"raw":2,"max":12}},"rarity":"unique"},"Granite-Hewn Relik":{"internalName":"Granite-hewn Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":60,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":38,"raw":38,"max":42}},"rarity":"common"},"Halbert":{"internalName":"Halbert","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":70,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"identifications":{"rawStrength":8,"mainAttackDamage":{"min":2,"raw":6,"max":8},"spellDamage":{"min":-8,"raw":-6,"max":-4},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":36,"raw":36,"max":58}},"rarity":"rare"},"Granite-Hewn Spear":{"internalName":"Granite-hewn Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":42,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":42,"raw":42,"max":59}},"rarity":"common"},"Dandelion":{"internalName":"Dandelion","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22},"powderSlots":1,"identifications":{"rawSpellDamage":{"min":3,"raw":10,"max":13},"healthRegen":{"min":5,"raw":15,"max":20},"thorns":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":100,"baseEarthDefence":5,"baseWaterDefence":5,"baseFireDefence":-6,"baseAirDefence":-6},"rarity":"unique"},"Aged Golden Boots":{"internalName":"Aged Golden Boots","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22},"base":{"baseHealth":78},"rarity":"common"},"Raecard":{"internalName":"Raecard","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22,"strength":2,"dexterity":2,"intelligence":2,"defence":2,"agility":2},"powderSlots":2,"identifications":{"rawHealth":{"min":33,"raw":110,"max":143},"lootBonus":{"min":5,"raw":15,"max":20},"elementalDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":35,"baseEarthDefence":4,"baseThunderDefence":4,"baseWaterDefence":4,"baseFireDefence":4,"baseAirDefence":4},"rarity":"rare"},"Granite-Hewn Bow":{"internalName":"Granite-hewn Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":63,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":68,"raw":68,"max":84}},"rarity":"common"},"Sayleros' Brother's Misfortune":{"internalName":"Sayleros' Brother's Misfortune","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":22},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawStrength":4,"rawDexterity":-2,"rawDefence":4,"rawAgility":-2},"rarity":"rare"},"Albakaya":{"internalName":"Albakaya","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":39,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.fire1"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"rawHealth":{"min":12,"raw":40,"max":52},"manaRegen":{"min":2,"raw":6,"max":8},"waterDefence":{"min":-13,"raw":-10,"max":-7},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":6,"raw":6,"max":12},"baseFireDamage":{"min":8,"raw":8,"max":12}},"rarity":"unique"},"Fisher's Mail":{"internalName":"Fisher's Mail","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":22},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"rawDexterity":2,"healthRegen":8,"xpBonus":4,"lootBonus":8},"base":{"baseHealth":82,"baseWaterDefence":4},"rarity":"unique"},"Mystic Sandals":{"internalName":"Mystic Sandals","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22,"intelligence":10},"powderSlots":1,"identifications":{"rawIntelligence":4,"rawSpellDamage":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8},"rawMaxMana":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":85,"baseThunderDefence":-10,"baseWaterDefence":10},"rarity":"unique"},"Mustard Helmet":{"internalName":"Mustard Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22,"strength":3,"intelligence":3},"identifications":{"exploding":{"min":1,"raw":3,"max":4},"rawMaxMana":{"min":6,"raw":20,"max":26},"waterDamage":{"min":2,"raw":5,"max":7},"earthDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":90,"baseEarthDefence":5,"baseWaterDefence":5,"baseFireDefence":-10},"rarity":"unique"},"Blackout":{"internalName":"Blackout","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":22,"defence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDexterity":-2,"rawDefence":3,"thunderDamage":{"min":-6,"raw":-5,"max":-3},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":20,"baseThunderDefence":-6,"baseFireDefence":6},"rarity":"unique"},"Granite-Hewn Dagger":{"internalName":"Granite-hewn Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":47,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":19,"raw":19,"max":27}},"rarity":"common"},"Echo":{"internalName":"Echo","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":22,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":3,"airDamage":{"min":2,"raw":7,"max":9}},"base":{"baseAirDefence":4},"rarity":"unique"},"Undertow":{"internalName":"Undertow","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":22,"intelligence":10},"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":4,"raw":12,"max":16},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-10,"raw":-8,"max":-6},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":150,"baseThunderDefence":-20,"baseWaterDefence":10},"rarity":"legendary"},"Broken Trident":{"internalName":"Broken Trident","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":54,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"warrior","intelligence":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":2,"raw":8,"max":10},"waterDamage":{"min":2,"raw":5,"max":7},"waterDefence":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":28,"raw":28,"max":44}},"rarity":"unique"},"Bony Bow":{"internalName":"Bony Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":89,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"archer","agility":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawAgility":6,"mainAttackDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":15,"raw":15,"max":36},"baseAirDamage":{"min":8,"raw":8,"max":12}},"rarity":"set"},"Silhouette":{"internalName":"Silhouette","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":64,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"shaman","agility":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"rawAgility":8,"reflection":{"min":3,"raw":10,"max":13},"airDefence":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":24,"raw":24,"max":27}},"rarity":"unique"},"Hallowynn Mask":{"internalName":"Hallowynn Mask","type":"armour","armourType":"helmet","dropRestriction":"never","requirements":{"level":22},"icon":{"format":"skin","value":"d7d7ad2dcb57dfa9f023dbb99b698fc53075c3e9d654506139a647ac907fddc5"},"identifications":{"rawMainAttackDamage":{"min":5,"raw":16,"max":21},"rawSpellDamage":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":115,"baseThunderDefence":5},"rarity":"rare"},"Replica Hallowynn Mask":{"internalName":"Replica Hallowynn Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":22},"icon":{"format":"skin","value":"59dee2e814cd4b5e933d8f2b30a0bc2a583552cbe3dae581bec09fbb6eb07e"},"identifications":{"rawMainAttackDamage":16,"rawSpellDamage":15,"xpBonus":5},"base":{"baseHealth":115,"baseThunderDefence":5},"rarity":"rare"},"Retina Shooter":{"internalName":"Retina Shooter","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":62,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"archer","strength":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"rawDexterity":7,"mainAttackDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":45,"raw":45,"max":70},"baseEarthDamage":{"min":15,"raw":15,"max":20}},"rarity":"unique"},"Brainy Beanie":{"internalName":"Brainy Beanie","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":22,"dexterity":5,"intelligence":10},"powderSlots":1,"lore":"...It's pulling towards something.","identifications":{"rawStrength":-5,"rawIntelligence":5,"spellDamage":{"min":-10,"raw":-8,"max":-6},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":3,"max":4},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":110,"baseEarthDefence":-10},"rarity":"rare"},"Ionizer":{"internalName":"Ionizer","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":93,"dropRestriction":"normal","requirements":{"level":22,"classRequirement":"archer","dexterity":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"lifeSteal":{"min":8,"raw":25,"max":33},"sprintRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":8,"raw":8,"max":22},"baseThunderDamage":{"min":8,"raw":8,"max":22}},"rarity":"rare"},"Decaying Skin":{"internalName":"Decaying Skin","type":"ingredient","requirements":{"level":22,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"poison":{"min":15,"raw":15,"max":15}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Roaming Zombie","coords":[[507,62,-1931,4],[309,68,-1830,5],[286,55,-1911,5],[58,56,-1866,5],[160,49,-1974,5],[64,50,-2065,5],[-2,61,-2027,5],[373,50,-1971,5],[406,43,-2023,5],[295,51,-1975,5],[171,48,-2071,2]]},{"name":"Roaming Skeleton","coords":[320,42,-1974,50]}]},"Tough Bone":{"internalName":"Tough Bone","type":"ingredient","requirements":{"level":22,"skills":["jeweling","armouring"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"rawDefence":{"min":0,"raw":0,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":18000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bonesy","coords":[-7,59,-2069,100]}]},"Bug Parts":{"internalName":"Bug Parts","type":"ingredient","requirements":{"level":22,"skills":["weaponsmithing","alchemism"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"thorns":{"min":1,"raw":1,"max":2},"mainAttackDamage":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":8,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Biting Bug","coords":[[74,47,-1979,4],[115,47,-1991,3],[118,47,-1968,3],[77,48,-1959,5],[23,53,-1896,6],[11,53,-1873,3],[316,52,-1841,5],[323,46,-1831,5],[334,41,-1824,5],[290,28,-1799,5]]},{"name":"Bone Parasite","coords":[320,42,-1974,50]}]},"Horse Mane":{"internalName":"Horse Mane","type":"ingredient","requirements":{"level":22,"skills":["tailoring","scribing"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":4},"rawAgility":{"min":1,"raw":1,"max":1}},"tier":1,"consumableOnlyIDs":{"duration":-69,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Burning Bronco","coords":[[253,84,-1085,70],[253,84,-1085,70],[426,82,-1345,60],[529,70,-1330,100],[529,70,-1330,100],[529,70,-1330,100],[269,87,-1209,20],[374,82,-1334,30],[88,67,-1316,20]]}]},"Laryngeal Flesh":{"internalName":"Laryngeal Flesh","type":"ingredient","requirements":{"level":22,"skills":["alchemism"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"mainAttackDamage":{"min":10,"raw":10,"max":12},"rawSpellDamage":{"min":-16,"raw":-16,"max":-14}},"tier":1,"consumableOnlyIDs":{"duration":-69,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Black Bat","coords":[[674,78,-1270,7],[448,80,-1315,7]]}]},"Kaolin Clay":{"internalName":"Kaolin Clay","type":"ingredient","requirements":{"level":22,"skills":["tailoring"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":2},"waterDefence":{"min":7,"raw":7,"max":10},"mainAttackDamage":{"min":-4,"raw":-4,"max":-3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-35000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":3,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ghost Of Saints Row","coords":[323,39,-2058,90]},{"name":"Skelemancer","coords":[249,45,-1937,120]},{"name":"Bonesy","coords":[-7,59,-2069,100]}]},"Arcanic":{"internalName":"Arcanic","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":21},"powderSlots":2,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"elementalDamage":5},"base":{"baseHealth":70,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"rare"},"Cyclo":{"internalName":"Cyclo","type":"armour","armourType":"boots","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":21,"dexterity":4,"agility":8},"powderSlots":1,"lore":"A centuries-old storm spirit was banished to these tight boots for his destructive actions. His fury empowers those who wear them with the great force of a raging cyclone.","identifications":{"rawDexterity":4,"rawAgility":8,"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"rawSpellDamage":{"min":7,"raw":23,"max":30},"walkSpeed":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":100},"rarity":"legendary"},"Cave In":{"internalName":"Cave In","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":154,"dropRestriction":"normal","requirements":{"level":21,"classRequirement":"shaman","strength":18},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"398","name":"relik.earth2"}},"identifications":{"healthRegenRaw":{"min":-26,"raw":-20,"max":-14},"3rdSpellCost":{"min":-6,"raw":-21,"max":-27},"walkSpeed":{"min":-26,"raw":-20,"max":-14},"exploding":{"min":11,"raw":35,"max":46},"lootBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":50,"raw":50,"max":60},"baseEarthDamage":{"min":40,"raw":40,"max":55}},"rarity":"legendary"},"Technicolor Phase":{"internalName":"Technicolor Phase","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":99,"dropRestriction":"normal","requirements":{"level":21,"classRequirement":"shaman","strength":5,"dexterity":5,"intelligence":5,"defence":5,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"rawStrength":5,"rawDexterity":5,"rawIntelligence":5,"rawDefence":5,"rawAgility":5,"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":7,"raw":7,"max":9},"baseEarthDamage":{"min":7,"raw":7,"max":9},"baseThunderDamage":{"min":7,"raw":7,"max":9},"baseWaterDamage":{"min":7,"raw":7,"max":9},"baseFireDamage":{"min":7,"raw":7,"max":9},"baseAirDamage":{"min":7,"raw":7,"max":9}},"rarity":"rare"},"Maul":{"internalName":"Maul","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":51,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":21,"classRequirement":"warrior","strength":10},"powderSlots":1,"lore":"\"If you squish a spider egg, sometimes little spiders pop out. So, squish the whole area instead!\" -Captain Fenor, Detlas Legion","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"mainAttackDamage":10,"manaRegen":-6,"walkSpeed":-6},"base":{"baseEarthDamage":{"min":86,"raw":86,"max":114}},"rarity":"rare"},"Simplicity":{"internalName":"Simplicity","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":21},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"156","name":"ring.multi1"}},"identifications":{"elementalDefence":1},"base":{"baseEarthDefence":4,"baseThunderDefence":4,"baseWaterDefence":4,"baseFireDefence":4,"baseAirDefence":4},"rarity":"unique"},"Blood-Soaked Claws":{"internalName":"Blood-Soaked Claws","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":59,"dropRestriction":"normal","requirements":{"level":21,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"healthRegenRaw":{"min":-8,"raw":-6,"max":-4},"lifeSteal":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":23,"raw":23,"max":34}},"rarity":"unique"},"Arakadicus' Body":{"internalName":"Arakadicus' Body","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"dungeon","requirements":{"level":21},"powderSlots":1,"lore":"Long strips of chitin discarded from the mother of spiders Arakadicus still contain traces of her wicked powers, but few have survived the attempts to harvest them.","dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"identifications":{"rawStrength":5,"rawDexterity":5,"rawAgility":10,"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":3,"raw":10,"max":13},"earthDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":145,"baseEarthDefence":15,"baseAirDefence":-10},"rarity":"legendary"},"Molotov":{"internalName":"Molotov","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":120,"dropRestriction":"normal","requirements":{"level":21,"classRequirement":"archer","defence":20},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawDefence":5,"mainAttackDamage":{"min":4,"raw":12,"max":16},"healthRegen":{"min":-19,"raw":-15,"max":-10},"exploding":{"min":6,"raw":20,"max":26},"fireDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":30,"raw":30,"max":40},"baseFireDamage":{"min":35,"raw":35,"max":55}},"rarity":"legendary"},"Aged Golden Helmet":{"internalName":"Aged Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":21},"base":{"baseHealth":71},"rarity":"common"},"Admiral's Aegis":{"internalName":"Admiral's Aegis","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":21,"defence":15},"identifications":{"rawDefence":8,"healthRegenRaw":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":170,"baseThunderDefence":-10,"baseWaterDefence":-10},"rarity":"rare"},"Tarnish":{"internalName":"Tarnish","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":21,"intelligence":5},"powderSlots":1,"identifications":{"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":-5,"raw":-4,"max":-3},"xpBonus":{"min":2,"raw":8,"max":10},"waterDamage":{"min":3,"raw":9,"max":12},"airDefence":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":90,"baseWaterDefence":5,"baseAirDefence":-6},"rarity":"unique"},"Average Golden Helmet":{"internalName":"Average Golden Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":21},"powderSlots":1,"base":{"baseHealth":71},"rarity":"common"},"Tizatuko":{"internalName":"Tizatuko","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":21},"powderSlots":1,"identifications":{"rawAgility":5,"lootBonus":{"min":4,"raw":13,"max":17},"airDamage":{"min":2,"raw":8,"max":10},"earthDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":125,"baseEarthDefence":-4,"baseAirDefence":7},"rarity":"rare"},"Bony Circlet":{"internalName":"Bony Circlet","type":"armour","armourType":"helmet","armourColor":"rgb(215,215,215)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":21,"agility":6},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"rawMainAttackDamage":{"min":9,"raw":30,"max":39}},"base":{"baseHealth":90,"baseAirDefence":5},"rarity":"set"},"Charon's Left Arm":{"internalName":"Charon's Left Arm","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":63,"dropRestriction":"normal","requirements":{"level":21,"classRequirement":"assassin","strength":10},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawStrength":4,"rawDexterity":4,"lifeSteal":{"min":4,"raw":14,"max":18},"manaSteal":{"min":-5,"raw":-4,"max":-3},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"thunderDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":15,"raw":15,"max":21},"baseEarthDamage":{"min":10,"raw":10,"max":17},"baseThunderDamage":{"min":8,"raw":8,"max":13}},"rarity":"rare"},"Remembrance":{"internalName":"Remembrance","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":74,"dropRestriction":"never","identified":true,"requirements":{"level":21,"classRequirement":"shaman","agility":8},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"1stSpellCost":-17,"reflection":8,"airDefence":10},"base":{"baseDamage":{"min":20,"raw":20,"max":23},"baseAirDamage":{"min":13,"raw":13,"max":16}},"rarity":"unique"},"Muscle":{"internalName":"Muscle","type":"ingredient","requirements":{"level":21,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"423:0"},"identifications":{"mainAttackDamage":{"min":4,"raw":4,"max":8},"rawHealth":{"min":20,"raw":20,"max":30}},"tier":1,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Massive Rat","coords":null},{"name":"Roaming Zombie","coords":[[507,62,-1931,4],[309,68,-1830,5],[286,55,-1911,5],[58,56,-1866,5],[160,49,-1974,5],[64,50,-2065,5],[-2,61,-2027,5],[373,50,-1971,5],[406,43,-2023,5],[295,51,-1975,5],[171,48,-2071,2]]}]},"Sticky Mudball":{"internalName":"Sticky Mudball","type":"ingredient","requirements":{"level":21,"skills":["woodworking","cooking"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"mainAttackDamage":{"min":5,"raw":5,"max":8},"walkSpeed":{"min":-4,"raw":-4,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":-290,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":3,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Slimy Swamp Zombie","coords":[76,44,-2105,8]}]},"Salt Water":{"internalName":"Salt Water","type":"ingredient","requirements":{"level":21,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"373:0"},"identifications":{"rawHealth":{"min":10,"raw":10,"max":15}},"tier":0,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sturdy Crab","coords":[[-210,41,-2722,2],[-216,39,-2741,2],[-242,37,-2764,2],[-231,56,-2751,2],[-223,58,-2716,2],[-282,35,-2676,2]]},{"name":"Island Crab","coords":[[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]}]},"Thick Mud":{"internalName":"Thick Mud","type":"ingredient","requirements":{"level":21,"skills":["alchemism","jeweling"]},"icon":{"format":"legacy","value":"351:3"},"identifications":{"rawStrength":{"min":1,"raw":1,"max":1},"walkSpeed":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":-48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Mudslinger","coords":[[134,20,-1887,1],[278,27,-1824,0],[280,26,-1815,0],[277,39,-1779,0]]},{"name":"Bubbling Mud Pile","coords":[76,44,-2105,8]},{"name":"Muddy Zombie","coords":[[113,16,-1874,20],[105,33,-1918,25],[100,33,-1921,8]]},{"name":"Mud Spider","coords":[-173,66,-2083,16]},{"name":"Mud Spider","coords":[-173,66,-2083,16]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Bone Meal":{"internalName":"Bone Meal","type":"ingredient","requirements":{"level":21,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"spellDamage":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ancient Nemract Scout","coords":[251,56,-1878,0]},{"name":"Ancient Nemract Resident","coords":[169,45,-1915,1]},{"name":"Ancient Nemract Resident","coords":[[240,54,-1866,30],[179,48,-1907,35],[177,46,-1949,25]]},{"name":"Ancient Nemract Resident","coords":[[240,54,-1866,30],[179,48,-1907,35],[177,46,-1949,25]]},{"name":"Ancient Nemract Resident","coords":[169,45,-1915,1]},{"name":"Ancient Nemract Soldier","coords":[[253,50,-1907,1],[166,49,-1960,1]]},{"name":"Skeleton","coords":null},{"name":"Undead Commander","coords":[320,42,-1974,50]},{"name":"Reanimated Bones","coords":null},{"name":"Extinguished Husk","coords":null},{"name":"Skeleton","coords":null},{"name":"Skeleton","coords":null},{"name":"Ocean Skeleton","coords":null},{"name":"Cracked Husk","coords":[1342,142,-1210,30]},{"name":"Wracked Husk","coords":[1342,142,-1210,30]},{"name":"Undead Noble Warrior","coords":false},{"name":"Dead Pirate Guard","coords":[[-632,30,-3208,0],[-630,27,-3193,0],[-633,25,-3207,0]]}]},"Match":{"internalName":"Match","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":45,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":21,"classRequirement":"mage","defence":8},"powderSlots":1,"lore":"\"Controlled burns are healthy, but it's clear why no one wants to do them.\" -Darek, Alekin Trailblazer","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"336","name":"wand.fire1"}},"identifications":{"rawFireDamage":20,"walkSpeed":-8,"fireDefence":30},"base":{"baseDamage":{"min":8,"raw":8,"max":12},"baseFireDamage":{"min":15,"raw":15,"max":25}},"rarity":"rare"},"Pyrexia":{"internalName":"Pyrexia","type":"weapon","weaponType":"bow","attackSpeed":"super_fast","averageDps":103,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":21,"classRequirement":"archer","dexterity":10},"lore":"\"I always thought Yahya was venom-addled, but the symptoms don't match...\" -Pyeka, Alekin Herbalist","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"200","name":"bow.thunder1"}},"identifications":{"healthRegenRaw":-10,"rawThunderMainAttackDamage":12,"fireDamage":15},"base":{"baseDamage":{"min":0,"raw":0,"max":10},"baseThunderDamage":{"min":3,"raw":3,"max":35}},"rarity":"rare"},"Hex-Master Anchor":{"internalName":"Hex-Master Anchor","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":21},"lore":"Having felt the power of the Keep's hex, this jewel carries a familiar weight. Much like the Hex-Masters before you, you find channeling curses comes like second nature.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawDexterity":1,"rawIntelligence":1,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"spellDamage":{"min":2,"raw":6,"max":8},"rawMaxMana":{"min":3,"raw":11,"max":14}},"rarity":"legendary"},"Red Team Chestplate":{"internalName":"Red Team Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(255\t85 85)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":50},"rarity":"set"},"Spider's Eye Pendant":{"internalName":"Spider's Eye Pendant","type":"accessory","accessoryType":"necklace","dropRestriction":"dungeon","requirements":{"level":20},"dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"181","name":"necklace.fire1"}},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":2,"raw":8,"max":10}},"rarity":"rare"},"Psychoruin":{"internalName":"Psychoruin","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":47,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"mage","dexterity":6,"intelligence":6},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":5,"rawSpellDamage":{"min":5,"raw":15,"max":20},"thunderDamage":{"min":2,"raw":6,"max":8},"waterDamage":{"min":-4,"raw":-3,"max":-2},"thunderDefence":{"min":-12,"raw":-9,"max":-6},"waterDefence":{"min":2,"raw":6,"max":8}},"base":{"baseThunderDamage":{"min":1,"raw":1,"max":22},"baseWaterDamage":{"min":10,"raw":10,"max":13}},"rarity":"rare"},"Mask of the Dark Vexations":{"internalName":"Mask of the Dark Vexations","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":20,"dexterity":5,"intelligence":5,"defence":5},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-19,"raw":-15,"max":-10},"xpBonus":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":2,"raw":7,"max":9},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":90},"rarity":"set"},"The Brain Smasher":{"internalName":"The Brain Smasher","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":33,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"mage","strength":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawStrength":4,"mainAttackDamage":{"min":1,"raw":4,"max":5},"spellDamage":{"min":-8,"raw":-6,"max":-4},"exploding":{"min":1,"raw":3,"max":4},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":20,"raw":20,"max":35},"baseEarthDamage":{"min":7,"raw":7,"max":17}},"rarity":"unique"},"The Wool Trimmer":{"internalName":"The Wool Trimmer","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":62,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":8,"raw":8,"max":15},"baseWaterDamage":{"min":6,"raw":6,"max":11}},"rarity":"unique"},"Grandfather":{"internalName":"Grandfather","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":48,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawHealth":{"min":-31,"raw":-24,"max":-17},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":54,"raw":54,"max":61}},"rarity":"unique"},"Blue Team Helmet":{"internalName":"Blue Team Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(85 255 255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":25},"rarity":"set"},"Straw Helmet":{"internalName":"Straw Helmet","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":20},"powderSlots":1,"identifications":{"thorns":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":95,"baseWaterDefence":-5,"baseFireDefence":-5},"rarity":"unique"},"Blade of Instinct":{"internalName":"Blade of Instinct","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":58,"dropRestriction":"never","identified":true,"requirements":{"level":20,"classRequirement":"warrior","defence":10},"powderSlots":1,"dropMeta":{"name":"Bremminglar","type":"merchant","coordinates":[717,69,-2076]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawDefence":2,"rawHealth":30,"thorns":20,"reflection":20},"base":{"baseDamage":{"min":30,"raw":30,"max":48}},"rarity":"rare"},"Studded Leather Tunic":{"internalName":"Studded Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":20},"base":{"baseHealth":65},"rarity":"common"},"The Scarecrow's Vest":{"internalName":"The Scarecrow's Vest","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"powderSlots":1,"dropMeta":{"name":"Bovine Barn","type":"altar","coordinates":[471,44,-2912]},"identifications":{"rawDefence":7,"rawHealth":{"min":17,"raw":58,"max":75},"thorns":{"min":18,"raw":60,"max":78},"reflection":{"min":12,"raw":40,"max":52},"walkSpeed":{"min":-9,"raw":-7,"max":-5}},"base":{"baseHealth":150,"baseFireDefence":-5},"rarity":"legendary"},"Red Team Boots":{"internalName":"Red Team Boots","type":"armour","armourType":"boots","armourColor":"rgb(255\t85 85)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":25},"rarity":"set"},"Temporal Cage":{"internalName":"Temporal Cage","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"dropMeta":{"name":"Temporal Rift","type":"miniboss","coordinates":[-565,125,-1357]},"identifications":{"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"rawSpellDamage":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":-9,"raw":-7,"max":-5},"manaSteal":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":3,"raw":10,"max":13},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseThunderDefence":30},"rarity":"rare"},"Abdomen":{"internalName":"Abdomen","type":"armour","armourType":"chestplate","armourColor":"rgb(37,33,33)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":20},"powderSlots":1,"lore":"\"...But under no circumstances should you stand directly behind an attacking spider. While not a universal trait, some spiders are capable of ejecting webs from their spinneret, leaving assailants and victims helpless.\" -Admiral Aegis' Guide To Nivla Threats, Chapter 3","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"identifications":{"rawAgility":4,"walkSpeed":7},"base":{"baseHealth":100},"rarity":"set"},"Web Spitter":{"internalName":"Web Spitter","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":77,"dropRestriction":"never","identified":true,"requirements":{"level":20,"classRequirement":"archer"},"powderSlots":1,"lore":"\"And you thought walking into a cobweb was bad.\" -Ope, Ragni Botanist","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"206","name":"bow.multi1"}},"identifications":{"rawAgility":3,"walkSpeed":10,"airDamage":6},"base":{"baseDamage":{"min":13,"raw":13,"max":26},"baseWaterDamage":{"min":14,"raw":14,"max":20},"baseAirDamage":{"min":10,"raw":10,"max":20}},"rarity":"unique"},"Greenhoof":{"internalName":"Greenhoof","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20,"strength":10,"agility":5},"powderSlots":1,"dropMeta":{"name":"Bovine Barn","type":"altar","coordinates":[471,44,-2912]},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":4,"raw":12,"max":16},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":105},"rarity":"rare"},"Silver Bow":{"internalName":"Silver Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":64,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":4,"raw":13,"max":17}},"base":{"baseDamage":{"min":22,"raw":22,"max":40}},"rarity":"unique"},"Blue Team Leggings":{"internalName":"Blue Team Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(85 255 255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":50},"rarity":"set"},"Buster Bracer":{"internalName":"Buster Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":20,"strength":20},"lore":"A mighty, earth-shatteringly powerful weapon was destroyed for fear of its raw power, and the pieces buried. They were unearthed decades later, and were reforged into various items including this sturdy bracer.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"rawStrength":5,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"spellDamage":{"min":3,"raw":10,"max":13},"rawHealth":{"min":-58,"raw":-45,"max":-31},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseEarthDefence":-15,"baseThunderDefence":-15,"baseWaterDefence":-15,"baseFireDefence":-15,"baseAirDefence":-15},"rarity":"legendary"},"Blue Team Boots":{"internalName":"Blue Team Boots","type":"armour","armourType":"boots","armourColor":"rgb(85 255 255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":25},"rarity":"set"},"Foundation":{"internalName":"Foundation","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","identified":true,"requirements":{"level":20},"powderSlots":2,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"rawDefence":2,"mainAttackDamage":5,"earthDamage":6},"base":{"baseHealth":90,"baseEarthDefence":3},"rarity":"unique"},"Leech Leggings":{"internalName":"Leech Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":20},"powderSlots":1,"identifications":{"lifeSteal":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":85},"rarity":"unique"},"Pumpkin Helmet":{"internalName":"Pumpkin Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":20},"icon":{"format":"legacy","value":"86"},"rarity":"common"},"Ado Saki":{"internalName":"Ado Saki","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":20,"intelligence":5},"powderSlots":1,"identifications":{"lifeSteal":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"reflection":{"min":1,"raw":3,"max":4},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":105,"baseThunderDefence":-8,"baseWaterDefence":10},"rarity":"rare"},"Blue Team Chestplate":{"internalName":"Blue Team Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(85 255 255)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":50},"rarity":"set"},"Red Team Helmet":{"internalName":"Red Team Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(255\t85 85)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":25},"rarity":"set"},"Walking Stick":{"internalName":"Walking Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":42,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"mage","agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":14,"raw":14,"max":20}},"rarity":"rare"},"Glaring Issue":{"internalName":"Glaring Issue","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":20},"lore":"...It's pulling towards something.","identifications":{"rawIntelligence":5,"manaRegen":{"min":-10,"raw":-8,"max":-6},"waterDamage":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":110,"baseWaterDefence":15},"rarity":"rare"},"Charm of the Flea":{"internalName":"Charm of the Flea","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":20,"agility":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"rawAgility":3,"lifeSteal":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":15},"rarity":"unique"},"Major":{"internalName":"Major","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawMainAttackDamage":{"min":3,"raw":9,"max":12}},"rarity":"rare"},"Ring of Focus":{"internalName":"Ring of Focus","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":20,"intelligence":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Minor":{"internalName":"Minor","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":20},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"rawSpellDamage":{"min":2,"raw":7,"max":9}},"rarity":"rare"},"Iklaj":{"internalName":"Iklaj","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":33,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":20,"classRequirement":"mage","agility":5},"powderSlots":1,"lore":"\"I am not making this up! That spider teleported ONTO MY FACE!\" -Stiba, Elemental Researcher","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"rawStrength":-3,"rawDexterity":2,"rawAgility":4,"walkSpeed":10,"thunderDamage":8},"base":{"baseAirDamage":{"min":9,"raw":9,"max":12}},"rarity":"unique"},"Tepid Plate":{"internalName":"Tepid Plate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":20,"defence":5},"powderSlots":1,"identifications":{"rawDefence":3,"rawHealth":{"min":5,"raw":15,"max":20},"waterDamage":{"min":-8,"raw":-6,"max":-4},"fireDamage":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":85,"baseWaterDefence":-3,"baseFireDefence":6},"rarity":"unique"},"Almuj's Daggers":{"internalName":"Almuj's Daggers","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":103,"dropRestriction":"normal","requirements":{"level":20,"classRequirement":"assassin","dexterity":15,"agility":8},"powderSlots":1,"lore":"The reigning king of thieves in Almuj’s underworld would brandish this golden dagger to his enemies so fast, you wouldn’t even realise your wallet was now missing.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"rawAgility":8,"poison":{"min":14,"raw":45,"max":59},"walkSpeed":{"min":6,"raw":20,"max":26},"xpBonus":{"min":2,"raw":5,"max":7},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":11,"raw":11,"max":16},"baseThunderDamage":{"min":5,"raw":5,"max":16}},"rarity":"legendary"},"Neolithic":{"internalName":"Neolithic","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":20,"strength":5,"defence":10},"powderSlots":1,"lore":"This ancient stone-hewn helmet is blended with the bones of an extinct animal of some kind. It is harder than dragon's hide.","identifications":{"rawStrength":3,"rawDefence":7,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healthRegen":{"min":6,"raw":20,"max":26},"rawHealth":{"min":24,"raw":80,"max":104},"earthDamage":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":160},"rarity":"legendary"},"Hiker's Boots":{"internalName":"Hiker's Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":20,"strength":7},"powderSlots":1,"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":7,"max":9},"rawSpellDamage":{"min":-10,"raw":-8,"max":-6}},"base":{"baseHealth":85,"baseEarthDefence":7,"baseAirDefence":-5},"rarity":"unique"},"Gust":{"internalName":"Gust","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":20,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"walkSpeed":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseFireDefence":-5,"baseAirDefence":5},"rarity":"unique"},"Red Team Leggings":{"internalName":"Red Team Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(255\t85 85)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":20},"base":{"baseHealth":50},"rarity":"set"},"Waterlogged Branch":{"internalName":"Waterlogged Branch","type":"ingredient","requirements":{"level":20,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":5},"spellDamage":{"min":-5,"raw":-5,"max":-3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Hangry Seagull","coords":[[757,39,-2438,15],[659,41,-2504,15],[580,42,-2391,15],[432,40,-2608,10],[872,38,-3016,10],[452,35,-3768,10],[127,40,-3571,10],[-293,42,-3275,10],[453,36,-3768,10]]},{"name":"Cursed Pirate","coords":[919,40,-2398,2]},{"name":"Captain Nomor Beard","coords":[919,40,-2398,2]},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Mixed Seeds":{"internalName":"Mixed Seeds","type":"ingredient","requirements":{"level":20,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"295:0"},"identifications":{"rawAgility":{"min":-3,"raw":-3,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":15,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Durum Scarecrow","coords":[[514,41,-2815,15],[564,39,-2959,15],[514,41,-2815,15],[564,39,-2959,15]]}]},"Dry Seeds":{"internalName":"Dry Seeds","type":"ingredient","requirements":{"level":20,"skills":["cooking","tailoring"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":3},"fireDefence":{"min":-4,"raw":-4,"max":-2}},"tier":0,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Merlug","coords":[68,12,-1883,8]}]},"Snake Eye":{"internalName":"Snake Eye","type":"ingredient","requirements":{"level":20,"skills":["alchemism"]},"icon":{"format":"legacy","value":"375:0"},"identifications":{"rawAgility":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-48,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":4},"droppedBy":[{"name":"Snake","coords":null},{"name":"Savannah Snake","coords":[[772,68,-2332,10],[772,68,-2332,10],[772,68,-2332,10],[741,43,-2244,5],[741,43,-2244,5],[741,43,-2244,5],[769,36,-2299,6],[801,15,-2279,8],[801,15,-2279,8],[801,15,-2279,8],[815,30,-2347,5],[833,29,-2355,5]]}]},"Volatile Matter":{"internalName":"Volatile Matter","type":"ingredient","requirements":{"level":20,"skills":["alchemism","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"exploding":{"min":8,"raw":8,"max":13},"rawMainAttackDamage":{"min":14,"raw":14,"max":22},"rawDefence":{"min":-4,"raw":-4,"max":-3}},"tier":3,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Temporal Rift","coords":[-566,126,-1358,0]}]},"Rotting Bone":{"internalName":"Rotting Bone","type":"ingredient","requirements":{"level":20,"skills":["armouring"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"poison":{"min":12,"raw":12,"max":15},"waterDamage":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-48000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Skelemancer","coords":[249,45,-1937,120]}]},"Blighted Brain":{"internalName":"Blighted Brain","type":"ingredient","requirements":{"level":20,"skills":["cooking"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"xpBonus":{"min":-11,"raw":-11,"max":-9},"lootBonus":{"min":9,"raw":9,"max":11}},"tier":3,"consumableOnlyIDs":{"duration":-425,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Skelemancer","coords":[249,45,-1937,120]}]},"Truffle":{"internalName":"Truffle","type":"ingredient","requirements":{"level":20,"skills":["cooking"]},"icon":{"format":"legacy","value":"39:0"},"identifications":{"healthRegen":{"min":4,"raw":4,"max":6},"rawHealth":{"min":30,"raw":30,"max":40}},"tier":1,"consumableOnlyIDs":{"duration":-200,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cave Boar","coords":[[-195,31,-2019,9],[-179,27,-2008,9],[-168,24,-1993,9]]}]},"Old Bone":{"internalName":"Old Bone","type":"ingredient","requirements":{"level":20,"skills":["armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"spellDamage":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Roaming Skeleton","coords":[320,42,-1974,50]},{"name":"Bonesy","coords":[-7,59,-2069,100]}]},"Split Essence":{"internalName":"Split Essence","type":"ingredient","requirements":{"level":20,"skills":["alchemism","woodworking","scribing"]},"icon":{"format":"legacy","value":"381:0"},"identifications":{"manaSteal":{"min":2,"raw":2,"max":3},"rawSpellDamage":{"min":8,"raw":8,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-96,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-47000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dark Cultist","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]},{"name":"Dark Cultist","coords":[[-592,114,-1378,0],[-566,124,-1373,0],[-631,102,-1356,0],[-646,95,-1370,0]]},{"name":"Temporal Rift","coords":[-566,126,-1358,0]}]},"Salmon Oil 1":{"internalName":"Refined Salmon Oil 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilSalmon"}},"tier":1},"Gold Gem 1":{"internalName":"Refined Gold Gem 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"65","name":"profession.gemGold"}},"tier":1},"Gold Gem 3":{"internalName":"Refined Gold Gem 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"65","name":"profession.gemGold"}},"tier":3},"Salmon Meat 1":{"internalName":"Refined Salmon Meat 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatSalmon"}},"tier":1},"Salmon Meat 3":{"internalName":"Refined Salmon Meat 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatSalmon"}},"tier":3},"Oat Grains 1":{"internalName":"Refined Oat Grains 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainOat"}},"tier":1},"Oat Grains 2":{"internalName":"Refined Oat Grains 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainOat"}},"tier":2},"Gold Ingot 3":{"internalName":"Refined Gold Ingot 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"53","name":"profession.ingotGold"}},"tier":3},"Oat Grains 3":{"internalName":"Refined Oat Grains 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"47","name":"profession.grainOat"}},"tier":3},"Willow Paper 1":{"internalName":"Refined Willow Paper 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperWillow"}},"tier":1},"Oat String 2":{"internalName":"Refined Oat String 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringOat"}},"tier":2},"Salmon Meat 2":{"internalName":"Refined Salmon Meat 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"94","name":"profession.meatSalmon"}},"tier":2},"Willow Wood 1":{"internalName":"Refined Willow Wood 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"33d48602ca7f62d84cf9888a7386d96e4afd4b08e0dd1c1b123ba65157331a1d"},"tier":1},"Willow Paper 3":{"internalName":"Refined Willow Paper 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperWillow"}},"tier":3},"Salmon Oil 3":{"internalName":"Refined Salmon Oil 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilSalmon"}},"tier":3},"Oat String 1":{"internalName":"Refined Oat String 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringOat"}},"tier":1},"Willow Wood 2":{"internalName":"Refined Willow Wood 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"33d48602ca7f62d84cf9888a7386d96e4afd4b08e0dd1c1b123ba65157331a1d"},"tier":2},"Salmon Oil 2":{"internalName":"Refined Salmon Oil 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"89","name":"profession.oilSalmon"}},"tier":2},"Gold Gem 2":{"internalName":"Refined Gold Gem 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"65","name":"profession.gemGold"}},"tier":2},"Willow Wood 3":{"internalName":"Refined Willow Wood 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"33d48602ca7f62d84cf9888a7386d96e4afd4b08e0dd1c1b123ba65157331a1d"},"tier":3},"Willow Paper 2":{"internalName":"Refined Willow Paper 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"98","name":"profession.paperWillow"}},"tier":2},"Gold Ingot 2":{"internalName":"Refined Gold Ingot 2","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"53","name":"profession.ingotGold"}},"tier":2},"Gold Ingot 1":{"internalName":"Refined Gold Ingot 1","type":"material","identified":true,"requirements":{"level":20},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"53","name":"profession.ingotGold"}},"tier":1},"Oat String 3":{"internalName":"Refined Oat String 3","type":"material","identified":true,"requirements":{"level":20},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"43","name":"profession.stringOat"}},"tier":3},"Bishop":{"internalName":"Bishop","type":"armour","armourType":"helmet","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":20,"classRequirement":"mage","intelligence":30},"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-13,"raw":-10,"max":-7},"spellDamage":{"min":-13,"raw":-10,"max":-7},"healingEfficiency":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":120},"rarity":"rare"},"Stingy":{"internalName":"Stingy","type":"armour","armourType":"boots","armourMaterial":"golden","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":20},"powderSlots":1,"lore":"\"You should see when the spiders fight over a meal. It looks ridiculous, legs flailing everywhere!\" -Captain Enduyn, Ragni Legion 1st Division ","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"identifications":{"knockback":15,"thunderDamage":17,"waterDamage":-8},"base":{"baseHealth":105,"baseWaterDefence":-5},"rarity":"rare"},"Silk Slasher":{"internalName":"Silk Slasher","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":75,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":20,"classRequirement":"assassin","agility":10},"powderSlots":1,"lore":"\"Cut a web, and its owner will feel it and come out. That's your chance to strike.\" -Lieutenant Van, Detlas 2nd Regiment","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"259","name":"dagger.air1"}},"identifications":{"rawAgility":3,"rawAirDamage":16,"walkSpeed":10,"sprint":20},"base":{"baseDamage":{"min":5,"raw":5,"max":15},"baseAirDamage":{"min":10,"raw":10,"max":30}},"rarity":"rare"},"Jungle Wood Wand":{"internalName":"Jungle Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":25,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":10,"raw":10,"max":14}},"rarity":"common"},"Spinneret":{"internalName":"Spinneret","type":"armour","armourType":"leggings","armourColor":"rgb(37,33,33)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":19},"powderSlots":1,"lore":"\"...Spiders have a weak point in the cephalothorax, essentially the neck. A small target, but it isn't as tough to chop through as the rest of them. ...\" -Admiral Aegis' Guide To Nivla Threats, Chapter 3","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"identifications":{"rawDexterity":3,"rawAgility":3,"walkSpeed":7},"base":{"baseHealth":95},"rarity":"set"},"Jungle Wood Bow":{"internalName":"Jungle Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":51,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":30,"raw":30,"max":38}},"rarity":"common"},"Memorial":{"internalName":"Memorial","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":19,"intelligence":5},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"manaSteal":4},"base":{"baseHealth":100},"rarity":"rare"},"Spider Bracelet":{"internalName":"Spider Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":19},"dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":4,"poison":{"min":5,"raw":18,"max":23}},"base":{"baseEarthDefence":5},"rarity":"unique"},"Frog":{"internalName":"Frog","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":62,"dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"archer","strength":12,"intelligence":8},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"rawAgility":3,"mainAttackDamage":-5,"spellDamage":-5,"poison":45},"base":{"baseDamage":{"min":12,"raw":12,"max":17},"baseEarthDamage":{"min":6,"raw":6,"max":11},"baseWaterDamage":{"min":4,"raw":4,"max":10}},"rarity":"unique"},"Studded Leather Leggings":{"internalName":"Studded Leather Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19},"base":{"baseHealth":60},"rarity":"common"},"Someone Else's Knife":{"internalName":"Someone Else's Knife","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":74,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawMainAttackDamage":{"min":7,"raw":23,"max":30},"healthRegen":{"min":-10,"raw":-8,"max":-6},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":32,"raw":32,"max":40}},"rarity":"rare"},"Slate Bow":{"internalName":"Slate Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":83,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"archer","strength":10,"defence":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"rawDefence":7,"healthRegen":{"min":3,"raw":9,"max":12},"rawHealth":{"min":9,"raw":30,"max":39},"exploding":{"min":2,"raw":6,"max":8},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":10,"raw":10,"max":17},"baseEarthDamage":{"min":10,"raw":10,"max":17},"baseFireDamage":{"min":10,"raw":10,"max":17}},"rarity":"rare"},"Steel Toed Boots":{"internalName":"Steel Toed Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19},"powderSlots":1,"identifications":{"rawDefence":4,"rawHealth":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":80,"baseEarthDefence":2,"baseFireDefence":2},"rarity":"unique"},"The Berserk":{"internalName":"The Berserk","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":87,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"warrior","strength":10},"powderSlots":1,"lore":"Forged from unbreakable obsidian eras ago, this heavy hammer has crushed many foes with a single swing.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"466","name":"spear.earth2"}},"identifications":{"rawStrength":7,"rawDexterity":-5,"mainAttackDamage":{"min":3,"raw":10,"max":13},"spellDamage":{"min":-13,"raw":-10,"max":-7},"exploding":{"min":2,"raw":5,"max":7},"earthDamage":{"min":3,"raw":10,"max":13},"airDamage":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":38,"raw":38,"max":48},"baseEarthDamage":{"min":8,"raw":8,"max":22}},"rarity":"legendary"},"Jungle Wood Spear":{"internalName":"Jungle Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":34,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":20,"raw":20,"max":25}},"rarity":"common"},"Finchbone Spear":{"internalName":"Finchbone Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":43,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"462","name":"spear.air1"}},"identifications":{"rawAgility":3,"rawHealth":{"min":-26,"raw":-20,"max":-14},"walkSpeed":{"min":2,"raw":6,"max":8},"sprint":{"min":3,"raw":10,"max":13},"sprintRegen":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":5,"raw":5,"max":13},"baseAirDamage":{"min":0,"raw":0,"max":10}},"rarity":"unique"},"Bison Tipper":{"internalName":"Bison Tipper","type":"weapon","weaponType":"spear","attackSpeed":"super_slow","averageDps":46,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"warrior","strength":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawStrength":4,"rawMainAttackDamage":{"min":5,"raw":15,"max":20},"rawHealth":{"min":9,"raw":30,"max":39},"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":85,"raw":85,"max":94}},"rarity":"unique"},"Butterfly Wings":{"internalName":"Butterfly Wings","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":62,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"thorns":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":33,"raw":33,"max":49}},"rarity":"unique"},"Savannah Wind":{"internalName":"Savannah Wind","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":90,"dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"archer","agility":8},"dropMeta":{"name":"Bremminglar","type":"merchant","coordinates":[717,69,-2076]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawAgility":4,"rawHealth":-40,"reflection":8,"walkSpeed":8,"xpBonus":5},"base":{"baseDamage":{"min":10,"raw":10,"max":28},"baseAirDamage":{"min":4,"raw":4,"max":16}},"rarity":"rare"},"Golden Pants of Fortune":{"internalName":"Golden Pants of Fortune","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":19},"powderSlots":1,"identifications":{"rawDexterity":3,"rawAgility":3,"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":70},"rarity":"unique"},"Golden Embrace":{"internalName":"Golden Embrace","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"normal","requirements":{"level":19},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"spellDamage":{"min":-8,"raw":-6,"max":-4},"thorns":{"min":1,"raw":4,"max":5},"reflection":{"min":1,"raw":4,"max":5},"elementalDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":116},"rarity":"rare"},"Sloth":{"internalName":"Sloth","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":58,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"rawDefence":5,"healthRegen":{"min":4,"raw":12,"max":16},"healthRegenRaw":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-19,"raw":-15,"max":-10}},"base":{"baseDamage":{"min":40,"raw":40,"max":58},"baseFireDamage":{"min":17,"raw":17,"max":25}},"rarity":"rare"},"Cloudburst":{"internalName":"Cloudburst","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19,"agility":20},"identifications":{"rawDefence":-5,"rawMainAttackDamage":{"min":9,"raw":30,"max":39},"walkSpeed":{"min":4,"raw":12,"max":16},"airDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":80,"baseAirDefence":10},"rarity":"legendary"},"Helter Skelter":{"internalName":"Helter Skelter","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":120,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"shaman","dexterity":10,"agility":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawSpellDamage":{"min":-58,"raw":-45,"max":-31},"rawHealth":{"min":-52,"raw":-40,"max":-28},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6},"rawAttackSpeed":1,"jumpHeight":1,"thunderDamage":{"min":3,"raw":11,"max":14},"airDamage":{"min":3,"raw":11,"max":14}},"base":{"baseThunderDamage":{"min":19,"raw":19,"max":29},"baseAirDamage":{"min":19,"raw":19,"max":29}},"rarity":"legendary"},"Mercenary Hood":{"internalName":"Mercenary Hood","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19,"dexterity":5},"identifications":{"rawDexterity":3,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"healthRegen":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":120,"baseEarthDefence":-8,"baseThunderDefence":6,"baseFireDefence":4},"rarity":"unique"},"Jungle Wood Dagger":{"internalName":"Jungle Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":41,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":14,"raw":14,"max":19}},"rarity":"common"},"Goliath":{"internalName":"Goliath","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19,"defence":12},"identifications":{"healthRegenRaw":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":100,"baseEarthDefence":2,"baseThunderDefence":2,"baseWaterDefence":2,"baseFireDefence":4,"baseAirDefence":2},"rarity":"unique"},"Bountiful":{"internalName":"Bountiful","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":33,"dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"mage"},"powderSlots":1,"dropMeta":{"name":"Bremminglar","type":"merchant","coordinates":[717,69,-2076]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"healthRegenRaw":5,"poison":-20,"xpBonus":10,"lootBonus":15},"base":{"baseDamage":{"min":8,"raw":8,"max":12},"baseEarthDamage":{"min":4,"raw":4,"max":8}},"rarity":"unique"},"Atheist":{"internalName":"Atheist","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19,"strength":15},"powderSlots":1,"identifications":{"rawStrength":7,"earthDamage":{"min":2,"raw":8,"max":10},"thunderDamage":{"min":-6,"raw":-5,"max":-3},"fireDamage":{"min":-6,"raw":-5,"max":-3},"earthDefence":{"min":2,"raw":8,"max":10},"waterDefence":{"min":-6,"raw":-5,"max":-3},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":110,"baseEarthDefence":15},"rarity":"unique"},"Fangs":{"internalName":"Fangs","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":44,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"assassin"},"powderSlots":1,"lore":"\"Not every spider is venomous, but do you really want to get bitten by them all to figure out which are?\" -Alvin, Nivla Forest Resident","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"rawIntelligence":2,"spellDamage":7,"manaSteal":4,"xpBonus":6},"base":{"baseDamage":{"min":8,"raw":8,"max":12},"baseWaterDamage":{"min":10,"raw":10,"max":13}},"rarity":"unique"},"The Meddler":{"internalName":"The Meddler","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":19,"intelligence":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawMainAttackDamage":{"min":-5,"raw":-4,"max":-3},"rawSpellDamage":{"min":1,"raw":4,"max":5},"healthRegenRaw":{"min":-3,"raw":-2,"max":-1},"lifeSteal":{"min":1,"raw":4,"max":5},"thorns":{"min":2,"raw":6,"max":8},"reflection":{"min":2,"raw":6,"max":8}},"rarity":"rare"},"Ragged":{"internalName":"Ragged","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":19},"powderSlots":1,"identifications":{"rawDefence":-2,"rawHealth":{"min":-10,"raw":-8,"max":-6},"lifeSteal":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":60,"baseFireDefence":-8,"baseAirDefence":10},"rarity":"unique"},"Jungle Wood Relik":{"internalName":"Jungle Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":50,"dropRestriction":"normal","requirements":{"level":19,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":23,"raw":23,"max":26}},"rarity":"common"},"Coastal Shell":{"internalName":"Coastal Shell","type":"ingredient","requirements":{"level":19,"skills":["armouring"]},"icon":{"format":"legacy","value":"410:0"},"identifications":{"rawDefence":{"min":4,"raw":4,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-49000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":10,"agilityRequirement":0},"droppedBy":[{"name":"Turtle","coords":[[234,35,-2105,6],[150,43,-2042,6],[127,42,-2057,5],[32,52,-1869,4],[20,53,-1854,3],[9,54,-1845,5],[326,37,-1813,6],[312,31,-1826,9],[271,27,-1820,6],[284,33,-1785,5]]}]},"Hourglass":{"internalName":"Hourglass","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":2,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"shaman"},"lore":"\"I saw that spider queen once. It felt like it was only a matter of time before she found my home, so I moved here.\" -Babhla, Nivla Bowl Merchant","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.thunder1"}},"identifications":{"rawAgility":4,"poison":135,"1stSpellCost":40,"thorns":18},"base":{"baseDamage":{"min":1,"raw":1,"max":1}},"rarity":"rare"},"Ivy Whip":{"internalName":"Ivy Whip","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":68,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":19,"classRequirement":"shaman","strength":5},"powderSlots":1,"lore":"\"The vines you'll find among the foilage make for great rope!\" -Alekin's Guide to Plant Fiber Cordage","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.earth1"}},"identifications":{"rawStrength":2,"4thSpellCost":-15,"knockback":30,"earthDamage":8},"base":{"baseDamage":{"min":15,"raw":15,"max":25},"baseEarthDamage":{"min":25,"raw":25,"max":25}},"rarity":"unique"},"Reticence":{"internalName":"Reticence","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":62,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"mage"},"powderSlots":1,"lore":"Many old mages had to perform lengthy incantations to make potent even their simplest spells. A mage cursed to be mute, however, brought upon a revolution to spellcasting through this simple wand.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"rawStrength":7,"rawMainAttackDamage":{"min":5,"raw":16,"max":21},"rawSpellDamage":{"min":-32,"raw":-25,"max":-17},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":25,"raw":25,"max":35}},"rarity":"legendary"},"Spider Ring":{"internalName":"Spider Ring","type":"accessory","accessoryType":"ring","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":18},"lore":"\"Crawly things. They crawl on the mushrooms. Mushrooms shouldn't be crawly!\" -Yahya, Mushroom Man","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"lifeSteal":3,"walkSpeed":3},"base":{"baseAirDefence":3},"rarity":"unique"},"Tribal Cap":{"internalName":"Tribal Cap","type":"armour","armourType":"helmet","armourColor":"rgb(153,153,0)","armourMaterial":"leather","dropRestriction":"normal","identified":true,"requirements":{"level":18},"powderSlots":1,"identifications":{"rawAgility":2,"lootBonus":7},"base":{"baseHealth":70},"rarity":"set"},"Spear of Prosperity":{"internalName":"Spear of Prosperity","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":43,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":5,"raw":15,"max":20},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":24,"raw":24,"max":33}},"rarity":"unique"},"Burning Pants":{"internalName":"Burning Pants","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":18,"defence":10},"identifications":{"rawHealth":{"min":-26,"raw":-20,"max":-14},"thorns":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":8,"max":10},"exploding":{"min":2,"raw":5,"max":7},"fireDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":100,"baseWaterDefence":-5,"baseFireDefence":-5},"rarity":"rare"},"Lizard":{"internalName":"Lizard","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":18},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":18},"rarity":"unique"},"Skin Piercer":{"internalName":"Skin Piercer","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":110,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"archer","dexterity":5},"powderSlots":1,"lore":"The average bow can boast a range of skills, but unlike this one, not every bow can penetrate through any organic skin, including dragon hide.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"201","name":"bow.thunder2"}},"identifications":{"rawDexterity":9,"mainAttackDamage":{"min":2,"raw":7,"max":9},"thunderDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":1,"raw":1,"max":50},"baseThunderDamage":{"min":1,"raw":1,"max":55}},"rarity":"legendary"},"Maltic's Aid":{"internalName":"Maltic's Aid","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":18},"powderSlots":1,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":75},"rarity":"unique"},"Zombie Helm":{"internalName":"Zombie Helm","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":18},"powderSlots":1,"identifications":{"rawStrength":3,"healthRegen":{"min":3,"raw":10,"max":13},"rawHealth":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":75,"baseEarthDefence":4,"baseAirDefence":-4},"rarity":"unique"},"Shajone":{"internalName":"Shajone","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":18},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"identifications":{"rawMainAttackDamage":7,"rawSpellDamage":5,"healthRegenRaw":5},"base":{"baseHealth":85},"rarity":"unique"},"Prog":{"internalName":"Prog","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":90,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"shaman","dexterity":10,"defence":5},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"manaSteal":{"min":2,"raw":8,"max":10},"raw1stSpellCost":{"min":13,"raw":10,"max":7},"raw2ndSpellCost":{"min":-1,"raw":-5,"max":-6}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseThunderDamage":{"min":8,"raw":8,"max":12},"baseFireDamage":{"min":7,"raw":7,"max":10}},"rarity":"rare"},"White Ghost":{"internalName":"White Ghost","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":60,"dropRestriction":"never","identified":true,"requirements":{"level":18,"classRequirement":"assassin","agility":15},"powderSlots":1,"dropMeta":{"name":"Nemract","type":"merchant","coordinates":[111,44,-2199]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.air1"}},"identifications":{"rawAgility":4,"manaSteal":4,"walkSpeed":5},"base":{"baseAirDamage":{"min":15,"raw":15,"max":24}},"rarity":"rare"},"Pursuit":{"internalName":"Pursuit","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":49,"dropRestriction":"never","identified":true,"requirements":{"level":18,"classRequirement":"warrior","agility":5},"powderSlots":1,"dropMeta":{"name":"Bremminglar","type":"merchant","coordinates":[717,69,-2076]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"472","name":"spear.thunder2"}},"identifications":{"rawDexterity":4,"lifeSteal":7,"walkSpeed":12,"airDamage":8},"base":{"baseDamage":{"min":11,"raw":11,"max":16},"baseThunderDamage":{"min":5,"raw":5,"max":7}},"rarity":"unique"},"Bovemist Amulet":{"internalName":"Bovemist Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":18,"intelligence":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"rawIntelligence":3,"healthRegen":{"min":2,"raw":8,"max":10}},"base":{"baseThunderDefence":5,"baseWaterDefence":5},"rarity":"unique"},"Studded Leather Boots":{"internalName":"Studded Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":18},"base":{"baseHealth":55},"rarity":"common"},"Spicy":{"internalName":"Spicy","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":70,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"assassin","defence":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"263","name":"dagger.fire1"}},"identifications":{"rawDefence":4,"rawMainAttackDamage":{"min":5,"raw":18,"max":23},"fireDamage":{"min":3,"raw":9,"max":12}},"base":{"baseDamage":{"min":10,"raw":10,"max":20},"baseFireDamage":{"min":12,"raw":12,"max":14}},"rarity":"rare"},"Tribal Boots":{"internalName":"Tribal Boots","type":"armour","armourType":"boots","armourColor":"rgb(153,153,0)","armourMaterial":"leather","dropRestriction":"normal","identified":true,"requirements":{"level":18},"powderSlots":1,"identifications":{"rawAgility":3,"lootBonus":5},"base":{"baseHealth":75},"rarity":"set"},"Tribal Tunic":{"internalName":"Tribal Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(153,153,0)","armourMaterial":"leather","dropRestriction":"normal","identified":true,"requirements":{"level":18},"powderSlots":1,"identifications":{"mainAttackDamage":10,"lootBonus":5},"base":{"baseHealth":90},"rarity":"set"},"Amulet of the Necromancer":{"internalName":"Amulet of the Necromancer","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":18},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"healthRegen":{"min":-9,"raw":-7,"max":-5},"lifeSteal":{"min":1,"raw":3,"max":4},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseWaterDefence":-5},"rarity":"rare"},"Simple Coin":{"internalName":"Simple Coin","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":18},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":10},"rarity":"unique"},"Lemon Legs":{"internalName":"Lemon Legs","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":18},"powderSlots":2,"lore":"Due to an unfortunate accident where he choked on a lemon, an unremarkable mercenary became a laughing stock. He later managed to shed the title, as he left no one alive who remembered the name.","identifications":{"rawDexterity":7,"mainAttackDamage":{"min":5,"raw":15,"max":20},"rawSpellDamage":{"min":5,"raw":15,"max":20},"poison":{"min":11,"raw":35,"max":46},"xpBonus":{"min":2,"raw":7,"max":9},"earthDamage":{"min":-16,"raw":-12,"max":-8},"thunderDamage":{"min":3,"raw":10,"max":13},"earthDefence":{"min":-13,"raw":-10,"max":-7}},"base":{"baseHealth":125,"baseEarthDefence":-5,"baseThunderDefence":15},"rarity":"legendary"},"WitherString":{"internalName":"WitherString","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":62,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"manaRegen":{"min":2,"raw":5,"max":7},"manaSteal":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":30,"raw":30,"max":42},"baseWaterDamage":{"min":2,"raw":2,"max":8}},"rarity":"unique"},"Tribal Pants":{"internalName":"Tribal Pants","type":"armour","armourType":"leggings","armourColor":"rgb(153,153,0)","armourMaterial":"leather","dropRestriction":"normal","identified":true,"requirements":{"level":18},"powderSlots":1,"identifications":{"rawMainAttackDamage":20,"lootBonus":8},"base":{"baseHealth":80},"rarity":"set"},"Valix":{"internalName":"Valix","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":31,"dropRestriction":"normal","requirements":{"level":18,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"identifications":{"walkSpeed":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":9,"raw":9,"max":11}},"rarity":"unique"},"Sting":{"internalName":"Sting","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":48,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":18,"classRequirement":"warrior","defence":5},"powderSlots":1,"lore":"\"I swear on my life those spiders were covered in spikes! Go out there, see if I'm wrong!\" -Suri, Elemental Researcher","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"lifeSteal":10,"thorns":5},"base":{"baseDamage":{"min":10,"raw":10,"max":18},"baseFireDamage":{"min":14,"raw":14,"max":22}},"rarity":"unique"},"Confusing Cap":{"internalName":"Confusing Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":18},"identifications":{"rawIntelligence":-20},"base":{"baseHealth":99},"rarity":"unique"},"Canyon Parsley":{"internalName":"Canyon Parsley","type":"ingredient","requirements":{"level":18,"skills":["scribing"]},"icon":{"format":"legacy","value":"175:3"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"rawStrength":{"min":4,"raw":4,"max":5},"earthDamage":{"min":3,"raw":3,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":-140,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Time Anomaly","coords":[-534,103,-1354,50]}]},"Spellbound Ash":{"internalName":"Spellbound Ash","type":"ingredient","requirements":{"level":18,"skills":["alchemism"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"spellDamage":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-45,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":5,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Risen Skeleton","coords":[505,59,-1855,10]}]},"Infused Gold":{"internalName":"Infused Gold","type":"ingredient","requirements":{"level":18,"skills":["jeweling"]},"icon":{"format":"legacy","value":"371:0"},"identifications":{"lootBonus":{"min":3,"raw":3,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-33000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ancient Guardian","coords":[-556,71,-1173,20]}]},"Rose":{"internalName":"Rose","type":"ingredient","requirements":{"level":18,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"38:0"},"identifications":{"thorns":{"min":2,"raw":2,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-37000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Lonely Spider","coords":[579,60,-1824,0]},{"name":"Rose Florist","coords":[160,73,-1012,0]},{"name":"Peppered Ghost","coords":[-627,7,-858,1]}]},"Smooth Silt":{"internalName":"Smooth Silt","type":"ingredient","requirements":{"level":18,"skills":["armouring","alchemism"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"rawHealth":{"min":15,"raw":15,"max":25},"waterDefence":{"min":3,"raw":3,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-66,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":3,"agilityRequirement":0},"droppedBy":[{"name":"Silt Formation","coords":[76,44,-2105,8]}]},"Medico":{"internalName":"Medico","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17},"powderSlots":1,"identifications":{"healthRegen":{"min":4,"raw":14,"max":18},"healthRegenRaw":{"min":2,"raw":6,"max":8},"rawHealth":{"min":7,"raw":22,"max":29}},"base":{"baseHealth":70},"rarity":"rare"},"Yahya's Nail Clipper":{"internalName":"Yahya's Nail Clipper","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":52,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"260","name":"dagger.earth1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"healthRegen":{"min":2,"raw":6,"max":8},"manaRegen":{"min":2,"raw":6,"max":8},"earthDefence":{"min":2,"raw":5,"max":7},"airDefence":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":18,"raw":18,"max":24},"baseEarthDamage":{"min":0,"raw":0,"max":8}},"rarity":"unique"},"Light Spruce Wood Spear":{"internalName":"Light Spruce Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":31,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":13,"raw":13,"max":17}},"rarity":"common"},"Webstring":{"internalName":"Webstring","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":61,"dropRestriction":"dungeon","requirements":{"level":17,"classRequirement":"archer","dexterity":5},"powderSlots":1,"dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"200","name":"bow.thunder1"}},"identifications":{"rawDexterity":7,"manaSteal":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-8,"raw":-6,"max":-4},"stealing":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":14,"raw":14,"max":38},"baseThunderDamage":{"min":14,"raw":14,"max":15}},"rarity":"unique"},"Light Spruce Wood Bow":{"internalName":"Light Spruce Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":45,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":18,"raw":18,"max":26}},"rarity":"common"},"Spiderweb String":{"internalName":"Spiderweb String","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":38,"dropRestriction":"dungeon","requirements":{"level":17,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"identifications":{"poison":{"min":17,"raw":57,"max":74},"lifeSteal":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":40,"raw":40,"max":52}},"rarity":"unique"},"Ivy":{"internalName":"Ivy","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":55,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"poison":{"min":15,"raw":50,"max":65},"thorns":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseEarthDamage":{"min":8,"raw":8,"max":15}},"rarity":"unique"},"Hunger":{"internalName":"Hunger","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17},"powderSlots":2,"lore":"Forgotten long ago, these boots curse the wearer with an endless hunger.","identifications":{"mainAttackDamage":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":-9,"raw":-7,"max":-5},"lifeSteal":{"min":3,"raw":9,"max":12},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":110},"rarity":"legendary"},"Diet":{"internalName":"Diet","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":17,"agility":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"rawStrength":-2,"rawAgility":4,"walkSpeed":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Kelight's Toothbrush":{"internalName":"Kelight's Toothbrush","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":40,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":3,"raw":9,"max":12},"earthDamage":{"min":-6,"raw":-5,"max":-3},"earthDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":16,"raw":16,"max":21},"baseThunderDamage":{"min":8,"raw":8,"max":9}},"rarity":"rare"},"Asher's Relic":{"internalName":"Asher's Relic","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":17},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"healthRegenRaw":{"min":1,"raw":4,"max":5},"lifeSteal":{"min":-13,"raw":-10,"max":-7},"manaRegen":{"min":2,"raw":6,"max":8},"manaSteal":{"min":-10,"raw":-8,"max":-6},"walkSpeed":{"min":2,"raw":6,"max":8}},"rarity":"rare"},"Light Spruce Wood Relik":{"internalName":"Light Spruce Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":46,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":18,"raw":18,"max":19}},"rarity":"common"},"Wormwood":{"internalName":"Wormwood","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17,"strength":5,"intelligence":5},"identifications":{"rawHealth":{"min":-18,"raw":-14,"max":-10},"poison":{"min":7,"raw":23,"max":30},"lifeSteal":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":70,"baseEarthDefence":6,"baseThunderDefence":-6,"baseWaterDefence":6,"baseAirDefence":-6},"rarity":"unique"},"Gnocchi":{"internalName":"Gnocchi","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-6,"raw":-5,"max":-3},"spellDamage":{"min":2,"raw":8,"max":10},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":74},"rarity":"rare"},"Euthanasia":{"internalName":"Euthanasia","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":2,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawSpellDamage":{"min":10,"raw":32,"max":42},"healthRegenRaw":{"min":-10,"raw":-8,"max":-6},"poison":{"min":30,"raw":100,"max":130}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"rare"},"Silkwrap":{"internalName":"Silkwrap","type":"accessory","accessoryType":"ring","dropRestriction":"dungeon","requirements":{"level":17,"defence":5},"dropMeta":{"name":"Infested Pit","type":"dungeon","coordinates":[-157,54,-1819]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"mainAttackDamage":{"min":-4,"raw":-3,"max":-2},"healthRegenRaw":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":15},"rarity":"rare"},"Squidword's Clarinet":{"internalName":"Squidword's Clarinet","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":31,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":4,"rawAgility":4,"walkSpeed":{"min":2,"raw":5,"max":7},"waterDamage":{"min":2,"raw":8,"max":10},"fireDamage":{"min":-13,"raw":-10,"max":-7},"waterDefence":{"min":2,"raw":7,"max":9}},"base":{"baseWaterDamage":{"min":3,"raw":3,"max":6},"baseAirDamage":{"min":2,"raw":2,"max":9}},"rarity":"unique"},"Bejeweled Bracelet":{"internalName":"Bejeweled Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":17},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"170","name":"bracelet.multi1"}},"identifications":{"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"unique"},"Light Spruce Wood Wand":{"internalName":"Light Spruce Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":22,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":7,"raw":7,"max":11}},"rarity":"common"},"Keen Measure":{"internalName":"Keen Measure","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":60,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"shaman","intelligence":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawDexterity":3,"rawIntelligence":3,"manaRegen":{"min":2,"raw":6,"max":8},"2ndSpellCost":{"min":-4,"raw":-14,"max":-18},"walkSpeed":{"min":-5,"raw":-4,"max":-3}},"base":{"baseDamage":{"min":17,"raw":17,"max":18},"baseWaterDamage":{"min":11,"raw":11,"max":12}},"rarity":"unique"},"Jate":{"internalName":"Jate","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":8,"max":10},"reflection":{"min":2,"raw":5,"max":7},"rawMaxMana":{"min":5,"raw":15,"max":20},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":63},"rarity":"unique"},"Studded Leather Cap":{"internalName":"Studded Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":17},"base":{"baseHealth":54},"rarity":"common"},"Flawed Golden Chestplate":{"internalName":"Flawed Golden Chestplate","type":"armour","armourType":"chestplate","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":17},"powderSlots":1,"base":{"baseHealth":58},"rarity":"common"},"Light Spruce Wood Dagger":{"internalName":"Light Spruce Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":40,"dropRestriction":"normal","requirements":{"level":17,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":11,"raw":11,"max":15}},"rarity":"common"},"Highland Basil":{"internalName":"Highland Basil","type":"ingredient","requirements":{"level":17,"skills":["alchemism"]},"icon":{"format":"legacy","value":"295:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"airDamage":{"min":5,"raw":5,"max":7},"rawAgility":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Time Anomaly","coords":[-534,103,-1354,50]}]},"Quatrain":{"internalName":"Quatrain","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":16},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"mainAttackDamage":{"min":1,"raw":4,"max":5},"spellDamage":{"min":1,"raw":4,"max":5},"healthRegen":{"min":1,"raw":4,"max":5},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":4},"rarity":"rare"},"Enchanter":{"internalName":"Enchanter","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":19,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.water1"}},"identifications":{"rawStrength":-3,"rawIntelligence":4,"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":7,"raw":7,"max":10},"baseWaterDamage":{"min":3,"raw":3,"max":5}},"rarity":"unique"},"Circuit Buster":{"internalName":"Circuit Buster","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":79,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"assassin","dexterity":10},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"rawSpellDamage":{"min":5,"raw":15,"max":20},"healthRegen":{"min":-12,"raw":-9,"max":-6}},"base":{"baseDamage":{"min":5,"raw":5,"max":15},"baseThunderDamage":{"min":12,"raw":12,"max":31}},"rarity":"legendary"},"Pigman Battle Hammer":{"internalName":"Pigman Battle Hammer","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":50,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"warrior","strength":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":4,"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":24,"raw":24,"max":32},"baseEarthDamage":{"min":28,"raw":28,"max":36}},"rarity":"set"},"Earthwave":{"internalName":"Earthwave","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":60,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"shaman","strength":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"397","name":"relik.earth1"}},"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":6,"raw":20,"max":26}},"base":{"baseEarthDamage":{"min":36,"raw":36,"max":44}},"rarity":"unique"},"Hard Leather Tunic":{"internalName":"Hard Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":16},"base":{"baseHealth":49},"rarity":"common"},"Presto":{"internalName":"Presto","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":81,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"shaman","agility":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"spellDamage":{"min":2,"raw":5,"max":7},"reflection":{"min":2,"raw":8,"max":10},"walkSpeed":{"min":5,"raw":15,"max":20},"fireDamage":{"min":-13,"raw":-10,"max":-7},"airDefence":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":17,"raw":17,"max":20},"baseAirDamage":{"min":6,"raw":6,"max":9}},"rarity":"rare"},"Alligator":{"internalName":"Alligator","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":16,"strength":5,"intelligence":5},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"thorns":{"min":1,"raw":4,"max":5},"waterDamage":{"min":1,"raw":4,"max":5},"thunderDefence":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":75,"baseThunderDefence":-5,"baseWaterDefence":7},"rarity":"rare"},"Nemract Waders":{"internalName":"Nemract Waders","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":16},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawIntelligence":3,"spellDamage":5,"lootBonus":5,"waterDamage":6,"thunderDefence":-6},"base":{"baseHealth":80,"baseThunderDefence":-3,"baseWaterDefence":6},"rarity":"rare"},"Nightmail":{"internalName":"NightMail","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":16,"dexterity":3,"agility":3},"powderSlots":1,"identifications":{"rawStrength":2,"rawDexterity":2,"rawIntelligence":2,"rawDefence":2,"rawAgility":2,"thunderDamage":{"min":2,"raw":5,"max":7},"airDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":56,"baseEarthDefence":-3,"baseThunderDefence":3,"baseFireDefence":-3,"baseAirDefence":3},"rarity":"unique"},"Pigman's Loincloth":{"internalName":"Pigman's Loincloth","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":16,"strength":5},"powderSlots":1,"identifications":{"rawStrength":4,"mainAttackDamage":{"min":2,"raw":6,"max":8},"rawMainAttackDamage":{"min":5,"raw":16,"max":21}},"base":{"baseHealth":63},"rarity":"unique"},"Jike":{"internalName":"Jike","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":16},"identifications":{"rawMainAttackDamage":{"min":4,"raw":14,"max":18},"walkSpeed":{"min":2,"raw":5,"max":7},"lootBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":60},"rarity":"unique"},"Hilt":{"internalName":"Hilt","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":25,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"warrior"},"powderSlots":3,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawMainAttackDamage":{"min":-10,"raw":-8,"max":-6},"rawSpellDamage":{"min":-8,"raw":-6,"max":-4},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":8,"raw":8,"max":16}},"rarity":"unique"},"Carvel's Sight":{"internalName":"Carvel's Sight","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":69,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"archer","intelligence":8},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":20,"raw":20,"max":27},"baseWaterDamage":{"min":8,"raw":8,"max":12}},"rarity":"rare"},"Bear Body":{"internalName":"Bear Body","type":"armour","armourType":"chestplate","armourColor":"rgb(87,42,42)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":16},"identifications":{"mainAttackDamage":6},"base":{"baseHealth":78},"rarity":"set"},"Deracine":{"internalName":"Deracine","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":60,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"rawIntelligence":5,"mainAttackDamage":{"min":-26,"raw":-20,"max":-14},"rawHealth":{"min":-65,"raw":-50,"max":-35},"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":25},"baseWaterDamage":{"min":15,"raw":15,"max":20}},"rarity":"legendary"},"Digested Dagger":{"internalName":"Digested Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":49,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":3,"rawDexterity":3,"poison":{"min":9,"raw":30,"max":39}},"base":{"baseDamage":{"min":16,"raw":16,"max":23}},"rarity":"unique"},"Cephalothorax":{"internalName":"Cephalothorax","type":"armour","armourType":"helmet","armourColor":"rgb(37,33,33)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":16},"powderSlots":1,"lore":"\"...Most of their vital organs, however, are located in the bulbous abdomen. If you've enough crushing force with your weapon, it may be a quicker alternative for the kill. ...\" -Admiral Aegis' Guide To Nivla Threats, Chapter 3","dropMeta":{"name":"Infested Pit","type":"dungeonMerchant","coordinates":[-157,54,-1819]},"identifications":{"rawDexterity":4,"walkSpeed":7},"base":{"baseHealth":75},"rarity":"set"},"Fern":{"internalName":"Fern","type":"weapon","weaponType":"spear","attackSpeed":"very_fast","averageDps":37,"dropRestriction":"normal","requirements":{"level":16,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10},"rawHealth":{"min":12,"raw":40,"max":52},"lifeSteal":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":2,"raw":2,"max":14},"baseEarthDamage":{"min":2,"raw":2,"max":6}},"rarity":"rare"},"Worn Memorabilia":{"internalName":"Worn Memorabilia","type":"ingredient","requirements":{"level":16,"skills":["jeweling","tailoring"]},"icon":{"format":"legacy","value":"336:0"},"identifications":{"healthRegen":{"min":2,"raw":2,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cultist","coords":[719,41,-1430,6]}]},"Munched Grass":{"internalName":"Munched Grass","type":"ingredient","requirements":{"level":16,"skills":["tailoring","jeweling"]},"icon":{"format":"legacy","value":"31:2"},"identifications":{"poison":{"min":6,"raw":6,"max":8},"rawStrength":{"min":1,"raw":1,"max":1}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Grass Muncher","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]},{"name":"Giant Weevil","coords":[939,70,-1344,5]},{"name":"Giant Weevil","coords":[[985,41,-1380,5],[1016,44,-1366,4],[1016,44,-1366,6]]}]},"Platinum Grook Egg":{"internalName":"Platinum Grook Egg","type":"ingredient","requirements":{"level":16,"skills":["armouring"]},"icon":{"format":"legacy","value":"344:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":2},"xpBonus":{"min":4,"raw":4,"max":4},"lootBonus":{"min":4,"raw":4,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-68000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Enraged Corrupted Cow","coords":[146,69,-1448,50]}]},"Toxic Spores":{"internalName":"Toxic Spores","type":"ingredient","requirements":{"level":16,"skills":["alchemism"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"poison":{"min":10,"raw":10,"max":15},"mainAttackDamage":{"min":4,"raw":4,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":-63,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spore Launcher","coords":[[731,25,-1602,20],[765,28,-1563,20],[699,40,-1586,20],[730,29,-1541,20]]},{"name":"Fungal Knight","coords":[[731,25,-1602,20],[765,28,-1563,20],[699,40,-1586,20],[730,29,-1541,20]]},{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]}]},"Wood Snippet":{"internalName":"Wood Snippet","type":"ingredient","requirements":{"level":16,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"351:3"},"identifications":{"rawHealth":{"min":10,"raw":10,"max":20}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Lumberjack","coords":null},{"name":"Giant Weevil","coords":[939,70,-1344,5]},{"name":"Giant Weevil","coords":[[985,41,-1380,5],[1016,44,-1366,4],[1016,44,-1366,6]]},{"name":"Bushwhacker","coords":[995,50,-1332,2]},{"name":"Bushwhacker","coords":[963,41,-1327,2]},{"name":"Root Ingrainer","coords":[[380,62,-1379,10],[382,48,-1353,6]]},{"name":"Root Infestation","coords":[[368,62,-1378,0],[360,64,-1387,0]]}]},"Red String":{"internalName":"Red String","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":16},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"healthRegen":{"min":1,"raw":3,"max":4},"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":12},"rarity":"unique"},"Bear Mask":{"internalName":"Bear Mask","type":"armour","armourType":"helmet","dropRestriction":"never","identified":true,"requirements":{"level":15},"icon":{"format":"skin","value":"695bbf9f175b1e76a61b4cd0ba183b18c9467017f41ed1046abf65a4a63c4a0"},"identifications":{"rawMainAttackDamage":25},"base":{"baseHealth":72},"rarity":"set"},"Essren's Coat":{"internalName":"Essren's Coat","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":15},"powderSlots":1,"identifications":{"rawIntelligence":4,"rawSpellDamage":{"min":6,"raw":20,"max":26},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":50,"baseEarthDefence":5,"baseThunderDefence":5,"baseWaterDefence":5,"baseFireDefence":5,"baseAirDefence":5},"rarity":"rare"},"Butter Helmet":{"internalName":"Butter Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15},"powderSlots":1,"identifications":{"rawAgility":4},"base":{"baseHealth":56},"rarity":"unique"},"Glowing Wand":{"internalName":"Glowing Wand","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":28,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.fire1"}},"identifications":{"healthRegen":{"min":4,"raw":12,"max":16},"rawHealth":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":4,"raw":4,"max":6},"baseFireDamage":{"min":2,"raw":2,"max":6}},"rarity":"unique"},"Golem's Arm":{"internalName":"Golem's Arm","type":"weapon","weaponType":"wand","attackSpeed":"super_slow","averageDps":43,"dropRestriction":"never","requirements":{"level":15,"classRequirement":"mage","strength":5},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawStrength":4,"rawEarthMainAttackDamage":{"min":17,"raw":55,"max":72},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":25,"raw":25,"max":35},"baseEarthDamage":{"min":40,"raw":40,"max":70}},"rarity":"legendary"},"Diorite-Hewn Spear":{"internalName":"Diorite-hewn Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":26,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":26,"raw":26,"max":37}},"rarity":"common"},"Spore Shortsword":{"internalName":"Spore Shortsword","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":56,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.air1"}},"identifications":{"poison":{"min":11,"raw":36,"max":47},"exploding":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":11,"raw":11,"max":15}},"rarity":"set"},"Flawed Golden Leggings":{"internalName":"Flawed Golden Leggings","type":"armour","armourType":"leggings","armourMaterial":"golden","dropRestriction":"never","requirements":{"level":15},"powderSlots":1,"base":{"baseHealth":44},"rarity":"common"},"Hard Leather Leggings":{"internalName":"Hard Leather Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15},"base":{"baseHealth":44},"rarity":"common"},"Boil Lance":{"internalName":"Boil Lance","type":"weapon","weaponType":"spear","attackSpeed":"super_fast","averageDps":37,"dropRestriction":"never","requirements":{"level":15,"classRequirement":"warrior"},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"rawDexterity":5,"rawMainAttackDamage":{"min":4,"raw":14,"max":18},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":3,"raw":3,"max":5},"baseThunderDamage":{"min":2,"raw":2,"max":7}},"rarity":"rare"},"Arcane Boots":{"internalName":"Arcane Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15},"powderSlots":2,"identifications":{"mainAttackDamage":{"min":-9,"raw":-7,"max":-5},"spellDamage":{"min":1,"raw":4,"max":5},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":40,"baseEarthDefence":2,"baseThunderDefence":2,"baseWaterDefence":2,"baseFireDefence":2,"baseAirDefence":2},"rarity":"unique"},"Green Perfection":{"internalName":"Green Perfection","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":50,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawStrength":5,"lootBonus":{"min":2,"raw":6,"max":8},"stealing":{"min":2,"raw":5,"max":7},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":23},"baseFireDamage":{"min":10,"raw":10,"max":13}},"rarity":"unique"},"Diaconate":{"internalName":"Diaconate","type":"accessory","accessoryType":"necklace","dropRestriction":"never","requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"rawMainAttackDamage":{"min":-10,"raw":-8,"max":-6},"healthRegenRaw":{"min":2,"raw":8,"max":10},"waterDefence":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":20,"baseWaterDefence":3,"baseFireDefence":5},"rarity":"legendary"},"Slap":{"internalName":"Slap","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":3,"rawMainAttackDamage":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Ragni Fatigues":{"internalName":"Ragni Fatigues","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":15},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawStrength":3,"mainAttackDamage":6,"xpBonus":5,"earthDamage":8,"airDefence":-7},"base":{"baseHealth":76,"baseEarthDefence":5,"baseAirDefence":-4},"rarity":"rare"},"Eater":{"internalName":"Eater","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"lifeSteal":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Mask of the Dark Curse":{"internalName":"Mask of the Dark Curse","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":15},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"lifeSteal":{"min":2,"raw":7,"max":9},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":70,"baseThunderDefence":10,"baseWaterDefence":-5},"rarity":"rare"},"Pigman Helmet":{"internalName":"Pigman Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(45,135,23)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15,"strength":5},"powderSlots":1,"identifications":{"walkSpeed":{"min":-5,"raw":-4,"max":-3},"earthDamage":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":80,"baseEarthDefence":5,"baseAirDefence":-5},"rarity":"set"},"Slime-Blend Leggings":{"internalName":"Slime-blend Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15},"identifications":{"poison":{"min":5,"raw":17,"max":22},"earthDamage":{"min":2,"raw":7,"max":9},"waterDamage":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":70,"baseThunderDefence":-10,"baseWaterDefence":7},"rarity":"rare"},"Diamond Sky":{"internalName":"Diamond Sky","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":54,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":5,"raw":18,"max":23}},"base":{"baseDamage":{"min":24,"raw":24,"max":28}},"rarity":"unique"},"Diorite-Hewn Wand":{"internalName":"Diorite-hewn Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":20,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":12,"raw":12,"max":15}},"rarity":"common"},"Bear Head":{"internalName":"Bear Head","type":"armour","armourType":"helmet","armourColor":"rgb(87,42,42)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":15},"identifications":{"rawMainAttackDamage":{"min":8,"raw":25,"max":33}},"base":{"baseHealth":72},"rarity":"set"},"Diorite-Hewn Relik":{"internalName":"Diorite-hewn Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":44,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":27,"raw":27,"max":31}},"rarity":"common"},"Omnitread Boots":{"internalName":"Omnitread Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15,"agility":10},"powderSlots":2,"lore":"Plated with enchanted metals, these magic-warding boots allow faster travel over nearly any solid surface.","identifications":{"walkSpeed":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":90,"baseEarthDefence":10,"baseThunderDefence":10,"baseWaterDefence":10,"baseFireDefence":10,"baseAirDefence":10},"rarity":"legendary"},"Diorite-Hewn Dagger":{"internalName":"Diorite-hewn Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":38,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":15,"raw":15,"max":22}},"rarity":"common"},"Diorite-Hewn Bow":{"internalName":"Diorite-hewn Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":40,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":42,"raw":42,"max":55}},"rarity":"common"},"Hothead":{"internalName":"Hothead","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":15},"powderSlots":1,"identifications":{"mainAttackDamage":{"min":2,"raw":8,"max":10},"healthRegenRaw":{"min":2,"raw":5,"max":7},"exploding":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":60,"baseFireDefence":5},"rarity":"unique"},"Iron Knuckle":{"internalName":"Iron Knuckle","type":"weapon","weaponType":"dagger","attackSpeed":"super_fast","averageDps":80,"dropRestriction":"normal","requirements":{"level":15,"classRequirement":"assassin","strength":5},"powderSlots":1,"lore":"These bulky-looking gauntlets are actually extremely lightweight, being created of a magical elf-blessed iron alloy blend.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"260","name":"dagger.earth1"}},"identifications":{"rawStrength":5,"rawDefence":5,"thorns":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":8,"max":10},"earthDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":9,"raw":9,"max":13},"baseEarthDamage":{"min":6,"raw":6,"max":9}},"rarity":"legendary"},"Dried Gill":{"internalName":"Dried Gill","type":"ingredient","requirements":{"level":15,"skills":["cooking"]},"icon":{"format":"legacy","value":"32:0"},"identifications":{"xpBonus":{"min":8,"raw":8,"max":10},"lootBonus":{"min":5,"raw":5,"max":8}},"tier":2,"consumableOnlyIDs":{"duration":-270,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Sentient Polypore","coords":[724,25,-1599,10]},{"name":"Fungal Knight","coords":[[731,25,-1602,20],[765,28,-1563,20],[699,40,-1586,20],[730,29,-1541,20]]}]},"Altered Ash":{"internalName":"Altered Ash","type":"ingredient","requirements":{"level":15,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"spellDamage":{"min":1,"raw":1,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-45,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Cultist","coords":[719,41,-1430,6]}]},"Firefly Dust":{"internalName":"Firefly Dust","type":"ingredient","requirements":{"level":15,"skills":["jeweling","woodworking"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"reflection":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bee","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]}]},"Scarred Leather":{"internalName":"Scarred Leather","type":"ingredient","requirements":{"level":15,"skills":["tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"lifeSteal":{"min":8,"raw":8,"max":12},"rawHealth":{"min":-10,"raw":-10,"max":-7}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Enraged Corrupted Cow","coords":[146,69,-1448,50]}]},"Corrupted Beef":{"internalName":"Corrupted Beef","type":"ingredient","requirements":{"level":15,"skills":["cooking"]},"icon":{"format":"legacy","value":"363:0"},"identifications":{"rawStrength":{"min":3,"raw":3,"max":4},"rawMainAttackDamage":{"min":8,"raw":8,"max":9}},"tier":3,"consumableOnlyIDs":{"duration":-400,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Enraged Corrupted Cow","coords":[146,69,-1448,50]}]},"Relic of the Future":{"internalName":"Relic of the Future","type":"ingredient","requirements":{"level":15,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"264:0"},"identifications":{"thunderDamage":{"min":5,"raw":5,"max":7},"rawSpellDamage":{"min":8,"raw":8,"max":14}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-70000,"strengthRequirement":0,"dexterityRequirement":8,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Time Anomaly","coords":[-534,103,-1354,50]}]},"Depreciating Flesh":{"internalName":"Depreciating Flesh","type":"ingredient","requirements":{"level":15,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"336:0"},"identifications":{"thorns":{"min":3,"raw":3,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bushwhacker","coords":[995,50,-1332,2]},{"name":"Bushwhacker","coords":[963,41,-1327,2]},{"name":"Guzzler","coords":[972,48,-1331,0]},{"name":"Guzzler","coords":[998,41,-1393,0]},{"name":"Host","coords":[985,42,-1366,7]},{"name":"Blazing Host","coords":[1008,38,-1426,3]},{"name":"Undead Bandit","coords":null},{"name":"Crypt Parasite","coords":[505,59,-1855,10]}]},"Cultist Ashes":{"internalName":"Cultist Ashes","type":"ingredient","requirements":{"level":15,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"289:0"},"identifications":{"healthRegenRaw":{"min":-4,"raw":-4,"max":-3},"lifeSteal":{"min":7,"raw":7,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-22000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Relic of the Past":{"internalName":"Relic of the Past","type":"ingredient","requirements":{"level":15,"skills":["tailoring"]},"icon":{"format":"legacy","value":"405:0"},"identifications":{"rawDefence":{"min":3,"raw":3,"max":3},"healthRegen":{"min":6,"raw":6,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-45000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":4,"agilityRequirement":0},"droppedBy":[{"name":"Time Anomaly","coords":[-534,103,-1354,50]}]},"Bat Ear":{"internalName":"Bat Ear","type":"ingredient","requirements":{"level":15,"skills":["tailoring"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"walkSpeed":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Black Bat","coords":[[104,60,-1718,10],[388,59,-1377,15]]},{"name":"Black Bat","coords":[[674,78,-1270,7],[448,80,-1315,7]]},{"name":"Foul Bat","coords":null},{"name":"Foul Bat","coords":null},{"name":"Tepidfur Bat","coords":false},{"name":"Well Bat","coords":null},{"name":"Empty Bottle","coords":null},{"name":"null","coords":null},{"name":"Cave Bat","coords":[[-1500,19,-5554,1],[-1507,16,-5546,1],[-1516,13,-5546,1]]}]},"Undead Heart":{"internalName":"Undead Heart","type":"ingredient","requirements":{"level":15,"skills":["armouring","woodworking"]},"icon":{"format":"legacy","value":"434:0"},"identifications":{"rawHealth":{"min":10,"raw":10,"max":15},"rawDefence":{"min":1,"raw":1,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-31000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombie","coords":[[-4,61,-2030,35],[-280,82,-1757,35],[901,81,-1539,35]]}]},"Waterfall Thyme":{"internalName":"Waterfall Thyme","type":"ingredient","requirements":{"level":15,"skills":["cooking"]},"icon":{"format":"legacy","value":"31:1"},"identifications":{"waterDamage":{"min":2,"raw":2,"max":3},"waterDefence":{"min":4,"raw":4,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-185,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Time Anomaly","coords":[-534,103,-1354,50]}]},"Lively Apple":{"internalName":"Lively Apple","type":"ingredient","requirements":{"level":15,"skills":["cooking"]},"icon":{"format":"legacy","value":"260:0"},"identifications":{"healthRegenRaw":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Orchard Owner","coords":[272,67,-1611,20]},{"name":"Corrupted Apple","coords":[272,67,-1611,20]}]},"Gathering Pickaxe T3":{"internalName":"Gathering Pickaxe 3","type":"tool","toolType":"pickaxe","gatheringSpeed":28,"identified":true,"requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"51","name":"gatheringTool.pickaxe3"}},"rarity":"common"},"Gathering Scythe T3":{"internalName":"Gathering Scythe 3","type":"tool","toolType":"scythe","gatheringSpeed":28,"identified":true,"requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"61","name":"gatheringTool.scythe3"}},"rarity":"common"},"Gathering Axe T3":{"internalName":"Gathering Axe 3","type":"tool","toolType":"axe","gatheringSpeed":28,"identified":true,"requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"46","name":"gatheringTool.axe3"}},"rarity":"common"},"Gathering Rod T3":{"internalName":"Gathering Rod 3","type":"tool","toolType":"rod","gatheringSpeed":28,"identified":true,"requirements":{"level":15},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"56","name":"gatheringTool.rod3"}},"rarity":"common"},"Nesaak Snowshoes":{"internalName":"Nesaak Snowshoes","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":14},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawAgility":3,"walkSpeed":7,"xpBonus":5,"airDamage":7,"fireDefence":-7},"base":{"baseHealth":65,"baseFireDefence":-4,"baseAirDefence":5},"rarity":"rare"},"Alice's Sleeve":{"internalName":"Alice's Sleeve","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":14},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"rawDefence":4,"mainAttackDamage":{"min":-8,"raw":-6,"max":-4},"healthRegenRaw":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":20},"rarity":"rare"},"The Old King's Crown":{"internalName":"The Old King's Crown","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":14},"powderSlots":1,"identifications":{"rawDefence":4,"fireDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":56,"baseWaterDefence":-2,"baseFireDefence":5},"rarity":"unique"},"Relic":{"internalName":"Relic","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":79,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"archer"},"powderSlots":1,"lore":"Despite being proven unrelated, this enigmatic bow was the lynchpin to beginning the great search for the Relics.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":4,"raw":4,"max":8},"baseEarthDamage":{"min":8,"raw":8,"max":9},"baseThunderDamage":{"min":1,"raw":1,"max":12},"baseWaterDamage":{"min":1,"raw":1,"max":8},"baseFireDamage":{"min":4,"raw":4,"max":9},"baseAirDamage":{"min":5,"raw":5,"max":8}},"rarity":"legendary"},"Aerolia Boots":{"internalName":"Aerolia Boots","type":"armour","armourType":"boots","armourColor":"rgb(221,124,147)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":14,"quest":"Suspended Flowers"},"powderSlots":1,"identifications":{"healthRegen":{"min":5,"raw":15,"max":20},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":55},"rarity":"unique"},"Butter Knife":{"internalName":"Butter Knife","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":53,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":13,"raw":13,"max":21}},"rarity":"rare"},"Skeleton's Bone":{"internalName":"Skeleton's Bone","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":26,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"identifications":{"rawIntelligence":4,"healthRegen":{"min":2,"raw":8,"max":10},"rawHealth":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":10,"raw":10,"max":24}},"rarity":"unique"},"Chief":{"internalName":"Chief","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":28,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"rawDefence":4,"rawHealth":{"min":12,"raw":40,"max":52},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":8,"max":10},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":7,"raw":7,"max":10},"baseFireDamage":{"min":4,"raw":4,"max":6}},"rarity":"unique"},"Stress":{"internalName":"Stress","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":62,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"shaman"},"powderSlots":2,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"399","name":"relik.basicGold"}},"identifications":{"healthRegenRaw":{"min":-9,"raw":-7,"max":-5},"rawHealth":{"min":-23,"raw":-18,"max":-13},"xpBonus":{"min":6,"raw":19,"max":25},"lootBonus":{"min":6,"raw":19,"max":25}},"base":{"baseDamage":{"min":19,"raw":19,"max":21}},"rarity":"rare"},"Carbon":{"internalName":"Carbon","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":45,"dropRestriction":"never","requirements":{"level":14,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.fire1"}},"identifications":{"rawDefence":3,"healthRegenRaw":{"min":3,"raw":9,"max":12},"damage":{"min":-5,"raw":-4,"max":-3},"exploding":{"min":6,"raw":19,"max":25},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":10},"baseFireDamage":{"min":15,"raw":15,"max":25}},"rarity":"legendary"},"Collier Tunic":{"internalName":"Collier Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":14},"powderSlots":1,"identifications":{"rawDefence":3,"healthRegen":{"min":2,"raw":8,"max":10},"rawHealth":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":55,"baseWaterDefence":-5,"baseFireDefence":7},"rarity":"unique"},"Autumn Tree":{"internalName":"Autumn Tree","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":22,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawStrength":7,"poison":{"min":8,"raw":25,"max":33}},"base":{"baseDamage":{"min":7,"raw":7,"max":13},"baseEarthDamage":{"min":3,"raw":3,"max":7}},"rarity":"unique"},"Almuj Turban":{"internalName":"Almuj Turban","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":14},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawDexterity":3,"rawMainAttackDamage":10,"lootBonus":5,"thunderDamage":8,"earthDefence":-8},"base":{"baseHealth":60,"baseEarthDefence":-4,"baseThunderDefence":4},"rarity":"rare"},"Hard Leather Boots":{"internalName":"Hard Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":14},"base":{"baseHealth":40},"rarity":"common"},"The Euphoric Fedora":{"internalName":"The Euphoric Fedora","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":14},"powderSlots":1,"identifications":{"rawDexterity":3,"lifeSteal":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":69},"rarity":"rare"},"Carvel's Creation":{"internalName":"Carvel's Creation","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":14},"powderSlots":2,"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":3,"raw":9,"max":12},"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":51,"baseWaterDefence":7,"baseAirDefence":7},"rarity":"rare"},"Reflex":{"internalName":"Reflex","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":14},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"thorns":{"min":1,"raw":3,"max":4},"walkSpeed":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Lithium":{"internalName":"Lithium","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":14},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"healthRegenRaw":{"min":1,"raw":2,"max":3},"xpBonus":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Shadow Blade":{"internalName":"Shadow Blade","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":43,"dropRestriction":"normal","requirements":{"level":14,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.air1"}},"identifications":{"rawAgility":5,"mainAttackDamage":{"min":-10,"raw":-8,"max":-6},"rawSpellDamage":{"min":2,"raw":8,"max":10},"lifeSteal":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":4,"raw":4,"max":15},"baseAirDamage":{"min":1,"raw":1,"max":8}},"rarity":"unique"},"Luciolum":{"internalName":"Luciolum","type":"ingredient","requirements":{"level":14,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"healingEfficiency":{"min":1,"raw":1,"max":1},"healthRegen":{"min":4,"raw":4,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":-85,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":8,"agilityRequirement":0},"droppedBy":[{"name":"Luciola","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]},{"name":"Luciola Larvae","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]}]},"Pigman Ivory":{"internalName":"Pigman Ivory","type":"ingredient","requirements":{"level":14,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"406:0"},"identifications":{"rawMainAttackDamage":{"min":5,"raw":5,"max":9},"sprintRegen":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-34000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ravine Pigman","coords":[[-818,87,-1259,40],[-740,93,-1312,40],[-769,95,-1271,100]]},{"name":"Ravine Pigman","coords":[[-818,87,-1259,40],[-740,93,-1312,40],[-769,95,-1271,100]]},{"name":"Boar","coords":[-592,53,-1551,12]},{"name":"Zombie Pigman","coords":[-592,53,-1551,12]},{"name":"Pigman Raider","coords":[-883,70,-1405,8]},{"name":"Flame Grilling Swine","coords":[-611,54,-1549,1]},{"name":"Pigman Runner","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Runner","coords":null},{"name":"Pigman Raider","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Raider","coords":null},{"name":"Pigman Striker","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Striker","coords":null},{"name":"Pigman Overlord","coords":null},{"name":"Tunnel Pigman","coords":[-844,103,-1353,3]}]},"Glowing Tree Sap":{"internalName":"Glowing Tree Sap","type":"ingredient","requirements":{"level":14,"skills":["jeweling"]},"icon":{"format":"legacy","value":"239:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":1},"rawSpellDamage":{"min":5,"raw":5,"max":5},"thunderDamage":{"min":4,"raw":4,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-66000,"strengthRequirement":0,"dexterityRequirement":5,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]},{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]}]},"Warped Skin":{"internalName":"Warped Skin","type":"ingredient","requirements":{"level":14,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-23000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]},{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]}]},"Bone Ash":{"internalName":"Bone Ash","type":"ingredient","requirements":{"level":14,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"351:15"},"identifications":{"exploding":{"min":1,"raw":1,"max":10}},"tier":0,"consumableOnlyIDs":{"duration":-45,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]},{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]}]},"Herbal Extract":{"internalName":"Herbal Extract","type":"ingredient","requirements":{"level":14,"skills":["alchemism"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"gatherSpeed":{"min":3,"raw":3,"max":4},"mainAttackDamage":{"min":-4,"raw":-4,"max":-2},"rawHealth":{"min":35,"raw":35,"max":45}},"tier":2,"consumableOnlyIDs":{"duration":-90,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Enraged Corrupted Cow","coords":[146,69,-1448,50]}]},"Luminescent Ink":{"internalName":"Luminescent Ink","type":"ingredient","requirements":{"level":14,"skills":["scribing"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"elementalDefence":{"min":1,"raw":1,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":30,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Luciola","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]},{"name":"Luciola Larvae","coords":[[-728,100,-1135,18],[-765,103,-1172,15],[-783,89,-1088,10],[-783,89,-1088,10]]}]},"Spruce Wood Dagger":{"internalName":"Spruce Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":32,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":10,"raw":10,"max":16}},"rarity":"common"},"Clash Hook":{"internalName":"Clash Hook","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":50,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"warrior"},"powderSlots":1,"lore":"The wear on this humble war pick's blade has only made it more effective in combat, allowing its users to make unexpected parries of opponents' attacks by hooking and hitting through the weapon.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"462","name":"spear.air1"}},"identifications":{"rawAgility":7,"mainAttackDamage":{"min":3,"raw":10,"max":13},"thorns":{"min":10,"raw":34,"max":44},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":10,"raw":10,"max":15},"baseAirDamage":{"min":5,"raw":5,"max":10}},"rarity":"legendary"},"Hard Leather Cap":{"internalName":"Hard Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"base":{"baseHealth":36},"rarity":"common"},"Tromsian Survival Knife":{"internalName":"Tromsian Survival Knife","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":56,"dropRestriction":"never","identified":true,"requirements":{"level":13,"classRequirement":"assassin"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":4,"mainAttackDamage":6,"thorns":9},"base":{"baseDamage":{"min":21,"raw":21,"max":24},"baseEarthDamage":{"min":3,"raw":3,"max":6}},"rarity":"rare"},"Spiked Cleats":{"internalName":"Spiked Cleats","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"powderSlots":1,"identifications":{"rawMainAttackDamage":{"min":4,"raw":12,"max":16},"thorns":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":48},"rarity":"unique"},"Mud Leggings":{"internalName":"Mud Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"walkSpeed":{"min":-5,"raw":-4,"max":-3},"waterDamage":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":46,"baseEarthDefence":5,"baseWaterDefence":5,"baseAirDefence":-7},"rarity":"unique"},"Little Machine":{"internalName":"Little Machine","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":51,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.thunder1"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"rawSpellDamage":{"min":4,"raw":13,"max":17},"1stSpellCost":{"min":23,"raw":18,"max":13}},"base":{"baseDamage":{"min":13,"raw":13,"max":16},"baseThunderDamage":{"min":4,"raw":4,"max":8}},"rarity":"unique"},"Spruce Wood Relik":{"internalName":"Spruce Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":39,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":18,"raw":18,"max":20}},"rarity":"common"},"Clap":{"internalName":"Clap","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":13},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"mainAttackDamage":{"min":1,"raw":4,"max":5},"rawMainAttackDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Bear Pelt":{"internalName":"Bear Pelt","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"identifications":{"rawStrength":4,"rawMainAttackDamage":{"min":5,"raw":17,"max":22},"spellDamage":{"min":-8,"raw":-6,"max":-4},"rawHealth":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":57},"rarity":"rare"},"Midnight Bell":{"internalName":"Midnight Bell","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":31,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"rawAgility":7,"walkSpeed":{"min":2,"raw":5,"max":7},"fireDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":5,"raw":5,"max":11},"baseAirDamage":{"min":6,"raw":6,"max":8}},"rarity":"rare"},"Bourreau":{"internalName":"Bourreau","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":13},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":1,"raw":4,"max":5},"rawSpellDamage":{"min":1,"raw":4,"max":5},"lifeSteal":{"min":-3,"raw":-2,"max":-1}},"rarity":"unique"},"Claw":{"internalName":"Claw","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":42,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":16,"raw":16,"max":18}},"rarity":"unique"},"Spruce Wood Spear":{"internalName":"Spruce Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":24,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":13,"raw":13,"max":19}},"rarity":"common"},"Puppet Master":{"internalName":"Puppet Master","type":"weapon","weaponType":"relik","attackSpeed":"super_slow","averageDps":87,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawStrength":-5,"mainAttackDamage":{"min":-43,"raw":-33,"max":-23},"spellDamage":{"min":5,"raw":15,"max":20},"manaSteal":{"min":1,"raw":4,"max":5},"1stSpellCost":{"min":-7,"raw":-25,"max":-32},"lootBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":103,"raw":103,"max":137},"baseWaterDamage":{"min":46,"raw":46,"max":55}},"rarity":"legendary"},"Leather Face":{"internalName":"Leather Face","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"powderSlots":1,"identifications":{"rawDefence":3,"xpBonus":{"min":1,"raw":3,"max":4},"lootBonus":{"min":1,"raw":4,"max":5},"thunderDefence":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":40},"rarity":"unique"},"Flawed Leather Boots":{"internalName":"Flawed Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":13},"powderSlots":1,"base":{"baseHealth":35},"rarity":"common"},"Spruce Wood Wand":{"internalName":"Spruce Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":18,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":7,"raw":7,"max":10}},"rarity":"common"},"Spore Cap":{"internalName":"Spore Cap","type":"armour","armourType":"helmet","armourColor":"rgb(208,60,20)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"powderSlots":1,"identifications":{"rawStrength":4,"poison":{"min":5,"raw":18,"max":23}},"base":{"baseHealth":55},"rarity":"set"},"The Skin Tearer":{"internalName":"The Skin Tearer","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":25,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"identifications":{"rawStrength":4,"rawDexterity":4,"mainAttackDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":10,"raw":10,"max":14}},"rarity":"unique"},"Soaked Tunic":{"internalName":"Soaked Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"powderSlots":1,"identifications":{"waterDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":45,"baseThunderDefence":-6,"baseWaterDefence":4},"rarity":"unique"},"Radium":{"internalName":"Radium","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":60,"dropRestriction":"never","requirements":{"level":13,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"rawDexterity":3,"healthRegenRaw":{"min":-9,"raw":-7,"max":-5},"manaSteal":{"min":1,"raw":4,"max":5},"rawThunderDamage":{"min":3,"raw":9,"max":12},"thunderDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":8,"raw":8,"max":16},"baseThunderDamage":{"min":0,"raw":0,"max":24}},"rarity":"legendary"},"Chimaera":{"internalName":"Chimaera","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":13},"powderSlots":3,"lore":"The one true Chimera in existence is sought by many, for great stories are told of its gifts to the worthy. One such gift was a simple fur coat, which gave the wearer but a taste of its power.","identifications":{"rawStrength":7,"rawDefence":7,"rawAgility":7,"lifeSteal":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":78},"rarity":"legendary"},"Watercolour":{"internalName":"Watercolour","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":48,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseDamage":{"min":16,"raw":16,"max":18},"baseWaterDamage":{"min":14,"raw":14,"max":16}},"rarity":"rare"},"Spruce Wood Bow":{"internalName":"Spruce Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":32,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":17,"raw":17,"max":25}},"rarity":"common"},"Vellalar":{"internalName":"Vellalar","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":43,"dropRestriction":"normal","requirements":{"level":13,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"rawStrength":5,"manaSteal":{"min":1,"raw":4,"max":5},"fireDamage":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":13,"raw":13,"max":18},"baseWaterDamage":{"min":11,"raw":11,"max":15}},"rarity":"rare"},"Outdated Newspaper":{"internalName":"Outdated Newspaper","type":"ingredient","requirements":{"level":13,"skills":["scribing"]},"icon":{"format":"legacy","value":"339:0"},"identifications":{"gatherSpeed":{"min":2,"raw":2,"max":2},"xpBonus":{"min":3,"raw":3,"max":4},"lootBonus":{"min":2,"raw":2,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Enraged Corrupted Cow","coords":[146,69,-1448,50]}]},"Forgotten Axe":{"internalName":"Forgotten Axe","type":"ingredient","requirements":{"level":13,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"271:0"},"identifications":{"rawMainAttackDamage":{"min":7,"raw":7,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Lumberjack","coords":[[278,68,-1652,24],[-55,64,-1684,25],[-98,67,-1548,25],[-175,66,-1381,25],[217,67,-1485,25]]}]},"Jolting Geode":{"internalName":"Jolting Geode","type":"ingredient","requirements":{"level":13,"skills":["jeweling"]},"icon":{"format":"legacy","value":"433:0"},"identifications":{"thunderDamage":{"min":3,"raw":3,"max":4},"rawMainAttackDamage":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":6,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Eternal Paragon","coords":null},{"name":"Warped Husk","coords":null}]},"Onion Ring":{"internalName":"Onion Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":2,"raw":7,"max":9}},"rarity":"rare"},"Iron Mail":{"internalName":"Iron Mail","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":1,"identifications":{"rawHealth":{"min":4,"raw":12,"max":16},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"earthDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":40,"baseEarthDefence":5,"baseAirDefence":-2},"rarity":"unique"},"Witherhead's Talisman":{"internalName":"Witherhead's Talisman","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":12},"lore":"\"My dear boy should never have to go through the horrors of losing a mother like that.\" -Momo, adoptive mother of Bob","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"spellDamage":5,"xpBonus":8,"lootBonus":5},"rarity":"legendary"},"The Naturalist":{"internalName":"The Naturalist","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":72,"dropRestriction":"never","identified":true,"requirements":{"level":12,"classRequirement":"shaman"},"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"identifications":{"rawIntelligence":4,"mainAttackDamage":7,"spellDamage":7,"healthRegenRaw":8},"base":{"baseEarthDamage":{"min":24,"raw":24,"max":28},"baseWaterDamage":{"min":20,"raw":20,"max":24}},"rarity":"rare"},"Upside Down Bowl":{"internalName":"Upside Down Bowl","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":1,"identifications":{"rawStrength":3,"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":45,"baseEarthDefence":5,"baseAirDefence":-5},"rarity":"unique"},"Clarity":{"internalName":"Clarity","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":3},"rarity":"unique"},"Padded Leather Tunic":{"internalName":"Padded Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"base":{"baseHealth":34},"rarity":"common"},"Bedrock Eater":{"internalName":"Bedrock Eater","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":27,"dropRestriction":"normal","requirements":{"level":12,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"lifeSteal":{"min":1,"raw":3,"max":4},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":27,"raw":27,"max":39}},"rarity":"unique"},"Pike of Fury":{"internalName":"Pike of Fury","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":40,"dropRestriction":"never","identified":true,"requirements":{"level":12,"classRequirement":"warrior"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"rawDexterity":1,"rawMainAttackDamage":8,"walkSpeed":6},"base":{"baseDamage":{"min":8,"raw":8,"max":24}},"rarity":"rare"},"Monk's Cowl":{"internalName":"Monk's Cowl","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":1,"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"rawMaxMana":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":52,"baseThunderDefence":2,"baseWaterDefence":2},"rarity":"rare"},"Forgotten":{"internalName":"Forgotten","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":1,"identifications":{"rawStrength":2,"rawDexterity":3,"rawIntelligence":2,"rawDefence":3,"rawAgility":1,"lootBonus":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":36},"rarity":"rare"},"Edgy":{"internalName":"Edgy","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":12},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"166","name":"bracelet.thunder1"}},"identifications":{"rawDexterity":3,"mainAttackDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":-10},"rarity":"unique"},"Ribcage":{"internalName":"Ribcage","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":12},"powderSlots":1,"lore":"\"...as intimidating as the name sounds, you want your organs to be trapped in this kind of cage.\" -Excerpt from Human Anatomy For Fools, Cirh Nettan ","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"identifications":{"healthRegenRaw":5,"earthDamage":6},"base":{"baseHealth":58,"baseEarthDefence":5,"baseWaterDefence":-3,"baseAirDefence":-3},"rarity":"rare"},"Leech Bow":{"internalName":"Leech Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":37,"dropRestriction":"normal","requirements":{"level":12,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDefence":3,"lifeSteal":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":15,"raw":15,"max":21}},"rarity":"unique"},"Sprinter":{"internalName":"Sprinter","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"identifications":{"walkSpeed":{"min":3,"raw":11,"max":14},"sprint":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":30,"baseAirDefence":3},"rarity":"unique"},"Helmet of Wisdom":{"internalName":"Helmet of Wisdom","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":1,"identifications":{"rawIntelligence":5,"xpBonus":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":30},"rarity":"unique"},"Morph-Topaz":{"internalName":"Morph-Topaz","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":12,"strength":4,"dexterity":4,"intelligence":4,"defence":4,"agility":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1,"xpBonus":{"min":2,"raw":8,"max":10}},"rarity":"set"},"Mail of the Berserker":{"internalName":"Mail of the Berserker","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":12},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"mainAttackDamage":5,"rawMainAttackDamage":13},"base":{"baseHealth":34,"baseWaterDefence":-3},"rarity":"unique"},"Fire Brand":{"internalName":"Fire Brand","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":72,"dropRestriction":"never","requirements":{"level":12,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"identifications":{"rawStrength":5,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"poison":{"min":12,"raw":40,"max":52},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseFireDamage":{"min":30,"raw":30,"max":40}},"rarity":"rare"},"Gavel Imported Bow":{"internalName":"Gavel Imported Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":43,"dropRestriction":"never","identified":true,"requirements":{"level":12,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawIntelligence":2,"spellDamage":5,"waterDamage":3},"base":{"baseDamage":{"min":18,"raw":18,"max":24}},"rarity":"unique"},"Silicon":{"internalName":"Silicon","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":83,"dropRestriction":"never","requirements":{"level":12,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"397","name":"relik.earth1"}},"identifications":{"rawStrength":3,"knockback":{"min":6,"raw":19,"max":25},"earthMainAttackDamage":{"min":5,"raw":15,"max":20},"walkSpeed":{"min":-13,"raw":-10,"max":-7},"earthDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":20,"raw":20,"max":30},"baseEarthDamage":{"min":75,"raw":75,"max":75}},"rarity":"legendary"},"Charging Cable":{"internalName":"Charging Cable","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":36,"dropRestriction":"normal","requirements":{"level":12,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"471","name":"spear.thunder1"}},"identifications":{"manaSteal":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":13,"raw":13,"max":21},"baseThunderDamage":{"min":3,"raw":3,"max":11}},"rarity":"rare"},"Bovine Killer":{"internalName":"Bovine Killer","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":12},"powderSlots":2,"lore":"This helmet was worn long ago by an infamous assassin who plagued Bovemist sites for decades. It was crafted of the still-bloody skin of their most prized and worshiped cows.","identifications":{"rawStrength":10,"rawAgility":-4,"mainAttackDamage":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":65,"baseEarthDefence":5,"baseAirDefence":-5},"rarity":"legendary"},"Drained Bone":{"internalName":"Drained Bone","type":"ingredient","requirements":{"level":12,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"lifeSteal":{"min":1,"raw":1,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]},{"name":"Valley Wanderer","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]}]},"Digestible Fungi":{"internalName":"Digestible Fungi","type":"ingredient","requirements":{"level":12,"skills":["cooking"]},"icon":{"format":"legacy","value":"39:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":1},"poison":{"min":5,"raw":5,"max":6},"healthRegen":{"min":-3,"raw":-3,"max":-2}},"tier":2,"consumableOnlyIDs":{"duration":-260,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]},{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]}]},"Mooshroom Ear":{"internalName":"Mooshroom Ear","type":"ingredient","requirements":{"level":12,"skills":["alchemism"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"xpBonus":{"min":5,"raw":5,"max":10}},"tier":1,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]}]},"Witherhead's Elbow":{"internalName":"Witherhead's Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":48,"dropRestriction":"dungeon","requirements":{"level":12,"classRequirement":"archer"},"powderSlots":1,"lore":"Wielded by the master of the Decrepit Sewers Dungeon, the arrows of this bow causes the target's body to slowly wither away.","dropMeta":{"name":"Decrepit Sewers","type":"dungeon","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"identifications":{"rawAgility":-3,"rawSpellDamage":{"min":2,"raw":8,"max":10},"poison":{"min":12,"raw":40,"max":52},"manaSteal":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":3,"raw":3,"max":10},"baseThunderDamage":{"min":1,"raw":1,"max":17}},"rarity":"legendary"},"Trace":{"internalName":"Trace","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":11},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":1,"raw":2,"max":3},"rawSpellDamage":{"min":1,"raw":2,"max":3},"healthRegenRaw":{"min":1,"raw":2,"max":3},"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":2},"rarity":"rare"},"Hearts Club":{"internalName":"Hearts Club","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":62,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"identifications":{"spellDamage":{"min":-6,"raw":-5,"max":-3},"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":2,"raw":5,"max":7},"rawHealth":{"min":6,"raw":20,"max":26}},"base":{"baseDamage":{"min":26,"raw":26,"max":32},"baseFireDamage":{"min":10,"raw":10,"max":14}},"rarity":"rare"},"Phrygian":{"internalName":"Phrygian","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":41,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":4,"rawAgility":4,"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":13,"raw":13,"max":20}},"rarity":"rare"},"Hot Spot":{"internalName":"Hot Spot","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":49,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"assassin","defence":5},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"263","name":"dagger.fire1"}},"identifications":{"rawHealth":{"min":6,"raw":20,"max":26},"exploding":{"min":2,"raw":5,"max":7},"fireDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":8,"raw":8,"max":12},"baseFireDamage":{"min":10,"raw":10,"max":18}},"rarity":"rare"},"Slippery Boots":{"internalName":"Slippery Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"powderSlots":1,"identifications":{"rawDexterity":-2,"rawAgility":3,"walkSpeed":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":30,"baseFireDefence":-4,"baseAirDefence":4},"rarity":"unique"},"Padded Leather Leggings":{"internalName":"Padded Leather Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"base":{"baseHealth":30},"rarity":"common"},"Kuuichi":{"internalName":"Kuuichi","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"powderSlots":1,"identifications":{"rawIntelligence":5,"rawSpellDamage":{"min":3,"raw":10,"max":13},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":52,"baseThunderDefence":-2,"baseWaterDefence":6},"rarity":"rare"},"Serpent's Kiss":{"internalName":"Serpent's Kiss","type":"weapon","weaponType":"wand","attackSpeed":"very_fast","averageDps":9,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":11,"classRequirement":"mage"},"lore":"\"I bet those sewer-dwellers have horrible morning breath.\" -Folzoy, Maltic Escort","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"rawAgility":3,"poison":40},"base":{"baseDamage":{"min":2,"raw":2,"max":4}},"rarity":"rare"},"Leaf Tunic":{"internalName":"Leaf Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(114,165,38)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"powderSlots":1,"identifications":{"rawStrength":2,"healthRegenRaw":{"min":1,"raw":3,"max":4},"thorns":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":45,"baseEarthDefence":6},"rarity":"set"},"Master":{"internalName":"Master","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":11},"lore":"Although not truly magical by any means, the sheer craftsmanship of this ornate broach makes its wearers feel skillful.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"identifications":{"raw1stSpellCost":-1,"raw2ndSpellCost":-1,"raw3rdSpellCost":-1,"raw4thSpellCost":-1},"base":{"baseHealth":-10},"rarity":"legendary"},"Petrified Stick":{"internalName":"Petrified Stick","type":"weapon","weaponType":"wand","attackSpeed":"very_slow","averageDps":19,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"329","name":"wand.earth1"}},"identifications":{"rawStrength":4,"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseDamage":{"min":20,"raw":20,"max":26}},"rarity":"unique"},"Light Birch Wood Wand":{"internalName":"Light Birch Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":15,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":5,"raw":5,"max":7}},"rarity":"common"},"The Magician":{"internalName":"The Magician","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":25,"dropRestriction":"never","identified":true,"requirements":{"level":11,"classRequirement":"mage"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.water1"}},"identifications":{"rawIntelligence":3,"mainAttackDamage":-6,"manaRegen":6,"waterDamage":6},"base":{"baseDamage":{"min":2,"raw":2,"max":5},"baseWaterDamage":{"min":7,"raw":7,"max":10}},"rarity":"rare"},"Eleven":{"internalName":"Eleven","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":34,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"mainAttackDamage":{"min":3,"raw":11,"max":14},"rawSpellDamage":{"min":3,"raw":11,"max":14},"healthRegen":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":11,"raw":11,"max":11}},"rarity":"unique"},"Reinforced Composite Bow":{"internalName":"Reinforced Composite Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":48,"dropRestriction":"never","identified":true,"requirements":{"level":11,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawDefence":3,"rawHealth":25,"walkSpeed":-4},"base":{"baseDamage":{"min":50,"raw":50,"max":65}},"rarity":"rare"},"Nitrogen":{"internalName":"Nitrogen","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":78,"dropRestriction":"never","requirements":{"level":11,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawAgility":3,"rawHealth":{"min":-26,"raw":-20,"max":-14},"sprintRegen":{"min":5,"raw":15,"max":20},"jumpHeight":1,"airDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":5,"raw":5,"max":15},"baseAirDamage":{"min":5,"raw":5,"max":25}},"rarity":"legendary"},"Ancient Wand":{"internalName":"Ancient Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":39,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"mage"},"powderSlots":1,"lore":"It is thought that this primitive wand was used by early man to create the first spells. It is made from a wood that no longer exists.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"manaRegen":{"min":4,"raw":12,"max":16},"elementalDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":16,"raw":16,"max":22}},"rarity":"legendary"},"Columns":{"internalName":"Columns","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"identifications":{"rawStrength":4,"rawDefence":4,"rawHealth":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":50,"baseEarthDefence":5,"baseAirDefence":-5},"rarity":"rare"},"Mullberry":{"internalName":"Mullberry","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":39,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"rawHealth":{"min":5,"raw":15,"max":20},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":8,"raw":8,"max":18},"baseEarthDamage":{"min":4,"raw":4,"max":8}},"rarity":"unique"},"Ragon's Bracelet":{"internalName":"Ragon's Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","requirements":{"level":11,"quest":"Elemental Exercise"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawHealth":{"min":5,"raw":15,"max":20}},"base":{"baseHealth":1,"baseEarthDefence":1,"baseThunderDefence":1,"baseWaterDefence":1,"baseFireDefence":1,"baseAirDefence":1},"rarity":"rare"},"Opulenity":{"internalName":"Opulenity","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":11},"powderSlots":1,"lore":"Made of an uncommonly used fabric called denim, these fashionable leggings exude style and elegance. Surely wearing them would bring you luck?","identifications":{"xpBonus":{"min":3,"raw":10,"max":13},"lootBonus":{"min":8,"raw":25,"max":33},"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":63},"rarity":"legendary"},"Crackshot":{"internalName":"Crackshot","type":"weapon","weaponType":"bow","attackSpeed":"super_slow","averageDps":64,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"archer"},"lore":"This heavy crossbow forces a strange compulsion in its users when wielded. They will often refuse to even shoot unless entirely certain of a hit.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"194","name":"bow.earth1"}},"identifications":{"manaSteal":{"min":1,"raw":4,"max":5},"xpBonus":{"min":5,"raw":15,"max":20}},"base":{"baseDamage":{"min":125,"raw":125,"max":125}},"rarity":"legendary"},"Stone Cutter":{"internalName":"Stone Cutter","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":25,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"stealing":{"min":1,"raw":2,"max":3},"earthDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":7,"raw":7,"max":13}},"rarity":"unique"},"Worry":{"internalName":"Worry","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":11},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"168","name":"bracelet.water1"}},"identifications":{"rawIntelligence":3,"reflection":{"min":2,"raw":5,"max":7}},"rarity":"rare"},"Light Birch Wood Bow":{"internalName":"Light Birch Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":30,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":12,"raw":12,"max":17}},"rarity":"common"},"Light Birch Wood Relik":{"internalName":"Light Birch Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":36,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":14,"raw":14,"max":15}},"rarity":"common"},"Light Birch Wood Spear":{"internalName":"Light Birch Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":23,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":9,"raw":9,"max":13}},"rarity":"common"},"Flawed Leather Cap":{"internalName":"Flawed Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":11},"powderSlots":1,"base":{"baseHealth":31},"rarity":"common"},"Light Birch Wood Dagger":{"internalName":"Light Birch Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":29,"dropRestriction":"normal","requirements":{"level":11,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":8,"raw":8,"max":11}},"rarity":"common"},"Guard Spear":{"internalName":"Guard Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":27,"dropRestriction":"never","identified":true,"requirements":{"level":11,"classRequirement":"warrior"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"healthRegenRaw":3,"rawHealth":15},"base":{"baseDamage":{"min":12,"raw":12,"max":16},"baseFireDamage":{"min":2,"raw":2,"max":6}},"rarity":"unique"},"Weakening Catalyst":{"internalName":"Weakening Catalyst","type":"ingredient","requirements":{"level":11,"skills":["alchemism"]},"icon":{"format":"legacy","value":"368:0"},"identifications":{"mainAttackDamage":{"min":-12,"raw":-12,"max":-12},"spellDamage":{"min":-12,"raw":-12,"max":-12},"xpBonus":{"min":12,"raw":12,"max":16}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Pigman Meat":{"internalName":"Pigman Meat","type":"ingredient","requirements":{"level":11,"skills":["cooking","alchemism"]},"icon":{"format":"legacy","value":"319:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-130,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ravine Pigman","coords":[[-818,87,-1259,40],[-740,93,-1312,40],[-769,95,-1271,100]]},{"name":"Ravine Pigman","coords":[[-818,87,-1259,40],[-740,93,-1312,40],[-769,95,-1271,100]]},{"name":"Boar","coords":[-592,53,-1551,12]},{"name":"Zombie Pigman","coords":[-592,53,-1551,12]},{"name":"Pigman Raider","coords":[-883,70,-1405,8]},{"name":"Flame Grilling Swine","coords":[-611,54,-1549,1]},{"name":"Pigman Runner","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Runner","coords":null},{"name":"Pigman Raider","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Raider","coords":null},{"name":"Pigman Striker","coords":[[-836,95,-1185,10],[-820,94,-1184,10],[-804,94,-1185,10],[-773,95,-1215,20]]},{"name":"Pigman Striker","coords":null},{"name":"Pigman Overlord","coords":null},{"name":"Volcanic Zerker","coords":null},{"name":"Mountain Pigman","coords":null},{"name":"Dead Pirate Guard","coords":[-690,20,-3206,1]},{"name":"Tunnel Pigman","coords":[-844,103,-1353,3]},{"name":"Weak Zombie","coords":[-1008,80,-1572,10]},{"name":"null","coords":null}]},"Arcane Greaves":{"internalName":"Arcane Grieves","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"powderSlots":1,"identifications":{"rawIntelligence":3,"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":35,"baseWaterDefence":3},"rarity":"unique"},"Ancient Scout Shoes":{"internalName":"Ancient Scout Shoes","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"identifications":{"rawAgility":4,"walkSpeed":{"min":2,"raw":7,"max":9},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":30},"rarity":"unique"},"Fiery Wand":{"internalName":"Fiery Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":4,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"332","name":"wand.fire1"}},"base":{"baseFireDamage":{"min":1,"raw":1,"max":3}},"rarity":"common"},"Elemental Training Relik":{"internalName":"Elemental Training Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":52,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"409","name":"relik.multi1"}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5},"baseThunderDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":5,"raw":5,"max":5},"baseFireDamage":{"min":5,"raw":5,"max":5},"baseAirDamage":{"min":5,"raw":5,"max":5}},"rarity":"common"},"Dern's Shadow":{"internalName":"Dern's Shadow","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":31,"dropRestriction":"normal","requirements":{"level":10,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"poison":{"min":7,"raw":24,"max":31},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":10,"raw":10,"max":15}},"rarity":"rare"},"Kickers":{"internalName":"Kickers","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"identifications":{"mainAttackDamage":{"min":2,"raw":6,"max":8},"rawHealth":{"min":-8,"raw":-6,"max":-4}},"base":{"baseHealth":34},"rarity":"unique"},"Rat Skull":{"internalName":"Rat Skull","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"dungeon","requirements":{"level":10},"powderSlots":1,"dropMeta":{"name":"Decrepit Sewers","type":"dungeon","coordinates":[-901,62,-1886]},"identifications":{"poison":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":40,"baseAirDefence":3},"rarity":"unique"},"Dusk Painter":{"internalName":"Dusk Painter","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":79,"dropRestriction":"normal","requirements":{"level":10,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.thunder1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"spellDamage":{"min":2,"raw":7,"max":9},"lifeSteal":{"min":4,"raw":12,"max":16},"manaRegen":{"min":-8,"raw":-6,"max":-4},"manaSteal":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":16,"raw":16,"max":20},"baseThunderDamage":{"min":9,"raw":9,"max":18}},"rarity":"legendary"},"Fiery Bow":{"internalName":"Fiery Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":4,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"base":{"baseFireDamage":{"min":1,"raw":1,"max":3}},"rarity":"common"},"Silken Slippers":{"internalName":"Silken Slippers","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":10},"powderSlots":1,"identifications":{"rawAgility":3,"walkSpeed":{"min":3,"raw":10,"max":13},"xpBonus":{"min":5,"raw":15,"max":20},"airDamage":{"min":3,"raw":10,"max":13},"fireDefence":{"min":-16,"raw":-12,"max":-8}},"base":{"baseHealth":45,"baseFireDefence":-5,"baseAirDefence":5},"rarity":"rare"},"Iron Bracer":{"internalName":"Iron Bracer","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDefence":4,"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseHealth":10},"rarity":"unique"},"Spiritual Siphoner":{"internalName":"Spiritual Siphoner","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":43,"dropRestriction":"never","identified":true,"requirements":{"level":10,"classRequirement":"shaman"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"manaRegen":6,"xpBonus":8},"base":{"baseDamage":{"min":15,"raw":15,"max":18},"baseWaterDamage":{"min":3,"raw":3,"max":6}},"rarity":"unique"},"Isaz":{"internalName":"Isaz","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":24,"dropRestriction":"normal","requirements":{"level":10,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"474","name":"spear.water1"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8},"waterDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":1,"raw":1,"max":3},"baseWaterDamage":{"min":6,"raw":6,"max":9}},"rarity":"unique"},"Stringendo":{"internalName":"Stringendo","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":45,"dropRestriction":"normal","requirements":{"level":10,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"rawAgility":4,"walkSpeed":{"min":4,"raw":12,"max":16}},"base":{"baseDamage":{"min":16,"raw":16,"max":20}},"rarity":"unique"},"Padded Leather Boots":{"internalName":"Padded Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"base":{"baseHealth":26},"rarity":"common"},"Tarod's Parka":{"internalName":"Tarok's Parka","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"powderSlots":1,"identifications":{"rawIntelligence":4,"rawSpellDamage":{"min":2,"raw":5,"max":7},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":35,"baseWaterDefence":6,"baseFireDefence":-2},"rarity":"rare"},"Elemental Training Spear":{"internalName":"Elemental Training Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":52,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"477","name":"spear.multi1"}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5},"baseThunderDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":5,"raw":5,"max":5},"baseFireDamage":{"min":5,"raw":5,"max":5},"baseAirDamage":{"min":5,"raw":5,"max":5}},"rarity":"common"},"Staff of Wisdom":{"internalName":"Staff of Wisdom","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":18,"dropRestriction":"never","identified":true,"requirements":{"level":10,"classRequirement":"mage"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"healthRegen":8,"xpBonus":6},"base":{"baseDamage":{"min":7,"raw":7,"max":10}},"rarity":"unique"},"Elemental Training Bow":{"internalName":"Elemental Training Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":52,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"207","name":"bow.multi2"}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5},"baseThunderDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":5,"raw":5,"max":5},"baseFireDamage":{"min":5,"raw":5,"max":5},"baseAirDamage":{"min":5,"raw":5,"max":5}},"rarity":"common"},"Warmth":{"internalName":"Warmth","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"150","name":"ring.fire1"}},"identifications":{"rawDefence":3},"rarity":"unique"},"Hydrogen":{"internalName":"Hydrogen","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":72,"dropRestriction":"never","requirements":{"level":10,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"269","name":"dagger.water1"}},"identifications":{"rawIntelligence":3,"mainAttackDamage":{"min":-25,"raw":-19,"max":-13},"manaRegen":{"min":2,"raw":6,"max":8},"rawWaterSpellDamage":{"min":4,"raw":12,"max":16},"waterDefence":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":5,"raw":5,"max":15},"baseWaterDamage":{"min":20,"raw":20,"max":30}},"rarity":"legendary"},"Fiery Dagger":{"internalName":"Fiery Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":4,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"263","name":"dagger.fire1"}},"base":{"baseFireDamage":{"min":1,"raw":1,"max":3}},"rarity":"common"},"Skull Breaker":{"internalName":"Skull Breaker","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":37,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":10,"classRequirement":"warrior"},"powderSlots":1,"lore":"\"Even a corrupted would get crushed by one of these!\" -Roche 'Stone-thrower' Diamant, Ragni Citizen","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"mainAttackDamage":8,"spellDamage":-6,"walkSpeed":-3},"base":{"baseDamage":{"min":40,"raw":40,"max":49}},"rarity":"rare"},"Dread":{"internalName":"Dread","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":47,"dropRestriction":"normal","requirements":{"level":10,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"200","name":"bow.thunder1"}},"identifications":{"rawDexterity":3,"spellDamage":{"min":1,"raw":4,"max":5},"rawHealth":{"min":-23,"raw":-18,"max":-13},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":19,"raw":19,"max":27}},"rarity":"rare"},"Scout Dagger":{"internalName":"Scout Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":35,"dropRestriction":"never","identified":true,"requirements":{"level":10,"classRequirement":"assassin"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawAgility":3,"walkSpeed":6,"xpBonus":4},"base":{"baseDamage":{"min":10,"raw":10,"max":18}},"rarity":"unique"},"Elemental Training Dagger":{"internalName":"Elemental Training Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":52,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"272","name":"dagger.multi1"}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5},"baseThunderDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":5,"raw":5,"max":5},"baseFireDamage":{"min":5,"raw":5,"max":5},"baseAirDamage":{"min":5,"raw":5,"max":5}},"rarity":"common"},"Elemental Training Wand":{"internalName":"Elemental Training Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":52,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"341","name":"wand.multi1"}},"base":{"baseEarthDamage":{"min":5,"raw":5,"max":5},"baseThunderDamage":{"min":5,"raw":5,"max":5},"baseWaterDamage":{"min":5,"raw":5,"max":5},"baseFireDamage":{"min":5,"raw":5,"max":5},"baseAirDamage":{"min":5,"raw":5,"max":5}},"rarity":"common"},"Fiery Spear":{"internalName":"Fiery Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":4,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"base":{"baseFireDamage":{"min":1,"raw":1,"max":3}},"rarity":"common"},"Travel Charm":{"internalName":"Travel Charm","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":10},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"rawHealth":{"min":6,"raw":20,"max":26},"xpBonus":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Cauterizer":{"internalName":"Cauterizer","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":60,"dropRestriction":"never","requirements":{"level":10,"classRequirement":"archer"},"lore":"...It's pulling towards something.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawDefence":3,"rawMainAttackDamage":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":7,"raw":7,"max":13},"baseFireDamage":{"min":12,"raw":12,"max":16}},"rarity":"rare"},"Fiery Relik":{"internalName":"Fiery Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":4,"restrictions":"quest item","dropRestriction":"never","requirements":{"level":10,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"base":{"baseFireDamage":{"min":1,"raw":1,"max":3}},"rarity":"common"},"Leaf Pants":{"internalName":"Leaf Pants","type":"armour","armourType":"leggings","armourColor":"rgb(114,165,38)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":10},"powderSlots":1,"identifications":{"rawStrength":2,"healthRegen":{"min":2,"raw":8,"max":10},"thorns":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":39,"baseEarthDefence":6},"rarity":"set"},"Soft Green Wool":{"internalName":"Soft Green Wool","type":"ingredient","requirements":{"level":10,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:13"},"identifications":{"earthDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Wooly Armour":{"internalName":"Wooly Armour","type":"ingredient","requirements":{"level":10,"skills":["tailoring"]},"icon":{"format":"legacy","value":"171:0"},"identifications":{"airDefence":{"min":2,"raw":2,"max":5},"waterDefence":{"min":2,"raw":2,"max":5}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"TestMob","coords":[367,67,-1602,10]}]},"Soft Blue Wool":{"internalName":"Soft Blue Wool","type":"ingredient","requirements":{"level":10,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:3"},"identifications":{"waterDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Soft White Wool":{"internalName":"Soft White Wool","type":"ingredient","requirements":{"level":10,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:0"},"identifications":{"airDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Soft Yellow Wool":{"internalName":"Soft Yellow Wool","type":"ingredient","requirements":{"level":10,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:4"},"identifications":{"thunderDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Crumbling Skull":{"internalName":"Crumbling Skull","type":"ingredient","requirements":{"level":10,"skills":["armouring"]},"icon":{"format":"skin","value":"7953b6c68448e7e6b6bf8fb273d7203acd8e1be19e81481ead51f45de59a8"},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-52000,"strengthRequirement":-5,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":-5,"agilityRequirement":0},"droppedBy":[{"name":"Dead Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]}]},"Corrupted Ichor":{"internalName":"Corrupted Ichor","type":"ingredient","requirements":{"level":10,"skills":["scribing"]},"icon":{"format":"legacy","value":"376:0"},"identifications":{"lifeSteal":{"min":6,"raw":6,"max":10},"walkSpeed":{"min":1,"raw":1,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":-84,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Saw-tooth Spider","coords":[-154,67,-1459,9]},{"name":"Stalker Spider","coords":[-392,67,-1327,6]},{"name":"Spinwarp Spider","coords":[-154,67,-1459,9]},{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]}]},"Familiar Essence":{"internalName":"Familiar Essence","type":"ingredient","requirements":{"level":10,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"manaRegen":{"min":6,"raw":6,"max":6}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":-40,"notTouching":-40},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Soft Red Wool":{"internalName":"Soft Red Wool","type":"ingredient","requirements":{"level":10,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:14"},"identifications":{"fireDefence":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Webbed Offshoot":{"internalName":"Webbed Offshoot","type":"ingredient","requirements":{"level":10,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"6:2"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":4},"rawSpellDamage":{"min":5,"raw":5,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-29000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]},{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]}]},"Apple":{"internalName":"Apple","type":"ingredient","requirements":{"level":10,"skills":["cooking"]},"icon":{"format":"legacy","value":"260:0"},"identifications":{"rawHealth":{"min":4,"raw":4,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupted Apple","coords":[272,67,-1611,20]},{"name":"Orchard Owner","coords":[272,67,-1611,20]}]},"Birch Paper 1":{"internalName":"Refined Birch Paper 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperBirch"}},"tier":1},"Granite Gem 1":{"internalName":"Refined Granite Gem 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"64","name":"profession.gemGranite"}},"tier":1},"Trout Meat 1":{"internalName":"Refined Trout Meat 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatTrout"}},"tier":1},"Trout Oil 1":{"internalName":"Refined Trout Oil 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilTrout"}},"tier":1},"Trout Meat 3":{"internalName":"Refined Trout Meat 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatTrout"}},"tier":3},"Granite Ingot 1":{"internalName":"Refined Granite Ingot 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"52","name":"profession.ingotGranite"}},"tier":1},"Barley String 2":{"internalName":"Refined Barley String 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringBarley"}},"tier":2},"Birch Paper 2":{"internalName":"Refined Birch Paper 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperBirch"}},"tier":2},"Granite Gem 2":{"internalName":"Refined Granite Gem 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"64","name":"profession.gemGranite"}},"tier":2},"Birch Paper 3":{"internalName":"Refined Birch Paper 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperBirch"}},"tier":3},"Barley Grains 3":{"internalName":"Refined Barley Grains 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainBarley"}},"tier":3},"Birch Wood 1":{"internalName":"Refined Birch Wood 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"fe035f5cc75de266d5e69f8a509afccf4af0ead9f3ee856ab163b9119dbeca2"},"tier":1},"Granite Ingot 3":{"internalName":"Refined Granite Ingot 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"52","name":"profession.ingotGranite"}},"tier":3},"Trout Meat 2":{"internalName":"Refined Trout Meat 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"93","name":"profession.meatTrout"}},"tier":2},"Barley Grains 1":{"internalName":"Refined Barley Grains 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainBarley"}},"tier":1},"Trout Oil 2":{"internalName":"Refined Trout Oil 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilTrout"}},"tier":2},"Birch Wood 2":{"internalName":"Refined Birch Wood 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"fe035f5cc75de266d5e69f8a509afccf4af0ead9f3ee856ab163b9119dbeca2"},"tier":2},"Trout Oil 3":{"internalName":"Refined Trout Oil 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"88","name":"profession.oilTrout"}},"tier":3},"Birch Wood 3":{"internalName":"Refined Birch Wood 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"fe035f5cc75de266d5e69f8a509afccf4af0ead9f3ee856ab163b9119dbeca2"},"tier":3},"Granite Ingot 2":{"internalName":"Refined Granite Ingot 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"52","name":"profession.ingotGranite"}},"tier":2},"Granite Gem 3":{"internalName":"Refined Granite Gem 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"64","name":"profession.gemGranite"}},"tier":3},"Barley String 1":{"internalName":"Refined Barley String 1","type":"material","identified":true,"requirements":{"level":10},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringBarley"}},"tier":1},"Barley String 3":{"internalName":"Refined Barley String 3","type":"material","identified":true,"requirements":{"level":10},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringBarley"}},"tier":3},"Barley Grains 2":{"internalName":"Refined Barley Grains 2","type":"material","identified":true,"requirements":{"level":10},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainBarley"}},"tier":2},"Dislocater":{"internalName":"Dislocater","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":56,"dropRestriction":"normal","requirements":{"level":9,"classRequirement":"assassin"},"lore":"Often, the leader of brute gangs would use this dagger to threaten his followers into making sure they did not fail him.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"272","name":"dagger.multi1"}},"identifications":{"rawStrength":7,"mainAttackDamage":{"min":4,"raw":12,"max":16},"spellDamage":{"min":-13,"raw":-10,"max":-7},"thorns":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":31,"raw":31,"max":43}},"rarity":"legendary"},"Sledge":{"internalName":"Sledge","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":26,"dropRestriction":"normal","requirements":{"level":9,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":7,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-13,"raw":-10,"max":-7}},"base":{"baseDamage":{"min":25,"raw":25,"max":37}},"rarity":"unique"},"Spiketop":{"internalName":"Spiketop","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":9},"identifications":{"rawHealth":{"min":21,"raw":69,"max":90}},"base":{"baseFireDefence":3},"rarity":"legendary"},"Dofotri":{"internalName":"Dofotri","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":9},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":1,"walkSpeed":{"min":2,"raw":5,"max":7}},"rarity":"rare"},"Knee":{"internalName":"Knee","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":9},"powderSlots":1,"lore":"\"I thought aiming for the legs would disable the enemy. Turns out they can drag themselves with their arms just as quick.\" -Therck, Ragni Soldier 3rd Division","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"identifications":{"rawAgility":5,"xpBonus":5},"base":{"baseHealth":38},"rarity":"unique"},"Refined Longbow":{"internalName":"Refined Longbow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":36,"dropRestriction":"never","identified":true,"requirements":{"level":9,"classRequirement":"archer"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":2,"xpBonus":4},"base":{"baseDamage":{"min":17,"raw":17,"max":31}},"rarity":"unique"},"Ring of Strength":{"internalName":"Ring of Strength","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":9},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"148","name":"ring.earth1"}},"identifications":{"rawStrength":3},"rarity":"unique"},"Audacity":{"internalName":"Audacity","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":2,"lore":"A powerful mental curse surrounds these boots, inciting uncontrollable rage into the wearers, as well as the power to enact it upon others.","identifications":{"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"rawSpellDamage":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":35},"rarity":"legendary"},"Stale":{"internalName":"Stale","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":47,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":9,"classRequirement":"archer"},"powderSlots":1,"lore":"\"There's never new water flowing into those sewers. It all cycles back into itself...not natural.\" -Jenprest, Ragni Legion 2nd Division","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"203","name":"bow.water1"}},"identifications":{"rawIntelligence":3,"spellDamage":10,"waterDamage":6},"base":{"baseDamage":{"min":10,"raw":10,"max":14},"baseWaterDamage":{"min":8,"raw":8,"max":14}},"rarity":"unique"},"Defibrillator":{"internalName":"Defibrillator","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":32,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":9,"classRequirement":"assassin"},"powderSlots":1,"lore":"\"The first time I saw one of those zombies I nearly had a heart attack! The blighters are terrifying.\" -Rynend, Maltic Citizen","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":9,"thunderDamage":7},"base":{"baseDamage":{"min":4,"raw":4,"max":6},"baseThunderDamage":{"min":1,"raw":1,"max":15}},"rarity":"unique"},"Drale's Hide":{"internalName":"Drale's Hide","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":1,"identifications":{"rawStrength":4,"mainAttackDamage":{"min":1,"raw":4,"max":5},"walkSpeed":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":38,"baseEarthDefence":5},"rarity":"rare"},"Luas":{"internalName":"Luas","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":9},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":3,"walkSpeed":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Clock Stick":{"internalName":"Clock Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":16,"dropRestriction":"normal","requirements":{"level":9,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":2,"raw":2,"max":14}},"rarity":"unique"},"Runner's Vest":{"internalName":"Runner's Vest","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":1,"identifications":{"rawAgility":3,"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":24},"rarity":"unique"},"Puncturing Dirk":{"internalName":"Puncturing Dirk","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":34,"dropRestriction":"never","identified":true,"requirements":{"level":9,"classRequirement":"assassin"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawMainAttackDamage":5,"rawSpellDamage":6},"base":{"baseDamage":{"min":10,"raw":10,"max":12}},"rarity":"unique"},"Padded Leather Cap":{"internalName":"Padded Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"base":{"baseHealth":23},"rarity":"common"},"Fluorine":{"internalName":"Fluorine","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":9},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"mainAttackDamage":{"min":2,"raw":7,"max":9},"exploding":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":-1},"rarity":"rare"},"Thoracic":{"internalName":"Thoracic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":9,"quest":"The Sewers of Ragni"},"powderSlots":1,"identifications":{"rawDexterity":7,"rawMainAttackDamage":{"min":4,"raw":13,"max":17},"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":-3,"raw":-2,"max":-1},"thunderDamage":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":45,"baseThunderDefence":5,"baseAirDefence":-2},"rarity":"rare"},"Striker":{"internalName":"Striker","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":34,"dropRestriction":"normal","requirements":{"level":9,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"257","name":"dagger.air1"}},"identifications":{"rawDefence":-2,"rawAgility":3,"rawMainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":2,"raw":5,"max":7},"rawHealth":{"min":-12,"raw":-9,"max":-6}},"base":{"baseDamage":{"min":1,"raw":1,"max":10},"baseAirDamage":{"min":4,"raw":4,"max":7}},"rarity":"rare"},"Dapper Trilby":{"internalName":"Dapper Trilby","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":1,"identifications":{"rawIntelligence":3,"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":38},"rarity":"rare"},"Burnt Skull":{"internalName":"Burnt Skull","type":"ingredient","requirements":{"level":9,"skills":["armouring"]},"icon":{"format":"skin","value":"7953b6c68448e7e6b6bf8fb273d7203acd8e1be19e81481ead51f45de59a8"},"identifications":{"fireDamage":{"min":3,"raw":3,"max":6},"waterDefence":{"min":-6,"raw":-6,"max":-4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Burned Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]}]},"Flaming Bow":{"internalName":"Flaming Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":32,"dropRestriction":"normal","requirements":{"level":9,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"197","name":"bow.fire1"}},"identifications":{"rawHealth":{"min":5,"raw":16,"max":21}},"base":{"baseDamage":{"min":10,"raw":10,"max":18},"baseFireDamage":{"min":6,"raw":6,"max":8}},"rarity":"unique"},"Fruma Imported Boots":{"internalName":"Fruma Imported Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":9},"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"healthRegen":6,"healthRegenRaw":2,"walkSpeed":4},"base":{"baseHealth":28,"baseAirDefence":3},"rarity":"unique"},"Iron Incrusted Pants":{"internalName":"Iron Incrusted Pants","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":1,"identifications":{"rawDefence":3,"rawHealth":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-9,"raw":-7,"max":-5},"earthDefence":{"min":3,"raw":10,"max":13},"airDefence":{"min":-6,"raw":-5,"max":-3}},"base":{"baseHealth":42,"baseEarthDefence":5,"baseWaterDefence":-2},"rarity":"unique"},"Leaf Boots":{"internalName":"Leaf Boots","type":"armour","armourType":"boots","armourColor":"rgb(114,165,38)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":9},"powderSlots":1,"identifications":{"rawStrength":2,"healthRegen":{"min":3,"raw":10,"max":13},"healthRegenRaw":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":34,"baseEarthDefence":5},"rarity":"set"},"Therck's Irritation":{"internalName":"Therck's Irritation","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":9},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawMainAttackDamage":{"min":2,"raw":7,"max":9},"thorns":{"min":1,"raw":3,"max":4},"fireDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":-5},"rarity":"rare"},"Boar Meat":{"internalName":"Boar Meat","type":"ingredient","requirements":{"level":9,"skills":["cooking"]},"icon":{"format":"legacy","value":"363:0"},"identifications":{"thorns":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Boar","coords":[[-267,66,-1306,30],[-220,79,-1216,18],[-101,79,-1072,30]]}]},"Assorted Seeds":{"internalName":"Assorted Seeds","type":"ingredient","requirements":{"level":9,"skills":["cooking","alchemism","scribing","armouring"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"rawMainAttackDamage":{"min":5,"raw":5,"max":6},"walkSpeed":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-60,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-20000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0}},"Charred Bone":{"internalName":"Charred Bone","type":"ingredient","requirements":{"level":9,"skills":["woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"263:1"},"identifications":{"fireDamage":{"min":4,"raw":4,"max":7}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Burned Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]}]},"Leaf Cap":{"internalName":"Leaf Cap","type":"armour","armourType":"helmet","armourColor":"rgb(114,165,38)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"powderSlots":1,"identifications":{"rawStrength":2,"healthRegen":{"min":2,"raw":6,"max":8},"healthRegenRaw":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":30,"baseEarthDefence":5},"rarity":"set"},"Fatigue":{"internalName":"Fatigue","type":"weapon","weaponType":"dagger","attackSpeed":"very_slow","averageDps":26,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawMainAttackDamage":{"min":8,"raw":26,"max":34},"walkSpeed":{"min":-8,"raw":-6,"max":-4}},"base":{"baseDamage":{"min":24,"raw":24,"max":38}},"rarity":"unique"},"Andesite-Hewn Spear":{"internalName":"Andesite-hewn Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":18,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":19,"raw":19,"max":25}},"rarity":"common"},"Mind Cracker":{"internalName":"Mind Cracker","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"154","name":"ring.water1"}},"identifications":{"rawIntelligence":1,"spellDamage":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Armored Culottes":{"internalName":"Armored Culottes","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":8},"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawDefence":4,"walkSpeed":-4},"base":{"baseHealth":28,"baseFireDefence":3},"rarity":"unique"},"Meltok":{"internalName":"Meltok","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":22,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"healthRegen":{"min":3,"raw":10,"max":13},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":3,"raw":3,"max":7},"baseFireDamage":{"min":3,"raw":3,"max":5}},"rarity":"rare"},"Bolt":{"internalName":"Bolt","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":29,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"266","name":"dagger.thunder1"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":3,"raw":3,"max":10},"baseThunderDamage":{"min":1,"raw":1,"max":9}},"rarity":"unique"},"Ragni's Spear":{"internalName":"Ragni's Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":24,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":10,"raw":10,"max":22}},"rarity":"unique"},"Dusty Ring":{"internalName":"Dusty Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"146","name":"ring.air1"}},"identifications":{"rawAgility":3},"rarity":"unique"},"Black Wand":{"internalName":"Black Wand","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":15,"dropRestriction":"never","identified":true,"requirements":{"level":8,"classRequirement":"mage"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"335","name":"wand.thunder1"}},"identifications":{"rawDexterity":3,"mainAttackDamage":5},"base":{"baseDamage":{"min":4,"raw":4,"max":8},"baseThunderDamage":{"min":1,"raw":1,"max":7}},"rarity":"unique"},"Thief's Dagger":{"internalName":"Thief's Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":28,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"stealing":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":6,"raw":6,"max":12}},"rarity":"unique"},"Andesite-Hewn Relik":{"internalName":"Andesite-hewn Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":30,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":18,"raw":18,"max":22}},"rarity":"common"},"Vertebra":{"internalName":"Vertebra","type":"accessory","accessoryType":"bracelet","dropRestriction":"dungeon","requirements":{"level":8},"dropMeta":{"name":"Decrepit Sewers","type":"dungeon","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"rawDefence":4,"rawHealth":{"min":2,"raw":8,"max":10}},"rarity":"unique"},"Plated Boots":{"internalName":"Plated Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"powderSlots":1,"identifications":{"rawStrength":4},"base":{"baseHealth":35},"rarity":"unique"},"Dart Sling":{"internalName":"Dart Sling","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":42,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":4,"spellDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":8,"raw":8,"max":33}},"rarity":"rare"},"Macabre":{"internalName":"Macabre","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":38,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":8,"classRequirement":"shaman"},"powderSlots":1,"lore":"\"Only the most wicked in Gavel could dream of a circumstance as what plagues this Wynn province.\" -King of Ragni","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"400","name":"relik.fire1"}},"identifications":{"rawDefence":3,"lifeSteal":6,"fireDamage":6},"base":{"baseDamage":{"min":10,"raw":10,"max":12},"baseFireDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Heliophilia":{"internalName":"Heliophilia","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"powderSlots":1,"lore":"This peculiar shawl is eternally warm to the touch, and shimmers brilliantly in the sunlight. It is rumored to give amazing health benefits and good fortune to those who wear it.","identifications":{"healthRegen":{"min":6,"raw":20,"max":26},"healthRegenRaw":{"min":3,"raw":10,"max":13},"rawHealth":{"min":9,"raw":30,"max":39},"xpBonus":{"min":4,"raw":12,"max":16}},"base":{"baseHealth":30,"baseFireDefence":6},"rarity":"legendary"},"Andesite-Hewn Wand":{"internalName":"Andesite-hewn Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":14,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":7,"raw":7,"max":11}},"rarity":"common"},"Andesite-Hewn Dagger":{"internalName":"Andesite-hewn Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":23,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":8,"raw":8,"max":14}},"rarity":"common"},"Windcatcher Totem":{"internalName":"Windcatcher Totem","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":38,"dropRestriction":"never","identified":true,"requirements":{"level":8,"classRequirement":"shaman"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"walkSpeed":10,"lootBonus":6},"base":{"baseDamage":{"min":10,"raw":10,"max":11},"baseAirDamage":{"min":4,"raw":4,"max":5}},"rarity":"unique"},"Breathing Helmet I":{"internalName":"Breathing Helmet I","type":"armour","armourType":"helmet","armourColor":"rgb(127,153,184)","armourMaterial":"leather","restrictions":"quest item","dropRestriction":"never","requirements":{"level":8},"base":{"baseHealth":20,"baseThunderDefence":-3,"baseWaterDefence":5},"rarity":"common"},"Messenger Cap":{"internalName":"Messenger Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":8},"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"rawAgility":3,"walkSpeed":6,"lootBonus":5},"base":{"baseHealth":24},"rarity":"unique"},"Toes Tickler":{"internalName":"Toes Tickler","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"powderSlots":1,"identifications":{"walkSpeed":{"min":2,"raw":7,"max":9}},"base":{"baseHealth":20},"rarity":"unique"},"Corpse":{"internalName":"Corpse","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":23,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":8,"classRequirement":"warrior"},"powderSlots":1,"lore":"\"Catch a fresh-raised corrupted, it's like catching a soldier without his morning coffee. Stumbly and unfocused.\" -Enzan, Retired Ragni Soldier","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"465","name":"spear.earth1"}},"identifications":{"rawStrength":1,"mainAttackDamage":6,"lootBonus":6},"base":{"baseDamage":{"min":8,"raw":8,"max":10},"baseEarthDamage":{"min":4,"raw":4,"max":9}},"rarity":"unique"},"Turnpike":{"internalName":"Turnpike","type":"weapon","weaponType":"relik","attackSpeed":"very_slow","averageDps":39,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"397","name":"relik.earth1"}},"identifications":{"rawDefence":4,"rawMainAttackDamage":{"min":6,"raw":20,"max":26},"walkSpeed":{"min":-6,"raw":-5,"max":-3},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":30,"raw":30,"max":35},"baseEarthDamage":{"min":13,"raw":13,"max":15}},"rarity":"unique"},"Cool":{"internalName":"Cool","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":8},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"160","name":"bracelet.air1"}},"identifications":{"rawAgility":3,"spellDamage":{"min":1,"raw":4,"max":5}},"base":{"baseAirDefence":4},"rarity":"unique"},"Tanned Leather Tunic":{"internalName":"Tanned Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"base":{"baseHealth":20},"rarity":"common"},"Lucky Spider Egg":{"internalName":"Lucky Spider Egg","type":"ingredient","requirements":{"level":8,"skills":["alchemism"]},"icon":{"format":"legacy","value":"432:0"},"identifications":{"xpBonus":{"min":10,"raw":10,"max":12},"lootBonus":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-80,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]}]},"Andesite-Hewn Bow":{"internalName":"Andesite-hewn Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":24,"dropRestriction":"normal","requirements":{"level":8,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":25,"raw":25,"max":32}},"rarity":"common"},"Concentration":{"internalName":"Concentration","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":8},"lore":"The forger of this ring had to endure 30 long days of smelting various metals only found in the ocean. A single mistake would ruin the creation. The mystic metals are said to seep into the wearers skin to gently replenish their resolve.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"144","name":"ring.basicPearl"}},"identifications":{"manaRegen":{"min":2,"raw":6,"max":8}},"rarity":"legendary"},"Featherweight":{"internalName":"Featherweight","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":8},"identifications":{"rawAgility":4,"walkSpeed":{"min":3,"raw":11,"max":14}},"base":{"baseHealth":18},"rarity":"rare"},"War Spear":{"internalName":"War Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":27,"dropRestriction":"never","identified":true,"requirements":{"level":8,"classRequirement":"warrior"},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":2,"mainAttackDamage":5,"spellDamage":3,"rawHealth":-10},"base":{"baseDamage":{"min":16,"raw":16,"max":20}},"rarity":"unique"},"Feather of Grace":{"internalName":"Feather of Grace","type":"ingredient","requirements":{"level":8,"skills":["tailoring","jeweling"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":3}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-40000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]}]},"Flugsvamp Cap":{"internalName":"Flugsvamp Cap","type":"ingredient","requirements":{"level":8,"skills":["cooking"]},"icon":{"format":"legacy","value":"40:0"},"identifications":{"walkSpeed":{"min":3,"raw":3,"max":6}},"tier":1,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]}]},"Rotten Bone":{"internalName":"Rotten Bone","type":"ingredient","requirements":{"level":8,"skills":["weaponsmithing","armouring"]},"icon":{"format":"legacy","value":"352:0"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":1},"walkSpeed":{"min":-2,"raw":-2,"max":-1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Dead Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]},{"name":"Burned Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]},{"name":"Long-dead Soldier","coords":null}]},"Thin Quill":{"internalName":"Thin Quill","type":"ingredient","requirements":{"level":8,"skills":["scribing","armouring","tailoring"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"airDamage":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-40,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-19000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]},{"name":"Zombie Grook","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Beak of the Nivlan Beauty":{"internalName":"Beak of the Nivlan Beauty","type":"ingredient","requirements":{"level":8,"skills":["weaponsmithing","tailoring","armouring"]},"icon":{"format":"legacy","value":"409:0"},"identifications":{"rawHealth":{"min":10,"raw":10,"max":14}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-28000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]}]},"Blood of the Nivlan Beauty":{"internalName":"Blood of the Nivlan Beauty","type":"ingredient","requirements":{"level":8,"skills":["tailoring","armouring","weaponsmithing"]},"icon":{"format":"legacy","value":"437:0"},"identifications":{"manaSteal":{"min":2,"raw":2,"max":4},"reflection":{"min":2,"raw":2,"max":4}},"tier":3,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":12,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nivlan Beauty","coords":[[-236,66,-1567,40],[-250,75,-1674,20],[-105,68,-1697,30],[-256,67,-1452,30]]}]},"Nivlan Honey":{"internalName":"Nivlan Honey","type":"ingredient","requirements":{"level":8,"skills":["cooking","alchemism","scribing"]},"icon":{"format":"skin","value":"e6dcc8f37ac99d951ecbc5df5e8582133f5f2307e769af6b6cfff428218067"},"tier":3,"consumableOnlyIDs":{"duration":30,"charges":1},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]}]},"Sheep Hoof":{"internalName":"Sheep Hoof","type":"ingredient","requirements":{"level":8,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"145:0"},"identifications":{"sprint":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-19000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombified Sheep","coords":[[414,69,-1694,40],[306,76,-1734,40],[374,66,-1141,22],[574,74,-1245,30],[217,67,-1485,15],[217,67,-1485,15]]}]},"Rusted Bracelet":{"internalName":"Rusted Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":7},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":6,"max":8},"lootBonus":{"min":1,"raw":3,"max":4}},"rarity":"unique"},"Merchant Sandals":{"internalName":"Merchant Sandals","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":7},"powderSlots":1,"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"walkSpeed":3,"lootBonus":7},"base":{"baseHealth":18},"rarity":"unique"},"Maltic's Old Spear":{"internalName":"Maltic's Old Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":36,"dropRestriction":"normal","requirements":{"level":7,"classRequirement":"warrior"},"powderSlots":1,"lore":"This short spear was the first weapon to be produced by the villagers for sale. They are old, but strong.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":7,"rawDexterity":7,"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":15,"raw":15,"max":20}},"rarity":"legendary"},"Treasure Boots":{"internalName":"Treasure Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":7,"quest":"Underwater"},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":24},"rarity":"unique"},"Breeze":{"internalName":"Breeze","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":28,"dropRestriction":"normal","requirements":{"level":7,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"191","name":"bow.air1"}},"identifications":{"rawDexterity":3,"rawAgility":3,"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":9,"raw":9,"max":10},"baseAirDamage":{"min":7,"raw":7,"max":12}},"rarity":"unique"},"Nipun":{"internalName":"Nipun","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":7},"identifications":{"rawDexterity":4,"mainAttackDamage":{"min":2,"raw":5,"max":7},"spellDamage":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":27},"rarity":"rare"},"Espoir":{"internalName":"Espoir","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":7},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"lootBonus":{"min":2,"raw":7,"max":9}},"rarity":"rare"},"Chipped Leather Tunic":{"internalName":"Chipped Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":7},"base":{"baseHealth":16},"rarity":"common"},"Funnel":{"internalName":"Funnel","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":7},"identifications":{"lifeSteal":{"min":1,"raw":2,"max":3},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":20},"rarity":"unique"},"Sketiq":{"internalName":"Sketiq","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":22,"restrictions":"untradable","dropRestriction":"never","identified":true,"requirements":{"level":7,"classRequirement":"mage"},"powderSlots":1,"lore":"\"As much as they're terrifying, at least those lousy skeletons give us lots of bonemeal for the crops!\" -Bylvis, Katoa Ranch Farmer","dropMeta":{"name":"Decrepit Sewers","type":"dungeonMerchant","coordinates":[-901,62,-1886]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"326","name":"wand.air1"}},"identifications":{"rawAgility":3,"walkSpeed":5,"airDamage":6},"base":{"baseDamage":{"min":7,"raw":7,"max":10},"baseAirDamage":{"min":1,"raw":1,"max":3}},"rarity":"unique"},"Tanned Leather Leggings":{"internalName":"Tanned Leather Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":7},"base":{"baseHealth":17},"rarity":"common"},"Detlas' Stick":{"internalName":"Detlas' Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":15,"dropRestriction":"normal","requirements":{"level":7,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"338","name":"wand.water1"}},"identifications":{"rawIntelligence":4,"manaRegen":{"min":2,"raw":6,"max":8},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":3,"raw":3,"max":5},"baseWaterDamage":{"min":1,"raw":1,"max":3}},"rarity":"unique"},"Tiny":{"internalName":"Tiny","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":7},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"177","name":"necklace.air1"}},"identifications":{"rawAgility":1,"spellDamage":{"min":1,"raw":2,"max":3},"walkSpeed":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":1},"rarity":"unique"},"Death Growl":{"internalName":"Death Growl","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":38,"dropRestriction":"normal","requirements":{"level":7,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawStrength":6},"base":{"baseDamage":{"min":24,"raw":24,"max":27}},"rarity":"unique"},"Battle Leggings":{"internalName":"Battle Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":7},"powderSlots":1,"dropMeta":{"name":"Ragni","type":"merchant","coordinates":[-881,67,-1575]},"identifications":{"rawStrength":3,"healthRegen":7},"base":{"baseHealth":20},"rarity":"unique"},"Skin Cap":{"internalName":"Skin Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":7},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":16},"rarity":"unique"},"Nemract's Bow":{"internalName":"Nemract's Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":28,"dropRestriction":"normal","requirements":{"level":7,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":13,"raw":13,"max":24}},"rarity":"unique"},"Planus Vest":{"internalName":"Planus Vest","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":7},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"walkSpeed":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":18},"rarity":"unique"},"Waist Apron":{"internalName":"Waist Apron","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":7,"quest":"Infested Plants֎"},"identifications":{"thorns":{"min":2,"raw":8,"max":10},"exploding":{"min":2,"raw":8,"max":10},"xpBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":30},"rarity":"rare"},"Vibrant Augment":{"internalName":"Vibrant Augment","type":"ingredient","requirements":{"level":7,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"skin","value":"e399e47e55c15d3e26525c5a470f248e335d2faa3a63410c4ddf42da36ad2f"},"identifications":{"earthDamage":{"min":6,"raw":6,"max":7},"thunderDamage":{"min":6,"raw":6,"max":7},"waterDamage":{"min":6,"raw":6,"max":7},"fireDamage":{"min":6,"raw":6,"max":7},"airDamage":{"min":6,"raw":6,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Fungi Spores":{"internalName":"Fungi Spores","type":"ingredient","requirements":{"level":7,"skills":["cooking"]},"icon":{"format":"legacy","value":"361:0"},"identifications":{"poison":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]},{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]}]},"Paralyzing Spores":{"internalName":"Paralyzing Spores","type":"ingredient","requirements":{"level":7,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"362:0"},"identifications":{"walkSpeed":{"min":-8,"raw":-8,"max":-6},"mainAttackDamage":{"min":5,"raw":5,"max":6},"spellDamage":{"min":5,"raw":5,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]},{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]}]},"Mana Extract":{"internalName":"Mana Extract","type":"ingredient","requirements":{"level":7,"skills":["alchemism"]},"icon":{"format":"legacy","value":"169:0"},"identifications":{"gatherXpBonus":{"min":2,"raw":2,"max":3},"rawSpellDamage":{"min":10,"raw":10,"max":12}},"tier":3,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defender of the Plains","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Corruption Shard":{"internalName":"Corruption Shard","type":"ingredient","requirements":{"level":7,"skills":["scribing","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"thunderDamage":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-40,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Battered Warrior","coords":[-620,72,-1693,12]},{"name":"Battered Warrior","coords":[-620,72,-1693,12]},{"name":"Ragni Soldier","coords":[-245,73,-1528,6]}]},"Karl Johan Cap":{"internalName":"Karl Johan Cap","type":"ingredient","requirements":{"level":7,"skills":["cooking"]},"icon":{"format":"legacy","value":"39:0"},"identifications":{"healthRegenRaw":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-170,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Fungal Parasite","coords":[[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10],[-187,71,-1519,20],[-330,68,-1515,10],[-318,68,-1679,10]]}]},"Corrupted Fragment":{"internalName":"Corrupted Fragment","type":"ingredient","requirements":{"level":7,"skills":["tailoring","armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"402:0"},"identifications":{"rawMainAttackDamage":{"min":12,"raw":12,"max":16},"walkSpeed":{"min":4,"raw":4,"max":6},"rawIntelligence":{"min":-4,"raw":-4,"max":-3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-59000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombified Guard","coords":[116,68,-1534,5]},{"name":"Dead Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]},{"name":"Burned Suburb Resident","coords":[[49,65,-1665,5],[38,68,-1770,5],[229,70,-1709,5],[298,67,-1677,5],[308,69,-1564,5],[256,70,-1714,5],[230,76,-1522,5],[163,68,-1503,5]]}]},"Coagulated Clot":{"internalName":"Coagulated Clot","type":"ingredient","requirements":{"level":7,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"healthRegenRaw":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":-54,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spitting Zombie","coords":[[-616,54,-1980,8],[-626,82,-1786,7]]},{"name":"Infected Goo","coords":[-621,67,-1908,1]},{"name":"Infected Gore","coords":[-627,81,-1786,1]},{"name":"Infected Gunk","coords":[-617,55,-1979,1]},{"name":"Goo Czar","coords":null},{"name":"Gore Czar","coords":null},{"name":"Gunk Czar","coords":null},{"name":"Digested Muck","coords":null},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Birch Wood Dagger":{"internalName":"Birch Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":19,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":5,"raw":5,"max":10}},"rarity":"common"},"Abandoned Tunic":{"internalName":"Abandoned Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":6},"powderSlots":1,"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"rawMaxMana":{"min":5,"raw":15,"max":20},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseHealth":22},"rarity":"unique"},"Tanned Leather Boots":{"internalName":"Tanned Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":6},"base":{"baseHealth":14},"rarity":"common"},"Neodymium":{"internalName":"Neodymium","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":6},"powderSlots":2,"identifications":{"rawMainAttackDamage":{"min":2,"raw":5,"max":7},"rawSpellDamage":{"min":1,"raw":4,"max":5},"healthRegenRaw":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":25,"baseEarthDefence":-2,"baseThunderDefence":6},"rarity":"rare"},"Pin":{"internalName":"Pin","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":37,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"identifications":{"rawDexterity":4,"xpBonus":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":24,"raw":24,"max":25}},"rarity":"rare"},"Beauty":{"internalName":"Beauty","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":6},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"xpBonus":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Crustacean":{"internalName":"Crustacean","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":58,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"406","name":"relik.water1"}},"identifications":{"rawHealth":{"min":8,"raw":25,"max":33},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":35,"raw":35,"max":42}},"rarity":"rare"},"Jeweled Vestments":{"internalName":"Jeweled Vestments","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":6},"dropMeta":{"name":"Detlas","type":"merchant","coordinates":[433,69,-1580]},"identifications":{"xpBonus":3,"lootBonus":8},"base":{"baseHealth":18,"baseEarthDefence":2,"baseThunderDefence":2,"baseWaterDefence":2,"baseFireDefence":2,"baseAirDefence":2},"rarity":"unique"},"Birch Wood Relik":{"internalName":"Birch Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":23,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":10,"raw":10,"max":12}},"rarity":"common"},"Birch Wood Wand":{"internalName":"Birch Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":11,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":4,"raw":4,"max":7}},"rarity":"common"},"Comfort":{"internalName":"Comfort","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":6},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"164","name":"bracelet.fire1"}},"identifications":{"rawMainAttackDamage":{"min":-4,"raw":-3,"max":-2},"healthRegenRaw":{"min":1,"raw":2,"max":3},"rawHealth":{"min":2,"raw":8,"max":10}},"rarity":"rare"},"Log Suit":{"internalName":"Log Suit","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":6},"identifications":{"thorns":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-3,"raw":-2,"max":-1}},"base":{"baseHealth":21,"baseEarthDefence":5,"baseFireDefence":-3},"rarity":"unique"},"Chandelle":{"internalName":"Chandelle","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":20,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"468","name":"spear.fire1"}},"identifications":{"healthRegen":{"min":2,"raw":5,"max":7},"rawHealth":{"min":3,"raw":10,"max":13}},"base":{"baseDamage":{"min":5,"raw":5,"max":8},"baseFireDamage":{"min":5,"raw":5,"max":8}},"rarity":"unique"},"Harsh Noise":{"internalName":"Harsh Noise","type":"weapon","weaponType":"relik","attackSpeed":"super_fast","averageDps":56,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"shaman"},"powderSlots":1,"lore":"Corkian technology was not the first to create an item that is capable of recording noise. Artifacts from Time Valley were found to record ambient sounds and distort them into ear-splitting sonic bursts.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"394","name":"relik.air1"}},"identifications":{"rawSpellDamage":{"min":5,"raw":15,"max":20},"exploding":{"min":5,"raw":15,"max":20},"stealing":{"min":1,"raw":2,"max":3}},"base":{"baseDamage":{"min":10,"raw":10,"max":16}},"rarity":"legendary"},"Birch Wood Spear":{"internalName":"Birch Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":15,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":7,"raw":7,"max":13}},"rarity":"common"},"Helmet of Intelligence":{"internalName":"Helmet of Intelligence","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":6},"powderSlots":1,"identifications":{"rawIntelligence":4},"base":{"baseHealth":13},"rarity":"unique"},"Tormenter":{"internalName":"Tormenter","type":"weapon","weaponType":"bow","attackSpeed":"very_fast","averageDps":26,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"206","name":"bow.multi1"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":6,"raw":6,"max":11}},"rarity":"unique"},"Birch Wood Bow":{"internalName":"Birch Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":15,"dropRestriction":"normal","requirements":{"level":6,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":8,"raw":8,"max":12}},"rarity":"common"},"Blazing Fireball":{"internalName":"Blazing Fireball","type":"ingredient","requirements":{"level":6,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":8,"raw":8,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":-78,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Charred Zombie","coords":[-543,67,-1620,10]},{"name":"Flame Grilling Swine","coords":[-611,54,-1549,1]}]},"Shock":{"internalName":"Shock","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":6},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawDexterity":3},"rarity":"unique"},"Used Fireball":{"internalName":"Used Fireball","type":"ingredient","requirements":{"level":6,"skills":["scribing","alchemism"]},"icon":{"format":"legacy","value":"378:0"},"identifications":{"fireDamage":{"min":1,"raw":1,"max":6}},"tier":0,"consumableOnlyIDs":{"duration":-39,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Charred Zombie","coords":[-543,67,-1620,10]}]},"Old Treasure֎":{"internalName":"Old Treasure֎","type":"ingredient","requirements":{"level":6,"skills":["jeweling"]},"icon":{"format":"legacy","value":"41:0"},"identifications":{"lootBonus":{"min":4,"raw":4,"max":6},"xpBonus":{"min":3,"raw":3,"max":5}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":-40},"itemOnlyIDs":{"durabilityModifier":-58000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Waterlogged Zombie","coords":[-413,4,-2084,4]},{"name":"Cave Crab","coords":[[-451,9,-2062,3],[-447,9,-2065,2],[-378,12,-2098,3],[-395,20,-2089,2],[-424,9,-2045,4]]},{"name":"Tidepool Spitter","coords":[[-405,5,-2093,0],[-425,10,-2050,0],[-417,10,-2046,0],[-426,10,-2042,0]]},{"name":"Greedy Zombie","coords":[-739,37,-1984,4]}]},"Sharpening Stone":{"internalName":"Sharpening Stone","type":"ingredient","requirements":{"level":6,"skills":["weaponsmithing"]},"icon":{"format":"legacy","value":"337:0"},"identifications":{"rawStrength":{"min":2,"raw":2,"max":2},"rawDexterity":{"min":2,"raw":2,"max":2}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-38000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defender of the Plains","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Defender's Stone":{"internalName":"Defender's Stone","type":"ingredient","requirements":{"level":6,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"98:3"},"identifications":{"rawMainAttackDamage":{"min":6,"raw":6,"max":8},"rawSpellDamage":{"min":4,"raw":4,"max":6},"rawHealth":{"min":5,"raw":5,"max":7}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-60000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defender of the Plains","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Earthly Pebble":{"internalName":"Earthly Pebble","type":"ingredient","requirements":{"level":6,"skills":["alchemism"]},"icon":{"format":"legacy","value":"77:0"},"identifications":{"earthDamage":{"min":6,"raw":6,"max":7}},"tier":2,"consumableOnlyIDs":{"duration":-80,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defender of the Plains","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Guard's Garment":{"internalName":"Guard's Garment","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":5},"lore":"...It's pulling towards something.","identifications":{"rawStrength":3,"rawDefence":3,"rawMainAttackDamage":{"min":5,"raw":15,"max":20},"xpBonus":{"min":4,"raw":14,"max":18}},"base":{"baseHealth":25,"baseEarthDefence":5,"baseFireDefence":5},"rarity":"legendary"},"Tree Bracelet":{"internalName":"Tree Bracelet","type":"accessory","accessoryType":"bracelet","dropRestriction":"never","identified":true,"requirements":{"level":5},"dropMeta":{"name":"Alkin Village","type":"merchant","coordinates":[-156,72,-1630]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"healthRegen":5,"healthRegenRaw":2},"rarity":"unique"},"Macht":{"internalName":"Macht","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"rawStrength":3,"mainAttackDamage":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Javelin":{"internalName":"Javelin","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":23,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"identifications":{"rawDexterity":4,"rawMainAttackDamage":{"min":2,"raw":8,"max":10}},"base":{"baseDamage":{"min":8,"raw":8,"max":14}},"rarity":"rare"},"Aldorei's Training Bow":{"internalName":"Aldorei's Training Bow","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":20,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":1,"healthRegen":{"min":2,"raw":7,"max":9},"manaRegen":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":5,"raw":5,"max":11}},"rarity":"unique"},"Exion":{"internalName":"Exion","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"powderSlots":1,"identifications":{"rawSpellDamage":{"min":1,"raw":4,"max":5},"manaRegen":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":21,"baseEarthDefence":-6,"baseThunderDefence":3},"rarity":"rare"},"Chipped Leather Pants":{"internalName":"Chipped Leather Pants","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":5},"base":{"baseHealth":11},"rarity":"common"},"Sparklock":{"internalName":"Sparklock","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":14,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"rawIntelligence":3,"manaRegen":{"min":2,"raw":6,"max":8},"thunderDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":5,"raw":5,"max":9}},"rarity":"unique"},"Bright Boots":{"internalName":"Bright Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"identifications":{"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":15,"baseEarthDefence":-3,"baseThunderDefence":3},"rarity":"unique"},"Iron String":{"internalName":"Iron String","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":36,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"archer"},"lore":"Many said making a bow out of iron would be slow and wasteful, but the weight of the iron arrow can pierce even stone.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawStrength":5,"rawAgility":-2,"mainAttackDamage":{"min":2,"raw":8,"max":10},"spellDamage":{"min":-4,"raw":-3,"max":-2}},"base":{"baseDamage":{"min":37,"raw":37,"max":50}},"rarity":"legendary"},"Fourchette":{"internalName":"Fourchette","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":20,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"healthRegen":{"min":3,"raw":11,"max":14}},"base":{"baseDamage":{"min":10,"raw":10,"max":17}},"rarity":"unique"},"Hostage":{"internalName":"Hostage","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":19,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"warrior","quest":"Prison Story"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawStrength":3,"rawHealth":{"min":3,"raw":10,"max":13},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseDamage":{"min":7,"raw":7,"max":11}},"rarity":"unique"},"The Queen's Tiara":{"internalName":"The Queen's Tiara","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"powderSlots":1,"identifications":{"xpBonus":{"min":1,"raw":4,"max":5},"lootBonus":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":19},"rarity":"rare"},"Tanned Leather Cap":{"internalName":"Tanned Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"base":{"baseHealth":11},"rarity":"common"},"First Steps":{"internalName":"First Steps","type":"accessory","accessoryType":"ring","dropRestriction":"never","requirements":{"level":5,"quest":"Cook Assistant"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":4},"rarity":"unique"},"Seedling":{"internalName":"Seedling","type":"accessory","accessoryType":"necklace","dropRestriction":"never","identified":true,"requirements":{"level":5},"dropMeta":{"name":"Alkin Village","type":"merchant","coordinates":[-156,72,-1630]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"179","name":"necklace.earth1"}},"identifications":{"rawStrength":2,"xpBonus":4},"rarity":"unique"},"The Out":{"internalName":"The Out","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":29,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"rawHealth":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":12,"raw":12,"max":16}},"rarity":"unique"},"Switch Blade":{"internalName":"Switch Blade","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":24,"dropRestriction":"normal","requirements":{"level":5,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawDexterity":3,"spellDamage":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":7,"raw":7,"max":12}},"rarity":"unique"},"Blessed Wrappings":{"internalName":"Blessed Wrappings","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"powderSlots":1,"lore":"The thick, Bovemist-sanctified cloth is worn by their priests during certain religious ceremonies. It clears the mind and purifies the body.","identifications":{"rawDefence":3,"healthRegen":{"min":4,"raw":12,"max":16},"rawHealth":{"min":5,"raw":15,"max":20},"xpBonus":{"min":3,"raw":10,"max":13}},"base":{"baseHealth":30},"rarity":"legendary"},"Wedding Ring":{"internalName":"Wedding Ring","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"rawHealth":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":2},"rarity":"unique"},"Starched Pants":{"internalName":"Starched Pants","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":5},"identifications":{"rawDefence":4},"base":{"baseHealth":16},"rarity":"unique"},"Spider Fang":{"internalName":"Spider Fang","type":"ingredient","requirements":{"level":5,"skills":["alchemism","weaponsmithing"]},"icon":{"format":"legacy","value":"318:0"},"identifications":{"poison":{"min":4,"raw":4,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-38,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]}]},"Tarnished Gold Foil":{"internalName":"Tarnished Gold Foil","type":"ingredient","requirements":{"level":5,"skills":["scribing","jeweling"]},"icon":{"format":"legacy","value":"348:0"},"identifications":{"xpBonus":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":-38,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Larkster Pirate","coords":null},{"name":"Larkster Pirate","coords":null},{"name":"Larkster Pirate","coords":null},{"name":"Captain Larkster","coords":null},{"name":"Larkster's Cook","coords":null},{"name":"Greedy Zombie","coords":[-739,37,-1984,4]}]},"Dead Bee":{"internalName":"Dead Bee","type":"ingredient","requirements":{"level":5,"skills":["alchemism"]},"icon":{"format":"skin","value":"947322f831e3c168cfbd3e28fe925144b261e79eb39c771349fac55a8126473"},"identifications":{"rawHealth":{"min":-6,"raw":-6,"max":-4},"rawMainAttackDamage":{"min":6,"raw":6,"max":8}},"tier":1,"consumableOnlyIDs":{"duration":-54,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]},{"name":"Bee Swarm","coords":null}]},"Nivlan Honeycomb":{"internalName":"Nivlan Honeycomb","type":"ingredient","requirements":{"level":5,"skills":["cooking"]},"icon":{"format":"skin","value":"693c3512fc5885fccbb25d2daf7fdcfae82641ed7e5e3597cddf73e41159f24"},"identifications":{"healthRegenRaw":{"min":3,"raw":3,"max":4},"rawHealth":{"min":10,"raw":10,"max":12}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Bee Hive","coords":[[-148,72,-1603,40],[-114,67,-1657,55],[-373,68,-1679,45]]}]},"Grook Feather":{"internalName":"Grook Feather","type":"ingredient","requirements":{"level":5,"skills":["tailoring"]},"icon":{"format":"legacy","value":"288:0"},"identifications":{"xpBonus":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Grook","coords":[[503,66,-1582,13],[478,67,-1620,6]]},{"name":"Grook","coords":[[-606,48,-5005,5],[-628,48,-4991,5],[-629,46,-4972,5],[-269,32,-4776,5],[-288,32,-4776,5],[-180,39,-4665,5],[-166,39,-4663,5],[-325,89,-4448,5],[-315,105,-4418,5],[-297,103,-4413,5],[-281,106,-4370,5],[-189,103,-4382,5]]},{"name":"Wild Grook","coords":[[-1150,46,-5053,45],[-1052,46,-5084,45],[-927,46,-5011,45],[-927,46,-4925,45],[-1014,46,-4919,45],[-1106,46,-4923,45],[-1108,46,-4560,45],[-745,46,-4618,45],[-823,46,-4722,45],[-605,46,-4720,45],[-717,46,-4795,45],[-1263,46,-5037,45],[-905,46,-4654,45],[-691,46,-4687,45],[-862,46,-4786,45],[-959,46,-4809,45],[-1033,46,-4718,45],[-1131,46,-4708,45]]},{"name":"Forest Grook","coords":[-1099,43,-4983,3]},{"name":"Disgruntled Grook","coords":null},{"name":"Migrant Grook","coords":false}]},"Poisonous Spider Eye":{"internalName":"Poisonous Spider Eye","type":"ingredient","requirements":{"level":5,"skills":["jeweling","alchemism"]},"icon":{"format":"legacy","value":"375:0"},"identifications":{"poison":{"min":2,"raw":2,"max":3}},"tier":1,"consumableOnlyIDs":{"duration":-54,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]}]},"Fresh Water":{"internalName":"Fresh Water","type":"ingredient","requirements":{"level":5,"skills":["scribing","cooking","alchemism"]},"icon":{"format":"legacy","value":"373:0"},"identifications":{"waterDamage":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-120,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Drenched Zombie","coords":[[-564,37,-1729,2],[-564,37,-1729,5],[-564,36,-1705,2]]},{"name":"Tidepool Spitter","coords":[[-405,5,-2093,0],[-425,10,-2050,0],[-417,10,-2046,0],[-426,10,-2042,0]]},{"name":"Cave Crab","coords":[[-451,9,-2062,3],[-447,9,-2065,2],[-378,12,-2098,3],[-395,20,-2089,2],[-424,9,-2045,4]]},{"name":"Crab Hiding in Sand","coords":[[-737,35,-2015,7],[-704,34,-2035,7],[-670,35,-2049,7],[-754,35,-2125,20],[-754,35,-2125,20],[-446,35,-2063,10],[-368,35,-2118,20]]}]},"Gathering Scythe T2":{"internalName":"Gathering Scythe 2","type":"tool","toolType":"scythe","gatheringSpeed":16,"identified":true,"requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"61","name":"gatheringTool.scythe2"}},"rarity":"common"},"Gathering Axe T2":{"internalName":"Gathering Axe 2","type":"tool","toolType":"axe","gatheringSpeed":16,"identified":true,"requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"46","name":"gatheringTool.axe2"}},"rarity":"common"},"Gathering Rod T2":{"internalName":"Gathering Rod 2","type":"tool","toolType":"rod","gatheringSpeed":16,"identified":true,"requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"56","name":"gatheringTool.rod2"}},"rarity":"common"},"Gathering Pickaxe T2":{"internalName":"Gathering Pickaxe 2","type":"tool","toolType":"pickaxe","gatheringSpeed":16,"identified":true,"requirements":{"level":5},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"51","name":"gatheringTool.pickaxe2"}},"rarity":"common"},"Keeper":{"internalName":"Keeper","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":6,"max":8}},"rarity":"unique"},"Jag":{"internalName":"Jag","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"152","name":"ring.thunder1"}},"identifications":{"rawMainAttackDamage":{"min":1,"raw":3,"max":4},"thorns":{"min":1,"raw":4,"max":5}},"rarity":"rare"},"Plain Leather Tunic":{"internalName":"Plain Leather Tunic","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":4},"base":{"baseHealth":9},"rarity":"common"},"Vine":{"internalName":"Vine","type":"accessory","accessoryType":"ring","dropRestriction":"never","identified":true,"requirements":{"level":4},"dropMeta":{"name":"Alkin Village","type":"merchant","coordinates":[-156,72,-1630]},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"mainAttackDamage":5},"rarity":"unique"},"Light Oak Wood Relik":{"internalName":"Light Oak Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"fast","averageDps":19,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":7,"raw":7,"max":8}},"rarity":"common"},"Quartzite Amulet":{"internalName":"Quartzite Amulet","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"spellDamage":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Swift":{"internalName":"Swift","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":4},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"174","name":"necklace.basicCross"}},"identifications":{"rawMainAttackDamage":1,"walkSpeed":{"min":2,"raw":5,"max":7},"xpBonus":{"min":1,"raw":3,"max":4}},"rarity":"rare"},"Light Oak Wood Spear":{"internalName":"Light Oak Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":12,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":4,"raw":4,"max":8}},"rarity":"common"},"Shining Cloak":{"internalName":"Shining Cloak","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":4},"powderSlots":1,"identifications":{"spellDamage":{"min":1,"raw":4,"max":5},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":12},"rarity":"unique"},"Thinking Helmet":{"internalName":"Thinking Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":4},"powderSlots":1,"identifications":{"rawMaxMana":{"min":6,"raw":20,"max":26}},"base":{"baseHealth":8},"rarity":"unique"},"The Leech Spear":{"internalName":"The Leech Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":16,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"lifeSteal":{"min":1,"raw":2,"max":3}},"base":{"baseDamage":{"min":7,"raw":7,"max":14}},"rarity":"unique"},"Soft Helmet":{"internalName":"Soft Helmet","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":4},"powderSlots":1,"identifications":{"rawAgility":1},"base":{"baseHealth":10,"baseThunderDefence":-1,"baseAirDefence":3},"rarity":"unique"},"Light Oak Wood Dagger":{"internalName":"Light Oak Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"very_fast","averageDps":14,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":2,"raw":2,"max":7}},"rarity":"common"},"Solidified Chestplate":{"internalName":"Solidified Chestplate","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":4},"dropMeta":{"name":"Ragni","type":"merchant","coordinates":[-881,67,-1575]},"identifications":{"rawDefence":2,"xpBonus":5},"base":{"baseHealth":14},"rarity":"unique"},"Light Oak Wood Wand":{"internalName":"Light Oak Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":9,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":2,"raw":2,"max":5}},"rarity":"common"},"Dark Ambience":{"internalName":"Dark Ambience","type":"weapon","weaponType":"relik","attackSpeed":"very_fast","averageDps":34,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"shaman"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"403","name":"relik.thunder1"}},"identifications":{"lifeSteal":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":7,"max":9}},"base":{"baseDamage":{"min":7,"raw":7,"max":9},"baseThunderDamage":{"min":3,"raw":3,"max":3}},"rarity":"rare"},"Light Oak Wood Bow":{"internalName":"Light Oak Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":14,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":5,"raw":5,"max":9}},"rarity":"common"},"Galaxy Piercer":{"internalName":"Galaxy Piercer","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":22,"dropRestriction":"normal","requirements":{"level":4,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawDexterity":3,"spellDamage":{"min":2,"raw":5,"max":7},"healthRegen":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":8,"raw":8,"max":13}},"rarity":"rare"},"Sokoto":{"internalName":"Sokoto","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":4},"powderSlots":1,"identifications":{"rawAgility":3,"walkSpeed":{"min":2,"raw":8,"max":10},"airDamage":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":15},"rarity":"rare"},"Putrid Gunk":{"internalName":"Putrid Gunk","type":"ingredient","requirements":{"level":4,"skills":["scribing"]},"icon":{"format":"legacy","value":"341:0"},"identifications":{"earthDamage":{"min":1,"raw":1,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-38,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Spitting Zombie","coords":[[-616,54,-1980,8],[-626,82,-1786,7]]},{"name":"Waterlogged Zombie","coords":[-413,4,-2084,4]},{"name":"Infected Goo","coords":[-621,67,-1908,1]},{"name":"Infected Gore","coords":[-627,81,-1786,1]},{"name":"Infected Gunk","coords":[-617,55,-1979,1]},{"name":"Goo Czar","coords":null},{"name":"Gore Czar","coords":null},{"name":"Gunk Czar","coords":null},{"name":"Digested Muck","coords":null},{"name":"Watery Sludge","coords":[[-1748,18,-5552,5],[-1712,10,-5471,6],[-1724,10,-5450,6],[-1763,9,-5478,6],[-1748,15,-5459,6]]},{"name":"Watery Sludge","coords":[[-1779,28,-5571,6],[-1780,22,-5548,8],[-1717,10,-5459,6],[-1714,10,-5482,6],[-1757,10,-5490,6]]},{"name":"Watery Sludge","coords":[-1743,20,-5468,8]},{"name":"Biohazard Amalgamate","coords":null}]},"Active Fireball":{"internalName":"Active Fireball","type":"ingredient","requirements":{"level":4,"skills":["scribing","cooking","alchemism"]},"icon":{"format":"legacy","value":"377:0"},"identifications":{"fireDamage":{"min":2,"raw":2,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":-160,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Charred Zombie","coords":[-543,67,-1620,10]},{"name":"Flame Grilling Swine","coords":[-611,54,-1549,1]}]},"Zombie Brain":{"internalName":"Zombie Brain","type":"ingredient","requirements":{"level":4,"skills":["armouring","tailoring"]},"icon":{"format":"legacy","value":"372:0"},"identifications":{"gatherXpBonus":{"min":1,"raw":1,"max":1}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Defender of the Plains","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]}]},"Bob's Tear":{"internalName":"Bob's Tear","type":"ingredient","requirements":{"level":4,"skills":["jeweling","tailoring","armouring","woodworking","weaponsmithing"]},"icon":{"format":"legacy","value":"370:0"},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":25,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-30000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombie Militia","coords":[-841,67,-1574,40]},{"name":"Cold Fang","coords":[[-116,67,-890,5],[15,70,-824,5],[22,68,-739,5],[-60,67,-699,5],[3,68,-673,5],[193,72,-735,5],[197,80,-1013,5]]},{"name":"Rogue Snowman","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Snow Fang","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Ice","coords":null},{"name":"§Hemorghwood","coords":null},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Dead Ice Cutter","coords":[[-35,72,-729,70],[9,68,-902,70]]},{"name":"Rotten Woodcutter","coords":[-191,67,-912,20]},{"name":"Ice Zombie","coords":null},{"name":"Snowball","coords":null},{"name":"Blixen","coords":[272,35,-637,15]},{"name":"Hunter","coords":[272,35,-637,15]},{"name":"Luna","coords":[272,35,-637,15]},{"name":"Adolfo","coords":[272,35,-637,15]},{"name":"Ulric","coords":[272,35,-637,15]},{"name":"Aaouu","coords":[272,35,-637,15]},{"name":"Raul","coords":[272,35,-637,15]},{"name":"Mousse","coords":[272,35,-637,15]},{"name":"Crazy Wolf Tamer","coords":[273,36,-641,1]}]},"Darkiron Scrap":{"internalName":"Darkiron Scrap","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":3},"lore":"Despite being only an impure scrap of the normally sturdy blackiron, these heavy leggings still have extreme defensive capabilities.","identifications":{"rawDefence":7,"healthRegenRaw":{"min":1,"raw":3,"max":4},"walkSpeed":{"min":-5,"raw":-4,"max":-3}},"base":{"baseHealth":25},"rarity":"legendary"},"Stormstrike":{"internalName":"Stormstrike","type":"weapon","weaponType":"bow","attackSpeed":"fast","averageDps":16,"dropRestriction":"normal","requirements":{"level":3,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"rawAgility":4},"base":{"baseDamage":{"min":5,"raw":5,"max":8}},"rarity":"unique"},"Spyrr":{"internalName":"Spyrr","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":18,"dropRestriction":"normal","requirements":{"level":3,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":3,"rawDexterity":3},"base":{"baseDamage":{"min":6,"raw":6,"max":8}},"rarity":"unique"},"Shin Guards":{"internalName":"Shin Guards","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":3},"powderSlots":1,"identifications":{"walkSpeed":{"min":1,"raw":3,"max":4}},"base":{"baseHealth":9},"rarity":"unique"},"Plain Leather Leggings":{"internalName":"Plain Leather Leggings","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":3},"base":{"baseHealth":7},"rarity":"common"},"Chipped Leather Boots":{"internalName":"Chipped Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":3},"base":{"baseHealth":7},"rarity":"common"},"Elven Moccasins":{"internalName":"Elven Moccasins","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":3},"identifications":{"healthRegen":{"min":2,"raw":8,"max":10}},"base":{"baseHealth":8},"rarity":"unique"},"The Scarecrow's Arm":{"internalName":"The Scarecrow's Arm","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":10,"dropRestriction":"normal","requirements":{"level":3,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"mainAttackDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":3,"raw":3,"max":7}},"rarity":"unique"},"The King's Robe":{"internalName":"The King's Robe","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":3},"powderSlots":1,"identifications":{"xpBonus":{"min":2,"raw":8,"max":10},"lootBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":11},"rarity":"rare"},"Shark Tooth":{"internalName":"Shark Tooth","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":3},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"185","name":"necklace.water1"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"rawMainAttackDamage":1},"rarity":"unique"},"Luxurious Silk":{"internalName":"Luxurious Silk","type":"ingredient","requirements":{"level":3,"skills":["jeweling"]},"icon":{"format":"legacy","value":"339:0"},"identifications":{"rawAgility":{"min":2,"raw":2,"max":3}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-56000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]}]},"Forest Web":{"internalName":"Forest Web","type":"ingredient","requirements":{"level":3,"skills":["tailoring","woodworking","jeweling"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"walkSpeed":{"min":2,"raw":2,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Nesting Spider","coords":[[-247,70,-1593,30],[-247,70,-1593,30],[-143,66,-1501,55],[-143,66,-1501,55],[-222,70,-1465,30],[-153,75,-1730,50],[-91,66,-1624,30],[-158,69,-1512,25]]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]},{"name":"Young Forest Spider","coords":[-256,70,-1600,5]},{"name":"Forest Cave Spider","coords":[-328,49,-1625,10]}]},"Cleaned Saccharum":{"internalName":"Cleaned Saccharum","type":"ingredient","requirements":{"level":3,"skills":["alchemism","scribing"]},"icon":{"format":"legacy","value":"338:0"},"identifications":{"healthRegen":{"min":8,"raw":8,"max":10},"rawHealth":{"min":16,"raw":16,"max":20}},"tier":2,"consumableOnlyIDs":{"duration":-75,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Rat Hair":{"internalName":"Rat Hair","type":"ingredient","requirements":{"level":3,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"287:0"},"identifications":{"lifeSteal":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-21000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Thieving Rat","coords":false}]},"Strong Flesh":{"internalName":"Strong Flesh","type":"ingredient","requirements":{"level":3,"skills":["armouring","tailoring","weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":4},"rawMainAttackDamage":{"min":1,"raw":1,"max":2}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-24000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombie Archer","coords":[[-564,67,-1682,5],[-681,67,-1681,5],[-625,80,-1785,5],[-459,69,-1732,5],[-476,67,-1511,5],[-782,71,-1451,5],[-906,64,-1829,5],[-849,46,-1990,5],[-693,51,-1979,5],[-618,54,-1978,5],[-429,55,-1904,5],[-732,66,-1752,5]]},{"name":"Zombie Assassin","coords":[-441,67,-1747,40]},{"name":"Strong Zombie","coords":[-553,68,-1776,250]},{"name":"Mage Zombie","coords":[320,67,-1579,60]}]},"Aluminium":{"internalName":"Aluminium","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":3},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"healthRegenRaw":1},"rarity":"unique"},"Enzan's Lucky Charm":{"internalName":"Enzan's Lucky Charm","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":3},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"162","name":"bracelet.earth1"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"stealing":1},"rarity":"rare"},"Sargasso":{"internalName":"Sargasso","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":2},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8},"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseHealth":10,"baseWaterDefence":3},"rarity":"rare"},"Stone-Hewn Bow":{"internalName":"Stone-hewn Bow","type":"weapon","weaponType":"bow","attackSpeed":"very_slow","averageDps":11,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":11,"raw":11,"max":15}},"rarity":"common"},"Azar":{"internalName":"Azar","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":2},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"159","name":"bracelet.basicGold"}},"identifications":{"lootBonus":{"min":1,"raw":4,"max":5}},"rarity":"unique"},"Stone-Hewn Dagger":{"internalName":"Stone-hewn Shears","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":12,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":5,"raw":5,"max":7}},"rarity":"common"},"Mitten":{"internalName":"Mitten","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":19,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"260","name":"dagger.earth1"}},"identifications":{"healthRegenRaw":1,"rawHealth":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":6,"raw":6,"max":12}},"rarity":"unique"},"Scarab":{"internalName":"Scarab","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":2},"identifications":{"rawDefence":4},"base":{"baseHealth":6},"rarity":"unique"},"Blank":{"internalName":"Blank","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":2},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"173","name":"necklace.basicGold"}},"identifications":{"healthRegenRaw":{"min":1,"raw":2,"max":3}},"rarity":"unique"},"Voodoo":{"internalName":"Voodoo","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":24,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"spellDamage":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":2,"raw":2,"max":17}},"rarity":"rare"},"Bumblebee":{"internalName":"Bumblebee","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":22,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"393","name":"relik.basicGold"}},"identifications":{"mainAttackDamage":{"min":2,"raw":5,"max":7},"xpBonus":{"min":2,"raw":6,"max":8}},"base":{"baseDamage":{"min":12,"raw":12,"max":18}},"rarity":"unique"},"Paradise":{"internalName":"Paradise","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":11,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7},"lootBonus":{"min":2,"raw":5,"max":7}},"base":{"baseDamage":{"min":5,"raw":5,"max":6}},"rarity":"rare"},"Damasse":{"internalName":"Damasse","type":"armour","armourType":"leggings","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":2},"powderSlots":1,"identifications":{"rawIntelligence":3,"rawHealth":{"min":1,"raw":3,"max":4},"lootBonus":{"min":2,"raw":6,"max":8}},"base":{"baseHealth":8},"rarity":"rare"},"Plain Leather Boots":{"internalName":"Plain Leather Boots","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":2},"base":{"baseHealth":5},"rarity":"common"},"Stone-Hewn Wand":{"internalName":"Stone-hewn Stick","type":"weapon","weaponType":"wand","attackSpeed":"slow","averageDps":7,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":3,"raw":3,"max":6}},"rarity":"common"},"Stone-Hewn Relik":{"internalName":"Stone-hewn Relik","type":"weapon","weaponType":"relik","attackSpeed":"slow","averageDps":16,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":9,"raw":9,"max":13}},"rarity":"common"},"Stone-Hewn Spear":{"internalName":"Stone-hewn Spear","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":8,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":8,"raw":8,"max":11}},"rarity":"common"},"Aloof":{"internalName":"Aloof","type":"weapon","weaponType":"spear","attackSpeed":"fast","averageDps":12,"dropRestriction":"normal","requirements":{"level":2,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawHealth":{"min":2,"raw":6,"max":8},"walkSpeed":{"min":-4,"raw":-3,"max":-2}},"base":{"baseDamage":{"min":2,"raw":2,"max":8}},"rarity":"unique"},"Leather":{"internalName":"Leather","type":"ingredient","requirements":{"level":2,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"334:0"},"identifications":{"rawDefence":{"min":1,"raw":1,"max":1}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Rebel Cow","coords":[-803,67,-1909,30]},{"name":"Durum Cow","coords":[473,43,-2893,7]},{"name":"Armored Rebel Cow","coords":null},{"name":"Armored Rebel Cow","coords":null},{"name":"Rebel Cow","coords":null},{"name":"Rebel Cow","coords":null},{"name":"Rebel Cow","coords":[[923,45,-1616,1],[920,45,-1619,1],[911,45,-1607,1],[946,45,-1617,1],[968,45,-1627,1],[973,45,-1624,1],[1005,44,-1648,1]]},{"name":"Enraged Bull","coords":null},{"name":"Armored Rebel Cow","coords":[975,45,-1628,0]},{"name":"Cow","coords":[-1551,60,-5588,13]},{"name":"Captured Cow","coords":false},{"name":"Captured Cow","coords":false},{"name":"Confused Cow","coords":[-520,38,-5001,0]}]},"Egg":{"internalName":"Egg","type":"ingredient","requirements":{"level":2,"skills":["cooking"]},"icon":{"format":"legacy","value":"344:0"},"identifications":{"rawHealth":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Canyon Condor","coords":[-803,67,-1909,30]},{"name":"Grook","coords":[[503,66,-1582,13],[478,67,-1620,6]]},{"name":"Canyon Rooster","coords":[1221,120,-1371,10]},{"name":"Nohno Wife","coords":[-81,45,-2502,15]}]},"Pink Wool":{"internalName":"Pink Wool","type":"ingredient","requirements":{"level":2,"skills":["tailoring"]},"icon":{"format":"legacy","value":"35:6"},"identifications":{"airDefence":{"min":3,"raw":3,"max":4},"thunderDefence":{"min":3,"raw":3,"max":4},"waterDefence":{"min":3,"raw":3,"max":4}},"tier":1,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-26000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"TestMob","coords":[367,67,-1602,10]},{"name":"Pink Sheep of Greatness","coords":[367,67,-1602,10]}]},"Rarity":{"internalName":"Rarity","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":1},"lore":"Being one of the absolute rarest treasures in the world, it seems to have a mind of its own, only showing itself when a stroke of luck is had.","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"143","name":"ring.basicGem"}},"identifications":{"xpBonus":{"min":2,"raw":7,"max":9},"lootBonus":{"min":4,"raw":12,"max":16}},"rarity":"legendary"},"White Wynnter Sweater":{"internalName":"White Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"SNOW way Craftmas can be bad in this sweater\" knitted onto the front.","base":{"baseHealth":25,"baseAirDefence":3},"rarity":"unique"},"Cerulean Wynnter Sweater":{"internalName":"Cerulean Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"SLOPE to SKI you again next Craftmas\" knitted onto the front.","base":{"baseHealth":25,"baseWaterDefence":3},"rarity":"unique"},"Pink Wynnter Sweater":{"internalName":"Pink Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"Going HAM on Craftmas dinner tonight\" knitted onto the front.","base":{"baseHealth":25,"baseFireDefence":3},"rarity":"unique"},"Depressing Bow":{"internalName":"Depressing Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":1,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"archer"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"common"},"Mama Zomble's Memory":{"internalName":"Mama Zomble's Memory","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"icon":{"format":"legacy","value":"397:2"},"rarity":"common"},"Oak Wood Dagger":{"internalName":"Oak Wood Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":10,"restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":1,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":3,"raw":3,"max":5}},"rarity":"common"},"Yellow Wynnter Sweater":{"internalName":"Yellow Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"YELLOW- How's your Craftmas going\" knitted onto the front.","base":{"baseHealth":25,"baseThunderDefence":3},"rarity":"unique"},"Wynnter Fair 2017 Souvenir":{"internalName":"Wynnter Fair 2017 Souvenir","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":1},"lore":"Thank you for participating in the 2017 Wynnter Fair!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"rarity":"legendary"},"Mask of the Spirits":{"internalName":"Mask of the Spirits","type":"armour","armourType":"helmet","dropRestriction":"never","requirements":{"level":1},"lore":"Not all who roam may find their way home. Others lose themselves in the world... And find a new way forward.","icon":{"format":"skin","value":"27e8490c0f97e59e2c60932725f10235e97b744bdab598702a0b2e7990de304c"},"rarity":"legendary"},"Slicer":{"internalName":"Slicer","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":16,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"256","name":"dagger.basicGold"}},"identifications":{"rawStrength":1,"mainAttackDamage":{"min":1,"raw":3,"max":4}},"base":{"baseDamage":{"min":7,"raw":7,"max":9}},"rarity":"unique"},"Blue Wynnter Sweater":{"internalName":"Blue Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"Don't feel BLUE- It's Craftmas!\" knitted onto the front.","base":{"baseHealth":25,"baseWaterDefence":3},"rarity":"unique"},"Seeker":{"internalName":"Seeker","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"141","name":"ring.basicIron"}},"identifications":{"lootBonus":{"min":2,"raw":6,"max":8},"stealing":1},"rarity":"unique"},"Orange Wynnter Sweater":{"internalName":"Orange Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"ORANGE you glad I showed up for Craftmas\" knitted onto the front.","base":{"baseHealth":25,"baseThunderDefence":3},"rarity":"unique"},"Scarlet Wynnter Sweater":{"internalName":"Scarlet Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"Why be merry? CLAUS I said so\" knitted onto the front.","base":{"baseHealth":25,"baseFireDefence":3},"rarity":"unique"},"Bullseye":{"internalName":"Bullseye","type":"weapon","weaponType":"spear","attackSpeed":"very_slow","averageDps":12,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"461","name":"spear.basicGold"}},"identifications":{"rawDexterity":4},"base":{"baseDamage":{"min":0,"raw":0,"max":30}},"rarity":"rare"},"Secret":{"internalName":"Secret","type":"accessory","accessoryType":"bracelet","dropRestriction":"lootchest","requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"158","name":"bracelet.basicIron"}},"identifications":{"xpBonus":{"min":2,"raw":5,"max":7}},"rarity":"unique"},"Set Dagger":{"internalName":"Set Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"slow","averageDps":1,"dropRestriction":"never","requirements":{"level":1,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"rare"},"Quartzite Wand":{"internalName":"Quartzite Wand","type":"weapon","weaponType":"wand","attackSpeed":"fast","averageDps":8,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"324","name":"wand.basicGold"}},"identifications":{"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":2,"raw":2,"max":4}},"rarity":"unique"},"Indigo Wynnter Sweater":{"internalName":"Indigo Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"GRAUPELING with a second helping of Craftmas feast\" knitted onto the front.","base":{"baseHealth":25,"baseWaterDefence":3},"rarity":"unique"},"Oak Wood Spear":{"internalName":"Oak Wood Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":7,"restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":1,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":3,"raw":3,"max":6}},"rarity":"common"},"Wynnterfest 2016 Souvenir":{"internalName":"Wynnterfest 2016 Souvenir","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":1},"lore":"Thank you for participating in Wynnterfest 2016!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"rarity":"legendary"},"Chipped Leather Cap":{"internalName":"Chipped Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"base":{"baseHealth":3},"rarity":"common"},"Plains Runner":{"internalName":"Plains Runner","type":"armour","armourType":"boots","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","identified":true,"requirements":{"level":1},"dropMeta":{"name":"Ragni","type":"merchant","coordinates":[-881,67,-1575]},"identifications":{"rawAgility":2},"base":{"baseHealth":8},"rarity":"unique"},"Red Wynnter Sweater":{"internalName":"Red Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"I'll never give you the COLD SHOULDER\" knitted onto the front.","base":{"baseHealth":25,"baseFireDefence":3},"rarity":"unique"},"Black Wynnter Sweater":{"internalName":"Black Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"Prepare for a FLURRY of Craftmas spirit\" knitted onto the front.","base":{"baseHealth":25,"baseAirDefence":3},"rarity":"unique"},"Brown Wynnter Sweater":{"internalName":"Brown Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"YULE see me smiling this season\" knitted onto the front.","base":{"baseHealth":25,"baseEarthDefence":3},"rarity":"unique"},"Refined Bow":{"internalName":"Refined Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":14,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"190","name":"bow.basicGold"}},"identifications":{"xpBonus":{"min":1,"raw":4,"max":5}},"base":{"baseDamage":{"min":5,"raw":5,"max":9}},"rarity":"unique"},"Purple Wynnter Sweater":{"internalName":"Purple Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"ICY you looking at my fancy duds\" knitted onto the front.","base":{"baseHealth":25,"baseThunderDefence":3},"rarity":"unique"},"Cracked Oak Bow":{"internalName":"Cracked Oak Bow","type":"weapon","weaponType":"bow","attackSpeed":"normal","averageDps":3,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":1,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"common"},"Cinfras Souvenir T-Shirt":{"internalName":"Cinfras Souvenir T-Shirt","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The shirt has the quote \"I went to the Letvus Airbase in Cinfras and all I got was this lousy T-shirt\" printed on it.","dropMeta":{"name":"Cinfras","type":"merchant","coordinates":[-458,47,-4939]},"base":{"baseHealth":10},"rarity":"common"},"Oak Wood Relik":{"internalName":"Oak Wood Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":12,"restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":1,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":5,"raw":5,"max":7}},"rarity":"common"},"Plain Leather Cap":{"internalName":"Plain Leather Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":1},"base":{"baseHealth":3},"rarity":"common"},"Depressing Spear":{"internalName":"Depressing Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":1,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"common"},"Collector":{"internalName":"Collector","type":"accessory","accessoryType":"necklace","dropRestriction":"lootchest","requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"172","name":"necklace.basicIron"}},"identifications":{"lootBonus":{"min":2,"raw":6,"max":8},"stealing":1},"rarity":"unique"},"Pine Wynnter Sweater":{"internalName":"Pine Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"Let me NICK a few extra cookies for Craftmas\" knitted onto the front.","base":{"baseHealth":25,"baseEarthDefence":3},"rarity":"unique"},"Oak Wood Wand":{"internalName":"Oak Wood Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":6,"restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":1,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":2,"raw":2,"max":4}},"rarity":"common"},"Ein":{"internalName":"Ein","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"142","name":"ring.basicGold"}},"identifications":{"mainAttackDamage":1,"rawMainAttackDamage":1,"spellDamage":1,"rawSpellDamage":1},"base":{"baseHealth":1},"rarity":"unique"},"Beige Wynnter Sweater":{"internalName":"Beige Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"All STOCKINGED up for the season\" knitted onto the front.","base":{"baseHealth":25,"baseAirDefence":3},"rarity":"unique"},"Cracked Oak Spear":{"internalName":"Cracked Oak Spear","type":"weapon","weaponType":"spear","attackSpeed":"normal","averageDps":3,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":1,"classRequirement":"warrior"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"common"},"Contest Wynner Cap":{"internalName":"Contest Wynner Cap","type":"armour","armourType":"helmet","armourColor":"rgb(215,105,105)","armourMaterial":"leather","restrictions":"untradable","dropRestriction":"never","requirements":{"level":1},"lore":"I won!","base":{"baseHealth":5},"rarity":"common"},"Cracked Oak Wand":{"internalName":"Cracked Oak Wand","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":3,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":1,"classRequirement":"mage"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"common"},"Tosach":{"internalName":"Tosach","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","allowCraftsman":true,"requirements":{"level":1},"identifications":{"xpBonus":{"min":1,"raw":2,"max":3}},"base":{"baseHealth":2},"rarity":"unique"},"Awesome Bandanna":{"internalName":"Awesome Bandanna","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":1},"identifications":{"rawStrength":1,"rawDexterity":1,"rawIntelligence":1,"rawDefence":1,"rawAgility":1},"base":{"baseHealth":5},"rarity":"rare"},"Hairy Cap":{"internalName":"Hairy Cap","type":"armour","armourType":"helmet","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"normal","requirements":{"level":1},"powderSlots":1,"identifications":{"rawDexterity":3},"base":{"baseHealth":4},"rarity":"unique"},"Oak Wood Bow":{"internalName":"Oak Wood Bow","type":"weapon","weaponType":"bow","attackSpeed":"slow","averageDps":9,"restrictions":"untradable","dropRestriction":"never","allowCraftsman":true,"requirements":{"level":1,"classRequirement":"archer"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"189","name":"bow.basicWood"}},"base":{"baseDamage":{"min":4,"raw":4,"max":8}},"rarity":"common"},"Green Wynnter Sweater":{"internalName":"Green Wynnter Sweater","type":"armour","armourType":"chestplate","armourColor":"rgb(160,101,64)","armourMaterial":"leather","dropRestriction":"never","requirements":{"level":1},"lore":"The sweater has the quote \"I'm feeling PINE, what about you\" knitted onto the front.","base":{"baseHealth":25,"baseEarthDefence":3},"rarity":"unique"},"Cracked Oak Relik":{"internalName":"Cracked Oak Relik","type":"weapon","weaponType":"relik","attackSpeed":"normal","averageDps":3,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":1,"classRequirement":"shaman"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"392","name":"relik.basicWood"}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"common"},"Cracked Oak Dagger":{"internalName":"Cracked Oak Dagger","type":"weapon","weaponType":"dagger","attackSpeed":"normal","averageDps":3,"restrictions":"untradable","dropRestriction":"never","requirements":{"level":1,"classRequirement":"assassin"},"powderSlots":1,"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":1,"raw":1,"max":2}},"rarity":"common"},"Depressing Shears":{"internalName":"Depressing Shears","type":"weapon","weaponType":"dagger","attackSpeed":"fast","averageDps":1,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"assassin"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"255","name":"dagger.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"common"},"Set Spear":{"internalName":"Set Spear","type":"weapon","weaponType":"spear","attackSpeed":"slow","averageDps":1,"dropRestriction":"never","requirements":{"level":1,"classRequirement":"warrior"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"460","name":"spear.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"rare"},"Depressing Stick":{"internalName":"Depressing Stick","type":"weapon","weaponType":"wand","attackSpeed":"normal","averageDps":1,"dropRestriction":"normal","requirements":{"level":1,"classRequirement":"mage"},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"323","name":"wand.basicWood"}},"base":{"baseDamage":{"min":0,"raw":0,"max":1}},"rarity":"common"},"Wynnter Fair 2016 Souvenir":{"internalName":"Wynnter Fair 2016 Souvenir","type":"accessory","accessoryType":"necklace","restrictions":"untradable","dropRestriction":"never","requirements":{"level":1},"lore":"Thank you for participating in the 2016 Wynnter Fair!","icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"187","name":"necklace.multi1"}},"rarity":"legendary"},"Rare Potato":{"internalName":"Rare Potato","type":"ingredient","requirements":{"level":1,"skills":["cooking"]},"icon":{"format":"legacy","value":"392:0"},"identifications":{"lootBonus":{"min":4,"raw":4,"max":6}},"tier":2,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Potato Imp","coords":[-427,9,-3267,7]}]},"Corrupt Chain":{"internalName":"Therck's Chain","type":"ingredient","requirements":{"level":1,"skills":["woodworking","weaponsmithing","armouring","tailoring"]},"icon":{"format":"legacy","value":"101:0"},"identifications":{"rawMainAttackDamage":{"min":3,"raw":3,"max":4},"rawHealth":{"min":3,"raw":3,"max":4}},"tier":2,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Corrupt Hex","coords":[[-571,67,-1691,22],[-509,59,-1954,12],[-823,64,-1792,12]]},{"name":"Corrupt Hex","coords":[[-571,67,-1691,22],[-509,59,-1954,12],[-823,64,-1792,12]]},{"name":"Corrupt Hex","coords":[-357,63,-1973,78]},{"name":"Corrupt Hex","coords":[[-674,68,-1848,22],[-434,67,-1681,12],[-387,67,-1773,22]]},{"name":"Corrupt Hex","coords":[[-545,70,-1554,33],[-719,67,-1523,33]]},{"name":"Corrupt Hex","coords":[[-545,70,-1554,33],[-719,67,-1523,33]]}]},"Brown Mushroom":{"internalName":"Brown Mushroom","type":"ingredient","requirements":{"level":1,"skills":["alchemism"]},"icon":{"format":"legacy","value":"39:0"},"identifications":{"rawHealth":{"min":3,"raw":3,"max":5}},"tier":0,"consumableOnlyIDs":{"duration":-36,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]},{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]},{"name":"Crazy Lady","coords":false},{"name":"Mushroom","coords":null},{"name":"The Assistant","coords":null},{"name":"Matango","coords":null},{"name":"Drssren","coords":[616,18,-1637,1]},{"name":"Yahya`s Apprentice","coords":[-614,93,-666,1]},{"name":"Strutting Mushroom","coords":false},{"name":"Yahyahe Final Form","coords":null},{"name":"Mushroom","coords":null},{"name":"Mycolite","coords":[1012,110,-4324,21]}]},"Coastal Sand":{"internalName":"Coastal Sand","type":"ingredient","requirements":{"level":1,"skills":["scribing"]},"icon":{"format":"legacy","value":"12:0"},"identifications":{"lootBonus":{"min":2,"raw":2,"max":3}},"tier":0,"consumableOnlyIDs":{"duration":-36,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Crab","coords":null},{"name":"Crab Hiding in Sand","coords":[[-737,35,-2015,7],[-704,34,-2035,7],[-670,35,-2049,7],[-754,35,-2125,20],[-754,35,-2125,20],[-446,35,-2063,10],[-368,35,-2118,20]]}]},"Potato":{"internalName":"Potato","type":"ingredient","requirements":{"level":1,"skills":["cooking"]},"icon":{"format":"legacy","value":"392:0"},"identifications":{"lootBonus":{"min":1,"raw":1,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Ingredient Dummy","coords":null}]},"Rotten Flesh":{"internalName":"Rotten Flesh","type":"ingredient","requirements":{"level":1,"skills":["weaponsmithing","woodworking"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"mainAttackDamage":{"min":2,"raw":2,"max":4}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Weak Zombie","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]},{"name":"Revived Gelibord Farmer","coords":null},{"name":"Zombie","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]},{"name":"Zombie","coords":[-79,65,-1461,30]},{"name":"Zombie","coords":[-59,65,-1635,30]},{"name":"Zombie","coords":[[82,66,-1818,7],[369,67,-1435,15],[377,67,-1457,15],[469,65,-1460,20],[362,82,-1358,20],[119,68,-1465,15],[229,79,-1401,20],[284,72,-1389,20],[-446,67,-1707,20],[-408,68,-1708,15]]},{"name":"Zombie","coords":[62,66,-1806,70]},{"name":"Zombie","coords":[[-4,61,-2030,35],[-280,82,-1757,35],[901,81,-1539,35]]},{"name":"Zombie","coords":[580,78,-1861,20]},{"name":"Zombie Soldier","coords":[-134,66,-1287,8]},{"name":"Zombie Berserker","coords":[-134,66,-1287,12]},{"name":"Roaming Zombie","coords":[[507,62,-1931,4],[309,68,-1830,5],[286,55,-1911,5],[58,56,-1866,5],[160,49,-1974,5],[64,50,-2065,5],[-2,61,-2027,5],[373,50,-1971,5],[406,43,-2023,5],[295,51,-1975,5],[171,48,-2071,2]]},{"name":"Zombie Miner","coords":[-12,50,-1407,4]},{"name":"Confused Zombie","coords":[719,67,-1430,25]},{"name":"Crypt Walker","coords":null},{"name":"Miner Zombie","coords":[106,44,-1787,6]},{"name":"Miner Zombie Patron","coords":[135,11,-1739,5]},{"name":"ERROR","coords":null},{"name":"Miner Zombie","coords":[[52,35,-1727,10],[90,36,-1735,1],[84,40,-1782,12],[146,19,-1729,6],[147,18,-1760,6],[126,17,-1759,12]]},{"name":"Miner Zombie","coords":[[52,36,-1727,10],[109,34,-1735,5],[149,19,-1746,6],[135,12,-1739,0]]},{"name":"Infested Zombie","coords":[382,47,-1335,5]},{"name":"Abnormal Miner","coords":[9,40,-1416,4]},{"name":"Overgrown Zombie","coords":[-438,19,-2878,3]},{"name":"Ground Crawler","coords":null},{"name":"Zombie Fisher","coords":[14,60,-1772,10]},{"name":"Maddened Fisherman","coords":[-1069,23,-2001,10]},{"name":"Drowned Corpse","coords":null},{"name":"null","coords":null},{"name":"Hungry Wendigo","coords":[[-26,68,-910,55],[146,70,-959,65],[212,73,-759,65]]},{"name":"Oni Shaman","coords":null},{"name":"Earth Zombie","coords":null},{"name":"Greedy Zombie","coords":[-739,37,-1984,4]},{"name":"ERROR","coords":null},{"name":"Corruption Victim","coords":false},{"name":"Mine Zombie","coords":false},{"name":"Drenched Zombie","coords":null},{"name":"Ancient Nemract Resident","coords":[169,45,-1915,1]},{"name":"Zombie","coords":[[253,84,-1085,70],[253,84,-1085,70],[426,82,-1345,60],[529,70,-1330,100],[529,70,-1330,100],[529,70,-1330,100],[269,87,-1209,20],[374,82,-1334,30],[88,67,-1316,20]]},{"name":"Frozen Nesaak Citizen","coords":null},{"name":"Yeti Poacher","coords":[-362,33,-513,4]},{"name":"Corrupted Infantry","coords":false},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]},{"name":"Corrupted Watcher","coords":[-769,91,-1005,6]},{"name":"Corrupted Knight","coords":null},{"name":"Defiled Explorer","coords":[[1133,65,-2368,20],[1166,39,-2291,20],[1160,54,-2323,16]]},{"name":"Death Oni","coords":null},{"name":"Miner Chef","coords":[-13,36,-1451,4]},{"name":"Oni Zombie","coords":null},{"name":"Trigger","coords":false},{"name":"Mama Zomble","coords":[341,68,-1707,20]},{"name":"Fallen Soldier","coords":false},{"name":"Mama Zomble","coords":[-146,70,-1571,20]},{"name":"Lion Master","coords":[814,85,-2284,5]},{"name":"Corrupted Miner","coords":[448,81,-1100,8]},{"name":"Yahya`s Apprentice","coords":[-614,93,-666,1]},{"name":"Corrupted Sentinel","coords":[[-111,68,-590,20],[-119,60,-568,20],[-121,51,-540,20],[-135,42,-506,20],[-207,25,-412,15],[-169,67,-694,15],[-197,68,-694,27]]},{"name":"Mama Zomble","coords":[38,67,-745,20]},{"name":"Mama Zomble","coords":[1015,75,-1886,20]},{"name":"Mama Zomble","coords":[-655,67,-780,20]},{"name":"Zombie Warrior","coords":false},{"name":"Soaked Zombie","coords":[-658,70,-726,2]},{"name":"Gnarled Cadaver","coords":[135,70,-1423,25]},{"name":"Sun Effigy","coords":[[240,54,-1866,30],[179,48,-1907,35],[177,46,-1949,25]]},{"name":"Resurrected Monster","coords":null},{"name":"Ice Zombie","coords":null},{"name":"null","coords":null},{"name":"Frozen Nesaak Citizen","coords":null},{"name":"Sickly Hermit","coords":null},{"name":"Underground Zombie","coords":null},{"name":"Zombie Cow","coords":null},{"name":"Dead Merchant","coords":null},{"name":"Mountain Zombie","coords":[-132,30,-301,7]},{"name":"Lion Trainer","coords":[[728,87,-2266,8],[801,76,-2286,5],[740,49,-2297,8],[757,41,-2299,8]]},{"name":"Drenched Zombie","coords":[[-564,37,-1729,2],[-564,37,-1729,5],[-564,36,-1705,2]]},{"name":"null","coords":null},{"name":"Slimed Spider","coords":null},{"name":"Zhight Villager","coords":null},{"name":"null","coords":null},{"name":"Undead Cragsman","coords":[-172,67,-551,1]},{"name":"Potato Imp","coords":[-427,9,-3267,7]},{"name":"Stringy Slime","coords":null},{"name":"Weak Zombie","coords":null},{"name":"Bush Zombie","coords":[[250,43,-2043,5],[376,58,-1950,5],[437,74,-1880,5],[339,68,-1839,5]]},{"name":"Ancient Nemract Resident","coords":[[240,54,-1866,30],[179,48,-1907,35],[177,46,-1949,25]]},{"name":"Roaming Zombie","coords":[[507,62,-1931,4],[309,68,-1830,5],[286,55,-1911,5],[58,56,-1866,5],[160,49,-1974,5],[64,50,-2065,5],[-2,61,-2027,5],[373,50,-1971,5],[406,43,-2023,5],[295,51,-1975,5],[171,48,-2071,2]]},{"name":"Groundshaker","coords":null},{"name":"Dirt Crawler","coords":null},{"name":"Hardpacked Zombie","coords":null}]},"Wool":{"internalName":"Wool","type":"ingredient","requirements":{"level":1,"skills":["tailoring","armouring"]},"icon":{"format":"legacy","value":"35:0"},"identifications":{"airDefence":{"min":1,"raw":1,"max":2},"waterDefence":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"TestMob","coords":[367,67,-1602,10]}]},"Sturdy Flesh":{"internalName":"Sturdy Flesh","type":"ingredient","requirements":{"level":1,"skills":["weaponsmithing","woodworking","armouring","tailoring"]},"icon":{"format":"legacy","value":"367:0"},"identifications":{"rawHealth":{"min":15,"raw":15,"max":25}},"tier":3,"consumableOnlyIDs":{"duration":0,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":-17000,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Weak Zombie","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]},{"name":"Revived Gelibord Farmer","coords":null},{"name":"Zombie","coords":[[-645,70,-1736,50],[-872,52,-1920,60],[-521,64,-1799,210]]},{"name":"Zombie","coords":[-79,65,-1461,30]},{"name":"Zombie","coords":[-59,65,-1635,30]},{"name":"Zombie","coords":[[82,66,-1818,7],[369,67,-1435,15],[377,67,-1457,15],[469,65,-1460,20],[362,82,-1358,20],[119,68,-1465,15],[229,79,-1401,20],[284,72,-1389,20],[-446,67,-1707,20],[-408,68,-1708,15]]},{"name":"Zombie","coords":[62,66,-1806,70]},{"name":"Zombie","coords":[[-4,61,-2030,35],[-280,82,-1757,35],[901,81,-1539,35]]},{"name":"Zombie","coords":[580,78,-1861,20]},{"name":"Zombie Soldier","coords":[-134,66,-1287,8]},{"name":"Zombie Berserker","coords":[-134,66,-1287,12]}]},"Royal Cake Slice":{"internalName":"Royal Cake Slice","type":"ingredient","requirements":{"level":1,"skills":["cooking","alchemism"]},"icon":{"format":"skin","value":"f9136514f342e7c5208a1422506a866158ef84d2b249220139e8bf6032e193"},"identifications":{"walkSpeed":{"min":4,"raw":4,"max":5},"healthRegenRaw":{"min":6,"raw":6,"max":8}},"tier":3,"consumableOnlyIDs":{"duration":-110,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Zombie Militia","coords":[-841,67,-1574,40]}]},"Red Mushroom":{"internalName":"Red Mushroom","type":"ingredient","requirements":{"level":1,"skills":["alchemism"]},"icon":{"format":"legacy","value":"40:0"},"identifications":{"healthRegenRaw":{"min":1,"raw":1,"max":2}},"tier":0,"consumableOnlyIDs":{"duration":-36,"charges":0},"ingredientPositionModifiers":{"left":0,"right":0,"above":0,"under":0,"touching":0,"notTouching":0},"itemOnlyIDs":{"durabilityModifier":0,"strengthRequirement":0,"dexterityRequirement":0,"intelligenceRequirement":0,"defenceRequirement":0,"agilityRequirement":0},"droppedBy":[{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]},{"name":"Wild Mooshroom","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]},{"name":"Rambling Mushroom","coords":false},{"name":"Mushroom","coords":null},{"name":"Spore Shooter","coords":[[-1155,11,-5093,0],[-1155,7,-5108,0]]},{"name":"Super Spore Shooter","coords":false},{"name":"The Assistant","coords":null},{"name":"Matango","coords":null},{"name":"Drssren","coords":[616,18,-1637,1]},{"name":"Yahya`s Apprentice","coords":[-614,93,-666,1]},{"name":"Mycolite","coords":[1012,110,-4324,21]},{"name":"Yahya Apprentice","coords":[[608,59,-1340,20],[863,64,-1381,20],[558,57,-1487,20]]},{"name":"Yahyahe Final Form","coords":null},{"name":"Mushroom","coords":null}]},"Gathering Axe T1":{"internalName":"Gathering Axe 1","type":"tool","toolType":"axe","gatheringSpeed":8,"identified":true,"requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"46","name":"gatheringTool.axe1"}},"rarity":"common"},"Gathering Scythe T1":{"internalName":"Gathering Scythe 1","type":"tool","toolType":"scythe","gatheringSpeed":8,"identified":true,"requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"61","name":"gatheringTool.scythe1"}},"rarity":"common"},"Gathering Pickaxe T1":{"internalName":"Gathering Pickaxe 1","type":"tool","toolType":"pickaxe","gatheringSpeed":8,"identified":true,"requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"51","name":"gatheringTool.pickaxe1"}},"rarity":"common"},"Gathering Rod T1":{"internalName":"Gathering Rod 1","type":"tool","toolType":"rod","gatheringSpeed":8,"identified":true,"requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"56","name":"gatheringTool.rod1"}},"rarity":"common"},"Copper Ingot 3":{"internalName":"Refined Copper Ingot 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"51","name":"profession.ingotCopper"}},"tier":3},"Oak Paper 1":{"internalName":"Refined Oak Paper 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperOak"}},"tier":1},"Gudgeon Oil 2":{"internalName":"Refined Gudgeon Oil 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilGudgeon"}},"tier":2},"Oak Paper 2":{"internalName":"Refined Oak Paper 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperOak"}},"tier":2},"Wheat String 1":{"internalName":"Refined Wheat String 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringWheat"}},"tier":1},"Copper Gem 2":{"internalName":"Refined Copper Gem 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"63","name":"profession.gemCopper"}},"tier":2},"Copper Ingot 2":{"internalName":"Refined Copper Ingot 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"51","name":"profession.ingotCopper"}},"tier":2},"Oak Paper 3":{"internalName":"Refined Oak Paper 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"97","name":"profession.paperOak"}},"tier":3},"Copper Gem 1":{"internalName":"Refined Copper Gem 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"63","name":"profession.gemCopper"}},"tier":1},"Wheat String 3":{"internalName":"Refined Wheat String 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringWheat"}},"tier":3},"Wheat String 2":{"internalName":"Refined Wheat String 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["boots","leggings","bows","wands"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"42","name":"profession.stringWheat"}},"tier":2},"Gudgeon Meat 2":{"internalName":"Refined Gudgeon Meat 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGudgeon"}},"tier":2},"Gudgeon Meat 1":{"internalName":"Refined Gudgeon Meat 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGudgeon"}},"tier":1},"Oak Wood 3":{"internalName":"Refined Oak Wood 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"d83fe49214c6d3664f30e1617aa30be5c15d45b64318a961d93410d2e3b64c86"},"tier":3},"Oak Wood 1":{"internalName":"Refined Oak Wood 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"d83fe49214c6d3664f30e1617aa30be5c15d45b64318a961d93410d2e3b64c86"},"tier":1},"Oak Wood 2":{"internalName":"Refined Oak Wood 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","bows","wands"],"icon":{"format":"skin","value":"d83fe49214c6d3664f30e1617aa30be5c15d45b64318a961d93410d2e3b64c86"},"tier":2},"Wheat Grains 2":{"internalName":"Refined Wheat Grains 2","type":"material","identified":true,"requirements":{"level":1},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainWheat"}},"tier":2},"Gudgeon Oil 1":{"internalName":"Refined Gudgeon Oil 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilGudgeon"}},"tier":1},"Gudgeon Meat 3":{"internalName":"Refined Gudgeon Meat 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"92","name":"profession.meatGudgeon"}},"tier":3},"Gudgeon Oil 3":{"internalName":"Refined Gudgeon Oil 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["scrolls","rings","bracelets","necklaces","potions"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"87","name":"profession.oilGudgeon"}},"tier":3},"Copper Gem 3":{"internalName":"Refined Copper Gem 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["rings","bracelets","necklaces"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"63","name":"profession.gemCopper"}},"tier":3},"Copper Ingot 1":{"internalName":"Refined Copper Ingot 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["spears","daggers","boots","leggings","helmets","chestplates"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"51","name":"profession.ingotCopper"}},"tier":1},"Wheat Grains 1":{"internalName":"Refined Wheat Grains 1","type":"material","identified":true,"requirements":{"level":1},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainWheat"}},"tier":1},"Wheat Grains 3":{"internalName":"Refined Wheat Grains 3","type":"material","identified":true,"requirements":{"level":1},"craftable":["potions","food"],"icon":{"format":"attribute","value":{"id":"minecraft:paper","customModelData":"46","name":"profession.grainWheat"}},"tier":3},"Hidden":{"internalName":"Hidden","type":"accessory","accessoryType":"ring","dropRestriction":"lootchest","requirements":{"level":1},"icon":{"format":"attribute","value":{"id":"minecraft:iron_horse_armor","customModelData":"145","name":"ring.basicWedding"}},"identifications":{"xpBonus":{"min":1,"raw":2,"max":3}},"rarity":"unique"}} \ No newline at end of file diff --git a/src/activities/guild.ts b/src/activities/guild.ts new file mode 100644 index 0000000..fd667a5 --- /dev/null +++ b/src/activities/guild.ts @@ -0,0 +1,95 @@ +import { container, T_PG } from "#/di"; +import { WapiV3GuildOverview } from "#/lib/types"; +import { WApi } from "#/lib/wapi"; +import { type } from "arktype"; +import {parseDate} from "chrono-node"; + +export async function update_all_guilds() { + const api = new WApi() + const ans = await api.get('/v3/guild/list/guild') + if(ans.status !== 200){ + throw new Error('Failed to get guild list from wapi') + } + const parsed = type({ + "[string]": { + uuid: "string", + prefix: "string", + } + }).assert(ans.data) + + const db = container.get(T_PG) + await db.begin(async (sql) => { + for(const [guild_name, guild] of Object.entries(parsed)){ + await sql`insert into wynn_guild_info + (uid, name, prefix) + values + (${guild.uuid}, ${guild_name}, ${guild.prefix}) + on conflict (uid) do update set + name = EXCLUDED.name, + prefix = EXCLUDED.prefix + ` + } + }) +} + +export async function update_guild({ + guild_name +}:{ + guild_name: string + }) { + const api = new WApi() + + const ans = await api.get(`/v3/guild/${guild_name}`) + if(ans.status !== 200){ + throw new Error('Failed to get guild into from wapi') + } + const parsed = WapiV3GuildOverview.assert(ans.data) + + const db = container.get(T_PG) + + await db.begin(async (sql) => { + await sql`insert into wynn_guild_info + (uid, name, prefix, level, xp_percent, territories, wars, created) + values + (${parsed.uuid}, ${parsed.name}, ${parsed.prefix}, ${parsed.level}, ${parsed.xpPercent}, ${parsed.territories}, ${parsed.wars}, ${parseDate(parsed.created)}) + on conflict (uid) do update set + name = EXCLUDED.name, + prefix = EXCLUDED.prefix, + level = EXCLUDED.level, + xp_percent = EXCLUDED.xp_percent, + territories = EXCLUDED.territories, + wars = EXCLUDED.wars, + created = EXCLUDED.created + ` + const {total, ...rest} = parsed.members + + for(const [rank_name, rank] of Object.entries(rest)){ + for(const [userName, member] of Object.entries(rank)) { + await sql`insert into wynn_guild_members + (guild_id, member_id, rank, joined_at, contributed) values + (${parsed.uuid}, ${member.uuid}, ${rank_name}, ${parseDate(member.joined)}, ${member.contributed}) + on conflict (guild_id, member_id) do update set + rank = EXCLUDED.rank, + joined_at = EXCLUDED.joined_at, + contributed = EXCLUDED.contributed + ` + + await sql`insert into minecraft_user + (uid, name, server) values (${member.uuid}, ${userName}, ${member.server}) + on conflict (uid) do update set + name = EXCLUDED.name, + server = EXCLUDED.server + ` + } + } + for (const [season, seasonData] of Object.entries(parsed.seasonRanks)) { + await sql`insert into wynn_guild_season_results + (guild_id, season, rating, territories) values + (${parsed.uuid}, ${season}, ${seasonData.rating}, ${seasonData.finalTerritories}) + on conflict (guild_id, season) do update set + rating = EXCLUDED.rating, + territories = EXCLUDED.territories + ` + } + }) +} diff --git a/src/activities/index.ts b/src/activities/index.ts new file mode 100644 index 0000000..dc76e0c --- /dev/null +++ b/src/activities/index.ts @@ -0,0 +1,7 @@ +/** + * @file Automatically generated by barrelsby. + */ + +export * from "./database"; +export * from "./guild"; +export * from "./players"; diff --git a/src/activities/players.ts b/src/activities/players.ts new file mode 100644 index 0000000..90d9427 --- /dev/null +++ b/src/activities/players.ts @@ -0,0 +1,119 @@ +import { container, T_PG } from "#/di" +import { WApi } from "#/lib/wapi" +import { log } from "@temporalio/activity" +import { type } from "arktype" +import axios from "axios" + +const playerSchemaFail = type({ + code: "string", + message: "string", + data: type({ + player: { + meta: { + cached_at: "number" + }, + username: "string", + id: "string", + raw_id: "string", + avatar: "string", + skin_texture: "string", + properties: [{ + name: "string", + value: "string", + signature: "string" + }], + name_history: "unknown[]" + } + }), + success: "false" +}) +const playerSchemaSuccess = type({ + code: "string", + message: "string", + data: type({ + player: { + meta: { + cached_at: "number" + }, + username: "string", + id: "string", + raw_id: "string", + avatar: "string", + skin_texture: "string", + properties: [{ + name: "string", + value: "string", + signature: "string" + }], + name_history: "unknown[]" + } + }), + success: "true" +}) + +const playerSchema = playerSchemaFail.or(playerSchemaSuccess) + + +export const scrape_online_players = async()=>{ + + const api = new WApi() + const raw = await api.get('/v3/player') + const onlineList = type({ + total: "number", + players: { + "[string]": "string | null", + } + }).assert(raw.data) + + + const sql = container.get(T_PG) + + for(const [playerName, server] of Object.entries(onlineList.players)){ + // we do this optimistically without a tx, because temporal will probably handle + // the race, and the worst case is we do extra requests. + const ans = await sql`select uid from minecraft_user where name = ${playerName} limit 1` + if(ans.length === 0){ + // the user doesn't exist, so we need to grab their uuid + try { + const resp = await axios.get(`https://playerdb.co/api/player/minecraft/${playerName}`, { + headers: { + "User-Agent": "lil-robot-guy (a@tuxpa.in)", + } + }) + const parsedPlayer = playerSchema.assert(resp.data) + if(!parsedPlayer.success){ + log.warn(`failed to get uuid for ${playerName}`, { + "payload": parsedPlayer, + }) + continue + } + const uuid = parsedPlayer.data.player.id + // insert the user. + await sql`insert into minecraft_user (name, uid, server) values (${playerName}, ${uuid},${server}) + on conflict (uid) do update set + name = EXCLUDED.name, + server = EXCLUDED.server +` + log.info(`inserted ${playerName} with uuid ${uuid} on ${server}`) + }catch(e) { + log.warn(`failed to get uuid for ${playerName}`, { + "err": e, + }) + continue + } + } + } + await sql.begin(async (sql)=>{ + await sql`update minecraft_user set server = null` + for(const [playerName, server] of Object.entries(onlineList.players)){ + try { + await sql`update minecraft_user set server = ${server} where name = ${playerName}` + }catch(e) { + log.warn(`failed to update server for ${playerName}`, { + "err": e, + }) + continue + } + } + }) +} diff --git a/src/bot/common/guild.ts b/src/bot/common/guild.ts new file mode 100644 index 0000000..f75f309 --- /dev/null +++ b/src/bot/common/guild.ts @@ -0,0 +1,90 @@ +import { Sql } from "postgres"; +import { CreateMessageOptions, Embed, InteractionCallbackOptions } from "discordeno" +import {type} from "arktype" +import { TabWriter } from "#/lib/tabwriter" +import * as md from 'ts-markdown-builder'; + + +export const formGuildOnlineMessage = async (guild_id: string, sql:Sql): Promise => { + const result = await sql`select + name, + rank, + contributed, + minecraft_user.server as server + from wynn_guild_members inner join minecraft_user + on minecraft_user.uid = wynn_guild_members.member_id + where minecraft_user.server is not null + and wynn_guild_members.guild_id = ${guild_id} + ` + const members = type({ + name: "string", + rank: "string", + contributed: "string", + server: "string", + }).array().assert(result) + + if(members.length == 0) { + return { + content: "nobody is online :(", + } + } + + members.sort((a, b) => Number(b.contributed) - Number(a.contributed)) + + // group members by server + const membersByServer= members.reduce((acc, member) => { + if(acc[member.server] == undefined) { + acc[member.server] = [] + } + acc[member.server].push(member) + return acc + }, {} as Record) + + + const output = Object.entries(membersByServer).map(([server, mx]) => { + return `**[${server}]** (${mx.length}): ${mx.map(m => m.name).join(", ")}` + }).join(", ") + + + return { + content: `**total**: ${members.length} \n` + output, + } +} + +export const formGuildLeaderboardMessage = async (guild_id: string, sql:Sql): Promise => { + const result = await sql`select + name, + rank, + contributed + from wynn_guild_members inner join minecraft_user + on minecraft_user.uid = wynn_guild_members.member_id + where wynn_guild_members.guild_id = ${guild_id} + ` + const members = type({ + name: "string", + rank: "string", + contributed: "string", + }).array().assert(result) + + const tw = new TabWriter() + members.sort((a, b) => Number(b.contributed) - Number(a.contributed)) + let idx = 1 + for (const member of members.slice(0,10)) { + tw.add([ + `${idx}.`, + member.rank, + member.name, + Number(member.contributed).toLocaleString(), + ]) + idx = idx + 1 + } + + const built = tw.build() + const output = [ + md.heading("Guild Exp:"), + md.codeBlock(built), + ].join("\n\n") + return { + content: output, + } +} diff --git a/src/bot/index.ts b/src/bot/index.ts new file mode 100644 index 0000000..70cc4d2 --- /dev/null +++ b/src/bot/index.ts @@ -0,0 +1,47 @@ +import { config } from "#/config"; + +import {createBot, Intents} from "discordeno" + +const intents = [ + Intents.GuildModeration , + Intents.GuildWebhooks , + Intents.GuildExpressions , + Intents.GuildScheduledEvents , + Intents.GuildMessagePolls , + Intents.GuildIntegrations , + Intents.GuildInvites , + Intents.GuildMessageReactions , + Intents.GuildPresences , + Intents.DirectMessages , + Intents.DirectMessageReactions , + Intents.GuildMembers , + Intents.Guilds , + Intents.GuildInvites , + Intents.GuildMessages, +] + +export const bot = createBot({ + intents: intents.reduce((acc, curr) => acc | curr, Intents.Guilds), + token: config.DISCORD_TOKEN, + desiredProperties: { + interaction: { + id: true, + data: true, + type: true, + token: true, + message: true, + channelId: true, + channel: true, + guildId: true, + guild: true, + user: true, + member: true, + }, + message: { + id: true, + member: true, + guildId: true, + }, + } +}) + diff --git a/src/botevent/index.ts b/src/botevent/index.ts new file mode 100644 index 0000000..17b7cf0 --- /dev/null +++ b/src/botevent/index.ts @@ -0,0 +1,77 @@ +import {bot} from "#/bot" +import { ActivityTypes, ApplicationCommandOptionTypes, InteractionTypes } from "discordeno" +import { InteractionHandler, MuxHandler, SlashHandler } from "./types" +import { root } from "./slash_commands" +import { uuid4 } from "@temporalio/workflow" + + +export const slashHandler: InteractionHandler = async (interaction) => { + if(!interaction.data) { + return + } + if(!interaction.data.name) { + return + } + const commandPath: string[] = [interaction.data.name] + if(interaction.data.options) { + for(const option of interaction.data.options) { + if(option.type === ApplicationCommandOptionTypes.SubCommand) { + commandPath.push(option.name) + } + } + } + + let rootHandler: SlashHandler = root + + let cur: SlashHandler | MuxHandler = rootHandler + for(let i = 0; i < commandPath.length; i++) { + const handlerName = commandPath[i] + if(typeof cur === 'function') { + return interaction.respond(`oh no a bug. router: got function instead of next handler`) + } + let next: SlashHandler | MuxHandler | undefined = cur[handlerName] + if(!cur) { + return interaction.respond(`command not implemented at ${handlerName}`, {isPrivate: true}) + } + cur = next + } + if(typeof cur === 'function') { + // yay, we found command with handler, run the command + try { + await cur(interaction) + return + }catch(e) { + const errId = uuid4() + console.error("invokation exception",errId, commandPath, e) + return interaction.respond(`invokation exception: ${errId}`, {isPrivate: true}) + } + } + // ok now we need to go down the handler tree. +} + +export const events = { + interactionCreate: async (interaction) => { + if(interaction.acknowledged) { + return + } + if(interaction.type !== InteractionTypes.ApplicationCommand) { + return + } + await slashHandler(interaction) + return + }, + ready: async ({shardId}) => { + await bot.gateway.editShardStatus(shardId, { + status: 'online', + activities: [ + { + name: 'im frog', + type: ActivityTypes.Playing, + timestamps: { + start: Date.now(), + }, + }, + ], + }) + } +} as typeof bot.events diff --git a/src/botevent/slash_commands.ts b/src/botevent/slash_commands.ts new file mode 100644 index 0000000..6bc9e3b --- /dev/null +++ b/src/botevent/slash_commands.ts @@ -0,0 +1,39 @@ +import { formGuildLeaderboardMessage, formGuildOnlineMessage } from "#/bot/common/guild" +import { WYNN_GUILD_ID } from "#/constants" +import { container, T_PG } from "#/di" +import { SlashHandler } from "./types" + +export const root: SlashHandler = { + guild: { + info: async (interaction) => { + interaction.respond("TODO: guild info") + }, + online: async (interaction) => { + const db = container.get(T_PG) + const msg = await formGuildOnlineMessage( + WYNN_GUILD_ID, + db, + ) + await interaction.respond(msg, { + withResponse: true, + }) + }, + leaderboard: async (interaction) => { + const db = container.get(T_PG) + const leaderboard = await formGuildLeaderboardMessage( + WYNN_GUILD_ID, + db, + ) + await interaction.respond(leaderboard, { + withResponse: true, + }) + }, + }, + admin: { + set_wynn_guild: async (interaction) => { + const db = container.get(T_PG) + }, + } +} + + diff --git a/src/botevent/types.ts b/src/botevent/types.ts new file mode 100644 index 0000000..e6ae460 --- /dev/null +++ b/src/botevent/types.ts @@ -0,0 +1,11 @@ +import {bot} from "#/bot" + +export type BotEventsType = typeof bot.events +export type InteractionHandler = NonNullable +export type InteractionType = Parameters[0] + +export type MuxHandler = (interaction: InteractionType, params?: T) => Promise + +export interface SlashHandler { + [key: string]: MuxHandler | SlashHandler +} diff --git a/src/cmd/bot.ts b/src/cmd/bot.ts new file mode 100644 index 0000000..676d400 --- /dev/null +++ b/src/cmd/bot.ts @@ -0,0 +1,28 @@ +import { Command } from 'clipanion'; + +import * as BotCommands from "#/slashcommands"; + +// di +import "#/services/pg" +import { DISCORD_GUILD_ID } from '#/constants'; +import { bot } from '#/bot'; +import { events } from '#/botevent'; + + + +export class BotCommand extends Command { + static paths = [['bot']]; + async execute() { + bot.events = events + console.log('registring slash commands'); + await bot.rest.upsertGuildApplicationCommands(DISCORD_GUILD_ID, Object.values(BotCommands)) + console.log('connecting bot to gateway'); + await bot.start(); + console.log('bot connected'); + } +} + + + + + diff --git a/src/cmd/worker.ts b/src/cmd/worker.ts new file mode 100644 index 0000000..e0f134a --- /dev/null +++ b/src/cmd/worker.ts @@ -0,0 +1,133 @@ +import { Command } from 'clipanion'; + +import { container, T_PG } from '#/di'; +import { runMigrations } from '#/services/pg/migrations'; + +// di +import "#/services/pg" +import "#/services/temporal" + +import { NativeConnection, Worker } from '@temporalio/worker'; +import { config } from '#/config'; +import * as activities from '../activities'; +import path from 'path'; +import { Client, ScheduleNotFoundError, ScheduleOptions, ScheduleOverlapPolicy } from '@temporalio/client'; +import { workflowSyncAllGuilds, workflowSyncGuilds, workflowSyncOnline } from '#/workflows'; + + + +const schedules: ScheduleOptions[] = [ + { + scheduleId: "update-guild-players", + action: { + type: 'startWorkflow', + workflowType: workflowSyncGuilds, + taskQueue: 'wynn-worker', + }, + policies: { + overlap: ScheduleOverlapPolicy.SKIP, + }, + spec: { + intervals: [{ + every: '15 minutes', + }] + }, + }, + { + scheduleId: "update-all-guilds", + action: { + type: 'startWorkflow', + workflowType: workflowSyncAllGuilds, + taskQueue: 'wynn-worker', + }, + policies: { + overlap: ScheduleOverlapPolicy.SKIP, + }, + spec: { + intervals: [{ + every: '1 hour', + }] + }, + }, + { + scheduleId: "update-online-players", + action: { + type: 'startWorkflow', + workflowType: workflowSyncOnline, + taskQueue: 'wynn-worker', + }, + policies: { + overlap: ScheduleOverlapPolicy.SKIP, + }, + spec: { + intervals: [{ + every: '31 seconds', + }] + }, + }, +] + +const addSchedules = async (c: Client) => { + for(const o of schedules) { + const handle = c.schedule.getHandle(o.scheduleId) + try { + const desc = await handle.describe(); + console.log(desc) + + }catch(e: any){ + if(e instanceof ScheduleNotFoundError) { + await c.schedule.create(o) + }else { + throw e; + } + } + } +} + + +export class WorkerCommand extends Command { + static paths = [['worker']]; + async execute() { + const pg = container.get(T_PG); + await runMigrations(pg); + + const client = await container.getAsync(Client); + // schedules + await addSchedules(client); + + const connection = await NativeConnection.connect({ + address: config.TEMPORAL_HOSTPORT, + }) + const worker = await Worker.create({ + connection, + namespace: config.TEMPORAL_NAMESPACE, + workflowsPath: require.resolve('../workflows'), + bundlerOptions: { + webpackConfigHook: (config)=>{ + if(!config.resolve) config.resolve = {}; + if(!config.resolve.alias) config.resolve.alias = {}; + config.resolve!.alias = { + "#":path.resolve(process.cwd(),'src/'), + ...config.resolve!.alias, + } + return config; + }}, + taskQueue: 'wynn-worker', + stickyQueueScheduleToStartTimeout: 5 * 1000, + activities + }); + await worker.run(); + + + + + console.log("worked.run exited"); + await pg.end(); + await connection.close(); + } +} + + + + + diff --git a/src/cmd/wynn.ts b/src/cmd/wynn.ts new file mode 100644 index 0000000..c9c8e2e --- /dev/null +++ b/src/cmd/wynn.ts @@ -0,0 +1,20 @@ +import { Command } from 'clipanion'; + +import { container, T_PG } from '#/di'; +import { runMigrations } from '#/services/pg/migrations'; + +// di +import "#/services/pg" + + +export const WynnCommands = [ + class extends Command { + static paths = [['wynn', 'refetch']]; + + async execute() { + const pg = container.get(T_PG); + await runMigrations(pg); + await pg.end() + } + } +] diff --git a/src/config/index.ts b/src/config/index.ts new file mode 100644 index 0000000..cce6914 --- /dev/null +++ b/src/config/index.ts @@ -0,0 +1,21 @@ +import { z } from 'zod'; +import { parseEnv} from 'znv'; +import {config as dotenvConfig} from 'dotenv'; +dotenvConfig(); + +const schemaConfig = { + DISCORD_TOKEN: z.string(), + + TEMPORAL_HOSTPORT: z.string().default('localhost:7233'), + TEMPORAL_NAMESPACE: z.string().default('default'), + + PG_URL: z.string().optional(), + PG_USER: z.string().optional(), + PG_HOST: z.string().optional(), + PG_PASSWORD: z.string().optional(), + PG_DATABASE: z.string().optional(), + PG_PORT: z.number().int().optional(), +}; + + +export const config = parseEnv(process.env, schemaConfig) diff --git a/src/constants/index.ts b/src/constants/index.ts new file mode 100644 index 0000000..d8ea932 --- /dev/null +++ b/src/constants/index.ts @@ -0,0 +1,3 @@ +export const DISCORD_GUILD_ID = "1340213134949875835"; +export const WYNN_GUILD_NAME = "less than three" +export const WYNN_GUILD_ID = "2b717c60-ae61-4073-9d4f-c9c4583afed5"; diff --git a/src/di/index.ts b/src/di/index.ts new file mode 100644 index 0000000..375441b --- /dev/null +++ b/src/di/index.ts @@ -0,0 +1,6 @@ +import { Container, InjectionToken } from "@needle-di/core"; +import { Bot } from "discordeno"; +import { Sql } from "postgres"; + +export const container = new Container(); +export const T_PG = new InjectionToken("T_PG") diff --git a/src/lib/tabwriter.ts b/src/lib/tabwriter.ts new file mode 100644 index 0000000..11e2747 --- /dev/null +++ b/src/lib/tabwriter.ts @@ -0,0 +1,40 @@ + + +export class TabWriter { + + columns: string[][]; + + constructor( + private readonly spacing: number = 2 + ) { + this.columns = [] + } + + add(row: string[]) { + if(this.columns.length == 0) { + this.columns = new Array(row.length).fill(0).map(() => []); + } + if(row.length != this.columns.length) { + throw new Error(`Row length ${row.length} does not match columns length ${this.columns.length}`); + } + for(let i = 0; i < row.length; i++) { + this.columns[i].push(row[i]); + } + } + + build() { + let out = "" + if(this.columns.length == 0) { + return ""; + } + const columnWidths = this.columns.map(col => col.reduce((a, b) => Math.max(a, b.length+this.spacing), 0)); + console.log(columnWidths) + for(let i = 0; i < this.columns[0].length; i++) { + for(let j = 0; j < this.columns.length; j++) { + out+= this.columns[j][i].padEnd(columnWidths[j]); + } + out+= "\n"; + } + return out; + } +} diff --git a/src/lib/types.ts b/src/lib/types.ts new file mode 100644 index 0000000..9746288 --- /dev/null +++ b/src/lib/types.ts @@ -0,0 +1,272 @@ +import { type } from "arktype" + +export const WynnGuildOverviewMember = type({ + uuid: "string", + online: "boolean", + server: "null | string", + contributed: "number", + contributionRank: "number", + joined: "string" +}) + +const WapiV3GuildMembers = type({ + "[string]": WynnGuildOverviewMember +}) + +export const WapiV3GuildOverview = type({ + uuid: "string", + name: "string", + prefix: "string", + level: "number", + xpPercent: "number", + territories: "number", + wars: "number", + created: "string", + members: { + total: "number", + owner: WapiV3GuildMembers, + chief: WapiV3GuildMembers, + strategist: WapiV3GuildMembers, + captain: WapiV3GuildMembers, + recruiter: WapiV3GuildMembers, + recruit: WapiV3GuildMembers, + }, + online: "number", + banner: { + base: "string", + tier: "number", + structure: "string", + layers: type({ colour: "string", pattern: "string" }).array(), + }, + seasonRanks: { + "[string]": { + rating: "number", + finalTerritories: "number" + } + } +}) + +const WynnItemRarity = type.enumerated("common", "fabled", "legendary", "mythic", "rare", "set", "unique") + +const WynnSkills = type.enumerated( + "alchemism", + "armouring", + "cooking", + "jeweling", + "scribing", + "tailoring", + "weaponsmithing", + "woodworking", +) + +const WynnDropMeta = type("object") + +const WynnDropRestriction = type.enumerated("normal", "never", "dungeon", "lootchest") + +const WynnItemRestrictions = type.enumerated("untradable", "quest item") + +const WynnEquipRequirements = type({ + level: "number", + "classRequirement?": "string", + "intelligence?": "number", + "strength?": "number", + "dexterity?": "number", + "defence?": "number", + "agility?": "number", + "skills?": WynnSkills.array(), +}) + +const WynnBaseStats = type({ + "[string]": type("number").or({ + min: "number", + raw: "number", + max: "number", + }) +}) + + +const WynnIdentifications = type({ + "[string]": type("number").or({ + min: "number", + raw: "number", + max: "number", + }) +}) + +const WynnItemIcon = type({ + format: "string", + value: "unknown" +}) + +export const WapiV3ItemTool = type({ + internalName: "string", + type: '"tool"', + toolType: type.enumerated("axe", "pickaxe", "rod", "scythe"), + "identified?": "boolean", + gatheringSpeed: "number", + requirements: { + level: "number", + }, + icon: WynnItemIcon, + rarity: WynnItemRarity +}) + +export const WapiV3ItemTome = type({ + internalName: "string", + tomeType: type.enumerated( + "guild_tome", + "marathon_tome", + "mysticism_tome", + "weapon_tome", + "armour_tome", + "expertise_tome", + "lootrun_tome", + ), + raidReward: "boolean", + type: '"tome"', + "restrictions?": WynnItemRestrictions, + "dropMeta?": WynnDropMeta, + dropRestriction: WynnDropRestriction, + requirements: WynnEquipRequirements, + "lore?": "string", + icon: WynnItemIcon, + "base?": WynnBaseStats, + rarity: WynnItemRarity +}) + +export const WapiV3ItemCharm = type({ + internalName: "string", + type: '"charm"', + "restrictions?": WynnItemRestrictions, + "dropMeta?": WynnDropMeta, + dropRestriction: WynnDropRestriction, + requirements: WynnEquipRequirements, + "lore?": "string", + icon: WynnItemIcon, + base: WynnBaseStats, + rarity: WynnItemRarity +}) + +export const WapiV3ItemAccessory = type({ + internalName: "string", + type: '"accessory"', + "identified?": "boolean", + accessoryType: type.enumerated("ring", "necklace", "bracelet"), + "majorIds?": { + "[string]": "string" + }, + "restrictions?": WynnItemRestrictions, + "dropMeta?": WynnDropMeta, + dropRestriction: WynnDropRestriction, + requirements: WynnEquipRequirements, + "lore?": "string", + icon: WynnItemIcon, + "identifications?": WynnIdentifications, + "base?": WynnBaseStats, + rarity: WynnItemRarity +}) + +export const WapiV3ItemIngredient = type({ + internalName: "string", + type: '"ingredient"', + requirements: { + level: "number", + skills: WynnSkills.array(), + }, + icon: WynnItemIcon, + "identifications?": WynnIdentifications, + tier: "number", + consumableOnlyIDs: { + "[string]": "number" + }, + ingredientPositionModifiers: { + "[string]": "number" + }, + itemOnlyIDs: { + "[string]": "number" + }, + "droppedBy?": type({ + name: "string", + coords: type("boolean | null") + .or(type("number[] == 4")) + .or(type("number[] == 4").array()) + }).array() +}) + +export const WapiV3ItemMaterial = type({ + internalName: "string", + type: '"material"', + identified: "boolean", + requirements: { + level: "number", + }, + craftable: type.enumerated( + "potions", "food", "scrolls", + "helmets", "chestplates", "rings", "bracelets", + "necklaces", "boots", "leggings", "bows", "wands", "spears", + "daggers", "chestplates", "helmets" + ).array(), + icon: WynnItemIcon, + tier: "number" +}) + +export const WapiV3ItemWeapon = type({ + internalName: "string", + type: '"weapon"', + "identified?": "boolean", + "allowCraftsman?": "boolean", + weaponType: type.enumerated("bow", "relik", "wand", "dagger", "spear"), + attackSpeed: type.enumerated( + "super_slow", "very_slow", "slow", "normal", "fast", "very_fast", "super_fast" + ), + "powderSlots?": "number", + "averageDps?": "number", + "restrictions?": WynnItemRestrictions, + "dropMeta?": WynnDropMeta, + "dropRestriction?": WynnDropRestriction, + requirements: WynnEquipRequirements, + "majorIds?": { + "[string]": "string" + }, + "lore?": "string", + icon: WynnItemIcon, + "identifications?": WynnIdentifications, + "base?": WynnBaseStats, + rarity: WynnItemRarity +}) + +export const WapiV3ItemArmour = type({ + internalName: "string", + type: '"armour"', + armourType: "string", + "armourMaterial?": "string", + "armourColor?": "string", + "identified?": "boolean", + "allowCraftsman?": "boolean", + "restrictions?": WynnItemRestrictions, + dropRestriction: WynnDropRestriction, + "dropMeta?": WynnDropMeta, + "icon?": WynnItemIcon, + requirements: WynnEquipRequirements, + "majorIds?": { + "[string]": "string" + }, + "powderSlots?": "number", + "lore?": "string", + "identifications?": WynnIdentifications, + "base?": WynnBaseStats, + rarity: WynnItemRarity +}) + +export const WApiV3Item = WapiV3ItemMaterial +.or(WapiV3ItemWeapon) +.or(WapiV3ItemArmour) +.or(WapiV3ItemIngredient) +.or(WapiV3ItemAccessory) +.or(WapiV3ItemCharm) +.or(WapiV3ItemTome) +.or(WapiV3ItemTool) + +export const WApiV3ItemDatabase = type({ + "[string]": WApiV3Item +}) diff --git a/src/lib/types.zod.ts b/src/lib/types.zod.ts new file mode 100644 index 0000000..6f8fbdd --- /dev/null +++ b/src/lib/types.zod.ts @@ -0,0 +1,299 @@ +import { z } from 'zod' + +export const WynnGuildOverviewMember = z.object({ + uuid: z.string(), + online: z.boolean(), + server: z.null(), + contributed: z.number(), + contributionRank: z.number(), + joined: z.string() +}) + + +const WapiV3GuildMembers = z.record(z.string(), WynnGuildOverviewMember) + +export const WapiV3GuildOverview = z.object({ + uuid: z.string(), + name: z.string(), + prefix: z.string(), + level: z.number(), + xpPercent: z.number(), + territories: z.number(), + wars: z.number(), + created: z.string(), + members: z.object({ + total: z.number(), + owner: WapiV3GuildMembers, + chief: WapiV3GuildMembers, + strategist: WapiV3GuildMembers, + captain: WapiV3GuildMembers, + recruiter: WapiV3GuildMembers, + recruit: WapiV3GuildMembers, + }), + online: z.number(), + banner: z.object({ + base: z.string(), + tier: z.number(), + structure: z.string(), + layers: z.array(z.object({ colour: z.string(), pattern: z.string() })) + }), + seasonRanks: z.record(z.string(),z.object({ rating: z.number(), finalTerritories: z.number() })) +}) + + + +const WynnItemRarity = z.enum([ + "common","fabled","legendary","mythic","rare","set","unique", +]) +const WynnDropMeta = z.any() +const WynnDropRestriction = z.enum(["normal","never","dungeon", "lootchest"]) + +const WynnItemRestrictions = z.enum([ + "untradable", "quest item", +]) + +const WynnEquipRequirements = z.object({ + level: z.number(), + classRequirement: z.string().optional(), + intelligence: z.number().optional(), + strength: z.number().optional(), + dexterity: z.number().optional(), + defence: z.number().optional(), + agility: z.number().optional(), +}) + +const WynnBaseStats = z.record(z.string(),z.union([ + z.number(), + z.object({ + min: z.number(), + raw: z.number(), + max: z.number(), + }) +])) + +const WynnIdentifications = z.record(z.string(), z.union([ + z.number(), + z.object({ + min: z.number(), + raw: z.number(), + max: z.number(), + }) +])) + +const WynnItemIcon = z.object({ + format: z.string(), + value: z.any(), +}) + +/* + "Gathering Axe T11": { + "internalName": "Gathering Axe 11", + "type": "tool", + "toolType": "axe", + "gatheringSpeed": 275, + "identified": true, + "requirements": { + "level": 95 + }, + "icon": { + "format": "attribute", + "value": { + "id": "minecraft:iron_horse_armor", + "customModelData": "50", + "name": "gatheringTool.axe11" + } + }, + "rarity": "common" + }, +*/ +export const WapiV3ItemTool = z.object({ + internalName: z.string(), + type: z.literal('tool'), + toolType: z.enum([ + "axe","pickaxe","rod","scythe", + ]), + identified: z.boolean().optional(), + gatheringSpeed: z.number(), + requirements: z.object({ + level: z.number(), + }), + icon: WynnItemIcon, + rarity:WynnItemRarity, +}) + +export const WapiV3ItemTome = z.object({ + internalName: z.string(), + tomeType: z.enum([ + "guild_tome", + "marathon_tome", + "mysticism_tome", + "weapon_tome", + "armour_tome", + "expertise_tome", + "lootrun_tome", + ]), + raidReward: z.boolean(), + type: z.literal('tome'), + restrictions: WynnItemRestrictions.optional(), + dropMeta: WynnDropMeta.optional(), + dropRestriction: WynnDropRestriction, + requirements: WynnEquipRequirements, + lore: z.string().optional(), + icon: WynnItemIcon, + base: WynnBaseStats.optional(), + rarity:WynnItemRarity, +}) + +export const WapiV3ItemCharm = z.object({ + internalName: z.string(), + type: z.literal('charm'), + restrictions: WynnItemRestrictions.optional(), + dropMeta: WynnDropMeta.optional(), + dropRestriction: WynnDropRestriction, + requirements: WynnEquipRequirements, + lore: z.string().optional(), + icon: WynnItemIcon, + base: WynnBaseStats, + rarity:WynnItemRarity, +}) + +export const WapiV3ItemAccessory = z.object({ + internalName: z.string(), + type: z.literal('accessory'), + identified: z.boolean().optional(), + accessoryType: z.enum([ + "ring","necklace","bracelet", + ]), + majorIds: z.record(z.string(), z.string()).optional(), + restrictions: WynnItemRestrictions.optional(), + dropMeta: WynnDropMeta.optional(), + dropRestriction: WynnDropRestriction, + requirements:WynnEquipRequirements, + lore: z.string().optional(), + icon: WynnItemIcon, + identifications: WynnIdentifications.optional(), + base: WynnBaseStats.optional(), + rarity:WynnItemRarity, +}).strict() + +export const WapiV3ItemIngredient = z.object({ + internalName: z.string(), + type: z.literal('ingredient'), + requirements: z.object({ + level: z.number(), + skills: z.array(z.enum([ + "alchemism", + "armouring", + "cooking", + "jeweling", + "scribing", + "tailoring", + "weaponsmithing", + "woodworking", + ])), + }), + icon: WynnItemIcon, + identifications: WynnIdentifications.optional(), + tier: z.number(), + consumableOnlyIDs: z.record(z.string(), z.number()), + ingredientPositionModifiers: z.record(z.string(), z.number()), + itemOnlyIDs: z.record(z.string(), z.number()), + droppedBy: z.array(z.object({ + name: z.string(), + coords: z.union([ + z.boolean(), + z.array(z.number()).length(4), + z.array(z.array(z.number()).length(4)), + ]).nullable() + })).optional() +}).strict() + +export const WapiV3ItemMaterial = z.object({ + internalName: z.string(), + type: z.literal('material'), + identified: z.boolean(), + requirements: z.object({ + level: z.number(), + }), + craftable: z.array(z.enum([ + 'potions','food','scrolls', + 'helmets','chestplates','rings','bracelets', + 'necklaces','boots','leggings','bows','wands','spears', + 'daggers','chestplates','helmets'])), + icon: WynnItemIcon, + tier: z.number(), +}).strict() + +export const WapiV3ItemWeapon = z.object({ + internalName: z.string(), + type: z.literal('weapon'), + identified: z.boolean().optional(), + allowCraftsman: z.boolean().optional(), + weaponType: z.enum([ + "bow","relik","wand","dagger","spear" + ]), + attackSpeed: z.enum([ + "super_slow", "very_slow", "slow","normal","fast", "very_fast","super_fast" + ]), + powderSlots: z.number().optional(), + averageDps: z.number().optional(), + restrictions: WynnItemRestrictions.optional(), + dropMeta: WynnDropMeta.optional(), + dropRestriction: WynnDropRestriction.optional(), + requirements: WynnEquipRequirements, + majorIds: z.record(z.string(), z.string()).optional(), + lore: z.string().optional(), + icon: WynnItemIcon, + identifications: WynnIdentifications.optional(), + base: WynnBaseStats.optional(), + rarity:WynnItemRarity, +}).strict() + + +export const WapiV3ItemArmour = z.object({ + internalName: z.string(), + type: z.literal('armour'), + armourType: z.string(), + armourMaterial: z.string().optional(), + armourColor: z.string().optional(), + identified: z.boolean().optional(), + allowCraftsman: z.boolean().optional(), + restrictions: WynnItemRestrictions.optional(), + dropRestriction: WynnDropRestriction, + dropMeta: WynnDropMeta.optional(), + icon: WynnItemIcon.optional(), + requirements: z.object({ + level: z.number(), + classRequirement: z.string().optional(), + intelligence: z.number().optional(), + strength: z.number().optional(), + dexterity: z.number().optional(), + defence: z.number().optional(), + agility: z.number().optional(), + }), + majorIds: z.record(z.string(), z.string()).optional(), + powderSlots: z.number().optional(), + lore: z.string().optional(), + identifications: z.record(z.string(), z.union([ + z.number(), + z.object({ + min: z.number(), + raw: z.number(), + max: z.number(), + }) + ])).optional(), + base: WynnBaseStats.optional(), + rarity:WynnItemRarity, +}).strict() + +export const WApiV3Item = z.discriminatedUnion("type",[ + WapiV3ItemMaterial, + WapiV3ItemWeapon, + WapiV3ItemArmour, + WapiV3ItemIngredient, + WapiV3ItemAccessory, + WapiV3ItemCharm, + WapiV3ItemTome, + WapiV3ItemTool, +]) +export const WApiV3ItemDatabase= z.record(z.string(), WApiV3Item) diff --git a/src/lib/wapi.ts b/src/lib/wapi.ts new file mode 100644 index 0000000..f1fef7e --- /dev/null +++ b/src/lib/wapi.ts @@ -0,0 +1,26 @@ +import axios, { Axios, AxiosInstance } from "axios"; + + + +export class WApi { + + c: AxiosInstance + + constructor(endpoint: string = `https://api.wynncraft.com/`) { + this.c = axios.create({ + baseURL: endpoint, + }) + } + + async get(path:string, params?: any) { + return this.c.get(path, { + params, + headers: { + 'Accept': 'application/json', + 'Content-Type': 'application/json', + } + }) + } + + +} diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..cdaf7ed --- /dev/null +++ b/src/main.ts @@ -0,0 +1,12 @@ +import { runExit } from "clipanion"; + +import { WorkerCommand } from "#/cmd/worker"; +import { WynnCommands } from "#/cmd/wynn"; +import { BotCommand } from "./cmd/bot"; + + +runExit([ + WorkerCommand, + BotCommand, + ...WynnCommands, +]) diff --git a/src/mux/index.ts b/src/mux/index.ts new file mode 100644 index 0000000..15ca98f --- /dev/null +++ b/src/mux/index.ts @@ -0,0 +1,9 @@ +import { container } from "#/di"; + + + +export class EventMux { + constructor() { + } +} + diff --git a/src/services/pg/index.ts b/src/services/pg/index.ts new file mode 100644 index 0000000..7d02299 --- /dev/null +++ b/src/services/pg/index.ts @@ -0,0 +1,23 @@ +import { config } from "#/config"; +import { container, T_PG } from "#/di"; +import postgres from "postgres"; + +container.bind({ + provide: T_PG, + useFactory: () => { + const opts = { + onnotice: () => {}, + } + if(config.PG_URL) { + return postgres(config.PG_URL, opts); + } + return postgres({ + host: config.PG_HOST, + port: config.PG_PORT, + user: config.PG_USER, + password: config.PG_PASSWORD, + db: config.PG_DATABASE, + ...opts, + }) + }, +}); diff --git a/src/services/pg/migrations.ts b/src/services/pg/migrations.ts new file mode 100644 index 0000000..c4fbef0 --- /dev/null +++ b/src/services/pg/migrations.ts @@ -0,0 +1,121 @@ +import { Sql, TransactionSql } from "postgres"; + + +type MigrationFunc = (sql:TransactionSql)=>Promise + +interface Migration { + name: string + up: MigrationFunc + // TODO: implement down + down?: MigrationFunc +} + +const migration = (name:string, up:MigrationFunc, down?:MigrationFunc)=>{ + return {name, up, down} +} + +const migrations: Array = [ + migration("create-api-responses", async (sql)=>{ + await sql` +create table if not exists wynn_api_responses ( + path text not null, + content jsonb not null, + content_hash text not null, + received_time timestamptz not null +)` + await sql` +create index wynn_api_responses_received_time on wynn_api_responses (received_time, path) +` + }), + migration("guild-info", async (sql)=>{ + await sql` +create table if not exists wynn_guild_members ( + guild_id UUID not null, + member_id UUID not null, + rank text not null, + joined_at timestamptz not null, + contributed bigint not null, + primary key (guild_id, member_id), + unique(member_id) +)` + await sql` +create table if not exists wynn_guild_info ( + uid UUID not null, + name text not null, + prefix text not null, + level bigint , + xp_percent bigint, + territories bigint, + wars bigint, + created timestamptz, + primary key (uid) +)` + + await sql` +create table if not exists wynn_guild_season_results ( + guild_id UUID not null, + season text not null, + rating bigint not null, + territories bigint not null, + primary key (guild_id, season) +) +` + }), + migration("create-user-info", async (sql)=>{ + await sql` + create table if not exists minecraft_user ( + uid UUID not null, + name text not null, + server text, + primary key (uid) + ) + ` + }), + migration("create-guild-settings", async (sql)=>{ + await sql` + create table if not exists discord_guild_setting( + discord_guild text not null, + name text not null, + value jsonb not null, + primary key (discord_guild, name) + )` + }) + +] + + +export const runMigrations = async (pg: Sql) => { + await pg.begin(async (sql)=>{ + await sql` +create table if not exists migration_version (version int) +` + await sql` +insert into migration_version + select 0 + where 0=(select count(*) from migration_version) +` + const [{version}] = await sql` +select version from migration_version limit 1 +` + + const targetVersion = migrations.length + + if(version == targetVersion) { + return + } + if (version > targetVersion) { + console.log(`version ${version} is greater than the latest migration ${targetVersion}, nothing to do`) + return + } + console.log(`running migrations from version ${version}`) + for (let i = version+1; i <= targetVersion; i++) { + const m = migrations[i-1] + console.log(`running migration ${i}_${m.name}`) + await m.up(sql) + await sql` +update migration_version set version=${i} +` + } + console.log(`done running db migrations`) + }); +} diff --git a/src/services/temporal/index.ts b/src/services/temporal/index.ts new file mode 100644 index 0000000..cbcabbf --- /dev/null +++ b/src/services/temporal/index.ts @@ -0,0 +1,22 @@ +import { config } from "#/config"; +import { container } from "#/di"; +import { Client, Connection} from '@temporalio/client'; + +container.bind({ + provide: Client, + async: true, + useFactory: async () => { + const connection = await Connection.connect({ + address: config.TEMPORAL_HOSTPORT, + }) + const client = new Client({ + connection, + namespace: config.TEMPORAL_NAMESPACE, + }); + process.on('exit', () => { + console.log('closing temporal client'); + client.connection.close(); + }); + return client + }, +}); diff --git a/src/slashcommands/admin.ts b/src/slashcommands/admin.ts new file mode 100644 index 0000000..847597e --- /dev/null +++ b/src/slashcommands/admin.ts @@ -0,0 +1,20 @@ + +import {ApplicationCommandOptionTypes, ApplicationCommandTypes, CreateApplicationCommand } from "discordeno"; + + + +export const AdminCommands: CreateApplicationCommand = { + name: "admin", + description: "admin commands", + type: ApplicationCommandTypes.ChatInput, + defaultMemberPermissions: [ + "ADMINISTRATOR", + ], + options: [ + { + name: "set_wynn_guild", + description: "set the default wynncraft guild for the server", + type: ApplicationCommandOptionTypes.SubCommand, + }, + ], +} diff --git a/src/slashcommands/guild_overview.ts b/src/slashcommands/guild_overview.ts new file mode 100644 index 0000000..378acc0 --- /dev/null +++ b/src/slashcommands/guild_overview.ts @@ -0,0 +1,26 @@ +import {ApplicationCommandOptionTypes, ApplicationCommandTypes, CreateApplicationCommand } from "discordeno"; + + + +export const GuildCommands: CreateApplicationCommand = { + name: "guild", + description: "guild commands", + type: ApplicationCommandTypes.ChatInput, + options: [ + { + name: "leaderboard", + description: "view the current leaderboard", + type: ApplicationCommandOptionTypes.SubCommand, + }, + { + name: "info", + description: "view guild information", + type: ApplicationCommandOptionTypes.SubCommand, + }, + { + name: "online", + description: "show online players", + type: ApplicationCommandOptionTypes.SubCommand, + }, + ], +} diff --git a/src/slashcommands/index.ts b/src/slashcommands/index.ts new file mode 100644 index 0000000..fe109f6 --- /dev/null +++ b/src/slashcommands/index.ts @@ -0,0 +1,6 @@ +/** + * @file Automatically generated by barrelsby. + */ + +export * from "./admin"; +export * from "./guild_overview"; diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..f7ff748 --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,14 @@ +import crypto from "node:crypto"; +import {IDataType, xxhash128} from "hash-wasm"; + +export function sha1Hash(data: crypto.BinaryLike) { + const hash = crypto.createHash('sha1'); + hash.update(data); + return hash.digest('hex'); +} + + +export async function fastHashFileV1(data: IDataType):Promise { + const hash = xxhash128(data) + return hash +} diff --git a/src/workflows/guilds.ts b/src/workflows/guilds.ts new file mode 100644 index 0000000..f54b6ce --- /dev/null +++ b/src/workflows/guilds.ts @@ -0,0 +1,24 @@ + +import { proxyActivities } from '@temporalio/workflow'; +import type * as activities from '#/activities'; + +const { update_guild, update_all_guilds } = proxyActivities({ + startToCloseTimeout: '1 minute', +}); + +export const workflowSyncAllGuilds = async() => { + await update_all_guilds() +} + +export const workflowSyncGuilds = async() => { + // TODO side effect + const guildNames = [ + 'less than three', + ] + for(const guildName of guildNames) { + // update the guild + await update_guild({ + guild_name: guildName, + }) + } +} diff --git a/src/workflows/index.ts b/src/workflows/index.ts new file mode 100644 index 0000000..301b713 --- /dev/null +++ b/src/workflows/index.ts @@ -0,0 +1,6 @@ +/** + * @file Automatically generated by barrelsby. + */ + +export * from "./guilds"; +export * from "./players"; diff --git a/src/workflows/players.ts b/src/workflows/players.ts new file mode 100644 index 0000000..76fc405 --- /dev/null +++ b/src/workflows/players.ts @@ -0,0 +1,14 @@ + +import { proxyActivities } from '@temporalio/workflow'; +import type * as activities from '#/activities'; + +const { scrape_online_players } = proxyActivities({ + startToCloseTimeout: '1 minute', + retry: { + maximumAttempts: 1, + } +}); + +export const workflowSyncOnline = async() => { + await scrape_online_players(); +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..52e3a72 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node"], + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "checkJs": true, + "outDir": "./dist", + "rootDir": "./src", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "baseUrl": ".", + "paths": { + "#/*": ["./src/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..8b2b5ee --- /dev/null +++ b/yarn.lock @@ -0,0 +1,3427 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@ark/schema@npm:0.39.0": + version: 0.39.0 + resolution: "@ark/schema@npm:0.39.0" + dependencies: + "@ark/util": "npm:0.39.0" + checksum: 10c0/8a279ac688218937ca5585670e6eb8f3bac9c3ccf5f1868e3223ff9f1edabe713e76b30715510606f154e8f0208cd2e1b6551fd947f6cfae309bd7a65cf6c315 + languageName: node + linkType: hard + +"@ark/util@npm:0.39.0": + version: 0.39.0 + resolution: "@ark/util@npm:0.39.0" + checksum: 10c0/0e5a580e0e238ef457c07aa68f9382ae34fae8ced93dddd5c3402bce9898b8372e2a2022327b9d234eab8adc7d9a347e731721d329049dad17be37c9257b05f8 + languageName: node + linkType: hard + +"@discordeno/bot@npm:21.0.0": + version: 21.0.0 + resolution: "@discordeno/bot@npm:21.0.0" + dependencies: + "@discordeno/gateway": "npm:21.0.0" + "@discordeno/rest": "npm:21.0.0" + "@discordeno/types": "npm:21.0.0" + "@discordeno/utils": "npm:21.0.0" + checksum: 10c0/a0ea9872aa4d1a2bb23542920b69b50ab5b3beaa6715e7fa5f3fe6a7843ec8095ba83af026450ec706111a3941a6a5327cb039641e32dc859216d2762943e808 + languageName: node + linkType: hard + +"@discordeno/gateway@npm:21.0.0": + version: 21.0.0 + resolution: "@discordeno/gateway@npm:21.0.0" + dependencies: + "@discordeno/types": "npm:21.0.0" + "@discordeno/utils": "npm:21.0.0" + fzstd: "npm:^0.1.1" + ws: "npm:^8.18.0" + dependenciesMeta: + fzstd: + optional: true + checksum: 10c0/7924f6ff44c20dd1bc1aa4e27d21cd42c5ef68cee13dad6d372dae09065d4dd2dfe15b0e541737ad3a359256191c72c1a17932bef2258872a91162cee6a84ce9 + languageName: node + linkType: hard + +"@discordeno/rest@npm:21.0.0": + version: 21.0.0 + resolution: "@discordeno/rest@npm:21.0.0" + dependencies: + "@discordeno/types": "npm:21.0.0" + "@discordeno/utils": "npm:21.0.0" + checksum: 10c0/a99fe4ca07236ceb05699af605aa87df7fcf613e2c98136c9198f1357ec27b230bbf3c215ff2e0c8901858e0b55d2add66e7341cf1beb350197a995cd0074b09 + languageName: node + linkType: hard + +"@discordeno/types@npm:21.0.0": + version: 21.0.0 + resolution: "@discordeno/types@npm:21.0.0" + checksum: 10c0/5d47321e75cca4aa60f69d8b146c1c87fae4c4f7065a422a41ef17d34747b6d933d1699567a887beca5e6fc086b5cba0db9ca67b34b81f348afdd9432ea2979d + languageName: node + linkType: hard + +"@discordeno/utils@npm:21.0.0": + version: 21.0.0 + resolution: "@discordeno/utils@npm:21.0.0" + dependencies: + "@discordeno/types": "npm:21.0.0" + checksum: 10c0/2d49c566bd2ad643dbb4e97781204b6282d184d1b4f795f64bd87eed19ac7ef45329387f4fdc90b23f86929f05291da85a5bff3f13e22eb3ca3b38c19fff2e98 + languageName: node + linkType: hard + +"@grpc/grpc-js@npm:^1.10.7": + version: 1.12.6 + resolution: "@grpc/grpc-js@npm:1.12.6" + dependencies: + "@grpc/proto-loader": "npm:^0.7.13" + "@js-sdsl/ordered-map": "npm:^4.4.2" + checksum: 10c0/4d74d573bdb5d5175d54f5613a921ffca6adb38aefa06992d40763d723f64b87842d8019b8bfcbfb9ec1994a67dfbacca976d8f24fedd858c82ea73d538d67df + languageName: node + linkType: hard + +"@grpc/proto-loader@npm:^0.7.13": + version: 0.7.13 + resolution: "@grpc/proto-loader@npm:0.7.13" + dependencies: + lodash.camelcase: "npm:^4.3.0" + long: "npm:^5.0.0" + protobufjs: "npm:^7.2.5" + yargs: "npm:^17.7.2" + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: 10c0/dc8ed7aa1454c15e224707cc53d84a166b98d76f33606a9f334c7a6fb1aedd3e3614dcd2c2b02a6ffaf140587d19494f93b3a56346c6c2e26bc564f6deddbbf3 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e + languageName: node + linkType: hard + +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" + dependencies: + minipass: "npm:^7.0.4" + checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.8 + resolution: "@jridgewell/gen-mapping@npm:0.3.8" + dependencies: + "@jridgewell/set-array": "npm:^1.2.1" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 + languageName: node + linkType: hard + +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.6 + resolution: "@jridgewell/source-map@npm:0.3.6" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.25" + checksum: 10c0/6a4ecc713ed246ff8e5bdcc1ef7c49aaa93f7463d948ba5054dda18b02dcc6a055e2828c577bcceee058f302ce1fc95595713d44f5c45e43d459f88d267f2f04 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.1.0" + "@jridgewell/sourcemap-codec": "npm:^1.4.14" + checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 + languageName: node + linkType: hard + +"@js-sdsl/ordered-map@npm:^4.4.2": + version: 4.4.2 + resolution: "@js-sdsl/ordered-map@npm:4.4.2" + checksum: 10c0/cc7e15dc4acf6d9ef663757279600bab70533d847dcc1ab01332e9e680bd30b77cdf9ad885cc774276f51d98b05a013571c940e5b360985af5eb798dc1a2ee2b + languageName: node + linkType: hard + +"@jsonjoy.com/base64@npm:^1.1.1": + version: 1.1.2 + resolution: "@jsonjoy.com/base64@npm:1.1.2" + peerDependencies: + tslib: 2 + checksum: 10c0/88717945f66dc89bf58ce75624c99fe6a5c9a0c8614e26d03e406447b28abff80c69fb37dabe5aafef1862cf315071ae66e5c85f6018b437d95f8d13d235e6eb + languageName: node + linkType: hard + +"@jsonjoy.com/json-pack@npm:^1.0.3": + version: 1.1.1 + resolution: "@jsonjoy.com/json-pack@npm:1.1.1" + dependencies: + "@jsonjoy.com/base64": "npm:^1.1.1" + "@jsonjoy.com/util": "npm:^1.1.2" + hyperdyperid: "npm:^1.2.0" + thingies: "npm:^1.20.0" + peerDependencies: + tslib: 2 + checksum: 10c0/fd0d8baa0c8eba536924540717901e0d7eed742576991033cceeb32dcce801ee0a4318cf6eb40b444c9e78f69ddbd4f38b9eb0041e9e54c17e7b6d1219b12e1d + languageName: node + linkType: hard + +"@jsonjoy.com/util@npm:^1.1.2, @jsonjoy.com/util@npm:^1.3.0": + version: 1.5.0 + resolution: "@jsonjoy.com/util@npm:1.5.0" + peerDependencies: + tslib: 2 + checksum: 10c0/0065ae12c4108d8aede01a479c8d2b5a39bce99e9a449d235befc753f57e8385d9c1115720529f26597840b7398d512898155423d9859fd638319fb0c827365d + languageName: node + linkType: hard + +"@needle-di/core@npm:^0.10.1": + version: 0.10.1 + resolution: "@needle-di/core@npm:0.10.1" + checksum: 10c0/c1c1927f9a95b950fea9427f724b61c9042a902cbfae9ad41d4b80ee8b89bc7bcadd9a64db8bfdbc102a693fd44cdb2977c565327d62b8457dd71648b4ff8340 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^3.0.0": + version: 3.0.0 + resolution: "@npmcli/agent@npm:3.0.0" + dependencies: + agent-base: "npm:^7.1.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.1" + lru-cache: "npm:^10.0.1" + socks-proxy-agent: "npm:^8.0.3" + checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/fs@npm:4.0.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd + languageName: node + linkType: hard + +"@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/aspromise@npm:1.1.2" + checksum: 10c0/a83343a468ff5b5ec6bff36fd788a64c839e48a07ff9f4f813564f58caf44d011cd6504ed2147bf34835bd7a7dd2107052af755961c6b098fd8902b4f6500d0f + languageName: node + linkType: hard + +"@protobufjs/base64@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/base64@npm:1.1.2" + checksum: 10c0/eec925e681081af190b8ee231f9bad3101e189abbc182ff279da6b531e7dbd2a56f1f306f37a80b1be9e00aa2d271690d08dcc5f326f71c9eed8546675c8caf6 + languageName: node + linkType: hard + +"@protobufjs/codegen@npm:^2.0.4": + version: 2.0.4 + resolution: "@protobufjs/codegen@npm:2.0.4" + checksum: 10c0/26ae337c5659e41f091606d16465bbcc1df1f37cc1ed462438b1f67be0c1e28dfb2ca9f294f39100c52161aef82edf758c95d6d75650a1ddf31f7ddee1440b43 + languageName: node + linkType: hard + +"@protobufjs/eventemitter@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/eventemitter@npm:1.1.0" + checksum: 10c0/1eb0a75180e5206d1033e4138212a8c7089a3d418c6dfa5a6ce42e593a4ae2e5892c4ef7421f38092badba4040ea6a45f0928869989411001d8c1018ea9a6e70 + languageName: node + linkType: hard + +"@protobufjs/fetch@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/fetch@npm:1.1.0" + dependencies: + "@protobufjs/aspromise": "npm:^1.1.1" + "@protobufjs/inquire": "npm:^1.1.0" + checksum: 10c0/cda6a3dc2d50a182c5865b160f72077aac197046600091dbb005dd0a66db9cce3c5eaed6d470ac8ed49d7bcbeef6ee5f0bc288db5ff9a70cbd003e5909065233 + languageName: node + linkType: hard + +"@protobufjs/float@npm:^1.0.2": + version: 1.0.2 + resolution: "@protobufjs/float@npm:1.0.2" + checksum: 10c0/18f2bdede76ffcf0170708af15c9c9db6259b771e6b84c51b06df34a9c339dbbeec267d14ce0bddd20acc142b1d980d983d31434398df7f98eb0c94a0eb79069 + languageName: node + linkType: hard + +"@protobufjs/inquire@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/inquire@npm:1.1.0" + checksum: 10c0/64372482efcba1fb4d166a2664a6395fa978b557803857c9c03500e0ac1013eb4b1aacc9ed851dd5fc22f81583670b4f4431bae186f3373fedcfde863ef5921a + languageName: node + linkType: hard + +"@protobufjs/path@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/path@npm:1.1.2" + checksum: 10c0/cece0a938e7f5dfd2fa03f8c14f2f1cf8b0d6e13ac7326ff4c96ea311effd5fb7ae0bba754fbf505312af2e38500250c90e68506b97c02360a43793d88a0d8b4 + languageName: node + linkType: hard + +"@protobufjs/pool@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/pool@npm:1.1.0" + checksum: 10c0/eda2718b7f222ac6e6ad36f758a92ef90d26526026a19f4f17f668f45e0306a5bd734def3f48f51f8134ae0978b6262a5c517c08b115a551756d1a3aadfcf038 + languageName: node + linkType: hard + +"@protobufjs/utf8@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/utf8@npm:1.1.0" + checksum: 10c0/a3fe31fe3fa29aa3349e2e04ee13dc170cc6af7c23d92ad49e3eeaf79b9766264544d3da824dba93b7855bd6a2982fb40032ef40693da98a136d835752beb487 + languageName: node + linkType: hard + +"@rollup/rollup-android-arm-eabi@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.8" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@rollup/rollup-android-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-android-arm64@npm:4.34.8" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-darwin-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-darwin-x64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-darwin-x64@npm:4.34.8" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@rollup/rollup-freebsd-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-freebsd-x64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm-musleabihf@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8" + conditions: os=linux & cpu=arm & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm64-musl@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-riscv64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-s390x-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-musl@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-win32-arm64-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-win32-ia32-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@rollup/rollup-win32-x64-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@swc/core-darwin-arm64@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-darwin-arm64@npm:1.10.15" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@swc/core-darwin-x64@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-darwin-x64@npm:1.10.15" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@swc/core-linux-arm-gnueabihf@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.10.15" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@swc/core-linux-arm64-gnu@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-linux-arm64-gnu@npm:1.10.15" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@swc/core-linux-arm64-musl@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-linux-arm64-musl@npm:1.10.15" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@swc/core-linux-x64-gnu@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-linux-x64-gnu@npm:1.10.15" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@swc/core-linux-x64-musl@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-linux-x64-musl@npm:1.10.15" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@swc/core-win32-arm64-msvc@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-win32-arm64-msvc@npm:1.10.15" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@swc/core-win32-ia32-msvc@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-win32-ia32-msvc@npm:1.10.15" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@swc/core-win32-x64-msvc@npm:1.10.15": + version: 1.10.15 + resolution: "@swc/core-win32-x64-msvc@npm:1.10.15" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@swc/core@npm:^1.3.102": + version: 1.10.15 + resolution: "@swc/core@npm:1.10.15" + dependencies: + "@swc/core-darwin-arm64": "npm:1.10.15" + "@swc/core-darwin-x64": "npm:1.10.15" + "@swc/core-linux-arm-gnueabihf": "npm:1.10.15" + "@swc/core-linux-arm64-gnu": "npm:1.10.15" + "@swc/core-linux-arm64-musl": "npm:1.10.15" + "@swc/core-linux-x64-gnu": "npm:1.10.15" + "@swc/core-linux-x64-musl": "npm:1.10.15" + "@swc/core-win32-arm64-msvc": "npm:1.10.15" + "@swc/core-win32-ia32-msvc": "npm:1.10.15" + "@swc/core-win32-x64-msvc": "npm:1.10.15" + "@swc/counter": "npm:^0.1.3" + "@swc/types": "npm:^0.1.17" + peerDependencies: + "@swc/helpers": "*" + dependenciesMeta: + "@swc/core-darwin-arm64": + optional: true + "@swc/core-darwin-x64": + optional: true + "@swc/core-linux-arm-gnueabihf": + optional: true + "@swc/core-linux-arm64-gnu": + optional: true + "@swc/core-linux-arm64-musl": + optional: true + "@swc/core-linux-x64-gnu": + optional: true + "@swc/core-linux-x64-musl": + optional: true + "@swc/core-win32-arm64-msvc": + optional: true + "@swc/core-win32-ia32-msvc": + optional: true + "@swc/core-win32-x64-msvc": + optional: true + peerDependenciesMeta: + "@swc/helpers": + optional: true + checksum: 10c0/281c76e3f84465cbccd4782d8f0fbaff964ed1121cda444d1ae707d58ae7f20046e5b03b3d677f945148604bba15aac79093bcb5a1a260e79dbc4a2e2c7ec993 + languageName: node + linkType: hard + +"@swc/counter@npm:^0.1.3": + version: 0.1.3 + resolution: "@swc/counter@npm:0.1.3" + checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356 + languageName: node + linkType: hard + +"@swc/types@npm:^0.1.17": + version: 0.1.17 + resolution: "@swc/types@npm:0.1.17" + dependencies: + "@swc/counter": "npm:^0.1.3" + checksum: 10c0/29f5c8933a16042956f1adb7383e836ed7646cbf679826e78b53fdd0c08e8572cb42152e527b6b530a9bd1052d33d0972f90f589761ccd252c12652c9b7a72fc + languageName: node + linkType: hard + +"@temporalio/activity@npm:1.11.7, @temporalio/activity@npm:^1.11.7": + version: 1.11.7 + resolution: "@temporalio/activity@npm:1.11.7" + dependencies: + "@temporalio/common": "npm:1.11.7" + abort-controller: "npm:^3.0.0" + checksum: 10c0/fa47a3054f4804e5d20966a28c45aa2ffa6367fbff91ee47f3046a92088778de7bbbb11fc48fb8854a133064c8840f214a866de69a0467f0a2f6cc4cd1feca44 + languageName: node + linkType: hard + +"@temporalio/client@npm:1.11.7, @temporalio/client@npm:^1.11.7": + version: 1.11.7 + resolution: "@temporalio/client@npm:1.11.7" + dependencies: + "@grpc/grpc-js": "npm:^1.10.7" + "@temporalio/common": "npm:1.11.7" + "@temporalio/proto": "npm:1.11.7" + abort-controller: "npm:^3.0.0" + long: "npm:^5.2.3" + uuid: "npm:^9.0.1" + checksum: 10c0/0acccd2e541c80f2b0cbe576528b8782f3c3afec0820dc00c721c0e3120ad1138caafbced97776546c5b0e033bd6ce0d685b614f90d8677a5fb272f8730f08c1 + languageName: node + linkType: hard + +"@temporalio/common@npm:1.11.7, @temporalio/common@npm:^1.11.7": + version: 1.11.7 + resolution: "@temporalio/common@npm:1.11.7" + dependencies: + "@temporalio/proto": "npm:1.11.7" + long: "npm:^5.2.3" + ms: "npm:^3.0.0-canary.1" + proto3-json-serializer: "npm:^2.0.0" + checksum: 10c0/08bc362d1a7a21686a180fae513ca93f9c041aa00d45419bacce084921bbb28326301c4f133cd5eba2f0f34ac40e1636290ac9e6bdaace42e9f7ff8380646002 + languageName: node + linkType: hard + +"@temporalio/core-bridge@npm:1.11.7": + version: 1.11.7 + resolution: "@temporalio/core-bridge@npm:1.11.7" + dependencies: + "@temporalio/common": "npm:1.11.7" + arg: "npm:^5.0.2" + cargo-cp-artifact: "npm:^0.1.8" + which: "npm:^4.0.0" + checksum: 10c0/826dd3d18ef8c26d2b16ff1e1bb4b74745ba430aa66715ced6ea3cd7e19fad5982f8af37b674c8eb2ee93c94dbf79de6b4411f561792e51a32c2d31248ca79ad + languageName: node + linkType: hard + +"@temporalio/proto@npm:1.11.7": + version: 1.11.7 + resolution: "@temporalio/proto@npm:1.11.7" + dependencies: + long: "npm:^5.2.3" + protobufjs: "npm:^7.2.5" + checksum: 10c0/ff3a1163a284b1cfd059a748b5641bd909dd0d98f7babef9159abe27815c8548191f3eb2be28d04025e1a7002aa8a3edda7fcc764a744660fd608e9bbec843c6 + languageName: node + linkType: hard + +"@temporalio/worker@npm:^1.11.7": + version: 1.11.7 + resolution: "@temporalio/worker@npm:1.11.7" + dependencies: + "@swc/core": "npm:^1.3.102" + "@temporalio/activity": "npm:1.11.7" + "@temporalio/client": "npm:1.11.7" + "@temporalio/common": "npm:1.11.7" + "@temporalio/core-bridge": "npm:1.11.7" + "@temporalio/proto": "npm:1.11.7" + "@temporalio/workflow": "npm:1.11.7" + abort-controller: "npm:^3.0.0" + heap-js: "npm:^2.3.0" + memfs: "npm:^4.6.0" + rxjs: "npm:^7.8.1" + source-map: "npm:^0.7.4" + source-map-loader: "npm:^4.0.2" + supports-color: "npm:^8.1.1" + swc-loader: "npm:^0.2.3" + unionfs: "npm:^4.5.1" + webpack: "npm:^5.94.0" + checksum: 10c0/df4e511d08571bf8e5de76e16478a30dac4d0d36270d5a1dc8af87e5c23ad0c643b1dd7aa425e43bdc0a3598af28df42734694fb213b8728d1d7559fb739a299 + languageName: node + linkType: hard + +"@temporalio/workflow@npm:1.11.7, @temporalio/workflow@npm:^1.11.7": + version: 1.11.7 + resolution: "@temporalio/workflow@npm:1.11.7" + dependencies: + "@temporalio/common": "npm:1.11.7" + "@temporalio/proto": "npm:1.11.7" + checksum: 10c0/40f8108e77d6bb2cffab585d771b81a15c21451ba0ff50ce4b601533b0848cec9a81464ebbca7fa9938b1bd2086ac1a741e144f94a2a26f30d4eb25642330643 + languageName: node + linkType: hard + +"@types/eslint-scope@npm:^3.7.7": + version: 3.7.7 + resolution: "@types/eslint-scope@npm:3.7.7" + dependencies: + "@types/eslint": "npm:*" + "@types/estree": "npm:*" + checksum: 10c0/a0ecbdf2f03912679440550817ff77ef39a30fa8bfdacaf6372b88b1f931828aec392f52283240f0d648cf3055c5ddc564544a626bcf245f3d09fcb099ebe3cc + languageName: node + linkType: hard + +"@types/eslint@npm:*": + version: 9.6.1 + resolution: "@types/eslint@npm:9.6.1" + dependencies: + "@types/estree": "npm:*" + "@types/json-schema": "npm:*" + checksum: 10c0/69ba24fee600d1e4c5abe0df086c1a4d798abf13792d8cfab912d76817fe1a894359a1518557d21237fbaf6eda93c5ab9309143dee4c59ef54336d1b3570420e + languageName: node + linkType: hard + +"@types/estree@npm:*, @types/estree@npm:1.0.6, @types/estree@npm:^1.0.6": + version: 1.0.6 + resolution: "@types/estree@npm:1.0.6" + checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a + languageName: node + linkType: hard + +"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": + version: 7.0.15 + resolution: "@types/json-schema@npm:7.0.15" + checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db + languageName: node + linkType: hard + +"@types/node@npm:*, @types/node@npm:>=13.7.0": + version: 22.13.1 + resolution: "@types/node@npm:22.13.1" + dependencies: + undici-types: "npm:~6.20.0" + checksum: 10c0/d4e56d41d8bd53de93da2651c0a0234e330bd7b1b6d071b1a94bd3b5ee2d9f387519e739c52a15c1faa4fb9d97e825b848421af4b2e50e6518011e7adb4a34b7 + languageName: node + linkType: hard + +"@types/node@npm:^22.13.4": + version: 22.13.4 + resolution: "@types/node@npm:22.13.4" + dependencies: + undici-types: "npm:~6.20.0" + checksum: 10c0/3a234fa7766a3efc382cf81f66f474c26cdab2f54f43f757634c81c0444eb2160c2dabbde9741e4983078a318a88515b65416b5f1ab5478548579d7b3ead1d95 + languageName: node + linkType: hard + +"@types/object-hash@npm:^3": + version: 3.0.6 + resolution: "@types/object-hash@npm:3.0.6" + checksum: 10c0/a5450cafdbc33c840be2c36fb1ace96cce7aa580177cf68dbdbda80f18938207692d74c76403321c99f43460ac31981c4af7fe8b49eca1570f8e9a4c01eaf33d + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.3 + resolution: "@types/yargs-parser@npm:21.0.3" + checksum: 10c0/e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0 + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.10": + version: 17.0.33 + resolution: "@types/yargs@npm:17.0.33" + dependencies: + "@types/yargs-parser": "npm:*" + checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b + languageName: node + linkType: hard + +"@webassemblyjs/ast@npm:1.14.1, @webassemblyjs/ast@npm:^1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/ast@npm:1.14.1" + dependencies: + "@webassemblyjs/helper-numbers": "npm:1.13.2" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.13.2" + checksum: 10c0/67a59be8ed50ddd33fbb2e09daa5193ac215bf7f40a9371be9a0d9797a114d0d1196316d2f3943efdb923a3d809175e1563a3cb80c814fb8edccd1e77494972b + languageName: node + linkType: hard + +"@webassemblyjs/floating-point-hex-parser@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.13.2" + checksum: 10c0/0e88bdb8b50507d9938be64df0867f00396b55eba9df7d3546eb5dc0ca64d62e06f8d881ec4a6153f2127d0f4c11d102b6e7d17aec2f26bb5ff95a5e60652412 + languageName: node + linkType: hard + +"@webassemblyjs/helper-api-error@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/helper-api-error@npm:1.13.2" + checksum: 10c0/31be497f996ed30aae4c08cac3cce50c8dcd5b29660383c0155fce1753804fc55d47fcba74e10141c7dd2899033164e117b3bcfcda23a6b043e4ded4f1003dfb + languageName: node + linkType: hard + +"@webassemblyjs/helper-buffer@npm:1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/helper-buffer@npm:1.14.1" + checksum: 10c0/0d54105dc373c0fe6287f1091e41e3a02e36cdc05e8cf8533cdc16c59ff05a646355415893449d3768cda588af451c274f13263300a251dc11a575bc4c9bd210 + languageName: node + linkType: hard + +"@webassemblyjs/helper-numbers@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/helper-numbers@npm:1.13.2" + dependencies: + "@webassemblyjs/floating-point-hex-parser": "npm:1.13.2" + "@webassemblyjs/helper-api-error": "npm:1.13.2" + "@xtuc/long": "npm:4.2.2" + checksum: 10c0/9c46852f31b234a8fb5a5a9d3f027bc542392a0d4de32f1a9c0075d5e8684aa073cb5929b56df565500b3f9cc0a2ab983b650314295b9bf208d1a1651bfc825a + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-bytecode@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.13.2" + checksum: 10c0/c4355d14f369b30cf3cbdd3acfafc7d0488e086be6d578e3c9780bd1b512932352246be96e034e2a7fcfba4f540ec813352f312bfcbbfe5bcfbf694f82ccc682 + languageName: node + linkType: hard + +"@webassemblyjs/helper-wasm-section@npm:1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/helper-wasm-section@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@webassemblyjs/helper-buffer": "npm:1.14.1" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.13.2" + "@webassemblyjs/wasm-gen": "npm:1.14.1" + checksum: 10c0/1f9b33731c3c6dbac3a9c483269562fa00d1b6a4e7133217f40e83e975e636fd0f8736e53abd9a47b06b66082ecc976c7384391ab0a68e12d509ea4e4b948d64 + languageName: node + linkType: hard + +"@webassemblyjs/ieee754@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/ieee754@npm:1.13.2" + dependencies: + "@xtuc/ieee754": "npm:^1.2.0" + checksum: 10c0/2e732ca78c6fbae3c9b112f4915d85caecdab285c0b337954b180460290ccd0fb00d2b1dc4bb69df3504abead5191e0d28d0d17dfd6c9d2f30acac8c4961c8a7 + languageName: node + linkType: hard + +"@webassemblyjs/leb128@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/leb128@npm:1.13.2" + dependencies: + "@xtuc/long": "npm:4.2.2" + checksum: 10c0/dad5ef9e383c8ab523ce432dfd80098384bf01c45f70eb179d594f85ce5db2f80fa8c9cba03adafd85684e6d6310f0d3969a882538975989919329ac4c984659 + languageName: node + linkType: hard + +"@webassemblyjs/utf8@npm:1.13.2": + version: 1.13.2 + resolution: "@webassemblyjs/utf8@npm:1.13.2" + checksum: 10c0/d3fac9130b0e3e5a1a7f2886124a278e9323827c87a2b971e6d0da22a2ba1278ac9f66a4f2e363ecd9fac8da42e6941b22df061a119e5c0335f81006de9ee799 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-edit@npm:^1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/wasm-edit@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@webassemblyjs/helper-buffer": "npm:1.14.1" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.13.2" + "@webassemblyjs/helper-wasm-section": "npm:1.14.1" + "@webassemblyjs/wasm-gen": "npm:1.14.1" + "@webassemblyjs/wasm-opt": "npm:1.14.1" + "@webassemblyjs/wasm-parser": "npm:1.14.1" + "@webassemblyjs/wast-printer": "npm:1.14.1" + checksum: 10c0/5ac4781086a2ca4b320bdbfd965a209655fe8a208ca38d89197148f8597e587c9a2c94fb6bd6f1a7dbd4527c49c6844fcdc2af981f8d793a97bf63a016aa86d2 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-gen@npm:1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/wasm-gen@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.13.2" + "@webassemblyjs/ieee754": "npm:1.13.2" + "@webassemblyjs/leb128": "npm:1.13.2" + "@webassemblyjs/utf8": "npm:1.13.2" + checksum: 10c0/d678810d7f3f8fecb2e2bdadfb9afad2ec1d2bc79f59e4711ab49c81cec578371e22732d4966f59067abe5fba8e9c54923b57060a729d28d408e608beef67b10 + languageName: node + linkType: hard + +"@webassemblyjs/wasm-opt@npm:1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/wasm-opt@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@webassemblyjs/helper-buffer": "npm:1.14.1" + "@webassemblyjs/wasm-gen": "npm:1.14.1" + "@webassemblyjs/wasm-parser": "npm:1.14.1" + checksum: 10c0/515bfb15277ee99ba6b11d2232ddbf22aed32aad6d0956fe8a0a0a004a1b5a3a277a71d9a3a38365d0538ac40d1b7b7243b1a244ad6cd6dece1c1bb2eb5de7ee + languageName: node + linkType: hard + +"@webassemblyjs/wasm-parser@npm:1.14.1, @webassemblyjs/wasm-parser@npm:^1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/wasm-parser@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@webassemblyjs/helper-api-error": "npm:1.13.2" + "@webassemblyjs/helper-wasm-bytecode": "npm:1.13.2" + "@webassemblyjs/ieee754": "npm:1.13.2" + "@webassemblyjs/leb128": "npm:1.13.2" + "@webassemblyjs/utf8": "npm:1.13.2" + checksum: 10c0/95427b9e5addbd0f647939bd28e3e06b8deefdbdadcf892385b5edc70091bf9b92fa5faac3fce8333554437c5d85835afef8c8a7d9d27ab6ba01ffab954db8c6 + languageName: node + linkType: hard + +"@webassemblyjs/wast-printer@npm:1.14.1": + version: 1.14.1 + resolution: "@webassemblyjs/wast-printer@npm:1.14.1" + dependencies: + "@webassemblyjs/ast": "npm:1.14.1" + "@xtuc/long": "npm:4.2.2" + checksum: 10c0/8d7768608996a052545251e896eac079c98e0401842af8dd4de78fba8d90bd505efb6c537e909cd6dae96e09db3fa2e765a6f26492553a675da56e2db51f9d24 + languageName: node + linkType: hard + +"@xtuc/ieee754@npm:^1.2.0": + version: 1.2.0 + resolution: "@xtuc/ieee754@npm:1.2.0" + checksum: 10c0/a8565d29d135039bd99ae4b2220d3e167d22cf53f867e491ed479b3f84f895742d0097f935b19aab90265a23d5d46711e4204f14c479ae3637fbf06c4666882f + languageName: node + linkType: hard + +"@xtuc/long@npm:4.2.2": + version: 4.2.2 + resolution: "@xtuc/long@npm:4.2.2" + checksum: 10c0/8582cbc69c79ad2d31568c412129bf23d2b1210a1dfb60c82d5a1df93334da4ee51f3057051658569e2c196d8dc33bc05ae6b974a711d0d16e801e1d0647ccd1 + languageName: node + linkType: hard + +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + languageName: node + linkType: hard + +"abort-controller@npm:^3.0.0": + version: 3.0.0 + resolution: "abort-controller@npm:3.0.0" + dependencies: + event-target-shim: "npm:^5.0.0" + checksum: 10c0/90ccc50f010250152509a344eb2e71977fbf8db0ab8f1061197e3275ddf6c61a41a6edfd7b9409c664513131dd96e962065415325ef23efa5db931b382d24ca5 + languageName: node + linkType: hard + +"acorn@npm:^8.14.0, acorn@npm:^8.8.2": + version: 8.14.0 + resolution: "acorn@npm:8.14.0" + bin: + acorn: bin/acorn + checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 + languageName: node + linkType: hard + +"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": + version: 7.1.3 + resolution: "agent-base@npm:7.1.3" + checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 + languageName: node + linkType: hard + +"ajv-formats@npm:^2.1.1": + version: 2.1.1 + resolution: "ajv-formats@npm:2.1.1" + dependencies: + ajv: "npm:^8.0.0" + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + checksum: 10c0/e43ba22e91b6a48d96224b83d260d3a3a561b42d391f8d3c6d2c1559f9aa5b253bfb306bc94bbeca1d967c014e15a6efe9a207309e95b3eaae07fcbcdc2af662 + languageName: node + linkType: hard + +"ajv-keywords@npm:^3.5.2": + version: 3.5.2 + resolution: "ajv-keywords@npm:3.5.2" + peerDependencies: + ajv: ^6.9.1 + checksum: 10c0/0c57a47cbd656e8cdfd99d7c2264de5868918ffa207c8d7a72a7f63379d4333254b2ba03d69e3c035e996a3fd3eb6d5725d7a1597cca10694296e32510546360 + languageName: node + linkType: hard + +"ajv-keywords@npm:^5.1.0": + version: 5.1.0 + resolution: "ajv-keywords@npm:5.1.0" + dependencies: + fast-deep-equal: "npm:^3.1.3" + peerDependencies: + ajv: ^8.8.2 + checksum: 10c0/18bec51f0171b83123ba1d8883c126e60c6f420cef885250898bf77a8d3e65e3bfb9e8564f497e30bdbe762a83e0d144a36931328616a973ee669dc74d4a9590 + languageName: node + linkType: hard + +"ajv@npm:^6.12.5": + version: 6.12.6 + resolution: "ajv@npm:6.12.6" + dependencies: + fast-deep-equal: "npm:^3.1.1" + fast-json-stable-stringify: "npm:^2.0.0" + json-schema-traverse: "npm:^0.4.1" + uri-js: "npm:^4.2.2" + checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 + languageName: node + linkType: hard + +"ajv@npm:^8.0.0, ajv@npm:^8.11.0, ajv@npm:^8.9.0": + version: 8.17.1 + resolution: "ajv@npm:8.17.1" + dependencies: + fast-deep-equal: "npm:^3.1.3" + fast-uri: "npm:^3.0.1" + json-schema-traverse: "npm:^1.0.0" + require-from-string: "npm:^2.0.2" + checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35 + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.1.0 + resolution: "ansi-regex@npm:6.1.0" + checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: "npm:^1.9.0" + checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: "npm:^2.0.1" + checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 + languageName: node + linkType: hard + +"ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c + languageName: node + linkType: hard + +"any-date-parser@npm:^2.0.3": + version: 2.0.3 + resolution: "any-date-parser@npm:2.0.3" + checksum: 10c0/db0a8fa6566f41cb3d3855cbc6eccece76fb4cd4edde658d6831b5d4aba2a762400d4cb455781db6af9b85cb97399529c381527fd936cd2c7a7c17d7cc237dd6 + languageName: node + linkType: hard + +"arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: 10c0/ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e + languageName: node + linkType: hard + +"arktype@npm:2.0.4": + version: 2.0.4 + resolution: "arktype@npm:2.0.4" + dependencies: + "@ark/schema": "npm:0.39.0" + "@ark/util": "npm:0.39.0" + checksum: 10c0/2bff7326ffebedee74ada3456147a3adb833df939db0c48cb9a78e6aa433592cc1f1877999a2ed0559f1021b70ab1dfbdfa3a6eee2b52d0a5dd68e0249471acf + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.7": + version: 1.0.7 + resolution: "available-typed-arrays@npm:1.0.7" + dependencies: + possible-typed-array-names: "npm:^1.0.0" + checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 + languageName: node + linkType: hard + +"axios@npm:^1.7.9": + version: 1.7.9 + resolution: "axios@npm:1.7.9" + dependencies: + follow-redirects: "npm:^1.15.6" + form-data: "npm:^4.0.0" + proxy-from-env: "npm:^1.1.0" + checksum: 10c0/b7a41e24b59fee5f0f26c1fc844b45b17442832eb3a0fb42dd4f1430eb4abc571fe168e67913e8a1d91c993232bd1d1ab03e20e4d1fee8c6147649b576fc1b0b + languageName: node + linkType: hard + +"backend@workspace:.": + version: 0.0.0-use.local + resolution: "backend@workspace:." + dependencies: + "@needle-di/core": "npm:^0.10.1" + "@temporalio/activity": "npm:^1.11.7" + "@temporalio/client": "npm:^1.11.7" + "@temporalio/common": "npm:^1.11.7" + "@temporalio/worker": "npm:^1.11.7" + "@temporalio/workflow": "npm:^1.11.7" + "@types/node": "npm:^22.13.4" + "@types/object-hash": "npm:^3" + any-date-parser: "npm:^2.0.3" + arktype: "npm:2.0.4" + axios: "npm:^1.7.9" + barrelsby: "npm:^2.8.1" + chrono-node: "npm:^2.7.8" + clipanion: "npm:^4.0.0-rc.4" + cloudevents: "npm:^8.0.2" + discordeno: "npm:^21.0.0" + dotenv: "npm:^16.4.7" + hash-wasm: "npm:^4.12.0" + json-stable-stringify: "npm:^1.2.1" + object-hash: "npm:^3.0.0" + postgres: "npm:^3.4.5" + rollup: "npm:^4.34.8" + ts-markdown-builder: "npm:^0.4.0" + typescript: "npm:5.7.3" + why-is-node-running: "npm:^3.2.2" + znv: "npm:^0.4.0" + zod: "npm:^3.24.1" + zod-config: "npm:^0.1.2" + languageName: unknown + linkType: soft + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee + languageName: node + linkType: hard + +"barrelsby@npm:^2.8.1": + version: 2.8.1 + resolution: "barrelsby@npm:2.8.1" + dependencies: + "@types/yargs": "npm:^17.0.10" + signale: "npm:^1.4.0" + yargs: "npm:^17.4.1" + bin: + barrelsby: bin/cli.js + checksum: 10c0/a326d39d5e78e803dd0fb25c9a36bbf8d0a4dcc0a161063d9d71bb6840f55712bbf42cc75c0204bcdb70e7be85f59aabe2667df0998025fd361cfe18b46d1b7b + languageName: node + linkType: hard + +"bignumber.js@npm:^9.0.0": + version: 9.1.2 + resolution: "bignumber.js@npm:9.1.2" + checksum: 10c0/e17786545433f3110b868725c449fa9625366a6e675cd70eb39b60938d6adbd0158cb4b3ad4f306ce817165d37e63f4aa3098ba4110db1d9a3b9f66abfbaf10d + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: "npm:^1.0.0" + checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + languageName: node + linkType: hard + +"browserslist@npm:^4.24.0": + version: 4.24.4 + resolution: "browserslist@npm:4.24.4" + dependencies: + caniuse-lite: "npm:^1.0.30001688" + electron-to-chromium: "npm:^1.5.73" + node-releases: "npm:^2.0.19" + update-browserslist-db: "npm:^1.1.1" + bin: + browserslist: cli.js + checksum: 10c0/db7ebc1733cf471e0b490b4f47e3e2ea2947ce417192c9246644e92c667dd56a71406cc58f62ca7587caf828364892e9952904a02b7aead752bc65b62a37cfe9 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 10c0/124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 + languageName: node + linkType: hard + +"cacache@npm:^19.0.1": + version: 19.0.1 + resolution: "cacache@npm:19.0.1" + dependencies: + "@npmcli/fs": "npm:^4.0.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^10.2.2" + lru-cache: "npm:^10.0.1" + minipass: "npm:^7.0.3" + minipass-collect: "npm:^2.0.1" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + p-map: "npm:^7.0.2" + ssri: "npm:^12.0.0" + tar: "npm:^7.4.3" + unique-filename: "npm:^4.0.0" + checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c + languageName: node + linkType: hard + +"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1": + version: 1.0.2 + resolution: "call-bind-apply-helpers@npm:1.0.2" + dependencies: + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938 + languageName: node + linkType: hard + +"call-bind@npm:^1.0.8": + version: 1.0.8 + resolution: "call-bind@npm:1.0.8" + dependencies: + call-bind-apply-helpers: "npm:^1.0.0" + es-define-property: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.4" + set-function-length: "npm:^1.2.2" + checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 + languageName: node + linkType: hard + +"call-bound@npm:^1.0.2, call-bound@npm:^1.0.3": + version: 1.0.3 + resolution: "call-bound@npm:1.0.3" + dependencies: + call-bind-apply-helpers: "npm:^1.0.1" + get-intrinsic: "npm:^1.2.6" + checksum: 10c0/45257b8e7621067304b30dbd638e856cac913d31e8e00a80d6cf172911acd057846572d0b256b45e652d515db6601e2974a1b1a040e91b4fc36fb3dd86fa69cf + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001688": + version: 1.0.30001699 + resolution: "caniuse-lite@npm:1.0.30001699" + checksum: 10c0/e87b3a0602c3124131f6a21f1eb262378e17a2ee3089e3c472ac8b9caa85cf7d6a219655379302c29c6f10a74051f2a712639d7f98ee0444c73fefcbaf25d519 + languageName: node + linkType: hard + +"cargo-cp-artifact@npm:^0.1.8": + version: 0.1.9 + resolution: "cargo-cp-artifact@npm:0.1.9" + bin: + cargo-cp-artifact: bin/cargo-cp-artifact.js + checksum: 10c0/60eb1845917cfb021920fcf600a72379890b385396f9c69107face3b16b347960b66cd3d82cc169c6ac8b1212cf0706584125bc36fbc08353b033310c17ca0a6 + languageName: node + linkType: hard + +"chalk@npm:^2.3.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: "npm:^3.2.1" + escape-string-regexp: "npm:^1.0.5" + supports-color: "npm:^5.3.0" + checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 + languageName: node + linkType: hard + +"chownr@npm:^3.0.0": + version: 3.0.0 + resolution: "chownr@npm:3.0.0" + checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 + languageName: node + linkType: hard + +"chrome-trace-event@npm:^1.0.2": + version: 1.0.4 + resolution: "chrome-trace-event@npm:1.0.4" + checksum: 10c0/3058da7a5f4934b87cf6a90ef5fb68ebc5f7d06f143ed5a4650208e5d7acae47bc03ec844b29fbf5ba7e46e8daa6acecc878f7983a4f4bb7271593da91e61ff5 + languageName: node + linkType: hard + +"chrono-node@npm:^2.7.8": + version: 2.7.8 + resolution: "chrono-node@npm:2.7.8" + dependencies: + dayjs: "npm:^1.10.0" + checksum: 10c0/734af27b9cfa6aff34e41c2ec3f532a015ecb078241ab9c6a25e7503a3297109cd3503d1b74813ce453c850bdb45bf525c5b5961f35f307da2952d1ff49109ea + languageName: node + linkType: hard + +"clipanion@npm:^4.0.0-rc.4": + version: 4.0.0-rc.4 + resolution: "clipanion@npm:4.0.0-rc.4" + dependencies: + typanion: "npm:^3.8.0" + peerDependencies: + typanion: "*" + checksum: 10c0/047b415b59a5e9777d00690fba563ccc850eca6bf27790a88d1deea3ecc8a89840ae9aed554ff284cc698a9f3f20256e43c25ff4a7c4c90a71e5e7d9dca61dd1 + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.1" + wrap-ansi: "npm:^7.0.0" + checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 + languageName: node + linkType: hard + +"cloudevents@npm:^8.0.2": + version: 8.0.2 + resolution: "cloudevents@npm:8.0.2" + dependencies: + ajv: "npm:^8.11.0" + ajv-formats: "npm:^2.1.1" + json-bigint: "npm:^1.0.0" + process: "npm:^0.11.10" + util: "npm:^0.12.4" + uuid: "npm:^8.3.2" + checksum: 10c0/18fe538a37d6446dda6cbae15868e6a1dfa34baee8f63f018dd2f924048785c959c803452a78a46e215c5139d9aa56dd625f1eea4431ca2b645fcbfc06baa99b + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: "npm:1.1.3" + checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: "npm:~1.1.4" + checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 + languageName: node + linkType: hard + +"color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 + languageName: node + linkType: hard + +"colorette@npm:^2.0.19": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 10c0/e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: "npm:~1.0.0" + checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 + languageName: node + linkType: hard + +"commander@npm:^2.20.0": + version: 2.20.3 + resolution: "commander@npm:2.20.3" + checksum: 10c0/74c781a5248c2402a0a3e966a0a2bba3c054aad144f5c023364be83265e796b20565aa9feff624132ff629aa64e16999fa40a743c10c12f7c61e96a794b99288 + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.6": + version: 7.0.6 + resolution: "cross-spawn@npm:7.0.6" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 + languageName: node + linkType: hard + +"dayjs@npm:^1.10.0": + version: 1.11.13 + resolution: "dayjs@npm:1.11.13" + checksum: 10c0/a3caf6ac8363c7dade9d1ee797848ddcf25c1ace68d9fe8678ecf8ba0675825430de5d793672ec87b24a69bf04a1544b176547b2539982275d5542a7955f35b7 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.3.4": + version: 4.4.0 + resolution: "debug@npm:4.4.0" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de + languageName: node + linkType: hard + +"define-data-property@npm:^1.1.4": + version: 1.1.4 + resolution: "define-data-property@npm:1.1.4" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.0.1" + checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 + languageName: node + linkType: hard + +"discordeno@npm:^21.0.0": + version: 21.0.0 + resolution: "discordeno@npm:21.0.0" + dependencies: + "@discordeno/bot": "npm:21.0.0" + "@discordeno/gateway": "npm:21.0.0" + "@discordeno/rest": "npm:21.0.0" + "@discordeno/types": "npm:21.0.0" + "@discordeno/utils": "npm:21.0.0" + checksum: 10c0/620b1b40684851a37695cdc19689c64c532028fc9dcd47686c0e965ee7e82036f415ede4ff75e4c8e5ccba7b331f5acecdcb16e71efa9754f4792b1af5f87327 + languageName: node + linkType: hard + +"dotenv@npm:^16.4.7": + version: 16.4.7 + resolution: "dotenv@npm:16.4.7" + checksum: 10c0/be9f597e36a8daf834452daa1f4cc30e5375a5968f98f46d89b16b983c567398a330580c88395069a77473943c06b877d1ca25b4afafcdd6d4adb549e8293462 + languageName: node + linkType: hard + +"dunder-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "dunder-proto@npm:1.0.1" + dependencies: + call-bind-apply-helpers: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.2.0" + checksum: 10c0/199f2a0c1c16593ca0a145dbf76a962f8033ce3129f01284d48c45ed4e14fea9bbacd7b3610b6cdc33486cef20385ac054948fefc6272fcce645c09468f93031 + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.5.73": + version: 1.5.96 + resolution: "electron-to-chromium@npm:1.5.96" + checksum: 10c0/827d480f35abe8b0d01a4311fc3180089a406edfcd016d8433712b03ec6e56618ad6f9757e35403092de5c2e163372f9ec90eb8e8334f6f26119a21b568d9bf9 + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: "npm:^0.6.2" + checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 + languageName: node + linkType: hard + +"enhanced-resolve@npm:^5.17.1": + version: 5.18.1 + resolution: "enhanced-resolve@npm:5.18.1" + dependencies: + graceful-fs: "npm:^4.2.4" + tapable: "npm:^2.2.0" + checksum: 10c0/4cffd9b125225184e2abed9fdf0ed3dbd2224c873b165d0838fd066cde32e0918626cba2f1f4bf6860762f13a7e2364fd89a82b99566be2873d813573ac71846 + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: "npm:^0.2.1" + checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + languageName: node + linkType: hard + +"es-define-property@npm:^1.0.0, es-define-property@npm:^1.0.1": + version: 1.0.1 + resolution: "es-define-property@npm:1.0.1" + checksum: 10c0/3f54eb49c16c18707949ff25a1456728c883e81259f045003499efba399c08bad00deebf65cccde8c0e07908c1a225c9d472b7107e558f2a48e28d530e34527c + languageName: node + linkType: hard + +"es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 + languageName: node + linkType: hard + +"es-module-lexer@npm:^1.2.1": + version: 1.6.0 + resolution: "es-module-lexer@npm:1.6.0" + checksum: 10c0/667309454411c0b95c476025929881e71400d74a746ffa1ff4cb450bd87f8e33e8eef7854d68e401895039ac0bac64e7809acbebb6253e055dd49ea9e3ea9212 + languageName: node + linkType: hard + +"es-object-atoms@npm:^1.0.0": + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" + dependencies: + es-errors: "npm:^1.3.0" + checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c + languageName: node + linkType: hard + +"escalade@npm:^3.1.1, escalade@npm:^3.2.0": + version: 3.2.0 + resolution: "escalade@npm:3.2.0" + checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 + languageName: node + linkType: hard + +"eslint-scope@npm:5.1.1": + version: 5.1.1 + resolution: "eslint-scope@npm:5.1.1" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^4.1.1" + checksum: 10c0/d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a + languageName: node + linkType: hard + +"esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: "npm:^5.2.0" + checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 + languageName: node + linkType: hard + +"estraverse@npm:^4.1.1": + version: 4.3.0 + resolution: "estraverse@npm:4.3.0" + checksum: 10c0/9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d + languageName: node + linkType: hard + +"estraverse@npm:^5.2.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 + languageName: node + linkType: hard + +"event-target-shim@npm:^5.0.0": + version: 5.0.1 + resolution: "event-target-shim@npm:5.0.1" + checksum: 10c0/0255d9f936215fd206156fd4caa9e8d35e62075d720dc7d847e89b417e5e62cf1ce6c9b4e0a1633a9256de0efefaf9f8d26924b1f3c8620cffb9db78e7d3076b + languageName: node + linkType: hard + +"events@npm:^3.2.0": + version: 3.3.0 + resolution: "events@npm:3.3.0" + checksum: 10c0/d6b6f2adbccbcda74ddbab52ed07db727ef52e31a61ed26db9feb7dc62af7fc8e060defa65e5f8af9449b86b52cc1a1f6a79f2eafcf4e62add2b7a1fa4a432f6 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.2 + resolution: "exponential-backoff@npm:3.1.2" + checksum: 10c0/d9d3e1eafa21b78464297df91f1776f7fbaa3d5e3f7f0995648ca5b89c069d17055033817348d9f4a43d1c20b0eab84f75af6991751e839df53e4dfd6f22e844 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.0.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b + languageName: node + linkType: hard + +"fast-uri@npm:^3.0.1": + version: 3.0.6 + resolution: "fast-uri@npm:3.0.6" + checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29 + languageName: node + linkType: hard + +"figures@npm:^2.0.0": + version: 2.0.0 + resolution: "figures@npm:2.0.0" + dependencies: + escape-string-regexp: "npm:^1.0.5" + checksum: 10c0/5dc5a75fec3e7e04ae65d6ce51d28b3e70d4656c51b06996b6fdb2cb5b542df512e3b3c04482f5193a964edddafa5521479ff948fa84e12ff556e53e094ab4ce + languageName: node + linkType: hard + +"find-up@npm:^2.0.0": + version: 2.1.0 + resolution: "find-up@npm:2.1.0" + dependencies: + locate-path: "npm:^2.0.0" + checksum: 10c0/c080875c9fe28eb1962f35cbe83c683796a0321899f1eed31a37577800055539815de13d53495049697d3ba313013344f843bb9401dd337a1b832be5edfc6840 + languageName: node + linkType: hard + +"follow-redirects@npm:^1.15.6": + version: 1.15.9 + resolution: "follow-redirects@npm:1.15.9" + peerDependenciesMeta: + debug: + optional: true + checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.5 + resolution: "for-each@npm:0.3.5" + dependencies: + is-callable: "npm:^1.2.7" + checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.3.1 + resolution: "foreground-child@npm:3.3.1" + dependencies: + cross-spawn: "npm:^7.0.6" + signal-exit: "npm:^4.0.1" + checksum: 10c0/8986e4af2430896e65bc2788d6679067294d6aee9545daefc84923a0a4b399ad9c7a3ea7bd8c0b2b80fdf4a92de4c69df3f628233ff3224260e9c1541a9e9ed3 + languageName: node + linkType: hard + +"form-data@npm:^4.0.0": + version: 4.0.1 + resolution: "form-data@npm:4.0.1" + dependencies: + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + mime-types: "npm:^2.1.12" + checksum: 10c0/bb102d570be8592c23f4ea72d7df9daa50c7792eb0cf1c5d7e506c1706e7426a4e4ae48a35b109e91c85f1c0ec63774a21ae252b66f4eb981cb8efef7d0463c8 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + languageName: node + linkType: hard + +"fs-monkey@npm:^1.0.0": + version: 1.0.6 + resolution: "fs-monkey@npm:1.0.6" + checksum: 10c0/6f2508e792a47e37b7eabd5afc79459c1ea72bce2a46007d2b7ed0bfc3a4d64af38975c6eb7e93edb69ac98bbb907c13ff1b1579b2cf52d3d02dbc0303fca79f + languageName: node + linkType: hard + +"fsevents@npm:~2.3.2": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: "npm:latest" + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 + languageName: node + linkType: hard + +"fzstd@npm:^0.1.1": + version: 0.1.1 + resolution: "fzstd@npm:0.1.1" + checksum: 10c0/c4ae25a4b9e7ac58e9716fcb0c4ec19f3e678d90a67a59e97ce361beb27e4aa4b8666b58b4dc2d715e92db4b65b189c978186a5fedba6fccb5ec9765717dd1cd + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.6": + version: 1.2.7 + resolution: "get-intrinsic@npm:1.2.7" + dependencies: + call-bind-apply-helpers: "npm:^1.0.1" + es-define-property: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + function-bind: "npm:^1.1.2" + get-proto: "npm:^1.0.0" + gopd: "npm:^1.2.0" + has-symbols: "npm:^1.1.0" + hasown: "npm:^2.0.2" + math-intrinsics: "npm:^1.1.0" + checksum: 10c0/b475dec9f8bff6f7422f51ff4b7b8d0b68e6776ee83a753c1d627e3008c3442090992788038b37eff72e93e43dceed8c1acbdf2d6751672687ec22127933080d + languageName: node + linkType: hard + +"get-proto@npm:^1.0.0": + version: 1.0.1 + resolution: "get-proto@npm:1.0.1" + dependencies: + dunder-proto: "npm:^1.0.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/9224acb44603c5526955e83510b9da41baf6ae73f7398875fba50edc5e944223a89c4a72b070fcd78beb5f7bdda58ecb6294adc28f7acfc0da05f76a2399643c + languageName: node + linkType: hard + +"glob-to-regexp@npm:^0.4.1": + version: 0.4.1 + resolution: "glob-to-regexp@npm:0.4.1" + checksum: 10c0/0486925072d7a916f052842772b61c3e86247f0a80cc0deb9b5a3e8a1a9faad5b04fb6f58986a09f34d3e96cd2a22a24b7e9882fb1cf904c31e9a310de96c429 + languageName: node + linkType: hard + +"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7": + version: 10.4.5 + resolution: "glob@npm:10.4.5" + dependencies: + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^3.1.2" + minimatch: "npm:^9.0.4" + minipass: "npm:^7.1.2" + package-json-from-dist: "npm:^1.0.0" + path-scurry: "npm:^1.11.1" + bin: + glob: dist/esm/bin.mjs + checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e + languageName: node + linkType: hard + +"gopd@npm:^1.0.1, gopd@npm:^1.2.0": + version: 1.2.0 + resolution: "gopd@npm:1.2.0" + checksum: 10c0/50fff1e04ba2b7737c097358534eacadad1e68d24cccee3272e04e007bed008e68d2614f3987788428fd192a5ae3889d08fb2331417e4fc4a9ab366b2043cead + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 + languageName: node + linkType: hard + +"has-property-descriptors@npm:^1.0.2": + version: 1.0.2 + resolution: "has-property-descriptors@npm:1.0.2" + dependencies: + es-define-property: "npm:^1.0.0" + checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0": + version: 1.1.0 + resolution: "has-symbols@npm:1.1.0" + checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" + dependencies: + has-symbols: "npm:^1.0.3" + checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c + languageName: node + linkType: hard + +"hash-wasm@npm:^4.12.0": + version: 4.12.0 + resolution: "hash-wasm@npm:4.12.0" + checksum: 10c0/6cb95055319810b6f673de755289960683a9831807690795f0e8918b2fd7e6ae5b82a9dc47cbace171cf2814b412ef68c315a0ead0b4d96bd3e56a05e4bde136 + languageName: node + linkType: hard + +"hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: "npm:^1.1.2" + checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + languageName: node + linkType: hard + +"heap-js@npm:^2.3.0": + version: 2.6.0 + resolution: "heap-js@npm:2.6.0" + checksum: 10c0/49fad329f38987ee5cf76841e504b5a6b537781718997a7f4922a706be80afc07f6d92c77ae7036c7ed16ceaa6258d0d294793a120c12389926138edcb73876e + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.1": + version: 7.0.6 + resolution: "https-proxy-agent@npm:7.0.6" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:4" + checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac + languageName: node + linkType: hard + +"hyperdyperid@npm:^1.2.0": + version: 1.2.0 + resolution: "hyperdyperid@npm:1.2.0" + checksum: 10c0/885ba3177c7181d315a856ee9c0005ff8eb5dcb1ce9e9d61be70987895d934d84686c37c981cceeb53216d4c9c15c1cc25f1804e84cc6a74a16993c5d7fd0893 + languageName: node + linkType: hard + +"iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 + languageName: node + linkType: hard + +"inherits@npm:^2.0.3": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 + languageName: node + linkType: hard + +"ip-address@npm:^9.0.5": + version: 9.0.5 + resolution: "ip-address@npm:9.0.5" + dependencies: + jsbn: "npm:1.1.0" + sprintf-js: "npm:^1.1.3" + checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc + languageName: node + linkType: hard + +"is-arguments@npm:^1.0.4": + version: 1.2.0 + resolution: "is-arguments@npm:1.2.0" + dependencies: + call-bound: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/6377344b31e9fcb707c6751ee89b11f132f32338e6a782ec2eac9393b0cbd32235dad93052998cda778ee058754860738341d8114910d50ada5615912bb929fc + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 + languageName: node + linkType: hard + +"is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc + languageName: node + linkType: hard + +"is-generator-function@npm:^1.0.7": + version: 1.1.0 + resolution: "is-generator-function@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.3" + get-proto: "npm:^1.0.0" + has-tostringtag: "npm:^1.0.2" + safe-regex-test: "npm:^1.1.0" + checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a + languageName: node + linkType: hard + +"is-regex@npm:^1.2.1": + version: 1.2.1 + resolution: "is-regex@npm:1.2.1" + dependencies: + call-bound: "npm:^1.0.2" + gopd: "npm:^1.2.0" + has-tostringtag: "npm:^1.0.2" + hasown: "npm:^2.0.2" + checksum: 10c0/1d3715d2b7889932349241680032e85d0b492cfcb045acb75ffc2c3085e8d561184f1f7e84b6f8321935b4aea39bc9c6ba74ed595b57ce4881a51dfdbc214e04 + languageName: node + linkType: hard + +"is-typed-array@npm:^1.1.3": + version: 1.1.15 + resolution: "is-typed-array@npm:1.1.15" + dependencies: + which-typed-array: "npm:^1.1.16" + checksum: 10c0/415511da3669e36e002820584e264997ffe277ff136643a3126cc949197e6ca3334d0f12d084e83b1994af2e9c8141275c741cf2b7da5a2ff62dd0cac26f76c4 + languageName: node + linkType: hard + +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d + languageName: node + linkType: hard + +"isexe@npm:^3.1.1": + version: 3.1.1 + resolution: "isexe@npm:3.1.1" + checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 + languageName: node + linkType: hard + +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 + languageName: node + linkType: hard + +"jest-worker@npm:^27.4.5": + version: 27.5.1 + resolution: "jest-worker@npm:27.5.1" + dependencies: + "@types/node": "npm:*" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^8.0.0" + checksum: 10c0/8c4737ffd03887b3c6768e4cc3ca0269c0336c1e4b1b120943958ddb035ed2a0fc6acab6dc99631720a3720af4e708ff84fb45382ad1e83c27946adf3623969b + languageName: node + linkType: hard + +"jsbn@npm:1.1.0": + version: 1.1.0 + resolution: "jsbn@npm:1.1.0" + checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 + languageName: node + linkType: hard + +"json-bigint@npm:^1.0.0": + version: 1.0.0 + resolution: "json-bigint@npm:1.0.0" + dependencies: + bignumber.js: "npm:^9.0.0" + checksum: 10c0/e3f34e43be3284b573ea150a3890c92f06d54d8ded72894556357946aeed9877fd795f62f37fe16509af189fd314ab1104d0fd0f163746ad231b9f378f5b33f4 + languageName: node + linkType: hard + +"json-parse-better-errors@npm:^1.0.1": + version: 1.0.2 + resolution: "json-parse-better-errors@npm:1.0.2" + checksum: 10c0/2f1287a7c833e397c9ddd361a78638e828fc523038bb3441fd4fc144cfd2c6cd4963ffb9e207e648cf7b692600f1e1e524e965c32df5152120910e4903a47dcb + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.1": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce + languageName: node + linkType: hard + +"json-schema-traverse@npm:^1.0.0": + version: 1.0.0 + resolution: "json-schema-traverse@npm:1.0.0" + checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 + languageName: node + linkType: hard + +"json-stable-stringify@npm:^1.2.1": + version: 1.2.1 + resolution: "json-stable-stringify@npm:1.2.1" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + isarray: "npm:^2.0.5" + jsonify: "npm:^0.0.1" + object-keys: "npm:^1.1.1" + checksum: 10c0/e623e7ce89282f089d56454087edb717357e8572089b552fbc6980fb7814dc3943f7d0e4f1a19429a36ce9f4428b6c8ee6883357974457aaaa98daba5adebeea + languageName: node + linkType: hard + +"jsonify@npm:^0.0.1": + version: 0.0.1 + resolution: "jsonify@npm:0.0.1" + checksum: 10c0/7f5499cdd59a0967ed35bda48b7cec43d850bbc8fb955cdd3a1717bb0efadbe300724d5646de765bb7a99fc1c3ab06eb80d93503c6faaf99b4ff50a3326692f6 + languageName: node + linkType: hard + +"load-json-file@npm:^4.0.0": + version: 4.0.0 + resolution: "load-json-file@npm:4.0.0" + dependencies: + graceful-fs: "npm:^4.1.2" + parse-json: "npm:^4.0.0" + pify: "npm:^3.0.0" + strip-bom: "npm:^3.0.0" + checksum: 10c0/6b48f6a0256bdfcc8970be2c57f68f10acb2ee7e63709b386b2febb6ad3c86198f840889cdbe71d28f741cbaa2f23a7771206b138cd1bdd159564511ca37c1d5 + languageName: node + linkType: hard + +"loader-runner@npm:^4.2.0": + version: 4.3.0 + resolution: "loader-runner@npm:4.3.0" + checksum: 10c0/a44d78aae0907a72f73966fe8b82d1439c8c485238bd5a864b1b9a2a3257832effa858790241e6b37876b5446a78889adf2fcc8dd897ce54c089ecc0a0ce0bf0 + languageName: node + linkType: hard + +"locate-path@npm:^2.0.0": + version: 2.0.0 + resolution: "locate-path@npm:2.0.0" + dependencies: + p-locate: "npm:^2.0.0" + path-exists: "npm:^3.0.0" + checksum: 10c0/24efa0e589be6aa3c469b502f795126b26ab97afa378846cb508174211515633b770aa0ba610cab113caedab8d2a4902b061a08aaed5297c12ab6f5be4df0133 + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: 10c0/fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 + languageName: node + linkType: hard + +"long@npm:^5.0.0, long@npm:^5.2.3": + version: 5.2.4 + resolution: "long@npm:5.2.4" + checksum: 10c0/0cf819ce2a7bbe48663e79233917552c7667b11e68d4d9ea4ebb99173042509d9af461e5211c22939b913332c264d9a1135937ea533cbd05bc4f8cf46f6d2e07 + languageName: node + linkType: hard + +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb + languageName: node + linkType: hard + +"make-fetch-happen@npm:^14.0.3": + version: 14.0.3 + resolution: "make-fetch-happen@npm:14.0.3" + dependencies: + "@npmcli/agent": "npm:^3.0.0" + cacache: "npm:^19.0.1" + http-cache-semantics: "npm:^4.1.1" + minipass: "npm:^7.0.2" + minipass-fetch: "npm:^4.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^1.0.0" + proc-log: "npm:^5.0.0" + promise-retry: "npm:^2.0.1" + ssri: "npm:^12.0.0" + checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0 + languageName: node + linkType: hard + +"math-intrinsics@npm:^1.1.0": + version: 1.1.0 + resolution: "math-intrinsics@npm:1.1.0" + checksum: 10c0/7579ff94e899e2f76ab64491d76cf606274c874d8f2af4a442c016bd85688927fcfca157ba6bf74b08e9439dc010b248ce05b96cc7c126a354c3bae7fcb48b7f + languageName: node + linkType: hard + +"memfs@npm:^4.6.0": + version: 4.17.0 + resolution: "memfs@npm:4.17.0" + dependencies: + "@jsonjoy.com/json-pack": "npm:^1.0.3" + "@jsonjoy.com/util": "npm:^1.3.0" + tree-dump: "npm:^1.0.1" + tslib: "npm:^2.0.0" + checksum: 10c0/2901f69e80e1fbefa8aafe994a253fff6f34eb176d8b80d57476311611e516a11ab4dd93f852c8739fe04f2b57d6a4ca7a1828fa0bd401ce631bcac214b3d58b + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 10c0/867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 + languageName: node + linkType: hard + +"mime-db@npm:1.52.0": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa + languageName: node + linkType: hard + +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.27": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: "npm:1.52.0" + checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e + languageName: node + linkType: hard + +"minipass-fetch@npm:^4.0.0": + version: 4.0.1 + resolution: "minipass-fetch@npm:4.0.1" + dependencies: + encoding: "npm:^0.1.13" + minipass: "npm:^7.0.3" + minipass-sized: "npm:^1.0.3" + minizlib: "npm:^3.0.1" + dependenciesMeta: + encoding: + optional: true + checksum: 10c0/a3147b2efe8e078c9bf9d024a0059339c5a09c5b1dded6900a219c218cc8b1b78510b62dae556b507304af226b18c3f1aeb1d48660283602d5b6586c399eed5c + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 + languageName: node + linkType: hard + +"minizlib@npm:^3.0.1": + version: 3.0.1 + resolution: "minizlib@npm:3.0.1" + dependencies: + minipass: "npm:^7.0.4" + rimraf: "npm:^5.0.5" + checksum: 10c0/82f8bf70da8af656909a8ee299d7ed3b3372636749d29e105f97f20e88971be31f5ed7642f2e898f00283b68b701cc01307401cdc209b0efc5dd3818220e5093 + languageName: node + linkType: hard + +"mkdirp@npm:^3.0.1": + version: 3.0.1 + resolution: "mkdirp@npm:3.0.1" + bin: + mkdirp: dist/cjs/src/bin.js + checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d + languageName: node + linkType: hard + +"ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 + languageName: node + linkType: hard + +"ms@npm:^3.0.0-canary.1": + version: 3.0.0-canary.1 + resolution: "ms@npm:3.0.0-canary.1" + checksum: 10c0/81040c55778c01b6cb8fd35aee71465b765a8ab5daa2f8d46a59f9fde0f86c668483232c82c9e8fb7d9379a3671b3bdd5f34b38e54dcedb608d791d149bb2815 + languageName: node + linkType: hard + +"negotiator@npm:^1.0.0": + version: 1.0.0 + resolution: "negotiator@npm:1.0.0" + checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b + languageName: node + linkType: hard + +"neo-async@npm:^2.6.2": + version: 2.6.2 + resolution: "neo-async@npm:2.6.2" + checksum: 10c0/c2f5a604a54a8ec5438a342e1f356dff4bc33ccccdb6dc668d94fe8e5eccfc9d2c2eea6064b0967a767ba63b33763f51ccf2cd2441b461a7322656c1f06b3f5d + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 11.1.0 + resolution: "node-gyp@npm:11.1.0" + dependencies: + env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" + glob: "npm:^10.3.10" + graceful-fs: "npm:^4.2.6" + make-fetch-happen: "npm:^14.0.3" + nopt: "npm:^8.0.0" + proc-log: "npm:^5.0.0" + semver: "npm:^7.3.5" + tar: "npm:^7.4.3" + which: "npm:^5.0.0" + bin: + node-gyp: bin/node-gyp.js + checksum: 10c0/c38977ce502f1ea41ba2b8721bd5b49bc3d5b3f813eabfac8414082faf0620ccb5211e15c4daecc23ed9f5e3e9cc4da00e575a0bcfc2a95a069294f2afa1e0cd + languageName: node + linkType: hard + +"node-releases@npm:^2.0.19": + version: 2.0.19 + resolution: "node-releases@npm:2.0.19" + checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa + languageName: node + linkType: hard + +"nopt@npm:^8.0.0": + version: 8.1.0 + resolution: "nopt@npm:8.1.0" + dependencies: + abbrev: "npm:^3.0.0" + bin: + nopt: bin/nopt.js + checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef + languageName: node + linkType: hard + +"object-hash@npm:^3.0.0": + version: 3.0.0 + resolution: "object-hash@npm:3.0.0" + checksum: 10c0/a06844537107b960c1c8b96cd2ac8592a265186bfa0f6ccafe0d34eabdb526f6fa81da1f37c43df7ed13b12a4ae3457a16071603bcd39d8beddb5f08c37b0f47 + languageName: node + linkType: hard + +"object-keys@npm:^1.1.1": + version: 1.1.1 + resolution: "object-keys@npm:1.1.1" + checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d + languageName: node + linkType: hard + +"p-limit@npm:^1.1.0": + version: 1.3.0 + resolution: "p-limit@npm:1.3.0" + dependencies: + p-try: "npm:^1.0.0" + checksum: 10c0/5c1b1d53d180b2c7501efb04b7c817448e10efe1ba46f4783f8951994d5027e4cd88f36ad79af50546682594c4ebd11702ac4b9364c47f8074890e2acad0edee + languageName: node + linkType: hard + +"p-locate@npm:^2.0.0": + version: 2.0.0 + resolution: "p-locate@npm:2.0.0" + dependencies: + p-limit: "npm:^1.1.0" + checksum: 10c0/82da4be88fb02fd29175e66021610c881938d3cc97c813c71c1a605fac05617d57fd5d3b337494a6106c0edb2a37c860241430851411f1b265108cead34aee67 + languageName: node + linkType: hard + +"p-map@npm:^7.0.2": + version: 7.0.3 + resolution: "p-map@npm:7.0.3" + checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c + languageName: node + linkType: hard + +"p-try@npm:^1.0.0": + version: 1.0.0 + resolution: "p-try@npm:1.0.0" + checksum: 10c0/757ba31de5819502b80c447826fac8be5f16d3cb4fbf9bc8bc4971dba0682e84ac33e4b24176ca7058c69e29f64f34d8d9e9b08e873b7b7bb0aa89d620fa224a + languageName: node + linkType: hard + +"package-json-from-dist@npm:^1.0.0": + version: 1.0.1 + resolution: "package-json-from-dist@npm:1.0.1" + checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b + languageName: node + linkType: hard + +"parse-json@npm:^4.0.0": + version: 4.0.0 + resolution: "parse-json@npm:4.0.0" + dependencies: + error-ex: "npm:^1.3.1" + json-parse-better-errors: "npm:^1.0.1" + checksum: 10c0/8d80790b772ccb1bcea4e09e2697555e519d83d04a77c2b4237389b813f82898943a93ffff7d0d2406203bdd0c30dcf95b1661e3a53f83d0e417f053957bef32 + languageName: node + linkType: hard + +"path-exists@npm:^3.0.0": + version: 3.0.0 + resolution: "path-exists@npm:3.0.0" + checksum: 10c0/17d6a5664bc0a11d48e2b2127d28a0e58822c6740bde30403f08013da599182289c56518bec89407e3f31d3c2b6b296a4220bc3f867f0911fee6952208b04167 + languageName: node + linkType: hard + +"path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c + languageName: node + linkType: hard + +"path-scurry@npm:^1.11.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" + dependencies: + lru-cache: "npm:^10.2.0" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d + languageName: node + linkType: hard + +"picocolors@npm:^1.1.1": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 + languageName: node + linkType: hard + +"pify@npm:^3.0.0": + version: 3.0.0 + resolution: "pify@npm:3.0.0" + checksum: 10c0/fead19ed9d801f1b1fcd0638a1ac53eabbb0945bf615f2f8806a8b646565a04a1b0e7ef115c951d225f042cca388fdc1cd3add46d10d1ed6951c20bd2998af10 + languageName: node + linkType: hard + +"pkg-conf@npm:^2.1.0": + version: 2.1.0 + resolution: "pkg-conf@npm:2.1.0" + dependencies: + find-up: "npm:^2.0.0" + load-json-file: "npm:^4.0.0" + checksum: 10c0/e1474a4f7714ee78204b4a7f2316dec9e59887762bdc126ebd0eb701bbde7c6a6da65c4dc9c2a7c1eaeee49914009bf4a4368f5d9894c596ddf812ff982fdb05 + languageName: node + linkType: hard + +"possible-typed-array-names@npm:^1.0.0": + version: 1.1.0 + resolution: "possible-typed-array-names@npm:1.1.0" + checksum: 10c0/c810983414142071da1d644662ce4caebce890203eb2bc7bf119f37f3fe5796226e117e6cca146b521921fa6531072674174a3325066ac66fce089a53e1e5196 + languageName: node + linkType: hard + +"postgres@npm:^3.4.5": + version: 3.4.5 + resolution: "postgres@npm:3.4.5" + checksum: 10c0/53415acea77e97bdc1eeb861048f34964e2236e4d4d42f408fc9b901e62bfcf7443a487ebfdad18b57b468c6e297bf8d22097106a200f62eb1262eb5a71355df + languageName: node + linkType: hard + +"proc-log@npm:^5.0.0": + version: 5.0.0 + resolution: "proc-log@npm:5.0.0" + checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3 + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: 10c0/40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3 + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: "npm:^2.0.2" + retry: "npm:^0.12.0" + checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 + languageName: node + linkType: hard + +"proto3-json-serializer@npm:^2.0.0": + version: 2.0.2 + resolution: "proto3-json-serializer@npm:2.0.2" + dependencies: + protobufjs: "npm:^7.2.5" + checksum: 10c0/802e6a34f6ebf07007b186768f1985494bdfa6dd92e14c89d10cda6c4cc14df707ad59b75054a17a582f481db12c7663d25f91f505d2a85d7d4174eb5d798628 + languageName: node + linkType: hard + +"protobufjs@npm:^7.2.5": + version: 7.4.0 + resolution: "protobufjs@npm:7.4.0" + dependencies: + "@protobufjs/aspromise": "npm:^1.1.2" + "@protobufjs/base64": "npm:^1.1.2" + "@protobufjs/codegen": "npm:^2.0.4" + "@protobufjs/eventemitter": "npm:^1.1.0" + "@protobufjs/fetch": "npm:^1.1.0" + "@protobufjs/float": "npm:^1.0.2" + "@protobufjs/inquire": "npm:^1.1.0" + "@protobufjs/path": "npm:^1.1.2" + "@protobufjs/pool": "npm:^1.1.0" + "@protobufjs/utf8": "npm:^1.1.0" + "@types/node": "npm:>=13.7.0" + long: "npm:^5.0.0" + checksum: 10c0/a5460a63fe596523b9a067cbce39a6b310d1a71750fda261f076535662aada97c24450e18c5bc98a27784f70500615904ff1227e1742183509f0db4fdede669b + languageName: node + linkType: hard + +"proxy-from-env@npm:^1.1.0": + version: 1.1.0 + resolution: "proxy-from-env@npm:1.1.0" + checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b + languageName: node + linkType: hard + +"punycode@npm:^2.1.0": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 + languageName: node + linkType: hard + +"randombytes@npm:^2.1.0": + version: 2.1.0 + resolution: "randombytes@npm:2.1.0" + dependencies: + safe-buffer: "npm:^5.1.0" + checksum: 10c0/50395efda7a8c94f5dffab564f9ff89736064d32addf0cc7e8bf5e4166f09f8ded7a0849ca6c2d2a59478f7d90f78f20d8048bca3cdf8be09d8e8a10790388f3 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe + languageName: node + linkType: hard + +"rimraf@npm:^5.0.5": + version: 5.0.10 + resolution: "rimraf@npm:5.0.10" + dependencies: + glob: "npm:^10.3.7" + bin: + rimraf: dist/esm/bin.mjs + checksum: 10c0/7da4fd0e15118ee05b918359462cfa1e7fe4b1228c7765195a45b55576e8c15b95db513b8466ec89129666f4af45ad978a3057a02139afba1a63512a2d9644cc + languageName: node + linkType: hard + +"rollup@npm:^4.34.8": + version: 4.34.8 + resolution: "rollup@npm:4.34.8" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.34.8" + "@rollup/rollup-android-arm64": "npm:4.34.8" + "@rollup/rollup-darwin-arm64": "npm:4.34.8" + "@rollup/rollup-darwin-x64": "npm:4.34.8" + "@rollup/rollup-freebsd-arm64": "npm:4.34.8" + "@rollup/rollup-freebsd-x64": "npm:4.34.8" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.8" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.34.8" + "@rollup/rollup-linux-arm64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-arm64-musl": "npm:4.34.8" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.8" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-s390x-gnu": "npm:4.34.8" + "@rollup/rollup-linux-x64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-x64-musl": "npm:4.34.8" + "@rollup/rollup-win32-arm64-msvc": "npm:4.34.8" + "@rollup/rollup-win32-ia32-msvc": "npm:4.34.8" + "@rollup/rollup-win32-x64-msvc": "npm:4.34.8" + "@types/estree": "npm:1.0.6" + fsevents: "npm:~2.3.2" + dependenciesMeta: + "@rollup/rollup-android-arm-eabi": + optional: true + "@rollup/rollup-android-arm64": + optional: true + "@rollup/rollup-darwin-arm64": + optional: true + "@rollup/rollup-darwin-x64": + optional: true + "@rollup/rollup-freebsd-arm64": + optional: true + "@rollup/rollup-freebsd-x64": + optional: true + "@rollup/rollup-linux-arm-gnueabihf": + optional: true + "@rollup/rollup-linux-arm-musleabihf": + optional: true + "@rollup/rollup-linux-arm64-gnu": + optional: true + "@rollup/rollup-linux-arm64-musl": + optional: true + "@rollup/rollup-linux-loongarch64-gnu": + optional: true + "@rollup/rollup-linux-powerpc64le-gnu": + optional: true + "@rollup/rollup-linux-riscv64-gnu": + optional: true + "@rollup/rollup-linux-s390x-gnu": + optional: true + "@rollup/rollup-linux-x64-gnu": + optional: true + "@rollup/rollup-linux-x64-musl": + optional: true + "@rollup/rollup-win32-arm64-msvc": + optional: true + "@rollup/rollup-win32-ia32-msvc": + optional: true + "@rollup/rollup-win32-x64-msvc": + optional: true + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: 10c0/b9e711e33413112fbb761107c3fddc4561dfc74335c393542a829a85ccfb2763bfd17bf2422d84a2e9bee7646e5367018973e97005fdf64e49c2e209612f0eb6 + languageName: node + linkType: hard + +"rxjs@npm:^7.8.1": + version: 7.8.1 + resolution: "rxjs@npm:7.8.1" + dependencies: + tslib: "npm:^2.1.0" + checksum: 10c0/3c49c1ecd66170b175c9cacf5cef67f8914dcbc7cd0162855538d365c83fea631167cacb644b3ce533b2ea0e9a4d0b12175186985f89d75abe73dbd8f7f06f68 + languageName: node + linkType: hard + +"safe-buffer@npm:^5.1.0": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.1.0": + version: 1.1.0 + resolution: "safe-regex-test@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.2" + es-errors: "npm:^1.3.0" + is-regex: "npm:^1.2.1" + checksum: 10c0/f2c25281bbe5d39cddbbce7f86fca5ea9b3ce3354ea6cd7c81c31b006a5a9fff4286acc5450a3b9122c56c33eba69c56b9131ad751457b2b4a585825e6a10665 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3.0.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 + languageName: node + linkType: hard + +"schema-utils@npm:^3.2.0": + version: 3.3.0 + resolution: "schema-utils@npm:3.3.0" + dependencies: + "@types/json-schema": "npm:^7.0.8" + ajv: "npm:^6.12.5" + ajv-keywords: "npm:^3.5.2" + checksum: 10c0/fafdbde91ad8aa1316bc543d4b61e65ea86970aebbfb750bfb6d8a6c287a23e415e0e926c2498696b242f63af1aab8e585252637fabe811fd37b604351da6500 + languageName: node + linkType: hard + +"schema-utils@npm:^4.3.0": + version: 4.3.0 + resolution: "schema-utils@npm:4.3.0" + dependencies: + "@types/json-schema": "npm:^7.0.9" + ajv: "npm:^8.9.0" + ajv-formats: "npm:^2.1.1" + ajv-keywords: "npm:^5.1.0" + checksum: 10c0/c23f0fa73ef71a01d4a2bb7af4c91e0d356ec640e071aa2d06ea5e67f042962bb7ac7c29a60a295bb0125878801bc3209197a2b8a833dd25bd38e37c3ed21427 + languageName: node + linkType: hard + +"semver@npm:^7.3.5": + version: 7.7.1 + resolution: "semver@npm:7.7.1" + bin: + semver: bin/semver.js + checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958 + languageName: node + linkType: hard + +"serialize-javascript@npm:^6.0.2": + version: 6.0.2 + resolution: "serialize-javascript@npm:6.0.2" + dependencies: + randombytes: "npm:^2.1.0" + checksum: 10c0/2dd09ef4b65a1289ba24a788b1423a035581bef60817bea1f01eda8e3bda623f86357665fe7ac1b50f6d4f583f97db9615b3f07b2a2e8cbcb75033965f771dd2 + languageName: node + linkType: hard + +"set-function-length@npm:^1.2.2": + version: 1.2.2 + resolution: "set-function-length@npm:1.2.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: "npm:^3.0.0" + checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 + languageName: node + linkType: hard + +"signale@npm:^1.4.0": + version: 1.4.0 + resolution: "signale@npm:1.4.0" + dependencies: + chalk: "npm:^2.3.2" + figures: "npm:^2.0.0" + pkg-conf: "npm:^2.1.0" + checksum: 10c0/3b637421368a30805da3948f82350cb9959ddfb19073f44609495384b98baba1c62b1c5c094db57000836c8bc84c6c05c979aa7e072ceeaaf0032d7991b329c7 + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.3": + version: 8.0.5 + resolution: "socks-proxy-agent@npm:8.0.5" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:^4.3.4" + socks: "npm:^2.8.3" + checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 + languageName: node + linkType: hard + +"socks@npm:^2.8.3": + version: 2.8.4 + resolution: "socks@npm:2.8.4" + dependencies: + ip-address: "npm:^9.0.5" + smart-buffer: "npm:^4.2.0" + checksum: 10c0/00c3271e233ccf1fb83a3dd2060b94cc37817e0f797a93c560b9a7a86c4a0ec2961fb31263bdd24a3c28945e24868b5f063cd98744171d9e942c513454b50ae5 + languageName: node + linkType: hard + +"source-map-js@npm:^1.0.2": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf + languageName: node + linkType: hard + +"source-map-loader@npm:^4.0.2": + version: 4.0.2 + resolution: "source-map-loader@npm:4.0.2" + dependencies: + iconv-lite: "npm:^0.6.3" + source-map-js: "npm:^1.0.2" + peerDependencies: + webpack: ^5.72.1 + checksum: 10c0/8e9c67e5ed26551efd5e09800775e776f6867d43814259280eaec2fa6697852d3bbd74c895ce7d34b434c6f12c96a9d7eaf937a331895bacd2bab758686b052c + languageName: node + linkType: hard + +"source-map-support@npm:~0.5.20": + version: 0.5.21 + resolution: "source-map-support@npm:0.5.21" + dependencies: + buffer-from: "npm:^1.0.0" + source-map: "npm:^0.6.0" + checksum: 10c0/9ee09942f415e0f721d6daad3917ec1516af746a8120bba7bb56278707a37f1eb8642bde456e98454b8a885023af81a16e646869975f06afc1a711fb90484e7d + languageName: node + linkType: hard + +"source-map@npm:^0.6.0": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 + languageName: node + linkType: hard + +"source-map@npm:^0.7.4": + version: 0.7.4 + resolution: "source-map@npm:0.7.4" + checksum: 10c0/dc0cf3768fe23c345ea8760487f8c97ef6fca8a73c83cd7c9bf2fde8bc2c34adb9c0824d6feb14bc4f9e37fb522e18af621543f1289038a66ac7586da29aa7dc + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.3": + version: 1.1.3 + resolution: "sprintf-js@npm:1.1.3" + checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec + languageName: node + linkType: hard + +"ssri@npm:^12.0.0": + version: 12.0.0 + resolution: "ssri@npm:12.0.0" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: "npm:^8.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + strip-ansi: "npm:^6.0.1" + checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^9.2.2" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: "npm:^5.0.1" + checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: "npm:^6.0.1" + checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 + languageName: node + linkType: hard + +"strip-bom@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-bom@npm:3.0.0" + checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: "npm:^3.0.0" + checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0, supports-color@npm:^8.1.1": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 + languageName: node + linkType: hard + +"swc-loader@npm:^0.2.3": + version: 0.2.6 + resolution: "swc-loader@npm:0.2.6" + dependencies: + "@swc/counter": "npm:^0.1.3" + peerDependencies: + "@swc/core": ^1.2.147 + webpack: ">=2" + checksum: 10c0/b06926c5cb153931589c2166aa4c7c052cc53c68758acdda480d1eb59ecddf7d74b168e33166c4f807cc9dbae4395de9d80a14ad43e265fffaa775638abf71ce + languageName: node + linkType: hard + +"tapable@npm:^2.1.1, tapable@npm:^2.2.0": + version: 2.2.1 + resolution: "tapable@npm:2.2.1" + checksum: 10c0/bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9 + languageName: node + linkType: hard + +"tar@npm:^7.4.3": + version: 7.4.3 + resolution: "tar@npm:7.4.3" + dependencies: + "@isaacs/fs-minipass": "npm:^4.0.0" + chownr: "npm:^3.0.0" + minipass: "npm:^7.1.2" + minizlib: "npm:^3.0.1" + mkdirp: "npm:^3.0.1" + yallist: "npm:^5.0.0" + checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d + languageName: node + linkType: hard + +"terser-webpack-plugin@npm:^5.3.10": + version: 5.3.11 + resolution: "terser-webpack-plugin@npm:5.3.11" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.25" + jest-worker: "npm:^27.4.5" + schema-utils: "npm:^4.3.0" + serialize-javascript: "npm:^6.0.2" + terser: "npm:^5.31.1" + peerDependencies: + webpack: ^5.1.0 + peerDependenciesMeta: + "@swc/core": + optional: true + esbuild: + optional: true + uglify-js: + optional: true + checksum: 10c0/4794274f445dc589f4c113c75a55ce51364ccf09bfe8a545cdb462e3f752bf300ea91f072fa28bbed291bbae03274da06fe4eca180e784fb8a43646aa7dbcaef + languageName: node + linkType: hard + +"terser@npm:^5.31.1": + version: 5.38.1 + resolution: "terser@npm:5.38.1" + dependencies: + "@jridgewell/source-map": "npm:^0.3.3" + acorn: "npm:^8.8.2" + commander: "npm:^2.20.0" + source-map-support: "npm:~0.5.20" + bin: + terser: bin/terser + checksum: 10c0/7e96239ff94ca8f653c359d8825d0a98a3afc3f2f0f06c80b97785671ed5ca821cc280ce198576b08db7d4c0d08ae349619903f8213555a635eebee0786b7b63 + languageName: node + linkType: hard + +"thingies@npm:^1.20.0": + version: 1.21.0 + resolution: "thingies@npm:1.21.0" + peerDependencies: + tslib: ^2 + checksum: 10c0/7570ee855aecb73185a672ecf3eb1c287a6512bf5476449388433b2d4debcf78100bc8bfd439b0edd38d2bc3bfb8341de5ce85b8557dec66d0f27b962c9a8bc1 + languageName: node + linkType: hard + +"tree-dump@npm:^1.0.1": + version: 1.0.2 + resolution: "tree-dump@npm:1.0.2" + peerDependencies: + tslib: 2 + checksum: 10c0/d1d180764e9c691b28332dbd74226c6b6af361dfb1e134bb11e60e17cb11c215894adee50ffc578da5dcf546006693947be8b6665eb1269b56e2f534926f1c1f + languageName: node + linkType: hard + +"ts-markdown-builder@npm:^0.4.0": + version: 0.4.0 + resolution: "ts-markdown-builder@npm:0.4.0" + checksum: 10c0/6814c9ae5435637a13a5562bea3aed6894e746fbd8e39eb15e2a469247e7c2e8e2f08db86af39a4fdc7e4906441b75758a30f1b0aae1914c230bea124b1a5814 + languageName: node + linkType: hard + +"tslib@npm:^2.0.0, tslib@npm:^2.1.0": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 + languageName: node + linkType: hard + +"typanion@npm:^3.8.0": + version: 3.14.0 + resolution: "typanion@npm:3.14.0" + checksum: 10c0/8b03b19844e6955bfd906c31dc781bae6d7f1fb3ce4fe24b7501557013d4889ae5cefe671dafe98d87ead0adceb8afcb8bc16df7dc0bd2b7331bac96f3a7cae2 + languageName: node + linkType: hard + +"typescript@npm:5.7.3": + version: 5.7.3 + resolution: "typescript@npm:5.7.3" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/b7580d716cf1824736cc6e628ab4cd8b51877408ba2be0869d2866da35ef8366dd6ae9eb9d0851470a39be17cbd61df1126f9e211d8799d764ea7431d5435afa + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A5.7.3#optional!builtin": + version: 5.7.3 + resolution: "typescript@patch:typescript@npm%3A5.7.3#optional!builtin::version=5.7.3&hash=5786d5" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/6fd7e0ed3bf23a81246878c613423730c40e8bdbfec4c6e4d7bf1b847cbb39076e56ad5f50aa9d7ebd89877999abaee216002d3f2818885e41c907caaa192cc4 + languageName: node + linkType: hard + +"undici-types@npm:~6.20.0": + version: 6.20.0 + resolution: "undici-types@npm:6.20.0" + checksum: 10c0/68e659a98898d6a836a9a59e6adf14a5d799707f5ea629433e025ac90d239f75e408e2e5ff086afc3cace26f8b26ee52155293564593fbb4a2f666af57fc59bf + languageName: node + linkType: hard + +"unionfs@npm:^4.5.1": + version: 4.5.4 + resolution: "unionfs@npm:4.5.4" + dependencies: + fs-monkey: "npm:^1.0.0" + checksum: 10c0/f1d832aff214c372a79f1938e1e0b0302ecaea30dc9487963c0539b8aad8f6305071e1da3e4662d3f0b5fd115205f71b975c8ab92f45154c61bc51a17c6261f7 + languageName: node + linkType: hard + +"unique-filename@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-filename@npm:4.0.0" + dependencies: + unique-slug: "npm:^5.0.0" + checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc + languageName: node + linkType: hard + +"unique-slug@npm:^5.0.0": + version: 5.0.0 + resolution: "unique-slug@npm:5.0.0" + dependencies: + imurmurhash: "npm:^0.1.4" + checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293 + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.1.1": + version: 1.1.2 + resolution: "update-browserslist-db@npm:1.1.2" + dependencies: + escalade: "npm:^3.2.0" + picocolors: "npm:^1.1.1" + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 10c0/9cb353998d6d7d6ba1e46b8fa3db888822dd972212da4eda609d185eb5c3557a93fd59780ceb757afd4d84240518df08542736969e6a5d6d6ce2d58e9363aac6 + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c + languageName: node + linkType: hard + +"util@npm:^0.12.4": + version: 0.12.5 + resolution: "util@npm:0.12.5" + dependencies: + inherits: "npm:^2.0.3" + is-arguments: "npm:^1.0.4" + is-generator-function: "npm:^1.0.7" + is-typed-array: "npm:^1.1.3" + which-typed-array: "npm:^1.1.2" + checksum: 10c0/c27054de2cea2229a66c09522d0fa1415fb12d861d08523a8846bf2e4cbf0079d4c3f725f09dcb87493549bcbf05f5798dce1688b53c6c17201a45759e7253f3 + languageName: node + linkType: hard + +"uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 10c0/bcbb807a917d374a49f475fae2e87fdca7da5e5530820ef53f65ba1d12131bd81a92ecf259cc7ce317cbe0f289e7d79fdfebcef9bfa3087c8c8a2fa304c9be54 + languageName: node + linkType: hard + +"uuid@npm:^9.0.1": + version: 9.0.1 + resolution: "uuid@npm:9.0.1" + bin: + uuid: dist/bin/uuid + checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b + languageName: node + linkType: hard + +"watchpack@npm:^2.4.1": + version: 2.4.2 + resolution: "watchpack@npm:2.4.2" + dependencies: + glob-to-regexp: "npm:^0.4.1" + graceful-fs: "npm:^4.1.2" + checksum: 10c0/ec60a5f0e9efaeca0102fd9126346b3b2d523e01c34030d3fddf5813a7125765121ebdc2552981136dcd2c852deb1af0b39340f2fcc235f292db5399d0283577 + languageName: node + linkType: hard + +"webpack-sources@npm:^3.2.3": + version: 3.2.3 + resolution: "webpack-sources@npm:3.2.3" + checksum: 10c0/2ef63d77c4fad39de4a6db17323d75eb92897b32674e97d76f0a1e87c003882fc038571266ad0ef581ac734cbe20952912aaa26155f1905e96ce251adbb1eb4e + languageName: node + linkType: hard + +"webpack@npm:^5.94.0": + version: 5.97.1 + resolution: "webpack@npm:5.97.1" + dependencies: + "@types/eslint-scope": "npm:^3.7.7" + "@types/estree": "npm:^1.0.6" + "@webassemblyjs/ast": "npm:^1.14.1" + "@webassemblyjs/wasm-edit": "npm:^1.14.1" + "@webassemblyjs/wasm-parser": "npm:^1.14.1" + acorn: "npm:^8.14.0" + browserslist: "npm:^4.24.0" + chrome-trace-event: "npm:^1.0.2" + enhanced-resolve: "npm:^5.17.1" + es-module-lexer: "npm:^1.2.1" + eslint-scope: "npm:5.1.1" + events: "npm:^3.2.0" + glob-to-regexp: "npm:^0.4.1" + graceful-fs: "npm:^4.2.11" + json-parse-even-better-errors: "npm:^2.3.1" + loader-runner: "npm:^4.2.0" + mime-types: "npm:^2.1.27" + neo-async: "npm:^2.6.2" + schema-utils: "npm:^3.2.0" + tapable: "npm:^2.1.1" + terser-webpack-plugin: "npm:^5.3.10" + watchpack: "npm:^2.4.1" + webpack-sources: "npm:^3.2.3" + peerDependenciesMeta: + webpack-cli: + optional: true + bin: + webpack: bin/webpack.js + checksum: 10c0/a12d3dc882ca582075f2c4bd88840be8307427245c90a8a0e0b372d73560df13fcf25a61625c9e7edc964981d16b5a8323640562eb48347cf9dd2f8bd1b39d35 + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.2": + version: 1.1.18 + resolution: "which-typed-array@npm:1.1.18" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + for-each: "npm:^0.3.3" + gopd: "npm:^1.2.0" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/0412f4a91880ca1a2a63056187c2e3de6b129b2b5b6c17bc3729f0f7041047ae48fb7424813e51506addb2c97320003ee18b8c57469d2cde37983ef62126143c + languageName: node + linkType: hard + +"which@npm:^2.0.1": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: "npm:^2.0.0" + bin: + node-which: ./bin/node-which + checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f + languageName: node + linkType: hard + +"which@npm:^4.0.0": + version: 4.0.0 + resolution: "which@npm:4.0.0" + dependencies: + isexe: "npm:^3.1.1" + bin: + node-which: bin/which.js + checksum: 10c0/449fa5c44ed120ccecfe18c433296a4978a7583bf2391c50abce13f76878d2476defde04d0f79db8165bdf432853c1f8389d0485ca6e8ebce3bbcded513d5e6a + languageName: node + linkType: hard + +"which@npm:^5.0.0": + version: 5.0.0 + resolution: "which@npm:5.0.0" + dependencies: + isexe: "npm:^3.1.1" + bin: + node-which: bin/which.js + checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b + languageName: node + linkType: hard + +"why-is-node-running@npm:^3.2.2": + version: 3.2.2 + resolution: "why-is-node-running@npm:3.2.2" + bin: + why-is-node-running: cli.js + checksum: 10c0/47307bfc2f48dd5228a92103dc43a7cadafbc6b6791c114fd27e03ac271a5082849a54f7e5f5cb261ea68f0d4ad40d9cb503b55812a6b62e67de0c57039fb95b + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 + languageName: node + linkType: hard + +"ws@npm:^8.18.0": + version: 8.18.0 + resolution: "ws@npm:8.18.0" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 10c0/25eb33aff17edcb90721ed6b0eb250976328533ad3cd1a28a274bd263682e7296a6591ff1436d6cbc50fa67463158b062f9d1122013b361cec99a05f84680e06 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a + languageName: node + linkType: hard + +"yallist@npm:^5.0.0": + version: 5.0.0 + resolution: "yallist@npm:5.0.0" + checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 + languageName: node + linkType: hard + +"yargs@npm:^17.4.1, yargs@npm:^17.7.2": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 + languageName: node + linkType: hard + +"znv@npm:^0.4.0": + version: 0.4.0 + resolution: "znv@npm:0.4.0" + dependencies: + colorette: "npm:^2.0.19" + peerDependencies: + zod: ^3.13.2 + checksum: 10c0/938bdb6f1c8f46c8bdc4f1be90d06f27ccecd443f8283e0b15f08591029ff90268e3207df7c1defb0c6803422e9e686ef3a42fd1428114f8831fc740d694f75a + languageName: node + linkType: hard + +"zod-config@npm:^0.1.2": + version: 0.1.2 + resolution: "zod-config@npm:0.1.2" + peerDependencies: + dotenv: ">=15" + yaml: ^2.x + zod: ^3.x + peerDependenciesMeta: + dotenv: + optional: true + smol-toml: + optional: true + yaml: + optional: true + checksum: 10c0/43a99f6f893165949adc84a0b8d542f0426e9caa1cb0f1ef82b2f900c8e3812bcbaf85f6111e8f49345a53908ddfe13f177b3fce34ad55441dd3a94e16144a61 + languageName: node + linkType: hard + +"zod@npm:^3.24.1": + version: 3.24.1 + resolution: "zod@npm:3.24.1" + checksum: 10c0/0223d21dbaa15d8928fe0da3b54696391d8e3e1e2d0283a1a070b5980a1dbba945ce631c2d1eccc088fdbad0f2dfa40155590bf83732d3ac4fcca2cc9237591b + languageName: node + linkType: hard