diff --git a/README.md b/README.md index 39de1e0..2c02ed8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Node.js >= 14 2. Install all dependencies using NPM by going into the `SkyHelperAPI` folder `npm install` -3. Set up the environment variables +3. Set up the [environment variables](#Environment-Variables) 4. Start the API using `node .` or `npm start` @@ -39,19 +39,70 @@ The API automatically updates upon starting. If you wish to not want that, chang ### `GET` /v1/profile/:user/:profile +### `GET` /v1/items/:user + +### `GET` /v1/items/:user/:profile + +### `GET` /v1/auctions/:user + +### `GET` /v1/bingo/:user + +### `GET` /v1/calendar + ### `GET` /v1/fetchur -| Parameter | Description | -| --------- | ------------------------------------------ | -| user | This can be the UUID of a user or the name | -| profile | This can be the users profile id or name | +| Parameter | Description | +| ------------- | --------------------------------------------- | +| user | This can be the UUID of a user or the name | +| profile | This can be the users profile id or name | + +# Features: + +| Feature | Description | Endpoint | +| -------------- | ----------------------------------------------------------------------- | ---------------------- | +| skills | Get a player's skills | profile/profiles | +| networth | Get a player's networth including all information about the calculation | profile/profiles | +| weight | Get a player's Senither and Lily weight | profile/profiles | +| dungeons | Get a player's dungeons stats | profile/profiles | +| bestiary | Get a player's bestiary | profile/profiles | +| crimson | Get player's Crimson Isle data | profile/profiles | +| trophy_fish | Get player's trophy fishing caches and information | profile/profiles | +| enchanting | Get a player's enchanting stats including experimentations | profile/profiles | +| farming | Get a player's farming stats including Jacob's contests | profile/profiles | +| mining | Get a player's mining stats including HotM tree and forge | profile/profiles | +| slayer | Get a player's slayer stats | profile/profiles | +| milestones | Get a player's pet milestones (rock / dolphin) | profile/profiles | +| missing | Get a player's missing talismans including their price | profile/profiles | +| kills | Get a player's most killed mobs | profile/profiles | +| deaths | Get a player's deaths | profile/profiles | +| armor | Get a player's armor | profile/profiles/items | +| equipment | Get a player's equipment | profile/profiles/items | +| pets | Get a player's pets | profile/profiles | +| talismans | Get a player's talismans | profile/profiles | +| collections | Get a player's collections | profile/profiles | +| minions | Get a player's minions | profile/profiles | +| cakebag | Get a player's new year cake editions | profile/profiles | +| backpack | Get player's backpacks | items | +| quiver | Get player's quiver | items | +| talisman bag | Get player's talisman bag | items | +| backpack icons | Get data about player's backpacks | items | +| ender chest | Get player's ender chest | items | +| potion bag | Get player's potion bag | items | +| fishing bag | Get player's fishing bag | items | +| personal vault | Get player's personal vault | items | +| inventory | Get player's inventory | items | +| candy bag | Get player's candy bag | items | +| items | Check what item fetchur wants today | fetchur | +| auctions | Get a player's active and ended auctions and information about them | auctions | +| bingo | Get a player's bingo profile and progress | bingo | +| calendar | Get Skyblock's calendar including all events | calendar | **Documentation**: https://api.altpapier.dev # Credit: -- https://github.com/zt3h/MaroAPI +- https://github.com/zt3h/MaroAPI -- https://github.com/Senither/hypixel-skyblock-facade +- https://github.com/Senither/hypixel-skyblock-facade -- https://github.com/SkyCryptWebsite/SkyCrypt +- https://github.com/SkyCryptWebsite/SkyCrypt diff --git a/constants/calendar.js b/constants/calendar.js new file mode 100644 index 0000000..3be32b4 --- /dev/null +++ b/constants/calendar.js @@ -0,0 +1,368 @@ +// CREDITS: https://github.com/slothpixel/core (Modified) +const { nth, parseTimestamp } = require('./maro_networth/src/helper'); + +const months = [ + 'Early Spring', + 'Spring', + 'Late Spring', + 'Early Summer', + 'Summer', + 'Late Summer', + 'Early Autumn', + 'Autumn', + 'Late Autumn', + 'Early Winter', + 'Winter', + 'Late Winter', +]; + +const hourMs = 50000; +const dayMs = 24 * hourMs; +const monthLength = 31; +const yearLength = months.length; + +const monthMs = monthLength * dayMs; +const yearMs = yearLength * monthMs; + +const yearZero = 1560275700000; + +const zooStart = yearZero + yearMs * 66; +const zooTimeLength = yearMs / 2; + +const pets = [ + 'Elephant', + 'Giraffe', + 'Blue Whale', + 'Tiger', + 'Lion', + 'Monkey', +]; + +function getOffset(month, day, hour = 0) { + return months.indexOf(month) * monthLength * dayMs + (day - 1) * dayMs + hour * hourMs; +} + +function timeToSkyblockYear(time) { + return Math.floor((time - yearZero) / yearMs) + 1; +} + +function getZooPet(time) { + const iterations = Math.floor((time - zooStart) / zooTimeLength); + + return pets[iterations % pets.length]; +} + +function getJacobEventTimes() { + const times = []; + + for (let month = 0; month < 12; month++) { + let day = 2; + while (day <= 31) { + times.push({ + start: getOffset(months[month], day), + end: getOffset(months[month], day), + }); + + if (day === 30) break; + day += 3; + if (day > 31) { + day %= 31; + month++; + } + } + } + return times; +} + +function getDarkAuctionEventTimes() { + const times = []; + + for (let month = 0; month < 12; month++) { + let day = 1; + while (day <= 31) { + times.push({ + start: getOffset(months[month], day), + end: getOffset(months[month], day), + }); + + if (day === 29) break; + day += 3; + if (day > 31) { + day %= 31; + month++; + } + } + } + return times; +} + +function getFallenStarCultTimes() { + const times = []; + + for (let month = 0; month < 12; month++) { + for (let i = 1; i <= 4; i++) { + times.push({ + start: getOffset(months[month], i * 7), + end: getOffset(months[month], i * 7, 6), + }); + } + } + return times; +} + +function getUniqueListBy(array, key) { + return [...new Map(array.map((item) => [item[key], item])).values()]; +} + +const eventTimes = { + BANK_INTEREST: { + name: 'Bank Interest', + times: [ + { + start: getOffset('Early Spring', 1), + end: getOffset('Early Spring', 1), + }, + { + start: getOffset('Early Summer', 1), + end: getOffset('Early Summer', 1), + }, + { + start: getOffset('Early Autumn', 1), + end: getOffset('Early Autumn', 1), + }, + { + start: getOffset('Early Winter', 1), + end: getOffset('Early Winter', 1), + }, + ], + }, + DARK_AUCTION: { + name: 'Dark Auction', + times: getDarkAuctionEventTimes(), + }, + ELECTION_BOOTH_OPENS: { + name: 'Election Booth Opens', + times: [ + { + start: getOffset('Late Summer', 27), + end: getOffset('Late Summer', 27), + }, + ], + }, + ELECTION_OVER: { + name: 'Election Over', + times: [ + { + start: getOffset('Late Spring', 27), + end: getOffset('Late Spring', 27), + }, + ], + }, + FALLEN_STAR_CULT: { + name: 'Cult of the Fallen Star', + times: getFallenStarCultTimes(), + }, + FEAR_MONGERER: { + name: 'Fear Mongerer', + times: [ + { + start: getOffset('Autumn', 26), + end: getOffset('Late Autumn', 3), + }, + ], + }, + JACOBS_CONTEST: { + name: 'Jacob\'s Farming Contest', + times: getJacobEventTimes(), + }, + JERRYS_WORKSHOP: { + name: 'Jerry\'s Workshop', + times: [ + { + start: getOffset('Late Winter', 1), + end: getOffset('Late Winter', 31), + }, + ], + }, + NEW_YEAR_CELEBRATION: { + name: 'New Year Celebration', + times: [ + { + start: getOffset('Late Winter', 29), + end: getOffset('Late Winter', 31), + }, + ], + }, + SEASON_OF_JERRY: { + name: 'Season of Jerry', + times: [ + { + start: getOffset('Late Winter', 24), + end: getOffset('Late Winter', 26), + }, + ], + }, + SPOOKY_FESTIVAL: { + name: 'Spooky Festival', + times: [ + { + start: getOffset('Autumn', 29), + end: getOffset('Autumn', 31), + }, + ], + }, + TRAVELING_ZOO: { + name: 'Traveling Zoo', + times: [ + { + start: getOffset('Early Summer', 1), + end: getOffset('Early Summer', 3), + }, + { + start: getOffset('Early Winter', 1), + end: getOffset('Early Winter', 3), + }, + ], + }, +}; + +function buildSkyblockCalendar(events, from, to, years, stopAtYearEnd = true) { + const now = Date.now(); + let fromDate = from || now; + + if (typeof from === 'string') fromDate = parseTimestamp(from); + fromDate = Math.max(fromDate, yearZero); + + let toDate = to || fromDate + yearMs * years || now; + if (typeof to === 'string') toDate = parseTimestamp(to); + + if (Number.isNaN(Number(fromDate)) || Number.isNaN(Number(toDate))) { + throw new TypeError("Parameters 'from' and 'to' must be integers"); + } + + if (toDate < fromDate) throw new Error("Parameter 'to' must be greater than 'from'"); + + const currentYear = Math.floor((fromDate - yearZero) / yearMs); + const currentOffset = (fromDate - yearZero) % yearMs; + + const currentMonth = Math.floor(currentOffset / monthMs); + const currentMonthOffset = (currentOffset - currentMonth * monthMs) % monthMs; + + const currentDay = Math.floor(currentMonthOffset / dayMs); + const currentDayOffset = (currentMonthOffset - currentDay * dayMs) % dayMs; + + let currentHour = Math.floor(currentDayOffset / hourMs); + const currentMinute = Math.floor(((currentDayOffset - currentHour * hourMs) / hourMs) * 60); + + const suffix = currentHour >= 12 ? 'pm' : 'am'; + + if (currentHour > 12) currentHour -= 12; + if (currentHour === 0) currentHour = 12; + + const formattedTime = `${currentHour}:${(Math.floor(currentMinute / 10) * 10).toString().padStart(2, '0')}${suffix}`; + + const eventList = {}; + + Object.keys(eventTimes).forEach((key) => { + eventList[key] = { + name: '', + duration: 0, + events: [], + }; + }); + + // convert 'to' to years for looping + let toToYears = Number.isNaN(Number(years)) + ? timeToSkyblockYear(toDate) - currentYear + : years; + + toToYears = Math.min(toToYears, 10); + + if (toToYears <= 0) throw new Error("Parameter 'years' must be positive"); + + // convert string to boolean + const stopBoolean = String(stopAtYearEnd).toLowerCase() === 'true'; + + if (!stopBoolean) toToYears++; + + for (let i = 0; i < toToYears; i++) { + for (const [event, { name, times: times_ }] of Object.entries(eventTimes)) { + const duration = times_[0].end - times_[0].start + dayMs; + + eventList[event].name = name; + eventList[event].duration = duration; + + for (const { start: start_, end: end_ } of times_) { + const times = { + start: start_ + yearMs * i, + end: end_ + yearMs * i, + }; + + /* eslint-disable-next-line no-continue */ + if (stopBoolean && times.end < currentOffset) continue; + + const msTill = times.end < currentOffset + ? yearMs - currentOffset + times.start + : times.start - currentOffset; + + const o = { + start_timestamp: (Math.round(fromDate / 1000) + Math.round(msTill / 1000)) * 1000, + end_timestamp: (Math.round(fromDate / 1000) + Math.round((msTill + duration) / 1000)) * 1000, + starting_in: msTill, + ending_in: msTill + duration, + }; + + if (name === 'Traveling Zoo') o.pet = getZooPet(fromDate + msTill); + + eventList[event].events.push(o); + } + } + } + + Object.keys(eventList).forEach((key) => { + eventList[key].events = getUniqueListBy(eventList[key].events, 'start_timestamp') + /* eslint-disable-next-line camelcase */ + .filter(({ start_timestamp }) => start_timestamp < toDate) + .sort((a, b) => a.start_timestamp - b.start_timestamp); + }); + + const eventsToFilter = events ? events.split(',') : Object.keys(eventTimes); + + const filteredEvents = {}; + for (const event of eventsToFilter) { + filteredEvents[event] = eventList[event]; + } + + return { + from: fromDate, + to: fromDate + (yearMs - currentOffset), + + date: `${months[currentMonth]} ${nth(currentDay + 1)}, ${currentYear + 1}`, + year: currentYear + 1, + month: months[currentMonth], + day: currentDay + 1, + + time: formattedTime, + hour: currentHour, + minute: Math.floor(currentMinute / 10) * 10, + + next_day_countdown: dayMs - currentDayOffset, + next_month_countdown: monthMs - currentMonthOffset, + next_year_countdown: yearMs - currentOffset, + + events: filteredEvents, + }; +} + +function buildSkyblockEvents() { + const o = {}; + Object.entries(eventTimes).forEach(([key, { name }]) => { + o[key] = name; + }); + return o; +} + +module.exports = { + buildSkyblockCalendar, + buildSkyblockEvents, +}; diff --git a/constants/crimson.js b/constants/crimson.js deleted file mode 100644 index 2e5237d..0000000 --- a/constants/crimson.js +++ /dev/null @@ -1,29 +0,0 @@ -module.exports = { - factions: { - "selected_faction": null, - "mages_reputation": 0, - "barbarians_reputation": 0, - }, - matriarch: { - "pearls_collected": 0, - "last_attempt": 0 - }, - kuudra_completed_tiers: { - "none": 0, - "hot": 0 - }, - dojo: { - "DOJO_POINTS_MOB_KB": 0, - "DOJO_TIME_MOB_KB": 0, - "DOJO_POINTS_WALL_JUMP": 0, - "DOJO_TIME_WALL_JUMP": 0, - "DOJO_POINTS_ARCHER": 0, - "DOJO_TIME_ARCHER": 0, - "DOJO_POINTS_SWORD_SWAP": 0, - "DOJO_TIME_SWORD_SWAP": 0, - "DOJO_POINTS_SNAKE": 0, - "DOJO_TIME_SNAKE": 0, - "DOJO_POINTS_FIREBALL": 0, - "DOJO_TIME_FIREBALL": 0 - } -} \ No newline at end of file diff --git a/constants/farming.js b/constants/farming.js new file mode 100644 index 0000000..30eba1e --- /dev/null +++ b/constants/farming.js @@ -0,0 +1,34 @@ +module.exports = { + jacob_crops: { + CARROT_ITEM: { + name: "Carrot", + }, + CACTUS: { + name: "Cactus", + }, + "INK_SACK:3": { + name: "Cocoa Beans", + }, + MELON: { + name: "Melon", + }, + MUSHROOM_COLLECTION: { + name: "Mushroom", + }, + NETHER_STALK: { + name: "Nether Wart", + }, + POTATO_ITEM: { + name: "Potato", + }, + PUMPKIN: { + name: "Pumpkin", + }, + SUGAR_CANE: { + name: "Sugar Cane", + }, + WHEAT: { + name: "Wheat", + }, + }, +}; \ No newline at end of file diff --git a/constants/fetchur_items.js b/constants/fetchur_items.js index f30442f..ff72be4 100644 --- a/constants/fetchur_items.js +++ b/constants/fetchur_items.js @@ -1,15 +1,15 @@ module.exports = { - 0: { name: 'Red Wool', quantity: 50, text: '50x Red Wool', image: 'https://sky.shiiyu.moe/item/WOOL:14' }, - 1: { name: 'Yellow Stained Glass', quantity: 20, text: '20x Yellow Stained Glass', image: 'https://sky.shiiyu.moe/item/STAINED_GLASS:4' }, - 2: { name: 'Compass', quantity: 1, text: '1x Compass', image: 'https://sky.shiiyu.moe/item/COMPASS' }, - 3: { name: 'Mithril', quantity: 20, text: '20x Mithril', image: 'https://sky.shiiyu.moe/item/MITHRIL_ORE' }, - 4: { name: 'Firework Rocket', quantity: 1, text: '1x Firework Rocket', image: 'https://sky.shiiyu.moe/item/FIREWORK' }, - 5: { name: 'Coffee', quantity: 1, text: '1x Coffee', image: 'https://sky.shiiyu.moe/item/DECENT_COFFEE' }, - 6: { name: 'Door', quantity: 1, text: '1x Door', image: 'https://sky.shiiyu.moe/item/WOOD_DOOR' }, - 7: { name: 'Rabbit\'s Foot', quantity: 3, text: '3x Rabbit\'s Feet', image: 'https://sky.shiiyu.moe/item/RABBIT_FOOT' }, - 8: { name: 'Superboom TNT', quantity: 1, text: '1x Superboom TNT', image: 'https://sky.shiiyu.moe/item/SUPERBOOM_TNT' }, - 9: { name: 'Pumpkin', quantity: 1, text: '1x Pumpkin', image: 'https://sky.shiiyu.moe/item/PUMPKIN' }, - 10: { name: 'Flint and Steel', quantity: 1, text: '1x Flint and Steel', image: 'https://sky.shiiyu.moe/item/FLINT_AND_STEEL' }, - 11: { name: 'Nether Quartz Ore', quantity: 50, text: '50x Nether Quartz Ore', image: 'https://sky.shiiyu.moe/item/QUARTZ_ORE' }, - 12: { name: 'Red Wool', quantity: 50, text: '50x Red Wool', image: 'https://sky.shiiyu.moe/item/WOOL:14' }, + 0: { name: 'Red Wool', quantity: 50, text: '50x Red Wool', image: 'https://sky.shiiyu.moe/item/WOOL:14', description: 'This item can be purchased from the Wool Merchant at the Builder\'s House in the Hub' }, + 1: { name: 'Yellow Stained Glass', quantity: 20, text: '20x Yellow Stained Glass', image: 'https://sky.shiiyu.moe/item/STAINED_GLASS:4', description: 'This item can be purchased from the Builder at the Builder\'s House in the Hub' }, + 2: { name: 'Compass', quantity: 1, text: '1x Compass', image: 'https://sky.shiiyu.moe/item/COMPASS', description: 'This item can be crafted using 1 Redstone and 4 Iron Ingot' }, + 3: { name: 'Mithril', quantity: 20, text: '20x Mithril', image: 'https://sky.shiiyu.moe/item/MITHRIL_ORE', description: 'This item can be mined in the Dwarven Mines/Crystal Hollows or purchased from the Bazaar' }, + 4: { name: 'Firework Rocket', quantity: 1, text: '1x Firework Rocket', image: 'https://sky.shiiyu.moe/item/FIREWORK', description: 'This item can be crafted using 1 Gunpowder and 1 Paper' }, + 5: { name: 'Coffee', quantity: 1, text: '1x Coffee', image: 'https://sky.shiiyu.moe/item/DECENT_COFFEE', description: 'This item can be purchased from the Bartender in the Hub' }, + 6: { name: 'Door', quantity: 1, text: '1x Door', image: 'https://sky.shiiyu.moe/item/WOOD_DOOR', description: 'This item can be crafted using 6 Wood planks' }, + 7: { name: 'Rabbit\'s Foot', quantity: 3, text: '3x Rabbit\'s Feet', image: 'https://sky.shiiyu.moe/item/RABBIT_FOOT', description: 'This item can be dropped when killing an Rabbit or buying it from the Bazaar.' }, + 8: { name: 'Superboom TNT', quantity: 1, text: '1x Superboom TNT', image: 'https://sky.shiiyu.moe/item/SUPERBOOM_TNT', description: 'This item can be purchased from the Auction House or found in dungeons' }, + 9: { name: 'Pumpkin', quantity: 1, text: '1x Pumpkin', image: 'https://sky.shiiyu.moe/item/PUMPKIN', description: 'This item can be farmed in the Barn or purchased from the Bazaar' }, + 10: { name: 'Flint and Steel', quantity: 1, text: '1x Flint and Steel', image: 'https://sky.shiiyu.moe/item/FLINT_AND_STEEL', description: 'This item can be crafted using 1 Flint and 1 Iron Ingot' }, + 11: { name: 'Nether Quartz Ore', quantity: 50, text: '50x Nether Quartz Ore', image: 'https://sky.shiiyu.moe/item/QUARTZ_ORE', description: 'This item can be mined in the Crimson Isle using a Pickaxe enchanted with Silk Touch' }, + 12: { name: 'Red Wool', quantity: 50, text: '50x Red Wool', image: 'https://sky.shiiyu.moe/item/WOOL:14', description: 'This item can be purchased from the Wool Merchant at the Builder\'s House in the Hub' }, } diff --git a/constants/maro_networth/generators/itemGenerator.js b/constants/maro_networth/generators/itemGenerator.js index 4585f2e..0fee534 100644 --- a/constants/maro_networth/generators/itemGenerator.js +++ b/constants/maro_networth/generators/itemGenerator.js @@ -438,4 +438,4 @@ const getItems = async function (profile, db) { return output; }; -module.exports = { parseItem, getItems }; +module.exports = { parseItem, getItems }; \ No newline at end of file diff --git a/constants/maro_networth/generators/petGenerator.js b/constants/maro_networth/generators/petGenerator.js index dd0379b..eceb6c3 100644 --- a/constants/maro_networth/generators/petGenerator.js +++ b/constants/maro_networth/generators/petGenerator.js @@ -94,4 +94,4 @@ const getPetPrice = function (pet, db) { return pet; }; -module.exports = { calculateSkillLevel, getPetPrice }; +module.exports = { calculateSkillLevel, getPetPrice }; \ No newline at end of file diff --git a/constants/maro_networth/src/constants/misc.js b/constants/maro_networth/src/constants/misc.js index 4573214..d9c6004 100644 --- a/constants/maro_networth/src/constants/misc.js +++ b/constants/maro_networth/src/constants/misc.js @@ -182,4 +182,4 @@ module.exports = { INFERNAL_AURORA_LEGGINGS: ['FIERY_AURORA_LEGGINGS', 'BURNING_AURORA_LEGGINGS', 'HOT_AURORA_LEGGINGS', 'AURORA_LEGGINGS'], INFERNAL_AURORA_BOOTS: ['FIERY_AURORA_BOOTS', 'BURNING_AURORA_BOOTS', 'HOT_AURORA_BOOTS', 'AURORA_BOOTS'], }, -}; +}; \ No newline at end of file diff --git a/constants/maro_networth/src/helper.js b/constants/maro_networth/src/helper.js index f2d5b32..6ef96f1 100644 --- a/constants/maro_networth/src/helper.js +++ b/constants/maro_networth/src/helper.js @@ -1,5 +1,6 @@ const constants = require('./constants'); const nbt = require('prismarine-nbt'); +const moment = require('moment'); const parseNbt = require('util').promisify(nbt.parse); const slots = { @@ -85,9 +86,13 @@ const parseItemGems = function (gems) { if (slots.ignore.includes(key)) continue; const slot_type = key.split('_')[0]; - + if (slots.special.includes(slot_type)) { - parsed.push({ type: gems[`${key}_gem`], tier: value }); + if (key.includes('_gem')) { + parsed.push({ type: gems[`${key}`], tier: gems[`${key.replace('_gem', '')}`] }); + } else { + parsed.push({ type: gems[`${key}_gem`], tier: value }); + } } else if (slots.normal.includes(slot_type)) { parsed.push({ type: key.split('_')[0], tier: value }); } @@ -159,4 +164,114 @@ const toTimestamp = function (timestamp) { return Date.parse(timestamp)/1000 } -module.exports = { getPath, decodeNBT, getRawLore, capitalize, parseItemGems, removeReforge, getAverage, getMedian, getMean, getMode, toTimestamp }; +const nth = function(i) { + return i + ['st', 'nd', 'rd'][((((i + 90) % 100) - 10) % 10) - 1] || `${i}th`; +} + + +// CREDITS: https://github.com/grafana/grafana (Modified) + +const units = new Set(['y', 'M', 'w', 'd', 'h', 'm', 's']); + +function parseDateMath(mathString, time) { + const strippedMathString = mathString.replace(/\s/g, ''); + const dateTime = time; + let i = 0; + const { length } = strippedMathString; + + while (i < length) { + const c = strippedMathString.charAt(i); + i += 1; + let type; + let number; + + if (c === '/') { + type = 0; + } else if (c === '+') { + type = 1; + } else if (c === '-') { + type = 2; + } else { + return; + } + + if (Number.isNaN(Number.parseInt(strippedMathString.charAt(i), 10))) { + number = 1; + } else if (strippedMathString.length === 2) { + number = strippedMathString.charAt(i); + } else { + const numberFrom = i; + while (!Number.isNaN(Number.parseInt(strippedMathString.charAt(i), 10))) { + i += 1; + if (i > 10) { + return; + } + } + number = Number.parseInt(strippedMathString.slice(numberFrom, i), 10); + } + + if (type === 0 && number !== 1) { + return; + } + + const unit = strippedMathString.charAt(i); + i += 1; + + if (!units.has(unit)) { + return; + } + if (type === 0) { + dateTime.startOf(unit); + } else if (type === 1) { + dateTime.add(number, unit); + } else if (type === 2) { + dateTime.subtract(number, unit); + } + } + + return dateTime; +} + +const parseTimestamp = function(text) { + if (!text) return; + + if (typeof text !== 'string') { + if (moment.isMoment(text)) { + return text; + } + if (moment.isDate(text)) { + return moment(text); + } + return; + } + + let time; + let mathString = ''; + let index; + let parseString; + + if (text.slice(0, 3) === 'now') { + time = moment.utc(); + mathString = text.slice(3); + } else { + index = text.indexOf('||'); + if (index === -1) { + parseString = text; + mathString = ''; + } else { + parseString = text.slice(0, Math.max(0, index)); + mathString = text.slice(Math.max(0, index + 2)); + } + + time = moment(parseString, moment.ISO_8601); + } + + if (mathString.length === 0) { + return time.valueOf(); + } + + const dateMath = parseDateMath(mathString, time); + return dateMath ? dateMath.valueOf() : undefined; +} + +module.exports = { getPath, decodeNBT, getRawLore, capitalize, parseItemGems, removeReforge, getAverage, getMedian, getMean, getMode, toTimestamp, nth, parseTimestamp }; diff --git a/constants/pets.js b/constants/pets.js deleted file mode 100644 index 9a4c3a8..0000000 --- a/constants/pets.js +++ /dev/null @@ -1,4068 +0,0 @@ -// CREDIT: https://github.com/SkyCryptWebsite/SkyCrypt/ (Modified) - -const { floor, round } = require('./functions') -const { symbols } = require('./symbols') - -function formatStat(stat) { - const statFloored = Math.floor(stat); - if (statFloored > 0) { - return `§a+${statFloored}`; - } else { - return `§a${statFloored}`; - } -} - -function getValue(rarity, data) { - const base = Object.values(data)[0]; - const common = data.common ?? base; - const uncommon = data.uncommon ?? common; - const rare = data.rare ?? uncommon; - const epic = data.epic ?? rare; - const legendary = data.legendary ?? epic; - const mythic = data.mythic ?? legendary; - - switch (rarity) { - case COMMON: - return common; - case UNCOMMON: - return uncommon; - case RARE: - return rare; - case EPIC: - return epic; - case LEGENDARY: - return legendary; - case MYTHIC: - return mythic; - default: - throw new Error("Unknown rarity"); - } -} - -class Pet { - constructor(rarity, level, extra) { - this.rarity = rarity; - this.level = level; - this.extra = extra; - } - - lore(newStats = false) { - if (!newStats) { - newStats = this.stats; - } - const list = []; - for (const stat in newStats) { - switch (stat) { - case "health": - list.push(`§7Health: ${formatStat(newStats[stat])}`); - break; - case "defense": - list.push(`§7Defense: ${formatStat(newStats[stat])}`); - break; - case "strength": - list.push(`§7Strength: ${formatStat(newStats[stat])}`); - break; - case "crit_chance": - list.push(`§7Crit Chance: ${formatStat(newStats[stat])}`); - break; - case "crit_damage": - list.push(`§7Crit Damage: ${formatStat(newStats[stat])}`); - break; - case "intelligence": - list.push(`§7Intelligence: ${formatStat(newStats[stat])}`); - break; - case "speed": - list.push(`§7Speed: ${formatStat(newStats[stat])}`); - break; - case "bonus_attack_speed": - list.push(`§7Bonus Attack Speed: ${formatStat(newStats[stat])}`); - break; - case "sea_creature_chance": - list.push(`§7Sea Creature Chance: ${formatStat(newStats[stat])}%`); - break; - case "magic_find": - list.push(`§7Magic Find: ${formatStat(newStats[stat])}`); - break; - case "pet_luck": - list.push(`§7Pet Luck: ${formatStat(newStats[stat])}`); - break; - case "true_defense": - list.push(`§7True Defense: ${formatStat(newStats[stat])}`); - break; - case "ability_damage": - list.push(`§7Ability Damage: ${formatStat(newStats[stat])}%`); - break; - case "damage": - list.push(`§7Damage: ${formatStat(newStats[stat])}`); - break; - case "ferocity": - list.push(`§7Ferocity: ${formatStat(newStats[stat])}`); - break; - case "mining_speed": - list.push(`§7Mining Speed: ${formatStat(newStats[stat])}`); - break; - case "mining_fortune": - list.push(`§7Mining Fortune: ${formatStat(newStats[stat])}`); - break; - case "farming_fortune": - list.push(`§7Farming Fortune: ${formatStat(newStats[stat])}`); - break; - default: - list.push(`§cUNKNOWN: ${stat}`); - break; - } - } - return list; - } -} - -const rarities = [ - "common", - "uncommon", - "rare", - "epic", - "legendary", - "mythic", - "divine", - "supreme", - "special", - "very_special", -]; - - -const rarityColors = { - common: "f", - uncommon: "a", - rare: "9", - epic: "5", - legendary: "6", - mythic: "d", - divine: "b", - supreme: "4", - special: "c", - very_special: "c", -}; - -class Bee extends Pet { - get stats() { - return { - strength: 5 + this.level * 0.25, - intelligence: this.level * 0.5, - speed: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const intMult = getValue(this.rarity, { common: 0.02, uncommon: 0.04, rare: 0.09, epic: 0.14, legendary: 0.19 }); - const strMult = getValue(this.rarity, { common: 0.02, uncommon: 0.04, rare: 0.07, epic: 0.11, legendary: 0.14 }); - - return { - name: "§6Hive", - desc: [ - `§7Gain §b+${round(this.level * intMult + 1, 1)} ${symbols.intelligence.symbol} Intelligence §7and §c+${round( - this.level * strMult + 1, - 1 - )} ${symbols.strength.symbol} Strength §7for each nearby bee.`, - `§8Max 15 bees`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.5, epic: 1 }); - return { - name: "§6Busy Buzz Buzz", - desc: [`§7Has §a${round(this.level * mult, 1)}% §7chance for flowers to drop an extra one`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Weaponized Honey", - desc: [`§7Gain §a${round(5 + this.level * mult, 1)}% §7of received damage as §6${symbols.health.symbol} Absorption`], - }; - } -} - -class Chicken extends Pet { - get stats() { - return { - health: this.level * 2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.3, uncommon: 0.4, epic: 0.5 }); - return { - name: "§6Light Feet", - desc: [`§7Reduces fall damage by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.8, epic: 1 }); - return { - name: "§6Eggstra", - desc: [`§7Killing chickens has a §a${round(this.level * mult, 1)}% §7chance to drop an egg`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Mighty Chickens", - desc: [`§7Chicken minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } -} - -class Elephant extends Pet { - get stats() { - return { - intelligence: this.level * 0.75, - health: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - return { - name: "§6Stomp", - desc: [ - `§7Gain §a${round(this.level * mult, 1)} ${symbols.defense.symbol} Defense §7for every §f100 ${symbols.speed.symbol} Speed`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.01 }); - return { - name: "§6Walking Fortress", - desc: [ - `§7Gain §c${round(this.level * mult, 1)} ${symbols.health.symbol} Health §7for every §a10 ${symbols.defense.symbol} Defense`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 1.8 }); - return { - name: "§6Trunk Efficiency", - desc: [ - `§7Grants §a+${round(this.level * mult, 1)} §6${ - symbols.farming_fortune.symbol - } Farming Fortune§7, which increases your chance for multiple drops`, - ], - }; - } -} - -class Pig extends Pet { - get stats() { - return { - speed: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= RARE) { - list.push(this.third); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fourth); - } - return list; - } - - get first() { - return { - name: "§6Ridable", - desc: [`§7Right-click your summoned pet to ride it!`], - }; - } - - get second() { - const mult = getValue(this.rarity, { common: 0.3, uncommon: 0.4, epic: 0.5 }); - return { - name: "§6Run", - desc: [`§7Increases the speed of your mount by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { rare: 0.4, epic: 0.5 }); - return { - name: "§6Sprint", - desc: [ - `§7While holding an Enchanted Carrot on a Stick, increase the speed of your mount by §a${round( - this.level * mult, - 1 - )}%`, - ], - }; - } - - get fourth() { - return { - name: "§6Trample", - desc: [`§7While on your private island, break all crops your pig rides over`], - }; - } -} - -class Rabbit extends Pet { - get stats() { - return { - health: this.level * 1, - speed: this.level * 0.2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.3, uncommon: 0.4, epic: 0.5 }); - return { - name: "§6Happy Feet ", - desc: [`§7Jump Potions also give §a+${round(this.level * mult, 0)} §7speed`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.25, epic: 0.3 }); - return { - name: "§6Farming Exp Boost ", - desc: [`§7Boosts your Farming Exp by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Efficient Farming", - desc: [`§7Farming minions work §a${round(this.level * mult, 1)}% §7faster while on your island.`], - }; - } -} - -class Armadillo extends Pet { - get stats() { - return { - defense: this.level * 2, - }; - } - - get abilities() { - const list = [this.first, this.second, this.third]; - if (this.rarity >= RARE) { - list.push(this.fourth); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fifth); - } - return list; - } - - get first() { - return { - name: "§6Rideable", - desc: [`§7Right-click on your summoned pet to ride it!`], - }; - } - - get second() { - return { - name: "§6Tunneler", - desc: [`§7The Armadillo breaks all stone or ore in it's path while you are riding it in the §3Crystal Hollows`], - }; - } - - get third() { - return { - name: "§6Earth Surfer", - desc: [`§7The Armadillo moves faster based on your §fSpeed`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { rare: 0.2, epic: 0.3 }); - return { - name: "§6Rolling Miner", - desc: [`§7Every §a${round(60 - this.level * mult, 1)} §7seconds, the next gemstone you mine gives 2x drops.`], - }; - } - - get fifth() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Mobile Tank", - desc: [ - `§7For every §a${round(100 - this.level * mult, 1)} §7Defense, gain §f+1 ${symbols.speed.symbol} Speed §7and §6+1 ${ - symbols.mining_speed.symbol - } Mining Speed`, - ], - }; - } -} - -class Bat extends Pet { - get stats() { - const stats = { - intelligence: this.level * 1, - speed: this.level * 0.05, - }; - if (this.rarity >= MYTHIC) { - stats.sea_creature_chance = this.level * 0.05; - } - return stats; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - if (this.rarity >= MYTHIC) { - list.push(this.fourth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - return { - name: "§6Candy Lover", - desc: [`§7Increases the chance for mobs to drop Candy by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult_intel = getValue(this.rarity, { rare: 0.2, epic: 0.3 }); - const mult_speed = getValue(this.rarity, { rare: 0.4, epic: 0.5 }); - return { - name: "§6Nightmare", - desc: [ - `§7During night, gain §a${round(this.level * mult_intel, 1)} §9${symbols.intelligence.symbol} Intelligence, §a${round( - this.level * mult_speed, - 1 - )} §f${symbols.speed.symbol} Speed§7, and night vision`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Wings of Steel", - desc: [`§7Deals §a+${round(this.level * mult, 1)}% §7damage to §6Spooky §7enemies during the §6Spooky Festival`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { mythic: 0.25 }); - return { - name: "§6Sonar", - desc: [`§7+§a${round(this.level * mult, 1)}% §7chance to fish up spooky sea creatures`], - }; - } -} - -class Endermite extends Pet { - get stats() { - return { - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.3, uncommon: 0.4, epic: 0.5 }); - return { - name: "§6More Stonks", - desc: [ - `§7Gain more exp orbs for breaking end stone and gain a +§a${round( - this.level * mult, - 1 - )}% §7chance to get an extra block dropped.`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.03, epic: 0.05 }); - return { - name: "§6Pearl Muncher", - desc: [`§7Upon picking up an ender pearl, consume it and gain §a${5 + round(this.level * mult, 1)} §6coins`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.4 }); - return { - name: "§6Pearl Powered", - desc: [`§7Upon consuming an ender pearl, gain +§a${10 + round(this.level * mult, 1)} §7speed for 10 seconds`], - }; - } -} - -class MithrilGolem extends Pet { - get stats() { - return { - true_defense: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.5, uncommon: 0.75, epic: 1 }); - return { - name: "§6Mithril Affinity", - desc: [`§7Gain +§a${round(this.level * mult, 1)} §6${symbols.mining_speed.symbol} Mining Speed §7when mining §eMithril`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.1, epic: 0.2 }); - return { - name: "§6The Smell Of Powder", - desc: [`§7Gain +§a${round(this.level * mult, 1)}% §7more §2Mithril Powder`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Danger Averse", - desc: [`§7Increases your combat stats by +§a${round(this.level * mult, 1)}% §7on mining islands`], - }; - } -} - -class Rock extends Pet { - get stats() { - return { - defense: this.level * 2, - true_defense: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= RARE) { - list.push(this.third); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fourth); - } - return list; - } - - get first() { - return { - name: "§6Ridable", - desc: [`§7Right-click on your summoned pet to ride it!`], - }; - } - - get second() { - return { - name: "§6Sailing Stone", - desc: [`§7Sneak to move your rock to your location (15s cooldown)`], - }; - } - - get third() { - const mult = getValue(this.rarity, { rare: 0.2, epic: 0.25 }); - return { - name: "§6Fortify", - desc: [`§7While sitting on your rock, gain +§a${round(this.level * mult, 1)}% §7defense`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Steady Ground", - desc: [`§7While sitting on your rock, gain +§a${round(this.level * mult, 1)}§7% damage`], - }; - } -} - -class Scatha extends Pet { - get stats() { - return { - defense: this.level * 1, - mining_speed: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { rare: 1, epic: 1.25 }); - return { - name: "§6Grounded", - desc: [`§7Gain §6+${round(this.level * mult - 0.01, 1)}${symbols.mining_fortune.symbol} Mining Fortune§7`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.025, epic: 0.03 }); - return { - name: "§6Burrowing", - desc: [`§7Grants a §a+${round(this.level * mult, 1)}% §7chance to find treasure while mining`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 1 }); - return { - name: "§6Wormhole", - desc: [`§7Gives a §a${round(this.level * mult, 1)}% §7to mine 2 adjacent stone or hard stone`], - }; - } -} - -class Silverfish extends Pet { - get stats() { - return { - defense: this.level * 1, - health: this.level * 0.2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.05, uncommon: 0.1, epic: 0.15 }); - return { - name: "§6True Defense Boost", - desc: [`§7Boosts your §f${symbols.true_defense.symbol} True Defense §7by §a${floor(this.level * mult, 1)}`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.25, epic: 0.3 }); - return { - name: "§6Mining Exp Boost", - desc: [`§7Boosts your Mining exp by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - return { - name: "§6Dexterity", - desc: [`§7Gives permanent haste III`], - }; - } -} - -class WitherSkeleton extends Pet { - get stats() { - return { - crit_chance: this.level * 0.05, - intelligence: this.level * 0.25, - crit_damage: this.level * 0.25, - defense: this.level * 0.25, - strength: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.3 }); - return { - name: "§6Stronger Bones", - desc: [`§7Take §a${round(this.level * mult, 1)}% §7less damage from skeletons`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.25 }); - return { - name: "§6Wither Blood", - desc: [`§7Deal §a${round(this.level * mult, 1)}% §7more damage to wither mobs`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 2 }); - return { - name: "§6Death's Touch", - desc: [ - `§7Upon hitting an enemy inflict the wither effect for §a${round( - this.level * mult, - 1 - )}% §7damage over 3 seconds`, - `§8Does not stack`, - ], - }; - } -} - -class Bal extends Pet { - get stats() { - return { - ferocity: this.level * 0.1, - strength: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - return { - name: "§6Protective Skin", - desc: [`§7§7Gives §cheat immunity.`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.1 }); - return { - name: "§6Fire Whip", - desc: [ - `§7Every §a5s §7while in combat the Balrog will strike nearby enemies with his fire whip dealing §c${round( - this.level * mult, - 1 - )}% §7of your damage as §ftrue damage.`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.15 }); - return { - name: "§6Made of Lava", - desc: [`§7Gain §a${round(this.level * mult, 1)}% §7on ALL stats when inside the §cMagma Fields.`], - }; - } -} - -class BlackCat extends Pet { - get stats() { - return { - speed: this.level * 0.25, - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { legendary: 1 }); - return { - name: "§6Hunter", - desc: [`§7Increases your speed and speed cap by +§a${round(this.level * mult, 1)}`], - }; - } - - get second() { - const mult = getValue(this.rarity, { legendary: 0.15 }); - return { - name: "§6Omen", - desc: [`§7Grants §d${floor(this.level * mult, 1)} ${symbols.pet_luck.symbol} Pet Luck`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.15 }); - return { - name: "§6Supernatural", - desc: [`§7Grants §b${floor(this.level * mult, 1)} ${symbols.magic_find.symbol} Magic Find`], - }; - } -} - -class Blaze extends Pet { - get stats() { - return { - intelligence: this.level * 1, - defense: 10 + this.level * 0.2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.1 }); - return { - name: "§6Nether Embodiment", - desc: [`§7Increases all stats by §a${round(this.level * mult, 1)}% §7while on the Blazing Fortress`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.4 }); - return { - name: "§6Bling Armor", - desc: [`§7Upgrades §cBlaze Armor §7stats and ability by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - return { - name: "§6Fusion-Style Potato", - desc: [`§7Doubles effects of hot potato books`], - }; - } -} - -class EnderDragon extends Pet { - get stats() { - return { - strength: this.level * 0.5, - crit_chance: this.level * 0.1, - crit_damage: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.25 }); - return { - name: "§6End Strike", - desc: [`§7Deal §a${round(this.level * mult, 1)}% §7more damage to end mobs`], - }; - } - - get second() { - return { - name: "§6One With The Dragon", - desc: [ - `§7Buffs the Aspect of the Dragons sword by §a${round(this.level * 0.5, 1)} §c${ - symbols.strength.symbol - } Damage and §a${round(this.level * 0.3, 1)} §c${symbols.strength.symbol} Strength`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.1 }); - return { - name: "§6Superior", - desc: [`§7Increases all stats by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class GoldenDragon extends Pet { - get stats() { - const stats = {}; - if (this.level >= 100) { - stats.strength = round(Math.max(0, this.level - 100) * 0.25 + 25 - 0.01, 0); - stats.magic_find = round(floor(this.level / 10) * 0.5); - stats.bonus_attack_speed = round(Math.max(0, this.level - 100) * 0.25 + 25 - 0.01, 0); - } - return stats; - } - - get abilities() { - const list = []; - if (this.level < 100) { - list.push(this.hatching_first); - list.push(this.hatching_second); - } else { - list.push(this.first); - list.push(this.second); - list.push(this.third); - list.push(this.fourth); - } - return list; - } - - get hatching_first() { - return { - name: "§7Perks", - desc: [`§c§l???`], - }; - } - - get hatching_second() { - return { - name: "§7Hatches at level §b100", - desc: [""], - }; - } - - get first() { - const value = Math.max(0, this.level - 100) * 0.5 + 50; - return { - name: "§6Gold's Power", - desc: [`§7Adds §c+${round(value, 1)} ${symbols.strength.symbol} Strength §7to all §6golden §7weapons`], - }; - } - - get second() { - return { - name: "§6Shining Scales", - desc: [ - `§7For each digit in your §6gold collection §7gain §c+10 ${symbols.strength.symbol} Strength §7and §b+2 ${symbols.magic_find.symbol} Magic Find`, - ], - }; - } - - get third() { - const value = Math.max(0, this.level - 100) * 0.2 + 20; - return { - name: "§6Dragon's Greed", - desc: [ - `§7Gain §a${round(value, 1)}% §7of your §b${symbols.magic_find.symbol} Magic Find §7as §c${symbols.strength.symbol} Strength`, - ], - }; - } - - get fourth() { - const value = this.level * 0.00125; - - return { - name: "§6Legendary Treasure", - desc: [`§7Gain §c${round(value, 4)}% §7damage for every milion coins in your bank`], - }; - } -} - -class Enderman extends Pet { - get stats() { - return { - crit_damage: this.level * 0.75, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - if (this.rarity >= MYTHIC) { - list.push(this.fourth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.2, epic: 0.3 }); - return { - name: "§6Enderian", - desc: [`§7Take §a${round(this.level * mult, 1)}% §7less damage from end monsters`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.5, epic: 0.5 }); - return { - name: "§6Teleport Savvy", - desc: [ - `§7Buffs the Aspect of the End ability granting §a${round( - this.level * mult, - 1 - )} §7weapon damage for 5s on use.`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Zealot Madness", - desc: [`§7Increases your odds to find a special Zealot by §a${round(this.level * mult, 1)}%.`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { mythic: 0.4 }); - return { - name: "§6Enderman Slayer", - desc: [`§7Gain +§a${round(this.level * mult, 1)}% §7more combat xp from endermen`], - }; - } -} - -class Ghoul extends Pet { - get stats() { - return { - intelligence: this.level * 0.75, - health: this.level * 1, - ferocity: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.25 }); - return { - name: "§6Amplified Healing", - desc: [`§7Increase all healing by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.5 }); - return { - name: "§6Zombie Arm", - desc: [`§7Increase the health and range of the Zombie sword by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 1 }); - return { - name: "§6Reaper Soul", - desc: [`§7Increases the health and lifespan of the Reaper Scythe zombies by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Golem extends Pet { - get stats() { - return { - health: this.level * 1.5, - strength: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.3 }); - return { - name: "§6Last Stand", - desc: [`§7While less than 15% HP, deal §a${round(this.level * mult, 1)}% §7more damage`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.2, legendary: 0.25 }); - return { - name: "§6Ricochet", - desc: [ - `§7Your iron plating causes §a${round(this.level * mult, 1)}% §7of attacks to ricochet and hit the attacker`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 3 }); - return { - name: "§6Toss", - desc: [ - `§7Every 5 hits, throw the enemy up into the air and deal §a${round( - 200 + this.level * mult, - 1 - )}% §7damage (10s cooldown)`, - ], - }; - } -} - -class Griffin extends Pet { - get stats() { - return { - strength: this.level * 0.25, - crit_chance: this.level * 0.1, - crit_damage: this.level * 0.5, - intelligence: this.level * 0.1, - magic_find: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= UNCOMMON) { - list.push(this.second); - } - if (this.rarity >= EPIC) { - list.push(this.third); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fourth); - } - return list; - } - - get first() { - return { - name: "§6Odyssey", - desc: [ - `§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.`, - ], - }; - } - - get second() { - const regen = getValue(this.rarity, { uncommon: "V", rare: "VI", legendary: "VII" }); - const strength = getValue(this.rarity, { uncommon: "VII", epic: "VIII" }); - return { - name: "§6Legendary Constitution", - desc: [`§7Permanent §cRegeneration ${regen} §7and §4Strength ${strength}§7.`], - }; - } - - get third() { - const mult = getValue(this.rarity, { epic: 0.16, legendary: 0.2 }); - return { - name: "§6Perpetual Empathy", - desc: [ - `§7Heal nearby players for §a${round(this.level * mult, 0)}% §7of the final damage you receive.`, - `§8Excludes other griffins.`, - ], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { legendary: 0.14 }); - return { - name: "§6King of Kings", - desc: [ - `§7Gain §c+${round(1 + this.level * mult, 1)}% §c${symbols.strength.symbol} Strength §7when above §c85% §7health.`, - ], - }; - } -} - -class Guardian extends Pet { - get stats() { - return { - intelligence: this.level * 1, - defense: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.02, uncommon: 0.04, rare: 0.1, epic: 0.15, legendary: 0.2 }); - return { - name: "§6Lazerbeam", - desc: [ - `§7Zap your enemies for §b${round(this.level * mult, 1)}x §7your §b${ - symbols.intelligence.symbol - } Intelligence §7every §a3s`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.25, epic: 0.3 }); - return { - name: "§6Enchanting Exp Boost", - desc: [`§7Boosts your Enchanting exp by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Mana Pool", - desc: [`§7Regenerate §b${round(this.level * mult, 1)}% §7extra mana, doubled when near or in water`], - }; - } -} - -class Horse extends Pet { - get stats() { - return { - intelligence: this.level * 0.5, - speed: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - return { - name: "§6Ridable", - desc: [`§7Right-click your summoned pet to ride it!`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 1.1, epic: 1.2 }); - return { - name: "§6Run", - desc: [`§7Increase the speed of your mount by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Ride Into Battle", - desc: [`§7When riding your horse, gain +§a${round(this.level * mult, 1)}% §7bow damage`], - }; - } -} - -class Hound extends Pet { - get stats() { - return { - strength: this.level * 0.4, - bonus_attack_speed: this.level * 0.15, - ferocity: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.05 }); - return { - name: "§6Scavenger", - desc: [`§7Gain +§a${round(this.level * mult, 1)} §7coins per monster kill`], - }; - } - - get second() { - const mult = getValue(this.rarity, { legendary: 0.1 }); - return { - name: "§6Finder", - desc: [`§7Increases the chance for monsters to drop their armor by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.1 }); - return { - name: "§6Fury Claws", - desc: [`§7Grants ${round(this.level * mult, 1)} §e${symbols.bonus_attack_speed.symbol} Bonus Attack Speed`], - }; - } -} - -class MagmaCube extends Pet { - get stats() { - return { - health: this.level * 0.5, - defense: this.level * 0.33, - strength: this.level * 0.2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.2, rare: 0.25, epic: 0.3 }); - return { - name: "§6Slimy Minions", - desc: [`§7Slime minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.2, epic: 0.25 }); - return { - name: "§6Salt Blade", - desc: [`§7Deal §a${round(this.level * mult, 1)}% §7more damage to slimes`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Hot Ember", - desc: [`§7Buffs the stats of Ember Armor by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Phoenix extends Pet { - get stats() { - return { - strength: 10 + this.level * 0.5, - intelligence: 50 + this.level * 1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - list.push(this.fourth); - } - return list; - } - - get first() { - const start_strength = getValue(this.rarity, { epic: 10, legendary: 15 }); - const mult_strength = getValue(this.rarity, { epic: 0.1, legendary: 0.15 }); - const mult_time = getValue(this.rarity, { epic: 0.02 }); - return { - name: "§6Rekindle", - desc: [ - `§7Before death, become §eimmune §7and gain §c${start_strength + round(this.level * mult_strength, 1)} ${ - symbols.strength.symbol - } Strength §7for ${2 + round(this.level * mult_time, 1)} §7seconds`, - `§73 minutes cooldown`, - ], - }; - } - - get second() { - const mult_damage = getValue(this.rarity, { epic: 0.12, legendary: 0.14 }); - const mult_time = getValue(this.rarity, { epic: 0.04 }); - return { - name: "§6Fourth Flare", - desc: [ - `§7On 4th melee strike, §6ignite §7mobs, dealing §c${1 + round(this.level * mult_damage, 1)}x §7your §9${ - symbols.crit_damage.symbol - } Crit Damage §7each second for §a${2 + floor(this.level * mult_time, 0)} §7seconds`, - ], - }; - } - - get third() { - return { - name: "§6Magic Bird", - desc: [`§7You may always fly on your private island`], - }; - } - - get fourth() { - return { - name: "§6Eternal Coins", - desc: [`§7Don't lose coins from death.`], - }; - } -} - -class Pigman extends Pet { - get stats() { - return { - strength: this.level * 0.5, - defense: this.level * 0.5, - ferocity: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.3 }); - return { - name: "§6Bacon Farmer", - desc: [`§7Pig minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } - - get second() { - const mult_damage = getValue(this.rarity, { epic: 0.4 }); - const mult_strength = getValue(this.rarity, { epic: 0.25 }); - return { - name: "§6Pork Master", - desc: [ - `§7Buffs the Pigman sword by §a${round(this.level * mult_damage, 1)} §c${ - symbols.strength.symbol - } Damage and §7§a${round(this.level * mult_strength, 1)} §c${symbols.strength.symbol} Strength`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Giant Slayer", - desc: [`§7Deal §a${round(this.level * mult, 1)}% §7extra damage to monsters level 100 and up`], - }; - } -} - -class Rat extends Pet { - get stats() { - return { - strength: this.level * 0.5, - crit_damage: this.level * 0.1, - health: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - return { - name: "§6Morph", - desc: [`§7Right-click your summoned pet to morph into it!`], - }; - } - - get second() { - return { - name: "§6CHEESE!", - desc: [`§7As a Rat, you smell §e§lCHEESE §r§7nearby! Yummy!`], - }; - } - - get third() { - const mult_mf = getValue(this.rarity, { legendary: 0.05 }); - const mult_time = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Rat's Blessing", - desc: [ - `§7Has a chance to grant a random player §b+${floor(2 + this.level * mult_mf, 1)} ${ - symbols.magic_find.symbol - } Magic Find §7for §a${round( - 20 + this.level * mult_time, - 0 - )} §7seconds after finding a yummy piece of Cheese! If the player gets a drop during this buff, you have a §a20% §7to get it too.`, - ], - }; - } -} - -class SkeletonHorse extends Pet { - get stats() { - return { - speed: this.level * 0.5, - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first, this.second, this.third]; - return list; - } - - get first() { - return { - name: "§6Ridable", - desc: [`§7Right-click your summoned pet to ride it!`], - }; - } - - get second() { - const mult = getValue(this.rarity, { legendary: 1.5 }); - return { - name: "§6Run", - desc: [`§7Increase the speed of your mount by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.4 }); - return { - name: "§6Ride Into Battle", - desc: [`§7When riding your horse, gain +§a${round(this.level * mult, 1)}% §7bow damage`], - }; - } -} - -class Skeleton extends Pet { - get stats() { - return { - crit_chance: this.level * 0.15, - crit_damage: this.level * 0.3, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - return { - name: "§6Bone Arrows", - desc: [`§7Increase arrow damage by §a${round(this.level * mult, 1)}% §7which is tripled while in dungeons`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.15, epic: 0.17, legendary: 0.2 }); - return { - name: "§6Combo", - desc: [ - `§7Gain a combo stack for every bow hit granting +§a3 §c${symbols.strength.symbol} Strength§7. Max §a${round( - this.level * mult, - 1 - )} §7stacks, stacks disappear after 8 seconds`, - ], - }; - } - - get third() { - return { - name: "§6Skeletal Defense", - desc: [ - `§7Your skeleton shoots an arrow dealing §a30x §7your §9${symbols.crit_damage.symbol} Crit Damage §7when a mob gets close to you (5s cooldown)`, - ], - }; - } -} - -class Snowman extends Pet { - get stats() { - return { - damage: this.level * 0.25, - strength: this.level * 0.25, - crit_damage: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first, this.second, this.third]; - return list; - } - - get first() { - const mult = getValue(this.rarity, { legendary: 0.04 }); - return { - name: "§6Blizzard", - desc: [`§7Slow all enemies within §a${4 + round(this.level * mult, 1)} §7blocks`], - }; - } - - get second() { - const mult = getValue(this.rarity, { legendary: 0.15 }); - return { - name: "§6Frostbite", - desc: [ - `§7Your freezing aura slows enemy attacks causing you to take §a${floor( - this.level * mult, - 1 - )}% §7reduced damage`, - ], - }; - } - - get third() { - return { - name: "§6Snow Cannon", - desc: [ - `§7Your snowman fires a snowball dealing §a5x §7your §c${symbols.strength.symbol} Strength §7when a mob gets close to you (1s cooldown)`, - ], - }; - } -} - -class Spider extends Pet { - get stats() { - return { - strength: this.level * 0.1, - crit_chance: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1 }); - return { - name: "§6One With The Spider", - desc: [ - `§7Gain §a${round(this.level * mult, 1)} §c${symbols.strength.symbol} Strength §7for every nearby spider`, - `§8Max 10 spiders`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.4 }); - return { - name: "§6Web-weaver", - desc: [`§7Upon hitting a monster it becomes slowed by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Spider Whisperer", - desc: [`§7Spider and tarantula minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } -} - -class Spirit extends Pet { - get stats() { - return { - intelligence: this.level * 1, - speed: this.level * 0.3, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - return { - name: "§6Spirit Assistance", - desc: [`§7Spawns and assists you when you are ghost in dungeons.`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.45 }); - return { - name: "§6Spirit Cooldowns", - desc: [`§7Reduces the cooldown of your ghost abilities in dungeons by §a${round(5 + this.level * mult, 1)}%§7.`], - }; - } - - get third() { - return { - name: "§6Half Life", - desc: [ - `§7If you are the first player to die in a dungeon, the score penalty for that death is reduced to §a1§7.`, - ], - }; - } -} - -class Tarantula extends Pet { - get stats() { - return { - crit_chance: this.level * 0.1, - crit_damage: this.level * 0.3, - strength: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.3 }); - return { - name: "§6Webbed Cells", - desc: [`§7Anti-healing is §a${round(this.level * mult, 1)}% §7less effective against you`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.5 }); - return { - name: "§6Eight Legs", - desc: [`§7Decreases the mana cost of Spider, Tarantula and Thorn's boots by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.4 }); - return { - name: "§6Arachnid Slayer", - desc: [`§7Gain +§a${round(this.level * mult, 1)}% §7more combat xp from spiders`], - }; - } -} - -class Tiger extends Pet { - get stats() { - return { - strength: 5 + this.level * 0.1, - crit_chance: this.level * 0.05, - crit_damage: this.level * 0.5, - ferocity: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.2, epic: 0.3 }); - return { - name: "§6Merciless Swipe", - desc: [`§7Gain §c+${round(this.level * mult, 1)}% ${symbols.ferocity.symbol} Ferocity.`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.3, epic: 0.55 }); - return { - name: "§6Hemorrhage", - desc: [`§7Melee attacks reduce healing by §6${round(this.level * mult, 1)}% §7for §a10s`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Apex Predator", - desc: [ - `§7Deal §c+${round(this.level * mult, 1)}% §7damage against targets with no other mobs within §a15 §7blocks`, - ], - }; - } -} - -class Turtle extends Pet { - get stats() { - return { - health: this.level * 0.5, - defense: this.level * 1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - list.push(this.fourth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.27 }); - return { - name: "§6Turtle Tactics", - desc: [`§7Gain §a+${round(3 + this.level * mult, 1)}% ${symbols.defense.symbol} Defense`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.15, legendary: 0.25 }); - return { - name: "§6Genius Amniote", - desc: [ - `§7Grants §a+${round(5 + this.level * mult, 1)} ${ - symbols.defense.symbol - } Defense §7for every player around you, up to 4 nearby players.`, - ], - }; - } - - get third() { - return { - name: "§6Unflippable", - desc: [`§7Gain §aimmunity §7to knockback`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Turtle Shell", - desc: [`§7When under §c33% §7maximum HP, you take §a${round(this.level * mult, 1)}% §7less damage.`], - }; - } -} - -class Wolf extends Pet { - get stats() { - return { - health: this.level * 0.5, - crit_damage: this.level * 0.1, - speed: this.level * 0.2, - true_defense: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.2, epic: 0.3 }); - return { - name: "§6Alpha Dog", - desc: [`§7Take §a${round(this.level * mult, 1)}% §7less damage from wolves`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.1, epic: 0.15 }); - return { - name: "§6Pack Leader", - desc: [ - `§7Gain §a${round(this.level * mult, 1)} §9 ${ - symbols.crit_damage.symbol - } Crit Damage §7for every nearby wolf monsters`, - `§8Max 10 wolves`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Combat Exp Boost", - desc: [`§7Boosts your Combat exp by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class GrandmaWolf extends Pet { - get stats() { - return { - health: this.level * 1, - strength: this.level * 0.25, - }; - } - - get abilities() { - const list = [this.first]; - return list; - } - - get first() { - return { - name: "§6Kill Combo", - desc: [ - `§7Gain buffs for combo kills. Effects stack as you increase your combo.`, - ``, - `§a5 Combo §8(lasts §a${Math.floor((8 + this.level * 0.02) * 10) / 10}s§8)`, - `§8+§b3% §b${symbols.magic_find.symbol} Magic Find`, - `§a10 Combo §8(lasts §a${Math.floor((6 + this.level * 0.02) * 10) / 10}s§8)`, - `§8+§610 §7coins per kill`, - `§a15 Combo §8(lasts §a${Math.floor((4 + this.level * 0.02) * 10) / 10}s§8)`, - `§8+§b3% §b${symbols.magic_find.symbol} Magic Find`, - `§a20 Combo §8(lasts §a${Math.floor((3 + this.level * 0.02) * 10) / 10}s§8)`, - `§8+§315% §7Combat Exp`, - `§a25 Combo §8(lasts §a${Math.floor((3 + this.level * 0.01) * 10) / 10}s§8)`, - `§8+§b3% §b${symbols.magic_find.symbol} Magic Find`, - `§a30 Combo §8(lasts §a${Math.floor((2 + this.level * 0.01) * 10) / 10}s§8)`, - `§8+§610 §7coins per kill`, - ], - }; - } -} - -class Zombie extends Pet { - get stats() { - return { - crit_damage: this.level * 0.3, - health: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.15, epic: 0.25 }); - return { - name: "§6Chomp", - desc: [`§7Gain +§a${round(this.level * mult, 1)} §7hp per zombie kill`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.2 }); - return { - name: "§6Rotten Blade", - desc: [`§7Deal §a${round(this.level * mult, 1)}% §7more damage to zombies`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Living Dead", - desc: [`§7Increases the defense of all undead armor sets by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Giraffe extends Pet { - get stats() { - return { - health: this.level * 1, - crit_chance: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.05, uncommon: 0.1, rare: 0.15, epic: 0.2, legendary: 0.25 }); - return { - name: "§6Good Heart", - desc: [`§7Regen §c${round(this.level * mult, 1)} ${symbols.health.symbol} §7per second`], - }; - } - - get second() { - const mult_strength = getValue(this.rarity, { rare: 0.4, epic: 0.5 }); - const mult_cd = getValue(this.rarity, { rare: 0.1, epic: 0.25, legendary: 0.4 }); - return { - name: "§6Higher Ground", - desc: [ - `§7Grants §c+${round(this.level * mult_strength, 1)} ${symbols.strength.symbol} Strength §7and §9+${round( - this.level * mult_cd + 20, - 1 - )} ${symbols.crit_damage.symbol} Crit Damage §7when mid air or jumping`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Long Neck", - desc: [`§7See enemies from afar and gain §a${round(this.level * mult, 1)}% §7dodge chance`], - }; - } -} - -class Lion extends Pet { - get stats() { - return { - strength: this.level * 0.5, - speed: this.level * 0.25, - ferocity: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.03, uncommon: 0.05, rare: 0.1, epic: 0.15, legendary: 0.2 }); - return { - name: "§6Primal Force", - desc: [ - `§7Adds §c+${round(this.level * mult, 1)} ${symbols.strength.symbol} Damage §7and §c+${round(this.level * mult, 1)} ${ - symbols.strength.symbol - } Strength §7to your weapons`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.75, epic: 1 }); - return { - name: "§6First Pounce", - desc: [ - `§7First Strike, Triple-Strike, and §d§lCombo §r§7are §a${round(this.level * mult, 1)}% §7more effective.`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.15 }); - return { - name: "§6King of the Jungle", - desc: [ - `§7Deal §c+${round(this.level * mult, 1)}% ${symbols.strength.symbol} Damage §7against mobs that have attacked you.`, - ], - }; - } -} - -class Monkey extends Pet { - get stats() { - return { - speed: this.level * 0.2, - intelligence: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.4, uncommon: 0.5, epic: 0.6 }); - return { - name: "§6Treeborn", - desc: [ - `§7Grants §a+${round(this.level * mult, 1)} §6${ - symbols.foraging_fortune - } Foraging Fortune§7, which increases your chance at double logs`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.75, epic: 1 }); - return { - name: "§6Vine Swing", - desc: [`§7Gain +§a${round(this.level * mult, 1)} §f${symbols.speed.symbol} Speed §7while in The Park`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Evolved Axes", - desc: [`§7Reduce the cooldown of Jungle Axe and Treecapitator by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Ocelot extends Pet { - get stats() { - return { - speed: this.level * 0.5, - ferocity: this.level * 0.1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.2, uncommon: 0.25, epic: 0.3 }); - return { - name: "§6Foraging Exp Boost", - desc: [`§7Boosts your Foraging exp by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.3 }); - return { - name: "§6Tree Hugger", - desc: [`§7Foraging minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Tree Essence", - desc: [`§7Gain a §a${round(this.level * mult, 1)}% §7chance to get exp from breaking a log`], - }; - } -} - -class BabyYeti extends Pet { - get stats() { - return { - intelligence: this.level * 0.75, - strength: this.level * 0.4, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.5 }); - return { - name: "§6Cold Breeze", - desc: [ - `§7Gives §a${round(this.level * mult, 1)} §c${symbols.strength.symbol} Strength §7and §9${ - symbols.crit_damage.symbol - } Crit Damage §7when near snow`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.5, legendary: 0.75 }); - return { - name: "§6Ice Shields", - desc: [`§7Gain §a${floor(this.level * mult, 1)}% §7of your strength as §a${symbols.defense.symbol} Defense`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 1 }); - return { - name: "§6Yeti Fury", - desc: [ - `§7Buff the Yeti sword by §a${round(this.level * mult, 1)} §c${symbols.strength.symbol} Damage §7and §9${ - symbols.intelligence.symbol - } Intelligence`, - ], - }; - } -} - -class BlueWhale extends Pet { - get stats() { - return { - health: this.level * 2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.5, uncommon: 1, rare: 1.5, epic: 2, legendary: 2.5 }); - return { - name: "§6Ingest", - desc: [`§7All potions heal §c+${round(this.level * mult, 1)} ${symbols.health.symbol}`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.01 }); - const health = getValue(this.rarity, { rare: "30.0", epic: "25.0", legendary: "20.0" }); - return { - name: "§6Bulk", - desc: [ - `§7Gain §a${round(this.level * mult, 1)} ${symbols.defense.symbol} Defense §7per §c${health} Max ${ - symbols.health.symbol - } Health`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Archimedes", - desc: [`§7Gain §c+${round(this.level * mult, 1)}% Max ${symbols.health.symbol} Health`], - }; - } -} - -class Ammonite extends Pet { - get stats() { - return { - sea_creature_chance: this.level * 0.07, - }; - } - - get abilities() { - const list = [this.first, this.second, this.third]; - return list; - } - - get first() { - const mult = getValue(this.rarity, { legendary: 0.01 }); - return { - name: "§6Heart of the Sea", - desc: [ - `§7Each Heart of the Mountain level grants §3+${round(this.level * mult, 1)} ${ - symbols.sea_creature_chance.symbol - } Sea Creature Chance`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { legendary: 0.02 }); - return { - name: "§6Not a Snail", - desc: [ - `§7Each fishing and mining level grants §f+${round(this.level * mult, 1)} ${ - symbols.speed.symbol - } Speed §7and §a+${round(this.level * mult, 1)} ${symbols.defense.symbol} Defense`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.006 }); - return { - name: "§6Gift of the Ammonite", - desc: [`§7Increases your fishing speed by §a${round(this.level * mult, 1)}% §7for each mining level`], - }; - } -} - -class Dolphin extends Pet { - get stats() { - return { - sea_creature_chance: this.level * 0.05, - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.03, uncommon: 0.04, epic: 0.05 }); - const max = getValue(this.rarity, { common: 15, uncommon: 20, epic: 25 }); - return { - name: "§6Pod Tactics", - desc: [ - `§7Increases your fishing speed by §a${round( - this.level * mult, - 1 - )}% §7for each nearby player within 10 blocks up to §a${max}%`, - ], - }; - } - - get second() { - const mult = this.rarity >= EPIC ? 0.1 : 0.07; - return { - name: "§6Echolocation", - desc: [`§7Increases sea creatures catch chance by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - return { - name: "§6Splash Surprise", - desc: [`§7Stun sea creatures for §a5s §7after fishing them up`], - }; - } -} - -class FlyingFish extends Pet { - get stats() { - return { - defense: this.level * 0.5, - strength: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - if (this.rarity >= MYTHIC) { - list.push(this.fourth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { rare: 0.4, epic: 0.5 }); - return { - name: "§6Quick Reel", - desc: [`§7Increases fishing speed by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.8, epic: 1 }); - const type = getValue(this.rarity, { rare: "water", mythic: "lava" }); - return { - name: getValue(this.rarity, { rare: "§6Water Bender", mythic: "§6Lava Bender" }), - desc: [ - `§7Gives §a${round(this.level * mult, 1)} §c${symbols.strength.symbol} Strength §7and §a${ - symbols.defense.symbol - } Defense §7when near ${type}`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - const armor = getValue(this.rarity, { legendary: "Diver Armor", mythic: "Magma Lord armor" }); - return { - name: getValue(this.rarity, { rare: "§6Deep Sea Diver", mythic: "§6Magmatic Diver" }), - desc: [`§7Increases the stats of ${armor} by §a${round(this.level * mult, 1)}%`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { mythic: 0.5 }); - return { - name: "§6Rapid Decay", - desc: [`§7Increases the chance to activate Flash Enchantment by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Megalodon extends Pet { - get stats() { - return { - strength: this.level * 0.5, - magic_find: this.level * 0.1, - ferocity: this.level * 0.05, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.25 }); - return { - name: "§6Blood Scent", - desc: [ - `§7Deal up to §c+${round(mult * this.level, 1)}% ${ - symbols.strength.symbol - } §7Damage based on the enemy's missing health`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.2 }); - return { - name: "§6Enhanced scales", - desc: [`§7Increases the stats of Shark Armor by §a${round(mult * this.level, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Feeding frenzy", - desc: [ - `§7On kill gain §c${round(mult * this.level, 1)} ${symbols.strength.symbol} Damage §7and §f${ - symbols.speed.symbol - } Speed §7for 5 seconds`, - ], - }; - } -} - -class Squid extends Pet { - get stats() { - return { - health: this.level * 0.5, - intelligence: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.5, uncommon: 0.75, epic: 1 }); - return { - name: "§6More Ink", - desc: [`§7Gain a §a${round(this.level * mult, 1)}% §7chance to get double drops from squids`], - }; - } - - get second() { - const mult_damage = getValue(this.rarity, { rare: 0.3, epic: 0.4 }); - const mult_strength = getValue(this.rarity, { rare: 0.1, epic: 0.2 }); - return { - name: "§6Ink Specialty", - desc: [ - `§7Buffs the Ink Wand by §a${round(this.level * mult_damage, 1)} §c${symbols.strength.symbol} Damage §7and §a${round( - this.level * mult_strength, - 1 - )} §c${symbols.strength.symbol} Strength`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.3 }); - return { - name: "§6Fishing Exp Boost", - desc: [`§7Boosts your Fishing exp by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Jellyfish extends Pet { - get stats() { - return { - health: this.level * 2, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult_health = getValue(this.rarity, { epic: 1 }); - const mult_mana = getValue(this.rarity, { epic: 0.5 }); - return { - name: "§6Radiant Regeneration", - desc: [ - `§7While in dungeons, increase your base health regen by §a${round( - this.level * mult_health, - 1 - )}% §7and reduces the mana cost of Power Orbs by §a${round(this.level * mult_mana, 1)}%§7.`, - ], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.01 }); - return { - name: "§6Stored Energy", - desc: [ - `§7While in dungeons, for every §c2,000 HP §7you heal teammates the cooldown of §aWish §7is reduced by §a${round( - this.level * mult, - 2 - )}s§7, up to §a30s§7.`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.5 }); - return { - name: "§6Powerful Potions", - desc: [`§7While in dungeons, increase the effectiveness of Dungeon Potions by §a${round(this.level * mult, 1)}%`], - }; - } -} - -class Parrot extends Pet { - get stats() { - return { - crit_damage: this.level * 0.1, - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - list.push(this.fourth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { epic: 0.15, legendary: 0.2 }); - return { - name: "§6Flamboyant", - desc: [`§7Adds §a${Math.max(round(this.level * mult, 0), 1)} §7levels to intimidation accessories`], - }; - } - - get second() { - const mult = getValue(this.rarity, { epic: 0.35 }); - return { - name: "§6Repeat", - desc: [`§7Boosts potion duration by §a${round(5 + this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Bird Discourse", - desc: [ - `§7Gives §c+${round(5 + this.level * mult, 1)} ${symbols.strength.symbol} Strength §7to players within §a20 §7blocks`, - `§7Doesn't stack`, - ], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - return { - name: "§6Parrot Feather Infusion", - desc: [ - `§7When summoned or in your pets menu, boost the duration of consumed §cGod Potions §7by §a${round( - this.level * mult, - 1 - )}%`, - ], - }; - } -} - -class Sheep extends Pet { - get stats() { - return { - ability_damage: this.level * 0.2, - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - return { - name: "§6Mana Saver", - desc: [`§7Reduces the mana cost of abilities by §a${round(this.level * mult, 1)}%`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.1 }); - return { - name: "§6Overheal", - desc: [`§7Gives a §a${round(this.level * mult, 1)}% §7shield after not taking damage for 10s`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.25 }); - return { - name: "§6Dungeon Wizard", - desc: [`§7Increases your total mana by §a${round(this.level * mult, 1)}% §7while in dungeons`], - }; - } -} - -class Jerry extends Pet { - get stats() { - return { - intelligence: this.level * -1, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - if (this.rarity >= MYTHIC) { - list.push(this.fourth); - } - return list; - } - - get first() { - return { - name: "§6Jerry", - desc: [`§7Gain §a50% §7chance to deal your regular damage`], - }; - } - - get second() { - return { - name: "§6Jerry", - desc: [`§7Gain §a100% §7chance to receive a normal amount of drops from mobs`], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.1, mythic: 0.5 }); - return { - name: "§6Jerry", - desc: [`§7Actually adds §c${Math.floor(this.level * mult)} damage §7to the Aspect of the Jerry`], - }; - } - - get fourth() { - return { - name: "§6Jerry", - desc: [`§7Tiny chance to find Jerry Candies when killing mobs`], - }; - } -} - -class Bingo extends Pet { - get stats() { - return { - health: 25 + this.level * 0.75, - strength: 5 + this.level * 0.2, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= UNCOMMON) { - list.push(this.second); - } - if (this.rarity >= RARE) { - list.push(this.third); - } - if (this.rarity >= EPIC) { - list.push(this.fourth); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fifth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.2 }); - return { - name: "§6Lucky Looting", - desc: [`§7Gain §c${floor(5 + this.level * mult, 1)}% §7more collection items from any source!`], - }; - } - - get second() { - const mult = getValue(this.rarity, { uncommon: 0.1 }); - return { - name: "§6Fast Learner", - desc: [`§7Gain §c${floor(5 + this.level * mult, 1)}% §7more Skill Experience and §9Slayer §7Experience.`], - }; - } - - get third() { - const mult = getValue(this.rarity, { rare: 0.3 }); - return { - name: "§6Chimera", - desc: [`§7Increases your base stats of your active pet by §c${floor(10 + this.level * mult, 1)}% §7per level.`], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { epic: 0.009 }); - return { - name: "§6Scavenger", - desc: [`§7Gain §c${round(0.1 + this.level * mult, 1)} §7more §l§6Coins §r§7per monster level on kill.`], - }; - } - - get fifth() { - const mult = getValue(this.rarity, { legendary: 0.08 }); - return { - name: "§6Scavenger", - desc: [`§7Recover §b${round(2 + this.level * mult, 1)} mana §7when using mana.`], - }; - } -} - -class Wisp extends Pet { - get stats() { - return { - true_defense: this.level * 0.1, - health: this.level * 1, - intelligence: this.level * 0.5, - }; - } - - get abilities() { - const list = [this.first, this.second, this.third]; - if (this.rarity >= RARE) { - list.push(this.fourth); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fifth); - } - return list; - } - - get first() { - return { - name: "§6Drophammer", - desc: [`§7Lets you break fire pillars`], - }; - } - - get second() { - const bonuses = [ - { kills: 0, defense: 0, true_defense: 0 }, - { kills: 100, defense: 30, true_defense: 3 }, - { kills: 200, defense: 60, true_defense: 6 }, - { kills: 300, defense: 90, true_defense: 9 }, - { kills: 500, defense: 135, true_defense: 14 }, - { kills: 800, defense: 180, true_defense: 18 }, - { kills: 1200, defense: 225, true_defense: 23 }, - { kills: 1750, defense: 270, true_defense: 27 }, - { kills: 2500, defense: 315, true_defense: 32 }, - { kills: 3500, defense: 360, true_defense: 36 }, - { kills: 5000, defense: 405, true_defense: 41 }, - { kills: 10000, defense: 465, true_defense: 47 }, - { kills: 25000, defense: 500, true_defense: 50 }, - { kills: 50000, defense: 535, true_defense: 53 }, - { kills: 100000, defense: 570, true_defense: 57 }, - { kills: 125000, defense: 585, true_defense: 58 }, - { kills: 150000, defense: 595, true_defense: 59 }, - { kills: 200000, defense: 600, true_defense: 60 }, - ]; - - const blaze_kills = this.extra?.blaze_kills ?? 0; - - let maxTier = false; - let bonusIndex = bonuses.findIndex((x) => x.kills > blaze_kills); - - if (bonusIndex === -1) { - bonusIndex = bonuses.length; - maxTier = true; - } - - const current = bonuses[bonusIndex - 1]; - - let next = null; - if (!maxTier) { - next = bonuses[bonusIndex]; - } - - return { - name: "§6Bulwark", - desc: [ - `§7Kill Blazes to gain defense against them`, - `§7Bonus: §a+${current.defense} ${symbols.defense.symbol} §7& §f+${current.true_defense} ${symbols.true_defense.symbol}`, - !maxTier - ? `§7Next Upgrade: §a+${next.defense} ${symbols.defense.symbol} §7& §f+${next.true_defense} ${ - symbols.true_defense.symbol - } §7(§a${blaze_kills.toLocaleString()}§7/§c${next.kills.toLocaleString()}§7)` - : "§aMAXED OUT!", - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { uncommon: 0.3, rare: 0.35, epic: 0.4 }); - const prc = round(this.level * mult, 1); - - return { - name: "§6Blaze Slayer", - desc: [`§7Gain §a+${prc}% §7more combat xp from Blazes`], - }; - } - - get fourth() { - const mult1 = getValue(this.rarity, { rare: 0.15, epic: 0.2, legendary: 0.25 }); - const mult2 = getValue(this.rarity, { rare: 0.04, epic: 0.07, legendary: 0.1 }); - const val1 = round(this.level * mult1, 1); - const val2 = round(this.level * mult2, 1); - return { - name: "§6Extinguish", - desc: [ - `§7While in combat on the Crimson Isle, spawn a pool every §a8s§7. Bathing in it heals §c${val1}% ${symbols.health.symbol} Health §7now and §c${val2}% ${symbols.health.symbol} Health§7/s for §a8s`, - ], - }; - } - - get fifth() { - const mult = getValue(this.rarity, { legendary: 0.4 }); - return { - name: "§6Cold Fusion", - desc: [`§7Regenerate mana §b${round(this.level * mult, 1)}% §7faster`], - }; - } -} - -class MooshroomCow extends Pet { - get stats() { - return { - health: this.level * 1, - farming_fortune: 10 + this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.2, rare: 0.3 }); - - return { - name: "§6Efficient Mushrooms", - desc: [`§7Mushroom and Mycelium minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.99 }); - return { - name: "§6Mushroom Eater", - desc: [ - `§7When breaking crops, there is a §a${round(this.level * mult + 1.01, 1)}% §7chance that a mushroom will drop`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.2 }); - - return { - name: "§6Farming Strength", - desc: [ - `§7Gain §6+1 ${symbols.farming_fortune.symbol} Farming Fortune §7per every §c${round(40 - this.level * mult, 1)} ${ - symbols.strength.symbol - } Strength`, - ], - }; - } -} - -class Snail extends Pet { - get stats() { - return { - intelligence: this.level * 1, - }; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.2, rare: 0.3 }); - - return { - name: "§6Red Sand Enjoyer", - desc: [`§7Red Sand minions work §a${round(this.level * mult, 1)}% §7faster while on your island`], - }; - } - - get second() { - const mult = getValue(this.rarity, { rare: 0.3, epic: 0.5 }); - - return { - name: "§6Slow Moving", - desc: [ - `§7Converts all §f${symbols.speed.symbol} Speed §7over 100 into §6${ - symbols.mining_fortune.symbol - } Mining Fortune §7for Non-Ores at §a${round(this.level * mult, 1)}% §7efficiency`, - // `Current bonus: +0 ${symbols.mining_fortune.symbol} Mining Fortune`, - ], - }; - } - - get third() { - const mult = getValue(this.rarity, { legendary: 0.01 }); - - return { - name: "§6Slow But Efficient", - desc: [ - `§7Reduces the mana cost of §9Utility Abilities §7by §a${round(this.level * mult, 1)}% §7for every +15 §f${ - symbols.speed.symbol - } Speed §7converted`, - ], - }; - } -} - -class Kuudra extends Pet { - get stats() { - return { - health: this.level * 4, - strength: this.level * 0.4, - }; - } - - get abilities() { - const list = [this.first, this.second]; - if (this.rarity >= RARE) { - list.push(this.third); - } - if (this.rarity >= EPIC) { - list.push(this.fourth); - } - if (this.rarity >= LEGENDARY) { - list.push(this.fifth); - } - return list; - } - - get first() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - - return { - name: "§6Crimson", - desc: [`§7Grants §a${round(this.level * mult, 1)}% §7extra crimson essence`], - }; - } - - get second() { - const mult = getValue(this.rarity, { common: 0.1, uncommon: 0.15, epic: 0.2 }); - - return { - name: "§6Wither Bait", - desc: [`§7Increases the odds of finding a vanquisher by §a${round(this.level * mult, 1)}%`], - }; - } - - get third() { - const mult = getValue(this.rarity, { rare: 0.5, epic: 1 }); - - return { - name: "§6Kuudra Fortune", - desc: [ - `§7Gain §6+${round(this.level * mult, 1)} ${symbols.mining_fortune.symbol} Mining Fortune §7while on the Crimson Isle`, - ], - }; - } - - get fourth() { - const mult = getValue(this.rarity, { epic: 0.2 }); - - return { - name: "§6Trophy Bait", - desc: [`§7Increases the odds of fishing Trophy Fish by §a${round(this.level * mult, 1)}%`], - }; - } - - get fifth() { - return { - name: "§6Kuudra Specialist", - desc: [`§7Increases all damage to Kuudra by §c5%`], - }; - } -} - -class QuestionMark extends Pet { - get stats() { - return {}; - } - - get abilities() { - const list = [this.first]; - if (this.rarity >= RARE) { - list.push(this.second); - } - if (this.rarity >= LEGENDARY) { - list.push(this.third); - } - return list; - } - - get first() { - return { - name: "§6???", - desc: [`§7???`], - }; - } - - get second() { - return { - name: "§6???", - desc: [`§7???`], - }; - } - - get third() { - return { - name: "§6???", - desc: [`§7???`], - }; - } -} - -const petStats = { - "???": QuestionMark, - AMMONITE: Ammonite, - ARMADILLO: Armadillo, - BABY_YETI: BabyYeti, - BAL: Bal, - BAT: Bat, - BEE: Bee, - BINGO: Bingo, - BLACK_CAT: BlackCat, - BLAZE: Blaze, - BLUE_WHALE: BlueWhale, - CHICKEN: Chicken, - DOLPHIN: Dolphin, - DROPLET_WISP: Wisp, - FROST_WISP: Wisp, - GLACIAL_WISP: Wisp, - SUBZERO_WISP: Wisp, - ELEPHANT: Elephant, - ENDER_DRAGON: EnderDragon, - ENDERMAN: Enderman, - ENDERMITE: Endermite, - FLYING_FISH: FlyingFish, - GHOUL: Ghoul, - GIRAFFE: Giraffe, - GOLDEN_DRAGON: GoldenDragon, - GOLEM: Golem, - GRANDMA_WOLF: GrandmaWolf, - GRIFFIN: Griffin, - GUARDIAN: Guardian, - HORSE: Horse, - HOUND: Hound, - JELLYFISH: Jellyfish, - JERRY: Jerry, - KUUDRA: Kuudra, - LION: Lion, - MAGMA_CUBE: MagmaCube, - MEGALODON: Megalodon, - MITHRIL_GOLEM: MithrilGolem, - MONKEY: Monkey, - MOOSHROOM_COW: MooshroomCow, - OCELOT: Ocelot, - PARROT: Parrot, - PHOENIX: Phoenix, - PIG: Pig, - PIGMAN: Pigman, - RABBIT: Rabbit, - RAT: Rat, - ROCK: Rock, - SCATHA: Scatha, - SHEEP: Sheep, - SILVERFISH: Silverfish, - SKELETON_HORSE: SkeletonHorse, - SKELETON: Skeleton, - SNAIL: Snail, - SNOWMAN: Snowman, - SPIDER: Spider, - SPIRIT: Spirit, - SQUID: Squid, - TARANTULA: Tarantula, - TIGER: Tiger, - TURTLE: Turtle, - WITHER_SKELETON: WitherSkeleton, - WOLF: Wolf, - ZOMBIE: Zombie, -}; - -const pet_rarity_offset = { - common: 0, - uncommon: 6, - rare: 11, - epic: 16, - legendary: 20, - mythic: 20, - }; - - const pet_levels = [ - 100, 110, 120, 130, 145, 160, 175, 190, 210, 230, 250, 275, 300, 330, 360, 400, 440, 490, 540, 600, 660, 730, 800, - 880, 960, 1050, 1150, 1260, 1380, 1510, 1650, 1800, 1960, 2130, 2310, 2500, 2700, 2920, 3160, 3420, 3700, 4000, 4350, - 4750, 5200, 5700, 6300, 7000, 7800, 8700, 9700, 10800, 12000, 13300, 14700, 16200, 17800, 19500, 21300, 23200, 25200, - 27400, 29800, 32400, 35200, 38200, 41400, 44800, 48400, 52200, 56200, 60400, 64800, 69400, 74200, 79200, 84700, 90700, - 97200, 104200, 111700, 119700, 128200, 137200, 146700, 156700, 167700, 179700, 192700, 206700, 221700, 237700, 254700, - 272700, 291700, 311700, 333700, 357700, 383700, 411700, 441700, 476700, 516700, 561700, 611700, 666700, 726700, - 791700, 861700, 936700, 1016700, 1101700, 1191700, 1286700, 1386700, 1496700, 1616700, 1746700, 1886700, 0, 5555, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - ]; - - const pet_data = { - ARMADILLO: { - head: "/head/c1eb6df4736ae24dd12a3d00f91e6e3aa7ade6bbefb0978afef2f0f92461018f", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - category: "Mount", - }, - BAT: { - head: "/head/382fc3f71b41769376a9e92fe3adbaac3772b999b219c9d6b4680ba9983e527", - type: "mining", - maxTier: "mythic", - maxLevel: 100, - }, - BLAZE: { - head: "/head/b78ef2e4cf2c41a2d14bfde9caff10219f5b1bf5b35a49eb51c6467882cb5f0", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - CHICKEN: { - head: "/head/7f37d524c3eed171ce149887ea1dee4ed399904727d521865688ece3bac75e", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - }, - HORSE: { - head: "/head/36fcd3ec3bc84bafb4123ea479471f9d2f42d8fb9c5f11cf5f4e0d93226", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - category: "Mount", - }, - JERRY: { - head: "/head/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b", - type: "combat", - maxTier: "mythic", - maxLevel: 100, - }, - OCELOT: { - head: "/head/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1", - type: "foraging", - maxTier: "legendary", - maxLevel: 100, - }, - PIGMAN: { - head: "/head/63d9cb6513f2072e5d4e426d70a5557bc398554c880d4e7b7ec8ef4945eb02f2", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - RABBIT: { - head: "/head/117bffc1972acd7f3b4a8f43b5b6c7534695b8fd62677e0306b2831574b", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - }, - SHEEP: { - head: "/head/64e22a46047d272e89a1cfa13e9734b7e12827e235c2012c1a95962874da0", - type: "alchemy", - maxTier: "legendary", - maxLevel: 100, - }, - SILVERFISH: { - head: "/head/da91dab8391af5fda54acd2c0b18fbd819b865e1a8f1d623813fa761e924540", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - WITHER_SKELETON: { - head: "/head/f5ec964645a8efac76be2f160d7c9956362f32b6517390c59c3085034f050cff", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - SKELETON_HORSE: { - head: "/head/47effce35132c86ff72bcae77dfbb1d22587e94df3cbc2570ed17cf8973a", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - category: "Mount", - }, - WOLF: { - head: "/head/dc3dd984bb659849bd52994046964c22725f717e986b12d548fd169367d494", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - ENDERMAN: { - head: "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - type: "combat", - maxTier: "mythic", - maxLevel: 100, - }, - PHOENIX: { - head: "/head/23aaf7b1a778949696cb99d4f04ad1aa518ceee256c72e5ed65bfa5c2d88d9e", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - MAGMA_CUBE: { - head: "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - FLYING_FISH: { - head: { - default: "/head/40cd71fbbbbb66c7baf7881f415c64fa84f6504958a57ccdb8589252647ea", - mythic: "/head/b0e2363c2d41a9d323ba625de8c0637063a36fe85a045de275a7b7739ded6051", - }, - type: "fishing", - maxTier: "mythic", - maxLevel: 100, - }, - BLUE_WHALE: { - head: "/head/dab779bbccc849f88273d844e8ca2f3a67a1699cb216c0a11b44326ce2cc20", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - TIGER: { - head: "/head/fc42638744922b5fcf62cd9bf27eeab91b2e72d6c70e86cc5aa3883993e9d84", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - LION: { - head: "/head/38ff473bd52b4db2c06f1ac87fe1367bce7574fac330ffac7956229f82efba1", - type: "foraging", - maxTier: "legendary", - maxLevel: 100, - }, - PARROT: { - head: "/head/5df4b3401a4d06ad66ac8b5c4d189618ae617f9c143071c8ac39a563cf4e4208", - type: "alchemy", - maxTier: "legendary", - maxLevel: 100, - }, - SNOWMAN: { - head: "/head/11136616d8c4a87a54ce78a97b551610c2b2c8f6d410bc38b858f974b113b208", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - TURTLE: { - head: "/head/212b58c841b394863dbcc54de1c2ad2648af8f03e648988c1f9cef0bc20ee23c", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - BEE: { - head: "/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - }, - ENDER_DRAGON: { - head: "/head/aec3ff563290b13ff3bcc36898af7eaa988b6cc18dc254147f58374afe9b21b9", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - GUARDIAN: { - head: "/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", - type: "enchanting", - maxTier: "legendary", - maxLevel: 100, - }, - SQUID: { - head: "/head/01433be242366af126da434b8735df1eb5b3cb2cede39145974e9c483607bac", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - GIRAFFE: { - head: "/head/176b4e390f2ecdb8a78dc611789ca0af1e7e09229319c3a7aa8209b63b9", - type: "foraging", - maxTier: "legendary", - maxLevel: 100, - }, - ELEPHANT: { - head: "/head/7071a76f669db5ed6d32b48bb2dba55d5317d7f45225cb3267ec435cfa514", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - }, - MONKEY: { - head: "/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", - type: "foraging", - maxTier: "legendary", - maxLevel: 100, - }, - SPIDER: { - head: "/head/cd541541daaff50896cd258bdbdd4cf80c3ba816735726078bfe393927e57f1", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - ENDERMITE: { - head: "/head/5a1a0831aa03afb4212adcbb24e5dfaa7f476a1173fce259ef75a85855", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - GHOUL: { - head: "/head/87934565bf522f6f4726cdfe127137be11d37c310db34d8c70253392b5ff5b", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - JELLYFISH: { - head: "/head/913f086ccb56323f238ba3489ff2a1a34c0fdceeafc483acff0e5488cfd6c2f1", - type: "alchemy", - maxTier: "legendary", - maxLevel: 100, - }, - PIG: { - head: "/head/621668ef7cb79dd9c22ce3d1f3f4cb6e2559893b6df4a469514e667c16aa4", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - category: "Mount", - }, - ROCK: { - head: "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - category: "Mount", - }, - SKELETON: { - head: "/head/fca445749251bdd898fb83f667844e38a1dff79a1529f79a42447a0599310ea4", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - ZOMBIE: { - head: "/head/56fc854bb84cf4b7697297973e02b79bc10698460b51a639c60e5e417734e11", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - DOLPHIN: { - head: "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - BABY_YETI: { - head: "/head/ab126814fc3fa846dad934c349628a7a1de5b415021a03ef4211d62514d5", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - MEGALODON: { - head: "/head/a94ae433b301c7fb7c68cba625b0bd36b0b14190f20e34a7c8ee0d9de06d53b9", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - GOLEM: { - head: "/head/89091d79ea0f59ef7ef94d7bba6e5f17f2f7d4572c44f90f76c4819a714", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - HOUND: { - head: "/head/b7c8bef6beb77e29af8627ecdc38d86aa2fea7ccd163dc73c00f9f258f9a1457", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - TARANTULA: { - head: "/head/8300986ed0a04ea79904f6ae53f49ed3a0ff5b1df62bba622ecbd3777f156df8", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - BLACK_CAT: { - head: "/head/e4b45cbaa19fe3d68c856cd3846c03b5f59de81a480eec921ab4fa3cd81317", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - SPIRIT: { - head: "/head/8d9ccc670677d0cebaad4058d6aaf9acfab09abea5d86379a059902f2fe22655", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - passivePerks: true, - }, - GRIFFIN: { - head: "/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - ignoresTierBoost: true, - }, - MITHRIL_GOLEM: { - head: "/head/c1b2dfe8ed5dffc5b1687bc1c249c39de2d8a6c3d90305c95f6d1a1a330a0b1", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - GRANDMA_WOLF: { - head: "/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - passivePerks: true, - }, - RAT: { - head: "/head/a8abb471db0ab78703011979dc8b40798a941f3a4dec3ec61cbeec2af8cffe8", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - category: "Morph", - }, - BAL: { - head: "/head/c469ba2047122e0a2de3c7437ad3dd5d31f1ac2d27abde9f8841e1d92a8c5b75", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - }, - SCATHA: { - head: "/head/df03ad96092f3f789902436709cdf69de6b727c121b3c2daef9ffa1ccaed186c", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - GOLDEN_DRAGON: { - head: "/head/2e9f9b1fc014166cb46a093e5349b2bf6edd201b680d62e48dbf3af9b0459116", - type: "combat", - maxTier: "legendary", - maxLevel: 200, - hatching: { - level: 100, - name: "Golden Dragon Egg", - head: "/head/113bdf2d2b00605606826df76e211ea288aa050edc9d71cb09986c488ca0411c", - }, - }, - AMMONITE: { - head: "/head/a074a7bd976fe6aba1624161793be547d54c835cf422243a851ba09d1e650553", - type: "fishing", - maxTier: "legendary", - maxLevel: 100, - }, - BINGO: { - head: "/head/d4cd9c707c7092d4759fe2b2b6a713215b6e39919ec4e7afb1ae2b6f8576674c", - type: "all", - maxTier: "epic", - maxLevel: 100, - passivePerks: true, - bingoExclusive: true, - customLevelExpRarityOffset: "common", - }, - MOOSHROOM_COW: { - head: "/head/2b52841f2fd589e0bc84cbabf9e1c27cb70cac98f8d6b3dd065e55a4dcb70d77", - type: "farming", - maxTier: "legendary", - maxLevel: 100, - }, - SNAIL: { - head: "/head/50a9933a3b10489d38f6950c4e628bfcf9f7a27f8d84666f04f14d5374252972", - type: "mining", - maxTier: "legendary", - maxLevel: 100, - }, - KUUDRA: { - head: "/head/1f0239fb498e5907ede12ab32629ee95f0064574a9ffdff9fc3a1c8e2ec17587", - type: "combat", - maxTier: "legendary", - maxLevel: 100, - passivePerks: true, - alwaysGainsExp: "§cCrimson Isle", - }, - DROPLET_WISP: { - head: "/head/b412e70375ec99ee38ae94b30e9b10752d459662b54794dfe66fe6a183c672d3", - type: "gabagool", - maxTier: "uncommon", - maxLevel: 100, - obtainsExp: "feed", - ignoresTierBoost: true, - typeGroup: "WISP", - }, - FROST_WISP: { - head: "/head/1d8ad9936d758c5ea30b0b7cc7c67c2bfcea829ecf2425c0b50fc92a26ae23d0", - type: "gabagool", - maxTier: "rare", - maxLevel: 100, - obtainsExp: "feed", - ignoresTierBoost: true, - typeGroup: "WISP", - }, - GLACIAL_WISP: { - head: "/head/3e2018feebe1a99177b3cb196d4e44521268b4b3eb56e6419cb0253cdbf0456c", - type: "gabagool", - maxTier: "epic", - maxLevel: 100, - obtainsExp: "feed", - ignoresTierBoost: true, - typeGroup: "WISP", - }, - SUBZERO_WISP: { - head: "/head/7a0eb37e58c942eca4d33ab44e26eb1910c783788510b0a53b6f4d18881e237e", - type: "gabagool", - maxTier: "legendary", - maxLevel: 100, - obtainsExp: "feed", - ignoresTierBoost: true, - typeGroup: "WISP", - }, -}; - -const pet_value = { - common: 1, - uncommon: 2, - rare: 3, - epic: 4, - legendary: 5, - mythic: 6, -}; - -const COMMON = rarities.indexOf("common"); -const UNCOMMON = rarities.indexOf("uncommon"); -const RARE = rarities.indexOf("rare"); -const EPIC = rarities.indexOf("epic"); -const LEGENDARY = rarities.indexOf("legendary"); -const MYTHIC = rarities.indexOf("mythic"); - -const pet_items = { - PET_ITEM_ALL_SKILLS_BOOST_COMMON: { - name: "All Skills Exp Boost", - tier: "COMMON", - description: "§7Gives +§a10% §7pet exp for all skills", - }, - PET_ITEM_BIG_TEETH_COMMON: { - name: "Big Teeth", - tier: "COMMON", - description: `§7Increases §9${symbols.crit_chance.symbol} Crit Chance §7by §a5`, - stats: { - crit_chance: 5, - }, - }, - PET_ITEM_IRON_CLAWS_COMMON: { - name: "Iron Claws", - tier: "COMMON", - description: `§7Increases the pet's §9${symbols.crit_damage.symbol} Crit Damage §7by §a40% §7and §9${symbols.crit_chance.symbol} Crit Chance §7by §a40%`, - multStats: { - crit_chance: 1.4, - crit_damage: 1.4, - }, - }, - PET_ITEM_SHARPENED_CLAWS_UNCOMMON: { - name: "Sharpened Claws", - tier: "UNCOMMON", - description: `§7Increases §9${symbols.crit_damage.symbol} Crit Damage §7by §a15`, - stats: { - crit_damage: 15, - }, - }, - PET_ITEM_HARDENED_SCALES_UNCOMMON: { - name: "Hardened Scales", - tier: "UNCOMMON", - description: `§7Increases §a${symbols.defense.symbol} Defense §7by §a25`, - stats: { - defense: 25, - }, - }, - PET_ITEM_BUBBLEGUM: { - name: "Bubblegum", - tier: "RARE", - description: "§7Your pet fuses its power with placed §aOrbs §7to give them §a2x §7duration", - }, - PET_ITEM_LUCKY_CLOVER: { - name: "Lucky Clover", - tier: "EPIC", - description: `§7Increases §b${symbols.magic_find.symbol} Magic Find §7by §a7`, - stats: { - magic_find: 7, - }, - }, - PET_ITEM_TEXTBOOK: { - name: "Textbook", - tier: "LEGENDARY", - description: `§7Increases the pet's §b${symbols.intelligence.symbol} Intelligence §7by §a100%`, - multStats: { - intelligence: 2, - }, - }, - PET_ITEM_SADDLE: { - name: "Saddle", - tier: "UNCOMMON", - description: "§7Increase horse speed by §a50% §7 and jump boost by §a100%", - }, - PET_ITEM_EXP_SHARE: { - name: "Exp Share", - tier: "EPIC", - description: - "§7While unequipped this pet gains §a25% §7of the equipped pet's xp, this is §7split between all pets holding the item.", - }, - PET_ITEM_TIER_BOOST: { - name: "Tier Boost", - tier: "LEGENDARY", - description: "§7Boosts the §ararity §7of your pet by 1 tier!", - }, - PET_ITEM_COMBAT_SKILL_BOOST_COMMON: { - name: "Combat Exp Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for Combat", - }, - PET_ITEM_COMBAT_SKILL_BOOST_UNCOMMON: { - name: "Combat Exp Boost", - tier: "UNCOMMON", - description: "§7Gives +§a30% §7pet exp for Combat", - }, - PET_ITEM_COMBAT_SKILL_BOOST_RARE: { - name: "Combat Exp Boost", - tier: "RARE", - description: "§7Gives +§a40% §7pet exp for Combat", - }, - PET_ITEM_COMBAT_SKILL_BOOST_EPIC: { - name: "Combat Exp Boost", - tier: "EPIC", - description: "§7Gives +§a50% §7pet exp for Combat", - }, - PET_ITEM_FISHING_SKILL_BOOST_COMMON: { - name: "Fishing Exp Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for Fishing", - }, - PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON: { - name: "Fishing Exp Boost", - tier: "UNCOMMON", - description: "§7Gives +§a30% §7pet exp for Fishing", - }, - PET_ITEM_FISHING_SKILL_BOOST_RARE: { - name: "Fishing Exp Boost", - tier: "RARE", - description: "§7Gives +§a40% §7pet exp for Fishing", - }, - PET_ITEM_FISHING_SKILL_BOOST_EPIC: { - name: "Fishing Exp Boost", - tier: "EPIC", - description: "§7Gives +§a50% §7pet exp for Fishing", - }, - PET_ITEM_FORAGING_SKILL_BOOST_COMMON: { - name: "Foraging Exp Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for Foraging", - }, - PET_ITEM_FORAGING_SKILL_BOOST_UNCOMMON: { - name: "Foraging Exp Boost", - tier: "UNCOMMON", - description: "§7Gives +§a30% §7pet exp for Foraging", - }, - PET_ITEM_FORAGING_SKILL_BOOST_RARE: { - name: "Foraging Exp Boost", - tier: "RARE", - description: "§7Gives +§a40% §7pet exp for Foraging", - }, - PET_ITEM_FORAGING_SKILL_BOOST_EPIC: { - name: "Foraging Exp Boost", - tier: "EPIC", - description: "§7Gives +§a50% §7pet exp for Foraging", - }, - PET_ITEM_MINING_SKILL_BOOST_COMMON: { - name: "Mining Exp Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for Mining", - }, - PET_ITEM_MINING_SKILL_BOOST_UNCOMMON: { - name: "Mining Exp Boost", - tier: "UNCOMMON", - description: "§7Gives +§a30% §7pet exp for Mining", - }, - PET_ITEM_MINING_SKILL_BOOST_RARE: { - name: "Mining Exp Boost", - tier: "RARE", - description: "§7Gives +§a40% §7pet exp for Mining", - }, - PET_ITEM_MINING_SKILL_BOOST_EPIC: { - name: "Mining Exp Boost", - tier: "EPIC", - description: "§7Gives +§a50% §7pet exp for Mining", - }, - PET_ITEM_FARMING_SKILL_BOOST_COMMON: { - name: "Farming Exp Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for Farming", - }, - PET_ITEM_FARMING_SKILL_BOOST_UNCOMMON: { - name: "Farming Exp Boost", - tier: "UNCOMMON", - description: "§7Gives +§a30% §7pet exp for Farming", - }, - PET_ITEM_FARMING_SKILL_BOOST_RARE: { - name: "Farming Exp Boost", - tier: "RARE", - description: "§7Gives +§a40% §7pet exp for Farming", - }, - PET_ITEM_FARMING_SKILL_BOOST_EPIC: { - name: "Farming Exp Boost", - tier: "EPIC", - description: "§7Gives +§a50% §7pet exp for Farming", - }, - REINFORCED_SCALES: { - name: "Reinforced Scales", - tier: "RARE", - description: `§7Increases §a${symbols.defense.symbol} Defense §7by §a40`, - stats: { - defense: 40, - }, - }, - GOLD_CLAWS: { - name: "Gold Claws", - tier: "UNCOMMON", - description: `§7Increases the pet's §9${symbols.crit_damage.symbol} Crit Damage §7by §a50% §7and §9${symbols.crit_chance.symbol} Crit Chance §7by §a50%`, - multStats: { - crit_chance: 1.5, - crit_damage: 1.5, - }, - }, - ALL_SKILLS_SUPER_BOOST: { - name: "All Skills Exp Super-Boost", - tier: "COMMON", - description: "§7Gives +§a20% §7pet exp for all skills", - }, - BIGGER_TEETH: { - name: "Bigger Teeth", - tier: "UNCOMMON", - description: `§7Increases §9${symbols.crit_chance.symbol} Crit Chance §7by §a10`, - stats: { - crit_chance: 10, - }, - }, - SERRATED_CLAWS: { - name: "Serrated Claws", - tier: "RARE", - description: `§7Increases §9${symbols.crit_damage.symbol} Crit Damage §7by §a25`, - stats: { - crit_damage: 25, - }, - }, - WASHED_UP_SOUVENIR: { - name: "Washed-up Souvenir", - tier: "LEGENDARY", - description: `§7Increases §3${symbols.sea_creature_chance.symbol} Sea Creature Chance §7by §a5`, - stats: { - sea_creature_chance: 5, - }, - }, - ANTIQUE_REMEDIES: { - name: "Antique Remedies", - tier: "EPIC", - description: `§7Increases the pet's §c${symbols.strength.symbol} Strength §7by §a80%`, - multStats: { - strength: 1.8, - }, - }, - CROCHET_TIGER_PLUSHIE: { - name: "Crochet Tiger Plushie", - tier: "EPIC", - description: `§7Increases §e${symbols.bonus_attack_speed.symbol} Bonus Attack Speed §7by §a35`, - stats: { - bonus_attack_speed: 35, - }, - }, - DWARF_TURTLE_SHELMET: { - name: "Dwarf Turtle Shelmet", - tier: "RARE", - description: `§7Makes the pet's owner immune to knockback.`, - }, - PET_ITEM_VAMPIRE_FANG: { - name: "Vampire Fang", - tier: "LEGENDARY", - description: "§7Upgrades a Bat pet from §6Legendary §7to §dMythic §7adding a bonus perk and bonus stats!", - }, - PET_ITEM_SPOOKY_CUPCAKE: { - name: "Spooky Cupcake", - tier: "UNCOMMON", - description: `§7Increases §c${symbols.strength.symbol} Strength §7by §a30 §7and §f${symbols.speed.symbol} Speed §7by §a20`, - stats: { - strength: 30, - speed: 20, - }, - }, - MINOS_RELIC: { - name: "Minos Relic", - tier: "EPIC", - description: `§7Increases all pet stats by §a33.3%`, - multAllStats: 1.333, - }, - PET_ITEM_TOY_JERRY: { - name: "Jerry 3D Glasses", - tier: "LEGENDARY", - description: "§7Upgrades a Jerry pet from §6Legendary §7to §dMythic §7and granting it a new perk!", - }, - REAPER_GEM: { - name: "Reaper Gem", - tier: "LEGENDARY", - description: `§7Gain §c8${symbols.ferocity.symbol} Ferocity §7for 5s on kill`, - }, - PET_ITEM_FLYING_PIG: { - name: "Flying Pig", - tier: "UNCOMMON", - description: `§7Grants your pig pet the ability to fly while on your private island! You also don't need to hold a carrot on a stick to control your pig.`, - }, - PET_ITEM_QUICK_CLAW: { - name: "Quick Claw", - tier: "RARE", - description: `§7Every 2 pet level you gain §6+1 ${symbols.mining_speed.symbol} Mining Speed §7and §6+1 §6${symbols.mining_fortune.symbol} Mining Fortune§7.`, - statsPerLevel: { - mining_speed: 0.5, - mining_fortune: 0.5, - }, - }, -}; - - -module.exports = { - pet_rarity_offset, - pet_levels, - pet_data, - pet_value, - pet_items, - rarityColors, - petStats -} - - \ No newline at end of file diff --git a/constants/skins.js b/constants/skins.js deleted file mode 100644 index 50171dc..0000000 --- a/constants/skins.js +++ /dev/null @@ -1,1229 +0,0 @@ -// CREDIT: https://github.com/SkyCryptWebsite/SkyCrypt/ (Modified) - -/* - Animated skins created at ezgif.com/apng-maker with the following settings: - - Skins that change based on time of day - - Delay time: 500 - - Enable crossfade frames: delay = 3, count = 10 (but adjust these values based on final file size) - - Skins that are always animated - - Delay time: 20 (but do what looks best) - - No crossfade - - Don't stack frames (unless needed) - - skins: Array of objects containing all skins ever released - { - id: string, - name: string, - texture: string, - release: int, - } - - animations: Array of objects containing all animations for skins and items - { - id: string, - texture: string, - animation: object -> AnimationObject - } - - AnimationObject: day/night (for animations that change based on the time of the day), progressive timings in ms (for cyclic animations) or strings that represent the animation frame. If null the information about the animation is missing. - { - day: string, - night: string, - } - { - 0: string, - 100: string, - ...: string, - int: string, - } -*/ - -/* -..######..##....##.####.##....##..######. -.##....##.##...##...##..###...##.##....## -.##.......##..##....##..####..##.##...... -..######..#####.....##..##.##.##..######. -.......##.##..##....##..##..####.......## -.##....##.##...##...##..##...###.##....## -..######..##....##.####.##....##..######. -*/ - -const skins = [ - { - id: "PET_SKIN_ENDERMAN", - name: "Spooky", - texture: "/head/ea84cc8818c293484fdaafc8fa2f0bf39e55733a247d68023df2c6c6b9b671d0", - release: new Date("2020-09-08 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ENDERMAN_SLAYER", - name: "Void Conqueror", - texture: "/head/8fff41e1afc597b14f77b8e44e2a134dabe161a1526ade80e6290f2df331dc11", - release: new Date("2021-05-31 23:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_GUARDIAN", - name: "Watcher", - texture: "/head/37cc76e7af29f5f3fbfd6ece794160811eff96f753459fa61d7ad176a064e3c5", - release: new Date("2020-10-01 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_TIGER_TWILIGHT", - name: "Twilight", - texture: "/head/896211dc599368dbd9056c0116ab61063991db793be93066a858eb4e9ce56438", - release: new Date("2020-10-20 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_RABBIT", - name: "Pretty", - texture: "/head/a34631d940fddb689ddef6a3b352c50220c460dba05cd18dc83192b59dc647f8", - release: new Date("2020-09-12 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_RABBIT_AQUAMARINE", - name: "Aquamarine", - texture: "/head/35a2119d122961852c010c1007ab2aff95b4bbeb74407463f6d2e1ff0792c812", - release: new Date("2021-04-15 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_RABBIT_ROSE", - name: "Rose", - texture: "/head/d7cddf5b20cb50d6600e5333c6bb3fb15b4741f17e3675fc2bfc09c2cd09e619", - release: new Date("2021-04-15 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_WITHER", - name: "Dark", - texture: "/head/224c2d14a0219af5ccfcaa36e8a333e271724ed61276611f9529e16c10273a0d", - release: new Date("2020-11-15 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_COOL", - name: "Cool", - texture: "/head/fefcdbb7d95502acc1ae35a32a40ce4dec8f4c9f0da26c9d9fe7c2c3eb748f6", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_SMILE", - name: "Smile", - texture: "/head/713c8b2916a275db4c1762cf5f13d7b95b91d60baf5164a447d6efa7704cf11b", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_THINKING", - name: "Thinking", - texture: "/head/dd2f781f03c365bbc5dd1e7186ab38dc69465e836c9fe066a9a844f34a4da92", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_LAUGH", - name: "Laughing", - texture: "/head/8cc1ef513d5f616675242174acde7b9d6259a47c4fe8f6e4b6e20920319d7073", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_DERP", - name: "Derp", - texture: "/head/c4f89fbd12c209f7f26c1f34a1bd7f47635814759c09688dd212b205c73a8c02", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ROCK_EMBARRASSED", - name: "Embarrassed", - texture: "/head/27ff34992e66599e8529008be3fb577cb0ab545294253e25a0cc988e416c849", - release: new Date("2020-09-23 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_WHITE", - name: "White", - texture: "/head/b92a1a5c325f25f7438a0abb4f86ba6cf75552d02c7349a7292981459b31d2f7", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_PURPLE", - name: "Purple", - texture: "/head/99a88cf7dd33063587c6b540e6130abc5d07f1a65c47573ab3c1ad3ccec8857f", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_BLACK", - name: "Black", - texture: "/head/aa9dcda642a807cd2daa4aa6be87cef96e08a8c8f5cec2657dda4266c6a884c2", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_PINK", - name: "Pink", - texture: "/head/afa7747684dcb96192d90342cea62742ec363da07cb5e6e25eecec888cd2076", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_LIGHT_BLUE", - name: "Light Blue", - texture: "/head/722220de1a863bc5d9b9e7a6a3b03214c9f3d698ed3fe0d28220f3b93b7685c5", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_LIGHT_GREEN", - name: "Light Green", - texture: "/head/cf183ec2fe58faa43e568419b7a0dc446ece4ea0be52ec784c94e1d74b75939d", - release: new Date("2020-11-07 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_NEON_YELLOW", - name: "Neon Yellow", - texture: "/head/94263428c23da9165b2639a8f2428ff4835227945c9e1038461cf644d67cc82a", - release: new Date("2021-01-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_NEON_RED", - name: "Neon Red", - texture: "/head/4918be142a20b2b39bc582f421f6ae87b3184b5c9523d16fbe6d69530107886a", - release: new Date("2021-01-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_NEON_BLUE", - name: "Neon Blue", - texture: "/head/e55b3fe9311c99342ea565483cbf9e969a258faf7afa30270fb9a0929377acfd", - release: new Date("2021-01-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SHEEP_NEON_GREEN", - name: "Neon Green", - texture: "/head/2c14d66911554bd0882339074bf6b8110c2d3509b69e7a6144e4d5a7164bacc8", - release: new Date("2021-01-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SILVERFISH", - name: "Fortified", - texture: "/head/d8552ff591042c4a38f8ba0626784ae28c4545a97d423fd9037c341035593273", - release: new Date("2020-11-22 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SILVERFISH_FOSSILIZED", - name: "Fossilized", - texture: "/head/ca3a363368ed1e06cee3900717f062e02ec39aee1747675392255b48f7f83600", - release: new Date("2021-01-22 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_PINK", - name: "Pink", - texture: "/head/570eef474ec0e56cc34c2307eaa39f024612f8cd7248e7d5b14169ebd307c742", - release: new Date("2020-12-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_BLUE", - name: "Blue", - texture: "/head/4b62969c005815d0409136380febc5ac468aaba9bda4db80954fa5426ee0a323", - release: new Date("2020-12-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_ORANGE", - name: "Orange", - texture: "/head/554a34a80c474206d3700b8fced6b44fab0b0ed0b05c1293ff0c5d86eda251d1", - release: new Date("2020-12-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_RED", - name: "Red", - texture: "/head/ba5c66ec66cb6b4b5550085f583b4e5c1cee5247bec5fbcc5c318c30c66cab42", - release: new Date("2021-02-13 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_PURPLE", - name: "Purple", - texture: "/head/5ff9df290b6c5a4984fc6e516605f9816b9882f7bf04db08d3f7ee32d1969a44", - release: new Date("2021-02-13 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_GREEN", - name: "Green", - texture: "/head/360c122ade5b2fedca14aa78c834a7b0ac9cb5da2a0c93112163086f90c13b68", - release: new Date("2021-02-13 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ELEPHANT_MONOCHROME", - name: "Monochrome", - texture: "/head/4bdf0f628c05e86cabdee2f5858dd5def7f8b8d940cbf25f9937e2ffb53432f4", - release: new Date("2021-03-22 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_JERRY_RED_ELF", - name: "Red Elf", - texture: "/head/1d82f9c36e824c1e37963a849bf5abd76d3b349125023504af58369086089ee9", - release: new Date("2020-12-25 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_JERRY_GREEN_ELF", - name: "Green Elf", - texture: "/head/4ec5455f43426ca1874b5c7b4a492ec3722a502f8b9599e758e133fed8b3c1e4", - release: new Date("2020-12-25 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_YETI_GROWN_UP", - name: "Grown-up", - texture: "/head/f5f29a975529276d916fc67998833c11ee178ff21e5941afdfb0fa7010f8374e", - release: new Date("2020-12-15 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_MONKEY_GOLDEN", - name: "Golden", - texture: "/head/e9281c4d87d68526b0749d4361e6ef786c8a35717aa053da704b1d53410d37a6", - release: new Date("2021-01-13 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_MONKEY_GORILLA", - name: "Gorilla", - texture: "/head/c3eb3e37e9873bfc176b9ed8ef4fbef833de144546bfaefdf24863c3eb87bb86", - release: new Date("2021-05-13 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_HORSE_ZOMBIE", - name: "Zombie", - texture: "/head/578211e1b4d99d1c7bfda4838e48fc884c3eae376f58d932bc2f78b0a919f8e7", - release: new Date("2021-01-29 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DRAGON_NEON_BLUE", - name: "Neon Blue", - texture: "/head/96a4b9fbcf8c3e7e1232e57d6a2870ba3ea30f76407ae1197fd52e9f76ca46ac", - release: new Date("2021-02-08 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DRAGON_NEON_PURPLE", - name: "Neon Purple", - texture: "/head/54bdf5ba6289b29e27c57db1ec7f76151c39492d409268e00a9838e8c963159", - release: new Date("2021-02-08 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DRAGON_NEON_RED", - name: "Neon Red", - texture: "/head/e05c9b4f4218677c5b4bcc9c7d9e29e18d1684a536781fede1280fc5e6961538", - release: new Date("2021-02-08 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DRAGON_PASTEL", - name: "Pastel", - texture: "/head/4a62ec4e019fe0fed059663ae59daa0d91729517bf33ae7f7d7e722913602df4", - release: new Date("2021-06-30 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_WHALE_ORCA", - name: "Orca", - texture: "/head/b008ca9c00cecf499685030e8ef0c230a32908619ce9dc10690b69111591faa1", - release: new Date("2021-03-09 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_CHICKEN_BABY_CHICK", - name: "Baby Chick", - texture: "/head/1bde55ed54cb5c87661b86c349186a9d5baffb3cb934b449a2d329e399d34bf", - release: new Date("2021-04-05 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_BLACK_CAT_IVORY", - name: "Ivory", - texture: "/head/f51b17d7ded6c7e8f3b2dac12378a6fc4e9228b911986f64c8af45837ae6d9e1", - release: new Date("2021-04-26 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_BLACK_CAT_ONYX", - name: "Onyx", - texture: "/head/be924115d3a8bbacfd4fafb6cc70f99a2f7580e4583a50fa9b9c285a98ac0c56", - release: new Date("2021-04-26 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ENDERMITE_RADIANT", - name: "Radiant", - texture: "/head/2fc4a7542b754420b1b19f9a28ea00040555a9e876052b97f65840308a93348d", - release: new Date("2021-06-02 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_WOLF", - name: "Dark Wolf", - texture: "/head/c8e414e762e1024c799e70b7a527c22fb95648f141d660b10c512cc124334218", - release: new Date("2021-08-10 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_HOUND_BEAGLE", - name: "Beagle", - texture: "/head/877364e0ce27f0239b7754706b93022d0cf945854015d6096f9cf43d24a38269", - release: new Date("2021-08-24 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_SQUID_GLOW", - name: "Glow", - texture: "/head/fca9982520eee4066bab0ae697f3b3656084b6639ba89113bd8e23ab7288563d", - release: new Date("2021-09-14 18:00:00 GMT+1").getTime(), - }, - { - id: "SNOW_SNOWGLOBE", - name: "Snowglobe", - texture: "/head/13229f8525726684fb0227dad7621f05f0b8b5d58a8693fd0ea0688349f1d53c", - release: new Date("2020-12-25 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_TIGER_SABER_TOOTH", - name: "Saber-Tooth", - texture: "/head/e92dba2fbd699d541b2fa0fbcaff640ad8c311987ade59a13b2a65d0ce319316", - release: new Date("2021-09-28 18:00:00 GMT+1").getTime(), - }, - { - id: "REAPER_SPIRIT", - name: "Spirit", - texture: "/head/724d2072918054a95a4f4bbc931bf3929d01cb012368bc4c78d0a3acc9cdbeea", - release: new Date("2020-09-19 18:00:00 GMT+1").getTime(), - }, - { - id: "SUPERIOR_SHIMMER", - name: "Shimmer", - texture: "/head/cb3deae44a93acf001ae6bef1e1f4d56e4b7eca4ba14699d071023a24eed2c2e", - release: new Date("2020-11-27 18:00:00 GMT+1").getTime(), - }, - { - id: "UNSTABLE_SHIMMER", - name: "Shimmer", - texture: "/head/17397c1603be4bcf52eae0d2ad66e1663aad724a8f069ba87aa41aa8d2b48820", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "YOUNG_SHIMMER", - name: "Shimmer", - texture: "/head/e1ad5d83e55890290f52e4ad06e4351a2e87998d1cb3e76cc952a076deb7882b", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "WISE_SHIMMER", - name: "Shimmer", - texture: "/head/25d7c5909f742e2e85ba7f2c7449f9e12a5c42c5a1132974df7f4ef204d6ca1e", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "STRONG_SHIMMER", - name: "Shimmer", - texture: "/head/ad3241f4419f06d17d88b21cc8e412f4ef11d7cfadd882e269da5a490e08f0e4", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "PROTECTOR_SHIMMER", - name: "Shimmer", - texture: "/head/72cd120841228d2812ca07433a3ec4640de81fa1f4bb9b42269c741403196fdb", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "OLD_SHIMMER", - name: "Shimmer", - texture: "/head/78bf606f5ace4e3cfb81a14742992ff5a868d1f0f9d14b4bec9393859e0e0a00", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "HOLY_SHIMMER", - name: "Shimmer", - texture: "/head/c96696eb13cced8f5c521892d90fe8e2b129469520ade8d1d9f87225e7179761", - release: new Date("2020-07-21 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_PARROT_GOLD_MACAW", - name: "Gold Macaw", - texture: "/head/5dad34650f8d1c6afbfd979b38d7e1412e636215b8f85240e06d998278879b8b", - release: new Date("2021-10-20 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_BAT_VAMPIRE", - name: "Vampire", - texture: "/head/473af69ed9bf67e2f5403dd7d28bbe32034749bbfb635ac1789a412053cdcbf0", - release: new Date("2021-10-31 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_PHOENIX_ICE", - name: "Ice", - texture: "/head/12582057e52d0f7fffd1a1f93acf196db5f09b76f1ba3ede28476cc4cd82da97", - release: new Date("2021-11-25 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_OCELOT_SNOW_TIGER", - name: "Snow Tiger", - texture: "/head/496499b99c88314b1459fc5b515c477b069bf2229a2833abb2e1ff20b5f29457", - release: new Date("2021-12-14 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_BLAZE_FROZEN", - name: "Frozen", - texture: "/head/9617a34c8ff467fdb45be3ff17863fcff7e8424c8dd9b99666edd13b44b32e8c", - release: new Date("2021-12-24 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DOLPHIN_SNUBNOSE_GREEN", - name: "Green Snubfin", - texture: "/head/5f2879bd8b0bafdd71dbd3fc5850afc6c53da60d4252182cfc80737a00d72408", - release: new Date("2022-01-19 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DOLPHIN_SNUBNOSE_RED", - name: "Red Snubfin", - texture: "/head/779df5b4da325c0d740251b4204a0cd22d9fdb88cecb6eff6176ef4f2ecedb1e", - release: new Date("2022-01-19 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DOLPHIN_SNUBNOSE_PURPLE", - name: "Purple Snubfin", - texture: "/head/fd0b213c15dd7b8c67512bc18bf14d32dc4b57b9c305d1c7514aa3e2609a78a4", - release: new Date("2022-01-19 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_DOLPHIN_SNUBFIN", - name: "Snubfin", - texture: "/head/279413c788c7f450234bdab0cf0d0291c57f730e380c6d4c7746fde15928381", - release: new Date("2022-01-19 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_TIGER_GOLDEN", - name: "Golden", - texture: "/head/c85f8db6e5b826d3dd5847cd8d7279f4d4dd50bc955ca7968c7c49b496ed7a3b", - release: new Date("2022-02-01 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ARMADILLO_ENCHANTED", - name: "Enchanted", - texture: "/head/7426d7b174e8bd9c283f91a42cf2dfa95a518d5eae97ab5595412d4951d4db18", - release: new Date("2022-02-16 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ARMADILLO_SEAFOAM", - name: "Seafoam", - texture: "/head/d0c72b0db2ecbdaf153c563593d17d546b302b278b1b81d3e063963b5b0e5bc4", - release: new Date("2022-02-16 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_JERRY_HANDSOME", - name: "Handsome", - texture: "/head/11be7e0da38de93dba068a40011808ecc39bb757d3fdee8fb25128e2a06dde86", - release: new Date("2022-04-01 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_KUUDRA_LOYALTY", - name: "Loyalty", - texture: "/head/bb7d06ab10c4d15433670ca59ed6ad87d797c24bf7bfc3343730aa1594a4970c", - release: new Date("2022-05-13 18:00:00 GMT+1").getTime(), - }, - { - id: "TRUE_WARDEN", - name: "True Warden", - texture: "/head/1cafe848fd755d998a06a58321912244cf76eef1ce78a51228fdd1020ab73a68", - release: new Date("2022-05-27 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ENDERMAN_NEON", - name: "Neon", - texture: "/head/6f9020c07d875bad1440337adb55a08c15db06b994646a691795f4cd293fe3de", - release: new Date("2022-06-10 18:00:00 GMT+1").getTime(), - }, - { - id: "PET_SKIN_ENDERMAN_XENON", - name: "Xenon", - texture: "/head/92defbe3cde326d4511bb53339d777afa703f3ec4daa697d61a4402744cbb0cd", - release: new Date("2022-06-10 18:00:00 GMT+1").getTime(), - }, - ]; - - /* - ....###....##....##.####.##.....##....###....########.####..#######..##....##..######. - ...##.##...###...##..##..###...###...##.##......##.....##..##.....##.###...##.##....## - ..##...##..####..##..##..####.####..##...##.....##.....##..##.....##.####..##.##...... - .##.....##.##.##.##..##..##.###.##.##.....##....##.....##..##.....##.##.##.##..######. - .#########.##..####..##..##.....##.#########....##.....##..##.....##.##..####.......## - .##.....##.##...###..##..##.....##.##.....##....##.....##..##.....##.##...###.##....## - .##.....##.##....##.####.##.....##.##.....##....##....####..#######..##....##..######. - */ - - const animations = [ - { - id: "PET_SKIN_TIGER_TWILIGHT", - texture: "/resources/img/items/pet_skin_tiger_twilight.png", - animation: { - day: "/head/896211dc599368dbd9056c0116ab61063991db793be93066a858eb4e9ce56438", - night: "/head/25afc37dc1909ee0a3eb8d0404271fc47660cff1153495412d6e9896632eaa8e", - }, - }, - { - id: "PET_SKIN_ELEPHANT_MONOCHROME", - texture: "/resources/img/items/pet_skin_elephant_monochrome.png", - animation: { - day: "/head/4bdf0f628c05e86cabdee2f5858dd5def7f8b8d940cbf25f9937e2ffb53432f4", - night: "/head/176e8db6cd2db2fd11747c750d24040f3435b3301d91949f33f9615d16dab060", - }, - }, - { - id: "PET_SKIN_MONKEY_GORILLA", - texture: "/resources/img/items/pet_skin_monkey_gorilla.png", - animation: { - 0: "/head/ac75d405235a58c68bddadad082e895e84feadfffd9f69c00a2194498732d48", - 1000: "/head/2a8be837b3361464b5ca555029658f0fdc9432cb351f088996f6da7210e1fc75", - 1200: "/head/75c6a5d6361a7b847fa6bbf6905c381f764a84f1c820d8e82c76e7db0feb9ee7", - 1500: "/head/e6227de20348cf220bb15a6c5d1c7d5405b0bbd9f759cecf891c3991f07f4f9f", - 1800: "/head/20cbac153bc024d35a6d7df3d57b6ee814ae01e643bcd2f77a2aaae0acd771d2", - 3600: "/head/e6227de20348cf220bb15a6c5d1c7d5405b0bbd9f759cecf891c3991f07f4f9f", - 3800: "/head/75c6a5d6361a7b847fa6bbf6905c381f764a84f1c820d8e82c76e7db0feb9ee7", - 4100: "/head/2a8be837b3361464b5ca555029658f0fdc9432cb351f088996f6da7210e1fc75", - 4300: "/head/ac75d405235a58c68bddadad082e895e84feadfffd9f69c00a2194498732d48", - }, - }, - { - id: "PET_SKIN_ENDERMITE_RADIANT", - texture: "/resources/img/items/pet_skin_endermite_radiant.png", - animation: { - 0: "/head/3840ad985c0b08811ab0a137ca736119d079dbf2143462145eb62b6ecbd2d7cc", - 250: "/head/7019bf6fa4602458a9b20ad09cca45ef5ccc6257081ae323f9bbfca0cbc947e9", - 400: "/head/b2e7419ad458452240b03d8e32016218c70a694a97b9973f4d8ba974056248bd", - 500: "/head/116743eb37c69387615fe4816bc9727ba269f64d1f0bf83b788e3e32c6b06147", - 700: "/head/2fc4a7542b754420b1b19f9a28ea00040555a9e876052b97f65840308a93348d", - 950: "/head/116743eb37c69387615fe4816bc9727ba269f64d1f0bf83b788e3e32c6b06147", - 1150: "/head/b2e7419ad458452240b03d8e32016218c70a694a97b9973f4d8ba974056248bd", - 1300: "/head/7019bf6fa4602458a9b20ad09cca45ef5ccc6257081ae323f9bbfca0cbc947e9", - 1600: "/head/3840ad985c0b08811ab0a137ca736119d079dbf2143462145eb62b6ecbd2d7cc", - 1650: "/head/b8705a24c728644bfec2195f315e5d354060638e2bd9bf8df73d84146c8d1406", - 1900: "/head/4d671df85ea9ee52885d7d774f0c9462c8e8bf048e77aa06160c1cc5f45273be", - 2050: "/head/adb8259926a17a493a85669387f6e3d77876dac3c838b6c7d6f919ebc53217a5", - 2200: "/head/a028ac35c7c7e98f2a6bcd1d1b17b94e79510c6e239f7195717232dcbc7f1e0c", - 2500: "/head/adb8259926a17a493a85669387f6e3d77876dac3c838b6c7d6f919ebc53217a5", - 2650: "/head/4d671df85ea9ee52885d7d774f0c9462c8e8bf048e77aa06160c1cc5f45273be", - 2800: "/head/b8705a24c728644bfec2195f315e5d354060638e2bd9bf8df73d84146c8d1406", - 3000: "/head/3840ad985c0b08811ab0a137ca736119d079dbf2143462145eb62b6ecbd2d7cc", - 3650: "/head/b2e7419ad458452240b03d8e32016218c70a694a97b9973f4d8ba974056248bd", - 3950: "/head/2fc4a7542b754420b1b19f9a28ea00040555a9e876052b97f65840308a93348d", - 4200: "/head/116743eb37c69387615fe4816bc9727ba269f64d1f0bf83b788e3e32c6b06147", - 4350: "/head/b2e7419ad458452240b03d8e32016218c70a694a97b9973f4d8ba974056248bd", - 4500: "/head/7019bf6fa4602458a9b20ad09cca45ef5ccc6257081ae323f9bbfca0cbc947e9", - 4800: "/head/3840ad985c0b08811ab0a137ca736119d079dbf2143462145eb62b6ecbd2d7cc", - 4950: "/head/b8705a24c728644bfec2195f315e5d354060638e2bd9bf8df73d84146c8d1406", - 5100: "/head/4d671df85ea9ee52885d7d774f0c9462c8e8bf048e77aa06160c1cc5f45273be", - 5250: "/head/adb8259926a17a493a85669387f6e3d77876dac3c838b6c7d6f919ebc53217a5", - 5450: "/head/a028ac35c7c7e98f2a6bcd1d1b17b94e79510c6e239f7195717232dcbc7f1e0c", - 5700: "/head/adb8259926a17a493a85669387f6e3d77876dac3c838b6c7d6f919ebc53217a5", - 5850: "/head/4d671df85ea9ee52885d7d774f0c9462c8e8bf048e77aa06160c1cc5f45273be", - 6000: "/head/b8705a24c728644bfec2195f315e5d354060638e2bd9bf8df73d84146c8d1406", - }, - }, - { - id: "PET_SKIN_SQUID_GLOW", - texture: "/resources/img/items/pet_skin_squid_glow.png", - animation: { - 0: "/head/162eba7072c3054e310daf2e6970cc65a4346a9c4118399f4d68a2d7e66612b7", - 50: "/head/f2ff4c824c39727c6bb8a126379a5ded2ba9aed24b59879f6b3af461e44df84a", - 290: "/head/a1309033f08a444dea956d0d8099e5d132b14509617ee00ce0c4687879900546", - 800: "/head/65d43d64e8e3e43f4de13ed1e2ca0ead1e88c4017ca466b8d057408029a80d19", - 1040: "/head/8e0785c6f4a4d84a7a5289f2f435d10a5a7a4c4debc41d3cf95665ae658ba181", - 1290: "/head/3d1ca6068e4b8cce378e554618034c014ff6219dc37bf0b0635848fa3cebbec", - 1560: "/head/cfad4bbfc7a9ce14877e99ca5ca16b8d9d9ec3d0c065829e42766bcdbd4a0191", - 1780: "/head/4167e70f8470d5d69aedb2a98c916f4b5a77d7ca8d051fbf70fb1b80ba7f9802", - 2040: "/head/fca9982520eee4066bab0ae697f3b3656084b6639ba89113bd8e23ab7288563d", - 2300: "/head/727581cfcf9905729b336dcf13784eac227bcdd709c4e92e018d45c4896ae29b", - 2550: "/head/e0f95d0e5c64f46851b3c5d5d75cc0b7a9e09a1121740cd00e3cf25fa362306a", - }, - }, - { - id: "SINFUL_DICE", - texture: "/resources/img/items/sinful_dice.png", - animation: { - 0: "/head/6e22c298e7c6336af17909ac1f1ee6834b58b1a3cc99aba255ca7eaeb476173", - 500: "/head/71b7a73fc934c9de9160c0fd59df6e42efd5d0378e342b68612cfec3e894834a", - 1000: "/head/abe677a1e163a9f9e0afcfcde0c95365553478f99ab11152a4d97cf85dbe66f", - 1500: "/head/af2996efc2bb054f53fb0bd106ebae675936efe1fef441f653c2dce349738e", - 2000: "/head/e0d2a3ce4999fed330d3a5d0a9e218e37f4f57719808657396d832239e12", - 2500: "/head/41a2c088637fee9ae3a36dd496e876e657f509de55972dd17c18767eae1f3e9", - }, - }, - { - id: "SNOW_SNOWGLOBE", - texture: "/resources/img/items/snow_snowglobe.png", - animation: { - 0: "/head/16d9b6791ffb7395fe5b44dd0b8f6b8d4c5bf3b90ddc92a10d3b8c83ec2efd20", - 60: "/head/13229f8525726684fb0227dad7621f05f0b8b5d58a8693fd0ea0688349f1d53c", - 310: "/head/962c440e980121d86cb46139fafda81e22f0ef0a2e176b9c483a73a6a6ad862c", - 570: "/head/4bb7f26f50d6424c7152d912e7bb4852e50825256f00027643e5250966c9aae9", - 820: "/head/e021d2664656b1422e1e672585039ddf349b60a96f7f2c5673e3fe9d3aa8f5ea", - 1070: "/head/4ed6e77773f2bce73fedb3595289371cfcc2da157e2a90732c6e072fc1374d9e", - 1320: "/head/b71c5c072025c253e9a8d523a9b1a515296af697ef3afd255f6ad8510a36ed41", - 1560: "/head/485fa2a1372e86bd48b9622cc1712c6a199f09d87ed83704718e91f63ae217f4", - 1820: "/head/2ec0015699f67147fbb2c4f2c87fed245b6b9e7e00fc0b7d3b7a124b599be0fd", - 2060: "/head/5fc97d7cd008257df603b1431629ec9fd3847b03d7d26a7b4adb8f71b4e8408c", - 2310: "/head/2fed033e4baa8254af8f7c5e87b47638038cc7830e44823c97956687f7ad8e9", - }, - }, - { - id: "REAPER_SPIRIT", - texture: "/resources/img/items/reaper_spirit.png", - animation: { - day: "/head/724d2072918054a95a4f4bbc931bf3929d01cb012368bc4c78d0a3acc9cdbeea", - night: "/head/c1d178e0da8a4ef28ade6b8f76b73611bf835e08fd8da9d0960d4b6dc18857f3", - }, - }, - { - id: "SUPERIOR_SHIMMER", - texture: "/resources/img/items/superior_shimmer.png", - animation: { - 0: "/head/cb3deae44a93acf001ae6bef1e1f4d56e4b7eca4ba14699d071023a24eed2c2e", - 1390: "/head/4dfbe709ad0b540768a271138ed6e3a0026f063302678dc97c5f0855c0a8e5b", - 1540: "/head/1fbec3d1d98f24ea216507b0bdbd11363f0751c91ce7d533ba46f99819d32bbf", - 1680: "/head/b83240d6638d777e81c4fcccf300f30db3a9c28010fb16c08cc050a7c842fba6", - 1850: "/head/495a0afab4cbc222c454566185020e349ca11d0d9019c367bbe58047431c5b", - 2000: "/head/1a91e2c50e8469882e1d5681b582111f15f1f9dfb544a7fef2b910aaaa9d910d", - 2140: "/head/b6f626a9bad16f9b388f00412456fb0eaadbea4181327d6abe7a8fedaafd634e", - 2290: "/head/15cec5963ad37f3427bb20391fe52af3a0fa91fba58cdee1f6a4c1819a25bfd2", - 2440: "/head/68dd1b3b61e4ef32d68c392ecc9cd3cdefd3c26e2ebcc5275813bf6864f9c413", - 2590: "/head/166e1e6249b4e41eb89dd895247cc7b4070352875cc45e5c13e16b42efa8084d", - }, - }, - { - id: "UNSTABLE_SHIMMER", - texture: "/resources/img/items/unstable_shimmer.png", - animation: { - 0: "/head/17397c1603be4bcf52eae0d2ad66e1663aad724a8f069ba87aa41aa8d2b48820", - 660: "/head/91baf345a30ed4066c3acc8c115b743628bf0f9a745dc7a3c7b276edbf7cf98e", - 830: "/head/35ee2404c0fc6fdc101b0e76e8072da7fcb88fffabbbe4586df2c5037904f8", - 950: "/head/af00ed6ece411141cda7f3e0bce92396245a06818122f19af489c502f493dbb5", - 1120: "/head/b43690995b0323064a6d1d58d2dfc38ca4c358056c83122d9bd4f641d1d6db46", - 1260: "/head/db3a9728cfceb107c41f12ca054ecc839f8aae0bec52a6c51b0adff15399a173", - 1430: "/head/baacb2fe057d7d925c1853fc23328c3d45ba25b139abdc6e4b37272e796ef622", - 1560: "/head/1c3a818eafd47598c5b37155e74c794e04b993d7380ebc230fccc140107d5d0c", - 1720: "/head/6f05a4e9c5b56927273990149bfa656c3f5a3c83fa698acbd66ddfcf9d030727", - 1860: "/head/a75adcc4baa8cb3639c95dcb889d8f15aca72d3f999731a055accd7d9a5a8102", - }, - }, - { - id: "YOUNG_SHIMMER", - texture: "/resources/img/items/young_shimmer.png", - animation: { - 0: "/head/e1ad5d83e55890290f52e4ad06e4351a2e87998d1cb3e76cc952a076deb7882b", - 1820: "/head/294d6721f2017255771e9de26ffe696175b336eff71c277fdc1210bb507fadd1", - 1930: "/head/a737e50acdeee12d13b927b4a40b89ce939e3c5ad3863ac6bb4d5c14592386e4", - 2120: "/head/2cc475f887ff3cdc65f27be8f40f712deb618f232182dc516b0ee9de831fc1a9", - 2240: "/head/4e2dae1b889e8cbc5d953c6e2408136ac5088c671314ea38b2ceed09a608275e", - 2380: "/head/84075dbad5c693b6157a370790f725da10b8390970e503ef5a529277193aac97", - 2540: "/head/992146376c63ebd0a5aa9239af74a11610dd13c869a0106c5f6dd08c48b028c3", - 2730: "/head/5ce158fc4e502309a87bed14feb15a8f98f676fae7f3fa26e2a60e6bdd0a632e", - 2870: "/head/df365cd3a83fe8730256df57ed6902f91954ba8760a6bc7fb69672473bcfe85d", - 2990: "/head/422a3eabc82b5089bd2db80872de155f1d5203484b00a86227c81100b1e44fc1", - }, - }, - { - id: "WISE_SHIMMER", - texture: "/resources/img/items/wise_shimmer.png", - animation: { - 0: "/head/25d7c5909f742e2e85ba7f2c7449f9e12a5c42c5a1132974df7f4ef204d6ca1e", - 1770: "/head/548115e4f39f8ba74ae4d0e136a6509e03fab0f4f5a4d106c9d9882b0cc95f8c", - 1920: "/head/28a26bfd54037051bd9b993d157771b21e8910108b22a6e0ee85a5f3591a76d2", - 2080: "/head/1dd7deef500d605f15496cb9c33a5199d70285f9ffb076cbb1e33db1de68256e", - 2210: "/head/11e0dafa1c973649d16cf9371978cd398d48e63e3fe6f7e2fcc68d8b1d0d7a63", - 2390: "/head/d8aaf3a94345271221839cae64ea0e46d7194bdccd9188b473a88792df45f203", - 2530: "/head/15c88cc6c75a1058bff9c8e11bd6c2c3aee1d56dbb414da4659fec2ad38b9507", - 2680: "/head/67d4d373b8949d1288156102473bc3f3fa07d04950a2a3d41fe7d1885fc08c22", - 2820: "/head/98d38b09739cb2c34c585d2559f0adb45dfbcdc24695b517a5469beee883ac34", - 2970: "/head/b45eea4959e43a89d844766be5031d2e6d99101715d7e23fcede2083675afb68", - }, - }, - { - id: "STRONG_SHIMMER", - texture: "/resources/img/items/strong_shimmer.png", - animation: { - 0: "/head/ad3241f4419f06d17d88b21cc8e412f4ef11d7cfadd882e269da5a490e08f0e4", - 2000: "/head/427f5fdaff5e1e853e29bcdbd02dccc02529b7b6b8956c5a77e691edd8a14e32", - 2150: "/head/b6150c9ceecd48e5eeed2fc332af09e1013ce3281e46d25ce1418bf6e6ff8f77", - 2320: "/head/e156d89aa752848f2bf4c6ac6ba1b145ae8be5bacc2f049ccb19ff9cd6f7806c", - 2460: "/head/777db55f07b1a59b90235c82c0a9b9c80003bfcaaa75f3d662b00e85c9ffe1a", - 2610: "/head/5a6574f9192970ad6d58efe6c01f6fd5a0f2608a09f9f88be1ad2facaef20dce", - 2750: "/head/93ce091eef8be41cb2355a3079c1669e0e5965bfa00bf69649e70abe477cc5fe", - 2920: "/head/cb394649f001d418d341829bbb7282b5f19963bd5b78ec27bcb448c867f3ed82", - 3070: "/head/a8a6658e583e348e86e3a6560e95c01e97f2681ca1565b7614b3dabdf14d3638", - 3230: "/head/6a251637c534fcaa14fb9e9c6a06e01b70a44c9cd52b5216191189af45861388", - }, - }, - { - id: "PROTECTOR_SHIMMER", - texture: "/resources/img/items/protector_shimmer.png", - animation: { - 0: "/head/72cd120841228d2812ca07433a3ec4640de81fa1f4bb9b42269c741403196fdb", - 2010: "/head/6c7eb2926df159c5e4220263b340348ce4a20f307759f35e416f275b577712af", - 2160: "/head/ce3259aeb7440e85d426470c4719e52322628621f9238f38065b81c9f01c46fc", - 2310: "/head/9b9a22613019de020b08b07d7dd5b092f61ae9d15b90844c85f509bf38c02714", - 2460: "/head/3c5069b2db9813905b96037830cac5405c69baf9cd5479a5ed7f2e010706645d", - 2600: "/head/d37daa0bbb044cd4885ce74cb39bc1f3f2c16773129c31efd9cc9e602868027b", - 2750: "/head/9f2a18972804fd958d1e58fc77ab1857aef7b0452ec0caf116c764ad6e7ad1b", - 2890: "/head/54f460eb414c810ff0ef821c838833862065e1ea1e23bddeae93f269fe3d2bca", - 3050: "/head/238955b9636407eb7fc812f4ef6b2f9339ffe50b1352f1987bc3e31ff494c4cc", - 3200: "/head/20c584baef019b24ab30dffd3ee13dbafaa97ea667af94b95ceb97f5d5ec190e", - }, - }, - { - id: "OLD_SHIMMER", - texture: "/resources/img/items/old_shimmer.png", - animation: { - 0: "/head/78bf606f5ace4e3cfb81a14742992ff5a868d1f0f9d14b4bec9393859e0e0a00", - 2140: "/head/90cb01939b8a94572bff0d17dd827e18c399dedae63dca7bdc7b1cc066cbf49", - 2300: "/head/9f6589f30c89e363f50deb9bd1d07d0cb357d1a0a453f65df2c5ac9682ef8daf", - 2450: "/head/ce6b668cb2554cea0d6b80fd73e4435f34ae90ad8e6f7332035d3c4392654b55", - 2610: "/head/b697f558314159646315e81985d0c5634dcb6c81940674cae0555028fb1fee5c", - 2750: "/head/e2e5aecb1a5c484145723f48a286193e3b8445b3d45ebef15a9a2ccfd9cf2089", - 2880: "/head/bf5ae5fddd30b8e0385f459b4a0117e19f7a0431748eaad7606ea4120fb533a7", - 3050: "/head/8d81fe4729d9e4bf6d6bb9680c3f6b4d3c0f939b0540b596aabafab261205737", - 3190: "/head/1b29950bb5a21cdcf4d25f54e43937858fe6be1b88d881bb4ac35fec880d6900", - }, - }, - { - id: "HOLY_SHIMMER", - texture: "/resources/img/items/holy_shimmer.png", - animation: { - 0: "/head/c96696eb13cced8f5c521892d90fe8e2b129469520ade8d1d9f87225e7179761", - 2000: "/head/7aadd6f365cfed2d311ad3e3d237a53cbbbabe38436447c8cbe5f835d031c7a5", - 2150: "/head/53a005e06482753d599b292ab6a03ee935f620d081dfef6d987e43635934a42b", - 2290: "/head/e157c0679c8e1a9f96ef3bb661a2aa62b8547a3011e207066bccfc4d0faa72c6", - 2450: "/head/68bfd7f1015a02edc11694d6432ac7f02cd4e8e394695403fd248572560184b1", - 2600: "/head/5fbaaed1e0b5909490631c3821f0e3846f2dc856ed24b5cc0a2c0f708cb32216", - 2750: "/head/8df802e5bc3b2b961c1c309d1767a283ce5a74c322eb7b57de826844fdcc2f5a", - 2900: "/head/c933a2a52fb0dd8429c3bb13336ae6e4ba2da28c594b3a3299527a2e1b158f97", - 3060: "/head/4e5ebceed5165cc33301e769e12603cd5de352e90c2c3ce2403c1e0fc889d123", - 3190: "/head/923fc9abad079f4382ecd48a7b7428c19082e0f5e2afb8d71c4599627dff25fd", - }, - }, - { - id: "FAIRY_HELMET", - texture: "/resources/img/items/fairy_helmet.png", - animation: null, - }, - { - id: "FAIRY_CHESTPLATE", - texture: "/resources/img/items/fairy_chestplate.png", - animation: null, - }, - { - id: "FAIRY_LEGGINGS", - texture: "/resources/img/items/fairy_leggings.png", - animation: null, - }, - { - id: "FAIRY_BOOTS", - texture: "/resources/img/items/fairy_boots.png", - animation: null, - }, - { - id: "PET_SKIN_BAT_VAMPIRE", - texture: "/resources/img/items/pet_skin_bat_vampire.png", - animation: { - 0: "/head/473af69ed9bf67e2f5403dd7d28bbe32034749bbfb635ac1789a412053cdcbf0", - 200: "/head/9fe39e362f74f05186818eb9f69fce89325c70f55d1b85214155fbc82bd67863", - 270: "/head/af254f20be3680f2b042a4289ae63089e08ae26e137f74dc5318cc57a67a42df", - 370: "/head/a349d2ea1872ed47a387c89894e0265187a00219ee4da63b75b907016d3cd6aa", - 480: "/head/434d14248f21329e090fa46b1914a762415d4c0739c4cebc660b9fce305961c3", - 600: "/head/46574a3327abba60da5ccae9ccb8f30788a6a243bce7150c9c7dab8c15d76e53", - 660: "/head/453a525e531c5d24fbee6cc83c6767a6de4882df6c099bbe8513e7dbe35abad0", - 780: "/head/f14d63fbe721f986971136b0f812a99f9a7d6689179365b4499f6fa2c45ece3", - 900: "/head/d20db6a87d2eb5ace95807b66a3af0e9853c70ed8b51a2c036958c01e83c5d01", - 990: "/head/7fc09aaa2987ac6875307d5730352d6e222034c6104287fe41eeea04ac44e0cb", - 1170: "/head/d20db6a87d2eb5ace95807b66a3af0e9853c70ed8b51a2c036958c01e83c5d01", - 1280: "/head/f14d63fbe721f986971136b0f812a99f9a7d6689179365b4499f6fa2c45ece3", - 1390: "/head/453a525e531c5d24fbee6cc83c6767a6de4882df6c099bbe8513e7dbe35abad0", - 1460: "/head/46574a3327abba60da5ccae9ccb8f30788a6a243bce7150c9c7dab8c15d76e53", - 1570: "/head/434d14248f21329e090fa46b1914a762415d4c0739c4cebc660b9fce305961c3", - 1680: "/head/a349d2ea1872ed47a387c89894e0265187a00219ee4da63b75b907016d3cd6aa", - 1790: "/head/af254f20be3680f2b042a4289ae63089e08ae26e137f74dc5318cc57a67a42df", - 1870: "/head/9fe39e362f74f05186818eb9f69fce89325c70f55d1b85214155fbc82bd67863", - }, - }, - { - id: "PET_SKIN_BLAZE_FROZEN", - texture: "/resources/img/items/pet_skin_blaze_frozen.png", - animation: { - 0: "/head/47b78c3ff3e695dd5b2606fe266e19e628299815548dd2eb72ea864b7b8dfb18", - 230: "/head/6ba8927cac02e5e49142c141790ee695e7f5b2e3e44c528aa23db0c138b8996b", - 340: "/head/ad8dd3d82074f8ee731ed28b5cb4c53416ee9977ac965e53916070f0d07b3980", - 410: "/head/314d2152f639dff120b1246a67970f9e688606017e354db15638a900616ef795", - 510: "/head/486a3c5719d0b46d2f20d510d4acedefd994163c2800c702da01181e9c91c57e", - 640: "/head/4b0c880ffc254cb2fb44039125e49c67ff3116e5514bd8ffe42a24c98982bae8", - }, - }, - { - id: "PET_SKIN_DOLPHIN_SNUBFIN", - texture: "/resources/img/items/pet_skin_dolphin_snubfin.png", - animation: { - 0: "/head/e7df31c808b3e0e8907943e4cadf37f6bfd0af177913ba81d96115c6139d98b9", - 90: "/head/60098af339abd2fdd2b0046c6a5ca5ae351e429d0198e9711da42f78780bb5db", - 220: "/head/39f759bda7792e9810c4524d6d3f4463cd306c32a61f27077b58396dea89d551", - 380: "/head/78ebcc36ec0984c48721eaf8a662b94c4702823432e478046c65f641030b5b13", - 530: "/head/229bde70c7ab11489220ae2e15f0c68caba0b8ceeb726fc1bce518d37a900632", - 670: "/head/70271de0b78de131253e5723df01e3f3a89204658c5a1a77ded86e9d4d48337", - 820: "/head/a5ccc6f0a9b69bd1583f030400dc2d2997e9a1731b5f961c0eab2df9d653a583", - 1000: "/head/81ecf02070175e5704d7d82e727f552796343bcb2e75855e78c58a6161223ca0", - 1280: "/head/cd5cad5afe1ba4b7a4e303dce968c97ae06988702ed5dbd553035d936abd5159", - 1420: "/head/279413c788c7f450234bdab0cf0d0291c57f730e380c6d4c7746fde15928381", - }, - }, - { - id: "PET_SKIN_TIGER_GOLDEN", - texture: "/resources/img/items/pet_skin_tiger_golden.png", - animation: { - 0: "/head/c85f8db6e5b826d3dd5847cd8d7279f4d4dd50bc955ca7968c7c49b496ed7a3b", - 200: "/head/930b0cafdcfd0fbd86e9c44d405dea2f9910c79e4aa3c276d512eeb491a61cff", - 380: "/head/787e301cbe921605958c598223a226a029820759b3516a47f1d5000262f22c17", - 510: "/head/1714532202ac9f522f87f88d12931930dacea8f954f069cf59623cf33fbbf0a5", - 620: "/head/9d12e1bed0e66537d7db32db6fc53d209d7fb863b3c5c9e86edf3c27d3b9a796", - 820: "/head/95d950e1d7e55839e669a267e874b1eb6e501c71955a4e12b521db358102ad98", - 950: "/head/b7bfdc6a4d26ee1964baab7898c1709753c07365804171250ac1ce2d44121d61", - 1120: "/head/a7af11dbd2384865ea6dbab0058404f638e75f646ec49af84afd290e267550b", - 1260: "/head/afc3f0d6946ff010c9bb1aa99c66f75110bef5b1572cbcd47b969c5903b6b217", - 1350: "/head/3478f6cebf3ae0138f5c911ac5152b8f7a10c532db6ec13e24dfe35e5ddd6451", - 1500: "/head/5dd7f6cc8e60c94f379ee5c7883d971491d952a7d585993d2955a53fdcbd64e6", - 1730: "/head/d8de69ec4e6a12816e12782d7919a661caeaf6855a3a4acfdc0d0169bc08e2d9", - 1850: "/head/d44e2408796c0e45c0abd5544b8bc1b9dcf7c53a75aba8a67b29bea09bf62bf0", - 2010: "/head/3e12619952e22eab5ab29417a0be1b9c14037804854c298357762279599a48a5", - 2200: "/head/577c388aa2a20441497af7f99b87f152e9a7618d1d9f9fb650d3b1c27f931054", - }, - }, - { - id: "PET_SKIN_ARMADILLO_ENCHANTED", - texture: "/resources/img/items/pet_skin_armadillo_enchanted.png", - animation: { - 0: "/head/7426d7b174e8bd9c283f91a42cf2dfa95a518d5eae97ab5595412d4951d4db18", - 190: "/head/d3e9193ca1d2d35f3fed9b2ab2a2bca2cd250e5fd73af5caffb841762c31e8b3", - 290: "/head/177528ec673eb81526bc7d6ed1e9d030413a64fe4c14f6623f5ebd748cff4919", - 370: "/head/55f35e3778156afac51cb8f2cd3c87f2feafb0ddc2dbdea72568433790b29522", - 470: "/head/114d39c2dae9f36e60472e11a29ab26500382d662e76ce884c64f7ab146cbddd", - 600: "/head/ebca61d60a8d1251d5d321e4103654a0d675a5f2428a00fae3da0f35987fe40b", - 710: "/head/1c67caaf138fab0b5d6f61639bcfcb678bdf13e6a2d8f3f2fb849fee2d7ffe79", - 910: "/head/aada2c7606f0fda810af065eca6f997eeaff1fc3c4fee975ba6dcb4898499dec", - 1000: "/head/83cb57ef3776b44eaa8ddc4ad868627eb739e38b81879f8b4269852cd2417433", - 1190: "/head/aada2c7606f0fda810af065eca6f997eeaff1fc3c4fee975ba6dcb4898499dec", - 1400: "/head/1c67caaf138fab0b5d6f61639bcfcb678bdf13e6a2d8f3f2fb849fee2d7ffe79", - 1480: "/head/ebca61d60a8d1251d5d321e4103654a0d675a5f2428a00fae3da0f35987fe40b", - 1580: "/head/114d39c2dae9f36e60472e11a29ab26500382d662e76ce884c64f7ab146cbddd", - 1700: "/head/55f35e3778156afac51cb8f2cd3c87f2feafb0ddc2dbdea72568433790b29522", - 1780: "/head/177528ec673eb81526bc7d6ed1e9d030413a64fe4c14f6623f5ebd748cff4919", - 1890: "/head/d3e9193ca1d2d35f3fed9b2ab2a2bca2cd250e5fd73af5caffb841762c31e8b3", - }, - }, - { - id: "PET_SKIN_ARMADILLO_SEAFOAM", - texture: "/resources/img/items/pet_skin_armadillo_seafoam.png", - animation: { - 0: "/head/d0c72b0db2ecbdaf153c563593d17d546b302b278b1b81d3e063963b5b0e5bc4", - 200: "/head/9307cd9ec59e0de34cd85716d8fd4eb4ccd4ace33def1031968912a88b8caf11", - 300: "/head/9f80d8ddb7a689b28ccee283ede060aebea8787dd09220f0afa951b67e4b5e9c", - 400: "/head/e479115288b3789ed316353878fba4d2c4164de6525d91d280d3e6714e6a5d8c", - 540: "/head/7eb3d14736c287d2d625589473ec480997df55ff81968d624a13145ebefa210a", - 620: "/head/b90f4e88ff70baf85138c458cb0d635d2935ebf3baa59d958cacb3130fd53dd5", - 810: "/head/6cb449d6f389ed4cc6e3ca6b2583c678adb366881a678e8d9a14bb721f19e516", - 940: "/head/a1aa754ed4aecc606fa4e7391e728cc2f993a4770f7e398af62e766a0f916364", - 1020: "/head/e87c075e8f030937ecf85246588359ff0daa28cd5a98defc6c6d1b7490653506", - 1210: "/head/a1aa754ed4aecc606fa4e7391e728cc2f993a4770f7e398af62e766a0f916364", - 1350: "/head/6cb449d6f389ed4cc6e3ca6b2583c678adb366881a678e8d9a14bb721f19e516", - 1520: "/head/b90f4e88ff70baf85138c458cb0d635d2935ebf3baa59d958cacb3130fd53dd5", - 1600: "/head/7eb3d14736c287d2d625589473ec480997df55ff81968d624a13145ebefa210a", - 1710: "/head/e479115288b3789ed316353878fba4d2c4164de6525d91d280d3e6714e6a5d8c", - 1840: "/head/9f80d8ddb7a689b28ccee283ede060aebea8787dd09220f0afa951b67e4b5e9c", - 1930: "/head/9307cd9ec59e0de34cd85716d8fd4eb4ccd4ace33def1031968912a88b8caf11", - }, - }, - { - id: "PET_SKIN_KUUDRA_LOYALTY", - texture: "/resources/img/items/pet_skin_kuudra_loyalty.png", - animation: { - faction_barbarian: "/head/bb7d06ab10c4d15433670ca59ed6ad87d797c24bf7bfc3343730aa1594a4970c", - faction_mage: "/head/6fb7230da4e7a6cba268c4d87269ab66c9e41ae86eb426774d869c5f49fdb914", - }, - }, - { - id: "TRUE_WARDEN", - texture: "/resources/img/items/true_warden.png", - animation: { - 0: "/head/a97e2b2a93d43ecfd6fce41c3bd506bf7087798fcf1b125cc7d141df23f3dc5b", - 290: "/head/557f03bf45409bdef5d0f50d97174e6d56650cf73f3de6acb2cb4ee5b9611bf6", - 430: "/head/e3c81310c69cce747c4c5b56a61b6c5631f196777773a44c5ae48e5ce4b3855a", - 570: "/head/42070586ce0e6da4d924c8afffc6e2dbfdb71b2b7ca29e6d3b159c113abc2dd1", - 770: "/head/1fe919630e157d27506322286c8cf4e0162025791f6f98f9e40219056e7de366", - 950: "/head/95019e706680d5e663d44b0fbee34b18d9c0af636ad04fb20b3477bdf0b144b9", - 1090: "/head/4a5edf24f46e7c6f2c316542e4032ed5bbe56fc1a90ff59c5f11cf87a0f46db1", - 1250: "/head/b3e8da3cc6d4cd1ce4085e0bf384881d4c2677b9db642cfabdda9e3eb09d8520", - 1390: "/head/e70847819d052ff9e6d496217d87e75ffca710a9d2565ac64382683ffc46cdde", - 1550: "/head/30a0588c528d084508e795eb9881a4ad28e2f52ed03401b2b345f72fcf9632e5", - 1690: "/head/1cafe848fd755d998a06a58321912244cf76eef1ce78a51228fdd1020ab73a68", - 1990: "/head/30a0588c528d084508e795eb9881a4ad28e2f52ed03401b2b345f72fcf9632e5", - 2150: "/head/e70847819d052ff9e6d496217d87e75ffca710a9d2565ac64382683ffc46cdde", - 2290: "/head/b3e8da3cc6d4cd1ce4085e0bf384881d4c2677b9db642cfabdda9e3eb09d8520", - 2440: "/head/4a5edf24f46e7c6f2c316542e4032ed5bbe56fc1a90ff59c5f11cf87a0f46db1", - 2600: "/head/95019e706680d5e663d44b0fbee34b18d9c0af636ad04fb20b3477bdf0b144b9", - 2720: "/head/1fe919630e157d27506322286c8cf4e0162025791f6f98f9e40219056e7de366", - 2890: "/head/42070586ce0e6da4d924c8afffc6e2dbfdb71b2b7ca29e6d3b159c113abc2dd1", - 3040: "/head/e3c81310c69cce747c4c5b56a61b6c5631f196777773a44c5ae48e5ce4b3855a", - 3190: "/head/557f03bf45409bdef5d0f50d97174e6d56650cf73f3de6acb2cb4ee5b9611bf6", - }, - }, - // Crab Hats 2022 - Animated - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "red", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--red.png", - animation: { - 0: "/head/160fad862382cb6323f2a6835319470d2346ced67b8c6f7e50b65040d17bbc7c", - 340: "/head/5caaee0b93a3b5eb226dbbc97d13390a6689e2b4bcd20c33366f6d4fac8384a6", - 460: "/head/f65d6e1ecf13c11ce9ec8aa35c52c8495d6b9407d08b32caaa40bae40e4aa6be", - 610: "/head/e62f693b07e4dd34597889fcb606978ccd170faa233985cd62ecb469a82016f3", - 830: "/head/296d831efd3fe5f30793d9427c75dd79fc9c94081454c8dd77a9f0e40060b315", - 980: "/head/297bd0ccd3516cbd689bbc39f67d3484e5e8db9f26efa4e9cdf0bb3451f11fec", - 1150: "/head/e9c535302cd2c75a6db3d7a227f912aaf1c93e248054e9915d02b75e150f354", - 1290: "/head/add9165345884409248ee46eb31b2803a6497c4ff6b538fc2abf973e68a5f104", - 1530: "/head/e9c535302cd2c75a6db3d7a227f912aaf1c93e248054e9915d02b75e150f354", - 1660: "/head/297bd0ccd3516cbd689bbc39f67d3484e5e8db9f26efa4e9cdf0bb3451f11fec", - 1810: "/head/296d831efd3fe5f30793d9427c75dd79fc9c94081454c8dd77a9f0e40060b315", - 1970: "/head/e62f693b07e4dd34597889fcb606978ccd170faa233985cd62ecb469a82016f3", - 2130: "/head/f65d6e1ecf13c11ce9ec8aa35c52c8495d6b9407d08b32caaa40bae40e4aa6be", - 2270: "/head/5caaee0b93a3b5eb226dbbc97d13390a6689e2b4bcd20c33366f6d4fac8384a6", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "orange", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--orange.png", - animation: { - 0: "/head/3fc8d6179d89034d517b5d39317b966525a9fbeb3e5dc99636f34a4ad9d6357", - 290: "/head/3eb2b56462185209c95d5d2006c9235013bf2abe1ad20dcf4b26b8e147678bde", - 460: "/head/c93ee434fc5a1544ed16ddda0beeb28aa5cf60cc9f4907d3ed215d8bdae4a6e7", - 640: "/head/c2a3b780194bf30abf4f7f8d8863b3a62e2a31d0381ac75448a4a928054b775d", - 760: "/head/1cd7cdac1096219c83b7a0833ff8b13dd7e17b26db0a0b75f7c07df509d32835", - 940: "/head/cb32beb55b7cb08543cb234bacae5d93a004432fc9a6ba529abd59fa5dcba2be", - 1080: "/head/732ceba67645f7df311ff67eaa13ebc4ffe040bd1ed5678964881e9ea1f59598", - 1220: "/head/b8f88e7df2ca0db38e2a0c47de6e3c24cc00c5c3c95a1253bddb11055bce3e87", - 1510: "/head/732ceba67645f7df311ff67eaa13ebc4ffe040bd1ed5678964881e9ea1f59598", - 1660: "/head/cb32beb55b7cb08543cb234bacae5d93a004432fc9a6ba529abd59fa5dcba2be", - 1820: "/head/1cd7cdac1096219c83b7a0833ff8b13dd7e17b26db0a0b75f7c07df509d32835", - 1960: "/head/c2a3b780194bf30abf4f7f8d8863b3a62e2a31d0381ac75448a4a928054b775d", - 2110: "/head/c93ee434fc5a1544ed16ddda0beeb28aa5cf60cc9f4907d3ed215d8bdae4a6e7", - 2260: "/head/3eb2b56462185209c95d5d2006c9235013bf2abe1ad20dcf4b26b8e147678bde", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "yellow", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--yellow.png", - animation: { - 0: "/head/d29593a2ee136c4d13b6fd39f252abfca4f76f7e26afb32a98ef0573cfcfab81", - 300: "/head/50c2be4058cb0be7f4100ee0685fc4ddc918971959e1a34d5397bac039af6f5d", - 460: "/head/e9af98d0ad6d59a4c7d4da3523d370d8bd493442c5c695b4450026d789e18a9d", - 620: "/head/99a166ced2f165b7c8c953188e1ad372240c1f59f140ed3b28ed1ded313fe523", - 770: "/head/85973abdc9f03023a02411843e0d0a89467696095269e51b4f9a9cfacd8e0d33", - 900: "/head/d0f208e0a17c3697b74bc3451fec5ee70cab45cbb972cc34f72a9f998d50e094", - 1060: "/head/1f28806e68dfe12310a11b5f9b8252600fd92a48431f0c8ef7e018f86a995747", - 1230: "/head/7b5870d52fe830ba9234ef26870739c9324649b20ce0ffbbffe4b500b6d91c90", - 1500: "/head/1f28806e68dfe12310a11b5f9b8252600fd92a48431f0c8ef7e018f86a995747", - 1660: "/head/d0f208e0a17c3697b74bc3451fec5ee70cab45cbb972cc34f72a9f998d50e094", - 1800: "/head/85973abdc9f03023a02411843e0d0a89467696095269e51b4f9a9cfacd8e0d33", - 1970: "/head/99a166ced2f165b7c8c953188e1ad372240c1f59f140ed3b28ed1ded313fe523", - 2100: "/head/e9af98d0ad6d59a4c7d4da3523d370d8bd493442c5c695b4450026d789e18a9d", - 2270: "/head/50c2be4058cb0be7f4100ee0685fc4ddc918971959e1a34d5397bac039af6f5d", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "lime", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--lime.png", - animation: { - 0: "/head/e59db2405cb3693eecd8c6dec03acb00ddc0429ef47d407d9c7032f534287396", - 170: "/head/bbec0c8096d93279daab0ab863cc8b6f42ef7e6caa98a2678bbce30f50f0f94b", - 290: "/head/90fa9a66784b4963d8b92b8395f0ab83255c997d949fa58fbc4b0f22363dea4e", - 450: "/head/a7aeb53aece1ecb05d684ec776831cf13bde0136bce3c8f2ef3f23e5ee961b65", - 580: "/head/7c844582afbce805d39f2390215523830ee44acf5f64f36a611586cade5e16a1", - 750: "/head/f8e3bc078421385a0ee0fb2591b06905f54e1e92b1062a6e7670cc2e9f0156e7", - 890: "/head/99a592126ca847ec12a8cbead72228249e9c38bab18abd572c9fd3168069a73", - 1050: "/head/59ad36641ddd7c1e7ac31773443f0196f01631be071e620bc7f6523e3c859843", - 1350: "/head/99a592126ca847ec12a8cbead72228249e9c38bab18abd572c9fd3168069a73", - 1510: "/head/f8e3bc078421385a0ee0fb2591b06905f54e1e92b1062a6e7670cc2e9f0156e7", - 1660: "/head/7c844582afbce805d39f2390215523830ee44acf5f64f36a611586cade5e16a1", - 1790: "/head/a7aeb53aece1ecb05d684ec776831cf13bde0136bce3c8f2ef3f23e5ee961b65", - 1960: "/head/90fa9a66784b4963d8b92b8395f0ab83255c997d949fa58fbc4b0f22363dea4e", - 2090: "/head/bbec0c8096d93279daab0ab863cc8b6f42ef7e6caa98a2678bbce30f50f0f94b", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "green", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--green.png", - animation: { - 0: "/head/51ebe521fddb89170dee07552d1b8bb9ce3298a8acf4e0667194ba905651a9d", - 270: "/head/c91df11d048cf626da572336e63568880c708ac1bd1192dd7989a6cfb32a72bf", - 450: "/head/397326899db4db0feb0e79bceb2a421a74b3f24688a10d72de80ca14541057ce", - 610: "/head/18ef17ca75c986455aff8a4705b5b494881c9769d2d2f64d3c3cf2626387ceb1", - 740: "/head/5bf024bfd999d713e6b7e0541846905a5f8c2b8312c80fd10e9de956bb75f375", - 880: "/head/25021439b1d9fd984e7365f2e378b61e11db9dd68a814171588eea84db85cfc0", - 1050: "/head/ec84338c136030521c3d4dfa7a265154e67bf7d922de469e4b1d0cc69200fe0e", - 1170: "/head/24c6eeae0b6b2a6335641a1fc5cf9475a3df23078264b571d163c4729f9f67f4", - 1470: "/head/ec84338c136030521c3d4dfa7a265154e67bf7d922de469e4b1d0cc69200fe0e", - 1660: "/head/25021439b1d9fd984e7365f2e378b61e11db9dd68a814171588eea84db85cfc0", - 1780: "/head/5bf024bfd999d713e6b7e0541846905a5f8c2b8312c80fd10e9de956bb75f375", - 1930: "/head/18ef17ca75c986455aff8a4705b5b494881c9769d2d2f64d3c3cf2626387ceb1", - 2080: "/head/397326899db4db0feb0e79bceb2a421a74b3f24688a10d72de80ca14541057ce", - 2250: "/head/c91df11d048cf626da572336e63568880c708ac1bd1192dd7989a6cfb32a72bf", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "aqua", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--aqua.png", - animation: { - 0: "/head/73da35edd8a9d976dd64fbb5f1adc818c52279a21d80acef78d5b6f238491eec", - 320: "/head/1a1d359676d48aafdc9f6a64afb561c5ee21981132ca1e3e3db56959a812a017", - 470: "/head/c9ebf82428b72b724d48742bfe7892adbcadb3d5a3e002730aaf569982e01abf", - 600: "/head/39b1eed512a81c4e0a94fa19500e3141f9e458410f447294c450b09f35f006d4", - 760: "/head/bd09e5fa1eed1891b16acd083ea18bd34f8b156b0ea61be57a155036ddecbd9e", - 900: "/head/87587c9468977651c979f79d32df1cb83f0552cbb18440710048c3d4465ab36a", - 1050: "/head/b1e01363e68d728a8c64f4b6619f3efbac2d6856cb16b3bcb0485499c657f4a2", - 1210: "/head/beaaec1a49540fd514ee6be0150af18e28333eab36d75d2ec253bc1431c1be0d", - 1510: "/head/b1e01363e68d728a8c64f4b6619f3efbac2d6856cb16b3bcb0485499c657f4a2", - 1650: "/head/87587c9468977651c979f79d32df1cb83f0552cbb18440710048c3d4465ab36a", - 1810: "/head/bd09e5fa1eed1891b16acd083ea18bd34f8b156b0ea61be57a155036ddecbd9e", - 1950: "/head/39b1eed512a81c4e0a94fa19500e3141f9e458410f447294c450b09f35f006d4", - 2120: "/head/c9ebf82428b72b724d48742bfe7892adbcadb3d5a3e002730aaf569982e01abf", - 2260: "/head/1a1d359676d48aafdc9f6a64afb561c5ee21981132ca1e3e3db56959a812a017", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "purple", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--purple.png", - animation: { - 0: "/head/90965f8b09cd3dca4afc07f7691c4cd5417970da058a829b5ffdf86f3947a8a7", - 300: "/head/79ad14d65d983e5caeba3279a59b34443f2c7d3d2de33f270ea0f4eadacb3d6a", - 410: "/head/2cc799f851393118ea79db086c66d0d1dc19fc2e48efd6f247e87118aa481702", - 600: "/head/43af18e6e13a29d93723903acb4b47eadacc2a72f724a976b99f06a401596ec7", - 710: "/head/1d7c11fbe015e6c1a3cbf5bddeb0afca6011a86f60698a6a2723551ba4f321b0", - 870: "/head/cd9e743b571fddcfae085b4269adc502cca83829b05f79adf16c4e4be03fe672", - 1050: "/head/71e7444c85d0e01d38f033d009e11ca5c90991b557746af4842cd1245c45219f", - 1190: "/head/81e8c4da951506ee084dc5a56be0fb8229cb2ab445ce338c938a584fd6f1ac74", - 1460: "/head/71e7444c85d0e01d38f033d009e11ca5c90991b557746af4842cd1245c45219f", - 1620: "/head/cd9e743b571fddcfae085b4269adc502cca83829b05f79adf16c4e4be03fe672", - 1760: "/head/1d7c11fbe015e6c1a3cbf5bddeb0afca6011a86f60698a6a2723551ba4f321b0", - 1950: "/head/43af18e6e13a29d93723903acb4b47eadacc2a72f724a976b99f06a401596ec7", - 2100: "/head/2cc799f851393118ea79db086c66d0d1dc19fc2e48efd6f247e87118aa481702", - 2210: "/head/79ad14d65d983e5caeba3279a59b34443f2c7d3d2de33f270ea0f4eadacb3d6a", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "pink", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--pink.png", - animation: { - 0: "/head/ffb15827a198ae6bec2e42f82ab869e9e92cdece6e8d420ca5605cc8f5ddf84d", - 310: "/head/3b07e599b38263407c5b32f79be7eed1ad5f65459fbaff072aa1a1b52734d42d", - 440: "/head/55a31e6c23d8f158c3d4d51631cad0ed719a5026d46b099f3d820d9bdbe4994c", - 610: "/head/dc8a5a2de9899c0ee14c7df62a1e2303dc0c5f721a5bd487a977185d098a3a73", - 760: "/head/b1ef278643a23384066a5cda6851d334475dab0a4c6dd61314375cd314a2dee0", - 910: "/head/9ca38b99c2950826b3eceb1165b167ba299a4c628ba2744a6271079988c84023", - 1050: "/head/d48fbecf2b116ad7061218ef89e2966e12291b2cb5794103b7776a30bfdd311d", - 1300: "/head/67df75185a0dca0b5cede4064b787a3a14004fdd4dca4942246db00c0c03e51b", - 1540: "/head/d48fbecf2b116ad7061218ef89e2966e12291b2cb5794103b7776a30bfdd311d", - 1670: "/head/9ca38b99c2950826b3eceb1165b167ba299a4c628ba2744a6271079988c84023", - 1820: "/head/b1ef278643a23384066a5cda6851d334475dab0a4c6dd61314375cd314a2dee0", - 1950: "/head/dc8a5a2de9899c0ee14c7df62a1e2303dc0c5f721a5bd487a977185d098a3a73", - 2100: "/head/55a31e6c23d8f158c3d4d51631cad0ed719a5026d46b099f3d820d9bdbe4994c", - 2250: "/head/3b07e599b38263407c5b32f79be7eed1ad5f65459fbaff072aa1a1b52734d42d", - }, - }, - { - id: "PARTY_HAT_CRAB_ANIMATED", - tags: { - party_hat_year: 2022, - party_hat_color: "black", - }, - texture: "/resources/img/items/party_hat_crab_animated--2022--black.png", - animation: { - 0: "/head/447805987bfee54e8330480a4f693e8f7e19b7b683b28dc0f1cad7aae85ad1e", - 320: "/head/8f149b0675823a06a0ad10bb3e33ecd70c53e2b170fb3a7494f106f5de4fd86e", - 460: "/head/7faad4b84247ff5535d976c7bbf2d0223d4cdc9e510b182371e6bb81b71a0ff5", - 630: "/head/9c432867d0e7dc684c82af579025331b4042f66fd1c504ed9c1ea367bb4ba6ae", - 780: "/head/93c64ee9f32c9e75dd8d88c4305b707854b884f133fbaa0afe0e18631039e629", - 910: "/head/91a799587001ffecf02a97a22fd5bc4968dbb68e5e4cde0904ddd6d76bc81b4e", - 1060: "/head/42d43baa0a48bca4713c047e8c0e393db2d99559fc8c6a5fa5867ed6c60b1701", - 1210: "/head/daab38d6166e6390083336874b00cc24f8eeaa2b17ab3c946d460515ca870b70", - 1530: "/head/42d43baa0a48bca4713c047e8c0e393db2d99559fc8c6a5fa5867ed6c60b1701", - 1660: "/head/91a799587001ffecf02a97a22fd5bc4968dbb68e5e4cde0904ddd6d76bc81b4e", - 1850: "/head/93c64ee9f32c9e75dd8d88c4305b707854b884f133fbaa0afe0e18631039e629", - 1980: "/head/9c432867d0e7dc684c82af579025331b4042f66fd1c504ed9c1ea367bb4ba6ae", - 2130: "/head/7faad4b84247ff5535d976c7bbf2d0223d4cdc9e510b182371e6bb81b71a0ff5", - 2270: "/head/8f149b0675823a06a0ad10bb3e33ecd70c53e2b170fb3a7494f106f5de4fd86e", - }, - }, - ]; - - /* - ..######...########.##....##....########.##.....##.########...#######..########..########..######. - .##....##..##.......###...##....##........##...##..##.....##.##.....##.##.....##....##....##....## - .##........##.......####..##....##.........##.##...##.....##.##.....##.##.....##....##....##...... - .##...####.######...##.##.##....######......###....########..##.....##.########.....##.....######. - .##....##..##.......##..####....##.........##.##...##........##.....##.##...##......##..........## - .##....##..##.......##...###....##........##...##..##........##.....##.##....##.....##....##....## - ..######...########.##....##....########.##.....##.##.........#######..##.....##....##.....######. - */ - - const gen_pet_skins = {}; - const gen_item_skins = {}; - const gen_animated_items = {}; - - skins.forEach((skin) => { - if (skin.id.startsWith("PET_SKIN_")) { - gen_pet_skins[skin.id] = { - name: skin.name, - texture: skin.texture, - release: skin.release, - }; - } else { - gen_item_skins[skin.id] = { - name: skin.name, - texture: skin.texture, - }; - } - }); - - animations.forEach((anim) => { - // Update texture in pet_skins - if (gen_pet_skins[anim.id]) { - gen_pet_skins[anim.id].texture = anim.texture; - } - - // Update texture in item_skins - if (gen_item_skins[anim.id]) { - gen_item_skins[anim.id].texture = anim.texture; - } - - // Push the item in animated_items (skins too!) - if (!gen_animated_items[anim.id]) { - gen_animated_items[anim.id] = {}; - } - gen_animated_items[anim.id].texture = anim.texture; - }); - -const pet_skins = gen_pet_skins; -const item_skins = gen_item_skins; -const animated_items = gen_animated_items; -const animated_items_arr = animations; - -module.exports = { pet_skins, item_skins, animated_items, animated_items_arr} \ No newline at end of file diff --git a/constants/symbols.js b/constants/symbols.js deleted file mode 100644 index edd1bd2..0000000 --- a/constants/symbols.js +++ /dev/null @@ -1,177 +0,0 @@ -// CREDIT: https://github.com/SkyCryptWebsite/SkyCrypt/ (Modified) - -const symbols = { - health: { - name: "Health", - nameLore: "Health", - nameShort: "Health", - nameTiny: "HP", - symbol: "❤", - suffix: "", - color: "c", - }, - defense: { - name: "Defense", - nameLore: "Defense", - nameShort: "Defense", - nameTiny: "Def", - symbol: "❈", - suffix: "", - color: "a", - }, - strength: { - name: "Strength", - nameLore: "Strength", - nameShort: "Strength", - nameTiny: "Str", - symbol: "❁", - suffix: "", - color: "c", - }, - speed: { - name: "Speed", - nameLore: "Speed", - nameShort: "Speed", - nameTiny: "Spd", - symbol: "✦", - suffix: "", - color: "f", - }, - crit_chance: { - name: "Crit Chance", - nameLore: "Crit Chance", - nameShort: "Crit Chance", - nameTiny: "CC", - symbol: "☣", - suffix: "%", - color: "9", - }, - crit_damage: { - name: "Crit Damage", - nameLore: "Crit Damage", - nameShort: "Crit Damage", - nameTiny: "CD", - symbol: "☠", - suffix: "%", - color: "9", - }, - intelligence: { - name: "Intelligence", - nameLore: "Intelligence", - nameShort: "Intelligence", - nameTiny: "Int", - symbol: "✎", - suffix: "", - color: "b", - }, - bonus_attack_speed: { - name: "Bonus Attack Speed", - nameLore: "Bonus Attack Speed", - nameShort: "Attack Speed", - nameTiny: "Atk", - symbol: "⚔", - suffix: "%", - color: "e", - }, - sea_creature_chance: { - name: "Sea Creature Chance", - nameLore: "Sea Creature Chance", - nameShort: "SC Chance", - nameTiny: "SCC", - symbol: "α", - suffix: "%", - color: "3", - }, - magic_find: { - name: "Magic Find", - nameLore: "Magic Find", - nameShort: "Magic Find", - nameTiny: "MF", - symbol: "✯", - suffix: "", - color: "b", - }, - pet_luck: { - name: "Pet Luck", - nameLore: "Pet Luck", - nameShort: "Pet Luck", - nameTiny: "PL", - symbol: "♣", - suffix: "", - color: "d", - }, - true_defense: { - name: "True Defense", - nameLore: "True Defense", - nameShort: "True Defense", - nameTiny: "TD", - symbol: "❂", - suffix: "", - color: "f", - }, - ferocity: { - name: "Ferocity", - nameLore: "Ferocity", - nameShort: "Ferocity", - nameTiny: "Frc", - symbol: "⫽", - suffix: "", - color: "c", - }, - ability_damage: { - name: "Ability Damage", - nameLore: "Ability Damage", - nameShort: "Ability Damage", - nameTiny: "AD", - symbol: "๑", - suffix: "%", - color: "c", - }, - mining_speed: { - name: "Mining Speed", - nameLore: "Mining Speed", - nameShort: "Mining Speed", - nameTiny: "MngSpd", - symbol: "⸕", - suffix: "", - color: "6", - }, - mining_fortune: { - name: "Mining Fortune", - nameLore: "Mining Fortune", - nameShort: "Mining Fortune", - nameTiny: "MngFrt", - symbol: "☘", - suffix: "", - color: "6", - }, - farming_fortune: { - name: "Farming Fortune", - nameLore: "Farming Fortune", - nameShort: "Farming Fortune", - nameTiny: "FrmFrt", - symbol: "☘", - suffix: "", - color: "6", - }, - foraging_fortune: { - name: "Foraging Fortune", - nameLore: "Foraging Fortune", - nameShort: "Foraging Fortune", - nameTiny: "FrgFrt", - symbol: "☘", - suffix: "", - color: "6", - }, - pristine: { - name: "Pristine", - nameLore: "Pristine", - nameShort: "Pristine", - nameTiny: "Prs", - symbol: "✧", - suffix: "", - color: "5", - }, - }; - -module.exports = { symbols } \ No newline at end of file diff --git a/constants/talismans.js b/constants/talismans.js index c08cadd..4fcde57 100644 --- a/constants/talismans.js +++ b/constants/talismans.js @@ -79,12 +79,19 @@ module.exports = { POWER_TALISMAN: ['POWER_RING', 'POWER_ARTIFACT'], POWER_RING: ['POWER_ARTIFACT'], BINGO_TALISMAN: ['BINGO_RING'], - BURNING_KUUDRA_CORE: ['FIERY_KUUDRA_CORE', 'INFERNA_KUUDRA_CORE'], - FIERY_KUUDRA_CORE: ['INFERNA_KUUDRA_CORE'], + BINGO_RING: ['BINGO_ARTIFACT'], + BURNING_KUUDRA_CORE: ['FIERY_KUUDRA_CORE', 'INFERNAL_KUUDRA_CORE'], + FIERY_KUUDRA_CORE: ['INFERNAL_KUUDRA_CORE'], BURSTSTOPPER_TALISMAN: ['BURSTSTOPPER_ARTIFACT'], ODGERS_BRONZE_TOOTH: ['ODGERS_SILVER_TOOTH', 'ODGERS_GOLD_TOOTH', 'ODGERS_DIAMOND_TOOTH'], ODGERS_SILVER_TOOTH: ['ODGERS_GOLD_TOOTH', 'ODGERS_DIAMOND_TOOTH'], ODGERS_GOLD_TOOTH: ['ODGERS_DIAMOND_TOOTH'], + VACCINE_RING: ['VACCINE_ARTIFACT'], + VACCINE_TALISMAN: ['VACCINE_RING', 'VACCINE_ARTIFACT'], + DRACONIC_TALISMAN: ["DRACONIC_RING", "DRACONIC_ARTIFACT"], + DRACONIC_RING: ["DRACONIC_ARTIFACT"], + GREAT_SPOOK_TALISMAN: ["GREAT_SPOOK_RING", "GREAT_SPOOK_ARTIFACT"], + GREAT_SPOOK_RING: ["GREAT_SPOOK_ARTIFACT"], }, talisman_duplicates: { @@ -123,6 +130,8 @@ module.exports = { CAMPFIRE_TALISMAN_21: { name: 'Campfire God Badge', rarity: 'legendary' }, FARMING_TALISMAN: { name: 'Farming Talisman', rarity: 'common' }, VACCINE_TALISMAN: { name: 'Vaccine Talisman', rarity: 'common' }, + VACCINE_RING: { name: 'Vaccine Ring', rarity: 'uncommon' }, + VACCINE_ARTIFACT: { name: 'Vaccine Artifact', rarity: 'rare' }, WOOD_TALISMAN: { name: 'Wood Affinity Talisman', rarity: 'uncommon' }, SKELETON_TALISMAN: { name: 'Skeleton Talisman', rarity: 'common' }, COIN_TALISMAN: { name: 'Talisman of Coins', rarity: 'common' }, @@ -183,7 +192,8 @@ module.exports = { SHADY_RING: { name: 'Shady Ring', rarity: 'uncommon' }, CROOKED_ARTIFACT: { name: 'Crooked Artifact', rarity: 'rare' }, SEAL_OF_THE_FAMILY: { name: 'Seal of the Family', rarity: 'epic' }, - PARTY_HAT_CRAB: { name: 'Crab Hat of Celebration', rarity: 'special' }, + PARTY_HAT_CRAB: { name: 'Crab Hat of Celebration - 2020', rarity: 'special' }, + PARTY_HAT_CRAB_ANIMATED: { name: 'Crab Hat of Celebration - 2022', rarity: 'special' }, POTATO_TALISMAN: { name: 'Potato Talisman', rarity: 'common' }, EMERALD_RING: { name: 'Emerald Ring', rarity: 'uncommon' }, PERSONAL_COMPACTOR_4000: { name: 'Personal Compactor 4000', rarity: 'uncommon' }, @@ -266,6 +276,7 @@ module.exports = { NETHER_ARTIFACT: { name: 'Nether Artifact', rarity: 'epic' }, BINGO_TALISMAN: { name: 'Bingo Talisman', rarity: 'common' }, BINGO_RING: { name: 'Bingo Ring', rarity: 'uncommon' }, + BINGO_ARTIFACT: { name: 'Bingo Artifact', rarity: 'rare' }, BURSTSTOPPER_TALISMAN: { name: 'Burststopper Talisman', rarity: 'rare' }, BURSTSTOPPER_ARTIFACT: { name: 'Burststopper Artifact', rarity: 'epic' }, FIERY_KUUDRA_CORE: { name: 'Fiery Kuudra Core', rarity: 'epic' }, @@ -282,6 +293,16 @@ module.exports = { ARTIFACT_OF_CONTROL: { name: 'Artifact of Control', rarity: 'legendary' }, PANDORAS_BOX: { name: "Pandora's Box", rarity: 'common' }, SHENS_REGALIA: { name: "Shen's Regalia", rarity: 'legendary' }, + CHUMMING_TALISMAN: { name: 'Chumming Talisman', rarity: 'uncommon' }, + ARCHAEOLOGIST_COMPASS: { name: 'Archaeologist\'s Compass', rarity: 'common' }, + TRAPPER_CREST: { name: 'Trapper Crest', rarity: 'common' }, + DRACONIC_TALISMAN: { name: 'Draconic Talisman', rarity: 'common' }, + DRACONIC_RING: { name: 'Draconic Ring', rarity: 'uncommon' }, + DRACONIC_ARTIFACT: { name: 'Draconic Artifact', rarity: 'epic' }, + ABICASE: { name: 'Abicase', rarity: 'rare' }, + GREAT_SPOOK_TALISMAN: { name: 'Great Spook Talisman', rarity: 'common' }, + GREAT_SPOOK_RING: { name: 'Great Spook Ring', rarity: 'uncommon' }, + GREAT_SPOOK_ARTIFACT: { name: 'Great Spook Artifact', rarity: 'rare' }, }, max_upgrade_talismans: { WEDDING_RING_9: { name: 'Legendary Ring of Love', rarity: 'legendary' }, @@ -323,7 +344,8 @@ module.exports = { SURVIVOR_CUBE: { name: 'Survivor Cube', rarity: 'rare' }, RED_CLAW_ARTIFACT: { name: 'Red Claw Artifact', rarity: 'epic' }, SEAL_OF_THE_FAMILY: { name: 'Seal of the Family', rarity: 'epic' }, - PARTY_HAT_CRAB: { name: 'Crab Hat of Celebration', rarity: 'special' }, + PARTY_HAT_CRAB: { name: 'Crab Hat of Celebration - 2020', rarity: 'special' }, + PARTY_HAT_CRAB_ANIMATED: { name: 'Crab Hat of Celebration - 2022', rarity: 'special' }, POTATO_TALISMAN: { name: 'Potato Talisman', rarity: 'common' }, EMERALD_RING: { name: 'Emerald Ring', rarity: 'uncommon' }, PERSONAL_COMPACTOR_7000: { name: 'Personal Compactor 7000', rarity: 'legendary' }, @@ -360,7 +382,7 @@ module.exports = { JUNGLE_AMULET: { name: 'Jungle Amulet', rarity: 'uncommon' }, POWER_ARTIFACT: { name: 'Artifact of Power', rarity: 'rare' }, NETHER_ARTIFACT: { name: 'Nether Artifact', rarity: 'epic' }, - BINGO_RING: { name: 'Bingo Ring', rarity: 'uncommon' }, + BINGO_ARTIFACT: { name: 'Bingo Artifact', rarity: 'rare' }, BURSTSTOPPER_ARTIFACT: { name: 'Burststopper Artifact', rarity: 'epic' }, INFERNAL_KUUDRA_CORE: { name: 'Infernal Kuudra Core', rarity: 'rare' }, JACOBUS_REGISTER: { name: 'Jacobus Register', rarity: 'legendary' }, @@ -371,5 +393,11 @@ module.exports = { ARTIFACT_OF_CONTROL: { name: 'Artifact of Control', rarity: 'legendary' }, PANDORAS_BOX: { name: "Pandora's Box", rarity: 'common' }, SHENS_REGALIA: { name: "Shen's Regalia", rarity: 'legendary' }, + CHUMMING_TALISMAN: { name: 'Chumming Talisman', rarity: 'uncommon' }, + ARCHAEOLOGIST_COMPASS: { name: 'Archaeologist\'s Compass', rarity: 'common' }, + TRAPPER_CREST: { name: 'Trapper Crest', rarity: 'common' }, + DRACONIC_ARTIFACT: { name: 'Draconic Artifact', rarity: 'epic' }, + ABICASE: { name: 'Abicase', rarity: 'rare' }, + GREAT_SPOOK_ARTIFACT: { name: 'Great Spook Artifact', rarity: 'rare' }, }, }; diff --git a/constants/trophyFishing.js b/constants/trophyFishing.js deleted file mode 100644 index 4ecc4d4..0000000 --- a/constants/trophyFishing.js +++ /dev/null @@ -1,94 +0,0 @@ -module.exports = { - allTrophyFish: { - BLOBFISH: 0, - BLOBFISH_BRONZE: 0, - BLOBFISH_SILVER: 0, - BLOBFISH_GOLD: 0, - BLOBFISH_DIAMOND: 0, - FLYFISH: 0, - FLYFISH_BRONZE: 0, - FLYFISH_SILVER: 0, - FLYFISH_GOLD: 0, - FLYFISH_DIAMOND: 0, - GOLDEN_FISH: 0, - GOLDEN_FISH_BRONZE: 0, - GOLDEN_FISH_SILVER: 0, - GOLDEN_FISH_GOLD: 0, - GOLDEN_FISH_DIAMOND: 0, - GUSHER: 0, - GUSHER_BRONZE: 0, - GUSHER_SILVER: 0, - GUSHER_GOLD: 0, - GUSHER_DIAMOND: 0, - KARATE_FISH: 0, - KARATE_FISH_BRONZE: 0, - KARATE_FISH_SILVER: 0, - KARATE_FISH_GOLD: 0, - KARATE_FISH_DIAMOND: 0, - LAVA_HORSE: 0, - LAVA_HORSE_BRONZE: 0, - LAVA_HORSE_SILVER: 0, - LAVA_HORSE_GOLD: 0, - LAVA_HORSE_DIAMOND: 0, - MANA_RAY: 0, - MANA_RAY_BRONZE: 0, - MANA_RAY_SILVER: 0, - MANA_RAY_GOLD: 0, - MANA_RAY_DIAMOND: 0, - MOLDFIN: 0, - MOLDFIN_BRONZE: 0, - MOLDFIN_SILVER: 0, - MOLDFIN_GOLD: 0, - MOLDFIN_DIAMOND: 0, - OBFUSCATED_FISH_1: 0, - OBFUSCATED_FISH_1_BRONZE: 0, - OBFUSCATED_FISH_1_SILVER: 0, - OBFUSCATED_FISH_1_GOLD: 0, - OBFUSCATED_FISH_1_DIAMOND: 0, - OBFUSCATED_FISH_2: 0, - OBFUSCATED_FISH_2_BRONZE: 0, - OBFUSCATED_FISH_2_SILVER: 0, - OBFUSCATED_FISH_2_GOLD: 0, - OBFUSCATED_FISH_2_DIAMOND: 0, - OBFUSCATED_FISH_3: 0, - OBFUSCATED_FISH_3_BRONZE: 0, - OBFUSCATED_FISH_3_SILVER: 0, - OBFUSCATED_FISH_3_GOLD: 0, - OBFUSCATED_FISH_3_DIAMOND: 0, - SKELETON_FISH: 0, - SKELETON_FISH_BRONZE: 0, - SKELETON_FISH_SILVER: 0, - SKELETON_FISH_GOLD: 0, - SKELETON_FISH_DIAMOND: 0, - SLUGFISH: 0, - SLUGFISH_BRONZE: 0, - SLUGFISH_SILVER: 0, - SLUGFISH_GOLD: 0, - SLUGFISH_DIAMOND: 0, - SOUL_FISH: 0, - SOUL_FISH_BRONZE: 0, - SOUL_FISH_SILVER: 0, - SOUL_FISH_GOLD: 0, - SOUL_FISH_DIAMOND: 0, - STEAMING_HOT_FLOUNDER: 0, - STEAMING_HOT_FLOUNDER_BRONZE: 0, - STEAMING_HOT_FLOUNDER_SILVER: 0, - STEAMING_HOT_FLOUNDER_GOLD: 0, - STEAMING_HOT_FLOUNDER_DIAMOND: 0, - SULPHUR_SKITTER: 0, - SULPHUR_SKITTER_BRONZE: 0, - SULPHUR_SKITTER_SILVER: 0, - SULPHUR_SKITTER_GOLD: 0, - SULPHUR_SKITTER_DIAMOND: 0, - VANILLE: 0, - VANILLE_BRONZE: 0, - VANILLE_SILVER: 0, - VANILLE_GOLD: 0, - VANILLE_DIAMOND: 0, - VOLCANIC_STONEFISH: 0, - VOLCANIC_STONEFISH_BRONZE: 0, - VOLCANIC_STONEFISH_SILVER: 0, - VOLCANIC_STONEFISH_GOLD: 0, - VOLCANIC_STONEFISH_DIAMOND: 0, - } -}; diff --git a/constants/xp_tables.js b/constants/xp_tables.js index fe0ccf3..01284a1 100644 --- a/constants/xp_tables.js +++ b/constants/xp_tables.js @@ -33,15 +33,20 @@ module.exports = { }, pets: [ //Credit: https://github.com/SkyCryptWebsite/SkyCrypt/blob/master/src/constants/pets.js - 100, 110, 120, 130, 145, 160, 175, 190, 210, 230, 250, 275, 300, 330, 360, 400, 440, 490, 540, 600, 660, 730, 800, 880, 960, 1050, 1150, 1260, 1380, 1510, 1650, 1800, 1960, 2130, 2310, 2500, 2700, 2920, - 3160, 3420, 3700, 4000, 4350, 4750, 5200, 5700, 6300, 7000, 7800, 8700, 9700, 10800, 12000, 13300, 14700, 16200, 17800, 19500, 21300, 23200, 25200, 27400, 29800, 32400, 35200, 38200, 41400, 44800, 48400, - 52200, 56200, 60400, 64800, 69400, 74200, 79200, 84700, 90700, 97200, 104200, 111700, 119700, 128200, 137200, 146700, 156700, 167700, 179700, 192700, 206700, 221700, 237700, 254700, 272700, 291700, 311700, - 333700, 357700, 383700, 411700, 441700, 476700, 516700, 561700, 611700, 666700, 726700, 791700, 861700, 936700, 1016700, 1101700, 1191700, 1286700, 1386700, 1496700, 1616700, 1746700, 1886700, - // Values below for above level 100 (legendary) are just guessed - 0, 1, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, - 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 100, 110, 120, 130, 145, 160, 175, 190, 210, 230, 250, 275, 300, 330, 360, 400, 440, 490, 540, 600, 660, 730, 800, + 880, 960, 1050, 1150, 1260, 1380, 1510, 1650, 1800, 1960, 2130, 2310, 2500, 2700, 2920, 3160, 3420, 3700, 4000, 4350, + 4750, 5200, 5700, 6300, 7000, 7800, 8700, 9700, 10800, 12000, 13300, 14700, 16200, 17800, 19500, 21300, 23200, 25200, + 27400, 29800, 32400, 35200, 38200, 41400, 44800, 48400, 52200, 56200, 60400, 64800, 69400, 74200, 79200, 84700, 90700, + 97200, 104200, 111700, 119700, 128200, 137200, 146700, 156700, 167700, 179700, 192700, 206700, 221700, 237700, 254700, + 272700, 291700, 311700, 333700, 357700, 383700, 411700, 441700, 476700, 516700, 561700, 611700, 666700, 726700, + 791700, 861700, 936700, 1016700, 1101700, 1191700, 1286700, 1386700, 1496700, 1616700, 1746700, 1886700, 0, 5555, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, + 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, 1886700, ], }; diff --git a/data/collections.json b/data/collections.json index 54f5d55..f4516e8 100644 --- a/data/collections.json +++ b/data/collections.json @@ -135,7 +135,7 @@ "name": "Raw Chicken", "id": "RAW_CHICKEN", "category": "FARMING", - "maxTiers": 9, + "maxTiers": 10, "tiers": [ { "tier": 1, @@ -172,6 +172,10 @@ { "tier": 9, "amountRequired": 50000 + }, + { + "tier": 10, + "amountRequired": 100000 } ] }, @@ -939,6 +943,54 @@ } ] }, + { + "name": "Mycelium", + "id": "MYCEL", + "category": "MINING", + "maxTiers": 10, + "tiers": [ + { + "tier": 1, + "amountRequired": 50 + }, + { + "tier": 2, + "amountRequired": 500 + }, + { + "tier": 3, + "amountRequired": 750 + }, + { + "tier": 4, + "amountRequired": 1000 + }, + { + "tier": 5, + "amountRequired": 2500 + }, + { + "tier": 6, + "amountRequired": 10000 + }, + { + "tier": 7, + "amountRequired": 15000 + }, + { + "tier": 8, + "amountRequired": 25000 + }, + { + "tier": 9, + "amountRequired": 50000 + }, + { + "tier": 10, + "amountRequired": 100000 + } + ] + }, { "name": "End Stone", "id": "ENDER_STONE", @@ -1319,7 +1371,7 @@ "name": "Glowstone Dust", "id": "GLOWSTONE_DUST", "category": "MINING", - "maxTiers": 9, + "maxTiers": 7, "tiers": [ { "tier": 1, @@ -1331,31 +1383,23 @@ }, { "tier": 3, - "amountRequired": 250 - }, - { - "tier": 4, "amountRequired": 1000 }, { - "tier": 5, + "tier": 4, "amountRequired": 2500 }, { - "tier": 6, + "tier": 5, "amountRequired": 5000 }, { - "tier": 7, + "tier": 6, "amountRequired": 10000 }, { - "tier": 8, + "tier": 7, "amountRequired": 25000 - }, - { - "tier": 9, - "amountRequired": 50000 } ] }, @@ -1571,6 +1615,46 @@ } ] }, + { + "name": "Red Sand", + "id": "SAND:1", + "category": "MINING", + "maxTiers": 8, + "tiers": [ + { + "tier": 1, + "amountRequired": 50 + }, + { + "tier": 2, + "amountRequired": 500 + }, + { + "tier": 3, + "amountRequired": 2500 + }, + { + "tier": 4, + "amountRequired": 10000 + }, + { + "tier": 5, + "amountRequired": 15000 + }, + { + "tier": 6, + "amountRequired": 25000 + }, + { + "tier": 7, + "amountRequired": 50000 + }, + { + "tier": 8, + "amountRequired": 100000 + } + ] + }, { "name": "Ice", "id": "ICE", @@ -1619,6 +1703,50 @@ } ] }, + { + "name": "Sulphur", + "id": "SULPHUR_ORE", + "category": "MINING", + "maxTiers": 9, + "tiers": [ + { + "tier": 1, + "amountRequired": 200 + }, + { + "tier": 2, + "amountRequired": 1000 + }, + { + "tier": 3, + "amountRequired": 2500 + }, + { + "tier": 4, + "amountRequired": 5000 + }, + { + "tier": 5, + "amountRequired": 10000 + }, + { + "tier": 6, + "amountRequired": 15000 + }, + { + "tier": 7, + "amountRequired": 25000 + }, + { + "tier": 8, + "amountRequired": 50000 + }, + { + "tier": 9, + "amountRequired": 100000 + } + ] + }, { "name": "Netherrack", "id": "NETHERRACK", @@ -1691,6 +1819,50 @@ } ] }, + { + "name": "Chili Pepper", + "id": "CHILI_PEPPER", + "category": "COMBAT", + "maxTiers": 9, + "tiers": [ + { + "tier": 1, + "amountRequired": 10 + }, + { + "tier": 2, + "amountRequired": 25 + }, + { + "tier": 3, + "amountRequired": 75 + }, + { + "tier": 4, + "amountRequired": 250 + }, + { + "tier": 5, + "amountRequired": 1000 + }, + { + "tier": 6, + "amountRequired": 2500 + }, + { + "tier": 7, + "amountRequired": 5000 + }, + { + "tier": 8, + "amountRequired": 10000 + }, + { + "tier": 9, + "amountRequired": 20000 + } + ] + }, { "name": "Slimeball", "id": "SLIME_BALL", @@ -1739,7 +1911,7 @@ "name": "Magma Cream", "id": "MAGMA_CREAM", "category": "COMBAT", - "maxTiers": 9, + "maxTiers": 8, "tiers": [ { "tier": 1, @@ -1747,34 +1919,30 @@ }, { "tier": 2, - "amountRequired": 100 - }, - { - "tier": 3, "amountRequired": 250 }, { - "tier": 4, + "tier": 3, "amountRequired": 1000 }, { - "tier": 5, + "tier": 4, "amountRequired": 2500 }, { - "tier": 6, + "tier": 5, "amountRequired": 5000 }, { - "tier": 7, + "tier": 6, "amountRequired": 10000 }, { - "tier": 8, + "tier": 7, "amountRequired": 25000 }, { - "tier": 9, + "tier": 8, "amountRequired": 50000 } ] @@ -1783,7 +1951,7 @@ "name": "Ghast Tear", "id": "GHAST_TEAR", "category": "COMBAT", - "maxTiers": 9, + "maxTiers": 7, "tiers": [ { "tier": 1, @@ -1791,35 +1959,27 @@ }, { "tier": 2, - "amountRequired": 100 - }, - { - "tier": 3, "amountRequired": 250 }, { - "tier": 4, + "tier": 3, "amountRequired": 1000 }, { - "tier": 5, + "tier": 4, "amountRequired": 2500 }, { - "tier": 6, + "tier": 5, "amountRequired": 5000 }, { - "tier": 7, + "tier": 6, "amountRequired": 10000 }, { - "tier": 8, + "tier": 7, "amountRequired": 25000 - }, - { - "tier": 9, - "amountRequired": 50000 } ] }, @@ -2011,7 +2171,7 @@ "name": "Blaze Rod", "id": "BLAZE_ROD", "category": "COMBAT", - "maxTiers": 9, + "maxTiers": 8, "tiers": [ { "tier": 1, @@ -2019,34 +2179,30 @@ }, { "tier": 2, - "amountRequired": 100 - }, - { - "tier": 3, "amountRequired": 250 }, { - "tier": 4, + "tier": 3, "amountRequired": 1000 }, { - "tier": 5, + "tier": 4, "amountRequired": 2500 }, { - "tier": 6, + "tier": 5, "amountRequired": 5000 }, { - "tier": 7, + "tier": 6, "amountRequired": 10000 }, { - "tier": 8, + "tier": 7, "amountRequired": 25000 }, { - "tier": 9, + "tier": 8, "amountRequired": 50000 } ] @@ -2440,7 +2596,7 @@ ] }, { - "name": "Ink Sack", + "name": "Ink Sac", "id": "INK_SACK", "category": "FISHING", "maxTiers": 9, @@ -2663,6 +2819,62 @@ } ] }, + { + "name": "Magmafish", + "id": "MAGMA_FISH", + "category": "FISHING", + "maxTiers": 12, + "tiers": [ + { + "tier": 1, + "amountRequired": 20 + }, + { + "tier": 2, + "amountRequired": 100 + }, + { + "tier": 3, + "amountRequired": 500 + }, + { + "tier": 4, + "amountRequired": 1000 + }, + { + "tier": 5, + "amountRequired": 5000 + }, + { + "tier": 6, + "amountRequired": 15000 + }, + { + "tier": 7, + "amountRequired": 30000 + }, + { + "tier": 8, + "amountRequired": 50000 + }, + { + "tier": 9, + "amountRequired": 75000 + }, + { + "tier": 10, + "amountRequired": 100000 + }, + { + "tier": 11, + "amountRequired": 250000 + }, + { + "tier": 12, + "amountRequired": 500000 + } + ] + }, { "name": "Prismarine Crystals", "id": "PRISMARINE_CRYSTALS", diff --git a/data/prices.json b/data/prices.json index 648b8ae..6b16270 100644 --- a/data/prices.json +++ b/data/prices.json @@ -1,14822 +1,17098 @@ { - "cheap_tuxedo_leggings": { - "price": 200000, - "name": "Cheap Tuxedo Pants" - }, - "spooky_pie": { - "price": 50000, - "name": "Spooky Pie" - }, - "young_dragon_helmet": { - "price": 135000, - "name": "Young Dragon Helmet" - }, - "young_dragon_helmet_skin_young_shimmer": { - "price": 60000000, - "name": "Young Dragon Helmet" - }, - "young_dragon_helmet_skin_young_baby": { - "price": 888888888, - "name": "Young Dragon Helmet" - }, - "enchanted_book": { - "price": 20000, - "name": "Enchanted Book" - }, - "braided_griffin_feather": { - "price": 13200000, - "name": "Braided Griffin Feather" - }, - "wise_shimmer": { - "price": 28000000, - "name": "Shimmer Skin" - }, - "pet_skin_dragon_pastel": { - "price": 13400000, - "name": "Pastel Ender Dragon Skin" - }, - "talisman_enrichment_swapper": { - "price": 90000, - "name": "Accessory Enrichment Swapper" - }, - "treasure_artifact": { - "price": 31000000, - "name": "Treasure Artifact" - }, - "pet_skin_sheep_neon_blue": { - "price": 229000000, - "name": "Neon Blue Sheep Skin" - }, - "talisman_enrichment_attack_speed": { - "price": 1997000, - "name": "Attack Speed Enrichment" - }, - "mender_fedora": { - "price": 400000, - "name": "Mender Fedora" - }, - "corleonite": { - "price": 1190000, - "name": "Corleonite" - }, - "zombie_knight_leggings": { - "price": 20000, - "name": "Zombie Knight Leggings" - }, - "new_year_cake": { - "price": 200000, - "name": "New Year Cake" - }, - "starred_shadow_assassin_helmet": { - "price": 2400000, - "name": "Fierce Shadow Assassin Helmet" - }, - "starred_shadow_assassin_helmet_skin_shadow_assassin_crimson": { - "price": 12500000, - "name": "Fierce Shadow Assassin Helmet" - }, - "starred_shadow_assassin_helmet_skin_shadow_assassin_mauve": { - "price": 10650000, - "name": "Fierce Shadow Assassin Helmet" - }, - "starred_shadow_assassin_helmet_skin_shadow_assassin_admiral": { - "price": 10750000, - "name": "Fierce Shadow Assassin Helmet" - }, - "zombie_brain_mixin": { - "price": 200000, - "name": "Zombie Brain Mixin" - }, - "dark_orb": { - "price": 1792790, - "name": "Dark Orb" - }, - "artifact_potion_affinity": { - "price": 100000, - "name": "Potion Affinity Artifact" - }, - "necromancer_lord_leggings": { - "price": 3800000, - "name": "Necromancer Lord Leggings" - }, - "gold_sadan_head": { - "price": 2700000, - "name": "Golden Sadan Head" - }, - "runaans_bow": { - "price": 385000, - "name": "Runaan's Bow" - }, - "ultimate_carrot_candy": { - "price": 1430000, - "name": "Ultimate Carrot Candy" - }, - "unstable_dragon_leggings": { - "price": 160000, - "name": "Unstable Dragon Leggings" - }, - "turbo_warts_3": { - "price": 345000, - "name": "Turbo Warts 3" - }, - "ultimate_bank_5": { - "price": 80000, - "name": "Ultimate Bank 5" - }, - "bottle_of_jyrre": { - "price": 150, - "name": "Bottle Of Jyrre" - }, - "giant_fragment_laser": { - "price": 400000, - "name": "L.a.s.r.'s Eye" - }, - "giant_killer_6": { - "price": 1500000, - "name": "Killer 6" - }, - "lvl_1_uncommon_pig": { - "price": 50000, - "name": "Uncommon Pig" - }, - "heavy_helmet": { - "price": 5038, - "name": "So Heavy Helmet" - }, - "sorrow_chestplate": { - "price": 12000000, - "name": "Sorrow Chestplate" - }, - "starlight_helmet": { - "price": 50000, - "name": "Starlight Helmet" - }, - "tarantula_boots": { - "price": 750000, - "name": "Tarantula Boots" - }, - "large_enchanted_chest": { - "price": 350000, - "name": "Large Storage" - }, - "skeletor_chestplate": { - "price": 10036, - "name": "Skeletor Chestplate" - }, - "fairy_leggings": { - "price": 25000, - "name": "Fairy's Trousers" - }, - "tank_wither_boots": { - "price": 2000000, - "name": "Goldor's Boots" - }, - "pet_skin_elephant_monochrome": { - "price": 19000000, - "name": "Monochrome Elephant Skin" - }, - "starred_shadow_assassin_leggings": { - "price": 4600000, - "name": "Fierce Shadow Assassin Leggings" - }, - "zombie_soldier_boots": { - "price": 5555, - "name": "Zombie Soldier Boots" - }, - "beastmaster_crest_common": { - "price": 244000, - "name": "Beastmaster Crest" - }, - "gemstone_drill_2": { - "price": 6200000, - "name": "Gemstone Drill Lt-522" - }, - "superior_dragon_chestplate": { - "price": 8479900, - "name": "Superior Dragon Chestplate" - }, - "lvl_1_rare_enderman": { - "price": 2900, - "name": "Rare Enderman" - }, - "sharpness_6": { - "price": 2900000, - "name": "Sharpness 6" - }, - "lvl_1_common_elephant": { - "price": 70000, - "name": "Common Elephant" - }, - "pet_skin_squid_glow": { - "price": 21000000, - "name": "Glow Squid Skin" - }, - "lvl_1_legendary_bat": { - "price": 999988, - "name": "Bat" - }, - "pet_item_saddle": { - "price": 100000, - "name": "Saddle" - }, - "shark_scale_helmet": { - "price": 550000, - "name": "Shark Scale Helmet" - }, - "holy_dragon_chestplate": { - "price": 155000, - "name": "Holy Dragon Chestplate" - }, - "starred_bonzo_mask": { - "price": 1000000, - "name": "Titanic Bonzo's Mask" - }, - "crypt_dreadlord_sword": { - "price": 5280, - "name": "Dreadlord Sword" - }, - "pet_skin_hound_beagle": { - "price": 11000000, - "name": "Beagle Hound Skin" - }, - "young_dragon_chestplate": { - "price": 217000, - "name": "Young Dragon Chestplate" - }, - "looting_4": { - "price": 249000, - "name": "Looting 4" - }, - "scythe_blade": { - "price": 3000000, - "name": "Scythe Blade" - }, - "vampire_witch_mask": { - "price": 4000000, - "name": "Vampire Witch Mask" - }, - "glacite_jewel": { - "price": 70000, - "name": "Glacite Jewel" - }, - "pet": { - "price": 5000, - "name": "Enderman" - }, - "digested_mosquito": { - "price": 400000, - "name": "Digested Mosquito" - }, - "lvl_1_epic_enderman": { - "price": 76000, - "name": "Enderman" - }, - "god_potion_2": { - "price": 500000, - "name": "God Potion" - }, - "end_boots": { - "price": 68000, - "name": "Ender Boots" - }, - "great_spook_leggings": { - "price": 599000, - "name": "Great Spook Leggings" - }, - "wither_blood": { - "price": 2482504, - "name": "Wither Blood" - }, - "aatrox_batphone": { - "price": 550000, - "name": "Maddox Batphone" - }, - "protector_dragon_chestplate": { - "price": 150000, - "name": "Protector Dragon Chestplate" - }, - "titanium_drill_1": { - "price": 12000000, - "name": "Titanium Drill Dr-x355" - }, - "red_claw_talisman": { - "price": 39000, - "name": "Red Claw Talisman" - }, - "minion_storage_expander": { - "price": 610000, - "name": "Minion Storage X-pender" - }, - "master_skull_tier_3": { - "price": 2500000, - "name": "Master Skull - Tier 3" - }, - "lvl_1_epic_magma_cube": { - "price": 99000, - "name": "Magma Cube" - }, - "dragon_scale": { - "price": 14247, - "name": "Dragon Scale" - }, - "crystal_fragment": { - "price": 60000, - "name": "Crystal Fragment" - }, - "lvl_1_legendary_rabbit": { - "price": 598000, - "name": "Rabbit" - }, - "remnant_of_the_eye": { - "price": 30000, - "name": "Remnant Of The Eye" - }, - "ultimate_swarm_1": { - "price": 488000, - "name": "Ultimate Swarm 1" - }, - "goblin_chestplate": { - "price": 5000, - "name": "Goblin Chestplate" - }, - "lvl_100_legendary_hound": { - "price": 38000000, - "name": "Hound" - }, - "lvl_100_legendary_hound_skin_hound_beagle": { - "price": 50000000, - "name": "Hound" - }, - "lvl_1_epic_pigman": { - "price": 400000, - "name": "Pigman" - }, - "rejuvenate_5": { - "price": 1450000, - "name": "Rejuvenate 5" - }, - "frozen_scythe": { - "price": 8250000, - "name": "Frozen Scythe" - }, - "counter_strike_5": { - "price": 68800000, - "name": "Counter Strike 5" - }, - "super_magic_mushroom_soup": { - "price": 12000, - "name": "Mystical Mushroom Soup" - }, - "sorrow_leggings": { - "price": 9600000, - "name": "Sorrow Leggings" - }, - "tank_wither_chestplate": { - "price": 21800000, - "name": "Goldor's Chestplate" - }, - "jungle_key": { - "price": 60000, - "name": "Jungle Key" - }, - "golem_sword": { - "price": 550000, - "name": "Golem Sword" - }, - "alpha_pick": { - "price": 4800000, - "name": "Pioneer Pickaxe" - }, - "flower_of_truth": { - "price": 3775000, - "name": "Flower Of Truth" - }, - "ultimate_legion_1": { - "price": 1450000, - "name": "Ultimate Legion 1" - }, - "grizzly_bait": { - "price": 560000, - "name": "Grizzly Bait" - }, - "end_stone_bow": { - "price": 5000, - "name": "End Stone Bow" - }, - "power_wither_leggings": { - "price": 14700000, - "name": "Shiny Necron's Leggings" - }, - "ultimate_wise_4": { - "price": 1950000, - "name": "Wise 4" - }, - "shadow_goggles": { - "price": 700000, - "name": "Shadow Goggles" - }, - "stonk_pickaxe": { - "price": 500000, - "name": "Stonk" - }, - "ftx_3070": { - "price": 59999, - "name": "Ftx 3070" - }, - "pickonimbus": { - "price": 420000, - "name": "Pickonimbus 2000" - }, - "tarantula_leggings": { - "price": 340000, - "name": "Tarantula Leggings" - }, - "lvl_1_rare_lion": { - "price": 900000, - "name": "Rare Lion" - }, - "midas_sword": { - "price": 4000000, - "name": "Midas' Sword" - }, - "cultivating_1": { - "price": 1500000, - "name": "Cultivating 1" - }, - "hyper_catalyst_upgrade": { - "price": 99000, - "name": "Hyper Catalyst Upgrade" - }, - "gemstone_drill_4": { - "price": 12800000, - "name": "Jasper Drill X" - }, - "lvl_1_rare_rabbit": { - "price": 30000, - "name": "Rare Rabbit" - }, - "farming_for_dummies": { - "price": 1900000, - "name": "Farming For Dummies" - }, - "wither_boots": { - "price": 1699999, - "name": "Wither Boots" - }, - "aspect_of_the_end": { - "price": 142000, - "name": "Aspect Of The End" - }, - "pigman_sword": { - "price": 9699900, - "name": "Pigman Sword" - }, - "bonzo_fragment": { - "price": 5000, - "name": "Bonzo Fragment" - }, - "wither_chestplate": { - "price": 19998000, - "name": "Wither Chestplate" - }, - "superlite_motor": { - "price": 50000, - "name": "Superlite Motor" - }, - "scarf_fragment": { - "price": 1000, - "name": "Scarf Fragment" - }, - "smite_7": { - "price": 1790000, - "name": "Smite 7" - }, - "book_of_stats": { - "price": 130000, - "name": "Book Of Stats" - }, - "final_destination_helmet": { - "price": 750000, - "name": "Final Destination Helmet" - }, - "old_dragon_helmet": { - "price": 130000, - "name": "Old Dragon Helmet" - }, - "old_dragon_helmet_skin_old_baby": { - "price": 642042042, - "name": "Old Dragon Helmet" - }, - "old_dragon_helmet_skin_old_shimmer": { - "price": 74077000, - "name": "Old Dragon Helmet" - }, - "pet_item_textbook": { - "price": 470000, - "name": "Textbook" - }, - "ultimate_legion_4": { - "price": 13150000, - "name": "Ultimate Legion 4" - }, - "summoning_ring": { - "price": 11700000, - "name": "Summoning Ring" - }, - "gold_livid_head": { - "price": 470000, - "name": "Golden Livid Head" - }, - "lvl_1_legendary_giraffe": { - "price": 7590000, - "name": "Giraffe" - }, - "starred_shadow_assassin_boots": { - "price": 1799000, - "name": "Shadow Assassin Boots" - }, - "experience_4": { - "price": 465000, - "name": "Experience 4" - }, - "creeper_leggings": { - "price": 549000, - "name": "Creeper Pants" - }, - "petrified_starfall": { - "price": 68998, - "name": "Petrified Starfall" - }, - "titan_killer_6": { - "price": 70000, - "name": "Titan Killer 6" - }, - "skeleton_grunt_leggings": { - "price": 9500, - "name": "Skeleton Grunt Leggings" - }, - "minos_relic": { - "price": 33000000, - "name": "Minos Relic" - }, - "titanium_relic": { - "price": 11780000, - "name": "Titanium Relic" - }, - "power_wither_boots": { - "price": 9610000, - "name": "Necron's Boots" - }, - "bits_talisman": { - "price": 4690000, - "name": "Bits Talisman" - }, - "giant_fragment_boulder": { - "price": 500, - "name": "Jolly Pink Rock" - }, - "enderman_cortex_rewriter": { - "price": 80000, - "name": "Enderman Cortex Rewriter" - }, - "wither_goggles": { - "price": 5100000, - "name": "Wither Goggles" - }, - "kat_flower": { - "price": 175000, - "name": "Kat Flower" - }, - "cake_soul": { - "price": 2987000, - "name": "Zehnmaster23" - }, - "personal_compactor_4000": { - "price": 620000, - "name": "Personal Compactor 4000" - }, - "decent_coffee": { - "price": 17500, - "name": "Decent Coffee" - }, - "nether_fortress_boss_travel_scroll": { - "price": 1200000, - "name": "Dusty Travel Scroll To The Kuudra Skull" - }, - "builders_wand": { - "price": 4199000, - "name": "Builder's Wand" - }, - "antique_remedies": { - "price": 20000, - "name": "Antique Remedies" - }, - "true_protection_1": { - "price": 950000, - "name": "True Protection 1" - }, - "young_dragon_boots": { - "price": 123000, - "name": "Young Dragon Boots" - }, - "reaper_chestplate": { - "price": 4699000, - "name": "Reaper Chestplate" - }, - "second_master_star": { - "price": 22300000, - "name": "Second Master Star" - }, - "dragon_horn": { - "price": 7176497, - "name": "Dragon Horn" - }, - "treecapitator_axe": { - "price": 1795000, - "name": "Treecapitator" - }, - "tank_miner_leggings": { - "price": 3016, - "name": "Miner Leggings" - }, - "lvl_1_uncommon_monkey": { - "price": 100000, - "name": "Uncommon Monkey" - }, - "bone_boomerang": { - "price": 4500000, - "name": "Bonemerang" - }, - "wise_wither_leggings": { - "price": 11949000, - "name": "Storm's Leggings" - }, - "voidedge_katana": { - "price": 645000, - "name": "Voidedge Katana" - }, - "tank_wither_helmet": { - "price": 3150000, - "name": "Goldor's Helmet" - }, - "beastmaster_crest_rare": { - "price": 2999998, - "name": "Beastmaster Crest" - }, - "lvl_100_legendary_baby_yeti": { - "price": 39999998, - "name": "Baby Yeti" - }, - "lvl_100_legendary_baby_yeti_skin_yeti_grown_up": { - "price": 143333333, - "name": "Baby Yeti" - }, - "lvl_100_legendary_baby_yeti_skin_yeti_grown_up_candy_10": { - "price": 99960000, - "name": "Baby Yeti" - }, - "red_claw_artifact": { - "price": 6449000, - "name": "Red Claw Artifact" - }, - "bat_artifact": { - "price": 1270000, - "name": "Bat Artifact" - }, - "pet_item_exp_share": { - "price": 1398000, - "name": "Exp Share" - }, - "experience_artifact": { - "price": 454000, - "name": "Experience Artifact" - }, - "emerald_blade": { - "price": 380000, - "name": "Emerald Blade" - }, - "pet_skin_rock_cool": { - "price": 330000000, - "name": "Cool Rock Skin" - }, - "overflux_power_orb": { - "price": 74000000, - "name": "Overflux Power Orb" - }, - "washed_up_souvenir": { - "price": 500000, - "name": "Washed-up Souvenir" - }, - "starred_shadow_assassin_chestplate": { - "price": 19300000, - "name": "Fierce Shadow Assassin Chestplate" - }, - "rod_of_the_sea": { - "price": 7500000, - "name": "Rod Of The Sea" - }, - "superior_dragon_boots": { - "price": 4197900, - "name": "Dragon Boots" - }, - "sorrow": { - "price": 475000, - "name": "Sorrow" - }, - "overload_1": { - "price": 849000, - "name": "Overload 1" - }, - "deep_sea_orb": { - "price": 6999998, - "name": "Deep Sea Orb" - }, - "drill_engine": { - "price": 2600000, - "name": "Drill Engine" - }, - "juju_shortbow": { - "price": 20600000, - "name": "Juju Shortbow" - }, - "starred_adaptive_boots": { - "price": 225000, - "name": "Fierce Adaptive Boots" - }, - "gemstone_mixture": { - "price": 940000, - "name": "Gemstone Mixture" - }, - "kismet_feather": { - "price": 400000, - "name": "Kismet Feather" - }, - "daedalus_axe": { - "price": 57999999, - "name": "Daedalus Axe" - }, - "tank_wither_leggings": { - "price": 7590000, - "name": "Goldor's Leggings" - }, - "zombie_ring": { - "price": 35000, - "name": "Zombie Ring" - }, - "divan_fragment": { - "price": 469000, - "name": "Divan Fragment" - }, - "wise_dragon_boots": { - "price": 890000, - "name": "Wise Dragon Boots" - }, - "repelling_candle": { - "price": 38999, - "name": "Repelling Candle" - }, - "sorrow_boots": { - "price": 5500000, - "name": "Sorrow Boots" - }, - "superb_carrot_candy": { - "price": 1240000, - "name": "Superb Carrot Candy" - }, - "livid_fragment": { - "price": 50000, - "name": "Livid Fragment" - }, - "speed_wither_leggings": { - "price": 7700000, - "name": "Maxor's Leggings" - }, - "smarty_pants_5": { - "price": 11400000, - "name": "Smarty Pants 5" - }, - "dwarf_turtle_shelmet": { - "price": 3300000, - "name": "Dwarf Turtle Shelmet" - }, - "titanium_drill_3": { - "price": 113199900, - "name": "Titanium Drill Dr-x555" - }, - "tank_miner_chestplate": { - "price": 4000, - "name": "Miner Chestplate" - }, - "tarantula_helmet": { - "price": 550000, - "name": "Tarantula Helmet" - }, - "tarantula_helmet_skin_tarantula_black_widow": { - "price": 75000000, - "name": "Tarantula Helmet" - }, - "foraging_1_travel_scroll": { - "price": 195000, - "name": "Travel Scroll To The Park" - }, - "necromancer_lord_chestplate": { - "price": 9900000, - "name": "Necromancer Lord Chestplate" - }, - "phantom_rod": { - "price": 999000, - "name": "Phantom Rod" - }, - "lvl_1_legendary_ammonite": { - "price": 898000, - "name": "Ammonite" - }, - "skeletor_helmet": { - "price": 10036, - "name": "Skeletor Helmet" - }, - "wood_singularity": { - "price": 4500000, - "name": "Wood Singularity" - }, - "lvl_1_epic_wolf": { - "price": 499000, - "name": "Wolf" - }, - "glacite_leggings": { - "price": 55000, - "name": "Glacite Leggings" - }, - "blood_god_crest": { - "price": 5990000, - "name": "Blood God Crest" - }, - "prehistoric_egg": { - "price": 69000, - "name": "Prehistoric Egg" - }, - "old_baby": { - "price": 200000000, - "name": "Baby Skin" - }, - "necromancer_lord_boots": { - "price": 1200000, - "name": "Necromancer Lord Boots" - }, - "starred_adaptive_leggings": { - "price": 350000, - "name": "Fierce Adaptive Leggings" - }, - "protector_dragon_boots": { - "price": 160000, - "name": "Protector Dragon Boots" - }, - "aspect_of_the_dragon": { - "price": 349998, - "name": "Aspect Of The Dragons" - }, - "endstone_rose": { - "price": 3000, - "name": "Endstone Rose" - }, - "overload_3": { - "price": 3690000, - "name": "Overload 3" - }, - "power_wither_chestplate": { - "price": 28390000, - "name": "Necron's Chestplate" - }, - "pet_item_vampire_fang": { - "price": 630000, - "name": "Vampire Fang" - }, - "ember_helmet": { - "price": 265000, - "name": "Ember Helmet" - }, - "pet_skin_parrot_gold_macaw": { - "price": 11900000, - "name": "Gold Macaw Parrot Skin" - }, - "power_wither_helmet": { - "price": 11290000, - "name": "Necron's Helmet" - }, - "emerald_armor_leggings": { - "price": 2389000, - "name": "Emerald Armor Leggings" - }, - "mining_2_portal": { - "price": 98000, - "name": "Portal To The Deep Caverns" - }, - "starred_venoms_touch": { - "price": 1000000, - "name": "Deadly Venom's Touch" - }, - "diamond_spreading": { - "price": 9998, - "name": "Diamond Spreading" - }, - "sugar_rush_3": { - "price": 2498000, - "name": "Sugar Rush 3" - }, - "skeleton_grunt_boots": { - "price": 10000, - "name": "Skeleton Grunt Boots" - }, - "armor_of_yog_chestplate": { - "price": 700000, - "name": "Yog Chestplate" - }, - "livid_dagger": { - "price": 7300000, - "name": "Livid Dagger" - }, - "pet_skin_enderman_slayer": { - "price": 498000, - "name": "Void Conqueror Enderman Skin" - }, - "aspect_of_the_void": { - "price": 7500000, - "name": "Aspect Of The Void" - }, - "bat_person_chestplate": { - "price": 500000, - "name": "Bat Person Chestplate" - }, - "expertise_1": { - "price": 1350000, - "name": "Expertise 1" - }, - "fuel_tank": { - "price": 299999, - "name": "Fuel Tank" - }, - "warden_helmet": { - "price": 185000000, - "name": "Warden Helmet" - }, - "lvl_1_rare_griffin": { - "price": 2950000, - "name": "Rare Griffin" - }, - "wither_shield_scroll": { - "price": 13000000, - "name": "Wither Shield" - }, - "wise_dragon_chestplate": { - "price": 889000, - "name": "Wise Dragon Chestplate" - }, - "speed_wither_chestplate": { - "price": 20999999, - "name": "Maxor's Chestplate" - }, - "giant_fragment_bigfoot": { - "price": 20000, - "name": "Bigfoot's Lasso" - }, - "speed_wither_boots": { - "price": 2349999, - "name": "Maxor's Boots" - }, - "lvl_1_common_dolphin": { - "price": 55000, - "name": "Common Dolphin" - }, - "critical_6": { - "price": 70000, - "name": "Critical 6" - }, - "superior_dragon_leggings": { - "price": 7540000, - "name": "Superior Dragon Leggings" - }, - "wither_leggings": { - "price": 6000000, - "name": "Wither Leggings" - }, - "pet_skin_ocelot_snow_tiger": { - "price": 7400000, - "name": "Snow Tiger Ocelot Skin" - }, - "silent_death": { - "price": 98765, - "name": "Silent Death" - }, - "perfect_chestplate_12": { - "price": 7000000, - "name": "Perfect Chestplate - Tier Xii" - }, - "danger_1_travel_scroll": { - "price": 400000, - "name": "Travel Scroll To Spider's Den" - }, - "wise_wither_boots": { - "price": 5900000, - "name": "Storm's Boots" - }, - "champ_rod": { - "price": 330000, - "name": "Rod Of Champions" - }, - "salmon_helmet_new": { - "price": 90000, - "name": "Salmon Helmet" - }, - "diamonite": { - "price": 1909998, - "name": "Diamonite" - }, - "happy_mask": { - "price": 50000, - "name": "Happy Mask" - }, - "skeleton_grunt_helmet": { - "price": 20000, - "name": "Skeleton Grunt Helmet" - }, - "nether_wart_island": { - "price": 498000, - "name": "Nether Wart Island" - }, - "spirit_mask": { - "price": 10000000, - "name": "Spirit Mask" - }, - "mineral_talisman": { - "price": 320000, - "name": "Mineral Talisman" - }, - "crown_of_greed": { - "price": 1100000, - "name": "Crown Of Greed" - }, - "armor_of_yog_helmet": { - "price": 580000, - "name": "Yog Helmet" - }, - "protection_7": { - "price": 24650000, - "name": "Protection 7" - }, - "reaper_mask": { - "price": 8999000, - "name": "Reaper Mask" - }, - "reaper_mask_skin_reaper_spirit": { - "price": 470000000, - "name": "Reaper Mask" - }, - "giant_tooth": { - "price": 450823, - "name": "Giant Tooth" - }, - "enchanted_hopper": { - "price": 1000000, - "name": "Enchanted Hopper" - }, - "enchanted_book_bundle_vicious": { - "price": 70000000, - "name": "Enchanted Book Bundle" - }, - "final_destination_leggings": { - "price": 890000, - "name": "Final Destination Leggings" - }, - "base_griffin_upgrade_stone": { - "price": 499000, - "name": "Base Griffin Upgrade Stone" - }, - "fairy_chestplate": { - "price": 9000, - "name": "Fairy's Polo" - }, - "turbo_potato_1": { - "price": 115000, - "name": "Turbo Potato 1" - }, - "turbo_carrot_3": { - "price": 240000, - "name": "Turbo Carrot 3" - }, - "honed_shark_tooth_necklace": { - "price": 50000, - "name": "Honed Shark Tooth Necklace" - }, - "mastiff_boots": { - "price": 450000, - "name": "Mastiff Boots" - }, - "griffin_upgrade_stone_rare": { - "price": 2370000, - "name": "Griffin Upgrade Stone" - }, - "midas_staff": { - "price": 38900000, - "name": "Midas Staff" - }, - "potion": { - "price": 15000, - "name": "Speed Vi Potion" - }, - "jumbo_backpack_upgrade": { - "price": 1600000, - "name": "Jumbo Backpack Upgrade" - }, - "xxlarge_enchanted_chest": { - "price": 1800000, - "name": "Xx-large Storage" - }, - "divan_leggings": { - "price": 17099000, - "name": "Leggings Of Divan" - }, - "replenish_1": { - "price": 1095000, - "name": "Replenish 1" - }, - "wither_cloak": { - "price": 4500000, - "name": "Wither Cloak Sword" - }, - "zombie_soldier_chestplate": { - "price": 5057, - "name": "Zombie Soldier Chestplate" - }, - "lvl_100_legendary_sheep": { - "price": 9500000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_black": { - "price": 1450000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_light_blue": { - "price": 697488000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_blue": { - "price": 358000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_yellow": { - "price": 200000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_green": { - "price": 210000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_red": { - "price": 196000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_white": { - "price": 749999999, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_red_candy_10": { - "price": 223000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_white_candy_10": { - "price": 599000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_neon_blue_candy_10": { - "price": 272000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_light_blue_candy_10": { - "price": 940000000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_pink": { - "price": 1199999998, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skin_sheep_purple": { - "price": 1350000000, - "name": "Sheep" - }, - "skeleton_soldier_leggings": { - "price": 5090, - "name": "Skeleton Soldier Leggings" - }, - "frozen_blaze_chestplate": { - "price": 9200000, - "name": "Frozen Blaze Chestplate" - }, - "lvl_1_common_monkey": { - "price": 55000, - "name": "Common Monkey" - }, - "lvl_1_uncommon_ocelot": { - "price": 590000, - "name": "Uncommon Ocelot" - }, - "pet_skin_monkey_gorilla": { - "price": 12400000, - "name": "Gorilla Monkey Skin" - }, - "jerry_staff": { - "price": 110000, - "name": "Jerry-chine Gun" - }, - "strong_dragon_chestplate": { - "price": 530000, - "name": "Strong Dragon Chestplate" - }, - "super_heavy_helmet": { - "price": 11999, - "name": "Super Heavy Helmet" - }, - "lvl_1_epic_golem": { - "price": 500000, - "name": "Golem" - }, - "party_hat_crab": { - "price": 14800000, - "name": "Yellow Crab Hat Of Celebration" - }, - "end_chestplate": { - "price": 45000, - "name": "Ender Chestplate" - }, - "prosecute_6": { - "price": 12100000, - "name": "Prosecute 6" - }, - "lvl_1_epic_blaze": { - "price": 5000000, - "name": "Blaze" - }, - "arachne_fragment": { - "price": 19000, - "name": "Arachne Fragment" - }, - "lvl_1_epic_mithril_golem": { - "price": 219000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_pig": { - "price": 19500000, - "name": "Pig" - }, - "necromancer_lord_helmet": { - "price": 299000, - "name": "Necromancer Lord Helmet" - }, - "sea_creature_artifact": { - "price": 300000, - "name": "Sea Creature Artifact" - }, - "pet_skin_silverfish_fossilized": { - "price": 27500000, - "name": "Fossilized Silverfish Skin" - }, - "personal_bank_item": { - "price": 50000, - "name": "Personal Bank Item" - }, - "music_pants": { - "price": 75000, - "name": "Stereo Pants" - }, - "vorpal_katana": { - "price": 6000000, - "name": "Vorpal Katana" - }, - "pet_item_flying_pig": { - "price": 170000, - "name": "Flying Pig" - }, - "shadow_warp_scroll": { - "price": 8400000, - "name": "Shadow Warp" - }, - "lvl_1_epic_blue_whale": { - "price": 1150000, - "name": "Blue Whale" - }, - "large_backpack": { - "price": 350000, - "name": "Large Backpack" - }, - "large_backpack_skin_enderpack": { - "price": 29000000, - "name": "Large Backpack" - }, - "pet_skin_wolf": { - "price": 24999000, - "name": "Dark Wolf Skin" - }, - "salmon_boots_new": { - "price": 35000, - "name": "Salmon Boots" - }, - "rotten_chestplate": { - "price": 5037, - "name": "Rotten Chestplate" - }, - "great_spook_chestplate": { - "price": 3000000, - "name": "Great Spook Chestplate" - }, - "vampirism_6": { - "price": 999000, - "name": "Vampirism 6" - }, - "lvl_100_legendary_bat": { - "price": 8490000, - "name": "Bat" - }, - "lvl_100_legendary_bat_skin_bat_vampire": { - "price": 40000000, - "name": "Bat" - }, - "lvl_100_legendary_bat_skin_bat_vampire_candy_10": { - "price": 26000000, - "name": "Bat" - }, - "lvl_1_epic_bee": { - "price": 666000, - "name": "Bee" - }, - "stone_blade": { - "price": 495000, - "name": "Adaptive Blade" - }, - "titanium_ring": { - "price": 2690000, - "name": "Titanium Ring" - }, - "divan_boots": { - "price": 15000000, - "name": "Boots Of Divan" - }, - "strong_dragon_leggings": { - "price": 1190000, - "name": "Dragon Leggings" - }, - "amber_material": { - "price": 1694404, - "name": "Amber Material" - }, - "lvl_1_legendary_turtle": { - "price": 15000000, - "name": "Turtle" - }, - "turbo_coco_1": { - "price": 90000, - "name": "Turbo Coco 1" - }, - "ultimate_soul_eater_5": { - "price": 30000000, - "name": "Ultimate Soul Eater 5" - }, - "werewolf_helmet": { - "price": 480000, - "name": "Werewolf Helmet" - }, - "ice_spray_wand": { - "price": 26500000, - "name": "Ice Spray Wand" - }, - "fairy_boots": { - "price": 80000, - "name": "Fairy's Galoshes" - }, - "shadow_assassin_admiral": { - "price": 12740000, - "name": "Admiral Skin" - }, - "speed_artifact": { - "price": 2800000, - "name": "Speed Artifact" - }, - "obsidian_chestplate": { - "price": 6998, - "name": "Obsidian Chestplate" - }, - "pooch_sword": { - "price": 1900000, - "name": "Pooch Sword" - }, - "lvl_100_legendary_rabbit": { - "price": 7000000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit_rose": { - "price": 35555555, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit_aquamarine": { - "price": 30000000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit": { - "price": 230000000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit_aquamarine_candy_10": { - "price": 32000000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit_aquamarine_candy_1": { - "price": 31000000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skin_rabbit_candy_10": { - "price": 158000000, - "name": "Rabbit" - }, - "divan_helmet": { - "price": 15599999, - "name": "Helmet Of Divan" - }, - "sugar_rush_1": { - "price": 800000, - "name": "Sugar Rush 1" - }, - "jingle_bells": { - "price": 40000, - "name": "Jingle Bells" - }, - "bat_the_fish": { - "price": 200000, - "name": "Bat The Fish" - }, - "unstable_dragon_boots": { - "price": 110000, - "name": "Unstable Dragon Boots" - }, - "scarf_studies": { - "price": 600000, - "name": "Scarf's Studies" - }, - "lvl_100_legendary_jerry": { - "price": 40750000, - "name": "Jerry" - }, - "lvl_100_legendary_jerry_skin_jerry_green_elf": { - "price": 220000000, - "name": "Jerry" - }, - "lvl_100_legendary_jerry_skin_jerry_red_elf": { - "price": 345000000, - "name": "Jerry" - }, - "lvl_100_legendary_jerry_skin_jerry_handsome": { - "price": 65000000, - "name": "Jerry" - }, - "intimidation_ring": { - "price": 299000, - "name": "Intimidation Ring" - }, - "suspicious_vial": { - "price": 22627, - "name": "Suspicious Vial" - }, - "flamebreaker_helmet": { - "price": 900000, - "name": "Ember Ash Helmet" - }, - "ultimate_last_stand_3": { - "price": 1300000, - "name": "Ultimate Last Stand 3" - }, - "bedrock": { - "price": 15500000, - "name": "Bedrock" - }, - "jaderald": { - "price": 3999998, - "name": "Jaderald" - }, - "soul_whip": { - "price": 9450000, - "name": "Soul Whip" - }, - "ruby_power_scroll": { - "price": 549000, - "name": "Ruby Power Scroll" - }, - "golden_plate": { - "price": 1180000, - "name": "Golden Plate" - }, - "wise_wither_helmet": { - "price": 7900000, - "name": "Storm's Helmet" - }, - "griffin_upgrade_stone_epic": { - "price": 6200000, - "name": "Griffin Upgrade Stone" - }, - "sorrow_helmet": { - "price": 7000000, - "name": "Sorrow Helmet" - }, - "protector_dragon_helmet": { - "price": 160000, - "name": "Protector Dragon Helmet" - }, - "protector_dragon_helmet_skin_protector_shimmer": { - "price": 98999999, - "name": "Protector Dragon Helmet" - }, - "protector_dragon_helmet_skin_protector_baby": { - "price": 499000000, - "name": "Protector Dragon Helmet" - }, - "frozen_blaze_helmet": { - "price": 9500000, - "name": "Frozen Blaze Helmet" - }, - "frozen_blaze_helmet_skin_frozen_blaze_icicle": { - "price": 164900000, - "name": "Frozen Blaze Helmet" - }, - "mastiff_leggings": { - "price": 490000, - "name": "Mastiff Leggings" - }, - "skeleton_lord_helmet": { - "price": 450000, - "name": "Skeleton Lord Helmet" - }, - "ultimate_wisdom_4": { - "price": 2600000, - "name": "Ultimate Wisdom 4" - }, - "starlight_chestplate": { - "price": 50000, - "name": "Starlight Chestplate" - }, - "mineral_chestplate": { - "price": 339000, - "name": "Mineral Chestplate" - }, - "necromancer_sword": { - "price": 10000000, - "name": "Necromancer Sword" - }, - "heavy_leggings": { - "price": 5037, - "name": "Heavy Leggings" - }, - "ember_rod": { - "price": 3300000, - "name": "Ember Rod" - }, - "spirit_decoy": { - "price": 2005414, - "name": "Spirit Stone" - }, - "ultimate_jerry_5": { - "price": 895000, - "name": "Ultimate Jerry 5" - }, - "holy_dragon_boots": { - "price": 100000, - "name": "Holy Dragon Boots" - }, - "dungeon_chest_key": { - "price": 100000, - "name": "Dungeon Chest Key" - }, - "the_shredder": { - "price": 350000, - "name": "Shredder" - }, - "synthetic_heart": { - "price": 120000, - "name": "Synthetic Heart" - }, - "elegant_tuxedo_boots": { - "price": 11500000, - "name": "Elegant Tuxedo Oxfords" - }, - "final_destination_boots": { - "price": 430000, - "name": "Final Destination Boots" - }, - "lvl_100_legendary_tiger": { - "price": 34500000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_twilight": { - "price": 470000000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_saber_tooth": { - "price": 53500000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_twilight_candy_10": { - "price": 400000000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_saber_tooth_candy_10": { - "price": 40000000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_golden": { - "price": 79999900, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_golden_candy_10": { - "price": 47000000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_saber_tooth_candy_7": { - "price": 39000000, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skin_tiger_golden_candy_2": { - "price": 39000000, - "name": "Tiger" - }, - "sponge_leggings": { - "price": 840000, - "name": "Sponge Leggings" - }, - "mithril_drill_1": { - "price": 2950000, - "name": "Sturdy Mithril Drill Sx-r226" - }, - "divan_chestplate": { - "price": 16500000, - "name": "Chestplate Of Divan" - }, - "precursor_gear": { - "price": 1296649, - "name": "Precursor Gear" - }, - "lvl_100_legendary_black_cat": { - "price": 38000000, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_skin_black_cat_onyx": { - "price": 69000000, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_skin_black_cat_ivory": { - "price": 83000000, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_skin_black_cat_ivory_candy_10": { - "price": 69696900, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_skin_black_cat_onyx_candy_10": { - "price": 57000000, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_skin_black_cat_ivory_candy_4": { - "price": 56000000, - "name": "Black Cat" - }, - "mender_crown": { - "price": 4098000, - "name": "Mender Crown" - }, - "blaze_leggings": { - "price": 2300000, - "name": "Blaze Leggings" - }, - "super_heavy_chestplate": { - "price": 18999, - "name": "Super Heavy Chestplate" - }, - "delicate_5": { - "price": 690000, - "name": "Delicate 5" - }, - "crypt_bow": { - "price": 5038, - "name": "Soulstealer Bow" - }, - "handy_blood_chalice": { - "price": 2499998, - "name": "Handy Blood Chalice" - }, - "gemstone_drill_1": { - "price": 3580000, - "name": "Excellent Ruby Drill Tx-15" - }, - "unstable_dragon_chestplate": { - "price": 210000, - "name": "Unstable Dragon Chestplate" - }, - "cactus_knife": { - "price": 1500000, - "name": "Cactus Knife" - }, - "danger_3_travel_scroll": { - "price": 220000, - "name": "Travel Scroll To The End" - }, - "lvl_1_uncommon_blue_whale": { - "price": 70000, - "name": "Uncommon Blue Whale" - }, - "pristine_1": { - "price": 949000, - "name": "Pristine 1" - }, - "golem_poppy": { - "price": 350000, - "name": "Rose" - }, - "shaman_sword": { - "price": 180000, - "name": "Shaman Sword" - }, - "molten_cube": { - "price": 930, - "name": "Molten Cube" - }, - "luxurious_spool": { - "price": 1887867, - "name": "Luxurious Spool" - }, - "glacite_chestplate": { - "price": 35000, - "name": "Glacite Chestplate" - }, - "lvl_1_epic_horse": { - "price": 400000, - "name": "Horse" - }, - "ultimate_wise_1": { - "price": 135000, - "name": "Wise 1" - }, - "bat_talisman": { - "price": 46999, - "name": "Bat Talisman" - }, - "greater_backpack": { - "price": 699000, - "name": "Greater Backpack" - }, - "greater_backpack_skin_enderpack": { - "price": 29000000, - "name": "Greater Backpack" - }, - "spider_boots": { - "price": 350000, - "name": "Spider's Boots" - }, - "power_6": { - "price": 880000, - "name": "Power 6" - }, - "bat_wand": { - "price": 17349999, - "name": "Spirit Sceptre" - }, - "farmer_boots": { - "price": 265000, - "name": "Farmer Boots" - }, - "lvl_100_rare_griffin": { - "price": 6900000, - "name": "Rare Griffin" - }, - "maxor_the_fish": { - "price": 50000, - "name": "Maxor The Fish" - }, - "shadow_assassin_boots": { - "price": 900000, - "name": "Shadow Assassin Boots" - }, - "magma_bow": { - "price": 485000, - "name": "Magma Bow" - }, - "respite_4": { - "price": 925000, - "name": "Respite 4" - }, - "shark_scale_chestplate": { - "price": 1100000, - "name": "Shark Scale Chestplate" - }, - "beastmaster_crest_uncommon": { - "price": 800000, - "name": "Beastmaster Crest" - }, - "lvl_1_epic_ocelot": { - "price": 560000, - "name": "Ocelot" - }, - "zombie_lord_helmet": { - "price": 100000, - "name": "Zombie Lord Helmet" - }, - "hilt_of_true_ice": { - "price": 248999, - "name": "Hilt Of True Ice" - }, - "werewolf_boots": { - "price": 329000, - "name": "Werewolf Boots" - }, - "skeleton_grunt_chestplate": { - "price": 10000, - "name": "Skeleton Grunt Chestplate" - }, - "ender_slayer_7": { - "price": 44989999, - "name": "Ender Slayer 7" - }, - "reaper_gem": { - "price": 500000, - "name": "Reaper Gem" - }, - "lvl_100_epic_ender_dragon": { - "price": 375000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_red": { - "price": 609000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_blue": { - "price": 575000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_purple": { - "price": 572222222, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_pastel": { - "price": 554999000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_red_candy_10": { - "price": 549000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_blue_candy_10": { - "price": 540000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_neon_purple_candy_10": { - "price": 469999999, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skin_dragon_pastel_candy_10": { - "price": 491999998, - "name": "Ender Dragon" - }, - "end_stone_sword": { - "price": 140000, - "name": "End Stone Sword" - }, - "lvl_1_uncommon_armadillo": { - "price": 10000, - "name": "Uncommon Armadillo" - }, - "ultimate_soul_eater_1": { - "price": 1500000, - "name": "Ultimate Soul Eater 1" - }, - "pet_item_all_skills_boost_common": { - "price": 80000, - "name": "All Skills Exp Boost" - }, - "lvl_100_legendary_silverfish": { - "price": 2499000, - "name": "Silverfish" - }, - "lvl_100_legendary_silverfish_skin_silverfish": { - "price": 81000000, - "name": "Silverfish" - }, - "lvl_100_legendary_silverfish_skin_silverfish_fossilized": { - "price": 36900000, - "name": "Silverfish" - }, - "lvl_100_legendary_silverfish_skin_silverfish_candy_2": { - "price": 49899000, - "name": "Silverfish" - }, - "overload_5": { - "price": 15400000, - "name": "Overload 5" - }, - "turbo_wheat_1": { - "price": 20000, - "name": "Turbo Wheat 1" - }, - "armor_of_yog_leggings": { - "price": 600000, - "name": "Yog Leggings" - }, - "ghoul_buster": { - "price": 2600000, - "name": "Ghoul Buster" - }, - "wand_of_mending": { - "price": 75000, - "name": "Wand Of Mending" - }, - "bait_ring": { - "price": 24000000, - "name": "Bait Ring" - }, - "lvl_1_epic_endermite": { - "price": 350000, - "name": "Endermite" - }, - "autopet_rules_2": { - "price": 7700000, - "name": "Autopet Rules 2-pack" - }, - "heat_core": { - "price": 1090000, - "name": "Heat Core" - }, - "nether_artifact": { - "price": 57950000, - "name": "Nether Artifact" - }, - "bat_ring": { - "price": 540000, - "name": "Bat Ring" - }, - "minion_expander": { - "price": 49000, - "name": "Minion Expander" - }, - "diamond_atom": { - "price": 12799, - "name": "Diamond Atom" - }, - "lvl_1_legendary_blue_whale": { - "price": 12395000, - "name": "Blue Whale" - }, - "personal_compactor_6000": { - "price": 2750000, - "name": "Personal Compactor 6000" - }, - "final_destination_chestplate": { - "price": 895000, - "name": "Final Destination Chestplate" - }, - "lvl_1_epic_megalodon": { - "price": 950000, - "name": "Megalodon" - }, - "big_brain_5": { - "price": 69999999, - "name": "Big Brain 5" - }, - "giants_sword": { - "price": 205000000, - "name": "Giant's Sword" - }, - "shark_scale_leggings": { - "price": 700000, - "name": "Shark Scale Leggings" - }, - "lvl_1_uncommon_griffin": { - "price": 1200000, - "name": "Uncommon Griffin" - }, - "lvl_1_rare_armadillo": { - "price": 38000, - "name": "Rare Armadillo" - }, - "wise_dragon_leggings": { - "price": 1349000, - "name": "Wise Dragon Leggings" - }, - "ender_slayer_6": { - "price": 1600000, - "name": "Ender Slayer 6" - }, - "dragon_claw": { - "price": 1595497, - "name": "Dragon Claw" - }, - "grappling_hook": { - "price": 2999, - "name": "Grappling Hook" - }, - "triple_strike_4": { - "price": 9000, - "name": "Triple Strike 4" - }, - "reaper_boots": { - "price": 4499999, - "name": "Reaper Boots" - }, - "unstable_dragon_helmet": { - "price": 160000, - "name": "Unstable Dragon Helmet" - }, - "unstable_dragon_helmet_skin_unstable_shimmer": { - "price": 49999999, - "name": "Unstable Dragon Helmet" - }, - "unstable_dragon_helmet_skin_unstable_baby": { - "price": 530000000, - "name": "Unstable Dragon Helmet" - }, - "skeleton_soldier_boots": { - "price": 5057, - "name": "Skeleton Soldier Boots" - }, - "revived_heart": { - "price": 2800000, - "name": "Revived Heart" - }, - "crystal_helmet": { - "price": 450000, - "name": "Crystal Helmet" - }, - "flamebreaker_chestplate": { - "price": 1000000, - "name": "Ember Ash Chestplate" - }, - "armor_of_the_resistance_chestplate": { - "price": 199000, - "name": "Chestplate Of The Rising Sun" - }, - "potato_talisman": { - "price": 13000000, - "name": "Potato Talisman" - }, - "lvl_1_epic_ender_dragon": { - "price": 315000000, - "name": "Ender Dragon" - }, - "lvl_1_epic_hound": { - "price": 189000, - "name": "Hound" - }, - "jerry_talisman_green": { - "price": 950000, - "name": "Green Jerry Talisman" - }, - "personal_compactor_7000": { - "price": 5000000, - "name": "Personal Compactor 7000" - }, - "smarty_pants_1": { - "price": 650000, - "name": "Smarty Pants 1" - }, - "vicious_3": { - "price": 17000000, - "name": "Vicious 3" - }, - "hot_stuff": { - "price": 70997, - "name": "Hot Stuff" - }, - "pet_item_farming_skill_boost_epic": { - "price": 1600000, - "name": "Farming Exp Boost" - }, - "raider_axe": { - "price": 170000, - "name": "Raider Axe" - }, - "red_claw_egg": { - "price": 90000, - "name": "Red Claw Egg" - }, - "lvl_1_legendary_tarantula": { - "price": 1100000, - "name": "Tarantula" - }, - "tactician_sword": { - "price": 110000, - "name": "Tactician's Sword" - }, - "rock_candy": { - "price": 196014, - "name": "Rock Candy" - }, - "beacon_3": { - "price": 14500000, - "name": "Beacon Iii" - }, - "snow_suit_helmet": { - "price": 27000, - "name": "Snow Suit Helmet" - }, - "snow_suit_helmet_skin_snow_snowglobe": { - "price": 109000000, - "name": "Snow Suit Helmet" - }, - "lvl_1_common_griffin": { - "price": 20000, - "name": "Common Griffin" - }, - "farming_2_travel_scroll": { - "price": 180000, - "name": "Travel Scroll To Mushroom Island" - }, - "jumbo_backpack": { - "price": 2580000, - "name": "Jumbo Backpack" - }, - "jumbo_backpack_skin_enderpack": { - "price": 29000000, - "name": "Jumbo Backpack" - }, - "jumbo_backpack_skin_green_egg": { - "price": 35000000, - "name": "Jumbo Backpack" - }, - "jumbo_backpack_skin_purple_egg": { - "price": 35000000, - "name": "Jumbo Backpack" - }, - "jumbo_backpack_skin_blue_egg": { - "price": 27777000, - "name": "Jumbo Backpack" - }, - "skeleton_soldier_chestplate": { - "price": 5200, - "name": "Skeleton Soldier Chestplate" - }, - "lvl_1_epic_rock": { - "price": 2500000, - "name": "Rock" - }, - "jerry_stone": { - "price": 22879, - "name": "Jerry Stone" - }, - "precursor_eye": { - "price": 23000000, - "name": "Precursor Eye" - }, - "turbo_wheat_5": { - "price": 790069, - "name": "Turbo Wheat 5" - }, - "mithril_drill_2": { - "price": 11860000, - "name": "Mithril Drill Sx-r326" - }, - "radiant_power_orb": { - "price": 30000, - "name": "Radiant Power Orb" - }, - "crochet_tiger_plushie": { - "price": 300000, - "name": "Crochet Tiger Plushie" - }, - "hurricane_bow": { - "price": 60000, - "name": "Hurricane Bow" - }, - "tarantula_talisman": { - "price": 3400000, - "name": "Tarantula Talisman" - }, - "lvl_1_legendary_pig": { - "price": 980000, - "name": "Pig" - }, - "spirit_bone": { - "price": 790000, - "name": "Spirit Bone" - }, - "weather_node": { - "price": 70000, - "name": "Weather Node" - }, - "wolf_paw": { - "price": 650000, - "name": "Wolf Paw" - }, - "werewolf_leggings": { - "price": 450000, - "name": "Werewolf Leggings" - }, - "ultimate_wise_5": { - "price": 4450000, - "name": "Wise 5" - }, - "explosive_bow": { - "price": 490000, - "name": "Explosive Bow" - }, - "skeleton_master_leggings": { - "price": 18800, - "name": "Skeleton Master Leggings" - }, - "reaper_leggings": { - "price": 4600000, - "name": "Reaper Leggings" - }, - "ranchers_boots": { - "price": 2600000, - "name": "Rancher's Boots" - }, - "talisman_enrichment_magic_find": { - "price": 2000000, - "name": "Magic Find Enrichment" - }, - "tribal_spear": { - "price": 1000000, - "name": "Tribal Spear" - }, - "red_nose": { - "price": 119, - "name": "Red Nose" - }, - "end_helmet": { - "price": 40000, - "name": "Ender Helmet" - }, - "new_year_cake_bag": { - "price": 469999, - "name": "New Year Cake Bag" - }, - "lvl_1_common_blue_whale": { - "price": 55000, - "name": "Common Blue Whale" - }, - "old_dragon_chestplate": { - "price": 190000, - "name": "Old Dragon Chestplate" - }, - "candy_ring": { - "price": 199000, - "name": "Candy Ring" - }, - "werewolf_chestplate": { - "price": 630000, - "name": "Werewolf Chestplate" - }, - "dark_goggles": { - "price": 80000, - "name": "Dark Goggles" - }, - "frozen_blaze_boots": { - "price": 8800000, - "name": "Frozen Blaze Boots" - }, - "ultimate_rend_1": { - "price": 800000, - "name": "Ultimate Rend 1" - }, - "lvl_100_legendary_golem": { - "price": 23000000, - "name": "Golem" - }, - "shard_of_the_shredded": { - "price": 11700000, - "name": "Shard Of The Shredded" - }, - "griffin_upgrade_stone_uncommon": { - "price": 1200000, - "name": "Griffin Upgrade Stone" - }, - "legend_rod": { - "price": 3100000, - "name": "Rod Of Legends" - }, - "fallen_star_hat": { - "price": 500000, - "name": "Fallen Star Helmet" - }, - "bat_person_talisman": { - "price": 440000, - "name": "Bat Person Talisman" - }, - "gemstone_gauntlet": { - "price": 15390000, - "name": "Gemstone Gauntlet" - }, - "gold_candy": { - "price": 500000, - "name": "Golden Treat" - }, - "lvl_1_epic_phoenix": { - "price": 3545454, - "name": "Phoenix" - }, - "gold_gift": { - "price": 880000, - "name": "Golden Gift" - }, - "flamebreaker_leggings": { - "price": 2890000, - "name": "Ember Ash Leggings" - }, - "dragon_nest_travel_scroll": { - "price": 750000, - "name": "Travel Scroll To Dragon's Nest" - }, - "implosion_scroll": { - "price": 6500000, - "name": "Implosion" - }, - "talisman_enrichment_health": { - "price": 2099999, - "name": "Health Enrichment" - }, - "gemstone_chamber": { - "price": 11950000, - "name": "Gemstone Chamber" - }, - "super_heavy_boots": { - "price": 8000, - "name": "Heavy Boots" - }, - "turbo_warts_5": { - "price": 850000, - "name": "Turbo Warts 5" - }, - "xlarge_enchanted_chest": { - "price": 1200000, - "name": "X-large Storage" - }, - "lvl_1_legendary_skeleton": { - "price": 1200000, - "name": "Skeleton" - }, - "armor_of_magma_boots": { - "price": 750000, - "name": "Armor Of Magma Boots" - }, - "mining_2_travel_scroll": { - "price": 129000, - "name": "Travel Scroll To Deep Caverns" - }, - "shadow_assassin_leggings": { - "price": 3600000, - "name": "Shadow Assassin Leggings" - }, - "tuning_fork": { - "price": 100000, - "name": "Tuning Fork" - }, - "electron_transmitter": { - "price": 70000, - "name": "Electron Transmitter" - }, - "diver_fragment": { - "price": 120000, - "name": "Emperor's Skull" - }, - "pet_skin_monkey_golden": { - "price": 103000000, - "name": "Golden Monkey Skin" - }, - "fel_sword": { - "price": 410000, - "name": "Fel Sword" - }, - "lvl_1_rare_pig": { - "price": 56000, - "name": "Rare Pig" - }, - "lvl_1_epic_jellyfish": { - "price": 1389000, - "name": "Jellyfish" - }, - "wither_catalyst": { - "price": 1200000, - "name": "Wither Catalyst" - }, - "zombie_knight_chestplate": { - "price": 39000, - "name": "Zombie Knight Chestplate" - }, - "control_switch": { - "price": 147000, - "name": "Control Switch" - }, - "glacite_boots": { - "price": 70000, - "name": "Glacite Boots" - }, - "pristine_2": { - "price": 1999999, - "name": "Pristine 2" - }, - "lvl_1_uncommon_rabbit": { - "price": 7500, - "name": "Uncommon Rabbit" - }, - "superior_dragon_helmet": { - "price": 5000000, - "name": "Dragon Helmet" - }, - "superior_dragon_helmet_skin_superior_shimmer": { - "price": 93999999, - "name": "Dragon Helmet" - }, - "superior_dragon_helmet_skin_superior_baby": { - "price": 555555555, - "name": "Dragon Helmet" - }, - "master_skull_tier_5": { - "price": 35999000, - "name": "Master Skull - Tier 5" - }, - "zombie_commander_chestplate": { - "price": 60000, - "name": "Zombie Commander Chestplate" - }, - "pet_skin_jerry_red_elf": { - "price": 350000000, - "name": "Red Elf Jerry Skin" - }, - "undead_catalyst": { - "price": 4500, - "name": "Catalyst" - }, - "titanium_drill_2": { - "price": 37999000, - "name": "Titanium Drill Dr-x455" - }, - "snow_cannon": { - "price": 10000, - "name": "Frosty The Snow Cannon" - }, - "tarantula_chestplate": { - "price": 850000, - "name": "Tarantula Chestplate" - }, - "adaptive_leggings": { - "price": 100000, - "name": "Adaptive Leggings" - }, - "hardened_diamond_chestplate": { - "price": 39000, - "name": "Hardened Diamond Chestplate" - }, - "lvl_1_rare_monkey": { - "price": 399998, - "name": "Rare Monkey" - }, - "scylla": { - "price": 1180000000, - "name": "Scylla" - }, - "lvl_1_uncommon_lion": { - "price": 689000, - "name": "Uncommon Lion" - }, - "auto_recombobulator": { - "price": 12000000, - "name": "Auto Recombobulator" - }, - "end_leggings": { - "price": 100000, - "name": "Ender Leggings" - }, - "enderpack": { - "price": 15000000, - "name": "Enderpack Skin" - }, - "ornate_zombie_sword": { - "price": 900000, - "name": "Ornate Zombie Sword" - }, - "perfect_boots_12": { - "price": 7000000, - "name": "Perfect Boots - Tier Xii" - }, - "candy_the_fish": { - "price": 149999, - "name": "Candy The Fish" - }, - "ember_boots": { - "price": 289000, - "name": "Ember Boots" - }, - "great_spook_staff": { - "price": 2800000, - "name": "Great Spook Staff" - }, - "earth_shard": { - "price": 8000, - "name": "Earth Shard" - }, - "ultimate_combo_2": { - "price": 75000, - "name": "Ultimate Combo 2" - }, - "lvl_1_legendary_spirit": { - "price": 5389000, - "name": "Spirit" - }, - "lvl_1_rare_elephant": { - "price": 180000, - "name": "Rare Elephant" - }, - "adaptive_chestplate": { - "price": 3530000, - "name": "Adaptive Chestplate" - }, - "endstone_geode": { - "price": 7389, - "name": "End Stone Geode" - }, - "titanium_drill_4": { - "price": 211000000, - "name": "Titanium Drill Dr-x655" - }, - "golden_ball": { - "price": 1299994, - "name": "Golden Ball" - }, - "speedster_boots": { - "price": 199990, - "name": "Speedster Boots" - }, - "old_dragon_boots": { - "price": 240000, - "name": "Old Dragon Boots" - }, - "park_jungle_travel_scroll": { - "price": 144000, - "name": "Travel Scroll To Jungle Island" - }, - "jungle_heart": { - "price": 300000, - "name": "Jungle Heart" - }, - "wise_wither_chestplate": { - "price": 25050000, - "name": "Storm's Chestplate" - }, - "salmon_boots": { - "price": 15000000, - "name": "Salmon Boots" - }, - "tank_miner_helmet": { - "price": 2016, - "name": "Miner Helmet" - }, - "bejeweled_handle": { - "price": 196000, - "name": "Bejeweled Handle" - }, - "pet_item_tier_boost_drop": { - "price": 55555554, - "name": "Tier Boost Core" - }, - "ender_relic": { - "price": 111999999, - "name": "Ender Relic" - }, - "starred_bonzo_staff": { - "price": 3000000, - "name": "Heroic Bonzo's Staff" - }, - "ultimate_legion_5": { - "price": 25999990, - "name": "Ultimate Legion 5" - }, - "sweet_axe": { - "price": 205, - "name": "Axe" - }, - "water_hydra_head": { - "price": 49999, - "name": "Water Hydra Head" - }, - "pet_item_farming_skill_boost_rare": { - "price": 999999, - "name": "Farming Exp Boost" - }, - "gold_bonzo_head": { - "price": 300000, - "name": "Golden Bonzo Head" - }, - "lvl_1_legendary_lion": { - "price": 18800000, - "name": "Lion" - }, - "rotten_leggings": { - "price": 9000, - "name": "Rotten Leggings" - }, - "armor_of_the_resistance_boots": { - "price": 700000, - "name": "Boots Of The Rising Sun" - }, - "shark_scale_boots": { - "price": 440000, - "name": "Shark Scale Boots" - }, - "lvl_1_uncommon_skeleton": { - "price": 99000, - "name": "Uncommon Skeleton" - }, - "zombie_heart": { - "price": 280000, - "name": "Zombie's Heart" - }, - "pet_skin_rock_smile": { - "price": 333000000, - "name": "Smiling Rock Skin" - }, - "feather_artifact": { - "price": 98000, - "name": "Feather Artifact" - }, - "emerald_armor_boots": { - "price": 650000, - "name": "Emerald Armor Boots" - }, - "lvl_100_legendary_turtle": { - "price": 38900000, - "name": "Turtle" - }, - "ember_leggings": { - "price": 600000, - "name": "Ember Leggings" - }, - "hub_crypts_travel_scroll": { - "price": 584000, - "name": "Travel Scroll To Hub Crypts" - }, - "treasure_talisman": { - "price": 400000, - "name": "Treasure Talisman" - }, - "beacon": { - "price": 520000, - "name": "Beacon Block" - }, - "pet_skin_sheep_white": { - "price": 999999000, - "name": "White Sheep Skin" - }, - "growth_chestplate": { - "price": 265000, - "name": "Chestplate Of Growth" - }, - "lvl_1_rare_skeleton": { - "price": 125000, - "name": "Rare Skeleton" - }, - "spiders_den_top_travel_scroll": { - "price": 5000, - "name": "Travel Scroll To Spider's Den Top Of Nest" - }, - "lvl_1_epic_sheep": { - "price": 770000, - "name": "Sheep" - }, - "lvl_100_legendary_wither_skeleton": { - "price": 9349999, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_wither_skeleton_skin_wither": { - "price": 87000000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_wither_skeleton_skin_wither_candy_10": { - "price": 95000000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_wither_skeleton_skin_wither_candy_1": { - "price": 63333333, - "name": "Wither Skeleton" - }, - "turbo_mushrooms_1": { - "price": 18000, - "name": "Turbo Mushrooms 1" - }, - "lvl_100_legendary_monkey": { - "price": 42000000, - "name": "Monkey" - }, - "lvl_100_legendary_monkey_skin_monkey_gorilla": { - "price": 66666666, - "name": "Monkey" - }, - "lvl_100_legendary_monkey_skin_monkey_golden": { - "price": 111111111, - "name": "Monkey" - }, - "lvl_100_legendary_monkey_skin_monkey_golden_candy_10": { - "price": 127000000, - "name": "Monkey" - }, - "lvl_100_legendary_monkey_skin_monkey_gorilla_candy_10": { - "price": 64000000, - "name": "Monkey" - }, - "gold_professor_head": { - "price": 849000, - "name": "Golden Professor Head" - }, - "harvesting_6": { - "price": 2450000, - "name": "Harvesting 6" - }, - "fairy_helmet": { - "price": 2900, - "name": "Fairy's Fedora" - }, - "jungle_pickaxe": { - "price": 490000, - "name": "Jungle Pickaxe" - }, - "lvl_1_epic_lion": { - "price": 2800000, - "name": "Lion" - }, - "perfect_leggings_12": { - "price": 7000000, - "name": "Perfect Leggings - Tier Xii" - }, - "starred_shadow_fury": { - "price": 34000000, - "name": "Shadow Fury" - }, - "golem_armor_boots": { - "price": 80000, - "name": "Golem Armor Boots" - }, - "pig_mask": { - "price": 400000, - "name": "Pig Mask" - }, - "jasper_crystal": { - "price": 14650000, - "name": "Jasper Crystal" - }, - "titanium_artifact": { - "price": 6990000, - "name": "Titanium Artifact" - }, - "lucky_dice": { - "price": 1199993, - "name": "Lucky Dice" - }, - "pocket_espresso_machine": { - "price": 500000, - "name": "Pocket Espresso Machine" - }, - "amethyst_power_scroll": { - "price": 500000, - "name": "Amethyst Power Scroll" - }, - "elegant_tuxedo_leggings": { - "price": 9600000, - "name": "Elegant Tuxedo Pants" - }, - "zombie_knight_helmet": { - "price": 15000, - "name": "Zombie Knight Helmet" - }, - "lvl_100_legendary_wolf": { - "price": 17000000, - "name": "Wolf" - }, - "lvl_100_legendary_wolf_skin_wolf": { - "price": 62000000, - "name": "Wolf" - }, - "lvl_100_legendary_wolf_skin_wolf_candy_1": { - "price": 29000000, - "name": "Wolf" - }, - "jerry_talisman_golden": { - "price": 95000000, - "name": "Golden Jerry Artifact" - }, - "mana_steal_3": { - "price": 145000, - "name": "Mana Steal 3" - }, - "salmon_chestplate_new": { - "price": 50000, - "name": "Salmon Chestplate" - }, - "beastmaster_crest_epic": { - "price": 12250000, - "name": "Beastmaster Crest" - }, - "armor_of_the_resistance_leggings": { - "price": 300000, - "name": "Leggings Of The Rising Sun" - }, - "shadow_fury": { - "price": 32000000, - "name": "Shadow Fury" - }, - "reaper_orb": { - "price": 24500000, - "name": "Reaper Orb" - }, - "block_zapper": { - "price": 1800000, - "name": "Block Zapper" - }, - "turbo_wheat_4": { - "price": 444443, - "name": "Turbo Wheat 4" - }, - "salmon_chestplate": { - "price": 20000000, - "name": "Salmon Chestplate" - }, - "forge_travel_scroll": { - "price": 240000, - "name": "Travel Scroll To The Dwarven Forge" - }, - "dungeon_lore_paper": { - "price": 1000, - "name": "Journal Entry" - }, - "blaze_helmet": { - "price": 1200000, - "name": "Blaze Helmet" - }, - "terminator": { - "price": 639500000, - "name": "Terminator" - }, - "zombie_knight_boots": { - "price": 45000, - "name": "Zombie Knight Boots" - }, - "ice_rod": { - "price": 67000, - "name": "Ice Rod" - }, - "royal_pigeon": { - "price": 10000, - "name": "Royal Pigeon" - }, - "starred_last_breath": { - "price": 6500000, - "name": "Rapid Last Breath" - }, - "skeleton_soldier_helmet": { - "price": 5999, - "name": "Skeleton Soldier Helmet" - }, - "lvl_100_epic_tiger": { - "price": 15999998, - "name": "Tiger" - }, - "lvl_100_epic_tiger_skin_tiger_saber_tooth": { - "price": 37899900, - "name": "Tiger" - }, - "lvl_100_epic_tiger_skin_tiger_golden_candy_10": { - "price": 15000000, - "name": "Tiger" - }, - "lvl_100_epic_tiger_skin_tiger_golden": { - "price": 20000000, - "name": "Tiger" - }, - "snowflake_the_fish": { - "price": 500000, - "name": "Flake The Fish" - }, - "turbo_cane_4": { - "price": 690000, - "name": "Turbo Cane 4" - }, - "lvl_1_epic_silverfish": { - "price": 30000, - "name": "Silverfish" - }, - "souls_rebound": { - "price": 2300000, - "name": "Souls Rebound" - }, - "pet_skin_black_cat_ivory": { - "price": 23990000, - "name": "Ivory Black Cat Skin" - }, - "midas_jewel": { - "price": 229999, - "name": "Midas Jewel" - }, - "pet_item_exp_share_drop": { - "price": 850000, - "name": "Exp Share Core" - }, - "hyper_cleaver": { - "price": 599000, - "name": "Hyper Cleaver" - }, - "sugar_rush_2": { - "price": 1220000, - "name": "Sugar Rush 2" - }, - "amber_power_scroll": { - "price": 299999, - "name": "Amber Power Scroll" - }, - "griffin_upgrade_stone_legendary": { - "price": 28650000, - "name": "Griffin Upgrade Stone" - }, - "turbo_melon_3": { - "price": 470000, - "name": "Turbo Melon 3" - }, - "lvl_100_legendary_blue_whale": { - "price": 33900000, - "name": "Blue Whale" - }, - "lvl_100_legendary_blue_whale_skin_whale_orca": { - "price": 84000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_blue_whale_skin_whale_orca_candy_10": { - "price": 88000000, - "name": "Blue Whale" - }, - "null_edge": { - "price": 490000, - "name": "Null Edge" - }, - "danger_2_travel_scroll": { - "price": 200000, - "name": "Travel Scroll To The Crimson Isle" - }, - "bat_firework": { - "price": 900000, - "name": "Bat Firework" - }, - "rejuvenate_1": { - "price": 18000, - "name": "Rejuvenate 1" - }, - "hyperion": { - "price": 1090000000, - "name": "Hyperion" - }, - "flycatcher_upgrade": { - "price": 11950000, - "name": "Flycatcher" - }, - "eternal_flame_ring": { - "price": 3000, - "name": "Eternal Flame Ring" - }, - "sword_of_revelations": { - "price": 11900000, - "name": "Thick Sword Of Revelations" - }, - "old_shimmer": { - "price": 50000000, - "name": "Shimmer Skin" - }, - "pristine_3": { - "price": 4950000, - "name": "Pristine 3" - }, - "growth_6": { - "price": 5699000, - "name": "Growth 6" - }, - "skeleton_master_chestplate": { - "price": 5037, - "name": "Skeleton Master Chestplate" - }, - "vampire_mask": { - "price": 8800000, - "name": "Vampire Mask" - }, - "zombie_soldier_helmet": { - "price": 5037, - "name": "Zombie Soldier Helmet" - }, - "pet_item_combat_skill_boost_epic": { - "price": 4470000, - "name": "Combat Exp Boost" - }, - "farming_1_portal": { - "price": 150000, - "name": "Portal To The Barn" - }, - "pet_item_spooky_cupcake": { - "price": 115000, - "name": "Spooky Cupcake" - }, - "candy_relic": { - "price": 12200000, - "name": "Candy Relic" - }, - "dark_queens_soul_drop": { - "price": 49999, - "name": "Dark Queen's Soul Drop" - }, - "lvl_1_legendary_wolf": { - "price": 3000000, - "name": "Wolf" - }, - "glacite_helmet": { - "price": 55000, - "name": "Glacite Helmet" - }, - "sinful_dice": { - "price": 100000, - "name": "Sinful Dice" - }, - "sapphire_power_scroll": { - "price": 750000, - "name": "Sapphire Power Scroll" - }, - "salmon_leggings": { - "price": 22222222, - "name": "Salmon Leggings" - }, - "sil_ex": { - "price": 10390000, - "name": "Silex" - }, - "diamond_professor_head": { - "price": 115000000, - "name": "Diamond Professor Head" - }, - "voidwalker_katana": { - "price": 50000, - "name": "Voidwalker Katana" - }, - "strong_dragon_boots": { - "price": 650000, - "name": "Strong Dragon Boots" - }, - "tank_miner_boots": { - "price": 2016, - "name": "Miner Boots" - }, - "premium_flesh": { - "price": 8, - "name": "Premium Flesh" - }, - "lvl_100_epic_phoenix": { - "price": 15000000, - "name": "Phoenix" - }, - "lesser_soulflow_engine": { - "price": 2750000, - "name": "Lesser Soulflow Engine" - }, - "zombie_chestplate": { - "price": 500000, - "name": "Zombie Chestplate" - }, - "frozen_blaze_leggings": { - "price": 9200000, - "name": "Frozen Blaze Leggings" - }, - "sniper_helmet": { - "price": 5037, - "name": "Sniper Helmet" - }, - "ender_bow": { - "price": 9000, - "name": "Ender Bow" - }, - "old_dragon_leggings": { - "price": 200000, - "name": "Old Dragon Leggings" - }, - "young_dragon_leggings": { - "price": 200000, - "name": "Young Dragon Leggings" - }, - "third_master_star": { - "price": 33500000, - "name": "Third Master Star" - }, - "triple_strike_5": { - "price": 44500000, - "name": "Triple Strike 5" - }, - "ultimate_wisdom_5": { - "price": 5400000, - "name": "Ultimate Wisdom 5" - }, - "mastiff_chestplate": { - "price": 400000, - "name": "Mastiff Chestplate" - }, - "beastmaster_crest_legendary": { - "price": 25999999, - "name": "Beastmaster Crest" - }, - "shrimp_the_fish": { - "price": 7100000, - "name": "Shrimp The Fish" - }, - "yeti_rod": { - "price": 200000, - "name": "Yeti Rod" - }, - "lvl_1_uncommon_rock": { - "price": 50000, - "name": "Uncommon Rock" - }, - "armor_of_magma_chestplate": { - "price": 400000, - "name": "Armor Of Magma Chestplate" - }, - "warden_heart": { - "price": 154000000, - "name": "Warden Heart" - }, - "all_skills_super_boost": { - "price": 3999999, - "name": "All Skills Exp Super-boost" - }, - "ultimate_last_stand_2": { - "price": 300000, - "name": "Ultimate Last Stand 2" - }, - "diamond_livid_head": { - "price": 81000000, - "name": "Diamond Livid Head" - }, - "sleeping_eye": { - "price": 680000, - "name": "Sleeping Eye" - }, - "scarf_grimoire": { - "price": 11995000, - "name": "Scarf's Grimoire" - }, - "pet_item_mining_skill_boost_rare": { - "price": 580000, - "name": "Mining Exp Boost" - }, - "intimidation_artifact": { - "price": 1400000, - "name": "Intimidation Artifact" - }, - "raggedy_shark_tooth_necklace": { - "price": 12000, - "name": "Raggedy Shark Tooth Necklace" - }, - "rotten_boots": { - "price": 5057, - "name": "Rotten Boots" - }, - "lvl_1_epic_wither_skeleton": { - "price": 590000, - "name": "Wither Skeleton" - }, - "spiked_atrocity": { - "price": 37500000, - "name": "Atrocity" - }, - "scorpion_foil": { - "price": 1696969, - "name": "Scorpion Foil" - }, - "lvl_1_epic_guardian": { - "price": 1850000, - "name": "Guardian" - }, - "edible_mace": { - "price": 750000, - "name": "Edible Mace" - }, - "bulky_stone": { - "price": 496181, - "name": "Bulky Stone" - }, - "bonzo_staff": { - "price": 2499999, - "name": "Bonzo's Staff" - }, - "talisman_enrichment_intelligence": { - "price": 2000000, - "name": "Intelligence Enrichment" - }, - "ultimate_combo_1": { - "price": 50000, - "name": "Ultimate Combo 1" - }, - "ender_artifact": { - "price": 79900000, - "name": "Ender Artifact" - }, - "lvl_100_legendary_armadillo": { - "price": 3450000, - "name": "Armadillo" - }, - "lvl_100_legendary_armadillo_skin_armadillo_seafoam": { - "price": 32000000, - "name": "Armadillo" - }, - "lvl_100_legendary_armadillo_skin_armadillo_enchanted": { - "price": 49000000, - "name": "Armadillo" - }, - "reaper_scythe": { - "price": 16898989, - "name": "Reaper Scythe" - }, - "lvl_1_common_enderman": { - "price": 5000, - "name": "Common Enderman" - }, - "skeleton_helmet": { - "price": 179000, - "name": "Skeleton's Helmet" - }, - "protector_dragon_leggings": { - "price": 250000, - "name": "Protector Dragon Leggings" - }, - "necromancer_brooch": { - "price": 44103, - "name": "Necromancer's Brooch" - }, - "perfect_chestplate_1": { - "price": 995000, - "name": "Chestplate - Tier I" - }, - "ultimate_swarm_5": { - "price": 9850000, - "name": "Ultimate Swarm 5" - }, - "jerry_talisman_blue": { - "price": 5299999, - "name": "Blue Jerry Talisman" - }, - "crystal_boots": { - "price": 230000, - "name": "Crystal Boots" - }, - "auger_rod": { - "price": 14800000, - "name": "Auger Rod" - }, - "the_art_of_war": { - "price": 19290000, - "name": "The Art Of War" - }, - "boots_of_the_pack": { - "price": 500000, - "name": "Boots Of The Pack" - }, - "heavy_chestplate": { - "price": 5037, - "name": "Heavy Chestplate" - }, - "pet_skin_bat_vampire": { - "price": 7700000, - "name": "Vampire Bat Skin" - }, - "mana_steal_1": { - "price": 50000, - "name": "Mana Steal 1" - }, - "great_spook_boots": { - "price": 250000, - "name": "Great Spook Boots" - }, - "diver_boots": { - "price": 499000, - "name": "Diver's Boots" - }, - "robotron_reflector": { - "price": 199000, - "name": "Robotron Reflector" - }, - "god_potion": { - "price": 5000000, - "name": "God Potion" - }, - "pet_skin_elephant_red": { - "price": 72000000, - "name": "Red Elephant Skin" - }, - "bonzo_mask": { - "price": 370000, - "name": "Bonzo's Mask" - }, - "zombie_commander_leggings": { - "price": 70000, - "name": "Zombie Commander Leggings" - }, - "axe_of_the_shredded": { - "price": 60990000, - "name": "Axe Of The Shredded" - }, - "lvl_1_legendary_elephant": { - "price": 18000000, - "name": "Elephant" - }, - "divan_alloy": { - "price": 660000000, - "name": "Divan's Alloy" - }, - "snow_suit_boots": { - "price": 33000, - "name": "Snow Suit Boots" - }, - "wise_dragon_helmet": { - "price": 949000, - "name": "Wise Dragon Helmet" - }, - "wise_dragon_helmet_skin_wise_baby": { - "price": 399000000, - "name": "Wise Dragon Helmet" - }, - "wise_dragon_helmet_skin_wise_shimmer": { - "price": 45000000, - "name": "Wise Dragon Helmet" - }, - "pet_item_foraging_skill_boost_common": { - "price": 139000, - "name": "Foraging Exp Boost" - }, - "goblin_omelette": { - "price": 900000, - "name": "Goblin Omelette" - }, - "giant_killer_7": { - "price": 69999999, - "name": "Killer 7" - }, - "superior_shimmer": { - "price": 59300000, - "name": "Shimmer Skin" - }, - "silex": { - "price": 999000, - "name": "Rock" - }, - "personal_compactor_5000": { - "price": 1400000, - "name": "Personal Compactor 5000" - }, - "ultimate_legion_3": { - "price": 6649000, - "name": "Ultimate Legion 3" - }, - "promising_pickaxe": { - "price": 11, - "name": "Promising Pickaxe" - }, - "lvl_1_legendary_armadillo": { - "price": 1300000, - "name": "Armadillo" - }, - "lvl_1_legendary_armadillo_skin_armadillo_seafoam": { - "price": 16999999, - "name": "Armadillo" - }, - "titan_killer_7": { - "price": 6789000, - "name": "Titan Killer 7" - }, - "super_heavy_leggings": { - "price": 7000, - "name": "Heavy Leggings" - }, - "helmet_of_the_pack": { - "price": 600000, - "name": "Helmet Of The Pack" - }, - "snow_suit_leggings": { - "price": 18000, - "name": "Snow Suit Leggings" - }, - "big_brain_3": { - "price": 19900000, - "name": "Big Brain 3" - }, - "diver_leggings": { - "price": 1500000, - "name": "Diver's Trunks" - }, - "fancy_tuxedo_boots": { - "price": 1860000, - "name": "Fancy Tuxedo Oxfords" - }, - "venoms_touch": { - "price": 499999, - "name": "Venom's Touch" - }, - "lvl_100_legendary_ender_dragon": { - "price": 702000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_pastel": { - "price": 825000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_neon_blue": { - "price": 875000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_neon_red": { - "price": 874000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_neon_purple": { - "price": 820000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_neon_purple_candy_10": { - "price": 787000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_neon_red_candy_10": { - "price": 798000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ender_dragon_skin_dragon_pastel_candy_10": { - "price": 718121200, - "name": "Ender Dragon" - }, - "storm_the_fish": { - "price": 93000, - "name": "Storm The Fish" - }, - "speed_wither_helmet": { - "price": 2300000, - "name": "Maxor's Helmet" - }, - "lvl_100_legendary_elephant": { - "price": 24500000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_red": { - "price": 159000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_monochrome": { - "price": 35000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_purple": { - "price": 90000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_green": { - "price": 79696969, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_pink": { - "price": 444444444, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_blue": { - "price": 380000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_orange": { - "price": 295555555, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_10": { - "price": 37900000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_green_candy_10": { - "price": 105555555, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_red_candy_10": { - "price": 125000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_pink_candy_10": { - "price": 460000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_orange_candy_10": { - "price": 500000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_1": { - "price": 28300000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_purple_candy_3": { - "price": 96999999, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_3": { - "price": 23900000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_blue_candy_10": { - "price": 190000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_blue_candy_3": { - "price": 150000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_purple_candy_10": { - "price": 60000000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_2": { - "price": 30500000, - "name": "Elephant" - }, - "fish_affinity_talisman": { - "price": 69999, - "name": "Fish Affinity Talisman" - }, - "mithril_coat": { - "price": 45000, - "name": "Mithril Coat" - }, - "pet_item_fishing_skill_boost_rare": { - "price": 1499000, - "name": "Fishing Exp Boost" - }, - "reaper_sword": { - "price": 3390000, - "name": "Reaper Falchion" - }, - "tessellated_ender_pearl": { - "price": 2750000, - "name": "Tesselated Ender Pearl" - }, - "lvl_100_legendary_horse": { - "price": 34000000, - "name": "Horse" - }, - "master_skull_tier_4": { - "price": 8800000, - "name": "Master Skull - Tier 4" - }, - "lvl_1_legendary_jerry": { - "price": 580000, - "name": "Jerry" - }, - "lvl_1_legendary_jerry_skin_jerry_handsome": { - "price": 500000000, - "name": "Jerry" - }, - "horseman_candle": { - "price": 16999000, - "name": "Horseman's Candle" - }, - "healing_tissue": { - "price": 60000, - "name": "Healing Tissue" - }, - "purple_egg": { - "price": 11000000, - "name": "Purple Egged Skin" - }, - "treasure_ring": { - "price": 3700000, - "name": "Treasure Ring" - }, - "rotten_helmet": { - "price": 10000, - "name": "Rotten Helmet" - }, - "farming_1_travel_scroll": { - "price": 119000, - "name": "Travel Scroll To The Barn" - }, - "haste_ring": { - "price": 150000, - "name": "Haste Ring" - }, - "unstable_shimmer": { - "price": 38000000, - "name": "Shimmer Skin" - }, - "transmission_tuner": { - "price": 130000, - "name": "Transmission Tuner" - }, - "lvl_1_epic_tarantula": { - "price": 150000, - "name": "Tarantula" - }, - "turbo_potato_2": { - "price": 554999, - "name": "Turbo Potato 2" - }, - "witch_mask": { - "price": 180000, - "name": "Witch Mask" - }, - "heavy_boots": { - "price": 5057, - "name": "Heavy Boots" - }, - "young_shimmer": { - "price": 35000000, - "name": "Shimmer Skin" - }, - "strong_dragon_helmet": { - "price": 500000, - "name": "Dragon Helmet" - }, - "strong_dragon_helmet_skin_strong_baby": { - "price": 275000000, - "name": "Dragon Helmet" - }, - "strong_dragon_helmet_skin_strong_shimmer": { - "price": 39999000, - "name": "Dragon Helmet" - }, - "zombie_commander_helmet": { - "price": 69420, - "name": "Zombie Commander Helmet" - }, - "revenant_leggings": { - "price": 100000, - "name": "Revenant Leggings" - }, - "ultimate_one_for_all_1": { - "price": 13999999, - "name": "Ultimate One For All 1" - }, - "fly_swatter": { - "price": 549000, - "name": "Fly Swatter" - }, - "growth_boots": { - "price": 190000, - "name": "Boots Of Growth" - }, - "lvl_100_mythic_enderman": { - "price": 38000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman": { - "price": 232000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer": { - "price": 45889000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_candy_10": { - "price": 145000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_10": { - "price": 50000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_2": { - "price": 47000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_1": { - "price": 47500000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_5": { - "price": 38000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_3": { - "price": 41000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_4": { - "price": 42000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_6": { - "price": 43000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_candy_5": { - "price": 125000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_8": { - "price": 39100000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_slayer_candy_7": { - "price": 34999999, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skin_enderman_candy_1": { - "price": 130000000, - "name": "Enderman" - }, - "golem_armor_chestplate": { - "price": 119000, - "name": "Golem Armor Chestplate" - }, - "turbo_carrot_5": { - "price": 2450000, - "name": "Turbo Carrot 5" - }, - "lvl_1_epic_turtle": { - "price": 1500000, - "name": "Turtle" - }, - "lvl_1_uncommon_magma_cube": { - "price": 38000, - "name": "Uncommon Magma Cube" - }, - "leaping_sword": { - "price": 1899999, - "name": "Leaping Sword" - }, - "skeleton_master_boots": { - "price": 5500, - "name": "Skeleton Master Boots" - }, - "turbo_potato_5": { - "price": 2800000, - "name": "Turbo Potato 5" - }, - "shiny_shard": { - "price": 1200000, - "name": "Shard" - }, - "lvl_100_epic_baby_yeti": { - "price": 18900000, - "name": "Baby Yeti" - }, - "lvl_100_epic_baby_yeti_skin_yeti_grown_up": { - "price": 105000000, - "name": "Baby Yeti" - }, - "lvl_100_epic_baby_yeti_skin_yeti_grown_up_candy_10": { - "price": 69800000, - "name": "Baby Yeti" - }, - "fortune_4": { - "price": 798000, - "name": "Fortune 4" - }, - "mender_helmet": { - "price": 36999, - "name": "Mender Helmet" - }, - "pure_mithril": { - "price": 662351, - "name": "Pure Mithril" - }, - "dragon_hunter_1": { - "price": 1200000, - "name": "Dragon Hunter 1" - }, - "null_blade": { - "price": 44800000, - "name": "Null Blade" - }, - "voodoo_doll": { - "price": 1250000, - "name": "Voodoo Doll" - }, - "goblin_helmet": { - "price": 4000, - "name": "Goblin Helmet" - }, - "lvl_1_epic_ghoul": { - "price": 25000, - "name": "Ghoul" - }, - "pigs_foot": { - "price": 40000, - "name": "Pig's Foot" - }, - "ultimate_rend_2": { - "price": 1550000, - "name": "Ultimate Rend 2" - }, - "ultimate_last_stand_4": { - "price": 2298000, - "name": "Ultimate Last Stand 4" - }, - "pristine_5": { - "price": 14800000, - "name": "Pristine 5" - }, - "foraging_3_portal": { - "price": 150000, - "name": "Portal To Jungle Island" - }, - "skeleton_master_helmet": { - "price": 50000, - "name": "Skeleton Master Helmet" - }, - "lvl_1_legendary_megalodon": { - "price": 2800000, - "name": "Megalodon" - }, - "ultimate_bank_3": { - "price": 50000, - "name": "Ultimate Bank 3" - }, - "revenant_catalyst": { - "price": 19000, - "name": "Revenant Catalyst" - }, - "lvl_1_legendary_rat": { - "price": 1100000, - "name": "Rat" - }, - "lvl_100_legendary_guardian": { - "price": 4500000, - "name": "Guardian" - }, - "lvl_100_legendary_guardian_skin_guardian": { - "price": 210000000, - "name": "Guardian" - }, - "lvl_100_legendary_guardian_skin_guardian_candy_10": { - "price": 240000000, - "name": "Guardian" - }, - "lvl_100_common_sheep": { - "price": 2999999, - "name": "Common Sheep" - }, - "giant_fragment_diamond": { - "price": 890000, - "name": "Diamante's Handle" - }, - "golem_armor_helmet": { - "price": 120000, - "name": "Golem Armor Helmet" - }, - "perfect_helmet_1": { - "price": 512000, - "name": "Helmet - Tier I" - }, - "roofed_forest_island": { - "price": 40000, - "name": "Roofed Forest Island" - }, - "seal_of_the_family": { - "price": 74900000, - "name": "Seal Of The Family" - }, - "plasmaflux_power_orb": { - "price": 288900000, - "name": "Plasmaflux Power Orb" - }, - "pet_skin_whale_orca": { - "price": 55000000, - "name": "Orca Blue Whale Skin" - }, - "pet_skin_phoenix_ice": { - "price": 7777777, - "name": "Ice Phoenix Skin" - }, - "revenant_sword": { - "price": 697800, - "name": "Revenant Falchion" - }, - "barrier": { - "price": 60000, - "name": "Barrier" - }, - "lvl_1_epic_spider": { - "price": 400000, - "name": "Spider" - }, - "super_undead_bow": { - "price": 1400000, - "name": "Super Undead Bow" - }, - "atomsplit_katana": { - "price": 84000000, - "name": "Atomsplit Katana" - }, - "pet_skin_tiger_saber_tooth": { - "price": 13400000, - "name": "Saber-tooth Tiger Skin" - }, - "shadow_assassin_crimson": { - "price": 11500000, - "name": "Crimson Skin" - }, - "lvl_1_legendary_spider": { - "price": 1849999, - "name": "Spider" - }, - "sponge_helmet": { - "price": 475000, - "name": "Sponge Helmet" - }, - "optical_lens": { - "price": 266, - "name": "Optical Lens" - }, - "catacombs_expert_ring": { - "price": 32000000, - "name": "Catacombs Expert Ring" - }, - "pet_item_mining_skill_boost_common": { - "price": 139000, - "name": "Mining Exp Boost" - }, - "shadow_assassin_helmet": { - "price": 1566000, - "name": "Shadow Assassin Helmet" - }, - "pet_item_combat_skill_boost_uncommon": { - "price": 27000, - "name": "Combat Exp Boost" - }, - "lvl_100_epic_sheep": { - "price": 4995000, - "name": "Sheep" - }, - "salmon_opal": { - "price": 49999, - "name": "Salmon Opal" - }, - "pet_item_fishing_skill_boost_common": { - "price": 50000, - "name": "Fishing Exp Boost" - }, - "goblin_omelette_spicy": { - "price": 3997000, - "name": "Goblin Omelette" - }, - "survivor_cube": { - "price": 4000000, - "name": "Survivor Cube" - }, - "zombie_lord_boots": { - "price": 200000, - "name": "Zombie Lord Boots" - }, - "reforge_anvil": { - "price": 899000, - "name": "Reforge Anvil" - }, - "pet_skin_rabbit_aquamarine": { - "price": 27000000, - "name": "Aquamarine Rabbit Skin" - }, - "mineral_boots": { - "price": 229000, - "name": "Mineral Boots" - }, - "goldor_the_fish": { - "price": 99000, - "name": "Goldor The Fish" - }, - "spooky_chestplate": { - "price": 500000, - "name": "Spooky Chestplate" - }, - "ultimate_no_pain_no_gain_3": { - "price": 150000, - "name": "Ultimate No Pain No Gain 3" - }, - "infinite_quiver_10": { - "price": 140000, - "name": "Infinite Quiver 10" - }, - "spider_ring": { - "price": 75000, - "name": "Spider Ring" - }, - "fourth_master_star": { - "price": 43000000, - "name": "Fourth Master Star" - }, - "turbo_pumpkin_1": { - "price": 99000, - "name": "Turbo Pumpkin 1" - }, - "challenge_rod": { - "price": 99000, - "name": "Challenging Rod" - }, - "gemstone_fuel_tank": { - "price": 41111111, - "name": "Gemstone Fuel Tank" - }, - "rejuvenate_3": { - "price": 330000, - "name": "Rejuvenate 3" - }, - "blaze_boots": { - "price": 1200000, - "name": "Blaze Boots" - }, - "lvl_100_legendary_endermite": { - "price": 6800000, - "name": "Endermite" - }, - "lvl_100_legendary_endermite_skin_endermite_radiant": { - "price": 45900000, - "name": "Endermite" - }, - "lvl_100_legendary_endermite_skin_endermite_radiant_candy_1": { - "price": 25000000, - "name": "Endermite" - }, - "talisman_enrichment_sea_creature_chance": { - "price": 1900000, - "name": "Sea Creature Chance Enrichment" - }, - "thorns_boots": { - "price": 2500000, - "name": "Spirit Boots" - }, - "gemstone_drill_3": { - "price": 8499999, - "name": "Topaz Drill Kgr-12" - }, - "salmon_leggings_new": { - "price": 91000, - "name": "Salmon Leggings" - }, - "lvl_1_legendary_pigman": { - "price": 4900000, - "name": "Pigman" - }, - "candy_corn": { - "price": 3109, - "name": "Candy Corn" - }, - "thunderlord_6": { - "price": 29000, - "name": "Thunderlord 6" - }, - "dirt_bottle": { - "price": 0, - "name": "Dirt Bottle" - }, - "last_breath": { - "price": 4499999, - "name": "Last Breath" - }, - "turbo_potato_3": { - "price": 649999, - "name": "Turbo Potato 3" - }, - "life_steal_4": { - "price": 300000, - "name": "Life Steal 4" - }, - "lvl_1_legendary_phoenix": { - "price": 64000000, - "name": "Phoenix" - }, - "starred_adaptive_chestplate": { - "price": 3999999, - "name": "Adaptive Chestplate" - }, - "zombie_commander_whip": { - "price": 25000, - "name": "Zombie Commander Whip" - }, - "sniper_bow": { - "price": 5038, - "name": "Sniper Bow" - }, - "turbo_cane_5": { - "price": 1050000, - "name": "Turbo Cane 5" - }, - "rare_diamond": { - "price": 9, - "name": "Rare Diamond" - }, - "lvl_1_rare_rock": { - "price": 500000, - "name": "Rare Rock" - }, - "jerry_talisman_purple": { - "price": 24600000, - "name": "Purple Jerry Talisman" - }, - "cubism_6": { - "price": 23000000, - "name": "Cubism 6" - }, - "hardened_diamond_boots": { - "price": 15000, - "name": "Hardened Diamond Boots" - }, - "candy_artifact": { - "price": 696000, - "name": "Candy Artifact" - }, - "lvl_100_legendary_rat": { - "price": 18999998, - "name": "Rat" - }, - "lvl_1_epic_skeleton": { - "price": 20000, - "name": "Skeleton" - }, - "lvl_1_legendary_tiger": { - "price": 18800000, - "name": "Tiger" - }, - "zog_anvil": { - "price": 840000, - "name": "Zog Anvil" - }, - "bat_person_helmet": { - "price": 350000, - "name": "Bat Person Helmet" - }, - "lvl_1_epic_pig": { - "price": 180000, - "name": "Pig" - }, - "battle_disc": { - "price": 3000, - "name": "Battle Disc" - }, - "ultimate_no_pain_no_gain_2": { - "price": 30000, - "name": "Ultimate No Pain No Gain 2" - }, - "turbo_melon_5": { - "price": 2599000, - "name": "Turbo Melon 5" - }, - "lvl_1_legendary_golem": { - "price": 3399000, - "name": "Golem" - }, - "florid_zombie_sword": { - "price": 3100000, - "name": "Florid Zombie Sword" - }, - "beacon_1": { - "price": 568000, - "name": "Beacon I" - }, - "respite_2": { - "price": 200000, - "name": "Respite 2" - }, - "hope_of_the_resistance": { - "price": 300000, - "name": "Staff Of The Rising Sun" - }, - "frozen_chicken": { - "price": 5000, - "name": "Frozen Chicken" - }, - "toil_log": { - "price": 0, - "name": "Toil Log" - }, - "gift_the_fish": { - "price": 50000, - "name": "Gift The Fish" - }, - "lvl_100_legendary_mithril_golem": { - "price": 3900000, - "name": "Mithril Golem" - }, - "perfect_boots_3": { - "price": 2000000, - "name": "Boots - Tier Iii" - }, - "perfectly_cut_fuel_tank": { - "price": 82000000, - "name": "Perfectly-cut Fuel Tank" - }, - "lvl_100_legendary_griffin": { - "price": 38500000, - "name": "Griffin" - }, - "gold_scarf_head": { - "price": 399999, - "name": "Golden Scarf Head" - }, - "lvl_1_uncommon_wolf": { - "price": 500000, - "name": "Uncommon Wolf" - }, - "turbo_cactus_3": { - "price": 998000, - "name": "Turbo Cactus 3" - }, - "lvl_100_legendary_ammonite": { - "price": 33500000, - "name": "Ammonite" - }, - "blessed_fruit": { - "price": 1011085, - "name": "Blessed Fruit" - }, - "lvl_1_legendary_squid": { - "price": 13500000, - "name": "Squid" - }, - "ultimate_combo_5": { - "price": 1379989, - "name": "Ultimate Combo 5" - }, - "holy_dragon_helmet": { - "price": 160000, - "name": "Holy Dragon Helmet" - }, - "holy_dragon_helmet_skin_holy_baby": { - "price": 299000000, - "name": "Holy Dragon Helmet" - }, - "holy_dragon_helmet_skin_holy_shimmer": { - "price": 69696969, - "name": "Holy Dragon Helmet" - }, - "turbo_wheat_2": { - "price": 70000, - "name": "Turbo Wheat 2" - }, - "life_steal_5": { - "price": 13750000, - "name": "Life Steal 5" - }, - "pet_skin_sheep_neon_yellow": { - "price": 127777777, - "name": "Neon Yellow Sheep Skin" - }, - "ultimate_wisdom_2": { - "price": 450000, - "name": "Ultimate Wisdom 2" - }, - "island_npc": { - "price": 666666, - "name": "Island Npc" - }, - "master_skull_tier_2": { - "price": 1390000, - "name": "Master Skull - Tier 2" - }, - "rock_gemstone": { - "price": 1289999, - "name": "Rock Gemstone" - }, - "gold_necron_head": { - "price": 16200000, - "name": "Golden Necron Head" - }, - "diamond_sadan_head": { - "price": 145000000, - "name": "Diamond Sadan Head" - }, - "devour_ring": { - "price": 1700000, - "name": "Devour Ring" - }, - "pet_skin_elephant_green": { - "price": 55000000, - "name": "Green Elephant Skin" - }, - "pet_item_combat_skill_boost_rare": { - "price": 399999, - "name": "Combat Exp Boost" - }, - "soulflow_battery": { - "price": 2599999, - "name": "Soulflow Battery" - }, - "pet_skin_dragon_neon_blue": { - "price": 37800000, - "name": "Neon Blue Ender Dragon Skin" - }, - "death_bow": { - "price": 2200000, - "name": "Death Bow" - }, - "pet_item_quick_claw": { - "price": 104999999, - "name": "Quick Claw" - }, - "magical_milk_bucket": { - "price": 100000, - "name": "Magical Milk Bucket" - }, - "ultimate_wise_3": { - "price": 935000, - "name": "Wise 3" - }, - "cheap_tuxedo_boots": { - "price": 200000, - "name": "Cheap Tuxedo Oxfords" - }, - "monster_egg": { - "price": 8000000, - "name": "Spawn Egg" - }, - "plasma_nucleus": { - "price": 245000000, - "name": "Plasma Nucleus" - }, - "chest": { - "price": 10, - "name": "Chest" - }, - "pet_skin_silverfish": { - "price": 112000000, - "name": "Fortified Silverfish Skin" - }, - "pet_skin_dragon_neon_red": { - "price": 50000000, - "name": "Neon Red Ender Dragon Skin" - }, - "lvl_1_legendary_mithril_golem": { - "price": 1074000, - "name": "Mithril Golem" - }, - "vicious_5": { - "price": 54000000, - "name": "Vicious 5" - }, - "lvl_1_rare_horse": { - "price": 400000, - "name": "Rare Horse" - }, - "perfect_boots_2": { - "price": 1000000, - "name": "Boots - Tier Ii" - }, - "adaptive_helmet": { - "price": 1750000, - "name": "Adaptive Helmet" - }, - "lvl_100_legendary_parrot": { - "price": 28000000, - "name": "Parrot" - }, - "lvl_100_legendary_parrot_skin_parrot_gold_macaw": { - "price": 69420420, - "name": "Parrot" - }, - "syphon_5": { - "price": 109000000, - "name": "Syphon 5" - }, - "lethality_6": { - "price": 130000, - "name": "Lethality 6" - }, - "mineral_leggings": { - "price": 300000, - "name": "Mineral Leggings" - }, - "pet_item_tier_boost": { - "price": 56500000, - "name": "Tier Boost" - }, - "ultimate_bank_4": { - "price": 139000, - "name": "Ultimate Bank 4" - }, - "egg_the_fish": { - "price": 5500000, - "name": "Egg The Fish" - }, - "master_skull_tier_1": { - "price": 1199999, - "name": "Master Skull - Tier 1" - }, - "goblin_omelette_sunny_side": { - "price": 7900000, - "name": "Sunny Side Goblin Omelette" - }, - "lvl_1_uncommon_jerry": { - "price": 50000, - "name": "Uncommon Jerry" - }, - "lvl_1_uncommon_guardian": { - "price": 275000, - "name": "Uncommon Guardian" - }, - "ultimate_last_stand_5": { - "price": 4400000, - "name": "Ultimate Last Stand 5" - }, - "zombie_soldier_leggings": { - "price": 5037, - "name": "Zombie Soldier Leggings" - }, - "dungeon_wizard_crystal": { - "price": 13000000, - "name": "Wizard's Crystal" - }, - "pet_skin_black_cat_onyx": { - "price": 16999900, - "name": "Onyx Black Cat Skin" - }, - "silk_edge_sword": { - "price": 2990000, - "name": "Silk-edge Sword" - }, - "lucky_hoof": { - "price": 500000, - "name": "Hoof" - }, - "turbo_coco_5": { - "price": 2400000, - "name": "Turbo Coco 5" - }, - "goblin_leggings": { - "price": 3000, - "name": "Goblin Leggings" - }, - "zombie_leggings": { - "price": 185000, - "name": "Zombie Leggings" - }, - "lvl_1_legendary_chicken": { - "price": 700000, - "name": "Chicken" - }, - "pet_skin_dragon_neon_purple": { - "price": 32000000, - "name": "Neon Purple Ender Dragon Skin" - }, - "exceedingly_rare_ender_artifact_upgrader": { - "price": 34000000, - "name": "Exceedingly Rare Ender Artifact Upgrader" - }, - "lvl_100_epic_jellyfish": { - "price": 4000000, - "name": "Jellyfish" - }, - "critical_7": { - "price": 59000000, - "name": "Critical 7" - }, - "weak_wolf_catalyst": { - "price": 72000, - "name": "Weak Wolf Catalyst" - }, - "lvl_100_rare_scatha": { - "price": 85000000, - "name": "Rare Scatha" - }, - "crystallized_heart": { - "price": 735000, - "name": "Crystallized Heart" - }, - "candy_talisman": { - "price": 115000, - "name": "Candy Talisman" - }, - "feather_falling_10": { - "price": 490000, - "name": "Feather Falling 10" - }, - "rejuvenate_2": { - "price": 140000, - "name": "Rejuvenate 2" - }, - "lvl_100_epic_scatha": { - "price": 158690000, - "name": "Scatha" - }, - "perfect_forge": { - "price": 49999999, - "name": "Skin" - }, - "ultimate_combo_4": { - "price": 850000, - "name": "Ultimate Combo 4" - }, - "ink_wand": { - "price": 5950000, - "name": "Ink Wand" - }, - "pet_item_toy_jerry": { - "price": 285000, - "name": "Jerry 3d Glasses" - }, - "mana_flux_power_orb": { - "price": 2300000, - "name": "Mana Flux Power Orb" - }, - "turbo_warts_4": { - "price": 469000, - "name": "Turbo Warts 4" - }, - "ultimate_legion_2": { - "price": 3199000, - "name": "Ultimate Legion 2" - }, - "mithril_plate": { - "price": 3799999, - "name": "Mithril Plate" - }, - "danger_2_portal": { - "price": 248000, - "name": "Portal To The Crimson Isle" - }, - "skeleton_lord_chestplate": { - "price": 99999, - "name": "Skeleton Lord Chestplate" - }, - "elegant_tuxedo_chestplate": { - "price": 30000000, - "name": "Elegant Tuxedo Jacket" - }, - "turbo_cane_1": { - "price": 50000, - "name": "Turbo Cane 1" - }, - "smarty_pants_2": { - "price": 1332999, - "name": "Smarty Pants 2" - }, - "lvl_1_epic_flying_fish": { - "price": 799000, - "name": "Flying Fish" - }, - "titanium_drill_engine": { - "price": 47190000, - "name": "Titanium-plated Drill Engine" - }, - "lvl_1_legendary_ocelot": { - "price": 1850000, - "name": "Ocelot" - }, - "lvl_1_legendary_ocelot_skin_ocelot_snow_tiger": { - "price": 16000000, - "name": "Ocelot" - }, - "winter_rod": { - "price": 90000, - "name": "Winter Rod" - }, - "lvl_100_rare_guardian": { - "price": 1099000, - "name": "Rare Guardian" - }, - "flamebreaker_boots": { - "price": 1150000, - "name": "Ember Ash Boots" - }, - "shady_ring": { - "price": 15000000, - "name": "Shady Ring" - }, - "beacon_2": { - "price": 4100000, - "name": "Beacon Ii" - }, - "lvl_1_rare_sheep": { - "price": 200000, - "name": "Rare Sheep" - }, - "talisman_enrichment_critical_damage": { - "price": 1900000, - "name": "Critical Damage Enrichment" - }, - "zombie_commander_boots": { - "price": 120000, - "name": "Zombie Commander Boots" - }, - "refined_titanium_pickaxe": { - "price": 1500000, - "name": "Refined Titanium Pickaxe" - }, - "recall_potion": { - "price": 2700000, - "name": "Recall Potion" - }, - "pet_item_fishing_skill_boost_uncommon": { - "price": 16000, - "name": "Fishing Exp Boost" - }, - "mining_1_travel_scroll": { - "price": 269000, - "name": "Travel Scroll To The Gold Mine" - }, - "pet_item_combat_skill_boost_common": { - "price": 59000, - "name": "Combat Exp Boost" - }, - "turbo_melon_1": { - "price": 79999, - "name": "Turbo Melon 1" - }, - "purple_small_backpack": { - "price": 1500000, - "name": "Small Backpack" - }, - "spooky_leggings": { - "price": 500000, - "name": "Spooky Leggings" - }, - "the_cake": { - "price": 640000, - "name": "The Cake" - }, - "judgement_core": { - "price": 384499999, - "name": "Judgement Core" - }, - "skeletor_leggings": { - "price": 10036, - "name": "Skeletor Leggings" - }, - "lvl_100_rare_dolphin": { - "price": 3400000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_rock": { - "price": 18900000, - "name": "Rock" - }, - "lvl_100_legendary_rock_skin_rock_cool": { - "price": 450000000, - "name": "Rock" - }, - "lvl_100_legendary_rock_skin_rock_laugh": { - "price": 899999000, - "name": "Rock" - }, - "lvl_100_legendary_rock_skin_rock_smile": { - "price": 650000000, - "name": "Rock" - }, - "lvl_100_legendary_rock_skin_rock_thinking": { - "price": 844000000, - "name": "Rock" - }, - "lvl_100_legendary_rock_skin_rock_embarrassed": { - "price": 720000000, - "name": "Rock" - }, - "great_carrot_candy": { - "price": 205000, - "name": "Great Carrot Candy" - }, - "lvl_1_legendary_sheep": { - "price": 4099999, - "name": "Sheep" - }, - "crystal_chestplate": { - "price": 940000, - "name": "Crystal Chestplate" - }, - "magma_core": { - "price": 450000, - "name": "Magma Core" - }, - "sharpness_7": { - "price": 64444444, - "name": "Sharpness 7" - }, - "lvl_1_legendary_wither_skeleton": { - "price": 2799000, - "name": "Wither Skeleton" - }, - "sponge_boots": { - "price": 375000, - "name": "Spongy Shoes" - }, - "true_essence": { - "price": 40000, - "name": "True Essence" - }, - "lvl_1_epic_bal": { - "price": 5800000, - "name": "Bal" - }, - "mining_3_travel_scroll": { - "price": 10000, - "name": "Travel Scroll To Dwarven Mines" - }, - "diamond_necron_head": { - "price": 124000000, - "name": "Diamond Necron Head" - }, - "bat_person_boots": { - "price": 450000, - "name": "Bat Person Boots" - }, - "skeletor_boots": { - "price": 10056, - "name": "Skeletor Boots" - }, - "lvl_100_legendary_blaze": { - "price": 49000000, - "name": "Blaze" - }, - "lvl_100_legendary_blaze_skin_blaze_frozen": { - "price": 130000000, - "name": "Blaze" - }, - "lvl_100_legendary_blaze_skin_blaze_frozen_candy_10": { - "price": 81949999, - "name": "Blaze" - }, - "aote_stone": { - "price": 4999998, - "name": "Warped Stone" - }, - "pet_item_lucky_clover": { - "price": 3800000, - "name": "Clover" - }, - "fancy_tuxedo_chestplate": { - "price": 5400000, - "name": "Fancy Tuxedo Jacket" - }, - "shiny_rod": { - "price": 900000, - "name": "Rod" - }, - "dull_shark_tooth_necklace": { - "price": 25000, - "name": "Dull Shark Tooth Necklace" - }, - "spider_artifact": { - "price": 4700000, - "name": "Spider Artifact" - }, - "diver_helmet": { - "price": 900000, - "name": "Diver's Mask" - }, - "diver_helmet_skin_diver_puffer": { - "price": 30000000, - "name": "Diver's Mask" - }, - "double_plant": { - "price": 64, - "name": "Sunflower" - }, - "goblin_omelette_pesto": { - "price": 880000, - "name": "Pesto Goblin Omelette" - }, - "crooked_artifact": { - "price": 40000000, - "name": "Crooked Artifact" - }, - "lvl_1_uncommon_squid": { - "price": 400000, - "name": "Uncommon Squid" - }, - "snow_suit_chestplate": { - "price": 15000, - "name": "Snow Suit Chestplate" - }, - "starlight_wand": { - "price": 50000, - "name": "Wand" - }, - "mithril_fuel_tank": { - "price": 14000000, - "name": "Mithril-infused Fuel Tank" - }, - "turbo_pumpkin_4": { - "price": 2000000, - "name": "Turbo Pumpkin 4" - }, - "lvl_1_rare_blue_whale": { - "price": 299999, - "name": "Rare Blue Whale" - }, - "shadow_assassin_chestplate": { - "price": 17500000, - "name": "Shadow Assassin Chestplate" - }, - "turbo_potato_4": { - "price": 1600000, - "name": "Turbo Potato 4" - }, - "titanium_fuel_tank": { - "price": 14000000, - "name": "Titanium-infused Fuel Tank" - }, - "diver_chestplate": { - "price": 1500000, - "name": "Diver's Shirt" - }, - "ultimate_no_pain_no_gain_1": { - "price": 18000, - "name": "Ultimate No Pain No Gain 1" - }, - "lvl_100_legendary_ocelot": { - "price": 15000000, - "name": "Ocelot" - }, - "lvl_100_legendary_ocelot_skin_ocelot_snow_tiger": { - "price": 58000000, - "name": "Ocelot" - }, - "lvl_100_legendary_ocelot_skin_ocelot_snow_tiger_candy_10": { - "price": 25500000, - "name": "Ocelot" - }, - "lvl_100_legendary_skeleton_horse": { - "price": 23000000, - "name": "Skeleton Horse" - }, - "lvl_100_legendary_skeleton_horse_skin_horse_zombie": { - "price": 70000000, - "name": "Skeleton Horse" - }, - "mana_steal_2": { - "price": 90000, - "name": "Mana Steal 2" - }, - "zombie_lord_chestplate": { - "price": 149000, - "name": "Zombie Lord Chestplate" - }, - "slime_bow": { - "price": 4000000, - "name": "Slime Bow" - }, - "lvl_100_legendary_chicken": { - "price": 23300000, - "name": "Chicken" - }, - "lvl_100_legendary_chicken_skin_chicken_baby_chick": { - "price": 74990000, - "name": "Chicken" - }, - "pet_skin_horse_zombie": { - "price": 28900000, - "name": "Zombie Skeleton Horse Skin" - }, - "armor_of_yog_boots": { - "price": 250000, - "name": "Yog Boots" - }, - "turbo_cane_3": { - "price": 270000, - "name": "Turbo Cane 3" - }, - "lvl_1_epic_monkey": { - "price": 1400000, - "name": "Monkey" - }, - "speedster_helmet": { - "price": 400000, - "name": "Speedster Helmet" - }, - "luck_7": { - "price": 29888888, - "name": "Luck 7" - }, - "trick_or_treat_bag": { - "price": 25000, - "name": "Trick Or Treat Bag" - }, - "wand_of_atonement": { - "price": 3800000, - "name": "Wand Of Atonement" - }, - "lvl_100_legendary_lion": { - "price": 43500000, - "name": "Lion" - }, - "lvl_100_legendary_spirit": { - "price": 20000000, - "name": "Spirit" - }, - "holy_baby": { - "price": 219000000, - "name": "Baby Skin" - }, - "perfect_chestplate_3": { - "price": 2200000, - "name": "Chestplate - Tier Iii" - }, - "lvl_100_epic_bat": { - "price": 2500000, - "name": "Bat" - }, - "lvl_100_epic_guardian": { - "price": 2700000, - "name": "Guardian" - }, - "first_master_star": { - "price": 14000000, - "name": "First Master Star" - }, - "lvl_1_legendary_baby_yeti": { - "price": 28400000, - "name": "Baby Yeti" - }, - "lvl_1_legendary_endermite": { - "price": 1900000, - "name": "Endermite" - }, - "revenant_boots": { - "price": 95000, - "name": "Revenant Boots" - }, - "ultimate_wisdom_1": { - "price": 159000, - "name": "Ultimate Wisdom 1" - }, - "lvl_1_legendary_ghoul": { - "price": 390000, - "name": "Ghoul" - }, - "sinseeker_scythe": { - "price": 9250000, - "name": "Sinseeker Scythe" - }, - "lvl_1_legendary_magma_cube": { - "price": 1000000, - "name": "Magma Cube" - }, - "bat_person_leggings": { - "price": 650000, - "name": "Bat Person Leggings" - }, - "ember_fragment": { - "price": 139000, - "name": "Ember Fragment" - }, - "turbo_melon_2": { - "price": 240000, - "name": "Turbo Melon 2" - }, - "gyrokinetic_wand": { - "price": 33499000, - "name": "Gyrokinetic Wand" - }, - "metal_chestplate": { - "price": 250000, - "name": "Metal Chestplate" - }, - "fungi_cutter": { - "price": 700000, - "name": "Fungi Cutter" - }, - "compact_1": { - "price": 1498000, - "name": "Compact 1" - }, - "lvl_1_legendary_hound": { - "price": 1799999, - "name": "Hound" - }, - "lvl_1_legendary_hound_skin_hound_beagle": { - "price": 13000000, - "name": "Hound" - }, - "lvl_1_epic_bat": { - "price": 69000, - "name": "Bat" - }, - "pet_item_farming_skill_boost_common": { - "price": 109000, - "name": "Farming Exp Boost" - }, - "colossal_exp_bottle_upgrade": { - "price": 400000, - "name": "Colossal Experience Bottle Upgrade" - }, - "turbo_cane_2": { - "price": 90000, - "name": "Turbo Cane 2" - }, - "turbo_cactus_1": { - "price": 80000, - "name": "Turbo Cactus 1" - }, - "ultimate_chimera_1": { - "price": 104800000, - "name": "Ultimate Chimera 1" - }, - "lvl_1_epic_squid": { - "price": 3700000, - "name": "Squid" - }, - "red_claw_ring": { - "price": 1100000, - "name": "Red Claw Ring" - }, - "mastiff_helmet": { - "price": 400000, - "name": "Mastiff Crown" - }, - "mastiff_helmet_skin_mastiff_puppy": { - "price": 65000000, - "name": "Mastiff Crown" - }, - "execute_6": { - "price": 45000000, - "name": "Execute 6" - }, - "turbo_pumpkin_5": { - "price": 4000000, - "name": "Turbo Pumpkin 5" - }, - "speedster_chestplate": { - "price": 497000, - "name": "Speedster Chestplate" - }, - "void_sepulture_travel_scroll": { - "price": 1870000, - "name": "Travel Scroll To The Void Sepulture" - }, - "lvl_1_epic_jerry": { - "price": 120000, - "name": "Jerry" - }, - "lvl_1_common_horse": { - "price": 300000, - "name": "Common Horse" - }, - "pet_item_lucky_clover_drop": { - "price": 3000000, - "name": "Clover Core" - }, - "speed_ring": { - "price": 80000, - "name": "Speed Ring" - }, - "krampus_helmet": { - "price": 2000000, - "name": "Krampus Helmet" - }, - "hegemony_artifact": { - "price": 359990000, - "name": "Hegemony Artifact" - }, - "lvl_1_legendary_jellyfish": { - "price": 14400000, - "name": "Jellyfish" - }, - "gloomlock_grimoire": { - "price": 4499000, - "name": "Gloomlock Grimoire" - }, - "farming_island": { - "price": 25000, - "name": "Farming Island" - }, - "venomous_6": { - "price": 39000000, - "name": "Venomous 6" - }, - "great_spook_helmet": { - "price": 570000, - "name": "Great Spook Helmet" - }, - "pet_skin_elephant_pink": { - "price": 312000000, - "name": "Pink Elephant Skin" - }, - "ultimate_jerry_4": { - "price": 370000, - "name": "Ultimate Jerry 4" - }, - "amber_polished_drill_engine": { - "price": 79000000, - "name": "Amber-polished Drill Engine" - }, - "mastiff_puppy": { - "price": 64000000, - "name": "Puppy Skin" - }, - "power_7": { - "price": 68500000, - "name": "Power 7" - }, - "spider_queens_stinger": { - "price": 100000, - "name": "Spider Queen's Stinger" - }, - "perfect_helmet_12": { - "price": 9000000, - "name": "Perfect Helmet - Tier Xii" - }, - "perfect_helmet_12_skin_perfect_forge": { - "price": 90000000, - "name": "Perfect Helmet - Tier Xii" - }, - "turbo_carrot_1": { - "price": 70000, - "name": "Turbo Carrot 1" - }, - "sponge_chestplate": { - "price": 1099999, - "name": "Sponge Chestplate" - }, - "lvl_1_legendary_rock": { - "price": 10000000, - "name": "Rock" - }, - "refined_mithril_pickaxe": { - "price": 2300000, - "name": "Mithril Pickaxe" - }, - "emerald_armor_helmet": { - "price": 700000, - "name": "Emerald Armor Helmet" - }, - "spooky_boots": { - "price": 399000, - "name": "Spooky Boots" - }, - "gold_thorn_head": { - "price": 1300000, - "name": "Golden Thorn Head" - }, - "park_cave_travel_scroll": { - "price": 12000, - "name": "Travel Scroll To Howling Cave" - }, - "pet_item_fishing_skill_boost_epic": { - "price": 6545000, - "name": "Fishing Exp Boost" - }, - "lvl_1_legendary_ender_dragon": { - "price": 660000000, - "name": "Ender Dragon" - }, - "blue_egg": { - "price": 12000000, - "name": "Blue Egged Skin" - }, - "lvl_1_legendary_blaze": { - "price": 28400000, - "name": "Blaze" - }, - "sharp_shark_tooth_necklace": { - "price": 300000, - "name": "Shark Tooth Necklace" - }, - "lvl_100_rare_armadillo": { - "price": 800000, - "name": "Rare Armadillo" - }, - "talisman_enrichment_strength": { - "price": 1998000, - "name": "Strength Enrichment" - }, - "armor_of_magma_leggings": { - "price": 450000, - "name": "Armor Of Magma Leggings" - }, - "ultimate_carrot_candy_upgrade": { - "price": 3990000, - "name": "Ultimate Carrot Candy Upgrade" - }, - "crystal_hollows_travel_scroll": { - "price": 1890000, - "name": "Travel Scroll To The Crystal Hollows" - }, - "lvl_1_epic_rabbit": { - "price": 45000, - "name": "Rabbit" - }, - "lvl_100_epic_dolphin": { - "price": 8000000, - "name": "Dolphin" - }, - "lvl_100_epic_dolphin_skin_dolphin_snubfin": { - "price": 39000000, - "name": "Dolphin" - }, - "lvl_100_epic_dolphin_skin_dolphin_snubnose_purple": { - "price": 20000000, - "name": "Dolphin" - }, - "lvl_100_epic_dolphin_skin_dolphin_snubnose_green": { - "price": 18000000, - "name": "Dolphin" - }, - "ultimate_wise_2": { - "price": 350000, - "name": "Wise 2" - }, - "ultimate_jerry_2": { - "price": 40000, - "name": "Ultimate Jerry 2" - }, - "ghost_boots": { - "price": 389000, - "name": "Ghostly Boots" - }, - "bane_of_arthropods_6": { - "price": 8068, - "name": "Bane Of Arthropods 6" - }, - "super_cleaver": { - "price": 50000, - "name": "Super Cleaver" - }, - "lvl_1_epic_baby_yeti": { - "price": 8700000, - "name": "Baby Yeti" - }, - "growth_leggings": { - "price": 499000, - "name": "Leggings Of Growth" - }, - "strong_shimmer": { - "price": 34500000, - "name": "Shimmer Skin" - }, - "bane_of_arthropods_4": { - "price": 1500, - "name": "Bane Of Arthropods 4" - }, - "lvl_1_uncommon_bat": { - "price": 40000, - "name": "Uncommon Bat" - }, - "lvl_100_legendary_squid": { - "price": 28000000, - "name": "Squid" - }, - "lvl_100_legendary_squid_skin_squid_glow": { - "price": 55000000, - "name": "Squid" - }, - "ultimate_wisdom_3": { - "price": 1150000, - "name": "Ultimate Wisdom 3" - }, - "pond_island": { - "price": 89000, - "name": "Pond Island" - }, - "beheaded_horror": { - "price": 39000, - "name": "Beheaded Horror" - }, - "pet_skin_elephant_purple": { - "price": 61000000, - "name": "Purple Elephant Skin" - }, - "lvl_1_rare_flying_fish": { - "price": 400000, - "name": "Rare Flying Fish" - }, - "spooky_helmet": { - "price": 599000, - "name": "Spooky Helmet" - }, - "salmon_helmet": { - "price": 28000000, - "name": "Salmon Helmet" - }, - "ruby_polished_drill_engine": { - "price": 17999999, - "name": "Ruby-polished Drill Engine" - }, - "lvl_1_legendary_dolphin": { - "price": 10000000, - "name": "Dolphin" - }, - "lvl_1_legendary_dolphin_skin_dolphin_snubfin": { - "price": 23899000, - "name": "Dolphin" - }, - "golem_armor_leggings": { - "price": 320000, - "name": "Golem Armor Leggings" - }, - "dust_the_fish": { - "price": 4000000, - "name": "Dust The Fish" - }, - "perfect_chestplate_8": { - "price": 7699900, - "name": "Chestplate - Tier Viii" - }, - "turbo_warts_1": { - "price": 120, - "name": "Turbo Warts 1" - }, - "sadan_brooch": { - "price": 279997, - "name": "Sadan's Brooch" - }, - "turbo_carrot_4": { - "price": 1348000, - "name": "Turbo Carrot 4" - }, - "weird_tuba": { - "price": 1320000, - "name": "Weird Tuba" - }, - "lapis_armor_chestplate": { - "price": 8000, - "name": "Lapis Armor Chestplate" - }, - "starred_stone_blade": { - "price": 850000, - "name": "Adaptive Blade" - }, - "lvl_100_legendary_bee": { - "price": 19400000, - "name": "Bee" - }, - "lvl_100_legendary_ghoul": { - "price": 21500000, - "name": "Ghoul" - }, - "soulflow_engine": { - "price": 17290000, - "name": "Soulflow Engine" - }, - "talisman_enrichment_ferocity": { - "price": 1999998, - "name": "Ferocity Enrichment" - }, - "infinite_superboom_tnt": { - "price": 40000000, - "name": "Infinityboom Tnt" - }, - "perfect_boots_5": { - "price": 3000000, - "name": "Perfect Boots - Tier V" - }, - "pet_skin_endermite_radiant": { - "price": 19900000, - "name": "Radiant Endermite Skin" - }, - "spirit_wing": { - "price": 5850000, - "name": "Spirit Wing" - }, - "cheap_tuxedo_chestplate": { - "price": 365000, - "name": "Cheap Tuxedo Jacket" - }, - "etherwarp_conduit": { - "price": 9550000, - "name": "Etherwarp Conduit" - }, - "perfect_boots_8": { - "price": 7000000, - "name": "Perfect Boots - Tier Viii" - }, - "foraging_1_portal": { - "price": 148000, - "name": "Portal To Birch Park" - }, - "bane_of_arthropods_7": { - "price": 2000000, - "name": "Bane Of Arthropods 7" - }, - "enchanted_book_bundle_big_brain": { - "price": 88000000, - "name": "Enchanted Book Bundle" - }, - "lvl_1_epic_dolphin": { - "price": 2500000, - "name": "Dolphin" - }, - "potato_spreading": { - "price": 99000, - "name": "Potato Spreading" - }, - "dragon_hunter_3": { - "price": 4890000, - "name": "Dragon Hunter 3" - }, - "pet_skin_jerry_green_elf": { - "price": 244444440, - "name": "Green Elf Jerry Skin" - }, - "undead_bow": { - "price": 40000, - "name": "Bow" - }, - "pet_skin_sheep_neon_green": { - "price": 213000000, - "name": "Neon Green Sheep Skin" - }, - "overload_2": { - "price": 1850000, - "name": "Overload 2" - }, - "necron_handle": { - "price": 1034999999, - "name": "Necron's Handle" - }, - "lvl_1_common_lion": { - "price": 50000, - "name": "Common Lion" - }, - "lvl_100_legendary_phoenix": { - "price": 99950000, - "name": "Phoenix" - }, - "lvl_100_legendary_phoenix_skin_phoenix_ice": { - "price": 130000000, - "name": "Phoenix" - }, - "yeti_sword": { - "price": 61477420, - "name": "Yeti Sword" - }, - "starred_adaptive_helmet": { - "price": 1750000, - "name": "Fierce Adaptive Helmet" - }, - "protection_6": { - "price": 4550000, - "name": "Protection 6" - }, - "beacon_5": { - "price": 32500000, - "name": "Beacon V" - }, - "pet_skin_wither": { - "price": 149000000, - "name": "Dark Wither Skeleton Skin" - }, - "social_display": { - "price": 99000, - "name": "Social Display" - }, - "soulflow_supercell": { - "price": 44000000, - "name": "Soulflow Supercell" - }, - "lvl_1_epic_armadillo": { - "price": 299000, - "name": "Armadillo" - }, - "perfect_chestplate_10": { - "price": 7500000, - "name": "Perfect Chestplate - Tier X" - }, - "razor_sharp_shark_tooth_necklace": { - "price": 6650000, - "name": "Shark Tooth Necklace" - }, - "lvl_1_uncommon_enderman": { - "price": 3000, - "name": "Uncommon Enderman" - }, - "ultimate_soul_eater_4": { - "price": 15499999, - "name": "Ultimate Soul Eater 4" - }, - "experiment_the_fish": { - "price": 50000, - "name": "Experiment The Fish" - }, - "wolf_ring": { - "price": 2400000, - "name": "Wolf Ring" - }, - "ultimate_combo_3": { - "price": 310000, - "name": "Ultimate Combo 3" - }, - "lvl_1_legendary_monkey": { - "price": 18999000, - "name": "Monkey" - }, - "revenant_chestplate": { - "price": 1350000, - "name": "Revenant Chestplate" - }, - "growth_7": { - "price": 100000000, - "name": "Growth 7" - }, - "lvl_100_uncommon_griffin": { - "price": 3390000, - "name": "Uncommon Griffin" - }, - "lvl_1_rare_magma_cube": { - "price": 85000, - "name": "Rare Magma Cube" - }, - "lvl_1_common_squid": { - "price": 295000, - "name": "Common Squid" - }, - "echolocator": { - "price": 25000, - "name": "Echolocator" - }, - "perfect_boots_1": { - "price": 409600, - "name": "Boots - Tier I" - }, - "jasper_power_scroll": { - "price": 1190000, - "name": "Jasper Power Scroll" - }, - "bingo_card": { - "price": 4799999, - "name": "Bingo Card" - }, - "recluse_fang": { - "price": 75000, - "name": "Recluse Fang" - }, - "perfect_leggings_2": { - "price": 2000000, - "name": "Perfect Leggings - Tier Ii" - }, - "ultimate_no_pain_no_gain_4": { - "price": 320000, - "name": "Ultimate No Pain No Gain 4" - }, - "lvl_100_legendary_tarantula": { - "price": 20500000, - "name": "Tarantula" - }, - "frozen_blaze_icicle": { - "price": 64989999, - "name": "Icicle Skin" - }, - "french_bread": { - "price": 23700000, - "name": "French Bread" - }, - "gold_claws": { - "price": 7000000, - "name": "Gold Claws" - }, - "zombie_artifact": { - "price": 2200000, - "name": "Zombie Artifact" - }, - "snipe_4": { - "price": 89900000, - "name": "Snipe 4" - }, - "lvl_100_epic_griffin": { - "price": 14999999, - "name": "Griffin" - }, - "lvl_100_legendary_bal": { - "price": 15699000, - "name": "Bal" - }, - "etherwarp_merger": { - "price": 399000, - "name": "Etherwarp Merger" - }, - "turbo_wheat_3": { - "price": 190000, - "name": "Turbo Wheat 3" - }, - "lvl_100_legendary_skeleton": { - "price": 25000000, - "name": "Skeleton" - }, - "mosquito_bow": { - "price": 10500000, - "name": "Mosquito Bow" - }, - "pet_skin_sheep_neon_red": { - "price": 220000000, - "name": "Neon Red Sheep Skin" - }, - "lvl_1_legendary_skeleton_horse": { - "price": 700000, - "name": "Skeleton Horse" - }, - "lvl_1_legendary_zombie": { - "price": 7000000, - "name": "Zombie" - }, - "extra_large_gemstone_sack": { - "price": 14000000, - "name": "Extra Large Gemstone Sack" - }, - "chestplate_of_the_pack": { - "price": 230000, - "name": "Chestplate Of The Pack" - }, - "guardian_chestplate": { - "price": 79000, - "name": "Guardian Chestplate" - }, - "bag_of_cash": { - "price": 27000000, - "name": "Bag Of Cash" - }, - "turbo_cactus_4": { - "price": 1600000, - "name": "Turbo Cactus 4" - }, - "wand_of_restoration": { - "price": 890000, - "name": "Wand Of Restoration" - }, - "pink_donut_personality": { - "price": 32500000, - "name": "Pink Donut Minion Skin" - }, - "valkyrie": { - "price": 1175000000, - "name": "Valkyrie" - }, - "turbo_pumpkin_2": { - "price": 395000, - "name": "Turbo Pumpkin 2" - }, - "lvl_1_rare_dolphin": { - "price": 800000, - "name": "Rare Dolphin" - }, - "shadow_assassin_mauve": { - "price": 14900000, - "name": "Mauve Skin" - }, - "lvl_1_epic_elephant": { - "price": 1075000, - "name": "Elephant" - }, - "steel_chestplate": { - "price": 3000000, - "name": "Steel Chestplate" - }, - "lvl_1_rare_squid": { - "price": 1000000, - "name": "Rare Squid" - }, - "hunter_talisman": { - "price": 4000000, - "name": "Hunter Talisman" - }, - "hardened_diamond_leggings": { - "price": 70000, - "name": "Hardened Diamond Leggings" - }, - "lvl_1_common_bat": { - "price": 45000, - "name": "Common Bat" - }, - "lvl_1_epic_spirit": { - "price": 400000, - "name": "Spirit" - }, - "lvl_1_common_pig": { - "price": 40000, - "name": "Common Pig" - }, - "pet_skin_rabbit_rose": { - "price": 24800000, - "name": "Rose Rabbit Skin" - }, - "lvl_1_epic_zombie": { - "price": 1000000, - "name": "Zombie" - }, - "wither_relic": { - "price": 61000000, - "name": "Wither Relic" - }, - "emerald_armor_chestplate": { - "price": 3400000, - "name": "Emerald Armor Chestplate" - }, - "master_skull_tier_6": { - "price": 149999999, - "name": "Master Skull - Tier 6" - }, - "ultimate_soul_eater_2": { - "price": 3810000, - "name": "Ultimate Soul Eater 2" - }, - "wither_artifact": { - "price": 49000000, - "name": "Wither Artifact" - }, - "lvl_1_common_guardian": { - "price": 290000, - "name": "Common Guardian" - }, - "overload_4": { - "price": 7675000, - "name": "Overload 4" - }, - "lvl_100_legendary_dolphin": { - "price": 29900000, - "name": "Dolphin" - }, - "lvl_100_legendary_dolphin_skin_dolphin_snubfin": { - "price": 80000000, - "name": "Dolphin" - }, - "lvl_100_legendary_dolphin_skin_dolphin_snubnose_green": { - "price": 59500000, - "name": "Dolphin" - }, - "lvl_100_legendary_dolphin_skin_dolphin_snubfin_candy_10": { - "price": 58000000, - "name": "Dolphin" - }, - "lvl_100_legendary_dolphin_skin_dolphin_snubnose_purple": { - "price": 75000000, - "name": "Dolphin" - }, - "lvl_1_legendary_bee": { - "price": 2700000, - "name": "Bee" - }, - "pet_item_bubblegum": { - "price": 6300000, - "name": "Bubblegum" - }, - "lvl_1_uncommon_sheep": { - "price": 3500000, - "name": "Uncommon Sheep" - }, - "smarty_pants_3": { - "price": 2999999, - "name": "Smarty Pants 3" - }, - "wrapped_gift_for_juliette": { - "price": 999000, - "name": "Secret Gift For Juliette" - }, - "diver_puffer": { - "price": 37699000, - "name": "Puffer Fish Skin" - }, - "speedster_leggings": { - "price": 780000, - "name": "Speedster Leggings" - }, - "tutti_frutti_poison": { - "price": 150000, - "name": "Tutti-frutti Flavored Poison" - }, - "lvl_1_epic_parrot": { - "price": 4000000, - "name": "Parrot" - }, - "lvl_100_epic_silverfish": { - "price": 1770000, - "name": "Silverfish" - }, - "beacon_4": { - "price": 18900000, - "name": "Beacon Iv" - }, - "lvl_1_rare_jerry": { - "price": 99000, - "name": "Rare Jerry" - }, - "armor_of_the_resistance_helmet": { - "price": 499000, - "name": "Helmet Of The Rising Sun" - }, - "respite_3": { - "price": 58000, - "name": "Respite 3" - }, - "titanium_pickaxe": { - "price": 1500000, - "name": "Titanium Pickaxe" - }, - "talisman_enrichment_defense": { - "price": 2000000, - "name": "Defense Enrichment" - }, - "giant_cleaver": { - "price": 3000000, - "name": "Cleaver" - }, - "holy_shimmer": { - "price": 48000000, - "name": "Shimmer Skin" - }, - "refined_amber": { - "price": 1299999, - "name": "Refined Amber" - }, - "lvl_1_epic_chicken": { - "price": 200000, - "name": "Chicken" - }, - "vicious_4": { - "price": 29000000, - "name": "Vicious 4" - }, - "lvl_1_uncommon_horse": { - "price": 490000, - "name": "Uncommon Horse" - }, - "dwarven_tankard": { - "price": 199000, - "name": "Dwarven Tankard" - }, - "lvl_1_legendary_griffin": { - "price": 31000000, - "name": "Griffin" - }, - "talisman_enrichment_walk_speed": { - "price": 1900000, - "name": "Speed Enrichment" - }, - "mithril_drill_engine": { - "price": 16990000, - "name": "Mithril-plated Drill Engine" - }, - "spider_egg_mixin": { - "price": 500000, - "name": "Spider Egg Mixin" - }, - "perfect_chestplate_9": { - "price": 10000000, - "name": "Perfect Chestplate - Tier Ix" - }, - "lvl_1_rare_ocelot": { - "price": 549000, - "name": "Rare Ocelot" - }, - "lvl_100_common_griffin": { - "price": 3000000, - "name": "Common Griffin" - }, - "cluck_the_fish": { - "price": 17500000, - "name": "Cluck The Fish" - }, - "lvl_1_rare_wolf": { - "price": 500000, - "name": "Rare Wolf" - }, - "pet_skin_chicken_baby_chick": { - "price": 29999999, - "name": "Baby Chick Chicken Skin" - }, - "dr_paper": { - "price": 30000, - "name": "Dctr. Paper" - }, - "lvl_1_legendary_bal": { - "price": 9200000, - "name": "Bal" - }, - "dctr_space_helm": { - "price": 1100000000, - "name": "Dctr's Space Helmet" - }, - "lvl_1_legendary_parrot": { - "price": 21000000, - "name": "Parrot" - }, - "zombie_lord_leggings": { - "price": 200000, - "name": "Zombie Lord Leggings" - }, - "armor_of_magma_helmet": { - "price": 450000, - "name": "Armor Of Magma Helmet" - }, - "lvl_100_epic_armadillo": { - "price": 1800000, - "name": "Armadillo" - }, - "turbo_carrot_2": { - "price": 200000, - "name": "Turbo Carrot 2" - }, - "wise_baby": { - "price": 332000000, - "name": "Baby Skin" - }, - "mercenary_axe": { - "price": 45000, - "name": "Mercenary Axe" - }, - "wither_helmet": { - "price": 2499999, - "name": "Wither Helmet" - }, - "lvl_100_legendary_snowman": { - "price": 35000000, - "name": "Snowman" - }, - "pet_skin_enderman": { - "price": 140000000, - "name": "Spooky Enderman Skin" - }, - "tarantula_black_widow": { - "price": 104000000, - "name": "Black Widow Skin" - }, - "dragon_hunter_5": { - "price": 17000000, - "name": "Dragon Hunter 5" - }, - "cleave_6": { - "price": 8777777, - "name": "Cleave 6" - }, - "jungle_amulet": { - "price": 3099999, - "name": "Jungle Amulet" - }, - "helix": { - "price": 15000, - "name": "Helix" - }, - "flame_breaker_chestplate": { - "price": 600000, - "name": "Flamebreaker Chestplate" - }, - "perfect_leggings_1": { - "price": 950000, - "name": "Leggings - Tier I" - }, - "holy_dragon_leggings": { - "price": 190000, - "name": "Holy Dragon Leggings" - }, - "foraging_4_portal": { - "price": 128000, - "name": "Portal To Savanna Woodland" - }, - "enchanted_jack_o_lantern": { - "price": 249000, - "name": "Lantern Helmet" - }, - "snow_snowglobe": { - "price": 49900000, - "name": "Snowglobe Skin" - }, - "museum_travel_scroll": { - "price": 190000, - "name": "Travel Scroll To Museum" - }, - "lvl_1_uncommon_elephant": { - "price": 165000, - "name": "Uncommon Elephant" - }, - "rejuvenate_4": { - "price": 726000, - "name": "Rejuvenate 4" - }, - "pet_skin_yeti_grown_up": { - "price": 92000000, - "name": "Grown-up Baby Yeti Skin" - }, - "overflux_capacitor": { - "price": 65000000, - "name": "Overflux Capacitor" - }, - "flame_breaker_boots": { - "price": 250000, - "name": "Flamebreaker Boots" - }, - "secret_dungeon_redstone_key": { - "price": 45000000, - "name": "Redstone Key" - }, - "lvl_100_legendary_zombie": { - "price": 38500000, - "name": "Zombie" - }, - "turbo_cactus_5": { - "price": 3899000, - "name": "Turbo Cactus 5" - }, - "lvl_1_uncommon_dolphin": { - "price": 90000, - "name": "Uncommon Dolphin" - }, - "lvl_1_common_rabbit": { - "price": 9000, - "name": "Common Rabbit" - }, - "heat_leggings": { - "price": 10000, - "name": "Heat Leggings" - }, - "thunderbolt_6": { - "price": 2000000, - "name": "Thunderbolt 6" - }, - "hub_castle_travel_scroll": { - "price": 220000, - "name": "Travel Scroll To Hub Castle" - }, - "mineral_helmet": { - "price": 229000, - "name": "Mineral Helmet" - }, - "lvl_100_uncommon_guardian": { - "price": 1000000, - "name": "Uncommon Guardian" - }, - "ultimate_swarm_4": { - "price": 4500000, - "name": "Ultimate Swarm 4" - }, - "turbo_pumpkin_3": { - "price": 449999, - "name": "Turbo Pumpkin 3" - }, - "pumpkin_launcher": { - "price": 7499000, - "name": "Pumpkin Launcher" - }, - "lvl_100_legendary_megalodon": { - "price": 21000000, - "name": "Megalodon" - }, - "pristine_4": { - "price": 8199999, - "name": "Pristine 4" - }, - "lvl_100_epic_parrot": { - "price": 7000000, - "name": "Parrot" - }, - "lvl_100_epic_mithril_golem": { - "price": 3500000, - "name": "Mithril Golem" - }, - "starlight_leggings": { - "price": 50000, - "name": "Starlight Leggings" - }, - "lvl_100_legendary_enderman": { - "price": 72000000, - "name": "Enderman" - }, - "talisman_enrichment_critical_chance": { - "price": 2000000, - "name": "Critical Chance Enrichment" - }, - "sapphire_polished_drill_engine": { - "price": 59000000, - "name": "Sapphire-polished Drill Engine" - }, - "snow_shovel": { - "price": 28000, - "name": "Snow Shovel" - }, - "end_portal_fumes_mixin": { - "price": 499000, - "name": "End Portal Fumes" - }, - "divan_drill": { - "price": 855000000, - "name": "Divan's Drill" - }, - "pet_item_hardened_scales_uncommon": { - "price": 1000000, - "name": "Hardened Scales" - }, - "astraea": { - "price": 1100000000, - "name": "Astraea" - }, - "lvl_1_uncommon_tiger": { - "price": 35000, - "name": "Uncommon Tiger" - }, - "respite_5": { - "price": 1400000, - "name": "Respite 5" - }, - "growth_helmet": { - "price": 349000, - "name": "Helmet Of Growth" - }, - "lvl_1_legendary_flying_fish": { - "price": 4400000, - "name": "Flying Fish" - }, - "master_skull_tier_7": { - "price": 599899999, - "name": "Master Skull - Tier 7" - }, - "lvl_100_common_guardian": { - "price": 950000, - "name": "Common Guardian" - }, - "lvl_100_epic_blue_whale": { - "price": 100000000, - "name": "Blue Whale" - }, - "lvl_1_rare_guardian": { - "price": 750000, - "name": "Rare Guardian" - }, - "wood": { - "price": 3, - "name": "Oak Wood Plank" - }, - "ultimate_soul_eater_3": { - "price": 7590000, - "name": "Ultimate Soul Eater 3" - }, - "lvl_1_legendary_silverfish": { - "price": 800000, - "name": "Silverfish" - }, - "lvl_1_uncommon_silverfish": { - "price": 10000, - "name": "Uncommon Silverfish" - }, - "first_strike_5": { - "price": 140000000, - "name": "First Strike 5" - }, - "turbo_coco_4": { - "price": 1000000, - "name": "Turbo Coco 4" - }, - "lvl_100_legendary_jellyfish": { - "price": 22000000, - "name": "Jellyfish" - }, - "lvl_1_rare_silverfish": { - "price": 40000, - "name": "Rare Silverfish" - }, - "turbo_mushrooms_3": { - "price": 149999, - "name": "Turbo Mushrooms 3" - }, - "ultimate_bank_2": { - "price": 9000, - "name": "Ultimate Bank 2" - }, - "unstable_baby": { - "price": 263000000, - "name": "Baby Skin" - }, - "respite_1": { - "price": 30000, - "name": "Respite 1" - }, - "lvl_100_legendary_giraffe": { - "price": 37988888, - "name": "Giraffe" - }, - "scarf_thesis": { - "price": 3000000, - "name": "Scarf's Thesis" - }, - "lapis_armor_boots": { - "price": 3000, - "name": "Lapis Armor Boots" - }, - "lvl_1_legendary_snowman": { - "price": 9499999, - "name": "Snowman" - }, - "lvl_100_epic_turtle": { - "price": 9700000, - "name": "Turtle" - }, - "skeleton_lord_leggings": { - "price": 700000, - "name": "Skeleton Lord Leggings" - }, - "turbo_warts_2": { - "price": 198999, - "name": "Turbo Warts 2" - }, - "bat_person_artifact": { - "price": 16850000, - "name": "Bat Person Artifact" - }, - "spirit_sword": { - "price": 1600000, - "name": "Spirit Sword" - }, - "perfect_helmet_9": { - "price": 8000000, - "name": "Perfect Helmet - Tier Ix" - }, - "strong_baby": { - "price": 180000000, - "name": "Baby Skin" - }, - "rosetta_boots": { - "price": 1000, - "name": "Rosetta's Boots" - }, - "record_8": { - "price": 100, - "name": "Music Disc - Stal" - }, - "ember_chestplate": { - "price": 800000, - "name": "Ember Chestplate" - }, - "pet_item_foraging_skill_boost_epic": { - "price": 3899999, - "name": "Foraging Exp Boost" - }, - "wolf_fur_mixin": { - "price": 300000, - "name": "Wolf Fur Mixin" - }, - "lvl_1_common_ocelot": { - "price": 2000000, - "name": "Common Ocelot" - }, - "pet_skin_guardian": { - "price": 160000000, - "name": "Watcher Guardian Skin" - }, - "smarty_pants_4": { - "price": 6400000, - "name": "Smarty Pants 4" - }, - "ultimate_swarm_2": { - "price": 1200000, - "name": "Ultimate Swarm 2" - }, - "blaze_chestplate": { - "price": 2599000, - "name": "Blaze Chestplate" - }, - "turbo_melon_4": { - "price": 1200000, - "name": "Turbo Melon 4" - }, - "dragon_hunter_2": { - "price": 2499999, - "name": "Dragon Hunter 2" - }, - "diamond_bonzo_head": { - "price": 50000000, - "name": "Diamond Bonzo Head" - }, - "lvl_1_rare_scatha": { - "price": 83000000, - "name": "Rare Scatha" - }, - "glass": { - "price": 30, - "name": "Glass" - }, - "hunter_ring": { - "price": 17500000, - "name": "Hunter Ring" - }, - "starred_spider_queens_stinger": { - "price": 1000000, - "name": "Rapid Spider Queen's Stinger" - }, - "lvl_100_epic_rock": { - "price": 5500000, - "name": "Rock" - }, - "zombie_sword": { - "price": 600000, - "name": "Zombie Sword" - }, - "skeleton_lord_boots": { - "price": 284999, - "name": "Skeleton Lord Boots" - }, - "superior_baby": { - "price": 283000000, - "name": "Baby Skin" - }, - "eternal_hoof": { - "price": 9299000, - "name": "Eternal Hoof" - }, - "lvl_100_legendary_spider": { - "price": 33875000, - "name": "Spider" - }, - "bane_of_arthropods_5": { - "price": 1000, - "name": "Bane Of Arthropods 5" - }, - "lvl_1_epic_tiger": { - "price": 2490000, - "name": "Tiger" - }, - "lvl_1_common_sheep": { - "price": 1600000, - "name": "Common Sheep" - }, - "looting_5": { - "price": 115000000, - "name": "Looting 5" - }, - "perfect_helmet_7": { - "price": 4500000, - "name": "Perfect Helmet - Tier Vii" - }, - "hub_da_travel_scroll": { - "price": 11000000, - "name": "Travel Scroll To Dark Auction" - }, - "lvl_100_legendary_magma_cube": { - "price": 33000000, - "name": "Magma Cube" - }, - "perfect_helmet_2": { - "price": 1000000, - "name": "Helmet - Tier Ii" - }, - "potato_basket": { - "price": 1500000000, - "name": "Basket Of Hope From The Great Potato War" - }, - "slayer_energy_drink": { - "price": 50000, - "name": "Slayer© Energy Drink" - }, - "lvl_100_epic_rabbit": { - "price": 4300000, - "name": "Rabbit" - }, - "turbo_coco_2": { - "price": 100000, - "name": "Turbo Coco 2" - }, - "diamond_thorn_head": { - "price": 152000000, - "name": "Diamond Thorn Head" - }, - "perfect_chestplate_7": { - "price": 6850000, - "name": "Chestplate - Tier Vii" - }, - "perfect_boots_4": { - "price": 3100000, - "name": "Perfect Boots - Tier Iv" - }, - "fancy_tuxedo_leggings": { - "price": 2800000, - "name": "Fancy Tuxedo Pants" - }, - "scorpion_bow": { - "price": 5989998, - "name": "Scorpion Bow" - }, - "perfect_chestplate_2": { - "price": 1700000, - "name": "Chestplate - Tier Ii" - }, - "lvl_100_legendary_pigman": { - "price": 21000000, - "name": "Pigman" - }, - "lvl_1_legendary_enderman": { - "price": 39990000, - "name": "Enderman" - }, - "dragon_hunter_4": { - "price": 10499999, - "name": "Dragon Hunter 4" - }, - "soul_esoward": { - "price": 2500000, - "name": "Soul Esoward" - }, - "lvl_100_rare_rabbit": { - "price": 5000000, - "name": "Rare Rabbit" - }, - "lvl_1_rare_tiger": { - "price": 300000, - "name": "Rare Tiger" - }, - "perfect_helmet_10": { - "price": 8500000, - "name": "Perfect Helmet - Tier X" - }, - "lvl_1_common_silverfish": { - "price": 10000, - "name": "Common Silverfish" - }, - "leaves": { - "price": 66, - "name": "Oak Leaves" - }, - "perfect_chestplate_4": { - "price": 2799999, - "name": "Perfect Chestplate - Tier Iv" - }, - "celeste_leggings": { - "price": 10000, - "name": "Celeste Leggings" - }, - "farm_armor_chestplate": { - "price": 185000, - "name": "Farm Armor Chestplate" - }, - "pet_skin_tiger_twilight": { - "price": 900000000, - "name": "Tiger Skin" - }, - "viking_tear": { - "price": 20000, - "name": "Viking's Tear" - }, - "lapis_armor_leggings": { - "price": 7000, - "name": "Lapis Armor Leggings" - }, - "stone_chestplate": { - "price": 25000, - "name": "Stone Chestplate" - }, - "goblin_omelette_blue_cheese": { - "price": 69999999, - "name": "Blue Cheese Goblin Omelette" - }, - "reaper_spirit": { - "price": 299999999, - "name": "Spirit Skin" - }, - "wood:1": { - "price": 1, - "name": "Spruce Wood Plank" - }, - "green_egg": { - "price": 15000000, - "name": "Green Egged Skin" - }, - "lvl_1_common_jerry": { - "price": 230000, - "name": "Common Jerry" - }, - "protector_shimmer": { - "price": 55000000, - "name": "Shimmer Skin" - }, - "turbo_coco_3": { - "price": 450000, - "name": "Turbo Coco 3" - }, - "pet_skin_rabbit": { - "price": 200000000, - "name": "Rabbit Skin" - }, - "pet_skin_elephant_orange": { - "price": 396666666, - "name": "Orange Elephant Skin" - }, - "infini_torch": { - "price": 450000, - "name": "Infinitorch™" - }, - "iron_ore": { - "price": 500, - "name": "Iron Ore" - }, - "ultimate_rend_3": { - "price": 2995000, - "name": "Ultimate Rend 3" - }, - "farm_armor_helmet": { - "price": 37000, - "name": "Farm Armor Helmet" - }, - "lava_talisman": { - "price": 26000, - "name": "Lava Talisman" - }, - "jungle_axe": { - "price": 480, - "name": "Jungle Axe" - }, - "lapis_armor_helmet": { - "price": 1000, - "name": "Lapis Armor Helmet" - }, - "record_11": { - "price": 100, - "name": "Music Disc - 11" - }, - "flame_breaker_helmet": { - "price": 600000, - "name": "Flamebreaker Helmet" - }, - "flame_breaker_leggings": { - "price": 300000, - "name": "Flamebreaker Leggings" - }, - "perfect_leggings_9": { - "price": 12000000, - "name": "Perfect Leggings - Tier Ix" - }, - "piggy_bank": { - "price": 80000, - "name": "Piggy Bank" - }, - "perfect_chestplate_5": { - "price": 3500000, - "name": "Perfect Chestplate - Tier V" - }, - "fractured_mithril_pickaxe": { - "price": 2500, - "name": "Fractured Mithril Pickaxe" - }, - "lvl_1_epic_griffin": { - "price": 9900000, - "name": "Griffin" - }, - "fish_hat": { - "price": 120, - "name": "Fish Hat" - }, - "lvl_1_legendary_horse": { - "price": 950000, - "name": "Horse" - }, - "record_9": { - "price": 100, - "name": "Music Disc - Strad" - }, - "pumpkin_helmet": { - "price": 12, - "name": "Pumpkin Helmet" - }, - "ultimate_no_pain_no_gain_5": { - "price": 499000, - "name": "Ultimate No Pain No Gain 5" - }, - "pumpkin_chestplate": { - "price": 20, - "name": "Pumpkin Chestplate" - }, - "king_talisman": { - "price": 500000, - "name": "King Talisman" - }, - "lvl_100_common_silverfish": { - "price": 500000, - "name": "Common Silverfish" - }, - "lvl_1_common_tiger": { - "price": 170000, - "name": "Common Tiger" - }, - "wool:6": { - "price": 2, - "name": "Pink Wool" - }, - "wool:4": { - "price": 2, - "name": "Yellow Wool" - }, - "squire_chestplate": { - "price": 8800, - "name": "Squire Chestplate" - }, - "lvl_1_uncommon_giraffe": { - "price": 350000, - "name": "Uncommon Giraffe" - }, - "ring_potion_affinity": { - "price": 10000, - "name": "Potion Affinity Ring" - }, - "farm_suit_chestplate": { - "price": 200, - "name": "Farm Suit Chestplate" - }, - "medium_enchanted_chest": { - "price": 6000, - "name": "Medium Storage" - }, - "rosetta_leggings": { - "price": 1000, - "name": "Rosetta's Leggings" - }, - "bucket": { - "price": 20, - "name": "Bucket" - }, - "lvl_1_epic_giraffe": { - "price": 850000, - "name": "Giraffe" - }, - "wool": { - "price": 640, - "name": "White Wool" - }, - "lvl_100_rare_tiger": { - "price": 6300000, - "name": "Rare Tiger" - }, - "heat_chestplate": { - "price": 7000, - "name": "Heat Chestplate" - }, - "heat_boots": { - "price": 10000, - "name": "Heat Boots" - }, - "heat_helmet": { - "price": 10000, - "name": "Heat Helmet" - }, - "gold_ore": { - "price": 18, - "name": "Gold Ore" - }, - "wolf_talisman": { - "price": 50, - "name": "Wolf Talisman" - }, - "dante_talisman": { - "price": 110, - "name": "Dante Talisman" - }, - "hard_clay": { - "price": 10, - "name": "Hardened Clay" - }, - "stick": { - "price": 1, - "name": "Stick" - }, - "wood_hoe": { - "price": 1, - "name": "Wooden Hoe" - }, - "enchanted_dandelion": { - "price": 25600, - "name": "Enchanted Dandelion" - }, - "danger_1_portal": { - "price": 50000, - "name": "Portal To Spider's Den" - }, - "wood_sword": { - "price": 5, - "name": "Wooden Sword" - }, - "farming_2_portal": { - "price": 148000, - "name": "Portal To Mushroom Island" - }, - "melon_block": { - "price": 42, - "name": "Melon" - }, - "grass": { - "price": 69, - "name": "Grass" - }, - "lvl_1_rare_giraffe": { - "price": 490000, - "name": "Rare Giraffe" - }, - "cooked_fish": { - "price": 1920, - "name": "Cooked Fish" - }, - "gold_hoe": { - "price": 4, - "name": "Golden Hoe" - }, - "healing_ring": { - "price": 85000, - "name": "Healing Ring" - }, - "farm_suit_helmet": { - "price": 25, - "name": "Farm Suit Helmet" - }, - "potion_affinity_talisman": { - "price": 192, - "name": "Potion Affinity Talisman" - }, - "squire_boots": { - "price": 2000, - "name": "Squire Boots" - }, - "wool:14": { - "price": 10, - "name": "Red Wool" - }, - "triple_strike_3": { - "price": 10000, - "name": "Triple Strike 3" - }, - "farm_armor_leggings": { - "price": 99000, - "name": "Farm Armor Leggings" - }, - "farm_armor_boots": { - "price": 120000, - "name": "Farm Armor Boots" - }, - "lvl_1_legendary_black_cat": { - "price": 17780000, - "name": "Black Cat" - }, - "small_enchanted_chest": { - "price": 1625, - "name": "Small Storage" - }, - "ultimate_swarm_3": { - "price": 2250000, - "name": "Ultimate Swarm 3" - }, - "record_4": { - "price": 56, - "name": "Music Disc - Chirp" - }, - "mining_1_portal": { - "price": 229000, - "name": "Portal To The Gold Mine" - }, - "redstone_ore": { - "price": 288, - "name": "Redstone Ore" - }, - "gravity_talisman": { - "price": 4000, - "name": "Gravity Talisman" - }, - "wood_button": { - "price": 3, - "name": "Wooden Button" - }, - "perfect_leggings_10": { - "price": 7000000, - "name": "Leggings - Tier X" - }, - "red_rose:7": { - "price": 5, - "name": "Pink Tulip" - }, - "blaze_powder": { - "price": 1000, - "name": "Blaze Powder" - }, - "stone_spade": { - "price": 5, - "name": "Stone Shovel" - }, - "zombie_boots": { - "price": 390000, - "name": "Zombie Boots" - }, - "cracked_piggy_bank": { - "price": 70000, - "name": "Cracked Piggy Bank" - }, - "enchantment_table": { - "price": 40, - "name": "Enchantment Table" - }, - "spider_talisman": { - "price": 250, - "name": "Spider Talisman" - }, - "bat_person_ring": { - "price": 4500000, - "name": "Bat Person Ring" - }, - "rune": { - "price": 500, - "name": "◆ Zap Rune I" - }, - "perfect_leggings_7": { - "price": 6990000, - "name": "Perfect Leggings - Tier Vii" - }, - "lvl_1_uncommon_chicken": { - "price": 100000, - "name": "Uncommon Chicken" - }, - "pet_item_big_teeth_common": { - "price": 740000, - "name": "Big Teeth" - }, - "foraging_2_portal": { - "price": 220000, - "name": "Portal To Spruce Woods" - }, - "lvl_1_common_skeleton": { - "price": 30000, - "name": "Common Skeleton" - }, - "perfect_chestplate_6": { - "price": 5900000, - "name": "Perfect Chestplate - Tier Vi" - }, - "foraging_5_portal": { - "price": 149000, - "name": "Portal To Dark Thicket" - }, - "lvl_1_legendary_golden_dragon": { - "price": 620000000, - "name": "Golden Dragon" - }, - "perfect_boots_10": { - "price": 10000000, - "name": "Perfect Boots - Tier X" - }, - "lvl_100_legendary_flying_fish": { - "price": 29700000, - "name": "Flying Fish" - }, - "leaves:3": { - "price": 128, - "name": "Jungle Leaves" - }, - "prismarine": { - "price": 80, - "name": "Prismarine" - }, - "pet_skin_elephant_blue": { - "price": 650000000, - "name": "Blue Elephant Skin" - }, - "lvl_100_epic_lion": { - "price": 25000000, - "name": "Lion" - }, - "pet_item_sharpened_claws_uncommon": { - "price": 900000, - "name": "Sharpened Claws" - }, - "turbo_mushrooms_2": { - "price": 40000, - "name": "Turbo Mushrooms 2" - }, - "lvl_1_rare_chicken": { - "price": 100000, - "name": "Rare Chicken" - }, - "lvl_100_rare_rock": { - "price": 4500000, - "name": "Rare Rock" - }, - "turbo_mushrooms_4": { - "price": 480000, - "name": "Turbo Mushrooms 4" - }, - "ultimate_rend_4": { - "price": 5100000, - "name": "Ultimate Rend 4" - }, - "celeste_chestplate": { - "price": 9000, - "name": "Celeste Chestplate" - }, - "perfect_boots_6": { - "price": 3990000, - "name": "Perfect Boots - Tier Vi" - }, - "paper": { - "price": 640, - "name": "Paper" - }, - "speed_talisman": { - "price": 110, - "name": "Speed Talisman" - }, - "wither_bow": { - "price": 5, - "name": "Wither Bow" - }, - "diamond_scarf_head": { - "price": 100000000, - "name": "Diamond Scarf Head" - }, - "green_record": { - "price": 100, - "name": "Music Disc - Cat" - }, - "tripwire_hook": { - "price": 4, - "name": "Tripwire Hook" - }, - "lvl_100_epic_wither_skeleton": { - "price": 6999000, - "name": "Wither Skeleton" - }, - "iron_chestplate": { - "price": 29, - "name": "Iron Chestplate" - }, - "ink_sack:1": { - "price": 6, - "name": "Rose Red" - }, - "iron_helmet": { - "price": 8, - "name": "Iron Helmet" - }, - "record_6": { - "price": 100, - "name": "Music Disc - Mall" - }, - "farm_suit_leggings": { - "price": 160, - "name": "Farm Suit Leggings" - }, - "wood:3": { - "price": 17, - "name": "Jungle Wood Plank" - }, - "squire_sword": { - "price": 10000, - "name": "Squire Sword" - }, - "gold_record": { - "price": 100, - "name": "Music Disc - 13" - }, - "enderman_mask": { - "price": 1000, - "name": "Enderman Mask" - }, - "record_7": { - "price": 100, - "name": "Music Disc - Mellohi" - }, - "rosetta_helmet": { - "price": 1500, - "name": "Rosetta's Helmet" - }, - "rosetta_chestplate": { - "price": 3305, - "name": "Rosetta's Chestplate" - }, - "celeste_boots": { - "price": 10000, - "name": "Celeste Boots" - }, - "book": { - "price": 700, - "name": "Book" - }, - "magical_water_bucket": { - "price": 40, - "name": "Magical Water Bucket" - }, - "bandaged_mithril_pickaxe": { - "price": 2625, - "name": "Bandaged Mithril Pickaxe" - }, - "fire_talisman": { - "price": 32400, - "name": "Fire Talisman" - }, - "ultimate_chimera_5": { - "price": 1999999999, - "name": "Ultimate Chimera 5" - }, - "wood_talisman": { - "price": 160, - "name": "Wood Affinity Talisman" - }, - "flaming_sword": { - "price": 20, - "name": "Flaming Sword" - }, - "lvl_100_rare_silverfish": { - "price": 1500000, - "name": "Rare Silverfish" - }, - "mithril_pickaxe": { - "price": 2125, - "name": "Mithril Pickaxe" - }, - "lvl_100_legendary_scatha": { - "price": 339000000, - "name": "Scatha" - }, - "lvl_1_legendary_scatha": { - "price": 285000000, - "name": "Scatha" - }, - "perfect_chestplate_11": { - "price": 7600000, - "name": "Perfect Chestplate - Tier Xi" - }, - "red_rose:2": { - "price": 5, - "name": "Allium" - }, - "lvl_1_rare_bee": { - "price": 199000, - "name": "Rare Bee" - }, - "record_10": { - "price": 20, - "name": "Music Disc - Ward" - }, - "rails": { - "price": 12, - "name": "Rail" - }, - "record_5": { - "price": 100, - "name": "Music Disc - Far" - }, - "record_12": { - "price": 100, - "name": "Music Disc - Wait" - }, - "yellow_flower": { - "price": 15, - "name": "Dandelion" - }, - "lvl_100_legendary_elephant_skinned_elephant_blue": { - "price": 547777777, - "name": "Elephant" - }, - "lvl_100_legendary_baby_yeti_skinned_yeti_grown_up": { - "price": 111111111, - "name": "Baby Yeti" - }, - "lvl_1_legendary_chicken_skinned_chicken_baby_chick": { - "price": 35950000, - "name": "Chicken" - }, - "lvl_1_legendary_skeleton_horse_skinned_horse_zombie": { - "price": 70000000, - "name": "Skeleton Horse" - }, - "lvl_100_epic_baby_yeti_skinned_yeti_grown_up": { - "price": 69800000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_guardian_skinned_guardian": { - "price": 174000000, - "name": "Guardian" - }, - "lvl_100_legendary_elephant_skinned_elephant_pink": { - "price": 300000000, - "name": "Elephant" - }, - "lvl_100_legendary_hound_skinned_hound_beagle": { - "price": 40000000, - "name": "Hound" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple": { - "price": 400000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_ocelot_skinned_ocelot_snow_tiger": { - "price": 24000000, - "name": "Ocelot" - }, - "lvl_100_legendary_parrot_skinned_parrot_gold_macaw": { - "price": 34000000, - "name": "Parrot" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_red": { - "price": 289999000, - "name": "Sheep" - }, - "lvl_100_legendary_elephant_skinned_elephant_orange": { - "price": 180000000, - "name": "Elephant" - }, - "lvl_100_legendary_sheep_skinned_sheep_purple": { - "price": 789999999, - "name": "Sheep" - }, - "glass_bottle": { - "price": 10, - "name": "Glass Bottle" - }, - "lvl_100_legendary_sheep_skinned_sheep_white": { - "price": 700000000, - "name": "Sheep" - }, - "lvl_100_legendary_rock_skinned_rock_embarrassed": { - "price": 720000000, - "name": "Rock" - }, - "lvl_100_legendary_phoenix_skinned_phoenix_ice": { - "price": 104000000, - "name": "Phoenix" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_blue": { - "price": 696990000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_pastel": { - "price": 392000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_jerry_skinned_jerry_green_elf": { - "price": 185000000, - "name": "Jerry" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer": { - "price": 44000000, - "name": "Enderman" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth": { - "price": 50000000, - "name": "Tiger" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_fossilized": { - "price": 29999000, - "name": "Silverfish" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_ivory": { - "price": 54000000, - "name": "Black Cat" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_yellow": { - "price": 139999861, - "name": "Sheep" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_onyx": { - "price": 46000000, - "name": "Black Cat" - }, - "lvl_100_legendary_wither_skeleton_skinned_wither": { - "price": 166666666, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine": { - "price": 26500000, - "name": "Rabbit" - }, - "lvl_100_legendary_blue_whale_skinned_whale_orca": { - "price": 74500000, - "name": "Blue Whale" - }, - "lvl_100_legendary_elephant_skinned_elephant_green": { - "price": 100000000, - "name": "Elephant" - }, - "lvl_100_legendary_monkey_skinned_monkey_golden": { - "price": 100000000, - "name": "Monkey" - }, - "lvl_100_mythic_enderman_skinned_enderman": { - "price": 175000000, - "name": "Enderman" - }, - "lvl_100_legendary_elephant_skinned_elephant_purple": { - "price": 83999999, - "name": "Elephant" - }, - "lvl_100_legendary_rock_skinned_rock_cool": { - "price": 325000000, - "name": "Rock" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue": { - "price": 425000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_blue": { - "price": 380000000, - "name": "Sheep" - }, - "lvl_100_legendary_monkey_skinned_monkey_gorilla": { - "price": 50000000, - "name": "Monkey" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_pastel": { - "price": 699000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome": { - "price": 35000000, - "name": "Elephant" - }, - "lvl_100_legendary_silverfish_skinned_silverfish": { - "price": 73750000, - "name": "Silverfish" - }, - "lvl_100_legendary_sheep_skinned_sheep_light_blue": { - "price": 799000000, - "name": "Sheep" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_red": { - "price": 409990000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_tiger_skinned_tiger_twilight": { - "price": 630000000, - "name": "Tiger" - }, - "lvl_100_legendary_wolf_skinned_wolf": { - "price": 57900000, - "name": "Wolf" - }, - "lvl_100_legendary_elephant_skinned_elephant_red": { - "price": 89999998, - "name": "Elephant" - }, - "lvl_100_legendary_bat_skinned_bat_vampire": { - "price": 19000000, - "name": "Bat" - }, - "lvl_100_legendary_endermite_skinned_endermite_radiant": { - "price": 22000000, - "name": "Endermite" - }, - "lvl_100_legendary_squid_skinned_squid_glow": { - "price": 54999999, - "name": "Squid" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_rose": { - "price": 29999998, - "name": "Rabbit" - }, - "lvl_100_legendary_sheep_skinned_sheep_black": { - "price": 2146999999, - "name": "Sheep" - }, - "lvl_1_uncommon_mithril_golem": { - "price": 140000, - "name": "Uncommon Mithril Golem" - }, - "titanium_talisman": { - "price": 250000, - "name": "Titanium Talisman" - }, - "defuse_kit": { - "price": 1, - "name": "Defuse Kit" - }, - "wishing_compass": { - "price": 1, - "name": "Wishing Compass" - }, - "nether_brick_item": { - "price": 36, - "name": "Nether Brick" - }, - "miner_outfit_leggings": { - "price": 2500, - "name": "Miner's Outfit Leggings" - }, - "lvl_1_uncommon_endermite": { - "price": 300000, - "name": "Uncommon Endermite" - }, - "gold_chestplate": { - "price": 16, - "name": "Golden Chestplate" - }, - "squid_boots": { - "price": 15, - "name": "Squid Boots" - }, - "day_saver": { - "price": 175, - "name": "Day Saver" - }, - "boat": { - "price": 1, - "name": "Boat" - }, - "wool:5": { - "price": 10, - "name": "Lime Wool" - }, - "wool:1": { - "price": 2, - "name": "Orange Wool" - }, - "desert_island": { - "price": 250000, - "name": "Desert Island" - }, - "wool:10": { - "price": 2, - "name": "Purple Wool" - }, - "wool:13": { - "price": 2, - "name": "Green Wool" - }, - "wool:2": { - "price": 2, - "name": "Magenta Wool" - }, - "golden_carrot": { - "price": 120, - "name": "Golden Carrot" - }, - "undead_sword": { - "price": 25, - "name": "Sword" - }, - "cobble_wall": { - "price": 48, - "name": "Cobblestone Wall" - }, - "stained_clay:9": { - "price": 128, - "name": "Cyan Hardened Clay" - }, - "sign": { - "price": 5, - "name": "Sign" - }, - "lvl_1_common_giraffe": { - "price": 50000, - "name": "Common Giraffe" - }, - "red_rose:1": { - "price": 1, - "name": "Blue Orchid" - }, - "torch": { - "price": 2, - "name": "Torch" - }, - "turbo_cactus_2": { - "price": 124000, - "name": "Turbo Cactus 2" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_purple": { - "price": 705000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ocelot": { - "price": 13900000, - "name": "Ocelot" - }, - "enchanted_poppy": { - "price": 2880, - "name": "Enchanted Poppy" - }, - "squire_leggings": { - "price": 8500, - "name": "Squire Leggings" - }, - "iron_pickaxe": { - "price": 25, - "name": "Iron Pickaxe" - }, - "apple": { - "price": 512, - "name": "Apple" - }, - "emerald_ring": { - "price": 38000, - "name": "Emerald Ring" - }, - "pumpkin_boots": { - "price": 8, - "name": "Pumpkin Boots" - }, - "iron_sword": { - "price": 15, - "name": "Iron Sword" - }, - "perfect_helmet_6": { - "price": 5000000, - "name": "Helmet - Tier Vi" - }, - "rabbit_hat": { - "price": 50, - "name": "Rabbit Hat" - }, - "lvl_100_uncommon_dolphin": { - "price": 3000000, - "name": "Uncommon Dolphin" - }, - "jumbo_backpack_skinned_green_egg": { - "price": 24999999, - "name": "Jumbo Backpack" - }, - "jumbo_backpack_skinned_purple_egg": { - "price": 14900000, - "name": "Jumbo Backpack" - }, - "large_backpack_skinned_enderpack": { - "price": 22000000, - "name": "Large Backpack" - }, - "protector_dragon_helmet_skinned_protector_shimmer": { - "price": 40000000, - "name": "Protector Dragon Helmet" - }, - "unstable_dragon_helmet_skinned_unstable_baby": { - "price": 150000000, - "name": "Unstable Dragon Helmet" - }, - "jumbo_backpack_skinned_enderpack": { - "price": 33333333, - "name": "Jumbo Backpack" - }, - "mastiff_helmet_skinned_mastiff_puppy": { - "price": 68700000, - "name": "Mastiff Crown" - }, - "holy_dragon_helmet_skinned_holy_shimmer": { - "price": 45000000, - "name": "Holy Dragon Helmet" - }, - "young_dragon_helmet_skinned_young_baby": { - "price": 570000000, - "name": "Young Dragon Helmet" - }, - "protector_dragon_helmet_skinned_protector_baby": { - "price": 255000000, - "name": "Protector Dragon Helmet" - }, - "holy_dragon_helmet_skinned_holy_baby": { - "price": 240000000, - "name": "Holy Dragon Helmet" - }, - "old_dragon_helmet_skinned_old_shimmer": { - "price": 44900000, - "name": "Old Dragon Helmet" - }, - "frozen_blaze_helmet_skinned_frozen_blaze_icicle": { - "price": 119999999, - "name": "Frozen Blaze Helmet" - }, - "perfect_helmet_2_skinned_perfect_forge": { - "price": 60000000, - "name": "Perfect Helmet - Tier Ii" - }, - "auto_smelter": { - "price": 100, - "name": "Auto Smelter" - }, - "lvl_100_legendary_jerry_skinned_jerry_red_elf": { - "price": 300000000, - "name": "Jerry" - }, - "clownfish_hat": { - "price": 700, - "name": "Clownfish Hat" - }, - "shadow_assassin_helmet_skinned_shadow_assassin_mauve": { - "price": 7000000, - "name": "Shadow Assassin Helmet" - }, - "perfect_helmet_4": { - "price": 6000000, - "name": "Perfect Helmet - Tier Iv" - }, - "hard_glass": { - "price": 6400, - "name": "Hard Glass" - }, - "pumpkin_seeds": { - "price": 1, - "name": "Pumpkin Seeds" - }, - "squire_helmet": { - "price": 2500, - "name": "Squire Helmet" - }, - "superior_dragon_helmet_skinned_superior_baby": { - "price": 249000000, - "name": "Superior Dragon Helmet" - }, - "lvl_1_legendary_guardian": { - "price": 5000000, - "name": "Guardian" - }, - "promising_axe": { - "price": 110, - "name": "Promising Axe" - }, - "miner_outfit_helmet": { - "price": 2000, - "name": "Miner's Outfit Helmet" - }, - "lever": { - "price": 5, - "name": "Lever" - }, - "stone_button": { - "price": 5, - "name": "Stone Button" - }, - "red_rose:5": { - "price": 5, - "name": "Orange Tulip" - }, - "wood:5": { - "price": 1, - "name": "Dark Oak Wood Plank" - }, - "iron_hoe": { - "price": 95, - "name": "Iron Hoe" - }, - "solar_panel": { - "price": 50000, - "name": "Solar Panel" - }, - "zombie_pickaxe": { - "price": 15, - "name": "Zombie Pickaxe" - }, - "mushroom_helmet": { - "price": 50, - "name": "Mushroom Helmet" - }, - "celeste_wand": { - "price": 2500, - "name": "Celeste Wand" - }, - "angler_helmet": { - "price": 75, - "name": "Angler Helmet" - }, - "angler_chestplate": { - "price": 120, - "name": "Angler Chestplate" - }, - "angler_leggings": { - "price": 105, - "name": "Angler Leggings" - }, - "angler_boots": { - "price": 60, - "name": "Angler Boots" - }, - "efficient_axe": { - "price": 25, - "name": "Efficient Axe" - }, - "stained_glass:5": { - "price": 3, - "name": "Lime Stained Glass" - }, - "perfect_leggings_4": { - "price": 2870000, - "name": "Perfect Leggings - Tier Iv" - }, - "perfect_leggings_5": { - "price": 2500000, - "name": "Leggings - Tier V" - }, - "lvl_1_rare_bat": { - "price": 50000, - "name": "Rare Bat" - }, - "magnetic_talisman": { - "price": 2000, - "name": "Talisman" - }, - "perfect_boots_9": { - "price": 12000000, - "name": "Perfect Boots - Tier Ix" - }, - "farmer_orb": { - "price": 9500, - "name": "Farmer Orb" - }, - "lvl_100_epic_skeleton": { - "price": 6000000, - "name": "Skeleton" - }, - "broken_piggy_bank": { - "price": 80000, - "name": "Broken Piggy Bank" - }, - "budget_hopper": { - "price": 3000, - "name": "Budget Hopper" - }, - "diamond_axe": { - "price": 140, - "name": "Diamond Axe" - }, - "end_sword": { - "price": 10, - "name": "End Sword" - }, - "lvl_100_epic_flying_fish": { - "price": 15000000, - "name": "Flying Fish" - }, - "lvl_100_uncommon_armadillo": { - "price": 3000000, - "name": "Uncommon Armadillo" - }, - "builder_kiwi": { - "price": 50, - "name": "Kiwi" - }, - "builder_lettuce": { - "price": 10, - "name": "Lettuce" - }, - "red_rose:6": { - "price": 5, - "name": "White Tulip" - }, - "promising_spade": { - "price": 18, - "name": "Promising Shovel" - }, - "smooth_brick:2": { - "price": 320, - "name": "Cracked Stone Bricks" - }, - "miner_outfit_boots": { - "price": 1600, - "name": "Miner's Outfit Boots" - }, - "miner_outfit_chestplate": { - "price": 3200, - "name": "Miner's Outfit Chestplate" - }, - "diamond_pickaxe": { - "price": 29, - "name": "Diamond Pickaxe" - }, - "celeste_helmet": { - "price": 10000, - "name": "Celeste Helmet" - }, - "stained_clay:14": { - "price": 10, - "name": "Red Hardened Clay" - }, - "blaze_hat": { - "price": 50, - "name": "Blaze Hat" - }, - "gold_nugget": { - "price": 108, - "name": "Gold Nugget" - }, - "lapis_block": { - "price": 126, - "name": "Lapis Lazuli Block" - }, - "lvl_1_common_wolf": { - "price": 100000, - "name": "Common Wolf" - }, - "golden_apple": { - "price": 40, - "name": "Golden Apple" - }, - "lvl_1_rare_mithril_golem": { - "price": 500000, - "name": "Rare Mithril Golem" - }, - "record_3": { - "price": 20, - "name": "Music Disc - Blocks" - }, - "lvl_1_common_chicken": { - "price": 20000, - "name": "Common Chicken" - }, - "perfect_leggings_8": { - "price": 6500000, - "name": "Leggings - Tier Viii" - }, - "eye_of_ender": { - "price": 75, - "name": "Eye Of Ender" - }, - "sapling": { - "price": 1, - "name": "Oak Sapling" - }, - "soul_sand": { - "price": 256, - "name": "Soul Sand" - }, - "rookie_axe": { - "price": 10, - "name": "Rookie Axe" - }, - "shears": { - "price": 19, - "name": "Shears" - }, - "scavenger_talisman": { - "price": 1000, - "name": "Scavenger Talisman" - }, - "fancy_sword": { - "price": 150, - "name": "Fancy Sword" - }, - "dirt:2": { - "price": 1600, - "name": "Podzol" - }, - "mycel": { - "price": 56, - "name": "Mycelium" - }, - "vaccine_talisman": { - "price": 110, - "name": "Vaccine Talisman" - }, - "fishing_rod": { - "price": 690, - "name": "Fishing Rod" - }, - "wool:11": { - "price": 2, - "name": "Blue Wool" - }, - "wood_pickaxe": { - "price": 5, - "name": "Wooden Pickaxe" - }, - "dead_bush": { - "price": 2, - "name": "Dead Bush" - }, - "gold_axe": { - "price": 50, - "name": "Golden Axe" - }, - "builder_appalled_pumpkin": { - "price": 3200, - "name": "Appalled Pumpkin" - }, - "lvl_100_epic_blaze": { - "price": 36000000, - "name": "Blaze" - }, - "coin_talisman": { - "price": 350, - "name": "Talisman Of Coins" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_green": { - "price": 154000000, - "name": "Sheep" - }, - "perfect_helmet_5": { - "price": 3000000, - "name": "Perfect Helmet - Tier V" - }, - "red_rose": { - "price": 1, - "name": "Poppy" - }, - "flint_shovel": { - "price": 100, - "name": "Flint Shovel" - }, - "wood_spade": { - "price": 1, - "name": "Wooden Shovel" - }, - "lvl_100_legendary_chicken_skinned_chicken_baby_chick": { - "price": 46777777, - "name": "Chicken" - }, - "vine": { - "price": 40, - "name": "Vines" - }, - "leggings_of_the_pack": { - "price": 1000000, - "name": "Leggings Of The Pack" - }, - "red_rose:8": { - "price": 3, - "name": "Oxeye Daisy" - }, - "mushroom_chestplate": { - "price": 240, - "name": "Mushroom Chestplate" - }, - "farm_suit_boots": { - "price": 100, - "name": "Farm Suit Boots" - }, - "night_vision_charm": { - "price": 12500, - "name": "Night Vision Charm" - }, - "strong_dragon_helmet_skinned_strong_shimmer": { - "price": 35000000, - "name": "Dragon Helmet" - }, - "rookie_pickaxe": { - "price": 2, - "name": "Rookie Pickaxe" - }, - "red_rose:3": { - "price": 2, - "name": "Azure Bluet" - }, - "wool:3": { - "price": 2, - "name": "Blue Wool" - }, - "gold_spade": { - "price": 4, - "name": "Golden Shovel" - }, - "stained_glass:14": { - "price": 3, - "name": "Red Stained Glass" - }, - "perfect_leggings_3": { - "price": 1536000, - "name": "Leggings - Tier Iii" - }, - "nether_brick": { - "price": 500, - "name": "Nether Bricks" - }, - "cookie": { - "price": 96, - "name": "Cookie" - }, - "healing_talisman": { - "price": 1440, - "name": "Healing Talisman" - }, - "mine_talisman": { - "price": 1000, - "name": "Mine Affinity Talisman" - }, - "diver_helmet_skinned_diver_puffer": { - "price": 22999999, - "name": "Diver's Mask" - }, - "perfect_helmet_3": { - "price": 1500000, - "name": "Helmet - Tier Iii" - }, - "step:5": { - "price": 2, - "name": "Stone Brick Slab" - }, - "lvl_100_epic_enderman": { - "price": 25000000, - "name": "Enderman" - }, - "lvl_100_epic_enderman_skin_enderman_slayer": { - "price": 11999999, - "name": "Enderman" - }, - "stone:6": { - "price": 2, - "name": "Polished Andesite" - }, - "gold_pickaxe": { - "price": 6, - "name": "Golden Pickaxe" - }, - "stone_axe": { - "price": 10, - "name": "Stone Axe" - }, - "melon_seeds": { - "price": 1, - "name": "Melon Seeds" - }, - "lvl_100_legendary_sheep_skinned_sheep_pink": { - "price": 849000000, - "name": "Sheep" - }, - "ultimate_rend_5": { - "price": 11000000, - "name": "Ultimate Rend 5" - }, - "lvl_100_legendary_skeleton_horse_skinned_horse_zombie": { - "price": 50000000, - "name": "Skeleton Horse" - }, - "lvl_100_common_rock": { - "price": 2500000, - "name": "Common Rock" - }, - "double_plant:4": { - "price": 64, - "name": "Rose Bush" - }, - "farming_talisman": { - "price": 125, - "name": "Farming Talisman" - }, - "iron_spade": { - "price": 15, - "name": "Iron Shovel" - }, - "sea_creature_talisman": { - "price": 900, - "name": "Sea Creature Talisman" - }, - "lvl_100_legendary_golden_dragon": { - "price": 750000000, - "name": "Unknown" - }, - "feather_talisman": { - "price": 800, - "name": "Feather Talisman" - }, - "bread": { - "price": 200, - "name": "Bread" - }, - "aspect_of_the_jerry": { - "price": 1, - "name": "Unknown" - }, - "pet_skin_rock_thinking": { - "price": 1250000000, - "name": "Thinking Rock Skin" - }, - "bow": { - "price": 72, - "name": "Bow" - }, - "diamond_spade": { - "price": 30, - "name": "Diamond Shovel" - }, - "smooth_brick": { - "price": 64, - "name": "Stone Bricks" - }, - "lvl_1_legendary_squid_skinned_squid_glow": { - "price": 44490000, - "name": "Squid" - }, - "village_talisman": { - "price": 1000, - "name": "Village Affinity Talisman" - }, - "lvl_1_epic_scatha": { - "price": 144000000, - "name": "Scatha" - }, - "wool:15": { - "price": 2, - "name": "Black Wool" - }, - "milk_bucket": { - "price": 4, - "name": "Milk Bucket" - }, - "lvl_1_common_spider": { - "price": 500000, - "name": "Common Spider" - }, - "lvl_100_uncommon_blue_whale": { - "price": 5000000, - "name": "Uncommon Blue Whale" - }, - "lvl_100_uncommon_rock": { - "price": 1750000, - "name": "Uncommon Rock" - }, - "decent_bow": { - "price": 495, - "name": "Decent Bow" - }, - "bowl": { - "price": 3, - "name": "Bowl" - }, - "stone_hoe": { - "price": 34, - "name": "Stone Hoe" - }, - "lvl_100_legendary_rock_skinned_rock_thinking": { - "price": 800000000, - "name": "Rock" - }, - "speedster_rod": { - "price": 5000, - "name": "Speedster Rod" - }, - "wood:2": { - "price": 1, - "name": "Birch Wood Plank" - }, - "lvl_1_common_mithril_golem": { - "price": 150000, - "name": "Common Mithril Golem" - }, - "slime_hat": { - "price": 100, - "name": "Slime Hat" - }, - "shadow_assassin_helmet_skinned_shadow_assassin_admiral": { - "price": 7500000, - "name": "Shadow Assassin Helmet" - }, - "zombie_talisman": { - "price": 50, - "name": "Zombie Talisman" - }, - "magical_lava_bucket": { - "price": 30, - "name": "Magical Lava Bucket" - }, - "unstable_dragon_helmet_skinned_unstable_shimmer": { - "price": 34500000, - "name": "Unstable Dragon Helmet" - }, - "workbench": { - "price": 5, - "name": "Crafting Table" - }, - "hub_portal": { - "price": 5, - "name": "Portal To The Hub" - }, - "gift_compass": { - "price": 1000, - "name": "Gift Compass" - }, - "wool:7": { - "price": 10, - "name": "Gray Wool" - }, - "hopper": { - "price": 1000, - "name": "Hopper" - }, - "furnace": { - "price": 2080, - "name": "Furnace" - }, - "wood:4": { - "price": 1, - "name": "Acacia Wood Plank" - }, - "mushroom_leggings": { - "price": 14, - "name": "Mushroom Leggings" - }, - "mushroom_boots": { - "price": 8, - "name": "Mushroom Boots" - }, - "feather_ring": { - "price": 9000, - "name": "Feather Ring" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_red": { - "price": 740000000, - "name": "Ender Dragon" - }, - "turbo_mushrooms_5": { - "price": 958999, - "name": "Turbo Mushrooms 5" - }, - "strong_dragon_helmet_skinned_strong_baby": { - "price": 200000000, - "name": "Strong Dragon Helmet" - }, - "rogue_sword": { - "price": 5000, - "name": "Rogue Sword" - }, - "lvl_1_uncommon_bee": { - "price": 30000, - "name": "Uncommon Bee" - }, - "tnt": { - "price": 75, - "name": "Tnt" - }, - "flint_and_steel": { - "price": 35, - "name": "Flint And Steel" - }, - "step:3": { - "price": 32, - "name": "Cobblestone Slab" - }, - "clay_brick": { - "price": 128, - "name": "Brick" - }, - "skeleton_hat": { - "price": 10, - "name": "Skeleton Hat" - }, - "spider_sword": { - "price": 25, - "name": "Spider Sword" - }, - "spider_hat": { - "price": 160, - "name": "Spider Hat" - }, - "weather_stick": { - "price": 800, - "name": "Weather Stick" - }, - "lvl_1_common_endermite": { - "price": 399000, - "name": "Common Endermite" - }, - "reaper_mask_skinned_reaper_spirit": { - "price": 320000000, - "name": "Reaper Mask" - }, - "starred_shadow_assassin_helmet_skinned_shadow_assassin_crimson": { - "price": 12000000, - "name": "Ancient Shadow Assassin Helmet" - }, - "wise_dragon_helmet_skinned_wise_shimmer": { - "price": 85000000, - "name": "Dragon Helmet" - }, - "starred_shadow_assassin_helmet_skinned_shadow_assassin_admiral": { - "price": 11000000, - "name": "Ancient Shadow Assassin Helmet" - }, - "tarantula_helmet_skinned_tarantula_black_widow": { - "price": 51000000, - "name": "Tarantula Helmet" - }, - "starred_shadow_assassin_helmet_skinned_shadow_assassin_mauve": { - "price": 9500000, - "name": "Ancient Shadow Assassin Helmet" - }, - "young_dragon_helmet_skinned_young_shimmer": { - "price": 45000000, - "name": "Young Dragon Helmet" - }, - "superior_dragon_helmet_skinned_superior_shimmer": { - "price": 82000000, - "name": "Superior Dragon Helmet" - }, - "wise_dragon_helmet_skinned_wise_baby": { - "price": 400000000, - "name": "Wise Dragon Helmet" - }, - "wood_step:1": { - "price": 1, - "name": "Spruce Wood Slab" - }, - "pumpkin_leggings": { - "price": 70, - "name": "Pumpkin Leggings" - }, - "wood_step:4": { - "price": 8, - "name": "Acacia Wood Slab" - }, - "power_artifact": { - "price": 46400000, - "name": "Unknown" - }, - "prismarine_rod": { - "price": 50, - "name": "Prismarine Rod" - }, - "haste_block": { - "price": 10000, - "name": "Haste Block" - }, - "magic_mushroom_soup": { - "price": 256, - "name": "Magical Mushroom Soup" - }, - "lvl_1_epic_enderman_skinned_enderman_slayer": { - "price": 789000, - "name": "Enderman" - }, - "perfect_boots_7": { - "price": 4000000, - "name": "Perfect Boots - Tier Vii" - }, - "perfect_helmet_8": { - "price": 5999999, - "name": "Perfect Helmet - Tier Viii" - }, - "builder_melon": { - "price": 10, - "name": "Melon" - }, - "gold_helmet": { - "price": 10, - "name": "Golden Helmet" - }, - "lvl_100_legendary_dolphin_candy_10": { - "price": 46300000, - "name": "Dolphin" - }, - "lvl_100_legendary_black_cat_candy_10": { - "price": 54000000, - "name": "Black Cat" - }, - "lvl_100_epic_tiger_candy_1": { - "price": 16444444, - "name": "Tiger" - }, - "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_10": { - "price": 84000000, - "name": "Blue Whale" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_10": { - "price": 195000000, - "name": "Enderman" - }, - "lvl_100_legendary_squid_skinned_squid_glow_candy_10": { - "price": 70500000, - "name": "Squid" - }, - "lvl_100_uncommon_griffin_candy_5": { - "price": 4499999, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_golem_candy_8": { - "price": 29000000, - "name": "Golem" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_red_candy_10": { - "price": 589000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_lion_candy_10": { - "price": 24500000, - "name": "Lion" - }, - "lvl_100_rare_griffin_candy_10": { - "price": 4500000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_elephant_candy_10": { - "price": 28000000, - "name": "Elephant" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_10": { - "price": 69000000, - "name": "Black Cat" - }, - "lvl_100_epic_baby_yeti_candy_10": { - "price": 33900000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_enderman_candy_10": { - "price": 53333333, - "name": "Enderman" - }, - "lvl_100_legendary_blaze_candy_10": { - "price": 86000000, - "name": "Blaze" - }, - "lvl_100_legendary_baby_yeti_skinned_yeti_grown_up_candy_10": { - "price": 125000000, - "name": "Baby Yeti" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_3": { - "price": 199000000, - "name": "Enderman" - }, - "lvl_100_epic_griffin_candy_5": { - "price": 13999000, - "name": "Griffin" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_10": { - "price": 69000000, - "name": "Black Cat" - }, - "lvl_100_legendary_sheep_candy_6": { - "price": 6990000, - "name": "Sheep" - }, - "lvl_100_legendary_sheep_skinned_sheep_black_candy_10": { - "price": 1450000000, - "name": "Sheep" - }, - "lvl_100_legendary_megalodon_candy_8": { - "price": 27200000, - "name": "Megalodon" - }, - "lvl_100_legendary_ender_dragon_candy_10": { - "price": 819000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_candy_10": { - "price": 530000000, - "name": "Ender Dragon" - }, - "lvl_100_mythic_enderman_candy_1": { - "price": 44000000, - "name": "Enderman" - }, - "lvl_100_legendary_blue_whale_candy_10": { - "price": 45000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_1": { - "price": 36999999, - "name": "Elephant" - }, - "lvl_100_epic_tiger_candy_2": { - "price": 17500000, - "name": "Tiger" - }, - "lvl_100_legendary_wither_skeleton_candy_10": { - "price": 13000000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_6": { - "price": 44999999, - "name": "Tiger" - }, - "lvl_100_legendary_golem_candy_2": { - "price": 21899000, - "name": "Golem" - }, - "lvl_100_legendary_tiger_candy_10": { - "price": 28000000, - "name": "Tiger" - }, - "lvl_100_legendary_griffin_candy_10": { - "price": 45988000, - "name": "Griffin" - }, - "lvl_100_legendary_tiger_candy_6": { - "price": 37900000, - "name": "Tiger" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_10": { - "price": 46100000, - "name": "Enderman" - }, - "lvl_100_legendary_megalodon_candy_10": { - "price": 26700000, - "name": "Megalodon" - }, - "lvl_100_legendary_skeleton_horse_candy_10": { - "price": 34000000, - "name": "Skeleton Horse" - }, - "lvl_100_legendary_bal_candy_10": { - "price": 50000000, - "name": "Bal" - }, - "lvl_100_epic_ender_dragon_candy_3": { - "price": 525000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_bee_candy_10": { - "price": 20500000, - "name": "Bee" - }, - "lvl_100_legendary_elephant_skinned_elephant_orange_candy_10": { - "price": 295555555, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_candy_5": { - "price": 28600000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skinned_elephant_green_candy_10": { - "price": 99000000, - "name": "Elephant" - }, - "lvl_100_mythic_enderman_candy_2": { - "price": 39000000, - "name": "Enderman" - }, - "lvl_100_legendary_golem_candy_10": { - "price": 10000000, - "name": "Golem" - }, - "lvl_100_legendary_turtle_candy_2": { - "price": 28900000, - "name": "Turtle" - }, - "lvl_100_legendary_bal_candy_7": { - "price": 33800000, - "name": "Bal" - }, - "lvl_100_epic_dolphin_candy_10": { - "price": 14000000, - "name": "Dolphin" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple_candy_10": { - "price": 514900000, - "name": "Ender Dragon" - }, - "lvl_100_epic_griffin_candy_1": { - "price": 13499000, - "name": "Griffin" - }, - "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_7": { - "price": 37500000, - "name": "Endermite" - }, - "lvl_100_epic_baby_yeti_candy_5": { - "price": 34000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_rabbit_candy_4": { - "price": 7500000, - "name": "Rabbit" - }, - "lvl_100_legendary_ocelot_candy_2": { - "price": 22999000, - "name": "Ocelot" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_10": { - "price": 44000000, - "name": "Tiger" - }, - "lvl_100_legendary_sheep_candy_8": { - "price": 50000000, - "name": "Sheep" - }, - "lvl_100_epic_griffin_candy_10": { - "price": 13999000, - "name": "Griffin" - }, - "lvl_100_legendary_sheep_candy_10": { - "price": 14000000, - "name": "Sheep" - }, - "lvl_100_mythic_enderman_candy_10": { - "price": 39999999, - "name": "Enderman" - }, - "lvl_100_epic_griffin_candy_4": { - "price": 10450000, - "name": "Griffin" - }, - "lvl_100_legendary_turtle_candy_10": { - "price": 28900000, - "name": "Turtle" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_2": { - "price": 199999999, - "name": "Enderman" - }, - "lvl_100_rare_dolphin_candy_10": { - "price": 4700000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_black_cat_candy_5": { - "price": 58700000, - "name": "Black Cat" - }, - "lvl_100_legendary_skeleton_candy_10": { - "price": 15000000, - "name": "Skeleton" - }, - "lvl_100_legendary_wither_skeleton_skinned_wither_candy_10": { - "price": 142000000, - "name": "Wither Skeleton" - }, - "lvl_100_epic_baby_yeti_candy_1": { - "price": 44000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_6": { - "price": 69000000, - "name": "Black Cat" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_blue_candy_10": { - "price": 909999999, - "name": "Ender Dragon" - }, - "lvl_100_epic_griffin_candy_6": { - "price": 10500000, - "name": "Griffin" - }, - "lvl_100_legendary_tiger_skinned_tiger_twilight_candy_10": { - "price": 550000000, - "name": "Tiger" - }, - "lvl_100_legendary_wolf_candy_1": { - "price": 16900000, - "name": "Wolf" - }, - "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_1": { - "price": 80000000, - "name": "Blue Whale" - }, - "lvl_100_epic_baby_yeti_skinned_yeti_grown_up_candy_10": { - "price": 89999000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_elephant_skinned_elephant_red_candy_8": { - "price": 149000000, - "name": "Elephant" - }, - "lvl_100_legendary_spider_candy_1": { - "price": 40000000, - "name": "Spider" - }, - "lvl_100_legendary_hound_candy_10": { - "price": 28500000, - "name": "Hound" - }, - "lvl_100_rare_griffin_candy_9": { - "price": 5950000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_10": { - "price": 215000000, - "name": "Sheep" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_10": { - "price": 130000000, - "name": "Rabbit" - }, - "lvl_100_uncommon_griffin_candy_10": { - "price": 4490000, - "name": "Uncommon Griffin" - }, - "lvl_100_epic_baby_yeti_skinned_yeti_grown_up_candy_9": { - "price": 250000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_elephant_skinned_elephant_blue_candy_3": { - "price": 400000000, - "name": "Elephant" - }, - "lvl_100_legendary_golem_candy_1": { - "price": 22499000, - "name": "Golem" - }, - "lvl_100_legendary_monkey_candy_10": { - "price": 60500000, - "name": "Monkey" - }, - "lvl_100_legendary_rock_skinned_rock_embarrassed_candy_10": { - "price": 588000000, - "name": "Rock" - }, - "lvl_100_uncommon_griffin_candy_2": { - "price": 4000000, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_baby_yeti_candy_10": { - "price": 55555555, - "name": "Baby Yeti" - }, - "lvl_100_legendary_rabbit_candy_3": { - "price": 7100000, - "name": "Rabbit" - }, - "lvl_100_legendary_squid_candy_1": { - "price": 41988000, - "name": "Squid" - }, - "lvl_100_legendary_mithril_golem_candy_2": { - "price": 7350000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_rabbit_candy_2": { - "price": 8190000, - "name": "Rabbit" - }, - "lvl_100_legendary_wolf_candy_5": { - "price": 19500000, - "name": "Wolf" - }, - "lvl_100_epic_baby_yeti_candy_8": { - "price": 38500000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_elephant_skinned_elephant_red_candy_5": { - "price": 159000000, - "name": "Elephant" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_10": { - "price": 36000000, - "name": "Rabbit" - }, - "lvl_100_legendary_pig_candy_10": { - "price": 20000000, - "name": "Pig" - }, - "lvl_100_legendary_blue_whale_candy_8": { - "price": 42000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_giraffe_candy_8": { - "price": 40000000, - "name": "Giraffe" - }, - "lvl_100_mythic_enderman_candy_6": { - "price": 51000000, - "name": "Enderman" - }, - "lvl_100_legendary_bat_candy_10": { - "price": 12345678, - "name": "Bat" - }, - "lvl_100_legendary_skeleton_candy_8": { - "price": 17990000, - "name": "Skeleton" - }, - "lvl_100_epic_dolphin_candy_2": { - "price": 13000000, - "name": "Dolphin" - }, - "lvl_100_legendary_bat_candy_5": { - "price": 11000000, - "name": "Bat" - }, - "lvl_100_legendary_spider_candy_10": { - "price": 30000000, - "name": "Spider" - }, - "lvl_100_mythic_enderman_candy_9": { - "price": 59899998, - "name": "Enderman" - }, - "lvl_100_legendary_griffin_candy_5": { - "price": 51000000, - "name": "Griffin" - }, - "lvl_100_legendary_elephant_skinned_elephant_purple_candy_10": { - "price": 93000000, - "name": "Elephant" - }, - "lvl_100_uncommon_griffin_candy_4": { - "price": 4099999, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_sheep_skinned_sheep_purple_candy_10": { - "price": 400000000, - "name": "Sheep" - }, - "lvl_100_legendary_wither_skeleton_skinned_wither_candy_4": { - "price": 77999999, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_2": { - "price": 34000000, - "name": "Rabbit" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_1": { - "price": 74000000, - "name": "Black Cat" - }, - "lvl_100_epic_guardian_candy_10": { - "price": 2400000, - "name": "Guardian" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_red_candy_1": { - "price": 530000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_elephant_skinned_elephant_purple_candy_3": { - "price": 95999999, - "name": "Elephant" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_5": { - "price": 227000000, - "name": "Enderman" - }, - "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_2": { - "price": 85000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_giraffe_candy_10": { - "price": 39000000, - "name": "Giraffe" - }, - "lvl_100_legendary_monkey_candy_5": { - "price": 55000000, - "name": "Monkey" - }, - "lvl_100_epic_phoenix_candy_6": { - "price": 30000000, - "name": "Phoenix" - }, - "lvl_100_legendary_tiger_candy_1": { - "price": 41500000, - "name": "Tiger" - }, - "lvl_100_mythic_enderman_candy_3": { - "price": 39000000, - "name": "Enderman" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_7": { - "price": 47000000, - "name": "Enderman" - }, - "lvl_100_legendary_squid_candy_10": { - "price": 34000000, - "name": "Squid" - }, - "lvl_100_epic_tiger_candy_9": { - "price": 14000000, - "name": "Tiger" - }, - "lvl_100_epic_mithril_golem_candy_1": { - "price": 3800000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_10": { - "price": 250000000, - "name": "Sheep" - }, - "lvl_100_epic_baby_yeti_candy_6": { - "price": 38960000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_griffin_candy_8": { - "price": 41000000, - "name": "Griffin" - }, - "lvl_100_rare_guardian_candy_1": { - "price": 2550000, - "name": "Rare Guardian" - }, - "lvl_100_legendary_wolf_candy_10": { - "price": 16900000, - "name": "Wolf" - }, - "lvl_100_legendary_horse_candy_10": { - "price": 37000000, - "name": "Horse" - }, - "lvl_100_epic_rabbit_candy_10": { - "price": 8000000, - "name": "Rabbit" - }, - "lvl_100_epic_mithril_golem_candy_3": { - "price": 3499999, - "name": "Mithril Golem" - }, - "lvl_100_legendary_jerry_skinned_jerry_green_elf_candy_10": { - "price": 220000000, - "name": "Jerry" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue_candy_10": { - "price": 540000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_tiger_candy_10": { - "price": 16444444, - "name": "Tiger" - }, - "lvl_100_legendary_ghoul_candy_10": { - "price": 25000000, - "name": "Ghoul" - }, - "lvl_200_legendary_golden_dragon_candy_10": { - "price": 1298900000, - "name": "Golden Dragon" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_7": { - "price": 76000000, - "name": "Black Cat" - }, - "lvl_100_epic_scatha_candy_7": { - "price": 840000000, - "name": "Scatha" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_pastel_candy_2": { - "price": 545000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_elephant_candy_9": { - "price": 29990000, - "name": "Elephant" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_10": { - "price": 52000000, - "name": "Elephant" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_pastel_candy_10": { - "price": 525000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_9": { - "price": 69999999, - "name": "Black Cat" - }, - "lvl_100_legendary_ammonite_candy_10": { - "price": 28000000, - "name": "Ammonite" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_9": { - "price": 35000000, - "name": "Enderman" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_candy_2": { - "price": 62000000, - "name": "Silverfish" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_1": { - "price": 222222222, - "name": "Sheep" - }, - "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_4": { - "price": 80000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_squid_candy_7": { - "price": 29999999, - "name": "Squid" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_2": { - "price": 38500000, - "name": "Enderman" - }, - "lvl_100_epic_tiger_candy_3": { - "price": 19500000, - "name": "Tiger" - }, - "lvl_100_legendary_bat_candy_1": { - "price": 8888888, - "name": "Bat" - }, - "lvl_100_legendary_elephant_skinned_elephant_pink_candy_10": { - "price": 377777777, - "name": "Elephant" - }, - "lvl_100_legendary_monkey_skinned_monkey_gorilla_candy_10": { - "price": 75000000, - "name": "Monkey" - }, - "lvl_100_legendary_bal_candy_3": { - "price": 39900000, - "name": "Bal" - }, - "lvl_100_epic_mithril_golem_candy_8": { - "price": 5300000, - "name": "Mithril Golem" - }, - "lvl_100_rare_griffin_candy_5": { - "price": 4900000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_baby_yeti_candy_5": { - "price": 47998000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_jerry_candy_10": { - "price": 45000000, - "name": "Jerry" - }, - "lvl_100_legendary_elephant_candy_2": { - "price": 31990000, - "name": "Elephant" - }, - "lvl_100_epic_ender_dragon_candy_5": { - "price": 539000000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_blaze_candy_9": { - "price": 91999999, - "name": "Blaze" - }, - "lvl_100_legendary_wither_skeleton_candy_3": { - "price": 15000000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_sheep_skinned_sheep_pink_candy_10": { - "price": 777777777, - "name": "Sheep" - }, - "lvl_100_legendary_griffin_candy_1": { - "price": 53000000, - "name": "Griffin" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_7": { - "price": 288999999, - "name": "Sheep" - }, - "lvl_100_legendary_baby_yeti_candy_1": { - "price": 58888888, - "name": "Baby Yeti" - }, - "lvl_100_legendary_elephant_skinned_elephant_red_candy_1": { - "price": 135000000, - "name": "Elephant" - }, - "lvl_100_rare_griffin_candy_1": { - "price": 5500000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_hound_skinned_hound_beagle_candy_10": { - "price": 39000000, - "name": "Hound" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_1": { - "price": 55000000, - "name": "Enderman" - }, - "lvl_100_legendary_griffin_candy_6": { - "price": 45950000, - "name": "Griffin" - }, - "lvl_100_legendary_rock_skinned_rock_cool_candy_6": { - "price": 840000000, - "name": "Rock" - }, - "lvl_100_legendary_blue_whale_candy_1": { - "price": 43500000, - "name": "Blue Whale" - }, - "lvl_100_mythic_enderman_candy_8": { - "price": 35000000, - "name": "Enderman" - }, - "lvl_100_legendary_black_cat_candy_1": { - "price": 66666666, - "name": "Black Cat" - }, - "lvl_100_epic_baby_yeti_candy_3": { - "price": 43000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_bat_skinned_bat_vampire_candy_3": { - "price": 35000000, - "name": "Bat" - }, - "lvl_100_legendary_rabbit_candy_6": { - "price": 7800000, - "name": "Rabbit" - }, - "lvl_100_legendary_tiger_candy_9": { - "price": 27999999, - "name": "Tiger" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_8": { - "price": 44500000, - "name": "Rabbit" - }, - "lvl_100_legendary_tarantula_candy_10": { - "price": 28500000, - "name": "Tarantula" - }, - "lvl_100_legendary_sheep_skinned_sheep_light_blue_candy_10": { - "price": 630000000, - "name": "Sheep" - }, - "lvl_100_legendary_bat_skinned_bat_vampire_candy_10": { - "price": 35000000, - "name": "Bat" - }, - "lvl_100_rare_griffin_candy_2": { - "price": 4800000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_dolphin_candy_1": { - "price": 40000000, - "name": "Dolphin" - }, - "lvl_100_epic_tiger_candy_6": { - "price": 14300000, - "name": "Tiger" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_candy_3": { - "price": 75000000, - "name": "Silverfish" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_3": { - "price": 37000000, - "name": "Elephant" - }, - "lvl_100_rare_guardian_candy_10": { - "price": 1400000, - "name": "Rare Guardian" - }, - "lvl_100_legendary_rabbit_candy_5": { - "price": 6400000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_candy_1": { - "price": 8999900, - "name": "Rabbit" - }, - "lvl_100_epic_enderman_skinned_enderman_slayer": { - "price": 20000000, - "name": "Enderman" - }, - "lvl_100_legendary_wither_skeleton_candy_1": { - "price": 9500000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_monkey_candy_1": { - "price": 46000000, - "name": "Monkey" - }, - "lvl_100_legendary_black_cat_candy_9": { - "price": 65000000, - "name": "Black Cat" - }, - "lvl_100_legendary_tiger_candy_3": { - "price": 44999999, - "name": "Tiger" - }, - "lvl_100_legendary_griffin_candy_4": { - "price": 45897000, - "name": "Griffin" - }, - "lvl_100_legendary_lion_candy_1": { - "price": 43330000, - "name": "Lion" - }, - "lvl_100_legendary_sheep_candy_3": { - "price": 7000000, - "name": "Sheep" - }, - "lvl_100_legendary_elephant_candy_7": { - "price": 27500000, - "name": "Elephant" - }, - "lvl_100_legendary_tiger_candy_5": { - "price": 34500000, - "name": "Tiger" - }, - "lvl_100_epic_baby_yeti_candy_2": { - "price": 33000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_skeleton_candy_1": { - "price": 24999999, - "name": "Skeleton" - }, - "lvl_100_epic_guardian_candy_1": { - "price": 2500000, - "name": "Guardian" - }, - "lvl_100_legendary_blue_whale_candy_2": { - "price": 48900000, - "name": "Blue Whale" - }, - "lvl_100_legendary_blue_whale_candy_5": { - "price": 48340000, - "name": "Blue Whale" - }, - "lvl_100_legendary_griffin_candy_2": { - "price": 41500000, - "name": "Griffin" - }, - "lvl_100_mythic_enderman_candy_4": { - "price": 50000000, - "name": "Enderman" - }, - "lvl_100_legendary_endermite_candy_4": { - "price": 8500000, - "name": "Endermite" - }, - "lvl_100_legendary_elephant_candy_6": { - "price": 32400000, - "name": "Elephant" - }, - "lvl_100_legendary_squid_skinned_squid_glow_candy_8": { - "price": 64444444, - "name": "Squid" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_5": { - "price": 52000000, - "name": "Elephant" - }, - "lvl_100_legendary_wolf_candy_2": { - "price": 17400000, - "name": "Wolf" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_yellow_candy_10": { - "price": 252222222, - "name": "Sheep" - }, - "lvl_100_legendary_elephant_skinned_elephant_blue_candy_10": { - "price": 350000000, - "name": "Elephant" - }, - "perfect_leggings_6": { - "price": 4321000, - "name": "Leggings - Tier Vi" - }, - "lvl_100_epic_baby_yeti_candy_9": { - "price": 44000000, - "name": "Baby Yeti" - }, - "old_dragon_helmet_skinned_old_baby": { - "price": 200000000, - "name": "Old Dragon Helmet" - }, - "lvl_100_epic_silverfish_candy_2": { - "price": 2000000, - "name": "Silverfish" - }, - "lvl_100_legendary_wolf_skinned_wolf_candy_3": { - "price": 46464646, - "name": "Wolf" - }, - "lvl_100_legendary_sheep_candy_2": { - "price": 33900000, - "name": "Sheep" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_candy_1": { - "price": 89000000, - "name": "Silverfish" - }, - "lvl_100_legendary_elephant_skinned_elephant_green_candy_1": { - "price": 89000000, - "name": "Elephant" - }, - "lvl_100_legendary_sheep_candy_1": { - "price": 37777777, - "name": "Sheep" - }, - "lvl_100_legendary_guardian_skinned_guardian_candy_4": { - "price": 210000000, - "name": "Guardian" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_5": { - "price": 48999999, - "name": "Enderman" - }, - "lvl_100_legendary_lion_candy_5": { - "price": 48796969, - "name": "Lion" - }, - "lvl_100_legendary_bal_candy_6": { - "price": 84000000, - "name": "Bal" - }, - "lvl_100_legendary_tiger_candy_7": { - "price": 28500000, - "name": "Tiger" - }, - "lvl_100_uncommon_griffin_candy_3": { - "price": 5152894, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_2": { - "price": 40000000, - "name": "Elephant" - }, - "stone_sword": { - "price": 5, - "name": "Stone Sword" - }, - "lvl_100_legendary_wither_skeleton_candy_2": { - "price": 11000000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_elephant_candy_1": { - "price": 31990000, - "name": "Elephant" - }, - "lvl_100_epic_enderman_candy_1": { - "price": 8000000, - "name": "Enderman" - }, - "lvl_100_legendary_sheep_candy_9": { - "price": 33000000, - "name": "Sheep" - }, - "lvl_100_legendary_guardian_candy_1": { - "price": 5490000, - "name": "Guardian" - }, - "lvl_100_legendary_silverfish_candy_10": { - "price": 5000000, - "name": "Silverfish" - }, - "lvl_100_legendary_black_cat_candy_7": { - "price": 59000000, - "name": "Black Cat" - }, - "lvl_100_legendary_blue_whale_candy_7": { - "price": 52200000, - "name": "Blue Whale" - }, - "wool:12": { - "price": 2, - "name": "Brown Wool" - }, - "lvl_1_common_enderman_skinned_enderman_slayer": { - "price": 699000, - "name": "Common Enderman" - }, - "lvl_100_legendary_armadillo_candy_3": { - "price": 8700000, - "name": "Armadillo" - }, - "lvl_100_rare_dolphin_candy_1": { - "price": 5000000, - "name": "Rare Dolphin" - }, - "lvl_100_epic_tiger_skinned_tiger_saber_tooth": { - "price": 24000000, - "name": "Tiger" - }, - "lvl_100_legendary_skeleton_candy_9": { - "price": 18000000, - "name": "Skeleton" - }, - "lvl_100_epic_baby_yeti_candy_7": { - "price": 35500000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_black_cat_candy_8": { - "price": 60000000, - "name": "Black Cat" - }, - "lvl_100_legendary_black_cat_candy_4": { - "price": 57999990, - "name": "Black Cat" - }, - "lvl_100_legendary_wither_skeleton_candy_4": { - "price": 10700000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_bal_candy_8": { - "price": 83000000, - "name": "Bal" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_3": { - "price": 47444000, - "name": "Tiger" - }, - "lvl_100_epic_tiger_candy_7": { - "price": 17000000, - "name": "Tiger" - }, - "lvl_100_legendary_sheep_candy_4": { - "price": 8000000, - "name": "Sheep" - }, - "wood_step:3": { - "price": 1, - "name": "Jungle Wood Slab" - }, - "step": { - "price": 32, - "name": "Stone Slab" - }, - "wood_step:2": { - "price": 32, - "name": "Birch Wood Slab" - }, - "stained_glass_pane:7": { - "price": 19, - "name": "Gray Stained Glass Pane" - }, - "lvl_100_legendary_wither_skeleton_candy_6": { - "price": 9990000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_6": { - "price": 76000000, - "name": "Black Cat" - }, - "lvl_100_legendary_mithril_golem_candy_3": { - "price": 10000000, - "name": "Mithril Golem" - }, - "lvl_100_uncommon_griffin_candy_1": { - "price": 4000000, - "name": "Uncommon Griffin" - }, - "stone_pickaxe": { - "price": 2, - "name": "Stone Pickaxe" - }, - "lvl_100_epic_dolphin_candy_5": { - "price": 13199999, - "name": "Dolphin" - }, - "lvl_100_legendary_enderman_candy_2": { - "price": 65000000, - "name": "Enderman" - }, - "lvl_100_legendary_skeleton_candy_5": { - "price": 24000000, - "name": "Skeleton" - }, - "lvl_100_legendary_silverfish_candy_1": { - "price": 4400000, - "name": "Silverfish" - }, - "lvl_100_legendary_snowman_candy_10": { - "price": 42999999, - "name": "Snowman" - }, - "lvl_100_epic_sheep_candy_2": { - "price": 3100000, - "name": "Sheep" - }, - "builder_lilac_fruit": { - "price": 10, - "name": "Lilac Fruit" - }, - "cleaver": { - "price": 80, - "name": "Cleaver" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_6": { - "price": 50000000, - "name": "Enderman" - }, - "lvl_100_legendary_guardian_candy_10": { - "price": 9450000, - "name": "Guardian" - }, - "smooth_stairs": { - "price": 5, - "name": "Stone Brick Stairs" - }, - "lvl_100_legendary_elephant_candy_3": { - "price": 29000000, - "name": "Elephant" - }, - "lvl_100_legendary_bat_skinned_bat_vampire_candy_2": { - "price": 35499999, - "name": "Bat" - }, - "lvl_100_legendary_armadillo_candy_10": { - "price": 6200000, - "name": "Armadillo" - }, - "compass": { - "price": 960, - "name": "Compass" - }, - "lvl_100_legendary_lion_candy_10": { - "price": 43000000, - "name": "Lion" - }, - "lvl_100_legendary_flying_fish_candy_8": { - "price": 37000000, - "name": "Flying Fish" - }, - "lvl_100_legendary_silverfish_candy_9": { - "price": 3500000, - "name": "Silverfish" - }, - "lvl_100_rare_dolphin_candy_9": { - "price": 3500000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_tiger_candy_4": { - "price": 28000000, - "name": "Tiger" - }, - "lvl_100_legendary_squid_candy_2": { - "price": 36000000, - "name": "Squid" - }, - "sapling:2": { - "price": 1, - "name": "Birch Sapling" - }, - "lvl_100_legendary_jellyfish_candy_4": { - "price": 19000000, - "name": "Jellyfish" - }, - "lvl_100_legendary_blue_whale_candy_6": { - "price": 50777777, - "name": "Blue Whale" - }, - "lvl_100_legendary_flying_fish_candy_2": { - "price": 24000000, - "name": "Flying Fish" - }, - "lvl_100_legendary_bal_candy_2": { - "price": 40000000, - "name": "Bal" - }, - "lvl_100_legendary_griffin_candy_3": { - "price": 50949000, - "name": "Griffin" - }, - "simple_carrot_candy": { - "price": 2, - "name": "Carrot Candy" - }, - "lvl_100_rare_griffin_candy_8": { - "price": 4800000, - "name": "Rare Griffin" - }, - "fence_gate": { - "price": 5, - "name": "Oak Fence Gate" - }, - "lvl_100_legendary_griffin_candy_7": { - "price": 43000000, - "name": "Griffin" - }, - "lvl_100_legendary_blue_whale_candy_4": { - "price": 46500000, - "name": "Blue Whale" - }, - "lvl_100_legendary_sheep_candy_5": { - "price": 6500000, - "name": "Sheep" - }, - "lvl_100_legendary_rabbit_candy_10": { - "price": 8222222, - "name": "Rabbit" - }, - "lvl_1_mythic_enderman_skinned_enderman_slayer": { - "price": 39000000, - "name": "Unknown" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_6": { - "price": 37500000, - "name": "Elephant" - }, - "theoretical_hoe": { - "price": 900000, - "name": "Unknown" - }, - "theoretical_hoe_carrot_1": { - "price": 900000, - "name": "Unknown" - }, - "theoretical_hoe_carrot_2": { - "price": 2000000, - "name": "Unknown" - }, - "lvl_100_legendary_mithril_golem_candy_1": { - "price": 7000000, - "name": "Mithril Golem" - }, - "theoretical_hoe_carrot_3": { - "price": 19000000, - "name": "Unknown" - }, - "theoretical_hoe_warts_1": { - "price": 900000, - "name": "Unknown" - }, - "theoretical_hoe_warts_2": { - "price": 2500000, - "name": "Unknown" - }, - "theoretical_hoe_warts_3": { - "price": 19000000, - "name": "Unknown" - }, - "theoretical_hoe_cane_1": { - "price": 1000000, - "name": "Unknown" - }, - "theoretical_hoe_cane_2": { - "price": 2700000, - "name": "Unknown" - }, - "theoretical_hoe_cane_3": { - "price": 20000000, - "name": "Unknown" - }, - "theoretical_hoe_potato_1": { - "price": 1000000, - "name": "Unknown" - }, - "lvl_100_uncommon_griffin_candy_8": { - "price": 3800000, - "name": "Uncommon Griffin" - }, - "theoretical_hoe_potato_2": { - "price": 2400000, - "name": "Unknown" - }, - "theoretical_hoe_potato_3": { - "price": 18000000, - "name": "Unknown" - }, - "theoretical_hoe_wheat_1": { - "price": 900000, - "name": "Unknown" - }, - "theoretical_hoe_wheat_2": { - "price": 3000000, - "name": "Unknown" - }, - "theoretical_hoe_wheat_3": { - "price": 80000000, - "name": "Unknown" - }, - "pumpkin_dicer": { - "price": 1000000, - "name": "Unknown" - }, - "lvl_100_rare_dolphin_candy_3": { - "price": 6000000, - "name": "Rare Dolphin" - }, - "melon_dicer": { - "price": 1000000, - "name": "Unknown" - }, - "lvl_100_epic_armadillo_candy_2": { - "price": 4000000, - "name": "Armadillo" - }, - "leaves:1": { - "price": 420, - "name": "Spruce Leaves" - }, - "lvl_100_epic_sheep_candy_7": { - "price": 3500000, - "name": "Sheep" - }, - "lvl_100_legendary_squid_candy_4": { - "price": 29500000, - "name": "Squid" - }, - "lvl_100_legendary_elephant_candy_4": { - "price": 30000000, - "name": "Elephant" - }, - "wood_axe": { - "price": 2, - "name": "Wooden Axe" - }, - "lvl_100_legendary_monkey_skinned_monkey_golden_candy_8": { - "price": 99999999, - "name": "Monkey" - }, - "lvl_100_legendary_dolphin_candy_7": { - "price": 43000000, - "name": "Dolphin" - }, - "wood_stairs": { - "price": 1, - "name": "Oak Wood Stairs" - }, - "lvl_100_epic_baby_yeti_candy_4": { - "price": 35000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_candy_10": { - "price": 230000000, - "name": "Rabbit" - }, - "farmer_rod": { - "price": 5490, - "name": "Farmer's Rod" - }, - "lvl_100_legendary_griffin_candy_9": { - "price": 48000000, - "name": "Griffin" - }, - "lvl_100_legendary_wolf_candy_3": { - "price": 15999990, - "name": "Wolf" - }, - "lvl_100_common_griffin_candy_8": { - "price": 7000000, - "name": "Common Griffin" - }, - "trap_door": { - "price": 2, - "name": "Wooden Trapdoor" - }, - "anvil": { - "price": 900, - "name": "Anvil" - }, - "lvl_100_epic_bal": { - "price": 11000000, - "name": "Bal" - }, - "lvl_100_rare_pig": { - "price": 300000, - "name": "Unknown" - }, - "lvl_100_epic_tarantula": { - "price": 5000000, - "name": "Tarantula" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_7": { - "price": 43900000, - "name": "Rabbit" - }, - "lvl_100_legendary_wither_skeleton_candy_5": { - "price": 15000000, - "name": "Wither Skeleton" - }, - "end_biome_stick": { - "price": 320, - "name": "End Biome Stick" - }, - "lvl_100_legendary_wolf_candy_7": { - "price": 22000000, - "name": "Wolf" - }, - "lvl_100_legendary_bal_candy_4": { - "price": 110000000, - "name": "Bal" - }, - "speckled_melon": { - "price": 105, - "name": "Glistering Melon" - }, - "forest_biome_stick": { - "price": 160, - "name": "Forest Biome Stick" - }, - "lvl_100_legendary_blue_whale_candy_9": { - "price": 54998000, - "name": "Blue Whale" - }, - "lvl_100_rare_griffin_candy_4": { - "price": 5800000, - "name": "Rare Griffin" - }, - "web": { - "price": 3050, - "name": "Web" - }, - "lvl_100_uncommon_tiger": { - "price": 1000000, - "name": "Uncommon Tiger" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_red_candy_10": { - "price": 799999999, - "name": "Ender Dragon" - }, - "lvl_100_legendary_blaze_candy_5": { - "price": 86000000, - "name": "Blaze" - }, - "magma_cube_head": { - "price": 445, - "name": "Magma Cube Head" - }, - "lvl_100_legendary_squid_candy_3": { - "price": 30999999, - "name": "Squid" - }, - "lvl_100_legendary_guardian_candy_2": { - "price": 6000000, - "name": "Guardian" - }, - "lvl_100_legendary_squid_skinned_squid_glow_candy_1": { - "price": 68988000, - "name": "Squid" - }, - "lvl_100_mythic_enderman_candy_5": { - "price": 39499000, - "name": "Enderman" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_2": { - "price": 36000000, - "name": "Rabbit" - }, - "lvl_100_uncommon_griffin_candy_6": { - "price": 4000000, - "name": "Uncommon Griffin" - }, - "stone:1": { - "price": 2, - "name": "Granite" - }, - "lvl_100_legendary_ammonite_candy_5": { - "price": 38500000, - "name": "Ammonite" - }, - "lvl_100_legendary_skeleton_candy_7": { - "price": 27000000, - "name": "Skeleton" - }, - "sugar": { - "price": 500, - "name": "Sugar" - }, - "lvl_100_rare_griffin_candy_7": { - "price": 5300000, - "name": "Rare Griffin" - }, - "lvl_100_legendary_wither_skeleton_candy_8": { - "price": 9500000, - "name": "Wither Skeleton" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_1": { - "price": 61000000, - "name": "Tiger" - }, - "lvl_100_epic_griffin_candy_8": { - "price": 13000000, - "name": "Griffin" - }, - "lvl_100_epic_silverfish_candy_5": { - "price": 2999999, - "name": "Silverfish" - }, - "lvl_100_epic_jellyfish_candy_1": { - "price": 4000000, - "name": "Jellyfish" - }, - "lvl_100_epic_rabbit_candy_2": { - "price": 6750000, - "name": "Rabbit" - }, - "lvl_100_legendary_mithril_golem_candy_10": { - "price": 6400000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_baby_yeti_candy_8": { - "price": 52500000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_flying_fish_candy_10": { - "price": 38000000, - "name": "Flying Fish" - }, - "lvl_1_rare_enderman_skinned_enderman_slayer": { - "price": 90000, - "name": "Rare Enderman" - }, - "lvl_100_legendary_bal_candy_1": { - "price": 47000000, - "name": "Bal" - }, - "quartz_ore": { - "price": 1000, - "name": "Nether Quartz Ore" - }, - "lvl_100_rare_griffin_candy_3": { - "price": 6300000, - "name": "Rare Griffin" - }, - "lvl_100_epic_mithril_golem_candy_2": { - "price": 3800000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_ammonite_candy_4": { - "price": 37000000, - "name": "Ammonite" - }, - "lvl_100_uncommon_griffin_candy_7": { - "price": 5000000, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_baby_yeti_candy_6": { - "price": 58000000, - "name": "Baby Yeti" - }, - "lvl_100_legendary_skeleton_candy_3": { - "price": 17499900, - "name": "Skeleton" - }, - "lvl_100_epic_dolphin_candy_9": { - "price": 16355555, - "name": "Dolphin" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_3": { - "price": 38000000, - "name": "Enderman" - }, - "sapling:3": { - "price": 1, - "name": "Jungle Sapling" - }, - "lvl_100_legendary_zombie_candy_10": { - "price": 40000000, - "name": "Zombie" - }, - "lvl_100_epic_guardian_candy_9": { - "price": 3000000, - "name": "Guardian" - }, - "lvl_100_legendary_rabbit_candy_9": { - "price": 6450000, - "name": "Rabbit" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_1": { - "price": 35000000, - "name": "Rabbit" - }, - "lvl_100_legendary_blaze_candy_3": { - "price": 95000000, - "name": "Blaze" - }, - "double_plant:5": { - "price": 320, - "name": "Peony" - }, - "lvl_100_epic_guardian_candy_8": { - "price": 3100000, - "name": "Guardian" - }, - "lvl_100_legendary_ammonite_candy_2": { - "price": 41800000, - "name": "Ammonite" - }, - "stained_glass_pane:14": { - "price": 79, - "name": "Red Stained Glass Pane" - }, - "stained_glass_pane:8": { - "price": 4, - "name": "Gray Stained Glass Pane" - }, - "lvl_1_rare_endermite": { - "price": 100000, - "name": "Rare Endermite" - }, - "lvl_100_legendary_golem_candy_3": { - "price": 21000000, - "name": "Golem" - }, - "lvl_100_legendary_sheep_candy_7": { - "price": 7499999, - "name": "Sheep" - }, - "builder_orange": { - "price": 10, - "name": "Orange" - }, - "lvl_100_legendary_blue_whale_candy_3": { - "price": 48000000, - "name": "Blue Whale" - }, - "lvl_100_epic_dolphin_candy_1": { - "price": 16455555, - "name": "Dolphin" - }, - "lvl_100_legendary_black_cat_candy_3": { - "price": 56000000, - "name": "Black Cat" - }, - "lvl_100_legendary_wither_skeleton_skinned_wither_candy_1": { - "price": 140000000, - "name": "Wither Skeleton" - }, - "perfect_helmet_12_skinned_perfect_forge": { - "price": 90000000, - "name": "Perfect Helmet - Tier Xii" - }, - "lvl_100_legendary_pig_candy_3": { - "price": 24000000, - "name": "Pig" - }, - "lvl_100_legendary_wither_skeleton_skinned_wither_candy_9": { - "price": 150111000, - "name": "Wither Skeleton" - }, - "lvl_100_epic_phoenix_candy_2": { - "price": 67000000, - "name": "Phoenix" - }, - "ladder": { - "price": 22, - "name": "Ladder" - }, - "lvl_100_legendary_squid_candy_5": { - "price": 30900000, - "name": "Squid" - }, - "lvl_100_legendary_rock_candy_5": { - "price": 19999000, - "name": "Rock" - }, - "lvl_100_epic_tiger_candy_5": { - "price": 16900000, - "name": "Tiger" - }, - "dirt:1": { - "price": 5, - "name": "Coarse Dirt" - }, - "spruce_wood_stairs": { - "price": 1, - "name": "Spruce Wood Stairs" - }, - "lvl_100_epic_tiger_candy_4": { - "price": 14000000, - "name": "Tiger" - }, - "lvl_100_legendary_black_cat_candy_2": { - "price": 58999999, - "name": "Black Cat" - }, - "redstone_torch_on": { - "price": 2, - "name": "Redstone Torch" - }, - "lvl_100_epic_dolphin_candy_4": { - "price": 13500000, - "name": "Dolphin" - }, - "lvl_100_epic_mithril_golem_candy_10": { - "price": 3799000, - "name": "Mithril Golem" - }, - "lvl_100_rare_mithril_golem": { - "price": 350000, - "name": "Rare Mithril Golem" - }, - "pet_skin_blaze_frozen": { - "price": 9450000, - "name": "Frozen Blaze Skin" - }, - "lvl_100_legendary_blaze_skinned_blaze_frozen": { - "price": 105000000, - "name": "Blaze" - }, - "prismarine:1": { - "price": 600, - "name": "Prismarine Bricks" - }, - "birch_wood_stairs": { - "price": 1, - "name": "Birch Wood Stairs" - }, - "lvl_100_legendary_blaze_candy_1": { - "price": 84000000, - "name": "Blaze" - }, - "lvl_100_epic_skeleton_candy_10": { - "price": 6000000, - "name": "Skeleton" - }, - "lvl_100_epic_dolphin_candy_6": { - "price": 12000000, - "name": "Dolphin" - }, - "grilled_pork": { - "price": 1600, - "name": "Cooked Porkchop" - }, - "snow_suit_helmet_skinned_snow_snowglobe": { - "price": 80000000, - "name": "Snow Suit Helmet" - }, - "builder_onion": { - "price": 3200, - "name": "Onion" - }, - "lvl_100_legendary_squid_skinned_squid_glow_candy_3": { - "price": 66000000, - "name": "Squid" - }, - "lvl_100_legendary_blaze_skinned_blaze_frozen_candy_10": { - "price": 105000000, - "name": "Blaze" - }, - "lvl_100_epic_dolphin_candy_3": { - "price": 10000000, - "name": "Dolphin" - }, - "perfect_boots_11": { - "price": 5000000, - "name": "Perfect Boots - Tier Xi" - }, - "lvl_100_legendary_silverfish_candy_4": { - "price": 3700000, - "name": "Silverfish" - }, - "lvl_100_legendary_silverfish_candy_2": { - "price": 3790000, - "name": "Silverfish" - }, - "spray_can": { - "price": 5, - "name": "Spray Can" - }, - "stone:5": { - "price": 56, - "name": "Andesite" - }, - "lvl_100_epic_rabbit_candy_4": { - "price": 6200000, - "name": "Rabbit" - }, - "lvl_100_legendary_skeleton_candy_2": { - "price": 17980000, - "name": "Skeleton" - }, - "lvl_100_legendary_silverfish_candy_3": { - "price": 3000000, - "name": "Silverfish" - }, - "lvl_100_legendary_silverfish_candy_8": { - "price": 2999999, - "name": "Silverfish" - }, - "lvl_100_epic_blue_whale_candy_4": { - "price": 21000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_guardian_skinned_guardian_candy_10": { - "price": 250000000, - "name": "Guardian" - }, - "lvl_100_rare_tiger_candy_2": { - "price": 5000000, - "name": "Rare Tiger" - }, - "lvl_100_epic_blue_whale_candy_6": { - "price": 20000000, - "name": "Blue Whale" - }, - "lvl_100_epic_enderman_skinned_enderman_slayer_candy_2": { - "price": 20000000, - "name": "Enderman" - }, - "lvl_100_legendary_wither_skeleton_candy_7": { - "price": 10700000, - "name": "Wither Skeleton" - }, - "stained_glass_pane": { - "price": 240, - "name": "White Stained Glass Pane" - }, - "ghast_head": { - "price": 320, - "name": "Ghast Head" - }, - "lvl_100_epic_mithril_golem_candy_5": { - "price": 3950000, - "name": "Mithril Golem" - }, - "ink_sack:9": { - "price": 1, - "name": "Pink Dye" - }, - "lvl_100_legendary_enderman_candy_1": { - "price": 55000000, - "name": "Enderman" - }, - "lvl_100_legendary_blaze_candy_4": { - "price": 86000000, - "name": "Blaze" - }, - "birch_door_item": { - "price": 1, - "name": "Birch Door" - }, - "stained_glass:4": { - "price": 300, - "name": "Yellow Stained Glass" - }, - "lvl_100_legendary_mithril_golem_candy_4": { - "price": 5700000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_wolf_skinned_wolf_candy_1": { - "price": 55000000, - "name": "Wolf" - }, - "lvl_100_rare_tiger_candy_6": { - "price": 7000000, - "name": "Rare Tiger" - }, - "lvl_100_legendary_ocelot_candy_10": { - "price": 19500000, - "name": "Ocelot" - }, - "builder_apple": { - "price": 50, - "name": "Apple" - }, - "night_saver": { - "price": 35, - "name": "Night Saver" - }, - "nether_biome_stick": { - "price": 2560, - "name": "Nether Biome Stick" - }, - "lvl_100_rare_dolphin_candy_2": { - "price": 4000000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_elephant_skinned_elephant_green_candy_3": { - "price": 97333333, - "name": "Elephant" - }, - "stone:3": { - "price": 2, - "name": "Diorite" - }, - "lvl_100_epic_phoenix_candy_9": { - "price": 24000000, - "name": "Phoenix" - }, - "cactus_chestplate": { - "price": 20, - "name": "Cactus Chestplate" - }, - "lvl_100_rare_rabbit_candy_10": { - "price": 600000, - "name": "Rare Rabbit" - }, - "lvl_100_rare_griffin_candy_6": { - "price": 7000000, - "name": "Rare Griffin" - }, - "lvl_1_legendary_ocelot_skinned_ocelot_snow_tiger": { - "price": 11000000, - "name": "Ocelot" - }, - "lvl_100_legendary_blaze_skinned_blaze_frozen_candy_7": { - "price": 135000000, - "name": "Blaze" - }, - "painting": { - "price": 75, - "name": "Painting" - }, - "lvl_100_epic_blue_whale_candy_8": { - "price": 26000000, - "name": "Blue Whale" - }, - "lvl_100_epic_blue_whale_candy_10": { - "price": 24000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_guardian_skinned_guardian_candy_1": { - "price": 249999999, - "name": "Guardian" - }, - "lvl_100_epic_silverfish_candy_1": { - "price": 2150000, - "name": "Silverfish" - }, - "gold_plate": { - "price": 24, - "name": "Weighted Pressure Plate" - }, - "lvl_100_legendary_black_cat_candy_6": { - "price": 55000000, - "name": "Black Cat" - }, - "iron_axe": { - "price": 20, - "name": "Iron Axe" - }, - "game_breaker": { - "price": 1500000000, - "name": "Game Breaker" - }, - "lvl_100_legendary_tiger_candy_2": { - "price": 27900000, - "name": "Tiger" - }, - "lvl_100_legendary_squid_candy_6": { - "price": 30850000, - "name": "Squid" - }, - "gold_boots": { - "price": 8, - "name": "Golden Boots" - }, - "lvl_100_legendary_rock_skinned_rock_laughing": { - "price": 465000000, - "name": "Unknown" - }, - "lvl_100_legendary_rock_skinned_rock_laugh": { - "price": 695000000, - "name": "Rock" - }, - "lvl_100_legendary_ocelot_skinned_ocelot_snow_tiger_candy_10": { - "price": 65000000, - "name": "Ocelot" - }, - "lvl_100_rare_dolphin_candy_6": { - "price": 7000000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_squid_candy_8": { - "price": 30000000, - "name": "Squid" - }, - "lvl_100_rare_dolphin_candy_5": { - "price": 3250000, - "name": "Rare Dolphin" - }, - "lvl_200_legendary_golden_dragon_candy_1": { - "price": 1299000000, - "name": "Golden Dragon" - }, - "lvl_100_common_griffin_candy_10": { - "price": 3500000, - "name": "Common Griffin" - }, - "double_plant:1": { - "price": 64, - "name": "Lilac" - }, - "long_grass:1": { - "price": 20, - "name": "Long Grass" - }, - "protector_baby": { - "price": 275000000, - "name": "Baby Skin" - }, - "sandstone": { - "price": 45, - "name": "Sandstone" - }, - "lvl_100_legendary_sheep_skinned_sheep_light_green": { - "price": 650000000, - "name": "Sheep" - }, - "lvl_100_legendary_blaze_candy_6": { - "price": 92000000, - "name": "Blaze" - }, - "lvl_100_rare_dolphin_candy_4": { - "price": 5900000, - "name": "Rare Dolphin" - }, - "lvl_100_rare_elephant": { - "price": 5000000, - "name": "Rare Elephant" - }, - "lvl_100_epic_rabbit_candy_3": { - "price": 4500000, - "name": "Rabbit" - }, - "lvl_1_legendary_blaze_skinned_blaze_frozen": { - "price": 100000000, - "name": "Blaze" - }, - "rock_the_fish": { - "price": 100000000, - "name": "Rock The Fish" - }, - "lvl_100_legendary_dolphin_candy_9": { - "price": 50000000, - "name": "Dolphin" - }, - "lvl_100_common_dolphin_candy_8": { - "price": 500000, - "name": "Common Dolphin" - }, - "soulflow_pile": { - "price": 160, - "name": "Soulflow Pile" - }, - "builder_lemon": { - "price": 50, - "name": "Lemon" - }, - "lvl_100_common_bee": { - "price": 1000000, - "name": "Common Bee" - }, - "lvl_100_epic_silverfish_candy_10": { - "price": 1899000, - "name": "Silverfish" - }, - "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_7": { - "price": 61000000, - "name": "Black Cat" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_5": { - "price": 58000000, - "name": "Tiger" - }, - "ultimate_chimera_2": { - "price": 210000000, - "name": "Ultimate Chimera 2" - }, - "lvl_100_epic_turtle_candy_10": { - "price": 15000000, - "name": "Turtle" - }, - "lvl_100_legendary_lion_candy_3": { - "price": 44000000, - "name": "Lion" - }, - "coal_ore": { - "price": 15, - "name": "Coal Ore" - }, - "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_8": { - "price": 50000000, - "name": "Tiger" - }, - "lvl_100_legendary_monkey_candy_7": { - "price": 62000000, - "name": "Monkey" - }, - "lvl_100_legendary_dolphin_candy_3": { - "price": 45800000, - "name": "Dolphin" - }, - "lvl_100_rare_enderman_candy_10": { - "price": 4900000, - "name": "Rare Enderman" - }, - "lvl_100_legendary_wolf_candy_6": { - "price": 18000000, - "name": "Wolf" - }, - "lvl_100_legendary_armadillo_candy_2": { - "price": 6500000, - "name": "Armadillo" - }, - "lvl_100_legendary_blaze_candy_7": { - "price": 90969000, - "name": "Blaze" - }, - "lvl_100_legendary_golem_candy_6": { - "price": 24200000, - "name": "Golem" - }, - "lvl_100_legendary_elephant_candy_8": { - "price": 35000000, - "name": "Elephant" - }, - "lvl_100_legendary_ammonite_candy_1": { - "price": 39999999, - "name": "Ammonite" - }, - "lvl_100_legendary_ocelot_candy_7": { - "price": 20000000, - "name": "Ocelot" - }, - "lvl_100_legendary_baby_yeti_candy_2": { - "price": 54999999, - "name": "Baby Yeti" - }, - "cooked_mutton": { - "price": 1075, - "name": "Cooked Mutton" - }, - "lvl_100_uncommon_tiger_candy_10": { - "price": 16000000, - "name": "Uncommon Tiger" - }, - "wood_plate": { - "price": 320, - "name": "Wooden Pressure Plate" - }, - "mithril_infusion": { - "price": 4346, - "name": "Mithril Infusion" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_3": { - "price": 210000000, - "name": "Sheep" - }, - "lvl_100_epic_blue_whale_candy_7": { - "price": 27950000, - "name": "Blue Whale" - }, - "lvl_100_legendary_rabbit_candy_7": { - "price": 10700000, - "name": "Rabbit" - }, - "lvl_100_legendary_jellyfish_candy_3": { - "price": 17500000, - "name": "Jellyfish" - }, - "iron_fence": { - "price": 320, - "name": "Iron Bars" - }, - "lvl_100_legendary_parrot_candy_8": { - "price": 27999999, - "name": "Parrot" - }, - "lvl_100_legendary_guardian_candy_3": { - "price": 5800000, - "name": "Guardian" - }, - "lvl_100_common_griffin_candy_1": { - "price": 3500000, - "name": "Common Griffin" - }, - "stained_clay:10": { - "price": 2, - "name": "Purple Hardened Clay" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_fossilized_candy_1": { - "price": 35000000, - "name": "Silverfish" - }, - "cooked_beef": { - "price": 68, - "name": "Cooked Beef" - }, - "lvl_100_epic_ender_dragon_candy_7": { - "price": 519000000, - "name": "Ender Dragon" - }, - "jumbo_backpack_skinned_blue_egg": { - "price": 11500000, - "name": "Jumbo Backpack" - }, - "ink_sack:7": { - "price": 320, - "name": "Gray Dye" - }, - "lvl_100_epic_sheep_candy_3": { - "price": 4700000, - "name": "Sheep" - }, - "bane_of_arthropods_3": { - "price": 4, - "name": "Bane Of Arthropods 3" - }, - "lvl_100_legendary_wolf_skinned_wolf_candy_5": { - "price": 59555555, - "name": "Wolf" - }, - "lvl_100_legendary_phoenix_candy_10": { - "price": 105000000, - "name": "Phoenix" - }, - "lvl_100_uncommon_silverfish": { - "price": 450000, - "name": "Uncommon Silverfish" - }, - "shadow_assassin_helmet_skinned_shadow_assassin_crimson": { - "price": 10000000, - "name": "Shadow Assassin Helmet" - }, - "ink_sack:2": { - "price": 120, - "name": "Cactus Green" - }, - "lvl_100_epic_jellyfish_candy_10": { - "price": 6570000, - "name": "Jellyfish" - }, - "acacia_fence_gate": { - "price": 5, - "name": "Acacia Fence Gate" - }, - "item_frame": { - "price": 305, - "name": "Item Frame" - }, - "lvl_100_rare_blue_whale": { - "price": 5600000, - "name": "Rare Blue Whale" - }, - "lvl_1_legendary_rock_skinned_rock_cool": { - "price": 570000000, - "name": "Unknown" - }, - "lvl_100_legendary_jellyfish_candy_1": { - "price": 17000000, - "name": "Jellyfish" - }, - "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_2": { - "price": 295000000, - "name": "Sheep" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_4": { - "price": 44000000, - "name": "Enderman" - }, - "lvl_100_common_griffin_candy_5": { - "price": 4000000, - "name": "Common Griffin" - }, - "lvl_100_epic_dolphin_candy_8": { - "price": 10000000, - "name": "Dolphin" - }, - "baked_potato": { - "price": 43, - "name": "Baked Potato" - }, - "lvl_100_common_griffin_candy_3": { - "price": 4000000, - "name": "Common Griffin" - }, - "lvl_100_epic_rabbit_skinned_rabbit_aquamarine": { - "price": 45000000, - "name": "Rabbit" - }, - "chainmail_chestplate": { - "price": 5, - "name": "Chainmail Chestplate" - }, - "lvl_100_legendary_mithril_golem_candy_6": { - "price": 6300000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_baby_yeti_candy_9": { - "price": 63999990, - "name": "Baby Yeti" - }, - "lvl_100_legendary_wolf_candy_8": { - "price": 18400000, - "name": "Wolf" - }, - "lvl_100_epic_ender_dragon_candy_8": { - "price": 560000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_griffin_candy_2": { - "price": 20000000, - "name": "Griffin" - }, - "perfect_helmet_11": { - "price": 6000000, - "name": "Perfect Helmet - Tier Xi" - }, - "lvl_100_legendary_pigman_candy_10": { - "price": 36999999, - "name": "Pigman" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_neon_purple_candy_10": { - "price": 850000000, - "name": "Ender Dragon" - }, - "cactus_boots": { - "price": 10, - "name": "Cactus Boots" - }, - "cactus_helmet": { - "price": 15, - "name": "Cactus Helmet" - }, - "lvl_100_rare_armadillo_candy_1": { - "price": 3200000, - "name": "Rare Armadillo" - }, - "ultimate_chimera_3": { - "price": 518000000, - "name": "Ultimate Chimera 3" - }, - "ultimate_chimera_4": { - "price": 1000000000, - "name": "Ultimate Chimera 4" - }, - "serrated_claws": { - "price": 5900000, - "name": "Serrated Claws" - }, - "lvl_100_uncommon_lion": { - "price": 500000, - "name": "Uncommon Lion" - }, - "lvl_100_common_ocelot": { - "price": 1000000, - "name": "Common Ocelot" - }, - "sand:1": { - "price": 71, - "name": "Red Sand" - }, - "lvl_1_legendary_hound_skinned_hound_beagle": { - "price": 9500000, - "name": "Hound" - }, - "lvl_1_epic_blaze_skinned_blaze_frozen": { - "price": 25000000, - "name": "Blaze" - }, - "flawless_jasper_gem": { - "price": 4499999, - "name": "Flawless Jasper Gemstone" - }, - "lvl_1_mythic_enderman": { - "price": 30000000, - "name": "Unknown" - }, - "lvl_100_legendary_zombie_candy_7": { - "price": 35000000, - "name": "Zombie" - }, - "boss_spirit_bow": { - "price": 1111111111, - "name": "Spirit Bow" - }, - "lvl_100_epic_ocelot_candy_10": { - "price": 19000000, - "name": "Ocelot" - }, - "lvl_100_legendary_monkey_candy_4": { - "price": 65500000, - "name": "Monkey" - }, - "lvl_100_legendary_ocelot_candy_3": { - "price": 22800000, - "name": "Ocelot" - }, - "lvl_100_epic_golem": { - "price": 12000000, - "name": "Golem" - }, - "lvl_100_legendary_ocelot_candy_6": { - "price": 25000000, - "name": "Ocelot" - }, - "lvl_100_legendary_magma_cube_candy_10": { - "price": 32000000, - "name": "Magma Cube" - }, - "lvl_100_legendary_wolf_skinned_wolf_candy_10": { - "price": 59900000, - "name": "Wolf" - }, - "lvl_100_legendary_rock_skinned_rock_cool_candy_10": { - "price": 500000000, - "name": "Rock" - }, - "lvl_100_legendary_mithril_golem_candy_7": { - "price": 6500000, - "name": "Mithril Golem" - }, - "lvl_100_legendary_phoenix_candy_1": { - "price": 110000000, - "name": "Phoenix" - }, - "lvl_100_legendary_blaze_candy_8": { - "price": 84999999, - "name": "Blaze" - }, - "lvl_100_legendary_tarantula_candy_7": { - "price": 29000000, - "name": "Tarantula" - }, - "lvl_100_legendary_baby_yeti_candy_3": { - "price": 48000000, - "name": "Baby Yeti" - }, - "lvl_1_legendary_blue_whale_skinned_whale_orca": { - "price": 125000000, - "name": "Blue Whale" - }, - "lvl_100_legendary_elephant_skinned_elephant_purple_candy_7": { - "price": 92999999, - "name": "Elephant" - }, - "lvl_100_common_squid_skinned_squid_glow": { - "price": 45000000, - "name": "Common Squid" - }, - "lvl_100_legendary_flying_fish_candy_4": { - "price": 31999990, - "name": "Flying Fish" - }, - "lvl_100_legendary_ender_dragon_candy_1": { - "price": 899999999, - "name": "Ender Dragon" - }, - "lvl_100_epic_jellyfish_candy_2": { - "price": 7700000, - "name": "Jellyfish" - }, - "lvl_100_epic_ender_dragon_candy_6": { - "price": 538969000, - "name": "Ender Dragon" - }, - "lvl_100_legendary_turtle_candy_9": { - "price": 39999000, - "name": "Turtle" - }, - "lvl_100_legendary_rabbit_skinned_rabbit": { - "price": 240000000, - "name": "Rabbit" - }, - "lvl_100_epic_griffin_candy_7": { - "price": 13000000, - "name": "Griffin" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_4": { - "price": 194000000, - "name": "Enderman" - }, - "pet_skin_sheep_purple": { - "price": 1234567890, - "name": "Purple Sheep Skin" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_pastel_candy_10": { - "price": 820000000, - "name": "Ender Dragon" - }, - "lvl_100_common_monkey_skinned_monkey_gorilla": { - "price": 40000000, - "name": "Common Monkey" - }, - "lvl_100_legendary_endermite_candy_10": { - "price": 8980000, - "name": "Endermite" - }, - "lvl_100_epic_rock_candy_10": { - "price": 4999000, - "name": "Rock" - }, - "lvl_100_epic_blaze_candy_9": { - "price": 43000000, - "name": "Blaze" - }, - "lvl_100_epic_phoenix_skinned_phoenix_ice": { - "price": 28000000, - "name": "Phoenix" - }, - "lvl_100_rare_scatha_candy_10": { - "price": 435432100, - "name": "Rare Scatha" - }, - "lvl_100_legendary_squid_skinned_squid_glow_candy_2": { - "price": 59999999, - "name": "Squid" - }, - "lvl_100_legendary_flying_fish_candy_6": { - "price": 30900000, - "name": "Flying Fish" - }, - "lvl_100_legendary_elephant_skinned_elephant_red_candy_10": { - "price": 134999999, - "name": "Elephant" - }, - "lvl_100_rare_dolphin_candy_7": { - "price": 3200000, - "name": "Rare Dolphin" - }, - "diamond_ore": { - "price": 10, - "name": "Diamond Ore" - }, - "lvl_100_legendary_wither_skeleton_candy_9": { - "price": 15999997, - "name": "Wither Skeleton" - }, - "lvl_100_epic_squid": { - "price": 8000000, - "name": "Squid" - }, - "lvl_100_epic_dolphin_candy_7": { - "price": 10999999, - "name": "Dolphin" - }, - "lvl_100_legendary_armadillo_candy_1": { - "price": 7200000, - "name": "Armadillo" - }, - "lvl_100_legendary_zombie_candy_3": { - "price": 45000000, - "name": "Zombie" - }, - "perfect_leggings_11": { - "price": 10000000, - "name": "Perfect Leggings - Tier Xi" - }, - "gold_leggings": { - "price": 14, - "name": "Golden Leggings" - }, - "lvl_100_uncommon_griffin_candy_9": { - "price": 4000000, - "name": "Uncommon Griffin" - }, - "lvl_100_legendary_wolf_candy_9": { - "price": 25000000, - "name": "Wolf" - }, - "lvl_100_legendary_parrot_candy_10": { - "price": 26000000, - "name": "Parrot" - }, - "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_8": { - "price": 48000000, - "name": "Enderman" - }, - "lvl_100_epic_bat_candy_10": { - "price": 7500000, - "name": "Bat" - }, - "brick": { - "price": 3, - "name": "Bricks" - }, - "cow_head": { - "price": 16, - "name": "Cow Head" - }, - "lvl_100_common_rock_candy_1": { - "price": 500000, - "name": "Common Rock" - }, - "pufferfish_hat": { - "price": 60, - "name": "Pufferfish Hat" - }, - "mossy_cobblestone": { - "price": 690, - "name": "Moss Stone" - }, - "stained_clay:13": { - "price": 10, - "name": "Green Hardened Clay" - }, - "lvl_100_legendary_sheep_skinned_sheep_white_candy_10": { - "price": 749999999, - "name": "Sheep" - }, - "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_4": { - "price": 31000000, - "name": "Elephant" - }, - "lvl_100_legendary_endermite_candy_1": { - "price": 10000000, - "name": "Endermite" - }, - "lvl_100_epic_guardian_candy_4": { - "price": 4600000, - "name": "Guardian" - }, - "lvl_100_epic_ender_dragon_candy_9": { - "price": 540000000, - "name": "Ender Dragon" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple_candy_5": { - "price": 560000000, - "name": "Ender Dragon" - }, - "golem_hat": { - "price": 100, - "name": "Golem Hat" - }, - "lvl_100_epic_blaze_candy_10": { - "price": 41999999, - "name": "Blaze" - }, - "lvl_100_legendary_elephant_skinned_elephant_orange_candy_3": { - "price": 297000000, - "name": "Elephant" - }, - "lvl_100_epic_monkey_candy_1": { - "price": 20000000, - "name": "Monkey" - }, - "lvl_100_legendary_wolf_candy_4": { - "price": 20000000, - "name": "Wolf" - }, - "builder_ancient_fruit": { - "price": 10, - "name": "Fruit" - }, - "builder_bush": { - "price": 10, - "name": "Bush" - }, - "builder_cactus": { - "price": 50, - "name": "Cactus" - }, - "builder_corn": { - "price": 10, - "name": "Corn" - }, - "builder_berry": { - "price": 50, - "name": "Berry" - }, - "builder_beetroot": { - "price": 50, - "name": "Beetroot" - }, - "lvl_100_legendary_blaze_candy_2": { - "price": 89999999, - "name": "Blaze" - }, - "lvl_100_epic_phoenix_candy_10": { - "price": 109000000, - "name": "Phoenix" - }, - "enchanted_bookshelf": { - "price": 50000, - "name": "Enchanted Bookshelf" - }, - "lvl_100_legendary_enderman_candy_4": { - "price": 55000000, - "name": "Enderman" - }, - "dark_oak_stairs": { - "price": 1, - "name": "Dark Oak Wood Stairs" - }, - "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue_candy_8": { - "price": 569000000, - "name": "Ender Dragon" - }, - "prismarine_blade": { - "price": 800, - "name": "Prismarine Blade" - }, - "lvl_100_legendary_guardian_candy_6": { - "price": 5400000, - "name": "Guardian" - }, - "lvl_100_common_griffin_candy_4": { - "price": 2500000, - "name": "Common Griffin" - }, - "lvl_100_legendary_ender_dragon_candy_2": { - "price": 817999000, - "name": "Ender Dragon" - }, - "ink_sack:12": { - "price": 5, - "name": "Blue Dye" - }, - "lvl_100_epic_tiger_candy_8": { - "price": 17000000, - "name": "Tiger" - }, - "lvl_100_legendary_megalodon_candy_5": { - "price": 26000000, - "name": "Megalodon" - }, - "book_and_quill": { - "price": 16, - "name": "Book And Quill" - }, - "lvl_100_rare_guardian_candy_2": { - "price": 1600000, - "name": "Rare Guardian" - }, - "lvl_100_epic_megalodon": { - "price": 13500000, - "name": "Megalodon" - }, - "lvl_100_legendary_dolphin_candy_5": { - "price": 48700000, - "name": "Dolphin" - }, - "hot_potato_book": { - "price": 54045, - "name": "Hot Potato Book" - }, - "lvl_100_legendary_magma_cube_candy_4": { - "price": 31500000, - "name": "Magma Cube" - }, - "lvl_100_legendary_chicken_skinned_chicken_baby_chick_candy_10": { - "price": 50000000, - "name": "Chicken" - }, - "lvl_100_legendary_spirit_candy_10": { - "price": 28000000, - "name": "Spirit" - }, - "danger_3_portal": { - "price": 500, - "name": "Portal To The End" - }, - "lvl_100_legendary_bal_candy_5": { - "price": 34900000, - "name": "Bal" - }, - "lvl_100_legendary_ghoul_candy_3": { - "price": 40000000, - "name": "Ghoul" - }, - "lvl_100_legendary_monkey_skinned_monkey_golden_candy_5": { - "price": 99999999, - "name": "Monkey" - }, - "lvl_100_legendary_chicken_candy_2": { - "price": 24500000, - "name": "Chicken" - }, - "lvl_100_epic_lion_candy_9": { - "price": 25000000, - "name": "Lion" - }, - "lvl_100_legendary_skeleton_candy_6": { - "price": 22499999, - "name": "Skeleton" - }, - "iron_plate": { - "price": 30, - "name": "Weighted Pressure Plate" - }, - "fence": { - "price": 320, - "name": "Oak Fence" - }, - "lvl_100_legendary_chicken_candy_10": { - "price": 25000000, - "name": "Chicken" - }, - "lvl_100_legendary_monkey_candy_6": { - "price": 60000000, - "name": "Monkey" - }, - "lvl_100_mythic_enderman_candy_7": { - "price": 51000000, - "name": "Enderman" - }, - "lvl_100_legendary_armadillo_candy_4": { - "price": 51000000, - "name": "Armadillo" - }, - "lvl_100_legendary_silverfish_candy_6": { - "price": 3790000, - "name": "Silverfish" - }, - "lvl_1_uncommon_zombie": { - "price": 999000, - "name": "Uncommon Zombie" - }, - "lvl_100_epic_wither_skeleton_candy_3": { - "price": 5000000, - "name": "Wither Skeleton" - }, - "gold_sword": { - "price": 40, - "name": "Golden Sword" - }, - "lvl_100_legendary_flying_fish_candy_5": { - "price": 30000000, - "name": "Flying Fish" - }, - "lvl_100_legendary_flying_fish_candy_1": { - "price": 25000000, - "name": "Flying Fish" - }, - "lvl_100_legendary_skeleton_horse_skinned_horse_zombie_candy_10": { - "price": 65000000, - "name": "Skeleton Horse" - }, - "ink_sack:13": { - "price": 1, - "name": "Magenta Dye" - }, - "lvl_100_legendary_ender_dragon_skinned_dragon_pastel_candy_4": { - "price": 809696969, - "name": "Ender Dragon" - }, - "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_3": { - "price": 30000000, - "name": "Endermite" - }, - "lvl_100_mythic_enderman_skinned_enderman_candy_1": { - "price": 182000000, - "name": "Enderman" - }, - "lvl_100_legendary_baby_yeti_candy_4": { - "price": 51999999, - "name": "Baby Yeti" - }, - "jungle_wood_stairs": { - "price": 3, - "name": "Jungle Wood Stairs" - }, - "lvl_1_rare_spider": { - "price": 500000, - "name": "Rare Spider" - }, - "lvl_100_legendary_monkey_skinned_monkey_golden_candy_10": { - "price": 130000000, - "name": "Monkey" - }, - "lvl_100_legendary_silverfish_candy_5": { - "price": 5499999, - "name": "Silverfish" - }, - "lvl_1_rare_zombie": { - "price": 1000000, - "name": "Rare Zombie" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_6": { - "price": 35000000, - "name": "Rabbit" - }, - "lvl_100_epic_sheep_candy_1": { - "price": 3800000, - "name": "Sheep" - }, - "lvl_100_legendary_bat_candy_3": { - "price": 8000000, - "name": "Bat" - }, - "lvl_100_rare_guardian_candy_5": { - "price": 1500000, - "name": "Rare Guardian" - }, - "lvl_100_rare_tiger_candy_10": { - "price": 6750000, - "name": "Rare Tiger" - }, - "lvl_100_legendary_wolf_skinned_wolf_candy_2": { - "price": 60000000, - "name": "Wolf" - }, - "lvl_100_legendary_ocelot_candy_4": { - "price": 19800000, - "name": "Ocelot" - }, - "lvl_100_rare_rabbit_candy_6": { - "price": 1500000, - "name": "Rare Rabbit" - }, - "lvl_100_epic_parrot_candy_1": { - "price": 8850000, - "name": "Parrot" - }, - "lvl_100_legendary_dolphin_candy_6": { - "price": 46400000, - "name": "Dolphin" - }, - "lvl_100_common_dolphin": { - "price": 1600000, - "name": "Common Dolphin" - }, - "lvl_100_epic_sheep_candy_10": { - "price": 3800000, - "name": "Sheep" - }, - "lvl_100_legendary_ammonite_candy_9": { - "price": 33000000, - "name": "Ammonite" - }, - "lvl_100_epic_rabbit_candy_6": { - "price": 5900000, - "name": "Rabbit" - }, - "wool:8": { - "price": 2, - "name": "Gray Wool" - }, - "skeleton_talisman": { - "price": 250, - "name": "Skeleton Talisman" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_fossilized_candy_10": { - "price": 47555000, - "name": "Silverfish" - }, - "ink_sack:11": { - "price": 10, - "name": "Dandelion Yellow" - }, - "lvl_100_legendary_silverfish_skinned_silverfish_candy_10": { - "price": 79990000, - "name": "Silverfish" - }, - "lvl_100_epic_enderman_candy_10": { - "price": 14000000, - "name": "Enderman" - }, - "lvl_100_legendary_turtle_candy_7": { - "price": 35000000, - "name": "Turtle" - }, - "cooked_chicken": { - "price": 270, - "name": "Cooked Chicken" - }, - "lvl_100_legendary_rat_candy_1": { - "price": 20400000, - "name": "Rat" - }, - "lvl_100_legendary_dolphin_candy_2": { - "price": 50000000, - "name": "Dolphin" - }, - "lvl_100_epic_blue_whale_candy_2": { - "price": 29950000, - "name": "Blue Whale" - }, - "dark_oak_fence": { - "price": 45, - "name": "Dark Oak Fence" - }, - "lvl_100_epic_guardian_candy_2": { - "price": 3200000, - "name": "Guardian" - }, - "savana_bow": { - "price": 2500, - "name": "Savanna Bow" - }, - "lvl_1_uncommon_spider": { - "price": 50000, - "name": "Uncommon Spider" - }, - "thin_glass": { - "price": 2, - "name": "Glass Pane" - }, - "cheese_fuel": { - "price": 2549, - "name": "Tasty Cheese" - }, - "iron_trapdoor": { - "price": 36, - "name": "Iron Trapdoor" - }, - "lvl_100_uncommon_enderman": { - "price": 550000, - "name": "Uncommon Enderman" - }, - "builder_banana_bunch": { - "price": 10, - "name": "Banana Bunch" - }, - "bigger_teeth": { - "price": 4800000, - "name": "Bigger Teeth" - }, - "silence_block": { - "price": 800, - "name": "Silence Block" - }, - "lvl_100_rare_lion": { - "price": 2000000, - "name": "Rare Lion" - }, - "leaves:2": { - "price": 44, - "name": "Birch Leaves" - }, - "jungle_fence_gate": { - "price": 1, - "name": "Jungle Fence Gate" - }, - "intimidation_talisman": { - "price": 1000, - "name": "Intimidation Talisman" - }, - "step:6": { - "price": 3, - "name": "Nether Brick Slab" - }, - "chainmail_boots": { - "price": 5, - "name": "Chainmail Boots" - }, - "lvl_100_epic_endermite": { - "price": 7999999, - "name": "Endermite" - }, - "lvl_100_epic_hound": { - "price": 35000000, - "name": "Hound" - }, - "dark_oak_fence_gate": { - "price": 1, - "name": "Dark Oak Fence Gate" - }, - "stained_glass_pane:10": { - "price": 1, - "name": "Purple Stained Glass Pane" - }, - "lvl_100_common_blue_whale": { - "price": 3333333, - "name": "Common Blue Whale" - }, - "builder_brown_mushroom": { - "price": 50, - "name": "Brown Mushroom" - }, - "builder_blue_corn": { - "price": 50, - "name": "Blue Corn" - }, - "lvl_100_legendary_rock_skinned_rock_derp": { - "price": 888888888, - "name": "Rock" - }, - "lvl_100_rare_endermite": { - "price": 7000000, - "name": "Rare Endermite" - }, - "sapling:5": { - "price": 40, - "name": "Dark Oak Sapling" - }, - "fermented_spider_eye": { - "price": 50, - "name": "Fermented Spider Eye" - }, - "creeper_hat": { - "price": 16, - "name": "Creeper Hat" - }, - "stained_clay:4": { - "price": 2, - "name": "Yellow Hardened Clay" - }, - "prismarine:2": { - "price": 690, - "name": "Dark Prismarine" - }, - "leather_chestplate": { - "price": 12, - "name": "Leather Chestplate" - }, - "lvl_1_legendary_endermite_skinned_endermite_radiant": { - "price": 25000000, - "name": "Endermite" - }, - "iron_door": { - "price": 36, - "name": "Iron Door" - }, - "bane_of_arthropods_2": { - "price": 100, - "name": "Bane Of Arthropods 2" - }, - "chicken_head": { - "price": 40, - "name": "Chicken Head" - }, - "big_brain_4": { - "price": 35000000, - "name": "Big Brain 4" - }, - "nether_fence": { - "price": 640, - "name": "Nether Brick Fence" - }, - "wool:9": { - "price": 2, - "name": "Cyan Wool" - }, - "lvl_100_epic_hound_candy_6": { - "price": 11000000, - "name": "Hound" - }, - "lvl_100_legendary_jerry_candy_6": { - "price": 30000000, - "name": "Jerry" - }, - "lvl_100_rare_enderman_skinned_enderman_slayer": { - "price": 10000000, - "name": "Rare Enderman" - }, - "lvl_100_legendary_endermite_candy_3": { - "price": 10000000, - "name": "Endermite" - }, - "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_1": { - "price": 35000000, - "name": "Endermite" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_3": { - "price": 39995000, - "name": "Rabbit" - }, - "lvl_100_legendary_snowman_candy_8": { - "price": 44000000, - "name": "Snowman" - }, - "lvl_100_legendary_lion_candy_9": { - "price": 42500000, - "name": "Lion" - }, - "lvl_100_common_rock_candy_10": { - "price": 1000000, - "name": "Common Rock" - }, - "lvl_100_legendary_mithril_golem_candy_5": { - "price": 7490000, - "name": "Mithril Golem" - }, - "lvl_100_epic_tiger_skinned_tiger_saber_tooth_candy_5": { - "price": 34799999, - "name": "Tiger" - }, - "lvl_100_legendary_turtle_candy_6": { - "price": 26999900, - "name": "Turtle" - }, - "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_4": { - "price": 34999000, - "name": "Rabbit" - }, - "lvl_100_legendary_elephant_skinned_elephant_blue_candy_1": { - "price": 400000000, - "name": "Elephant" - }, - "lvl_100_epic_lion_candy_6": { - "price": 28200000, - "name": "Lion" - }, - "lvl_100_epic_tiger_skinned_tiger_saber_tooth_candy_3": { - "price": 33333333, - "name": "Tiger" - }, - "ink_sack:14": { - "price": 320, - "name": "Orange Dye" - }, - "roofed_forest_biome_stick": { - "price": 160, - "name": "Roofed Forest Biome Stick" - }, - "nether_brick_stairs": { - "price": 2, - "name": "Nether Bricks Stairs" - }, - "daylight_detector": { - "price": 45, - "name": "Detector" - }, - "birch_fence": { - "price": 5, - "name": "Birch Fence" - }, - "powered_rail": { - "price": 540, - "name": "Powered Rail" - }, - "lvl_100_common_enderman": { - "price": 1990000, - "name": "Common Enderman" - }, - "lvl_100_rare_giraffe": { - "price": 1100000, - "name": "Rare Giraffe" - }, - "stained_clay:5": { - "price": 2, - "name": "Lime Hardened Clay" - }, - "stained_clay:6": { - "price": 2, - "name": "Pink Hardened Clay" - }, - "minecart": { - "price": 40, - "name": "Minecart" - }, - "wood_door": { - "price": 70, - "name": "Oak Door" - }, - "lvl_1_common_tiger_skinned_tiger_saber_tooth": { - "price": 5000000, - "name": "Common Tiger" - }, - "lvl_100_rare_flying_fish": { - "price": 3000000, - "name": "Rare Flying Fish" - }, - "carpet:13": { - "price": 46, - "name": "Green Carpet" - }, - "stained_glass:13": { - "price": 3, - "name": "Green Stained Glass" - }, - "carpet": { - "price": 100, - "name": "Carpet" - }, - "sculptors_axe": { - "price": 64, - "name": "Sculptor's Axe" - }, - "taiga_biome_stick": { - "price": 160, - "name": "Taiga Biome Stick" - }, - "lapis_ore": { - "price": 5, - "name": "Lapis Lazuli Ore" - }, - "red_rose:4": { - "price": 64, - "name": "Red Tulip" - }, - "young_baby": { - "price": 872727270, - "name": "Baby Skin" - }, - "lvl_100_epic_monkey": { - "price": 8999999, - "name": "Monkey" - }, - "cobblestone_stairs": { - "price": 26, - "name": "Cobblestone Stairs" - }, - "squid_hat": { - "price": 50, - "name": "Squid Hat" - }, - "piston_base": { - "price": 40, - "name": "Piston" - }, - "pet_skin_dolphin_snubfin": { - "price": 5600000, - "name": "Snubfin Dolphin Skin" - }, - "pet_skin_dolphin_snubnose_red": { - "price": 6800000, - "name": "Red Snubfin Dolphin Skin" - }, - "pet_skin_dolphin_snubnose_purple": { - "price": 4980000, - "name": "Purple Snubfin Dolphin Skin" - }, - "pet_skin_dolphin_snubnose_green": { - "price": 5000000, - "name": "Green Snubfin Dolphin Skin" - }, - "lvl_1_common_dolphin_skinned_dolphin_snubnose_red": { - "price": 17000000, - "name": "Common Dolphin" - }, - "pet_skin_rock_derp": { - "price": 900000000, - "name": "Derpy Rock Skin" - }, - "lvl_1_uncommon_dolphin_skinned_dolphin_snubnose_green": { - "price": 20000000, - "name": "Uncommon Dolphin" - }, - "lvl_1_rare_dolphin_skinned_dolphin_snubnose_green": { - "price": 5000000, - "name": "Rare Dolphin" - }, - "lvl_100_legendary_dolphin_skinned_dolphin_snubfin": { - "price": 33444000, - "name": "Dolphin" - }, - "lvl_1_epic_dolphin_skinned_dolphin_snubfin": { - "price": 10000000, - "name": "Dolphin" - }, - "builder_pink_berry": { - "price": 50, - "name": "Pink Berry" - }, - "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_green": { - "price": 36580000, - "name": "Dolphin" - }, - "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_purple": { - "price": 25000000, - "name": "Dolphin" - }, - "lvl_100_epic_dolphin_skinned_dolphin_snubnose_green": { - "price": 13999999, - "name": "Dolphin" - }, - "leash": { - "price": 2160, - "name": "Lead" - }, - "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_purple": { - "price": 35990000, - "name": "Dolphin" - }, - "lvl_100_rare_dolphin_skinned_dolphin_snubnose_purple": { - "price": 20000000, - "name": "Rare Dolphin" - }, - "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_red": { - "price": 13000000, - "name": "Dolphin" - }, - "lvl_100_epic_dolphin_skinned_dolphin_snubfin": { - "price": 14000000, - "name": "Dolphin" - }, - "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_green": { - "price": 17000000, - "name": "Dolphin" - }, - "lvl_1_legendary_dolphin_skinned_dolphin_snubfin": { - "price": 15499999, - "name": "Dolphin" - }, - "wood_step:5": { - "price": 1, - "name": "Dark Oak Wood Slab" - }, - "leather_leggings": { - "price": 10, - "name": "Leather Leggings" - }, - "lvl_1_epic_dolphin_skinned_dolphin_snubnose_red": { - "price": 5000000, - "name": "Dolphin" - }, - "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_red": { - "price": 40000000, - "name": "Dolphin" - }, - "lvl_1_common_dolphin_skinned_dolphin_snubfin": { - "price": 13000000, - "name": "Common Dolphin" - }, - "lvl_100_rare_skeleton": { - "price": 6900000, - "name": "Rare Skeleton" - }, - "step:7": { - "price": 25, - "name": "Quartz Slab" - }, - "pet_skin_sheep_pink": { - "price": 1700000000, - "name": "Pink Sheep Skin" - }, - "lvl_1_uncommon_enderman_skinned_enderman_slayer": { - "price": 699000, - "name": "Uncommon Enderman" - }, - "long_grass:2": { - "price": 10, - "name": "Fern" - }, - "birch_forest_biome_stick": { - "price": 160, - "name": "Birch Forest Biome Stick" - }, - "lvl_100_common_tiger": { - "price": 7777777, - "name": "Common Tiger" - }, - "stained_clay:11": { - "price": 2, - "name": "Blue Hardened Clay" - }, - "chainmail_leggings": { - "price": 5, - "name": "Chainmail Leggings" - }, - "lvl_1_rare_dolphin_skinned_dolphin_snubfin": { - "price": 7000000, - "name": "Rare Dolphin" - }, - "pet_skin_rock_laugh": { - "price": 975000000, - "name": "Laughing Rock Skin" - }, - "lvl_100_epic_dolphin_skinned_dolphin_snubnose_purple": { - "price": 14500000, - "name": "Dolphin" - }, - "sapling:1": { - "price": 1, - "name": "Spruce Sapling" - }, - "cauldron_item": { - "price": 10, - "name": "Cauldron" - }, - "gemstone_collection": { - "price": 25000000, - "name": "Gemstone" - }, - "smooth_brick:1": { - "price": 2, - "name": "Mossy Stone Bricks" - }, - "lvl_1_common_monkey_skinned_monkey_gorilla": { - "price": 29499999, - "name": "Common Monkey" - }, - "lvl_1_common_monkey_skinned_monkey_golden": { - "price": 94999998, - "name": "Common Monkey" - }, - "pet_skin_sheep_light_blue": { - "price": 949888777, - "name": "Blue Sheep Skin" - }, - "lvl_100_epic_blaze_skinned_blaze_frozen": { - "price": 50000000, - "name": "Blaze" - }, - "dueces_builder_clay": { - "price": 6000000000, - "name": "Unknown" - }, - "bingo_talisman": { - "price": 39000000, - "name": "Bingo Talisman" - }, - "bingo_ring": { - "price": 185000000, - "name": "Bingo Ring" - }, - "stained_glass_pane:13": { - "price": 29, - "name": "Green Stained Glass Pane" - }, - "stained_glass_pane:4": { - "price": 1, - "name": "Yellow Stained Glass Pane" - }, - "stained_glass_pane:5": { - "price": 4, - "name": "Lime Stained Glass Pane" - }, - "command": { - "price": 50000000, - "name": "Command Block" - }, - "lvl_100_common_rabbit": { - "price": 2000000, - "name": "Common Rabbit" - }, - "lvl_100_epic_elephant": { - "price": 19500000, - "name": "Elephant" - }, - "stone_plate": { - "price": 10, - "name": "Stone Pressure Plate" - }, - "lvl_1_common_dolphin_skinned_dolphin_snubnose_green": { - "price": 11000000, - "name": "Common Dolphin" - }, - "stained_clay:1": { - "price": 2, - "name": "Orange Hardened Clay" - }, - "stained_clay:2": { - "price": 2, - "name": "Magenta Hardened Clay" - }, - "lvl_100_rare_enderman": { - "price": 8000000, - "name": "Rare Enderman" - }, - "chainmail_helmet": { - "price": 1, - "name": "Chainmail Helmet" - }, - "lvl_100_epic_spirit": { - "price": 20000000, - "name": "Spirit" - }, - "lvl_1_legendary_ender_dragon_skinned_dragon_pastel": { - "price": 750000000, - "name": "Ender Dragon" - }, - "lvl_100_rare_sheep": { - "price": 2000000, - "name": "Rare Sheep" - }, - "smooth_brick:3": { - "price": 2, - "name": "Chiseled Stone Bricks" - }, - "sandstone:2": { - "price": 177, - "name": "Smooth Sandstone" - }, - "red_sandstone:1": { - "price": 3, - "name": "Red Chiseled Sandstone" - }, - "lvl_100_epic_dolphin_skinned_dolphin_snubnose_red": { - "price": 15000000, - "name": "Dolphin" - }, - "pet_skin_tiger_golden": { - "price": 8499000, - "name": "Golden Tiger Skin" - }, - "lvl_100_epic_tiger_skinned_tiger_golden": { - "price": 23999999, - "name": "Tiger" - }, - "lvl_100_legendary_tiger_skinned_tiger_golden": { - "price": 55000000, - "name": "Tiger" - }, - "lvl_1_uncommon_tiger_skinned_tiger_golden": { - "price": 13000000, - "name": "Uncommon Tiger" - }, - "carpet:1": { - "price": 5, - "name": "Orange Carpet" - }, - "lvl_1_rare_tiger_skinned_tiger_golden": { - "price": 14000000, - "name": "Rare Tiger" - }, - "spruce_fence": { - "price": 1, - "name": "Spruce Fence" - }, - "lvl_100_legendary_rock_skinned_rock_smile": { - "price": 400000000, - "name": "Rock" - }, - "trapped_chest": { - "price": 256, - "name": "Trapped Chest" - }, - "lvl_1_rare_monkey_skinned_monkey_gorilla": { - "price": 26999999, - "name": "Rare Monkey" - }, - "lvl_100_rare_dolphin_skinned_dolphin_snubfin": { - "price": 14000000, - "name": "Rare Dolphin" - }, - "lvl_1_uncommon_monkey_skinned_monkey_gorilla": { - "price": 26999999, - "name": "Uncommon Monkey" - }, - "bed": { - "price": 25, - "name": "Bed" - }, - "stained_glass_pane:1": { - "price": 48, - "name": "Orange Stained Glass Pane" - }, - "carpet:10": { - "price": 64, - "name": "Purple Carpet" - }, - "lvl_100_epic_bee": { - "price": 1500000, - "name": "Bee" - }, - "desert_biome_stick": { - "price": 1472, - "name": "Desert Biome Stick" - }, - "lvl_1_epic_tiger_skinned_tiger_golden": { - "price": 5000000, - "name": "Tiger" - }, - "lvl_100_epic_magma_cube": { - "price": 4500000, - "name": "Magma Cube" - }, - "lvl_1_legendary_jerry_skinned_jerry_red_elf": { - "price": 280000000, - "name": "Jerry" - }, - "showcase_block": { - "price": 5, - "name": "Showcase Block" - }, - "stained_glass:3": { - "price": 3, - "name": "Blue Stained Glass" - }, - "lvl_1_common_zombie": { - "price": 200000, - "name": "Common Zombie" - }, - "pet_skin_sheep_light_green": { - "price": 1200000000, - "name": "Green Sheep Skin" - }, - "sandstone:1": { - "price": 60, - "name": "Chiseled Sandstone" - }, - "log:0": { - "price": 25000000, - "name": "Oak Wood" - }, - "red_sandstone": { - "price": 3, - "name": "Red Sandstone" - }, - "necron_blade": { - "price": 800000000, - "name": "Necron's Blade (unrefined)" - }, - "builder_chesto_berry": { - "price": 10, - "name": "Chesto Berry" - }, - "lvl_100_epic_silverfish_skinned_silverfish_fossilized": { - "price": 38000000, - "name": "Silverfish" - }, - "lvl_1_legendary_bat_skinned_bat_vampire": { - "price": 20000000, - "name": "Bat" - }, - "lvl_100_common_rock_skinned_rock_cool": { - "price": 614788000, - "name": "Common Rock" - }, - "lvl_100_epic_zombie": { - "price": 17000000, - "name": "Zombie" - }, - "lvl_1_common_silverfish_skinned_silverfish_fossilized": { - "price": 50000000, - "name": "Common Silverfish" - }, - "lvl_1_epic_ender_dragon_skinned_dragon_neon_blue": { - "price": 435000000, - "name": "Ender Dragon" - }, - "blobfish_hat": { - "price": 125, - "name": "Blobfish Hat" - }, - "stained_glass_pane:15": { - "price": 48, - "name": "Black Stained Glass Pane" - }, - "lvl_1_legendary_enderman_skinned_enderman_slayer": { - "price": 36500000, - "name": "Enderman" - }, - "map:-128": { - "price": 9500000, - "name": "Map" - }, - "lvl_100_uncommon_mithril_golem": { - "price": 1000000, - "name": "Uncommon Mithril Golem" - }, - "leaves_2:1": { - "price": 32, - "name": "Dark Oak Leaves" - }, - "hoe_of_greater_tilling": { - "price": 100000, - "name": "Unknown" - }, - "lvl_100_rare_dolphin_skinned_dolphin_snubnose_green": { - "price": 12650000, - "name": "Rare Dolphin" - }, - "stained_glass:2": { - "price": 15, - "name": "Magenta Stained Glass" - }, - "stained_glass:1": { - "price": 3, - "name": "Orange Stained Glass" - }, - "double_plant:2": { - "price": 100, - "name": "Double Tallgrass" - }, - "lvl_100_common_mithril_golem": { - "price": 80000000, - "name": "Common Mithril Golem" - }, - "lvl_100_rare_monkey": { - "price": 6000000, - "name": "Rare Monkey" - }, - "sponge_rod": { - "price": 440, - "name": "Sponge Rod" - }, - "stained_glass:11": { - "price": 250, - "name": "Blue Stained Glass" - }, - "lvl_100_common_enderman_skinned_enderman_slayer": { - "price": 19191919, - "name": "Common Enderman" - }, - "carpet:8": { - "price": 3, - "name": "Gray Carpet" - }, - "piston_sticky_base": { - "price": 12, - "name": "Sticky Piston" - }, - "pet_skin_armadillo_enchanted": { - "price": 12500000, - "name": "Enchanted Armadillo Skin" - }, - "pet_skin_armadillo_seafoam": { - "price": 12000000, - "name": "Seafoam Armadillo Skin" - }, - "lvl_100_legendary_armadillo_skinned_armadillo_seafoam": { - "price": 17000000, - "name": "Armadillo" - }, - "lvl_100_legendary_armadillo_skinned_armadillo_enchanted": { - "price": 35000000, - "name": "Armadillo" - }, - "stained_clay": { - "price": 2, - "name": "White Hardened Clay" - }, - "lvl_1_epic_ender_dragon_skinned_dragon_neon_purple": { - "price": 400000000, - "name": "Ender Dragon" - }, - "lvl_1_legendary_armadillo_skinned_armadillo_seafoam": { - "price": 17000000, - "name": "Armadillo" - }, - "lvl_1_legendary_armadillo_skinned_armadillo_enchanted": { - "price": 17000000, - "name": "Armadillo" - }, - "stained_glass:15": { - "price": 320, - "name": "Black Stained Glass" - }, - "stone:4": { - "price": 10, - "name": "Polished Diorite" - }, - "lvl_100_uncommon_monkey": { - "price": 400000, - "name": "Unknown" - }, - "dark_oak_door_item": { - "price": 5, - "name": "Dark Oak Door" - }, - "epoch_cake_aqua": { - "price": 980000, - "name": "Barry Century Cake" - }, - "epoch_cake_green": { - "price": 1700000, - "name": "Pet Rock Century Cake" - }, - "epoch_cake_purple": { - "price": 1270000, - "name": "Streamer's Century Cake" - }, - "epoch_cake_pink": { - "price": 1180000, - "name": "Crab-colored Century Cake" - }, - "epoch_cake_black": { - "price": 1370000, - "name": "Century Cake Of The Next Dungeon Floor" - }, - "epoch_cake_blue": { - "price": 1150000, - "name": "Sea Emperor Century Cake" - }, - "epoch_cake_red": { - "price": 1089989, - "name": "Apunch Century Cake" - }, - "epoch_cake_orange": { - "price": 1399000, - "name": "Latest Update Century Cake" - }, - "epoch_cake_yellow": { - "price": 1399000, - "name": "Potato-style Century Cake" - }, - "jukebox": { - "price": 360, - "name": "Jukebox" - }, - "sea_creature_ring": { - "price": 1000, - "name": "Sea Creature Ring" - }, - "pet_skin_rock_embarrassed": { - "price": 750000000, - "name": "Embarrassed Rock Skin" - }, - "diode": { - "price": 3, - "name": "Repeater" - }, - "stained_glass_pane:3": { - "price": 2, - "name": "Blue Stained Glass Pane" - }, - "cake": { - "price": 50, - "name": "Cake" - }, - "medium_backpack_skinned_blue_egg": { - "price": 19000000, - "name": "Medium Backpack" - }, - "lvl_1_rare_armadillo_skinned_armadillo_seafoam": { - "price": 21000000, - "name": "Rare Armadillo" - }, - "lvl_100_common_armadillo_skinned_armadillo_seafoam": { - "price": 14000000, - "name": "Common Armadillo" - }, - "lvl_100_common_armadillo_skinned_armadillo_enchanted": { - "price": 14000000, - "name": "Common Armadillo" - }, - "lvl_1_epic_dolphin_skinned_dolphin_snubnose_purple": { - "price": 7000000, - "name": "Dolphin" - }, - "lvl_1_uncommon_elephant_skinned_elephant_monochrome": { - "price": 20000000, - "name": "Uncommon Elephant" - }, - "hardened_wood": { - "price": 35016, - "name": "Hardened Wood" - }, - "lvl_1_rare_wither_skeleton": { - "price": 327589592, - "name": "Rare Wither Skeleton" - }, - "jungle_fence": { - "price": 3, - "name": "Jungle Fence" - }, - "redstone_comparator": { - "price": 25, - "name": "Comparator" - }, - "builder_berry_bush": { - "price": 50, - "name": "Berry Bush" - }, - "dungeon_disc_5": { - "price": 249000, - "name": "Necron Disc" - }, - "dungeon_disc_1": { - "price": 199999, - "name": "Dungeon Disc" - }, - "dungeon_disc_2": { - "price": 400000, - "name": "Clown Disc" - }, - "dye_wild_strawberry": { - "price": 50000000, - "name": "Wild Strawberry Dye" - }, - "dungeon_disc_3": { - "price": 140000, - "name": "Watcher Disc" - }, - "fifth_master_star": { - "price": 103500000, - "name": "Fifth Master Star" - }, - "dye_necron": { - "price": 70000000, - "name": "Necron Dye" - }, - "dungeon_disc_4": { - "price": 5000000, - "name": "Old Disc" - }, - "thunderlord_7": { - "price": 26599000, - "name": "Thunderlord 7" - }, - "dye_mango": { - "price": 36999999, - "name": "Mango Dye" - }, - "dark_claymore": { - "price": 590000000, - "name": "Dark Claymore" - }, - "stained_glass:10": { - "price": 42, - "name": "Purple Stained Glass" - }, - "dye_brick_red": { - "price": 200000000, - "name": "Brick Red Dye" - }, - "lvl_1_legendary_tiger_skinned_tiger_saber_tooth": { - "price": 20000000, - "name": "Tiger" - }, - "dye_bone": { - "price": 400000000, - "name": "Bone Dye" - }, - "lvl_1_rare_armadillo_skinned_armadillo_enchanted": { - "price": 15000000, - "name": "Rare Armadillo" - }, - "dye_byzantium": { - "price": 50000000, - "name": "Byzantium Dye" - }, - "dye_emerald": { - "price": 2147483647, - "name": "Emerald Dye" - }, - "lvl_100_uncommon_sheep": { - "price": 1500000, - "name": "Uncommon Sheep" - }, - "greater_backpack_skinned_enderpack": { - "price": 10000000, - "name": "Greater Backpack" - }, - "mushroom_soup": { - "price": 25, - "name": "Mushroom Soup" - }, - "carpet:14": { - "price": 64, - "name": "Red Carpet" - }, - "sapling:4": { - "price": 3, - "name": "Acacia Sapling" - }, - "lvl_1_epic_dolphin_skinned_dolphin_snubnose_green": { - "price": 2800000, - "name": "Dolphin" - }, - "dye_dark_purple": { - "price": 266666669, - "name": "Dark Purple Dye" - }, - "coco_chopper": { - "price": 900000, - "name": "Unknown" - }, - "prismarine_bow": { - "price": 600, - "name": "Prismarine Bow" - }, - "lvl_100_common_squid": { - "price": 25000000, - "name": "Common Squid" - }, - "emerald_ore": { - "price": 2560, - "name": "Emerald Ore" - }, - "carpet:11": { - "price": 64, - "name": "Blue Carpet" - }, - "moil_log": { - "price": 0, - "name": "Moil Log" - }, - "stained_glass_pane:6": { - "price": 8, - "name": "Pink Stained Glass Pane" - }, - "stained_glass_pane:2": { - "price": 8, - "name": "Magenta Stained Glass Pane" - }, - "ink_sack:5": { - "price": 5, - "name": "Purple Dye" - }, - "blessed fruit": { - "price": 1000000, - "name": "Unknown" - }, - "dye_aquamarine": { - "price": 800000000, - "name": "Aquamarine Dye" - }, - "lvl_200_legendary_golden_dragon": { - "price": 1450000000, - "name": "Golden Dragon" - }, - "lvl_100_epic_parrot_skinned_parrot_gold_macaw": { - "price": 22000000, - "name": "Parrot" - }, - "compact_4": { - "price": 1499000, - "name": "Compact 4" - }, - "pet_skin_sheep_black": { - "price": 2140000000, - "name": "Black Sheep Skin" - }, - "perfect_helmet_9_skinned_perfect_forge": { - "price": 80000000, - "name": "Perfect Helmet - Tier Ix" - }, - "sandstone_stairs": { - "price": 128, - "name": "Sandstone Stairs" - }, - "sponge:1": { - "price": 3200, - "name": "Wet Sponge" - }, - "lvl_100_rare_rock_skinned_rock_derp": { - "price": 850000000, - "name": "Rare Rock" - }, - "carpet:4": { - "price": 1, - "name": "Yellow Carpet" - }, - "carpet:6": { - "price": 320, - "name": "Pink Carpet" - }, - "stained_clay:7": { - "price": 2, - "name": "Gray Hardened Clay" - }, - "monster_egg:58": { - "price": 2147483647, - "name": "Spawn Enderman" - }, - "pet_skin_jerry_handsome": { - "price": 4000000, - "name": "Handsome Jerry Skin" - }, - "lvl_1_legendary_jerry_skinned_jerry_handsome": { - "price": 3500000, - "name": "Jerry" - }, - "lvl_1_epic_jerry_skinned_jerry_handsome": { - "price": 8299999, - "name": "Jerry" - }, - "lvl_1_epic_hound_skinned_hound_beagle": { - "price": 9000000, - "name": "Hound" - }, - "large_backpack_skinned_blue_egg": { - "price": 10000000, - "name": "Large Backpack" - }, - "redstone_lamp_off": { - "price": 200, - "name": "Redstone Lamp" - }, - "lvl_100_legendary_jerry_skinned_jerry_handsome": { - "price": 40000000, - "name": "Jerry" - }, - "lvl_100_rare_dolphin_skinned_dolphin_snubnose_red": { - "price": 15000000, - "name": "Rare Dolphin" - }, - "lvl_1_legendary_rabbit_skinned_rabbit_aquamarine": { - "price": 19999999, - "name": "Rabbit" - }, - "epoch_cake_brown": { - "price": 1400000, - "name": "Chocolate Century Cake" - }, - "epoch_cake_white": { - "price": 870000, - "name": "Cloudy Century Cake" - }, - "dye_carmine": { - "price": 699999999, - "name": "Carmine Dye" - }, - "epoch_cake_cyan": { - "price": 1500000, - "name": "Century Cake Of Hype" - }, - "ink_sack:6": { - "price": 100, - "name": "Cyan Dye" - }, - "lvl_1_epic_ocelot_skinned_ocelot_snow_tiger": { - "price": 8000000, - "name": "Ocelot" - }, - "lvl_1_legendary_black_cat_skinned_black_cat_onyx": { - "price": 26666666, - "name": "Black Cat" - }, - "lvl_1_legendary_tiger_skinned_tiger_golden": { - "price": 27000000, - "name": "Tiger" - }, - "stained_clay:3": { - "price": 2, - "name": "Blue Hardened Clay" - }, - "stained_clay:12": { - "price": 2, - "name": "Brown Hardened Clay" - }, - "stained_clay:8": { - "price": 2, - "name": "Gray Hardened Clay" - }, - "tropical_bird_1_personality": { - "price": 249000, - "name": "Tropical Bird 1 Minion Skin" - }, - "white_tiger_personality": { - "price": 200000, - "name": "White Tiger Minion Skin" - }, - "floral_lamppost": { - "price": 90000, - "name": "Floral Lamppost" - }, - "bird_house": { - "price": 15000, - "name": "Bird House" - }, - "tropical_bird_2_personality": { - "price": 740000, - "name": "Tropical Bird 2 Minion Skin" - }, - "wind_chimes": { - "price": 50000, - "name": "Wind Chimes" - }, - "lvl_100_common_monkey": { - "price": 5000000, - "name": "Common Monkey" - }, - "perfect_helmet_1_skinned_perfect_forge": { - "price": 53000000, - "name": "Helmet - Tier I" - }, - "lvl_100_epic_ghoul": { - "price": 3000000, - "name": "Ghoul" - }, - "lvl_1_legendary_phoenix_skinned_phoenix_ice": { - "price": 54000000, - "name": "Phoenix" - }, - "lvl_100_legendary_enderman_skinned_enderman_slayer": { - "price": 70000000, - "name": "Enderman" - }, - "whipped_magma_cream": { - "price": 500000, - "name": "Whipped Magma Cream" - }, - "glowstone_gauntlet": { - "price": 100000, - "name": "Glowstone Gauntlet" - }, - "amalgamated_crimsonite": { - "price": 16990, - "name": "Amalgamated Crimsonite" - }, - "moody_grappleshot": { - "price": 3450000, - "name": "Moody Grappleshot" - }, - "staff_of_the_volcano": { - "price": 200000, - "name": "Staff Of The Volcano" - }, - "magma_fish": { - "price": 418, - "name": "Magma Fish" - }, - "chyme": { - "price": 960000, - "name": "Chyme" - }, - "charm_1": { - "price": 630000, - "name": "Charm 1" - }, - "slug_boots": { - "price": 180000, - "name": "Slug Boots" - }, - "sword_of_bad_health": { - "price": 20000, - "name": "Sword Of Bad Health" - }, - "blade_of_the_volcano": { - "price": 110000, - "name": "Blade Of The Volcano" - }, - "moogma_leggings": { - "price": 340000, - "name": "Moogma Leggings" - }, - "flaming_chestplate": { - "price": 499000, - "name": "Flaming Chestplate" - }, - "vanquished_glowstone_gauntlet": { - "price": 2200000, - "name": "Vanquished Glowstone Gauntlet" - }, - "mesa_biome_stick": { - "price": 2000, - "name": "Mesa Biome Stick" - }, - "magma_necklace": { - "price": 100000, - "name": "Magma Necklace" - }, - "taurus_helmet": { - "price": 490000, - "name": "Taurus Helmet" - }, - "mushroom_spore": { - "price": 6400, - "name": "Mushroom Spore" - }, - "alchemists_staff": { - "price": 3500000, - "name": "The Alchemist's Staff" - }, - "abiphone_xii_mega_color": { - "price": 12969696, - "name": "Abiphone Xii Mega Color" - }, - "thunder_in_a_bottle_empty": { - "price": 190000, - "name": "Empty Thunder Bottle" - }, - "smoldering_1": { - "price": 6600000, - "name": "Smoldering 1" - }, - "vanquished_ghast_cloak": { - "price": 7100000, - "name": "Vanquished Ghast Cloak" - }, - "charminizer": { - "price": 700000, - "name": "Charminizer" - }, - "ghast_cloak": { - "price": 1690000, - "name": "Ghast Cloak" - }, - "vanquished_blaze_belt": { - "price": 3100000, - "name": "Vanquished Blaze Belt" - }, - "magma_rod": { - "price": 140000, - "name": "Magma Rod" - }, - "vanquished_magma_necklace": { - "price": 2999999, - "name": "Vanquished Magma Necklace" - }, - "rainbow_2": { - "price": 299999, - "name": "Rainbow 2" - }, - "corrupted_bait": { - "price": 37, - "name": "Corrupted Bait" - }, - "blaze_belt": { - "price": 480000, - "name": "Blaze Belt" - }, - "suspicious_stew": { - "price": 1499000, - "name": "Stew" - }, - "blessing_6": { - "price": 9400000, - "name": "Blessing 6" - }, - "lvl_1_legendary_snail": { - "price": 7000000, - "name": "Snail" - }, - "lvl_1_legendary_mooshroom_cow": { - "price": 6000000, - "name": "Mooshroom Cow" - }, - "inferno_fuel_block": { - "price": 8000, - "name": "Inferno Fuel Block" - }, - "lvl_1_uncommon_droplet_wisp": { - "price": 1900000, - "name": "Uncommon Droplet Wisp" - }, - "abiphone_xi_ultra_style": { - "price": 8900000, - "name": "Abiphone Xi Ultra Style" - }, - "abiphone_x_plus_special_edition": { - "price": 500, - "name": "Abiphone X Plus Special Edition" - }, - "ancient_cloak": { - "price": 7200000, - "name": "Cloak" - }, - "lvl_1_epic_mooshroom_cow": { - "price": 3299900, - "name": "Mooshroom Cow" - }, - "firedust_dagger": { - "price": 2100000, - "name": "Firedust Dagger" - }, - "corrupt_soil": { - "price": 1280000, - "name": "Corrupt Soil" - }, - "opal_power_scroll": { - "price": 750000, - "name": "Opal Power Scroll" - }, - "match_sticks": { - "price": 19000, - "name": "Match-sticks" - }, - "lvl_1_common_mooshroom_cow": { - "price": 2000000, - "name": "Common Mooshroom Cow" - }, - "lvl_1_rare_mooshroom_cow": { - "price": 4998000, - "name": "Rare Mooshroom Cow" - }, - "berserker_boots": { - "price": 3190000, - "name": "Berserker Boots" - }, - "red_thornleaf": { - "price": 1200, - "name": "Red Thornleaf" - }, - "mycelium_dust": { - "price": 348999, - "name": "Mycelium Dust" - }, - "arrow_bundle_magma": { - "price": 100000, - "name": "Bundle Of Magma Arrows" - }, - "mana_disintegrator": { - "price": 740000, - "name": "Mana Disintegrator" - }, - "charm_2": { - "price": 1600000, - "name": "Charm 2" - }, - "kelvin_inverter": { - "price": 70000, - "name": "Kelvin Inverter" - }, - "berserker_chestplate": { - "price": 5500000, - "name": "Berserker Chestplate" - }, - "berserker_leggings": { - "price": 4999999, - "name": "Berserker Leggings" - }, - "berserker_helmet": { - "price": 4200000, - "name": "Berserker Helmet" - }, - "mawdust_dagger": { - "price": 1400000, - "name": "Dagger" - }, - "lvl_1_epic_snail": { - "price": 4699000, - "name": "Snail" - }, - "lvl_1_common_snail": { - "price": 2900000, - "name": "Common Snail" - }, - "abiphone_xiii_pro_giga": { - "price": 99000000, - "name": "Abiphone Xiii Pro Giga" - }, - "corruption_1": { - "price": 60000, - "name": "Corruption 1" - }, - "abiphone_xii_mega": { - "price": 8800000, - "name": "Abiphone Xii Mega" - }, - "smoldering_2": { - "price": 10000000, - "name": "Smoldering 2" - }, - "synthesizer_v1": { - "price": 2400000, - "name": "Synthesizer V1" - }, - "atominizer": { - "price": 3500000, - "name": "Atominizer" - }, - "inferno_fuel_blaze_rod": { - "price": 399000, - "name": "Inferno Minion Fuel" - }, - "abiphone_x_plus": { - "price": 500, - "name": "Abiphone X Plus" - }, - "lvl_1_uncommon_mooshroom_cow": { - "price": 6999999, - "name": "Uncommon Mooshroom Cow" - }, - "corruption_2": { - "price": 108000, - "name": "Corruption 2" - }, - "sulphuric_coal": { - "price": 200000, - "name": "Sulphuric Coal" - }, - "corruption_3": { - "price": 299999, - "name": "Corruption 3" - }, - "corruption_4": { - "price": 580000, - "name": "Corruption 4" - }, - "scorched_power_crystal": { - "price": 1000000, - "name": "Scorched Power Crystal" - }, - "archfiend_dice": { - "price": 12788000, - "name": "Archfiend Dice" - }, - "lamp_rainbow": { - "price": 2500, - "name": "Rainbow Lamp" - }, - "charm_5": { - "price": 12900000, - "name": "Charm 5" - }, - "fire_freeze_staff": { - "price": 500000, - "name": "Fire Freeze Staff" - }, - "flame_2": { - "price": 300000, - "name": "Flame 2" - }, - "sulphur_bow": { - "price": 7977000, - "name": "Sulphur Bow" - }, - "inferno_fuel_magma_cream": { - "price": 2500000, - "name": "Inferno Minion Fuel" - }, - "inferno_rod": { - "price": 37999999, - "name": "Inferno Rod" - }, - "thunderbolt_necklace": { - "price": 299000, - "name": "Thunderbolt Necklace" - }, - "dye_flame": { - "price": 300000000, - "name": "Flame Dye" - }, - "ultimate_reiterate_1": { - "price": 3900000, - "name": "Ultimate Reiterate 1" - }, - "inferno_fuel_nether_stalk": { - "price": 459000, - "name": "Inferno Minion Fuel" - }, - "implosion_belt": { - "price": 13600000, - "name": "Implosion Belt" - }, - "magma_lord_fragment": { - "price": 5800000, - "name": "Magma Lord Fragment" - }, - "burstfire_dagger": { - "price": 10900000, - "name": "Kindlebane Dagger" - }, - "burstmaw_dagger": { - "price": 10699900, - "name": "Mawdredge Dagger" - }, - "inferno_fuel_crude_gabagool": { - "price": 1900000, - "name": "Inferno Minion Fuel" - }, - "abiphone_xiii_pro": { - "price": 48000000, - "name": "Abiphone Xiii Pro" - }, - "synthesizer_v2": { - "price": 16969690, - "name": "Synthesizer V2" - }, - "corruption_5": { - "price": 1050000, - "name": "Corruption 5" - }, - "lvl_1_uncommon_snail": { - "price": 2700000, - "name": "Uncommon Snail" - }, - "charm_3": { - "price": 3600000, - "name": "Charm 3" - }, - "fire_aspect_3": { - "price": 5800000, - "name": "Fire Aspect 3" - }, - "ragnarock_axe": { - "price": 80000, - "name": "Ragnarock Axe" - }, - "fire_fury_staff": { - "price": 11100000, - "name": "Fire Fury Staff" - }, - "wand_of_strength": { - "price": 90000, - "name": "Wand Of Strength" - }, - "flaming_fist": { - "price": 12000000, - "name": "Flaming Fist" - }, - "lvl_100_common_elephant": { - "price": 1500000, - "name": "Common Elephant" - }, - "fire_veil_wand": { - "price": 11090000, - "name": "Fire Veil Wand" - }, - "smoldering_3": { - "price": 29900000, - "name": "Smoldering 3" - }, - "gauntlet_of_contagion": { - "price": 18500000, - "name": "Gauntlet Of Contagion" - }, - "hardened_mana_1": { - "price": 9000, - "name": "Hardened Mana 1" - }, - "strong_mana_1": { - "price": 75000, - "name": "Mana 1" - }, - "mana_vampire_1": { - "price": 190000, - "name": "Mana Vampire 1" - }, - "fervor_boots": { - "price": 698000, - "name": "Fervor Boots" - }, - "ferocious_mana_1": { - "price": 250000, - "name": "Ferocious Mana 1" - }, - "attribute_shard": { - "price": 18000, - "name": "Attribute Shard" - }, - "fervor_helmet": { - "price": 690000, - "name": "Fervor Helmet" - }, - "crimson_helmet": { - "price": 2150000, - "name": "Crimson Helmet" - }, - "terror_leggings": { - "price": 979000, - "name": "Terror Leggings" - }, - "fervor_leggings": { - "price": 699000, - "name": "Fervor Leggings" - }, - "crimson_chestplate": { - "price": 2850000, - "name": "Crimson Chestplate" - }, - "molten_necklace": { - "price": 3490000, - "name": "Molten Necklace" - }, - "crimson_boots": { - "price": 2900000, - "name": "Crimson Boots" - }, - "terror_chestplate": { - "price": 999000, - "name": "Terror Chestplate" - }, - "aurora_boots": { - "price": 990000, - "name": "Aurora Boots" - }, - "crimson_leggings": { - "price": 3100000, - "name": "Crimson Leggings" - }, - "terror_boots": { - "price": 999000, - "name": "Terror Boots" - }, - "terror_helmet": { - "price": 790000, - "name": "Terror Helmet" - }, - "lvl_100_legendary_snail": { - "price": 26400000, - "name": "Snail" - }, - "aurora_helmet": { - "price": 800000, - "name": "Aurora Helmet" - }, - "ferocious_mana_2": { - "price": 775000, - "name": "Ferocious Mana 2" - }, - "fervor_chestplate": { - "price": 990000, - "name": "Fervor Chestplate" - }, - "aurora_chestplate": { - "price": 900000, - "name": "Aurora Chestplate" - }, - "runic_staff": { - "price": 1400000, - "name": "Aurora Staff" - }, - "aurora_leggings": { - "price": 998000, - "name": "Aurora Leggings" - }, - "molten_bracelet": { - "price": 2500000, - "name": "Molten Bracelet" - }, - "molten_belt": { - "price": 2200000, - "name": "Molten Belt" - }, - "shimmering_light_slippers": { - "price": 3500000, - "name": "Light Slippers" - }, - "shimmering_light_hood": { - "price": 2800000, - "name": "Shimmering Light Hood" - }, - "hardened_mana_2": { - "price": 50000, - "name": "Hardened Mana 2" - }, - "molten_cloak": { - "price": 3599999, - "name": "Molten Cloak" - }, - "shimmering_light_tunic": { - "price": 8500000, - "name": "Shimmering Light Tunic" - }, - "delirium_necklace": { - "price": 12400000, - "name": "Waxed Delirium Necklace" - }, - "mana_vampire_2": { - "price": 500000, - "name": "Mana Vampire 2" - }, - "strong_mana_3": { - "price": 360000, - "name": "Mana 3" - }, - "strong_mana_2": { - "price": 150000, - "name": "Mana 2" - }, - "ferocious_mana_4": { - "price": 3599000, - "name": "Ferocious Mana 4" - }, - "ferocious_mana_3": { - "price": 1500000, - "name": "Ferocious Mana 3" - }, - "hardened_mana_3": { - "price": 600000, - "name": "Hardened Mana 3" - }, - "mana_vampire_3": { - "price": 1100000, - "name": "Mana Vampire 3" - }, - "ferocious_mana_5": { - "price": 7249999, - "name": "Ferocious Mana 5" - }, - "hardened_mana_4": { - "price": 750000, - "name": "Hardened Mana 4" - }, - "red_thornleaf_tea": { - "price": 100000, - "name": "Red Thornleaf Tea" - }, - "hardened_mana_5": { - "price": 1699999, - "name": "Hardened Mana 5" - }, - "strong_mana_5": { - "price": 2000000, - "name": "Mana 5" - }, - "lvl_1_rare_snail": { - "price": 6700000, - "name": "Rare Snail" - }, - "lvl_100_legendary_mooshroom_cow": { - "price": 30000000, - "name": "Mooshroom Cow" - }, - "ultimate_fatal_tempo_1": { - "price": 67500000, - "name": "Ultimate Fatal Tempo 1" - }, - "synthesizer_v3": { - "price": 120000000, - "name": "Synthesizer V3" - }, - "mana_vampire_4": { - "price": 2000000, - "name": "Mana Vampire 4" - }, - "ultimate_inferno_1": { - "price": 494999999, - "name": "Ultimate Inferno 1" - }, - "strong_mana_4": { - "price": 600000, - "name": "Mana 4" - }, - "mana_vampire_5": { - "price": 5000000, - "name": "Mana Vampire 5" - }, - "inferno_fuel_glowstone_dust": { - "price": 650000, - "name": "Inferno Minion Fuel" - }, - "scourge_cloak": { - "price": 14500000, - "name": "Scourge Cloak" - }, - "inferno_heavy_crude_gabagool": { - "price": 2800000, - "name": "Inferno Minion Fuel" - }, - "thunder_in_a_bottle": { - "price": 7979999, - "name": "Thunder In A Bottle" - }, - "hardened_mana_6": { - "price": 2300000, - "name": "Hardened Mana 6" - }, - "dirt": { - "price": 40, - "name": "Dirt" - }, - "magma_lord_boots": { - "price": 19900000, - "name": "Magma Lord Boots" - }, - "ferocious_mana_6": { - "price": 15499999, - "name": "Ferocious Mana 6" - }, - "magma_lord_gauntlet": { - "price": 39990000, - "name": "Magma Lord Gauntlet" - }, - "hardened_mana_7": { - "price": 6000000, - "name": "Hardened Mana 7" - }, - "ferocious_mana_7": { - "price": 28900000, - "name": "Ferocious Mana 7" - }, - "mana_vampire_8": { - "price": 39999898, - "name": "Mana Vampire 8" - }, - "charm_4": { - "price": 7000000, - "name": "Charm 4" - }, - "mana_vampire_6": { - "price": 9899999, - "name": "Mana Vampire 6" - }, - "strong_mana_8": { - "price": 16999000, - "name": "Mana 8" - }, - "lava_shell_necklace": { - "price": 3899000, - "name": "Lava Shell Necklace" - }, - "strong_mana_7": { - "price": 7800000, - "name": "Mana 7" - }, - "warning_flare": { - "price": 12990000, - "name": "Warning Flare" - }, - "shimmering_light_trousers": { - "price": 7500000, - "name": "Shimmering Light Trousers" - }, - "hardened_mana_8": { - "price": 21000000, - "name": "Hardened Mana 8" - }, - "magma_lord_leggings": { - "price": 39000000, - "name": "Magma Lord Leggings" - }, - "magma_lord_helmet": { - "price": 29499000, - "name": "Magma Lord Helmet" - }, - "smoldering_5": { - "price": 120000000, - "name": "Smoldering 5" - }, - "lvl_100_epic_mooshroom_cow": { - "price": 27000000, - "name": "Mooshroom Cow" - }, - "ultimate_reiterate_3": { - "price": 13999999, - "name": "Ultimate Reiterate 3" - }, - "scoville_belt": { - "price": 16900000, - "name": "Scoville Belt" - }, - "jacobus_register": { - "price": 21500000, - "name": "Unknown" - }, - "lvl_100_epic_snail": { - "price": 15555000, - "name": "Snail" - }, - "strong_mana_6": { - "price": 3490000, - "name": "Mana 6" - }, - "demonlord_gauntlet": { - "price": 84000000, - "name": "Strengthened Demonslayer Gauntlet" - }, - "strong_mana_9": { - "price": 30000000, - "name": "Mana 9" - }, - "hellfire_rod": { - "price": 300000000, - "name": "Hellfire Rod" - }, - "inferno_heavy_glowstone_dust": { - "price": 1750000, - "name": "Inferno Minion Fuel" - }, - "mana_vampire_7": { - "price": 20899000, - "name": "Mana Vampire 7" - }, - "strong_mana_10": { - "price": 75000000, - "name": "Mana 10" - }, - "magma_lord_chestplate": { - "price": 37000000, - "name": "Magma Lord Chestplate" - }, - "lvl_100_uncommon_droplet_wisp": { - "price": 18900000, - "name": "Uncommon Droplet Wisp" - }, - "thornleaf_scythe": { - "price": 250, - "name": "Thornleaf Scythe" - }, - "inferno_hypergolic_crude_gabagool": { - "price": 46950000, - "name": "Inferno Minion Fuel" - }, - "high_class_archfiend_dice": { - "price": 75999000, - "name": "High Class Archfiend Dice" - }, - "stew_the_fish": { - "price": 200000000, - "name": "Stew The Fish" - }, - "inferno_heavy_magma_cream": { - "price": 2000000, - "name": "Inferno Minion Fuel" - }, - "marsh_spore_soup": { - "price": 300000, - "name": "Marsh Spore Soup" - }, - "ultimate_reiterate_5": { - "price": 55000000, - "name": "Ultimate Reiterate 5" - }, - "spore_harvester": { - "price": 250, - "name": "Spore Harvester" - }, - "smoldering_4": { - "price": 55555555, - "name": "Smoldering 4" - }, - "magma_fish_hat": { - "price": 400, - "name": "Magmafish Hat" - }, - "lvl_1_legendary_rabbit_skinned_rabbit_rose": { - "price": 24999999, - "name": "Rabbit" - }, - "wilson_engineering_plans": { - "price": 268999994, - "name": "Wilson's Engineering Plans" - }, - "ultimate_reiterate_2": { - "price": 10000000, - "name": "Ultimate Reiterate 2" - }, - "ferocious_mana_8": { - "price": 75000000, - "name": "Ferocious Mana 8" - }, - "subzero_inverter": { - "price": 300000000, - "name": "Subzero Inverter" - }, - "lvl_100_common_wolf": { - "price": 2000000, - "name": "Common Wolf" - }, - "burststopper_talisman": { - "price": 160000000, - "name": "Burststopper Talisman" - }, - "bridge_egg": { - "price": 800, - "name": "Bridge Egg" - }, - "ink_sack:10": { - "price": 20, - "name": "Lime Dye" - }, - "lvl_1_epic_ender_dragon_skinned_dragon_pastel": { - "price": 298999999, - "name": "Ender Dragon" - }, - "pulse_ring": { - "price": 40000, - "name": "Pulse Ring" - }, - "mana_vampire_10": { - "price": 160000000, - "name": "Mana Vampire 10" - }, - "red_sandstone:2": { - "price": 15, - "name": "Red Smooth Sandstone" - }, - "hardened_mana_9": { - "price": 30000000, - "name": "Hardened Mana 9" - }, - "lvl_100_rare_snail": { - "price": 14500000, - "name": "Rare Snail" - }, - "lvl_100_common_jerry_skinned_jerry_green_elf": { - "price": 149999999, - "name": "Common Jerry" - }, - "ultimate_reiterate_4": { - "price": 37000000, - "name": "Ultimate Reiterate 4" - }, - "reinforced_scales": { - "price": 8000000, - "name": "Scales" - }, - "ferocious_mana_9": { - "price": 249999999, - "name": "Ferocious Mana 9" - }, - "inferno_heavy_blaze_rod": { - "price": 3000000, - "name": "Inferno Minion Fuel" - }, - "mana_vampire_9": { - "price": 60000000, - "name": "Mana Vampire 9" - }, - "gabagoey_mixin": { - "price": 5000000, - "name": "Gabagoey Mixin" - }, - "everburning_flame": { - "price": 100000000, - "name": "Everburning Flame" - }, - "hardened_mana_10": { - "price": 60000000, - "name": "Hardened Mana 10" - }, - "ultimate_flash_1": { - "price": 6300000, - "name": "Ultimate Flash 1" - }, - "ultimate_flash_2": { - "price": 17799999, - "name": "Ultimate Flash 2" - }, - "ultimate_flash_3": { - "price": 34000000, - "name": "Ultimate Flash 3" - }, - "radioactive_vial": { - "price": 110000000, - "name": "Radioactive Vial" - }, - "lvl_100_mythic_flying_fish": { - "price": 154000000, - "name": "Flying Fish" - }, - "ultimate_flash_5": { - "price": 110000000, - "name": "Ultimate Flash 5" - }, - "scornclaw_brew": { - "price": 16000, - "name": "Scornclaw Brew" - }, - "acacia_stairs": { - "price": 4, - "name": "Acacia Wood Stairs" - }, - "eccentric_painting_bundle": { - "price": 162000000, - "name": "Eccentric Painting Bundle" - }, - "ultimate_flash_4": { - "price": 48000000, - "name": "Ultimate Flash 4" - }, - "lvl_100_uncommon_mooshroom_cow": { - "price": 8000000, - "name": "Uncommon Mooshroom Cow" - }, - "crimson_essence": { - "price": 12000, - "name": "Crimson Essence" - }, - "ink_sack:4": { - "price": 3, - "name": "Lapis Lazuli" - }, - "brown_mushroom": { - "price": 4, - "name": "Brown Mushroom" - }, - "tarantula_web": { - "price": 133, - "name": "Tarantula Web" - }, - "ink_sack:3": { - "price": 2, - "name": "Cocoa Beans" - }, - "spooky_shard": { - "price": 2436, - "name": "Spooky Shard" - }, - "exp_bottle": { - "price": 34, - "name": "Experience Bottle" - }, - "enchanted_potato": { - "price": 317, - "name": "Enchanted Potato" - }, - "jerry_box_green": { - "price": 99995, - "name": "Green Jerry Box" - }, - "enchanted_slime_ball": { - "price": 899, - "name": "Enchanted Slimeball" - }, - "carrot_item": { - "price": 2, - "name": "Carrot" - }, - "enchanted_red_mushroom": { - "price": 674, - "name": "Enchanted Red Mushroom" - }, - "enchanted_golden_carrot": { - "price": 43099, - "name": "Enchanted Golden Carrot" - }, - "enchanted_rabbit_hide": { - "price": 14374, - "name": "Enchanted Rabbit Hide" - }, - "flawed_amethyst_gem": { - "price": 361, - "name": "Flawed Amethyst Gemstone" - }, - "perfect_jade_gem": { - "price": 8353559, - "name": "Perfect Jade Gemstone" - }, - "enchanted_sugar": { - "price": 331, - "name": "Enchanted Sugar" - }, - "enchanted_birch_log": { - "price": 398, - "name": "Enchanted Birch Wood" - }, - "enchanted_gunpowder": { - "price": 1642, - "name": "Enchanted Gunpowder" - }, - "cactus": { - "price": 1, - "name": "Cactus" - }, - "enchanted_melon": { - "price": 185, - "name": "Enchanted Melon" - }, - "pumpkin": { - "price": 6, - "name": "Pumpkin" - }, - "enchanted_blaze_rod": { - "price": 319996, - "name": "Enchanted Blaze Rod" - }, - "enchanted_cake": { - "price": 12935, - "name": "Enchanted Cake" - }, - "flawed_jasper_gem": { - "price": 942, - "name": "Flawed Jasper Gemstone" - }, - "enchanted_brown_mushroom": { - "price": 650, - "name": "Enchanted Brown Mushroom" - }, - "enchanted_raw_salmon": { - "price": 1668, - "name": "Enchanted Raw Salmon" - }, - "goblin_egg_yellow": { - "price": 75872, - "name": "Yellow Goblin Egg" - }, - "flawed_amber_gem": { - "price": 269, - "name": "Flawed Amber Gemstone" - }, - "nurse_shark_tooth": { - "price": 897, - "name": "Nurse Shark Tooth" - }, - "wheat": { - "price": 3, - "name": "Wheat" - }, - "enchanted_glistering_melon": { - "price": 4300, - "name": "Enchanted Glistering Melon" - }, - "prismarine_shard": { - "price": 3, - "name": "Prismarine Shard" - }, - "enchanted_emerald": { - "price": 1102, - "name": "Enchanted Emerald" - }, - "protector_fragment": { - "price": 2597, - "name": "Protector Dragon Fragment" - }, - "enchanted_spider_eye": { - "price": 869, - "name": "Enchanted Spider Eye" - }, - "enchanted_melon_block": { - "price": 25648, - "name": "Enchanted Melon Block" - }, - "power_crystal": { - "price": 109550, - "name": "Power Crystal" - }, - "grand_exp_bottle": { - "price": 3734, - "name": "Grand Experience Bottle" - }, - "red_mushroom": { - "price": 5, - "name": "Red Mushroom" - }, - "mutton": { - "price": 29, - "name": "Mutton" - }, - "raw_soulflow": { - "price": 177, - "name": "Raw Soulflow" - }, - "diamond": { - "price": 8, - "name": "Diamond" - }, - "cobblestone": { - "price": 3, - "name": "Cobblestone" - }, - "shark_fin": { - "price": 616, - "name": "Shark Fin" - }, - "wise_fragment": { - "price": 21479, - "name": "Wise Dragon Fragment" - }, - "refined_mithril": { - "price": 334214, - "name": "Refined Mithril" - }, - "raw_fish": { - "price": 23, - "name": "Raw Fish" - }, - "enchanted_pufferfish": { - "price": 2401, - "name": "Enchanted Pufferfish" - }, - "spider_eye": { - "price": 5, - "name": "Spider Eye" - }, - "perfect_ruby_gem": { - "price": 7344814, - "name": "Perfect Ruby Gemstone" - }, - "perfect_jasper_gem": { - "price": 14070984, - "name": "Perfect Jasper Gemstone" - }, - "yoggie": { - "price": 197, - "name": "Yoggie" - }, - "enchanted_netherrack": { - "price": 206, - "name": "Enchanted Netherrack" - }, - "enchanted_hard_stone": { - "price": 1789, - "name": "Enchanted Hard Stone" - }, - "enchanted_huge_mushroom_1": { - "price": 3135, - "name": "Enchanted Brown Mushroom Block" - }, - "refined_diamond": { - "price": 427998, - "name": "Refined Diamond" - }, - "enchanted_cobblestone": { - "price": 488, - "name": "Enchanted Cobblestone" - }, - "tightly_tied_hay_bale": { - "price": 506499, - "name": "Tightly-Tied Hay Bale" - }, - "enchanted_huge_mushroom_2": { - "price": 3897, - "name": "Enchanted Red Mushroom Block" - }, - "pork": { - "price": 11, - "name": "Raw Porkchop" - }, - "tiger_shark_tooth": { - "price": 49980, - "name": "Tiger Shark Tooth" - }, - "prismarine_crystals": { - "price": 74, - "name": "Prismarine Crystals" - }, - "huge_mushroom_1": { - "price": 4, - "name": "Brown Mushroom Block" - }, - "ice": { - "price": 6, - "name": "Ice" - }, - "ice_bait": { - "price": 6, - "name": "Ice Bait" - }, - "enchanted_snow_block": { - "price": 596, - "name": "Enchanted Snow Block" - }, - "golden_tooth": { - "price": 59376, - "name": "Golden Tooth" - }, - "huge_mushroom_2": { - "price": 9, - "name": "Red Mushroom Block" - }, - "string": { - "price": 5, - "name": "String" - }, - "hyper_catalyst": { - "price": 113998, - "name": "Hyper Catalyst" - }, - "rabbit_foot": { - "price": 9, - "name": "Rabbit's Foot" - }, - "redstone": { - "price": 2, - "name": "Redstone" - }, - "jerry_box_golden": { - "price": 1434118, - "name": "Golden Jerry Box" - }, - "pumpkin_guts": { - "price": 41000, - "name": "Pumpkin Guts" - }, - "enchanted_carrot_on_a_stick": { - "price": 0, - "name": "Enchanted Carrot on a Stick" - }, - "booster_cookie": { - "price": 3198996, - "name": "Booster Cookie" - }, - "enchanted_cactus_green": { - "price": 903, - "name": "Enchanted Cactus Green" - }, - "enchanted_lapis_lazuli_block": { - "price": 44313, - "name": "Enchanted Lapis Block" - }, - "enchanted_cookie": { - "price": 61989, - "name": "Enchanted Cookie" - }, - "enchanted_endstone": { - "price": 701, - "name": "Enchanted End Stone" - }, - "enchanted_sand": { - "price": 645, - "name": "Enchanted Sand" - }, - "colossal_exp_bottle": { - "price": 799994, - "name": "Colossal Experience Bottle" - }, - "enchanted_string": { - "price": 1170, - "name": "Enchanted String" - }, - "strong_fragment": { - "price": 17379, - "name": "Strong Dragon Fragment" - }, - "slime_ball": { - "price": 6, - "name": "Slimeball" - }, - "holy_fragment": { - "price": 2479, - "name": "Holy Dragon Fragment" - }, - "enchanted_acacia_log": { - "price": 2168, - "name": "Enchanted Acacia Wood" - }, - "snow_ball": { - "price": 0, - "name": "Snowball" - }, - "soul_fragment": { - "price": 979995, - "name": "Soul Fragment" - }, - "flawed_ruby_gem": { - "price": 276, - "name": "Flawed Ruby Gemstone" - }, - "sand": { - "price": 4, - "name": "Sand" - }, - "enchanted_egg": { - "price": 1144, - "name": "Enchanted Egg" - }, - "raw_chicken": { - "price": 3, - "name": "Raw Chicken" - }, - "fine_jade_gem": { - "price": 19308, - "name": "Fine Jade Gemstone" - }, - "plasma_bucket": { - "price": 4649996, - "name": "Plasma Bucket" - }, - "ancient_claw": { - "price": 198, - "name": "Ancient Claw" - }, - "enchanted_ghast_tear": { - "price": 416, - "name": "Enchanted Ghast Tear" - }, - "enchanted_lapis_lazuli": { - "price": 553, - "name": "Enchanted Lapis Lazuli" - }, - "enchanted_cocoa": { - "price": 484, - "name": "Enchanted Cocoa Bean" - }, - "fine_topaz_gem": { - "price": 21407, - "name": "Fine Topaz Gemstone" - }, - "carrot_bait": { - "price": 20, - "name": "Carrot Bait" - }, - "fine_ruby_gem": { - "price": 19703, - "name": "Fine Ruby Gemstone" - }, - "seeds": { - "price": 0, - "name": "Seeds" - }, - "enchanted_leather": { - "price": 14496, - "name": "Enchanted Leather" - }, - "perfect_amber_gem": { - "price": 4599995, - "name": "Perfect Amber Gemstone" - }, - "hay_block": { - "price": 37, - "name": "Hay Bale" - }, - "enchanted_shark_fin": { - "price": 98001, - "name": "Enchanted Shark Fin" - }, - "enchanted_sponge": { - "price": 2054, - "name": "Enchanted Sponge" - }, - "ink_sack": { - "price": 1039, - "name": "Ink Sack" - }, - "flint": { - "price": 17, - "name": "Flint" - }, - "enchanted_spruce_log": { - "price": 2143, - "name": "Enchanted Spruce Wood" - }, - "enchanted_rotten_flesh": { - "price": 949, - "name": "Enchanted Rotten Flesh" - }, - "wolf_tooth": { - "price": 218, - "name": "Wolf Tooth" - }, - "enchanted_grilled_pork": { - "price": 192222, - "name": "Enchanted Grilled Pork" - }, - "enchanted_nether_stalk": { - "price": 309, - "name": "Enchanted Nether Wart" - }, - "enchanted_redstone_block": { - "price": 45916, - "name": "Enchanted Redstone Block" - }, - "enchanted_quartz_block": { - "price": 389622, - "name": "Enchanted Quartz Block" - }, - "enchanted_ancient_claw": { - "price": 4254, - "name": "Enchanted Ancient Claw" - }, - "green_candy": { - "price": 889, - "name": "Green Candy" - }, - "treasurite": { - "price": 14994, - "name": "Treasurite" - }, - "enchanted_redstone": { - "price": 291, - "name": "Enchanted Redstone" - }, - "enchanted_redstone_lamp": { - "price": 69999, - "name": "Enchanted Redstone Lamp" - }, - "great_white_shark_tooth": { - "price": 1498999, - "name": "Great White Shark Tooth" - }, - "dwarven_compactor": { - "price": 399999, - "name": "Dwarven Super Compactor" - }, - "gravel": { - "price": 2, - "name": "Gravel" - }, - "melon": { - "price": 2, - "name": "Melon" - }, - "raw_fish:3": { - "price": 14, - "name": "Pufferfish" - }, - "enchanted_packed_ice": { - "price": 130999, - "name": "Enchanted Packed Ice" - }, - "enchanted_lava_bucket": { - "price": 279800, - "name": "Enchanted Lava Bucket" - }, - "enchanted_prismarine_shard": { - "price": 398, - "name": "Enchanted Prismarine Shard" - }, - "recombobulator_3000": { - "price": 6946368, - "name": "Recombobulator 3000" - }, - "enchanted_iron_block": { - "price": 204090, - "name": "Enchanted Iron Block" - }, - "enchanted_carrot_stick": { - "price": 16000, - "name": "Enchanted Carrot on a Stick" - }, - "bone": { - "price": 2, - "name": "Bone" - }, - "raw_fish:2": { - "price": 19, - "name": "Clownfish" - }, - "revenant_flesh": { - "price": 1, - "name": "Revenant Flesh" - }, - "enchanted_pork": { - "price": 1435, - "name": "Enchanted Pork" - }, - "enchanted_glowstone": { - "price": 61999, - "name": "Enchanted Glowstone" - }, - "raw_fish:1": { - "price": 10, - "name": "Raw Salmon" - }, - "goblin_egg_red": { - "price": 23160, - "name": "Red Goblin Egg" - }, - "rough_jasper_gem": { - "price": 9, - "name": "Rough Jasper Gemstone" - }, - "feather": { - "price": 2, - "name": "Feather" - }, - "whale_bait": { - "price": 2100, - "name": "Whale Bait" - }, - "netherrack": { - "price": 1, - "name": "Netherrack" - }, - "sponge": { - "price": 59, - "name": "Sponge" - }, - "enchanted_dark_oak_log": { - "price": 599, - "name": "Enchanted Dark Oak Wood" - }, - "blaze_rod": { - "price": 14, - "name": "Blaze Rod" - }, - "young_fragment": { - "price": 2473, - "name": "Young Dragon Fragment" - }, - "flawless_topaz_gem": { - "price": 1755665, - "name": "Flawless Topaz Gemstone" - }, - "enchanted_clownfish": { - "price": 3208, - "name": "Enchanted Clownfish" - }, - "refined_mineral": { - "price": 31978, - "name": "Refined Mineral" - }, - "enchanted_gold": { - "price": 832, - "name": "Enchanted Gold" - }, - "enchanted_water_lily": { - "price": 19530, - "name": "Enchanted Lily Pad" - }, - "enchanted_raw_chicken": { - "price": 664, - "name": "Enchanted Raw Chicken" - }, - "rough_amethyst_gem": { - "price": 4, - "name": "Rough Amethyst Gemstone" - }, - "rough_ruby_gem": { - "price": 3, - "name": "Rough Ruby Gemstone" - }, - "goblin_egg_blue": { - "price": 869994, - "name": "Blue Goblin Egg" - }, - "null_atom": { - "price": 36508, - "name": "Null Atom" - }, - "log:1": { - "price": 14, - "name": "Spruce Wood" - }, - "flawless_ruby_gem": { - "price": 1589997, - "name": "Flawless Ruby Gemstone" - }, - "titanium_ore": { - "price": 46, - "name": "Titanium" - }, - "blessed_bait": { - "price": 262, - "name": "Blessed Bait" - }, - "catalyst": { - "price": 95997, - "name": "Catalyst" - }, - "log:3": { - "price": 9, - "name": "Jungle Wood" - }, - "log:2": { - "price": 3, - "name": "Birch Wood" - }, - "enchanted_glowstone_dust": { - "price": 727, - "name": "Enchanted Glowstone Dust" - }, - "enchanted_ink_sack": { - "price": 84899, - "name": "Enchanted Ink Sack" - }, - "enchanted_sugar_cane": { - "price": 52102, - "name": "Enchanted Sugar Cane" - }, - "flawless_sapphire_gem": { - "price": 1999995, - "name": "Flawless Sapphire Gemstone" - }, - "enchanted_cactus": { - "price": 121388, - "name": "Enchanted Cactus" - }, - "enchanted_cooked_salmon": { - "price": 267469, - "name": "Enchanted Cooked Salmon" - }, - "enchanted_seeds": { - "price": 78, - "name": "Enchanted Seeds" - }, - "concentrated_stone": { - "price": 1098411, - "name": "Concentrated Stone" - }, - "log": { - "price": 7, - "name": "Oak Wood" - }, - "enchanted_bone_block": { - "price": 64718, - "name": "Enchanted Bone Block" - }, - "jacobs_ticket": { - "price": 10569, - "name": "Jacob's Ticket" - }, - "ghast_tear": { - "price": 84, - "name": "Ghast Tear" - }, - "enchanted_ender_pearl": { - "price": 137, - "name": "Enchanted Ender Pearl" - }, - "absolute_ender_pearl": { - "price": 11543, - "name": "Absolute Ender Pearl" - }, - "unstable_fragment": { - "price": 2534, - "name": "Unstable Dragon Fragment" - }, - "purple_candy": { - "price": 8888, - "name": "Purple Candy" - }, - "spiked_bait": { - "price": 73, - "name": "Spiked Bait" - }, - "enchanted_fermented_spider_eye": { - "price": 67486, - "name": "Enchanted Fermented Spider Eye" - }, - "polished_pumpkin": { - "price": 149998, - "name": "Polished Pumpkin" - }, - "enchanted_gold_block": { - "price": 139429, - "name": "Enchanted Gold Block" - }, - "rough_jade_gem": { - "price": 2, - "name": "Rough Jade Gemstone" - }, - "enchanted_jungle_log": { - "price": 1069, - "name": "Enchanted Jungle Wood" - }, - "null_ovoid": { - "price": 220878, - "name": "Null Ovoid" - }, - "enchanted_flint": { - "price": 2871, - "name": "Enchanted Flint" - }, - "iron_ingot": { - "price": 8, - "name": "Iron Ingot" - }, - "enchanted_emerald_block": { - "price": 176004, - "name": "Enchanted Emerald Block" - }, - "glowstone_dust": { - "price": 15, - "name": "Glowstone Dust" - }, - "gold_ingot": { - "price": 5, - "name": "Gold Ingot" - }, - "rough_sapphire_gem": { - "price": 2, - "name": "Rough Sapphire Gemstone" - }, - "enchanted_clay_ball": { - "price": 479, - "name": "Enchanted Clay" - }, - "revenant_viscera": { - "price": 39966, - "name": "Revenant Viscera" - }, - "perfect_amethyst_gem": { - "price": 10618532, - "name": "Perfect Amethyst Gemstone" - }, - "enchanted_mutton": { - "price": 3317, - "name": "Enchanted Mutton" - }, - "titanic_exp_bottle": { - "price": 267997, - "name": "Titanic Experience Bottle" - }, - "tarantula_silk": { - "price": 116293, - "name": "Tarantula Silk" - }, - "null_sphere": { - "price": 939, - "name": "Null Sphere" - }, - "enchanted_iron": { - "price": 1196, - "name": "Enchanted Iron" - }, - "super_compactor_3000": { - "price": 278639, - "name": "Super Compactor 3000" - }, - "super_egg": { - "price": 169581, - "name": "Super Enchanted Egg" - }, - "stock_of_stonks": { - "price": 452673, - "name": "Stock of Stonks" - }, - "mithril_ore": { - "price": 9, - "name": "Mithril" - }, - "enchanted_paper": { - "price": 442, - "name": "Enchanted Paper" - }, - "enchanted_bone": { - "price": 408, - "name": "Enchanted Bone" - }, - "enchanted_hay_block": { - "price": 4347, - "name": "Enchanted Hay Bale" - }, - "enchanted_titanium": { - "price": 6996, - "name": "Enchanted Titanium" - }, - "enchanted_diamond_block": { - "price": 205015, - "name": "Enchanted Diamond Block" - }, - "superior_fragment": { - "price": 106799, - "name": "Superior Dragon Fragment" - }, - "goblin_egg_green": { - "price": 8371, - "name": "Green Goblin Egg" - }, - "magma_bucket": { - "price": 1958320, - "name": "Magma Bucket" - }, - "spooky_bait": { - "price": 22, - "name": "Spooky Bait" - }, - "emerald": { - "price": 9, - "name": "Emerald" - }, - "enchanted_rabbit_foot": { - "price": 1234, - "name": "Enchanted Rabbit Foot" - }, - "enchanted_ice": { - "price": 880, - "name": "Enchanted Ice" - }, - "clay_ball": { - "price": 3, - "name": "Clay" - }, - "light_bait": { - "price": 639, - "name": "Light Bait" - }, - "old_fragment": { - "price": 2549, - "name": "Old Dragon Fragment" - }, - "arachne_keeper_fragment": { - "price": 2148, - "name": "Arachne's Keeper Fragment" - }, - "green_gift": { - "price": 10996, - "name": "Green Gift" - }, - "worm_membrane": { - "price": 106808, - "name": "Worm Membrane" - }, - "flawless_amethyst_gem": { - "price": 2382719, - "name": "Flawless Amethyst Gemstone" - }, - "packed_ice": { - "price": 47, - "name": "Packed Ice" - }, - "rough_amber_gem": { - "price": 3, - "name": "Rough Amber Gemstone" - }, - "water_lily": { - "price": 121, - "name": "Lily Pad" - }, - "log_2": { - "price": 12, - "name": "Acacia Wood" - }, - "hamster_wheel": { - "price": 20491, - "name": "Hamster Wheel" - }, - "enchanted_obsidian": { - "price": 2773, - "name": "Enchanted Obsidian" - }, - "fine_amber_gem": { - "price": 22142, - "name": "Fine Amber Gemstone" - }, - "enchanted_coal": { - "price": 811, - "name": "Enchanted Coal" - }, - "enchanted_quartz": { - "price": 2424, - "name": "Enchanted Quartz" - }, - "enchanted_coal_block": { - "price": 129748, - "name": "Enchanted Block of Coal" - }, - "werewolf_skin": { - "price": 19156, - "name": "Werewolf Skin" - }, - "perfect_topaz_gem": { - "price": 9744960, - "name": "Perfect Topaz Gemstone" - }, - "daedalus_stick": { - "price": 25499999, - "name": "Daedalus Stick" - }, - "goblin_egg": { - "price": 4197, - "name": "Goblin Egg" - }, - "enchanted_prismarine_crystals": { - "price": 398, - "name": "Enchanted Prismarine Crystals" - }, - "flawed_jade_gem": { - "price": 292, - "name": "Flawed Jade Gemstone" - }, - "enchanted_wet_sponge": { - "price": 85827, - "name": "Enchanted Wet Sponge" - }, - "quartz": { - "price": 16, - "name": "Nether Quartz" - }, - "ender_stone": { - "price": 5, - "name": "End Stone" - }, - "enchanted_raw_fish": { - "price": 2522, - "name": "Enchanted Raw Fish" - }, - "foul_flesh": { - "price": 25970, - "name": "Foul Flesh" - }, - "raw_beef": { - "price": 21, - "name": "Raw Beef" - }, - "jerry_box_purple": { - "price": 458649, - "name": "Purple Jerry Box" - }, - "enchanted_eye_of_ender": { - "price": 4089, - "name": "Enchanted Eye of Ender" - }, - "sludge_juice": { - "price": 1384, - "name": "Sludge Juice" - }, - "ectoplasm": { - "price": 89998, - "name": "Ectoplasm" - }, - "sugar_cane": { - "price": 2, - "name": "Sugar Cane" - }, - "shark_bait": { - "price": 9, - "name": "Shark Bait" - }, - "magma_cream": { - "price": 9, - "name": "Magma Cream" - }, - "red_gift": { - "price": 49292, - "name": "Red Gift" - }, - "enchanted_mithril": { - "price": 1594, - "name": "Enchanted Mithril" - }, - "jerry_box_blue": { - "price": 133233, - "name": "Blue Jerry Box" - }, - "enchanted_slime_block": { - "price": 128996, - "name": "Enchanted Slime Block" - }, - "enchanted_raw_beef": { - "price": 689, - "name": "Enchanted Raw Beef" - }, - "enchanted_feather": { - "price": 480, - "name": "Enchanted Feather" - }, - "enchanted_oak_log": { - "price": 1158, - "name": "Enchanted Oak Wood" - }, - "white_gift": { - "price": 5833, - "name": "White Gift" - }, - "rabbit_hide": { - "price": 28, - "name": "Rabbit Hide" - }, - "nether_stalk": { - "price": 5, - "name": "Nether Wart" - }, - "rabbit": { - "price": 8, - "name": "Raw Rabbit" - }, - "sulphur": { - "price": 12, - "name": "Gunpowder" - }, - "fine_sapphire_gem": { - "price": 25199, - "name": "Fine Sapphire Gemstone" - }, - "enchanted_pumpkin": { - "price": 906, - "name": "Enchanted Pumpkin" - }, - "dark_bait": { - "price": 1345, - "name": "Dark Bait" - }, - "enchanted_carrot": { - "price": 309, - "name": "Enchanted Carrot" - }, - "soulflow": { - "price": 18298, - "name": "Soulflow" - }, - "obsidian": { - "price": 18, - "name": "Obsidian" - }, - "rotten_flesh": { - "price": 6, - "name": "Rotten Flesh" - }, - "enchanted_cooked_fish": { - "price": 268796, - "name": "Enchanted Cooked Fish" - }, - "griffin_feather": { - "price": 57453, - "name": "Griffin Feather" - }, - "minnow_bait": { - "price": 13, - "name": "Minnow Bait" - }, - "enchanted_magma_cream": { - "price": 1348, - "name": "Enchanted Magma Cream" - }, - "starfall": { - "price": 179, - "name": "Starfall" - }, - "enchanted_firework_rocket": { - "price": 149997, - "name": "Enchanted Firework Rocket" - }, - "hard_stone": { - "price": 3, - "name": "Hard Stone" - }, - "flawless_jade_gem": { - "price": 1398302, - "name": "Flawless Jade Gemstone" - }, - "flawed_topaz_gem": { - "price": 266, - "name": "Flawed Topaz Gemstone" - }, - "enchanted_cooked_mutton": { - "price": 161001, - "name": "Enchanted Cooked Mutton" - }, - "fine_amethyst_gem": { - "price": 28615, - "name": "Fine Amethyst Gemstone" - }, - "refined_titanium": { - "price": 194248, - "name": "Refined Titanium" - }, - "enchanted_rabbit": { - "price": 629, - "name": "Enchanted Raw Rabbit" - }, - "mutant_nether_stalk": { - "price": 51211, - "name": "Mutant Nether Wart" - }, - "soul_string": { - "price": 9869, - "name": "Soul String" - }, - "enchanted_bread": { - "price": 65, - "name": "Enchanted Bread" - }, - "fuming_potato_book": { - "price": 1182013, - "name": "Fuming Potato Book" - }, - "fine_jasper_gem": { - "price": 58454, - "name": "Fine Jasper Gemstone" - }, - "flawless_amber_gem": { - "price": 1409256, - "name": "Flawless Amber Gemstone" - }, - "flawed_sapphire_gem": { - "price": 329, - "name": "Flawed Sapphire Gemstone" - }, - "enchanted_blaze_powder": { - "price": 1910, - "name": "Enchanted Blaze Powder" - }, - "summoning_eye": { - "price": 809998, - "name": "Summoning Eye" - }, - "snow_block": { - "price": 5, - "name": "Snow Block" - }, - "fish_bait": { - "price": 88, - "name": "Fish Bait" - }, - "perfect_sapphire_gem": { - "price": 12012991, - "name": "Perfect Sapphire Gemstone" - }, - "bazaar_cookie": { - "price": 0, - "name": "Bazaar Cookie" - }, - "enchanted_diamond": { - "price": 1282, - "name": "Enchanted Diamond" - }, - "compactor": { - "price": 3827, - "name": "Compactor" - }, - "enchanted_baked_potato": { - "price": 50000, - "name": "Enchanted Baked Potato" - }, - "horns_of_torment": { - "price": 1099996, - "name": "Horns Of Torment" - }, - "enchanted_mycelium_cube": { - "price": 1216920, - "name": "Enchanted Mycelium Cube" - }, - "end_stone_shulker": { - "price": 260359, - "name": "End Stone Shulker" - }, - "ender_monocle": { - "price": 42402, - "name": "Ender Monocle" - }, - "hazmat_enderman": { - "price": 237532, - "name": "Hazmat Enderman" - }, - "kuudra_mandible": { - "price": 0, - "name": "Kuudra Mandible" - }, - "blaze_rod_distillate": { - "price": 13399, - "name": "Blaze Rod Distillate" - }, - "acacia_birdhouse": { - "price": 899999, - "name": "Acacia Birdhouse" - }, - "derelict_ashe": { - "price": 1894, - "name": "Derelict Ashe" - }, - "crude_gabagool_distillate": { - "price": 79999, - "name": "Crude Gabagool Distillate" - }, - "meteor_shard": { - "price": 2299999, - "name": "Meteor Shard" - }, - "enchanted_sulphur": { - "price": 19492, - "name": "Enchanted Sulphur" - }, - "omega_egg": { - "price": 1554330, - "name": "Omega Egg" - }, - "magma_cream_distillate": { - "price": 9799, - "name": "Magma Cream Distillate" - }, - "furball": { - "price": 1999999, - "name": "Furball" - }, - "glowstone_dust_distillate": { - "price": 11077, - "name": "Glowstone Dust Distillate" - }, - "sulphur_ore": { - "price": 117, - "name": "Sulphur Ore" - }, - "mandraa": { - "price": 0, - "name": "Mandraa" - }, - "inferno_vertex": { - "price": 104499997, - "name": "Inferno Vertex" - }, - "nether_stalk_distillate": { - "price": 8889, - "name": "Nether Stalk Distillate" - }, - "crude_gabagool": { - "price": 263, - "name": "Crude Gabagool" - }, - "heavy_gabagool": { - "price": 1189771, - "name": "Heavy Gabagool" - }, - "eccentric_painting": { - "price": 15505845, - "name": "Eccentric Painting" - }, - "reaper_pepper": { - "price": 200000000, - "name": "Reaper Pepper" - }, - "inferno_apex": { - "price": 0, - "name": "Inferno Apex" - }, - "obsidian_tablet": { - "price": 1612105, - "name": "Obsidian Tablet" - }, - "vitamin_death": { - "price": 671998, - "name": "Vitamin Death" - }, - "hypergolic_gabagool": { - "price": 38999999, - "name": "Hypergolic Gabagool" - }, - "magma_urchin": { - "price": 2534364, - "name": "Magma Urchin" - }, - "molten_powder": { - "price": 760000, - "name": "Molten Powder" - }, - "searing_stone": { - "price": 1366851, - "name": "Searing Stone" - }, - "fuel_gabagool": { - "price": 34818, - "name": "Fuel Gabagool" - }, - "enchanted_mycelium": { - "price": 7316, - "name": "Enchanted Mycelium" - }, - "precious_pearl": { - "price": 2034658, - "name": "Precious Pearl" - }, - "scorched_books": { - "price": 7448409, - "name": "Scorched Books" - }, - "blaze_wax": { - "price": 416007, - "name": "Blaze Wax" - }, - "shiny_prism": { - "price": 3296086, - "name": "Shiny Prism" - }, - "enchanted_sulphur_cube": { - "price": 3289999, - "name": "Enchanted Sulphur Cube" - }, - "flawed_opal_gem": { - "price": 530, - "name": "Flawed Opal Gem" - }, - "enchanted_red_sand": { - "price": 3925, - "name": "Enchanted Red Sand" - }, - "fine_opal_gem": { - "price": 39777, - "name": "Fine Opal Gem" - }, - "perfect_opal_gem": { - "price": 18093160, - "name": "Perfect Opal Gem" - }, - "rough_opal_gem": { - "price": 9, - "name": "Rough Opal Gem" - }, - "flawless_opal_gem": { - "price": 3243825, - "name": "Flawless Opal Gem" - }, - "enchanted_red_sand_cube": { - "price": 599999, - "name": "Enchanted Red Sand Cube" - }, - "hot_bait": { - "price": 655, - "name": "Hot Bait" - } + "cheap_tuxedo_leggings": { + "price": 400000, + "name": "Cheap Tuxedo Pants" + }, + "young_dragon_helmet": { + "price": 160000, + "name": "Young Dragon Helmet" + }, + "young_dragon_helmet_skin_young_shimmer": { + "price": 60000000, + "name": "Young Dragon Helmet" + }, + "young_dragon_helmet_skin_young_baby": { + "price": 888888888, + "name": "Young Dragon Helmet" + }, + "enchanted_book": { + "price": 10000, + "name": "Enchanted Book" + }, + "braided_griffin_feather": { + "price": 9500000, + "name": "Braided Griffin Feather" + }, + "wise_shimmer": { + "price": 28999999, + "name": "Shimmer Skin" + }, + "pet_skin_dragon_pastel": { + "price": 14900000, + "name": "Pastel Ender Dragon Skin" + }, + "talisman_enrichment_swapper": { + "price": 72000, + "name": "Accessory Enrichment Swapper" + }, + "treasure_artifact": { + "price": 32960000, + "name": "Treasure Artifact" + }, + "pet_skin_sheep_neon_blue": { + "price": 230000000, + "name": "Neon Blue Sheep Skin" + }, + "talisman_enrichment_attack_speed": { + "price": 1889999, + "name": "Attack Speed Enrichment" + }, + "mender_fedora": { + "price": 490000, + "name": "Mender Fedora" + }, + "corleonite": { + "price": 1149000, + "name": "Corleonite" + }, + "zombie_knight_leggings": { + "price": 40000, + "name": "Zombie Knight Leggings" + }, + "new_year_cake": { + "price": 200000, + "name": "New Year Cake (year 228)" + }, + "starred_shadow_assassin_helmet": { + "price": 3400000, + "name": "Smart Shadow Assassin Helmet" + }, + "starred_shadow_assassin_helmet_skin_shadow_assassin_crimson": { + "price": 12500000, + "name": "Smart Shadow Assassin Helmet" + }, + "starred_shadow_assassin_helmet_skin_shadow_assassin_mauve": { + "price": 10650000, + "name": "Smart Shadow Assassin Helmet" + }, + "starred_shadow_assassin_helmet_skin_shadow_assassin_admiral": { + "price": 10750000, + "name": "Smart Shadow Assassin Helmet" + }, + "zombie_brain_mixin": { + "price": 140000, + "name": "Zombie Brain Mixin" + }, + "artifact_potion_affinity": { + "price": 180000, + "name": "Potion Affinity Artifact" + }, + "necromancer_lord_leggings": { + "price": 3700000, + "name": "Necromancer Lord Leggings" + }, + "gold_sadan_head": { + "price": 5500000, + "name": "Golden Sadan Head" + }, + "runaans_bow": { + "price": 430000, + "name": "Runaan's Bow" + }, + "ultimate_carrot_candy": { + "price": 1488888, + "name": "Ultimate Carrot Candy" + }, + "unstable_dragon_leggings": { + "price": 200000, + "name": "Unstable Dragon Leggings" + }, + "turbo_warts_3": { + "price": 270000, + "name": "Turbo Warts 3" + }, + "ultimate_bank_5": { + "price": 299000, + "name": "Ultimate Bank 5" + }, + "bottle_of_jyrre": { + "price": 100, + "name": "Bottle Of Jyrre" + }, + "giant_fragment_laser": { + "price": 250000, + "name": "L.a.s.r.'s Eye" + }, + "giant_killer_6": { + "price": 390000, + "name": "Killer 6" + }, + "lvl_1_uncommon_pig": { + "price": 20000, + "name": "Uncommon Pig" + }, + "heavy_helmet": { + "price": 10000, + "name": "Heavy Helmet" + }, + "sorrow_chestplate": { + "price": 7750000, + "name": "Sorrow Chestplate" + }, + "starlight_helmet": { + "price": 90000, + "name": "Helmet" + }, + "tarantula_boots": { + "price": 1500000, + "name": "Tarantula Boots" + }, + "large_enchanted_chest": { + "price": 394777, + "name": "Large Storage" + }, + "skeletor_chestplate": { + "price": 10036, + "name": "Skeletor Chestplate" + }, + "tank_wither_boots": { + "price": 2800000, + "name": "Goldor's Boots" + }, + "pet_skin_elephant_monochrome": { + "price": 16700000, + "name": "Monochrome Elephant Skin" + }, + "starred_shadow_assassin_leggings": { + "price": 5660000, + "name": "Fierce Shadow Assassin Leggings" + }, + "zombie_soldier_boots": { + "price": 9000, + "name": "Zombie Soldier Boots" + }, + "beastmaster_crest_common": { + "price": 240000, + "name": "Beastmaster Crest" + }, + "gemstone_drill_2": { + "price": 5599000, + "name": "Prospector's Gemstone Drill Lt-522" + }, + "superior_dragon_chestplate": { + "price": 7700000, + "name": "Superior Dragon Chestplate" + }, + "lvl_1_rare_enderman": { + "price": 2000, + "name": "Rare Enderman" + }, + "lvl_1_rare_enderman_skin_enderman_slayer": { + "price": 450000, + "name": "Rare Enderman" + }, + "sharpness_6": { + "price": 770000, + "name": "Sharpness 6" + }, + "lvl_1_common_elephant": { + "price": 80000, + "name": "Common Elephant" + }, + "pet_skin_squid_glow": { + "price": 19989999, + "name": "Glow Squid Skin" + }, + "lvl_1_legendary_bat": { + "price": 1100000, + "name": "Bat" + }, + "lvl_1_legendary_bat_skin_bat_vampire": { + "price": 11000000, + "name": "Bat" + }, + "pet_item_saddle": { + "price": 98000, + "name": "Saddle" + }, + "shark_scale_helmet": { + "price": 859000, + "name": "Shark Scale Helmet" + }, + "holy_dragon_chestplate": { + "price": 400000, + "name": "Holy Dragon Chestplate" + }, + "starred_bonzo_mask": { + "price": 1000000, + "name": "Perfect Bonzo's Mask" + }, + "crypt_dreadlord_sword": { + "price": 5316, + "name": "Dreadlord Sword" + }, + "pet_skin_hound_beagle": { + "price": 10750000, + "name": "Beagle Hound Skin" + }, + "young_dragon_chestplate": { + "price": 225000, + "name": "Young Dragon Chestplate" + }, + "looting_4": { + "price": 50000, + "name": "Looting 4" + }, + "scythe_blade": { + "price": 3000000, + "name": "Scythe Blade" + }, + "vampire_witch_mask": { + "price": 27899000, + "name": "Vampire Witch Mask" + }, + "glacite_jewel": { + "price": 49999, + "name": "Glacite Jewel" + }, + "pet": { + "price": 5000, + "name": "Armadillo" + }, + "digested_mosquito": { + "price": 322000, + "name": "Digested Mosquito" + }, + "lvl_1_epic_enderman": { + "price": 100000, + "name": "Enderman" + }, + "lvl_1_epic_enderman_skin_enderman_slayer": { + "price": 333333, + "name": "Enderman" + }, + "god_potion_2": { + "price": 400000, + "name": "God Potion" + }, + "end_boots": { + "price": 140000, + "name": "Ender Boots" + }, + "great_spook_leggings": { + "price": 450000, + "name": "Great Spook Leggings" + }, + "aatrox_batphone": { + "price": 550000, + "name": "Maddox Batphone" + }, + "protector_dragon_chestplate": { + "price": 250000, + "name": "Protector Dragon Chestplate" + }, + "titanium_drill_1": { + "price": 19000000, + "name": "Titanium Drill Dr-x355" + }, + "red_claw_talisman": { + "price": 12999, + "name": "Red Claw Talisman" + }, + "minion_storage_expander": { + "price": 400000, + "name": "Minion Storage X-pender" + }, + "master_skull_tier_3": { + "price": 2250000, + "name": "Master Skull - Tier 3" + }, + "lvl_1_epic_magma_cube": { + "price": 1249000, + "name": "Magma Cube" + }, + "crystal_fragment": { + "price": 79000, + "name": "Crystal Fragment" + }, + "lvl_1_legendary_rabbit": { + "price": 765432, + "name": "Rabbit" + }, + "remnant_of_the_eye": { + "price": 5000, + "name": "Remnant Of The Eye" + }, + "ultimate_swarm_1": { + "price": 580000, + "name": "Ultimate Swarm 1" + }, + "goblin_chestplate": { + "price": 1500, + "name": "Goblin Chestplate" + }, + "lvl_100_legendary_hound": { + "price": 39969420, + "name": "Hound" + }, + "lvl_100_legendary_hound_skin_hound_beagle": { + "price": 50000000, + "name": "Hound" + }, + "lvl_1_epic_pigman": { + "price": 699000, + "name": "Pigman" + }, + "rejuvenate_5": { + "price": 1000000, + "name": "Rejuvenate 5" + }, + "frozen_scythe": { + "price": 7099999, + "name": "Frozen Scythe" + }, + "counter_strike_5": { + "price": 45000000, + "name": "Counter Strike 5" + }, + "super_magic_mushroom_soup": { + "price": 9000, + "name": "Mystical Mushroom Soup" + }, + "sorrow_leggings": { + "price": 7400000, + "name": "Sorrow Leggings" + }, + "tank_wither_chestplate": { + "price": 22000000, + "name": "Goldor's Chestplate" + }, + "jungle_key": { + "price": 69000, + "name": "Jungle Key" + }, + "golem_sword": { + "price": 1500000, + "name": "Golem Sword" + }, + "alpha_pick": { + "price": 7990000, + "name": "Pioneer Pickaxe" + }, + "flower_of_truth": { + "price": 4300000, + "name": "Flower Of Truth" + }, + "ultimate_legion_1": { + "price": 1250000, + "name": "Ultimate Legion 1" + }, + "grizzly_bait": { + "price": 480000, + "name": "Grizzly Bait" + }, + "end_stone_bow": { + "price": 28000, + "name": "End Stone Bow" + }, + "power_wither_leggings": { + "price": 16500000, + "name": "Necron's Leggings" + }, + "ultimate_wise_4": { + "price": 1500000, + "name": "Wise 4" + }, + "shadow_goggles": { + "price": 646000, + "name": "Shadow Goggles" + }, + "stonk_pickaxe": { + "price": 500000, + "name": "Stonk" + }, + "ftx_3070": { + "price": 70000, + "name": "Ftx 3070" + }, + "pickonimbus": { + "price": 250000, + "name": "Pickonimbus 2000" + }, + "tarantula_leggings": { + "price": 1100000, + "name": "Tarantula Leggings" + }, + "lvl_1_rare_lion": { + "price": 419999, + "name": "Rare Lion" + }, + "midas_sword": { + "price": 6500000, + "name": "Midas' Sword" + }, + "cultivating_1": { + "price": 1400000, + "name": "Cultivating 1" + }, + "hyper_catalyst_upgrade": { + "price": 105000, + "name": "Hyper Catalyst Upgrade" + }, + "gemstone_drill_4": { + "price": 19990000, + "name": "Jasper Drill X" + }, + "lvl_1_rare_rabbit": { + "price": 25000, + "name": "Rare Rabbit" + }, + "farming_for_dummies": { + "price": 119280, + "name": "Farming For Dummies" + }, + "wither_boots": { + "price": 1400000, + "name": "Wither Boots" + }, + "aspect_of_the_end": { + "price": 170000, + "name": "Aspect Of The End" + }, + "pigman_sword": { + "price": 9000000, + "name": "Pigman Sword" + }, + "bonzo_fragment": { + "price": 25000, + "name": "Bonzo Fragment" + }, + "wither_chestplate": { + "price": 18500000, + "name": "Wither Chestplate" + }, + "superlite_motor": { + "price": 70000, + "name": "Superlite Motor" + }, + "scarf_fragment": { + "price": 5000, + "name": "Scarf Fragment" + }, + "smite_7": { + "price": 1400000, + "name": "Smite 7" + }, + "book_of_stats": { + "price": 649999, + "name": "Book Of Stats" + }, + "final_destination_helmet": { + "price": 700000, + "name": "Final Destination Helmet" + }, + "old_dragon_helmet": { + "price": 395000, + "name": "Old Dragon Helmet" + }, + "old_dragon_helmet_skin_old_baby": { + "price": 642042042, + "name": "Old Dragon Helmet" + }, + "old_dragon_helmet_skin_old_shimmer": { + "price": 74077000, + "name": "Old Dragon Helmet" + }, + "pet_item_textbook": { + "price": 560000, + "name": "Textbook" + }, + "ultimate_legion_4": { + "price": 10500000, + "name": "Ultimate Legion 4" + }, + "summoning_ring": { + "price": 7100000, + "name": "Summoning Ring" + }, + "gold_livid_head": { + "price": 1700000, + "name": "Golden Livid Head" + }, + "lvl_1_legendary_giraffe": { + "price": 9000000, + "name": "Giraffe" + }, + "starred_shadow_assassin_boots": { + "price": 2880000, + "name": "Fierce Shadow Assassin Boots" + }, + "experience_4": { + "price": 500000, + "name": "Experience 4" + }, + "creeper_leggings": { + "price": 600000, + "name": "Creeper Pants" + }, + "titan_killer_6": { + "price": 12000, + "name": "Titan Killer 6" + }, + "skeleton_grunt_leggings": { + "price": 5037, + "name": "Skeleton Grunt Leggings" + }, + "minos_relic": { + "price": 31999999, + "name": "Minos Relic" + }, + "titanium_relic": { + "price": 16161616, + "name": "Titanium Relic" + }, + "power_wither_boots": { + "price": 11590000, + "name": "Necron's Boots" + }, + "bits_talisman": { + "price": 4500000, + "name": "Bits Talisman" + }, + "giant_fragment_boulder": { + "price": 19000, + "name": "Jolly Pink Rock" + }, + "enderman_cortex_rewriter": { + "price": 80000, + "name": "Enderman Cortex Rewriter" + }, + "wither_goggles": { + "price": 4799999, + "name": "Wither Goggles" + }, + "kat_flower": { + "price": 150000, + "name": "Kat Flower" + }, + "personal_compactor_4000": { + "price": 450000, + "name": "Personal Compactor 4000" + }, + "decent_coffee": { + "price": 6000, + "name": "Decent Coffee" + }, + "nether_fortress_boss_travel_scroll": { + "price": 3949999, + "name": "Dusty Travel Scroll To The Kuudra Skull" + }, + "builders_wand": { + "price": 3900000, + "name": "Builder's Wand" + }, + "antique_remedies": { + "price": 15000, + "name": "Antique Remedies" + }, + "true_protection_1": { + "price": 1000000, + "name": "True Protection 1" + }, + "young_dragon_boots": { + "price": 110000, + "name": "Young Dragon Boots" + }, + "reaper_chestplate": { + "price": 8500000, + "name": "Reaper Chestplate" + }, + "second_master_star": { + "price": 16149998, + "name": "Second Master Star" + }, + "treecapitator_axe": { + "price": 1200000, + "name": "Lumberjack's Treecapitator" + }, + "tank_miner_leggings": { + "price": 15000, + "name": "Miner Leggings" + }, + "lvl_1_uncommon_monkey": { + "price": 70000, + "name": "Uncommon Monkey" + }, + "bone_boomerang": { + "price": 4999000, + "name": "Bonemerang" + }, + "wise_wither_leggings": { + "price": 9880000, + "name": "Storm's Leggings" + }, + "voidedge_katana": { + "price": 899000, + "name": "Voidedge Katana" + }, + "tank_wither_helmet": { + "price": 4790000, + "name": "Goldor's Helmet" + }, + "beastmaster_crest_rare": { + "price": 3000000, + "name": "Beastmaster Crest" + }, + "lvl_100_legendary_baby_yeti": { + "price": 46000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_baby_yeti_skin_yeti_grown_up": { + "price": 143333333, + "name": "Baby Yeti" + }, + "lvl_100_legendary_baby_yeti_skin_yeti_grown_up_candy_10": { + "price": 99960000, + "name": "Baby Yeti" + }, + "red_claw_artifact": { + "price": 6770000, + "name": "Red Claw Artifact" + }, + "bat_artifact": { + "price": 889999, + "name": "Bat Artifact" + }, + "pet_item_exp_share": { + "price": 789000, + "name": "Exp Share" + }, + "experience_artifact": { + "price": 570000, + "name": "Experience Artifact" + }, + "emerald_blade": { + "price": 350000, + "name": "Emerald Blade" + }, + "pet_skin_rock_cool": { + "price": 570000000, + "name": "Cool Rock Skin" + }, + "overflux_power_orb": { + "price": 58000000, + "name": "Overflux Power Orb" + }, + "washed_up_souvenir": { + "price": 290000, + "name": "Washed-up Souvenir" + }, + "starred_shadow_assassin_chestplate": { + "price": 22770000, + "name": "Fierce Shadow Assassin Chestplate" + }, + "rod_of_the_sea": { + "price": 6380000, + "name": "Rod Of The Sea" + }, + "superior_dragon_boots": { + "price": 4190000, + "name": "Superior Dragon Boots" + }, + "sorrow": { + "price": 320000, + "name": "Sorrow" + }, + "overload_1": { + "price": 900000, + "name": "Overload 1" + }, + "drill_engine": { + "price": 2878999, + "name": "Drill Engine" + }, + "juju_shortbow": { + "price": 17100000, + "name": "Juju Shortbow" + }, + "starred_adaptive_boots": { + "price": 1000000, + "name": "Fierce Adaptive Boots" + }, + "gemstone_mixture": { + "price": 5590000, + "name": "Gemstone Mixture" + }, + "kismet_feather": { + "price": 90000, + "name": "Kismet Feather" + }, + "daedalus_axe": { + "price": 48000000, + "name": "Daedalus Axe" + }, + "tank_wither_leggings": { + "price": 7942069, + "name": "Goldor's Leggings" + }, + "zombie_ring": { + "price": 29000, + "name": "Zombie Ring" + }, + "divan_fragment": { + "price": 700000, + "name": "Divan Fragment" + }, + "wise_dragon_boots": { + "price": 939000, + "name": "Wise Dragon Boots" + }, + "repelling_candle": { + "price": 19999, + "name": "Repelling Candle" + }, + "sorrow_boots": { + "price": 4300000, + "name": "Sorrow Boots" + }, + "superb_carrot_candy": { + "price": 1544999, + "name": "Superb Carrot Candy" + }, + "livid_fragment": { + "price": 79999, + "name": "Livid Fragment" + }, + "speed_wither_leggings": { + "price": 8189999, + "name": "Maxor's Leggings" + }, + "smarty_pants_5": { + "price": 9650000, + "name": "Smarty Pants 5" + }, + "dwarf_turtle_shelmet": { + "price": 1099000, + "name": "Dwarf Turtle Shelmet" + }, + "titanium_drill_3": { + "price": 170000000, + "name": "Titanium Drill Dr-x555" + }, + "tank_miner_chestplate": { + "price": 5000, + "name": "Miner Chestplate" + }, + "tarantula_helmet": { + "price": 860000, + "name": "Tarantula Helmet" + }, + "tarantula_helmet_skin_tarantula_black_widow": { + "price": 75000000, + "name": "Tarantula Helmet" + }, + "foraging_1_travel_scroll": { + "price": 195000, + "name": "Travel Scroll To The Park" + }, + "necromancer_lord_chestplate": { + "price": 10000000, + "name": "Necromancer Lord Chestplate" + }, + "phantom_rod": { + "price": 1150000, + "name": "Phantom Rod" + }, + "lvl_1_legendary_ammonite": { + "price": 449999, + "name": "Ammonite" + }, + "skeletor_helmet": { + "price": 10036, + "name": "Skeletor Helmet" + }, + "wood_singularity": { + "price": 5999999, + "name": "Wood Singularity" + }, + "lvl_1_epic_wolf": { + "price": 340000, + "name": "Wolf" + }, + "glacite_leggings": { + "price": 20000, + "name": "Glacite Leggings" + }, + "blood_god_crest": { + "price": 2666666, + "name": "Blood God Crest" + }, + "prehistoric_egg": { + "price": 50000, + "name": "Prehistoric Egg" + }, + "old_baby": { + "price": 195000000, + "name": "Baby Skin" + }, + "necromancer_lord_boots": { + "price": 925000, + "name": "Necromancer Lord Boots" + }, + "starred_adaptive_leggings": { + "price": 900000, + "name": "Fierce Adaptive Leggings" + }, + "protector_dragon_boots": { + "price": 499900, + "name": "Protector Dragon Boots" + }, + "aspect_of_the_dragon": { + "price": 644444, + "name": "Aspect Of The Dragons" + }, + "endstone_rose": { + "price": 4000, + "name": "Endstone Rose" + }, + "overload_3": { + "price": 4750000, + "name": "Overload 3" + }, + "power_wither_chestplate": { + "price": 30850000, + "name": "Necron's Chestplate" + }, + "pet_item_vampire_fang": { + "price": 350000, + "name": "Vampire Fang" + }, + "ember_helmet": { + "price": 800000, + "name": "Ember Helmet" + }, + "pet_skin_parrot_gold_macaw": { + "price": 12500000, + "name": "Gold Macaw Parrot Skin" + }, + "power_wither_helmet": { + "price": 14000000, + "name": "Necron's Helmet" + }, + "emerald_armor_leggings": { + "price": 690420, + "name": "Emerald Armor Leggings" + }, + "mining_2_portal": { + "price": 90000, + "name": "Portal To The Deep Caverns" + }, + "starred_venoms_touch": { + "price": 1900000, + "name": "Rapid Venom's Touch" + }, + "diamond_spreading": { + "price": 7000, + "name": "Diamond Spreading" + }, + "sugar_rush_3": { + "price": 1499999, + "name": "Sugar Rush 3" + }, + "skeleton_grunt_boots": { + "price": 30000, + "name": "Skeleton Grunt Boots" + }, + "armor_of_yog_chestplate": { + "price": 595000, + "name": "Yog Chestplate" + }, + "livid_dagger": { + "price": 7189999, + "name": "Livid Dagger" + }, + "pet_skin_enderman_slayer": { + "price": 340000, + "name": "Void Conqueror Enderman Skin" + }, + "aspect_of_the_void": { + "price": 8400000, + "name": "Aspect Of The Void" + }, + "bat_person_chestplate": { + "price": 1000000, + "name": "Bat Person Chestplate" + }, + "expertise_1": { + "price": 1500000, + "name": "Expertise 1" + }, + "fuel_tank": { + "price": 589000, + "name": "Fuel Tank" + }, + "warden_helmet": { + "price": 134000000, + "name": "Warden Helmet" + }, + "warden_helmet_skin_true_warden": { + "price": 210000000, + "name": "Warden Helmet" + }, + "lvl_1_rare_griffin": { + "price": 2199999, + "name": "Rare Griffin" + }, + "wither_shield_scroll": { + "price": 5999999, + "name": "Wither Shield Scroll" + }, + "wise_dragon_chestplate": { + "price": 990000, + "name": "Dragon Chestplate" + }, + "speed_wither_chestplate": { + "price": 21199999, + "name": "Maxor's Chestplate" + }, + "giant_fragment_bigfoot": { + "price": 80000, + "name": "Bigfoot's Lasso" + }, + "speed_wither_boots": { + "price": 3000000, + "name": "Maxor's Boots" + }, + "lvl_1_common_dolphin": { + "price": 49000, + "name": "Common Dolphin" + }, + "critical_6": { + "price": 38000, + "name": "Critical 6" + }, + "superior_dragon_leggings": { + "price": 7300000, + "name": "Superior Dragon Leggings" + }, + "wither_leggings": { + "price": 6100000, + "name": "Wither Leggings" + }, + "pet_skin_ocelot_snow_tiger": { + "price": 13000000, + "name": "Snow Tiger Ocelot Skin" + }, + "silent_death": { + "price": 100000, + "name": "Silent Death" + }, + "perfect_chestplate_12": { + "price": 6500000, + "name": "Perfect Chestplate - Tier Xii" + }, + "danger_1_travel_scroll": { + "price": 635000, + "name": "Travel Scroll To Spider's Den" + }, + "wise_wither_boots": { + "price": 4539999, + "name": "Storm's Boots" + }, + "champ_rod": { + "price": 290000, + "name": "Rod Of Champions" + }, + "salmon_helmet_new": { + "price": 59999, + "name": "Salmon Helmet" + }, + "happy_mask": { + "price": 80000, + "name": "Happy Mask" + }, + "skeleton_grunt_helmet": { + "price": 9000, + "name": "Skeleton Grunt Helmet" + }, + "spirit_mask": { + "price": 7800000, + "name": "Spirit Mask" + }, + "mineral_talisman": { + "price": 317000, + "name": "Mineral Talisman" + }, + "crown_of_greed": { + "price": 1250000, + "name": "Crown Of Greed" + }, + "armor_of_yog_helmet": { + "price": 405000, + "name": "Yog Helmet" + }, + "protection_7": { + "price": 19999000, + "name": "Protection 7" + }, + "reaper_mask": { + "price": 8100000, + "name": "Reaper Mask" + }, + "reaper_mask_skin_reaper_spirit": { + "price": 470000000, + "name": "Reaper Mask" + }, + "enchanted_hopper": { + "price": 2150000, + "name": "Enchanted Hopper" + }, + "enchanted_book_bundle_vicious": { + "price": 64500000, + "name": "Enchanted Book Bundle" + }, + "final_destination_leggings": { + "price": 800000, + "name": "Final Destination Leggings" + }, + "base_griffin_upgrade_stone": { + "price": 350000, + "name": "Base Griffin Upgrade Stone" + }, + "turbo_potato_1": { + "price": 69000, + "name": "Turbo Potato 1" + }, + "turbo_carrot_3": { + "price": 240000, + "name": "Turbo Carrot 3" + }, + "honed_shark_tooth_necklace": { + "price": 100000, + "name": "Honed Shark Tooth Necklace" + }, + "mastiff_boots": { + "price": 730000, + "name": "Mastiff Boots" + }, + "griffin_upgrade_stone_rare": { + "price": 1990000, + "name": "Griffin Upgrade Stone" + }, + "midas_staff": { + "price": 51900000, + "name": "Midas Staff" + }, + "potion": { + "price": 500, + "name": "Alchemy Xp Boost Ii Potion" + }, + "jumbo_backpack_upgrade": { + "price": 1500000, + "name": "Jumbo Backpack Upgrade" + }, + "xxlarge_enchanted_chest": { + "price": 1700000, + "name": "Xx-large Storage" + }, + "divan_leggings": { + "price": 24699999, + "name": "Leggings Of Divan" + }, + "replenish_1": { + "price": 1030000, + "name": "Replenish 1" + }, + "wither_cloak": { + "price": 4490000, + "name": "Wither Cloak Sword" + }, + "zombie_soldier_chestplate": { + "price": 30000, + "name": "Zombie Soldier Chestplate" + }, + "lvl_100_legendary_sheep": { + "price": 4000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_black": { + "price": 1450000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_light_blue": { + "price": 697488000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_blue": { + "price": 358000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_yellow": { + "price": 200000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_green": { + "price": 210000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_red": { + "price": 196000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_white": { + "price": 749999999, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_red_candy_10": { + "price": 223000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_white_candy_10": { + "price": 599000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_blue_candy_10": { + "price": 272000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_light_blue_candy_10": { + "price": 940000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_pink": { + "price": 1199999998, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_purple": { + "price": 1350000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_light_green": { + "price": 850000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_purple_candy_10": { + "price": 440000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_neon_blue_candy_2": { + "price": 220000000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skin_sheep_light_green_candy_10": { + "price": 699999999, + "name": "Sheep" + }, + "skeleton_soldier_leggings": { + "price": 9900, + "name": "Skeleton Soldier Leggings" + }, + "frozen_blaze_chestplate": { + "price": 10100000, + "name": "Frozen Blaze Chestplate" + }, + "lvl_1_common_monkey": { + "price": 69000, + "name": "Common Monkey" + }, + "lvl_1_uncommon_ocelot": { + "price": 699999, + "name": "Uncommon Ocelot" + }, + "pet_skin_monkey_gorilla": { + "price": 15000000, + "name": "Gorilla Monkey Skin" + }, + "jerry_staff": { + "price": 250000, + "name": "Jerry-chine Gun" + }, + "strong_dragon_chestplate": { + "price": 900000, + "name": "Strong Dragon Chestplate" + }, + "super_heavy_helmet": { + "price": 45000, + "name": "Super Heavy Helmet" + }, + "lvl_1_epic_golem": { + "price": 500000, + "name": "Golem" + }, + "party_hat_crab": { + "price": 17000000, + "name": "Yellow Crab Hat Of Celebration" + }, + "end_chestplate": { + "price": 89000, + "name": "Ender Chestplate" + }, + "prosecute_6": { + "price": 13950000, + "name": "Prosecute 6" + }, + "lvl_1_epic_blaze": { + "price": 8400000, + "name": "Blaze" + }, + "arachne_fragment": { + "price": 20000, + "name": "Arachne Fragment" + }, + "lvl_1_epic_mithril_golem": { + "price": 245000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_pig": { + "price": 16999999, + "name": "Pig" + }, + "necromancer_lord_helmet": { + "price": 170000, + "name": "Necromancer Lord Helmet" + }, + "sea_creature_artifact": { + "price": 230000, + "name": "Sea Creature Artifact" + }, + "pet_skin_silverfish_fossilized": { + "price": 20999999, + "name": "Fossilized Silverfish Skin" + }, + "personal_bank_item": { + "price": 144000, + "name": "Personal Bank Item" + }, + "music_pants": { + "price": 49000, + "name": "Stereo Pants" + }, + "vorpal_katana": { + "price": 4250000, + "name": "Vorpal Katana" + }, + "pet_item_flying_pig": { + "price": 350000, + "name": "Flying Pig" + }, + "shadow_warp_scroll": { + "price": 5099999, + "name": "Shadow Warp Scroll" + }, + "lvl_1_epic_blue_whale": { + "price": 1600000, + "name": "Blue Whale" + }, + "large_backpack": { + "price": 198999, + "name": "Large Backpack" + }, + "large_backpack_skin_enderpack": { + "price": 29000000, + "name": "Large Backpack" + }, + "pet_skin_wolf": { + "price": 26900000, + "name": "Dark Wolf Skin" + }, + "salmon_boots_new": { + "price": 24000, + "name": "Salmon Boots" + }, + "rotten_chestplate": { + "price": 19999, + "name": "Rotten Chestplate" + }, + "great_spook_chestplate": { + "price": 3200000, + "name": "Great Spook Chestplate" + }, + "vampirism_6": { + "price": 500000, + "name": "Vampirism 6" + }, + "lvl_100_legendary_bat": { + "price": 8890000, + "name": "Bat" + }, + "lvl_100_legendary_bat_skin_bat_vampire": { + "price": 40000000, + "name": "Bat" + }, + "lvl_100_legendary_bat_skin_bat_vampire_candy_10": { + "price": 26000000, + "name": "Bat" + }, + "lvl_1_epic_bee": { + "price": 750000, + "name": "Bee" + }, + "stone_blade": { + "price": 1350000, + "name": "Adaptive Blade" + }, + "titanium_ring": { + "price": 2999900, + "name": "Titanium Ring" + }, + "divan_boots": { + "price": 17200000, + "name": "Boots Of Divan" + }, + "strong_dragon_leggings": { + "price": 1370000, + "name": "Strong Dragon Leggings" + }, + "lvl_1_legendary_turtle": { + "price": 16999999, + "name": "Turtle" + }, + "turbo_coco_1": { + "price": 70000, + "name": "Turbo Coco 1" + }, + "ultimate_soul_eater_5": { + "price": 30000000, + "name": "Ultimate Soul Eater 5" + }, + "werewolf_helmet": { + "price": 850000, + "name": "Werewolf Helmet" + }, + "ice_spray_wand": { + "price": 29300000, + "name": "Ice Spray Wand" + }, + "shadow_assassin_admiral": { + "price": 9999999, + "name": "Admiral Skin" + }, + "speed_artifact": { + "price": 2566666, + "name": "Speed Artifact" + }, + "obsidian_chestplate": { + "price": 25000, + "name": "Obsidian Chestplate" + }, + "pooch_sword": { + "price": 4500000, + "name": "Pooch Sword" + }, + "lvl_100_legendary_rabbit": { + "price": 6900000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit_rose": { + "price": 35555555, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit_aquamarine": { + "price": 30000000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit": { + "price": 230000000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit_aquamarine_candy_10": { + "price": 32000000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit_aquamarine_candy_1": { + "price": 31000000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skin_rabbit_candy_10": { + "price": 158000000, + "name": "Rabbit" + }, + "divan_helmet": { + "price": 18500000, + "name": "Helmet Of Divan" + }, + "sugar_rush_1": { + "price": 350000, + "name": "Sugar Rush 1" + }, + "jingle_bells": { + "price": 1000000, + "name": "Jingle Bells" + }, + "bat_the_fish": { + "price": 130000, + "name": "Bat The Fish" + }, + "unstable_dragon_boots": { + "price": 123999, + "name": "Unstable Dragon Boots" + }, + "scarf_studies": { + "price": 500000, + "name": "Scarf's Studies" + }, + "lvl_100_legendary_jerry": { + "price": 35000069, + "name": "Jerry" + }, + "lvl_100_legendary_jerry_skin_jerry_green_elf": { + "price": 220000000, + "name": "Jerry" + }, + "lvl_100_legendary_jerry_skin_jerry_red_elf": { + "price": 345000000, + "name": "Jerry" + }, + "lvl_100_legendary_jerry_skin_jerry_handsome": { + "price": 65000000, + "name": "Jerry" + }, + "intimidation_ring": { + "price": 290000, + "name": "Intimidation Ring" + }, + "flamebreaker_helmet": { + "price": 2990000, + "name": "Ember Ash Helmet" + }, + "ultimate_last_stand_3": { + "price": 1150000, + "name": "Ultimate Last Stand 3" + }, + "bedrock": { + "price": 18000000, + "name": "Bedrock" + }, + "soul_whip": { + "price": 7890000, + "name": "Soul Whip" + }, + "ruby_power_scroll": { + "price": 490000, + "name": "Ruby Power Scroll" + }, + "golden_plate": { + "price": 1480000, + "name": "Golden Plate" + }, + "wise_wither_helmet": { + "price": 7350000, + "name": "Storm's Helmet" + }, + "griffin_upgrade_stone_epic": { + "price": 5100000, + "name": "Griffin Upgrade Stone" + }, + "sorrow_helmet": { + "price": 5400000, + "name": "Sorrow Helmet" + }, + "protector_dragon_helmet": { + "price": 249900, + "name": "Protector Dragon Helmet" + }, + "protector_dragon_helmet_skin_protector_shimmer": { + "price": 98999999, + "name": "Protector Dragon Helmet" + }, + "protector_dragon_helmet_skin_protector_baby": { + "price": 499000000, + "name": "Protector Dragon Helmet" + }, + "frozen_blaze_helmet": { + "price": 9694200, + "name": "Frozen Blaze Helmet" + }, + "frozen_blaze_helmet_skin_frozen_blaze_icicle": { + "price": 164900000, + "name": "Frozen Blaze Helmet" + }, + "mastiff_leggings": { + "price": 700000, + "name": "Leggings" + }, + "skeleton_lord_helmet": { + "price": 4400000, + "name": "Skeleton Lord Helmet" + }, + "ultimate_wisdom_4": { + "price": 1900000, + "name": "Ultimate Wisdom 4" + }, + "starlight_chestplate": { + "price": 90000, + "name": "Chestplate" + }, + "mineral_chestplate": { + "price": 299999, + "name": "Mineral Chestplate" + }, + "necromancer_sword": { + "price": 4499000, + "name": "Necromancer Sword" + }, + "heavy_leggings": { + "price": 6000, + "name": "Heavy Leggings" + }, + "ember_rod": { + "price": 2500000, + "name": "Ember Rod" + }, + "ultimate_jerry_5": { + "price": 920000, + "name": "Ultimate Jerry 5" + }, + "holy_dragon_boots": { + "price": 135000, + "name": "Holy Dragon Boots" + }, + "dungeon_chest_key": { + "price": 150000, + "name": "Dungeon Chest Key" + }, + "the_shredder": { + "price": 800000, + "name": "Shredder" + }, + "synthetic_heart": { + "price": 90000, + "name": "Synthetic Heart" + }, + "elegant_tuxedo_boots": { + "price": 19000000, + "name": "Elegant Tuxedo Oxfords" + }, + "final_destination_boots": { + "price": 650000, + "name": "Final Destination Boots" + }, + "lvl_100_legendary_tiger": { + "price": 36999999, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_twilight": { + "price": 470000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_saber_tooth": { + "price": 53500000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_twilight_candy_10": { + "price": 400000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_saber_tooth_candy_10": { + "price": 40000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_golden": { + "price": 79999900, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_golden_candy_10": { + "price": 47000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_saber_tooth_candy_7": { + "price": 39000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_golden_candy_2": { + "price": 39000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_golden_candy_1": { + "price": 31999999, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_golden_candy_8": { + "price": 32999999, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skin_tiger_saber_tooth_candy_4": { + "price": 33900000, + "name": "Tiger" + }, + "sponge_leggings": { + "price": 850000, + "name": "Sponge Leggings" + }, + "mithril_drill_1": { + "price": 3000000, + "name": "Excellent Mithril Drill Sx-r226" + }, + "divan_chestplate": { + "price": 22000000, + "name": "Chestplate Of Divan" + }, + "lvl_100_legendary_black_cat": { + "price": 33000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_onyx": { + "price": 69000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_ivory": { + "price": 83000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_ivory_candy_10": { + "price": 69696900, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_onyx_candy_10": { + "price": 57000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_ivory_candy_4": { + "price": 56000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_skin_black_cat_onyx_candy_5": { + "price": 44000000, + "name": "Black Cat" + }, + "mender_crown": { + "price": 4200000, + "name": "Mender Crown" + }, + "blaze_leggings": { + "price": 2680000, + "name": "Blaze Leggings" + }, + "super_heavy_chestplate": { + "price": 50000, + "name": "Super Heavy Chestplate" + }, + "delicate_5": { + "price": 629995, + "name": "Delicate 5" + }, + "crypt_bow": { + "price": 5038, + "name": "Soulstealer Bow" + }, + "handy_blood_chalice": { + "price": 2569942, + "name": "Handy Blood Chalice" + }, + "gemstone_drill_1": { + "price": 3500000, + "name": "Ruby Drill Tx-15" + }, + "unstable_dragon_chestplate": { + "price": 250000, + "name": "Unstable Dragon Chestplate" + }, + "cactus_knife": { + "price": 850000, + "name": "Cactus Knife" + }, + "danger_3_travel_scroll": { + "price": 300000, + "name": "Travel Scroll To The End" + }, + "lvl_1_uncommon_blue_whale": { + "price": 250000, + "name": "Uncommon Blue Whale" + }, + "pristine_1": { + "price": 1369000, + "name": "Pristine 1" + }, + "golem_poppy": { + "price": 330000, + "name": "Rose" + }, + "shaman_sword": { + "price": 149000, + "name": "Shaman Sword" + }, + "glacite_chestplate": { + "price": 12000, + "name": "Glacite Chestplate" + }, + "lvl_1_epic_horse": { + "price": 100000, + "name": "Horse" + }, + "ultimate_wise_1": { + "price": 169000, + "name": "Wise 1" + }, + "bat_talisman": { + "price": 110000, + "name": "Bat Talisman" + }, + "greater_backpack": { + "price": 414000, + "name": "Greater Backpack" + }, + "greater_backpack_skin_enderpack": { + "price": 29000000, + "name": "Greater Backpack" + }, + "spider_boots": { + "price": 700000, + "name": "Spider's Boots" + }, + "power_6": { + "price": 500000, + "name": "Power 6" + }, + "bat_wand": { + "price": 15250000, + "name": "Spirit Sceptre" + }, + "farmer_boots": { + "price": 240000, + "name": "Farmer Boots" + }, + "lvl_100_rare_griffin": { + "price": 13500000, + "name": "Rare Griffin" + }, + "maxor_the_fish": { + "price": 150000, + "name": "Maxor The Fish" + }, + "shadow_assassin_boots": { + "price": 1189998, + "name": "Shadow Assassin Boots" + }, + "magma_bow": { + "price": 5490000, + "name": "Magma Bow" + }, + "respite_4": { + "price": 450000, + "name": "Respite 4" + }, + "shark_scale_chestplate": { + "price": 1000000, + "name": "Shark Scale Chestplate" + }, + "beastmaster_crest_uncommon": { + "price": 1000000, + "name": "Beastmaster Crest" + }, + "lvl_1_epic_ocelot": { + "price": 300000, + "name": "Ocelot" + }, + "zombie_lord_helmet": { + "price": 898000, + "name": "Zombie Lord Helmet" + }, + "hilt_of_true_ice": { + "price": 310000, + "name": "Hilt Of True Ice" + }, + "werewolf_boots": { + "price": 680000, + "name": "Werewolf Boots" + }, + "skeleton_grunt_chestplate": { + "price": 10000, + "name": "Skeleton Grunt Chestplate" + }, + "ender_slayer_7": { + "price": 39850420, + "name": "Ender Slayer 7" + }, + "reaper_gem": { + "price": 500000, + "name": "Reaper Gem" + }, + "lvl_100_epic_ender_dragon": { + "price": 255000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_red": { + "price": 609000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_blue": { + "price": 575000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_purple": { + "price": 572222222, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_pastel": { + "price": 554999000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_red_candy_10": { + "price": 549000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_blue_candy_10": { + "price": 540000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_neon_purple_candy_10": { + "price": 469999999, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_dragon_pastel_candy_10": { + "price": 491999998, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_ender_dragon_undead": { + "price": 375000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skin_ender_dragon_undead_candy_10": { + "price": 259000000, + "name": "Ender Dragon" + }, + "end_stone_sword": { + "price": 140000, + "name": "End Stone Sword" + }, + "lvl_1_uncommon_armadillo": { + "price": 5000, + "name": "Uncommon Armadillo" + }, + "ultimate_soul_eater_1": { + "price": 2100000, + "name": "Ultimate Soul Eater 1" + }, + "pet_item_all_skills_boost_common": { + "price": 69000, + "name": "All Skills Exp Boost" + }, + "lvl_100_legendary_silverfish": { + "price": 2799999, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_skin_silverfish": { + "price": 81000000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_skin_silverfish_fossilized": { + "price": 36900000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_skin_silverfish_candy_2": { + "price": 49899000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_skin_silverfish_fossilized_candy_10": { + "price": 18000000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_skin_silverfish_fossilized_candy_1": { + "price": 20500000, + "name": "Silverfish" + }, + "overload_5": { + "price": 17499000, + "name": "Overload 5" + }, + "turbo_wheat_1": { + "price": 44999, + "name": "Turbo Wheat 1" + }, + "armor_of_yog_leggings": { + "price": 540000, + "name": "Yog Leggings" + }, + "ghoul_buster": { + "price": 2000000, + "name": "Ghoul Buster" + }, + "wand_of_mending": { + "price": 130000, + "name": "Wand Of Mending" + }, + "bait_ring": { + "price": 21990000, + "name": "Bait Ring" + }, + "lvl_1_epic_endermite": { + "price": 845000, + "name": "Endermite" + }, + "autopet_rules_2": { + "price": 7949000, + "name": "Autopet Rules 2-pack" + }, + "heat_core": { + "price": 1150000, + "name": "Heat Core" + }, + "nether_artifact": { + "price": 42994000, + "name": "Nether Artifact" + }, + "bat_ring": { + "price": 390000, + "name": "Bat Ring" + }, + "minion_expander": { + "price": 50000, + "name": "Minion Expander" + }, + "lvl_1_legendary_blue_whale": { + "price": 17900000, + "name": "Blue Whale" + }, + "personal_compactor_6000": { + "price": 2555555, + "name": "Personal Compactor 6000" + }, + "final_destination_chestplate": { + "price": 870000, + "name": "Final Destination Chestplate" + }, + "lvl_1_epic_megalodon": { + "price": 500000, + "name": "Megalodon" + }, + "big_brain_5": { + "price": 58000000, + "name": "Big Brain 5" + }, + "giants_sword": { + "price": 194500000, + "name": "Giant's Sword" + }, + "shark_scale_leggings": { + "price": 790000, + "name": "Shark Scale Leggings" + }, + "lvl_1_uncommon_griffin": { + "price": 850000, + "name": "Uncommon Griffin" + }, + "lvl_1_rare_armadillo": { + "price": 25000, + "name": "Rare Armadillo" + }, + "wise_dragon_leggings": { + "price": 1800000, + "name": "Wise Dragon Leggings" + }, + "ender_slayer_6": { + "price": 3990000, + "name": "Ender Slayer 6" + }, + "grappling_hook": { + "price": 6000, + "name": "Grappling Hook" + }, + "triple_strike_4": { + "price": 10000, + "name": "Triple Strike 4" + }, + "reaper_boots": { + "price": 7000000, + "name": "Reaper Boots" + }, + "unstable_dragon_helmet": { + "price": 160000, + "name": "Unstable Dragon Helmet" + }, + "unstable_dragon_helmet_skin_unstable_shimmer": { + "price": 49999999, + "name": "Unstable Dragon Helmet" + }, + "unstable_dragon_helmet_skin_unstable_baby": { + "price": 530000000, + "name": "Unstable Dragon Helmet" + }, + "skeleton_soldier_boots": { + "price": 9999, + "name": "Skeleton Soldier Boots" + }, + "revived_heart": { + "price": 2499000, + "name": "Revived Heart" + }, + "crystal_helmet": { + "price": 300000, + "name": "Crystal Helmet" + }, + "flamebreaker_chestplate": { + "price": 1699000, + "name": "Ember Ash Chestplate" + }, + "armor_of_the_resistance_chestplate": { + "price": 600000, + "name": "Chestplate Of The Rising Sun" + }, + "potato_talisman": { + "price": 9000000, + "name": "Potato Talisman" + }, + "lvl_1_epic_ender_dragon": { + "price": 236789999, + "name": "Ender Dragon" + }, + "lvl_1_epic_hound": { + "price": 250000, + "name": "Hound" + }, + "jerry_talisman_green": { + "price": 799000, + "name": "Green Jerry Talisman" + }, + "personal_compactor_7000": { + "price": 4350000, + "name": "Personal Compactor 7000" + }, + "smarty_pants_1": { + "price": 380000, + "name": "Smarty Pants 1" + }, + "vicious_3": { + "price": 14500000, + "name": "Vicious 3" + }, + "pet_item_farming_skill_boost_epic": { + "price": 1499000, + "name": "Farming Exp Boost" + }, + "raider_axe": { + "price": 165000, + "name": "Raider Axe" + }, + "red_claw_egg": { + "price": 199000, + "name": "Red Claw Egg" + }, + "lvl_1_legendary_tarantula": { + "price": 1400000, + "name": "Tarantula" + }, + "tactician_sword": { + "price": 299000, + "name": "Tactician's Sword" + }, + "beacon_3": { + "price": 6290000, + "name": "Beacon Iii" + }, + "snow_suit_helmet": { + "price": 100000, + "name": "Snow Suit Helmet" + }, + "snow_suit_helmet_skin_snow_snowglobe": { + "price": 109000000, + "name": "Snow Suit Helmet" + }, + "lvl_1_common_griffin": { + "price": 34000, + "name": "Common Griffin" + }, + "farming_2_travel_scroll": { + "price": 190000, + "name": "Travel Scroll To Mushroom Island" + }, + "jumbo_backpack": { + "price": 2089999, + "name": "Jumbo Backpack" + }, + "jumbo_backpack_skin_enderpack": { + "price": 29000000, + "name": "Jumbo Backpack" + }, + "jumbo_backpack_skin_green_egg": { + "price": 35000000, + "name": "Jumbo Backpack" + }, + "jumbo_backpack_skin_purple_egg": { + "price": 35000000, + "name": "Jumbo Backpack" + }, + "jumbo_backpack_skin_blue_egg": { + "price": 27777000, + "name": "Jumbo Backpack" + }, + "skeleton_soldier_chestplate": { + "price": 10000, + "name": "Skeleton Soldier Chestplate" + }, + "lvl_1_epic_rock": { + "price": 2500000, + "name": "Rock" + }, + "precursor_eye": { + "price": 30999999, + "name": "Precursor Eye" + }, + "turbo_wheat_5": { + "price": 500000, + "name": "Turbo Wheat 5" + }, + "mithril_drill_2": { + "price": 13200000, + "name": "Mithril Drill Sx-r326" + }, + "radiant_power_orb": { + "price": 35000, + "name": "Radiant Power Orb" + }, + "crochet_tiger_plushie": { + "price": 180000, + "name": "Crochet Tiger Plushie" + }, + "hurricane_bow": { + "price": 80000, + "name": "Hurricane Bow" + }, + "tarantula_talisman": { + "price": 1777777, + "name": "Tarantula Talisman" + }, + "lvl_1_legendary_pig": { + "price": 975000, + "name": "Pig" + }, + "spirit_bone": { + "price": 680000, + "name": "Spirit Bone" + }, + "weather_node": { + "price": 43000, + "name": "Weather Node" + }, + "wolf_paw": { + "price": 1000000, + "name": "Wolf Paw" + }, + "werewolf_leggings": { + "price": 890000, + "name": "Werewolf Leggings" + }, + "ultimate_wise_5": { + "price": 3000000, + "name": "Wise 5" + }, + "explosive_bow": { + "price": 2000000, + "name": "Explosive Bow" + }, + "skeleton_master_leggings": { + "price": 5100, + "name": "Skeleton Master Leggings" + }, + "reaper_leggings": { + "price": 8199999, + "name": "Reaper Leggings" + }, + "ranchers_boots": { + "price": 2100000, + "name": "Rancher's Boots" + }, + "talisman_enrichment_magic_find": { + "price": 1700000, + "name": "Magic Find Enrichment" + }, + "tribal_spear": { + "price": 570000, + "name": "Tribal Spear" + }, + "end_helmet": { + "price": 80000, + "name": "Ender Helmet" + }, + "new_year_cake_bag": { + "price": 330000, + "name": "New Year Cake Bag" + }, + "lvl_1_common_blue_whale": { + "price": 30000, + "name": "Common Blue Whale" + }, + "old_dragon_chestplate": { + "price": 290000, + "name": "Old Dragon Chestplate" + }, + "candy_ring": { + "price": 20000, + "name": "Candy Ring" + }, + "werewolf_chestplate": { + "price": 1400000, + "name": "Werewolf Chestplate" + }, + "dark_goggles": { + "price": 75000, + "name": "Dark Goggles" + }, + "frozen_blaze_boots": { + "price": 9000000, + "name": "Frozen Blaze Boots" + }, + "ultimate_rend_1": { + "price": 450000, + "name": "Ultimate Rend 1" + }, + "lvl_100_legendary_golem": { + "price": 14900000, + "name": "Golem" + }, + "shard_of_the_shredded": { + "price": 8150000, + "name": "Shard Of The Shredded" + }, + "griffin_upgrade_stone_uncommon": { + "price": 1100000, + "name": "Griffin Upgrade Stone" + }, + "legend_rod": { + "price": 3500000, + "name": "Rod Of Legends" + }, + "fallen_star_hat": { + "price": 500000, + "name": "Fallen Star Helmet" + }, + "bat_person_talisman": { + "price": 290000, + "name": "Bat Person Talisman" + }, + "gemstone_gauntlet": { + "price": 14000000, + "name": "Gemstone Gauntlet" + }, + "gold_candy": { + "price": 899696, + "name": "Golden Treat" + }, + "lvl_1_epic_phoenix": { + "price": 4299999, + "name": "Phoenix" + }, + "gold_gift": { + "price": 120000, + "name": "Golden Gift" + }, + "flamebreaker_leggings": { + "price": 8990000, + "name": "Ember Ash Leggings" + }, + "dragon_nest_travel_scroll": { + "price": 1200000, + "name": "Travel Scroll To Dragon's Nest" + }, + "implosion_scroll": { + "price": 19999999, + "name": "Implosion Scroll" + }, + "talisman_enrichment_health": { + "price": 1850000, + "name": "Health Enrichment" + }, + "gemstone_chamber": { + "price": 12000000, + "name": "Gemstone Chamber" + }, + "super_heavy_boots": { + "price": 50000, + "name": "Super Heavy Boots" + }, + "turbo_warts_5": { + "price": 600000, + "name": "Turbo Warts 5" + }, + "xlarge_enchanted_chest": { + "price": 950000, + "name": "X-large Storage" + }, + "lvl_1_legendary_skeleton": { + "price": 1100000, + "name": "Skeleton" + }, + "armor_of_magma_boots": { + "price": 3600000, + "name": "Armor Of Magma Boots" + }, + "mining_2_travel_scroll": { + "price": 115000, + "name": "Travel Scroll To Deep Caverns" + }, + "shadow_assassin_leggings": { + "price": 4099999, + "name": "Shadow Assassin Leggings" + }, + "tuning_fork": { + "price": 500000, + "name": "Tuning Fork" + }, + "electron_transmitter": { + "price": 69999, + "name": "Electron Transmitter" + }, + "diver_fragment": { + "price": 199000, + "name": "Emperor's Skull" + }, + "pet_skin_monkey_golden": { + "price": 88700000, + "name": "Golden Monkey Skin" + }, + "fel_sword": { + "price": 190000, + "name": "Fel Sword" + }, + "lvl_1_rare_pig": { + "price": 45000, + "name": "Rare Pig" + }, + "lvl_1_epic_jellyfish": { + "price": 1500000, + "name": "Jellyfish" + }, + "wither_catalyst": { + "price": 1450000, + "name": "Wither Catalyst" + }, + "zombie_knight_chestplate": { + "price": 69000, + "name": "Zombie Knight Chestplate" + }, + "control_switch": { + "price": 89000, + "name": "Control Switch" + }, + "glacite_boots": { + "price": 35000, + "name": "Glacite Boots" + }, + "pristine_2": { + "price": 2550000, + "name": "Pristine 2" + }, + "lvl_1_uncommon_rabbit": { + "price": 10000, + "name": "Uncommon Rabbit" + }, + "superior_dragon_helmet": { + "price": 5290000, + "name": "Superior Dragon Helmet" + }, + "superior_dragon_helmet_skin_superior_shimmer": { + "price": 93999999, + "name": "Superior Dragon Helmet" + }, + "superior_dragon_helmet_skin_superior_baby": { + "price": 555555555, + "name": "Superior Dragon Helmet" + }, + "master_skull_tier_5": { + "price": 36999999, + "name": "Master Skull - Tier 5" + }, + "zombie_commander_chestplate": { + "price": 944000, + "name": "Zombie Commander Chestplate" + }, + "pet_skin_jerry_red_elf": { + "price": 325000000, + "name": "Red Elf Jerry Skin" + }, + "undead_catalyst": { + "price": 4000, + "name": "Catalyst" + }, + "titanium_drill_2": { + "price": 58999000, + "name": "Titanium Drill Dr-x455" + }, + "snow_cannon": { + "price": 8000, + "name": "Frosty The Snow Cannon" + }, + "tarantula_chestplate": { + "price": 3500000, + "name": "Tarantula Chestplate" + }, + "adaptive_leggings": { + "price": 800000, + "name": "Adaptive Leggings" + }, + "hardened_diamond_chestplate": { + "price": 23000, + "name": "Hardened Diamond Chestplate" + }, + "lvl_1_rare_monkey": { + "price": 400000, + "name": "Rare Monkey" + }, + "scylla": { + "price": 1200000000, + "name": "Scylla" + }, + "lvl_1_uncommon_lion": { + "price": 100000, + "name": "Uncommon Lion" + }, + "auto_recombobulator": { + "price": 12890000, + "name": "Auto Recombobulator" + }, + "end_leggings": { + "price": 70000, + "name": "Ender Leggings" + }, + "enderpack": { + "price": 20000000, + "name": "Enderpack Skin" + }, + "ornate_zombie_sword": { + "price": 1000000, + "name": "Ornate Zombie Sword" + }, + "perfect_boots_12": { + "price": 6500000, + "name": "Perfect Boots - Tier Xii" + }, + "candy_the_fish": { + "price": 99000, + "name": "Candy The Fish" + }, + "ember_boots": { + "price": 1100000, + "name": "Ember Boots" + }, + "great_spook_staff": { + "price": 4900000, + "name": "Great Spook Staff" + }, + "earth_shard": { + "price": 15000, + "name": "Earth Shard" + }, + "ultimate_combo_2": { + "price": 99000, + "name": "Ultimate Combo 2" + }, + "lvl_1_legendary_spirit": { + "price": 5220000, + "name": "Spirit" + }, + "lvl_1_rare_elephant": { + "price": 255000, + "name": "Rare Elephant" + }, + "adaptive_chestplate": { + "price": 4150000, + "name": "Adaptive Chestplate" + }, + "titanium_drill_4": { + "price": 248000000, + "name": "Titanium Drill Dr-x655" + }, + "speedster_boots": { + "price": 320000, + "name": "Speedster Boots" + }, + "old_dragon_boots": { + "price": 590000, + "name": "Old Dragon Boots" + }, + "park_jungle_travel_scroll": { + "price": 150000, + "name": "Travel Scroll To Jungle Island" + }, + "jungle_heart": { + "price": 185000, + "name": "Jungle Heart" + }, + "wise_wither_chestplate": { + "price": 23990000, + "name": "Storm's Chestplate" + }, + "salmon_boots": { + "price": 26000000, + "name": "Salmon Boots" + }, + "tank_miner_helmet": { + "price": 3000, + "name": "Miner Helmet" + }, + "bejeweled_handle": { + "price": 300000, + "name": "Bejeweled Handle" + }, + "pet_item_tier_boost_drop": { + "price": 94500000, + "name": "Tier Boost Core" + }, + "ender_relic": { + "price": 103000000, + "name": "Ender Relic" + }, + "starred_bonzo_staff": { + "price": 3700000, + "name": "Heroic Bonzo's Staff" + }, + "ultimate_legion_5": { + "price": 22888888, + "name": "Ultimate Legion 5" + }, + "sweet_axe": { + "price": 125, + "name": "Axe" + }, + "water_hydra_head": { + "price": 185000, + "name": "Water Hydra Head" + }, + "pet_item_farming_skill_boost_rare": { + "price": 699999, + "name": "Farming Exp Boost" + }, + "gold_bonzo_head": { + "price": 450000, + "name": "Golden Bonzo Head" + }, + "lvl_1_legendary_lion": { + "price": 21800000, + "name": "Lion" + }, + "rotten_leggings": { + "price": 5037, + "name": "Rotten Leggings" + }, + "armor_of_the_resistance_boots": { + "price": 300000, + "name": "Boots Of The Rising Sun" + }, + "shark_scale_boots": { + "price": 470000, + "name": "Shark Scale Boots" + }, + "lvl_1_uncommon_skeleton": { + "price": 65000, + "name": "Uncommon Skeleton" + }, + "zombie_heart": { + "price": 190000, + "name": "Zombie's Heart" + }, + "pet_skin_rock_smile": { + "price": 700000000, + "name": "Smiling Rock Skin" + }, + "feather_artifact": { + "price": 170000, + "name": "Feather Artifact" + }, + "emerald_armor_boots": { + "price": 900000, + "name": "Emerald Armor Boots" + }, + "lvl_100_legendary_turtle": { + "price": 39000000, + "name": "Turtle" + }, + "ember_leggings": { + "price": 2000000, + "name": "Ember Leggings" + }, + "hub_crypts_travel_scroll": { + "price": 350000, + "name": "Travel Scroll To Hub Crypts" + }, + "treasure_talisman": { + "price": 250000, + "name": "Treasure Talisman" + }, + "beacon": { + "price": 400000, + "name": "Beacon Block" + }, + "pet_skin_sheep_white": { + "price": 700000000, + "name": "White Sheep Skin" + }, + "growth_chestplate": { + "price": 600000, + "name": "Chestplate Of Growth" + }, + "lvl_1_rare_skeleton": { + "price": 50000, + "name": "Rare Skeleton" + }, + "spiders_den_top_travel_scroll": { + "price": 5000, + "name": "Travel Scroll To Spider's Den Top Of Nest" + }, + "lvl_1_epic_sheep": { + "price": 999999, + "name": "Sheep" + }, + "lvl_100_legendary_wither_skeleton": { + "price": 9300000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_wither_skeleton_skin_wither": { + "price": 87000000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_wither_skeleton_skin_wither_candy_10": { + "price": 95000000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_wither_skeleton_skin_wither_candy_1": { + "price": 63333333, + "name": "Wither Skeleton" + }, + "turbo_mushrooms_1": { + "price": 20000, + "name": "Turbo Mushrooms 1" + }, + "lvl_100_legendary_monkey": { + "price": 54000000, + "name": "Monkey" + }, + "lvl_100_legendary_monkey_skin_monkey_gorilla": { + "price": 66666666, + "name": "Monkey" + }, + "lvl_100_legendary_monkey_skin_monkey_golden": { + "price": 111111111, + "name": "Monkey" + }, + "lvl_100_legendary_monkey_skin_monkey_golden_candy_10": { + "price": 127000000, + "name": "Monkey" + }, + "lvl_100_legendary_monkey_skin_monkey_gorilla_candy_10": { + "price": 64000000, + "name": "Monkey" + }, + "gold_professor_head": { + "price": 2399999, + "name": "Golden Professor Head" + }, + "harvesting_6": { + "price": 340000, + "name": "Harvesting 6" + }, + "jungle_pickaxe": { + "price": 349999, + "name": "Jungle Pickaxe" + }, + "lvl_1_epic_lion": { + "price": 3300000, + "name": "Lion" + }, + "perfect_leggings_12": { + "price": 9999999, + "name": "Perfect Leggings - Tier Xii" + }, + "starred_shadow_fury": { + "price": 30900000, + "name": "Shadow Fury" + }, + "golem_armor_boots": { + "price": 270000, + "name": "Golem Armor Boots" + }, + "pig_mask": { + "price": 600000, + "name": "Pig Mask" + }, + "jasper_crystal": { + "price": 37700000, + "name": "Jasper Crystal" + }, + "titanium_artifact": { + "price": 6799999, + "name": "Titanium Artifact" + }, + "pocket_espresso_machine": { + "price": 490000, + "name": "Pocket Espresso Machine" + }, + "amethyst_power_scroll": { + "price": 490000, + "name": "Amethyst Power Scroll" + }, + "elegant_tuxedo_leggings": { + "price": 15000000, + "name": "Hyper Elegant Tuxedo Pants" + }, + "zombie_knight_helmet": { + "price": 70000, + "name": "Zombie Knight Helmet" + }, + "lvl_100_legendary_wolf": { + "price": 14999999, + "name": "Wolf" + }, + "lvl_100_legendary_wolf_skin_wolf": { + "price": 62000000, + "name": "Wolf" + }, + "lvl_100_legendary_wolf_skin_wolf_candy_1": { + "price": 29000000, + "name": "Wolf" + }, + "jerry_talisman_golden": { + "price": 90000000, + "name": "Golden Jerry Artifact" + }, + "mana_steal_3": { + "price": 190000, + "name": "Mana Steal 3" + }, + "salmon_chestplate_new": { + "price": 34000, + "name": "Salmon Chestplate" + }, + "beastmaster_crest_epic": { + "price": 9749990, + "name": "Beastmaster Crest" + }, + "armor_of_the_resistance_leggings": { + "price": 300000, + "name": "Leggings Of The Rising Sun" + }, + "shadow_fury": { + "price": 26999998, + "name": "Shadow Fury" + }, + "reaper_orb": { + "price": 25000000, + "name": "Reaper Orb" + }, + "block_zapper": { + "price": 1399000, + "name": "Block Zapper" + }, + "turbo_wheat_4": { + "price": 200000, + "name": "Turbo Wheat 4" + }, + "salmon_chestplate": { + "price": 21000000, + "name": "Salmon Chestplate" + }, + "forge_travel_scroll": { + "price": 189000, + "name": "Travel Scroll To The Dwarven Forge" + }, + "dungeon_lore_paper": { + "price": 3500, + "name": "Journal Entry" + }, + "blaze_helmet": { + "price": 2000000, + "name": "Blaze Helmet" + }, + "terminator": { + "price": 599499000, + "name": "Terminator" + }, + "zombie_knight_boots": { + "price": 70000, + "name": "Zombie Knight Boots" + }, + "ice_rod": { + "price": 99000, + "name": "Ice Rod" + }, + "royal_pigeon": { + "price": 10000, + "name": "Royal Pigeon" + }, + "starred_last_breath": { + "price": 9490000, + "name": "Last Breath" + }, + "skeleton_soldier_helmet": { + "price": 10000, + "name": "Skeleton Soldier Helmet" + }, + "lvl_100_epic_tiger": { + "price": 13400000, + "name": "Tiger" + }, + "lvl_100_epic_tiger_skin_tiger_saber_tooth": { + "price": 37899900, + "name": "Tiger" + }, + "lvl_100_epic_tiger_skin_tiger_golden_candy_10": { + "price": 15000000, + "name": "Tiger" + }, + "lvl_100_epic_tiger_skin_tiger_golden": { + "price": 20000000, + "name": "Tiger" + }, + "snowflake_the_fish": { + "price": 1200000, + "name": "Flake The Fish" + }, + "turbo_cane_4": { + "price": 598000, + "name": "Turbo Cane 4" + }, + "lvl_1_epic_silverfish": { + "price": 45000, + "name": "Silverfish" + }, + "souls_rebound": { + "price": 2999999, + "name": "Souls Rebound" + }, + "pet_skin_black_cat_ivory": { + "price": 25000000, + "name": "Ivory Black Cat Skin" + }, + "pet_item_exp_share_drop": { + "price": 699700, + "name": "Exp Share Core" + }, + "hyper_cleaver": { + "price": 349000, + "name": "Hyper Cleaver" + }, + "sugar_rush_2": { + "price": 699000, + "name": "Sugar Rush 2" + }, + "amber_power_scroll": { + "price": 450000, + "name": "Amber Power Scroll" + }, + "griffin_upgrade_stone_legendary": { + "price": 22000000, + "name": "Griffin Upgrade Stone" + }, + "turbo_melon_3": { + "price": 200000, + "name": "Turbo Melon 3" + }, + "lvl_100_legendary_blue_whale": { + "price": 40000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_blue_whale_skin_whale_orca": { + "price": 84000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_blue_whale_skin_whale_orca_candy_10": { + "price": 88000000, + "name": "Blue Whale" + }, + "null_edge": { + "price": 3999999, + "name": "Null Edge" + }, + "danger_2_travel_scroll": { + "price": 247000, + "name": "Travel Scroll To The Crimson Isle" + }, + "bat_firework": { + "price": 400000, + "name": "Bat Firework" + }, + "rejuvenate_1": { + "price": 35000, + "name": "Rejuvenate 1" + }, + "hyperion": { + "price": 1210000000, + "name": "Hyperion" + }, + "flycatcher_upgrade": { + "price": 16090000, + "name": "Flycatcher" + }, + "eternal_flame_ring": { + "price": 50000, + "name": "Eternal Flame Ring" + }, + "sword_of_revelations": { + "price": 8000000, + "name": "Sword Of Revelations" + }, + "old_shimmer": { + "price": 37500000, + "name": "Shimmer Skin" + }, + "pristine_3": { + "price": 4999999, + "name": "Pristine 3" + }, + "growth_6": { + "price": 3000000, + "name": "Growth 6" + }, + "skeleton_master_chestplate": { + "price": 38000, + "name": "Skeleton Master Chestplate" + }, + "vampire_mask": { + "price": 20000000, + "name": "Vampire Mask" + }, + "zombie_soldier_helmet": { + "price": 10000, + "name": "Zombie Soldier Helmet" + }, + "pet_item_combat_skill_boost_epic": { + "price": 2900000, + "name": "Combat Exp Boost" + }, + "farming_1_portal": { + "price": 30000, + "name": "Portal To The Barn" + }, + "pet_item_spooky_cupcake": { + "price": 150000, + "name": "Spooky Cupcake" + }, + "candy_relic": { + "price": 9000000, + "name": "Candy Relic" + }, + "dark_queens_soul_drop": { + "price": 100000, + "name": "Dark Queen's Soul Drop" + }, + "lvl_1_legendary_wolf": { + "price": 1500000, + "name": "Wolf" + }, + "glacite_helmet": { + "price": 39000, + "name": "Glacite Helmet" + }, + "sinful_dice": { + "price": 90000, + "name": "Sinful Dice" + }, + "sapphire_power_scroll": { + "price": 399000, + "name": "Sapphire Power Scroll" + }, + "salmon_leggings": { + "price": 19999999, + "name": "Salmon Leggings" + }, + "sil_ex": { + "price": 9995000, + "name": "Sil Ex" + }, + "diamond_professor_head": { + "price": 110000000, + "name": "Diamond Professor Head" + }, + "voidwalker_katana": { + "price": 60000, + "name": "Voidwalker Katana" + }, + "strong_dragon_boots": { + "price": 1399000, + "name": "Dragon Boots" + }, + "tank_miner_boots": { + "price": 79999, + "name": "Miner Boots" + }, + "lvl_100_epic_phoenix": { + "price": 16500000, + "name": "Phoenix" + }, + "lvl_100_epic_phoenix_skin_phoenix_ice": { + "price": 16750000, + "name": "Phoenix" + }, + "lesser_soulflow_engine": { + "price": 600000, + "name": "Lesser Soulflow Engine" + }, + "zombie_chestplate": { + "price": 1400000, + "name": "Zombie Chestplate" + }, + "frozen_blaze_leggings": { + "price": 11690000, + "name": "Frozen Blaze Leggings" + }, + "sniper_helmet": { + "price": 5100, + "name": "Sniper Helmet" + }, + "ender_bow": { + "price": 5100, + "name": "Ender Bow" + }, + "old_dragon_leggings": { + "price": 500000, + "name": "Old Dragon Leggings" + }, + "young_dragon_leggings": { + "price": 225000, + "name": "Young Dragon Leggings" + }, + "third_master_star": { + "price": 28216029, + "name": "Third Master Star" + }, + "triple_strike_5": { + "price": 40000000, + "name": "Triple Strike 5" + }, + "ultimate_wisdom_5": { + "price": 3999900, + "name": "Ultimate Wisdom 5" + }, + "mastiff_chestplate": { + "price": 750000, + "name": "Mastiff Chestplate" + }, + "beastmaster_crest_legendary": { + "price": 21550000, + "name": "Beastmaster Crest" + }, + "shrimp_the_fish": { + "price": 9000000, + "name": "Shrimp The Fish" + }, + "yeti_rod": { + "price": 900000, + "name": "Yeti Rod" + }, + "lvl_1_uncommon_rock": { + "price": 50000, + "name": "Uncommon Rock" + }, + "armor_of_magma_chestplate": { + "price": 11200000, + "name": "Armor Of Magma Chestplate" + }, + "warden_heart": { + "price": 78500000, + "name": "Warden Heart" + }, + "all_skills_super_boost": { + "price": 3000000, + "name": "All Skills Exp Super-boost" + }, + "ultimate_last_stand_2": { + "price": 325000, + "name": "Ultimate Last Stand 2" + }, + "diamond_livid_head": { + "price": 105000000, + "name": "Diamond Livid Head" + }, + "sleeping_eye": { + "price": 600000, + "name": "Sleeping Eye" + }, + "scarf_grimoire": { + "price": 10700000, + "name": "Scarf's Grimoire" + }, + "pet_item_mining_skill_boost_rare": { + "price": 585000, + "name": "Mining Exp Boost" + }, + "intimidation_artifact": { + "price": 1995000, + "name": "Intimidation Artifact" + }, + "raggedy_shark_tooth_necklace": { + "price": 11000, + "name": "Raggedy Shark Tooth Necklace" + }, + "rotten_boots": { + "price": 9000, + "name": "Rotten Boots" + }, + "lvl_1_epic_wither_skeleton": { + "price": 399000, + "name": "Wither Skeleton" + }, + "spiked_atrocity": { + "price": 33299999, + "name": "Atrocity" + }, + "scorpion_foil": { + "price": 3000000, + "name": "Thick Scorpion Foil" + }, + "lvl_1_epic_guardian": { + "price": 1900000, + "name": "Guardian" + }, + "edible_mace": { + "price": 2850000, + "name": "Edible Mace" + }, + "bonzo_staff": { + "price": 3100000, + "name": "Bonzo's Staff" + }, + "talisman_enrichment_intelligence": { + "price": 1890000, + "name": "Intelligence Enrichment" + }, + "ultimate_combo_1": { + "price": 69420, + "name": "Ultimate Combo 1" + }, + "ender_artifact": { + "price": 69000000, + "name": "Ender Artifact" + }, + "lvl_100_legendary_armadillo": { + "price": 6969420, + "name": "Armadillo" + }, + "lvl_100_legendary_armadillo_skin_armadillo_seafoam": { + "price": 32000000, + "name": "Armadillo" + }, + "lvl_100_legendary_armadillo_skin_armadillo_enchanted": { + "price": 49000000, + "name": "Armadillo" + }, + "reaper_scythe": { + "price": 13900000, + "name": "Reaper Scythe" + }, + "lvl_1_common_enderman": { + "price": 5000, + "name": "Common Enderman" + }, + "skeleton_helmet": { + "price": 800000, + "name": "Skeleton's Helmet" + }, + "protector_dragon_leggings": { + "price": 500000, + "name": "Protector Dragon Leggings" + }, + "perfect_chestplate_1": { + "price": 819200, + "name": "Chestplate - Tier I" + }, + "ultimate_swarm_5": { + "price": 12999000, + "name": "Ultimate Swarm 5" + }, + "jerry_talisman_blue": { + "price": 3890000, + "name": "Blue Jerry Talisman" + }, + "crystal_boots": { + "price": 300000, + "name": "Crystal Boots" + }, + "auger_rod": { + "price": 13999997, + "name": "Auger Rod" + }, + "the_art_of_war": { + "price": 4050717, + "name": "The Art Of War" + }, + "boots_of_the_pack": { + "price": 500000, + "name": "Boots Of The Pack" + }, + "heavy_chestplate": { + "price": 34000, + "name": "Heavy Chestplate" + }, + "pet_skin_bat_vampire": { + "price": 14300000, + "name": "Vampire Bat Skin" + }, + "mana_steal_1": { + "price": 50000, + "name": "Mana Steal 1" + }, + "great_spook_boots": { + "price": 250000, + "name": "Great Spook Boots" + }, + "diver_boots": { + "price": 800000, + "name": "Diver's Boots" + }, + "robotron_reflector": { + "price": 300000, + "name": "Robotron Reflector" + }, + "god_potion": { + "price": 4000000, + "name": "God Potion" + }, + "pet_skin_elephant_red": { + "price": 59000000, + "name": "Red Elephant Skin" + }, + "bonzo_mask": { + "price": 900000, + "name": "Bonzo's Mask" + }, + "zombie_commander_leggings": { + "price": 230000, + "name": "Zombie Commander Leggings" + }, + "axe_of_the_shredded": { + "price": 46999998, + "name": "Axe Of The Shredded" + }, + "lvl_1_legendary_elephant": { + "price": 16000000, + "name": "Elephant" + }, + "divan_alloy": { + "price": 690000000, + "name": "Divan's Alloy" + }, + "snow_suit_boots": { + "price": 198000, + "name": "Snow Suit Boots" + }, + "wise_dragon_helmet": { + "price": 980000, + "name": "Dragon Helmet" + }, + "wise_dragon_helmet_skin_wise_baby": { + "price": 399000000, + "name": "Dragon Helmet" + }, + "wise_dragon_helmet_skin_wise_shimmer": { + "price": 45000000, + "name": "Dragon Helmet" + }, + "pet_item_foraging_skill_boost_common": { + "price": 80000, + "name": "Foraging Exp Boost" + }, + "goblin_omelette": { + "price": 649000, + "name": "Goblin Omelette" + }, + "giant_killer_7": { + "price": 60000000, + "name": "Killer 7" + }, + "superior_shimmer": { + "price": 60000000, + "name": "Shimmer Skin" + }, + "personal_compactor_5000": { + "price": 1000000, + "name": "Personal Compactor 5000" + }, + "ultimate_legion_3": { + "price": 5300000, + "name": "Ultimate Legion 3" + }, + "promising_pickaxe": { + "price": 50, + "name": "Promising Pickaxe" + }, + "lvl_1_legendary_armadillo": { + "price": 1599999, + "name": "Armadillo" + }, + "lvl_1_legendary_armadillo_skin_armadillo_seafoam": { + "price": 16999999, + "name": "Armadillo" + }, + "titan_killer_7": { + "price": 4400000, + "name": "Titan Killer 7" + }, + "super_heavy_leggings": { + "price": 50000, + "name": "Super Heavy Leggings" + }, + "helmet_of_the_pack": { + "price": 650000, + "name": "Helmet Of The Pack" + }, + "snow_suit_leggings": { + "price": 49000, + "name": "Snow Suit Leggings" + }, + "big_brain_3": { + "price": 14000000, + "name": "Big Brain 3" + }, + "diver_leggings": { + "price": 3300000, + "name": "Diver's Trunks" + }, + "fancy_tuxedo_boots": { + "price": 4899000, + "name": "Fancy Tuxedo Oxfords" + }, + "venoms_touch": { + "price": 690000, + "name": "Venom's Touch" + }, + "lvl_100_legendary_ender_dragon": { + "price": 575000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_pastel": { + "price": 825000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_neon_blue": { + "price": 875000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_neon_red": { + "price": 874000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_neon_purple": { + "price": 820000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_neon_purple_candy_10": { + "price": 787000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_neon_red_candy_10": { + "price": 798000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_dragon_pastel_candy_10": { + "price": 718121200, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ender_dragon_skin_ender_dragon_undead": { + "price": 600000000, + "name": "Ender Dragon" + }, + "storm_the_fish": { + "price": 50000, + "name": "Storm The Fish" + }, + "speed_wither_helmet": { + "price": 5000000, + "name": "Maxor's Helmet" + }, + "lvl_100_legendary_elephant": { + "price": 22000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_red": { + "price": 159000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome": { + "price": 35000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_purple": { + "price": 90000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_green": { + "price": 79696969, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_pink": { + "price": 444444444, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_blue": { + "price": 380000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_orange": { + "price": 295555555, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_10": { + "price": 37900000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_green_candy_10": { + "price": 105555555, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_red_candy_10": { + "price": 125000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_pink_candy_10": { + "price": 460000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_orange_candy_10": { + "price": 500000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_1": { + "price": 28300000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_purple_candy_3": { + "price": 96999999, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_3": { + "price": 23900000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_blue_candy_10": { + "price": 190000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_blue_candy_3": { + "price": 150000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_purple_candy_10": { + "price": 60000000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_2": { + "price": 30500000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skin_elephant_monochrome_candy_5": { + "price": 35400000, + "name": "Elephant" + }, + "fish_affinity_talisman": { + "price": 80000, + "name": "Fish Affinity Talisman" + }, + "mithril_coat": { + "price": 75000, + "name": "Mithril Coat" + }, + "pet_item_fishing_skill_boost_rare": { + "price": 1200000, + "name": "Fishing Exp Boost" + }, + "reaper_sword": { + "price": 3300000, + "name": "Reaper Falchion" + }, + "tessellated_ender_pearl": { + "price": 3150000, + "name": "Tessellated Ender Pearl" + }, + "lvl_100_legendary_horse": { + "price": 29000000, + "name": "Horse" + }, + "master_skull_tier_4": { + "price": 9000000, + "name": "Master Skull - Tier 4" + }, + "lvl_1_legendary_jerry": { + "price": 975000, + "name": "Jerry" + }, + "lvl_1_legendary_jerry_skin_jerry_handsome": { + "price": 500000000, + "name": "Jerry" + }, + "horseman_candle": { + "price": 400000, + "name": "Horseman's Candle" + }, + "healing_tissue": { + "price": 89000, + "name": "Healing Tissue" + }, + "purple_egg": { + "price": 20000000, + "name": "Purple Egged Skin" + }, + "treasure_ring": { + "price": 3450000, + "name": "Treasure Ring" + }, + "rotten_helmet": { + "price": 6000, + "name": "Rotten Helmet" + }, + "farming_1_travel_scroll": { + "price": 160000, + "name": "Travel Scroll To The Barn" + }, + "haste_ring": { + "price": 89999, + "name": "Haste Ring" + }, + "unstable_shimmer": { + "price": 35000000, + "name": "Shimmer Skin" + }, + "transmission_tuner": { + "price": 368357, + "name": "Transmission Tuner" + }, + "lvl_1_epic_tarantula": { + "price": 70000, + "name": "Tarantula" + }, + "turbo_potato_2": { + "price": 170000, + "name": "Turbo Potato 2" + }, + "witch_mask": { + "price": 800000, + "name": "Witch Mask" + }, + "heavy_boots": { + "price": 13000, + "name": "Heavy Boots" + }, + "young_shimmer": { + "price": 50000000, + "name": "Shimmer Skin" + }, + "strong_dragon_helmet": { + "price": 949000, + "name": "Dragon Helmet" + }, + "strong_dragon_helmet_skin_strong_baby": { + "price": 275000000, + "name": "Dragon Helmet" + }, + "strong_dragon_helmet_skin_strong_shimmer": { + "price": 39999000, + "name": "Dragon Helmet" + }, + "zombie_commander_helmet": { + "price": 790000, + "name": "Zombie Commander Helmet" + }, + "revenant_leggings": { + "price": 400000, + "name": "Revenant Leggings" + }, + "ultimate_one_for_all_1": { + "price": 5900000, + "name": "Ultimate One For All 1" + }, + "fly_swatter": { + "price": 698000, + "name": "Fly Swatter" + }, + "growth_boots": { + "price": 425000, + "name": "Boots Of Growth" + }, + "lvl_100_mythic_enderman": { + "price": 27000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman": { + "price": 232000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer": { + "price": 45889000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_candy_10": { + "price": 145000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_10": { + "price": 50000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_2": { + "price": 47000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_1": { + "price": 47500000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_5": { + "price": 38000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_3": { + "price": 41000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_4": { + "price": 42000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_6": { + "price": 43000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_candy_5": { + "price": 125000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_8": { + "price": 39100000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_7": { + "price": 34999999, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_candy_1": { + "price": 130000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_slayer_candy_9": { + "price": 45000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_xenon": { + "price": 45000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_neon": { + "price": 46500000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_xenon_candy_5": { + "price": 39999999, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_xenon_candy_10": { + "price": 41900000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_xenon_candy_4": { + "price": 38900000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_neon_candy_1": { + "price": 35000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skin_enderman_xenon_candy_6": { + "price": 37000000, + "name": "Enderman" + }, + "golem_armor_chestplate": { + "price": 175000, + "name": "Golem Armor Chestplate" + }, + "turbo_carrot_5": { + "price": 1299999, + "name": "Turbo Carrot 5" + }, + "lvl_1_epic_turtle": { + "price": 2199999, + "name": "Turtle" + }, + "lvl_1_uncommon_magma_cube": { + "price": 149000, + "name": "Uncommon Magma Cube" + }, + "leaping_sword": { + "price": 1999000, + "name": "Leaping Sword" + }, + "skeleton_master_boots": { + "price": 9000, + "name": "Skeleton Master Boots" + }, + "turbo_potato_5": { + "price": 1935000, + "name": "Turbo Potato 5" + }, + "shiny_shard": { + "price": 150000, + "name": "Shard" + }, + "lvl_100_epic_baby_yeti": { + "price": 22500000, + "name": "Baby Yeti" + }, + "lvl_100_epic_baby_yeti_skin_yeti_grown_up": { + "price": 105000000, + "name": "Baby Yeti" + }, + "lvl_100_epic_baby_yeti_skin_yeti_grown_up_candy_10": { + "price": 69800000, + "name": "Baby Yeti" + }, + "fortune_4": { + "price": 420000, + "name": "Fortune 4" + }, + "mender_helmet": { + "price": 69000, + "name": "Mender Helmet" + }, + "dragon_hunter_1": { + "price": 1100000, + "name": "Dragon Hunter 1" + }, + "null_blade": { + "price": 34790000, + "name": "Null Blade" + }, + "voodoo_doll": { + "price": 999990, + "name": "Voodoo Doll" + }, + "goblin_helmet": { + "price": 1500, + "name": "Goblin Helmet" + }, + "lvl_1_epic_ghoul": { + "price": 30000, + "name": "Ghoul" + }, + "pigs_foot": { + "price": 40000, + "name": "Pig's Foot" + }, + "ultimate_rend_2": { + "price": 990000, + "name": "Ultimate Rend 2" + }, + "ultimate_last_stand_4": { + "price": 2000000, + "name": "Ultimate Last Stand 4" + }, + "pristine_5": { + "price": 21950000, + "name": "Pristine 5" + }, + "foraging_3_portal": { + "price": 35715, + "name": "Portal To Jungle Island" + }, + "skeleton_master_helmet": { + "price": 5037, + "name": "Skeleton Master Helmet" + }, + "lvl_1_legendary_megalodon": { + "price": 2999999, + "name": "Megalodon" + }, + "ultimate_bank_3": { + "price": 11000, + "name": "Ultimate Bank 3" + }, + "revenant_catalyst": { + "price": 8000, + "name": "Revenant Catalyst" + }, + "lvl_1_legendary_rat": { + "price": 1600000, + "name": "Rat" + }, + "lvl_100_legendary_guardian": { + "price": 5000000, + "name": "Guardian" + }, + "lvl_100_legendary_guardian_skin_guardian": { + "price": 210000000, + "name": "Guardian" + }, + "lvl_100_legendary_guardian_skin_guardian_candy_10": { + "price": 240000000, + "name": "Guardian" + }, + "lvl_100_common_sheep": { + "price": 2500000, + "name": "Common Sheep" + }, + "giant_fragment_diamond": { + "price": 1100000, + "name": "Diamante's Handle" + }, + "golem_armor_helmet": { + "price": 989000, + "name": "Golem Armor Helmet" + }, + "perfect_helmet_1": { + "price": 750000, + "name": "Helmet - Tier I" + }, + "roofed_forest_island": { + "price": 30000, + "name": "Roofed Forest Island" + }, + "seal_of_the_family": { + "price": 90000000, + "name": "Seal Of The Family" + }, + "plasmaflux_power_orb": { + "price": 270000000, + "name": "Plasmaflux Power Orb" + }, + "pet_skin_whale_orca": { + "price": 50000000, + "name": "Orca Blue Whale Skin" + }, + "pet_skin_phoenix_ice": { + "price": 8600000, + "name": "Ice Phoenix Skin" + }, + "revenant_sword": { + "price": 820000, + "name": "Revenant Falchion" + }, + "barrier": { + "price": 100000000, + "name": "Barrier" + }, + "lvl_1_epic_spider": { + "price": 219000, + "name": "Spider" + }, + "super_undead_bow": { + "price": 400000, + "name": "Undead Bow" + }, + "atomsplit_katana": { + "price": 41000000, + "name": "Atomsplit Katana" + }, + "pet_skin_tiger_saber_tooth": { + "price": 8900000, + "name": "Saber-tooth Tiger Skin" + }, + "shadow_assassin_crimson": { + "price": 11500000, + "name": "Crimson Skin" + }, + "lvl_1_legendary_spider": { + "price": 2799999, + "name": "Spider" + }, + "sponge_helmet": { + "price": 900000, + "name": "Sponge Helmet" + }, + "catacombs_expert_ring": { + "price": 40000000, + "name": "Catacombs Expert Ring" + }, + "pet_item_mining_skill_boost_common": { + "price": 100000, + "name": "Mining Exp Boost" + }, + "shadow_assassin_helmet": { + "price": 1499000, + "name": "Shadow Assassin Helmet" + }, + "pet_item_combat_skill_boost_uncommon": { + "price": 66666, + "name": "Combat Exp Boost" + }, + "lvl_100_epic_sheep": { + "price": 3997000, + "name": "Sheep" + }, + "pet_item_fishing_skill_boost_common": { + "price": 50000, + "name": "Fishing Exp Boost" + }, + "goblin_omelette_spicy": { + "price": 1400000, + "name": "Goblin Omelette" + }, + "survivor_cube": { + "price": 5000000, + "name": "Survivor Cube" + }, + "zombie_lord_boots": { + "price": 1000000, + "name": "Zombie Lord Boots" + }, + "reforge_anvil": { + "price": 1200000, + "name": "Reforge Anvil" + }, + "pet_skin_rabbit_aquamarine": { + "price": 27000000, + "name": "Aquamarine Rabbit Skin" + }, + "mineral_boots": { + "price": 120000, + "name": "Mineral Boots" + }, + "goldor_the_fish": { + "price": 50000, + "name": "Goldor The Fish" + }, + "spooky_chestplate": { + "price": 650000, + "name": "Spooky Chestplate" + }, + "ultimate_no_pain_no_gain_3": { + "price": 72599, + "name": "Ultimate No Pain No Gain 3" + }, + "infinite_quiver_10": { + "price": 93000, + "name": "Infinite Quiver 10" + }, + "spider_ring": { + "price": 80000, + "name": "Spider Ring" + }, + "fourth_master_star": { + "price": 53549108, + "name": "Fourth Master Star" + }, + "turbo_pumpkin_1": { + "price": 150000, + "name": "Turbo Pumpkin 1" + }, + "challenge_rod": { + "price": 199999, + "name": "Challenging Rod" + }, + "gemstone_fuel_tank": { + "price": 33900000, + "name": "Gemstone Fuel Tank" + }, + "rejuvenate_3": { + "price": 400000, + "name": "Rejuvenate 3" + }, + "blaze_boots": { + "price": 1899000, + "name": "Blaze Boots" + }, + "lvl_100_legendary_endermite": { + "price": 7500000, + "name": "Endermite" + }, + "lvl_100_legendary_endermite_skin_endermite_radiant": { + "price": 45900000, + "name": "Endermite" + }, + "lvl_100_legendary_endermite_skin_endermite_radiant_candy_1": { + "price": 25000000, + "name": "Endermite" + }, + "talisman_enrichment_sea_creature_chance": { + "price": 1890000, + "name": "Sea Creature Chance Enrichment" + }, + "thorns_boots": { + "price": 4179999, + "name": "Spirit Boots" + }, + "gemstone_drill_3": { + "price": 12299999, + "name": "Heated Topaz Drill Kgr-12" + }, + "salmon_leggings_new": { + "price": 34444, + "name": "Salmon Leggings" + }, + "lvl_1_legendary_pigman": { + "price": 2400000, + "name": "Pigman" + }, + "thunderlord_6": { + "price": 30000, + "name": "Thunderlord 6" + }, + "last_breath": { + "price": 7450000, + "name": "Last Breath" + }, + "turbo_potato_3": { + "price": 370000, + "name": "Turbo Potato 3" + }, + "life_steal_4": { + "price": 69000, + "name": "Life Steal 4" + }, + "lvl_1_legendary_phoenix": { + "price": 66666665, + "name": "Phoenix" + }, + "starred_adaptive_chestplate": { + "price": 4999995, + "name": "Adaptive Chestplate" + }, + "zombie_commander_whip": { + "price": 80000, + "name": "Zombie Commander Whip" + }, + "sniper_bow": { + "price": 200000, + "name": "Sniper Bow" + }, + "turbo_cane_5": { + "price": 1000000, + "name": "Turbo Cane 5" + }, + "lvl_1_rare_rock": { + "price": 500000, + "name": "Rare Rock" + }, + "jerry_talisman_purple": { + "price": 21000000, + "name": "Purple Jerry Talisman" + }, + "cubism_6": { + "price": 35800000, + "name": "Cubism 6" + }, + "hardened_diamond_boots": { + "price": 15000, + "name": "Hardened Diamond Boots" + }, + "candy_artifact": { + "price": 420000, + "name": "Candy Artifact" + }, + "lvl_100_legendary_rat": { + "price": 22888888, + "name": "Rat" + }, + "lvl_1_epic_skeleton": { + "price": 100000, + "name": "Skeleton" + }, + "lvl_1_legendary_tiger": { + "price": 18000000, + "name": "Tiger" + }, + "zog_anvil": { + "price": 700000, + "name": "Zog Anvil" + }, + "bat_person_helmet": { + "price": 950000, + "name": "Bat Person Helmet" + }, + "lvl_1_epic_pig": { + "price": 99000, + "name": "Pig" + }, + "battle_disc": { + "price": 3500, + "name": "Battle Disc" + }, + "ultimate_no_pain_no_gain_2": { + "price": 8000, + "name": "Ultimate No Pain No Gain 2" + }, + "turbo_melon_5": { + "price": 1950000, + "name": "Turbo Melon 5" + }, + "lvl_1_legendary_golem": { + "price": 2500000, + "name": "Golem" + }, + "florid_zombie_sword": { + "price": 3350000, + "name": "Florid Zombie Sword" + }, + "beacon_1": { + "price": 399999, + "name": "Beacon I" + }, + "respite_2": { + "price": 30000, + "name": "Respite 2" + }, + "hope_of_the_resistance": { + "price": 200000, + "name": "Staff Of The Rising Sun" + }, + "frozen_chicken": { + "price": 5000, + "name": "Frozen Chicken" + }, + "toil_log": { + "price": 0, + "name": "Toil Log" + }, + "gift_the_fish": { + "price": 50000, + "name": "Gift The Fish" + }, + "lvl_100_legendary_mithril_golem": { + "price": 7790000, + "name": "Mithril Golem" + }, + "perfect_boots_3": { + "price": 1233852, + "name": "Perfect Boots - Tier Iii" + }, + "perfectly_cut_fuel_tank": { + "price": 76500000, + "name": "Perfectly-cut Fuel Tank" + }, + "lvl_100_legendary_griffin": { + "price": 37000000, + "name": "Griffin" + }, + "gold_scarf_head": { + "price": 999999, + "name": "Golden Scarf Head" + }, + "lvl_1_uncommon_wolf": { + "price": 28000, + "name": "Uncommon Wolf" + }, + "turbo_cactus_3": { + "price": 400000, + "name": "Turbo Cactus 3" + }, + "lvl_100_legendary_ammonite": { + "price": 13000000, + "name": "Ammonite" + }, + "lvl_1_legendary_squid": { + "price": 9499994, + "name": "Squid" + }, + "ultimate_combo_5": { + "price": 850000, + "name": "Ultimate Combo 5" + }, + "holy_dragon_helmet": { + "price": 150000, + "name": "Holy Dragon Helmet" + }, + "holy_dragon_helmet_skin_holy_baby": { + "price": 299000000, + "name": "Holy Dragon Helmet" + }, + "holy_dragon_helmet_skin_holy_shimmer": { + "price": 69696969, + "name": "Holy Dragon Helmet" + }, + "turbo_wheat_2": { + "price": 46000, + "name": "Turbo Wheat 2" + }, + "life_steal_5": { + "price": 14000000, + "name": "Life Steal 5" + }, + "pet_skin_sheep_neon_yellow": { + "price": 100000000, + "name": "Neon Yellow Sheep Skin" + }, + "ultimate_wisdom_2": { + "price": 299000, + "name": "Ultimate Wisdom 2" + }, + "island_npc": { + "price": 80000, + "name": "Island Npc" + }, + "master_skull_tier_2": { + "price": 900000, + "name": "Master Skull - Tier 2" + }, + "gold_necron_head": { + "price": 25900000, + "name": "Golden Necron Head" + }, + "diamond_sadan_head": { + "price": 167900000, + "name": "Diamond Sadan Head" + }, + "devour_ring": { + "price": 1760000, + "name": "Devour Ring" + }, + "pet_skin_elephant_green": { + "price": 59000000, + "name": "Green Elephant Skin" + }, + "pet_item_combat_skill_boost_rare": { + "price": 400000, + "name": "Combat Exp Boost" + }, + "soulflow_battery": { + "price": 2000000, + "name": "Soulflow Battery" + }, + "pet_skin_dragon_neon_blue": { + "price": 39999999, + "name": "Neon Blue Ender Dragon Skin" + }, + "death_bow": { + "price": 6700000, + "name": "Death Bow" + }, + "pet_item_quick_claw": { + "price": 108000000, + "name": "Quick Claw" + }, + "magical_milk_bucket": { + "price": 90000, + "name": "Magical Milk Bucket" + }, + "ultimate_wise_3": { + "price": 690000, + "name": "Wise 3" + }, + "cheap_tuxedo_boots": { + "price": 400000, + "name": "Cheap Tuxedo Oxfords" + }, + "plasma_nucleus": { + "price": 224998000, + "name": "Plasma Nucleus" + }, + "chest": { + "price": 10, + "name": "Chest" + }, + "pet_skin_silverfish": { + "price": 180000000, + "name": "Fortified Silverfish Skin" + }, + "pet_skin_dragon_neon_red": { + "price": 47800000, + "name": "Neon Red Ender Dragon Skin" + }, + "lvl_1_legendary_mithril_golem": { + "price": 1200000, + "name": "Mithril Golem" + }, + "vicious_5": { + "price": 45400000, + "name": "Vicious 5" + }, + "lvl_1_rare_horse": { + "price": 200000, + "name": "Rare Horse" + }, + "perfect_boots_2": { + "price": 819200, + "name": "Boots - Tier Ii" + }, + "adaptive_helmet": { + "price": 2150000, + "name": "Adaptive Helmet" + }, + "lvl_100_legendary_parrot": { + "price": 21000000, + "name": "Parrot" + }, + "lvl_100_legendary_parrot_skin_parrot_gold_macaw": { + "price": 69420420, + "name": "Parrot" + }, + "syphon_5": { + "price": 61000000, + "name": "Syphon 5" + }, + "lethality_6": { + "price": 95000, + "name": "Lethality 6" + }, + "mineral_leggings": { + "price": 300000, + "name": "Mineral Leggings" + }, + "pet_item_tier_boost": { + "price": 89000000, + "name": "Tier Boost" + }, + "ultimate_bank_4": { + "price": 30000, + "name": "Ultimate Bank 4" + }, + "egg_the_fish": { + "price": 4300000, + "name": "Egg The Fish" + }, + "master_skull_tier_1": { + "price": 600000, + "name": "Master Skull - Tier 1" + }, + "goblin_omelette_sunny_side": { + "price": 12500000, + "name": "Sunny Side Goblin Omelette" + }, + "lvl_1_uncommon_jerry": { + "price": 5000, + "name": "Uncommon Jerry" + }, + "lvl_1_uncommon_guardian": { + "price": 300000, + "name": "Uncommon Guardian" + }, + "ultimate_last_stand_5": { + "price": 3900000, + "name": "Ultimate Last Stand 5" + }, + "zombie_soldier_leggings": { + "price": 28000, + "name": "Zombie Soldier Leggings" + }, + "dungeon_wizard_crystal": { + "price": 50000000, + "name": "Wizard's Crystal" + }, + "pet_skin_black_cat_onyx": { + "price": 17399999, + "name": "Onyx Black Cat Skin" + }, + "silk_edge_sword": { + "price": 4990000, + "name": "Silk-edge Sword" + }, + "lucky_hoof": { + "price": 750000, + "name": "Hoof" + }, + "turbo_coco_5": { + "price": 1500000, + "name": "Turbo Coco 5" + }, + "goblin_leggings": { + "price": 3000, + "name": "Goblin Leggings" + }, + "zombie_leggings": { + "price": 185000, + "name": "Zombie Leggings" + }, + "lvl_1_legendary_chicken": { + "price": 950000, + "name": "Chicken" + }, + "lvl_1_legendary_chicken_skin_chicken_baby_chick": { + "price": 31000000, + "name": "Chicken" + }, + "pet_skin_dragon_neon_purple": { + "price": 41999990, + "name": "Neon Purple Ender Dragon Skin" + }, + "exceedingly_rare_ender_artifact_upgrader": { + "price": 33900000, + "name": "Exceedingly Rare Ender Artifact Upgrader" + }, + "lvl_100_epic_jellyfish": { + "price": 6420696, + "name": "Jellyfish" + }, + "critical_7": { + "price": 59000000, + "name": "Critical 7" + }, + "weak_wolf_catalyst": { + "price": 30000, + "name": "Weak Wolf Catalyst" + }, + "lvl_100_rare_scatha": { + "price": 58500000, + "name": "Rare Scatha" + }, + "crystallized_heart": { + "price": 650000, + "name": "Crystallized Heart" + }, + "candy_talisman": { + "price": 59999, + "name": "Candy Talisman" + }, + "feather_falling_10": { + "price": 100000, + "name": "Feather Falling 10" + }, + "rejuvenate_2": { + "price": 100000, + "name": "Rejuvenate 2" + }, + "lvl_100_epic_scatha": { + "price": 134000000, + "name": "Scatha" + }, + "perfect_forge": { + "price": 79000000, + "name": "Skin" + }, + "ultimate_combo_4": { + "price": 580000, + "name": "Ultimate Combo 4" + }, + "ink_wand": { + "price": 5990000, + "name": "Ink Wand" + }, + "pet_item_toy_jerry": { + "price": 150000, + "name": "Jerry 3d Glasses" + }, + "mana_flux_power_orb": { + "price": 2500000, + "name": "Mana Flux Power Orb" + }, + "turbo_warts_4": { + "price": 150000, + "name": "Turbo Warts 4" + }, + "ultimate_legion_2": { + "price": 2530000, + "name": "Ultimate Legion 2" + }, + "mithril_plate": { + "price": 4400000, + "name": "Mithril Plate" + }, + "danger_2_portal": { + "price": 149999, + "name": "Portal To The Crimson Isle" + }, + "skeleton_lord_chestplate": { + "price": 1300000, + "name": "Skeleton Lord Chestplate" + }, + "elegant_tuxedo_chestplate": { + "price": 28900000, + "name": "Elegant Tuxedo Jacket" + }, + "turbo_cane_1": { + "price": 78000, + "name": "Turbo Cane 1" + }, + "smarty_pants_2": { + "price": 1100000, + "name": "Smarty Pants 2" + }, + "lvl_1_epic_flying_fish": { + "price": 480000, + "name": "Flying Fish" + }, + "titanium_drill_engine": { + "price": 49900000, + "name": "Titanium-plated Drill Engine" + }, + "lvl_1_legendary_ocelot": { + "price": 1900000, + "name": "Ocelot" + }, + "lvl_1_legendary_ocelot_skin_ocelot_snow_tiger": { + "price": 16000000, + "name": "Ocelot" + }, + "winter_rod": { + "price": 50000, + "name": "Winter Rod" + }, + "lvl_100_rare_guardian": { + "price": 1000000, + "name": "Rare Guardian" + }, + "flamebreaker_boots": { + "price": 4990000, + "name": "Ember Ash Boots" + }, + "shady_ring": { + "price": 16250000, + "name": "Shady Ring" + }, + "beacon_2": { + "price": 1900000, + "name": "Beacon Ii" + }, + "lvl_1_rare_sheep": { + "price": 555000, + "name": "Rare Sheep" + }, + "talisman_enrichment_critical_damage": { + "price": 1849000, + "name": "Critical Damage Enrichment" + }, + "zombie_commander_boots": { + "price": 499000, + "name": "Zombie Commander Boots" + }, + "refined_titanium_pickaxe": { + "price": 1000000, + "name": "Titanium Pickaxe" + }, + "recall_potion": { + "price": 360000, + "name": "Recall Potion" + }, + "pet_item_fishing_skill_boost_uncommon": { + "price": 37000, + "name": "Fishing Exp Boost" + }, + "mining_1_travel_scroll": { + "price": 285000, + "name": "Travel Scroll To The Gold Mine" + }, + "pet_item_combat_skill_boost_common": { + "price": 70000, + "name": "Combat Exp Boost" + }, + "turbo_melon_1": { + "price": 68000, + "name": "Turbo Melon 1" + }, + "purple_small_backpack": { + "price": 6000000, + "name": "Small Backpack" + }, + "spooky_leggings": { + "price": 1200000, + "name": "Spooky Leggings" + }, + "judgement_core": { + "price": 394777777, + "name": "Judgement Core" + }, + "skeletor_leggings": { + "price": 10500, + "name": "Skeletor Leggings" + }, + "lvl_100_rare_dolphin": { + "price": 2600000, + "name": "Rare Dolphin" + }, + "lvl_100_rare_dolphin_skin_dolphin_snubfin": { + "price": 6900000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_rock": { + "price": 20000000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_cool": { + "price": 450000000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_laugh": { + "price": 899999000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_smile": { + "price": 650000000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_thinking": { + "price": 844000000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_embarrassed": { + "price": 720000000, + "name": "Rock" + }, + "lvl_100_legendary_rock_skin_rock_derp": { + "price": 888000000, + "name": "Rock" + }, + "great_carrot_candy": { + "price": 148000, + "name": "Great Carrot Candy" + }, + "lvl_1_legendary_sheep": { + "price": 3750000, + "name": "Sheep" + }, + "crystal_chestplate": { + "price": 600000, + "name": "Crystal Chestplate" + }, + "magma_core": { + "price": 2200000, + "name": "Magma Core" + }, + "sharpness_7": { + "price": 47299999, + "name": "Sharpness 7" + }, + "lvl_1_legendary_wither_skeleton": { + "price": 2500000, + "name": "Wither Skeleton" + }, + "sponge_boots": { + "price": 375000, + "name": "Spongy Shoes" + }, + "true_essence": { + "price": 80000, + "name": "True Essence" + }, + "lvl_1_epic_bal": { + "price": 6399999, + "name": "Bal" + }, + "mining_3_travel_scroll": { + "price": 10000, + "name": "Travel Scroll To Dwarven Mines" + }, + "diamond_necron_head": { + "price": 179800000, + "name": "Diamond Necron Head" + }, + "bat_person_boots": { + "price": 700000, + "name": "Bat Person Boots" + }, + "skeletor_boots": { + "price": 20000, + "name": "Skeletor Boots" + }, + "lvl_100_legendary_blaze": { + "price": 50000000, + "name": "Blaze" + }, + "lvl_100_legendary_blaze_skin_blaze_frozen": { + "price": 130000000, + "name": "Blaze" + }, + "lvl_100_legendary_blaze_skin_blaze_frozen_candy_10": { + "price": 81949999, + "name": "Blaze" + }, + "pet_item_lucky_clover": { + "price": 4989000, + "name": "Clover" + }, + "fancy_tuxedo_chestplate": { + "price": 15000000, + "name": "Fancy Tuxedo Jacket" + }, + "shiny_rod": { + "price": 500000, + "name": "Rod" + }, + "dull_shark_tooth_necklace": { + "price": 30000, + "name": "Dull Shark Tooth Necklace" + }, + "spider_artifact": { + "price": 5333222, + "name": "Spider Artifact" + }, + "diver_helmet": { + "price": 1499999, + "name": "Diver's Mask" + }, + "diver_helmet_skin_diver_puffer": { + "price": 30000000, + "name": "Diver's Mask" + }, + "double_plant": { + "price": 3, + "name": "Sunflower" + }, + "goblin_omelette_pesto": { + "price": 5000000, + "name": "Pesto Goblin Omelette" + }, + "crooked_artifact": { + "price": 38000000, + "name": "Crooked Artifact" + }, + "lvl_1_uncommon_squid": { + "price": 200000, + "name": "Uncommon Squid" + }, + "snow_suit_chestplate": { + "price": 20000, + "name": "Snow Suit Chestplate" + }, + "starlight_wand": { + "price": 60000, + "name": "Wand" + }, + "mithril_fuel_tank": { + "price": 14500000, + "name": "Mithril-infused Fuel Tank" + }, + "turbo_pumpkin_4": { + "price": 1800000, + "name": "Turbo Pumpkin 4" + }, + "lvl_1_rare_blue_whale": { + "price": 90000, + "name": "Rare Blue Whale" + }, + "shadow_assassin_chestplate": { + "price": 19000000, + "name": "Shadow Assassin Chestplate" + }, + "turbo_potato_4": { + "price": 999000, + "name": "Turbo Potato 4" + }, + "titanium_fuel_tank": { + "price": 18900000, + "name": "Titanium-infused Fuel Tank" + }, + "diver_chestplate": { + "price": 1999999, + "name": "Diver's Shirt" + }, + "ultimate_no_pain_no_gain_1": { + "price": 4000, + "name": "Ultimate No Pain No Gain 1" + }, + "lvl_100_legendary_ocelot": { + "price": 17100000, + "name": "Ocelot" + }, + "lvl_100_legendary_ocelot_skin_ocelot_snow_tiger": { + "price": 58000000, + "name": "Ocelot" + }, + "lvl_100_legendary_ocelot_skin_ocelot_snow_tiger_candy_10": { + "price": 25500000, + "name": "Ocelot" + }, + "lvl_100_legendary_skeleton_horse": { + "price": 23000000, + "name": "Skeleton Horse" + }, + "lvl_100_legendary_skeleton_horse_skin_horse_zombie": { + "price": 70000000, + "name": "Skeleton Horse" + }, + "mana_steal_2": { + "price": 99000, + "name": "Mana Steal 2" + }, + "zombie_lord_chestplate": { + "price": 900000, + "name": "Zombie Lord Chestplate" + }, + "slime_bow": { + "price": 6100000, + "name": "Slime Bow" + }, + "lvl_100_legendary_chicken": { + "price": 12239900, + "name": "Chicken" + }, + "lvl_100_legendary_chicken_skin_chicken_baby_chick": { + "price": 74990000, + "name": "Chicken" + }, + "pet_skin_horse_zombie": { + "price": 25999998, + "name": "Zombie Skeleton Horse Skin" + }, + "armor_of_yog_boots": { + "price": 315000, + "name": "Yog Boots" + }, + "turbo_cane_3": { + "price": 285000, + "name": "Turbo Cane 3" + }, + "lvl_1_epic_monkey": { + "price": 1500000, + "name": "Monkey" + }, + "speedster_helmet": { + "price": 399000, + "name": "Speedster Helmet" + }, + "luck_7": { + "price": 27499999, + "name": "Luck 7" + }, + "trick_or_treat_bag": { + "price": 89000, + "name": "Trick Or Treat Bag" + }, + "wand_of_atonement": { + "price": 3790000, + "name": "Wand Of Atonement" + }, + "lvl_100_legendary_lion": { + "price": 70000000, + "name": "Lion" + }, + "lvl_100_legendary_spirit": { + "price": 34000000, + "name": "Spirit" + }, + "holy_baby": { + "price": 130000000, + "name": "Baby Skin" + }, + "perfect_chestplate_3": { + "price": 2900000, + "name": "Chestplate - Tier Iii" + }, + "lvl_100_epic_bat": { + "price": 4500000, + "name": "Bat" + }, + "lvl_100_epic_guardian": { + "price": 2800000, + "name": "Guardian" + }, + "first_master_star": { + "price": 8722224, + "name": "First Master Star" + }, + "lvl_1_legendary_baby_yeti": { + "price": 27200000, + "name": "Baby Yeti" + }, + "lvl_1_legendary_endermite": { + "price": 1790000, + "name": "Endermite" + }, + "revenant_boots": { + "price": 300000, + "name": "Revenant Boots" + }, + "ultimate_wisdom_1": { + "price": 168000, + "name": "Ultimate Wisdom 1" + }, + "lvl_1_legendary_ghoul": { + "price": 660000, + "name": "Ghoul" + }, + "sinseeker_scythe": { + "price": 10000000, + "name": "Sinseeker Scythe" + }, + "lvl_1_legendary_magma_cube": { + "price": 4340000, + "name": "Magma Cube" + }, + "bat_person_leggings": { + "price": 3000000, + "name": "Bat Person Leggings" + }, + "ember_fragment": { + "price": 199000, + "name": "Ember Fragment" + }, + "turbo_melon_2": { + "price": 175000, + "name": "Turbo Melon 2" + }, + "gyrokinetic_wand": { + "price": 32400000, + "name": "Gyrokinetic Wand" + }, + "metal_chestplate": { + "price": 330000, + "name": "Metal Chestplate" + }, + "fungi_cutter": { + "price": 1500000, + "name": "Fungi Cutter" + }, + "compact_1": { + "price": 1500000, + "name": "Compact 1" + }, + "lvl_1_legendary_hound": { + "price": 1999999, + "name": "Hound" + }, + "lvl_1_legendary_hound_skin_hound_beagle": { + "price": 13000000, + "name": "Hound" + }, + "lvl_1_epic_bat": { + "price": 140000, + "name": "Bat" + }, + "pet_item_farming_skill_boost_common": { + "price": 79000, + "name": "Farming Exp Boost" + }, + "colossal_exp_bottle_upgrade": { + "price": 299999, + "name": "Colossal Experience Bottle Upgrade" + }, + "turbo_cane_2": { + "price": 140000, + "name": "Turbo Cane 2" + }, + "turbo_cactus_1": { + "price": 75000, + "name": "Turbo Cactus 1" + }, + "ultimate_chimera_1": { + "price": 99000000, + "name": "Ultimate Chimera 1" + }, + "lvl_1_epic_squid": { + "price": 1450000, + "name": "Squid" + }, + "red_claw_ring": { + "price": 888888, + "name": "Red Claw Ring" + }, + "mastiff_helmet": { + "price": 710000, + "name": "Crown" + }, + "mastiff_helmet_skin_mastiff_puppy": { + "price": 65000000, + "name": "Crown" + }, + "execute_6": { + "price": 19350000, + "name": "Execute 6" + }, + "turbo_pumpkin_5": { + "price": 3000000, + "name": "Turbo Pumpkin 5" + }, + "speedster_chestplate": { + "price": 449000, + "name": "Speedster Chestplate" + }, + "void_sepulture_travel_scroll": { + "price": 1800000, + "name": "Travel Scroll To The Void Sepulture" + }, + "lvl_1_epic_jerry": { + "price": 90000, + "name": "Jerry" + }, + "lvl_1_common_horse": { + "price": 150000, + "name": "Common Horse" + }, + "pet_item_lucky_clover_drop": { + "price": 4000000, + "name": "Clover Core" + }, + "speed_ring": { + "price": 58000, + "name": "Speed Ring" + }, + "krampus_helmet": { + "price": 4200000, + "name": "Krampus Helmet" + }, + "hegemony_artifact": { + "price": 340000000, + "name": "Hegemony Artifact" + }, + "lvl_1_legendary_jellyfish": { + "price": 16900000, + "name": "Jellyfish" + }, + "gloomlock_grimoire": { + "price": 3999998, + "name": "Gloomlock Grimoire" + }, + "farming_island": { + "price": 25000, + "name": "Farming Island" + }, + "venomous_6": { + "price": 22000000, + "name": "Venomous 6" + }, + "great_spook_helmet": { + "price": 1500000, + "name": "Great Spook Helmet" + }, + "pet_skin_elephant_pink": { + "price": 350000000, + "name": "Pink Elephant Skin" + }, + "ultimate_jerry_4": { + "price": 399000, + "name": "Ultimate Jerry 4" + }, + "amber_polished_drill_engine": { + "price": 118000000, + "name": "Amber-polished Drill Engine" + }, + "mastiff_puppy": { + "price": 69000000, + "name": "Puppy Skin" + }, + "power_7": { + "price": 64900000, + "name": "Power 7" + }, + "spider_queens_stinger": { + "price": 699000, + "name": "Spider Queen's Stinger" + }, + "perfect_helmet_12": { + "price": 10749999, + "name": "Perfect Helmet - Tier Xii" + }, + "perfect_helmet_12_skin_perfect_forge": { + "price": 90000000, + "name": "Perfect Helmet - Tier Xii" + }, + "turbo_carrot_1": { + "price": 69998, + "name": "Turbo Carrot 1" + }, + "sponge_chestplate": { + "price": 900000, + "name": "Sponge Chestplate" + }, + "lvl_1_legendary_rock": { + "price": 10000000, + "name": "Rock" + }, + "refined_mithril_pickaxe": { + "price": 1799990, + "name": "Mithril Pickaxe" + }, + "emerald_armor_helmet": { + "price": 1500000, + "name": "Emerald Armor Helmet" + }, + "spooky_boots": { + "price": 800000, + "name": "Spooky Boots" + }, + "gold_thorn_head": { + "price": 3950000, + "name": "Golden Thorn Head" + }, + "park_cave_travel_scroll": { + "price": 16000, + "name": "Travel Scroll To Howling Cave" + }, + "pet_item_fishing_skill_boost_epic": { + "price": 5290000, + "name": "Fishing Exp Boost" + }, + "lvl_1_legendary_ender_dragon": { + "price": 524999999, + "name": "Ender Dragon" + }, + "blue_egg": { + "price": 9999999, + "name": "Blue Egged Skin" + }, + "lvl_1_legendary_blaze": { + "price": 32999999, + "name": "Blaze" + }, + "sharp_shark_tooth_necklace": { + "price": 350000, + "name": "Shark Tooth Necklace" + }, + "lvl_100_rare_armadillo": { + "price": 999000, + "name": "Rare Armadillo" + }, + "talisman_enrichment_strength": { + "price": 1890000, + "name": "Strength Enrichment" + }, + "armor_of_magma_leggings": { + "price": 2500000, + "name": "Armor Of Magma Leggings" + }, + "ultimate_carrot_candy_upgrade": { + "price": 2499999, + "name": "Ultimate Carrot Candy Upgrade" + }, + "crystal_hollows_travel_scroll": { + "price": 2300000, + "name": "Travel Scroll To The Crystal Hollows" + }, + "lvl_1_epic_rabbit": { + "price": 110000, + "name": "Rabbit" + }, + "lvl_100_epic_dolphin": { + "price": 8500000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubfin": { + "price": 39000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubnose_purple": { + "price": 20000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubnose_green": { + "price": 18000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubfin_candy_10": { + "price": 10000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubnose_red_candy_10": { + "price": 14000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skin_dolphin_snubnose_red": { + "price": 15000000, + "name": "Dolphin" + }, + "ultimate_wise_2": { + "price": 290000, + "name": "Wise 2" + }, + "ultimate_jerry_2": { + "price": 25000, + "name": "Ultimate Jerry 2" + }, + "ghost_boots": { + "price": 270000, + "name": "Ghostly Boots" + }, + "bane_of_arthropods_6": { + "price": 3990, + "name": "Bane Of Arthropods 6" + }, + "super_cleaver": { + "price": 575000, + "name": "Super Cleaver" + }, + "lvl_1_epic_baby_yeti": { + "price": 10500000, + "name": "Baby Yeti" + }, + "growth_leggings": { + "price": 450000, + "name": "Leggings Of Growth" + }, + "strong_shimmer": { + "price": 27500000, + "name": "Shimmer Skin" + }, + "bane_of_arthropods_4": { + "price": 1000, + "name": "Bane Of Arthropods 4" + }, + "lvl_1_uncommon_bat": { + "price": 125000, + "name": "Uncommon Bat" + }, + "lvl_100_legendary_squid": { + "price": 15000000, + "name": "Squid" + }, + "lvl_100_legendary_squid_skin_squid_glow": { + "price": 55000000, + "name": "Squid" + }, + "lvl_100_legendary_squid_skin_squid_glow_candy_10": { + "price": 42000000, + "name": "Squid" + }, + "ultimate_wisdom_3": { + "price": 740000, + "name": "Ultimate Wisdom 3" + }, + "pond_island": { + "price": 42000, + "name": "Pond Island" + }, + "beheaded_horror": { + "price": 40000, + "name": "Beheaded Horror" + }, + "pet_skin_elephant_purple": { + "price": 60000000, + "name": "Purple Elephant Skin" + }, + "lvl_1_rare_flying_fish": { + "price": 139000, + "name": "Rare Flying Fish" + }, + "spooky_helmet": { + "price": 700000, + "name": "Spooky Helmet" + }, + "salmon_helmet": { + "price": 30000000, + "name": "Salmon Helmet" + }, + "ruby_polished_drill_engine": { + "price": 23500000, + "name": "Ruby-polished Drill Engine" + }, + "lvl_1_legendary_dolphin": { + "price": 11000000, + "name": "Dolphin" + }, + "lvl_1_legendary_dolphin_skin_dolphin_snubfin": { + "price": 23899000, + "name": "Dolphin" + }, + "golem_armor_leggings": { + "price": 185000, + "name": "Golem Armor Leggings" + }, + "dust_the_fish": { + "price": 1480000, + "name": "Dust The Fish" + }, + "perfect_chestplate_8": { + "price": 6000000, + "name": "Perfect Chestplate - Tier Viii" + }, + "turbo_warts_1": { + "price": 45000, + "name": "Turbo Warts 1" + }, + "turbo_carrot_4": { + "price": 750000, + "name": "Turbo Carrot 4" + }, + "weird_tuba": { + "price": 2399900, + "name": "Weird Tuba" + }, + "lapis_armor_chestplate": { + "price": 5000, + "name": "Lapis Armor Chestplate" + }, + "starred_stone_blade": { + "price": 1799999, + "name": "Heroic Adaptive Blade" + }, + "lvl_100_legendary_bee": { + "price": 22000000, + "name": "Bee" + }, + "lvl_100_legendary_ghoul": { + "price": 28500000, + "name": "Ghoul" + }, + "soulflow_engine": { + "price": 13000000, + "name": "Soulflow Engine" + }, + "talisman_enrichment_ferocity": { + "price": 1869000, + "name": "Ferocity Enrichment" + }, + "infinite_superboom_tnt": { + "price": 35000000, + "name": "Infinityboom Tnt" + }, + "perfect_boots_5": { + "price": 4300000, + "name": "Boots - Tier V" + }, + "pet_skin_endermite_radiant": { + "price": 20000000, + "name": "Radiant Endermite Skin" + }, + "spirit_wing": { + "price": 4500000, + "name": "Spirit Wing" + }, + "cheap_tuxedo_chestplate": { + "price": 2000000, + "name": "Cheap Tuxedo Jacket" + }, + "etherwarp_conduit": { + "price": 14000000, + "name": "Etherwarp Conduit" + }, + "perfect_boots_8": { + "price": 4000000, + "name": "Perfect Boots - Tier Viii" + }, + "foraging_1_portal": { + "price": 35163, + "name": "Portal To Birch Park" + }, + "bane_of_arthropods_7": { + "price": 1489999, + "name": "Bane Of Arthropods 7" + }, + "enchanted_book_bundle_big_brain": { + "price": 72000000, + "name": "Enchanted Book Bundle" + }, + "lvl_1_epic_dolphin": { + "price": 2500000, + "name": "Dolphin" + }, + "potato_spreading": { + "price": 39000, + "name": "Potato Spreading" + }, + "dragon_hunter_3": { + "price": 4899990, + "name": "Dragon Hunter 3" + }, + "pet_skin_jerry_green_elf": { + "price": 150000000, + "name": "Green Elf Jerry Skin" + }, + "undead_bow": { + "price": 90000, + "name": "Bow" + }, + "pet_skin_sheep_neon_green": { + "price": 111000000, + "name": "Neon Green Sheep Skin" + }, + "overload_2": { + "price": 2800000, + "name": "Overload 2" + }, + "necron_handle": { + "price": 1080000000, + "name": "Necron's Handle" + }, + "lvl_1_common_lion": { + "price": 85000, + "name": "Common Lion" + }, + "lvl_100_legendary_phoenix": { + "price": 99000000, + "name": "Phoenix" + }, + "lvl_100_legendary_phoenix_skin_phoenix_ice": { + "price": 130000000, + "name": "Phoenix" + }, + "yeti_sword": { + "price": 58899994, + "name": "Yeti Sword" + }, + "starred_adaptive_helmet": { + "price": 2500000, + "name": "Fierce Adaptive Helmet" + }, + "protection_6": { + "price": 2999999, + "name": "Protection 6" + }, + "beacon_5": { + "price": 30000000, + "name": "Beacon V" + }, + "pet_skin_wither": { + "price": 150000000, + "name": "Dark Wither Skeleton Skin" + }, + "social_display": { + "price": 300000, + "name": "Social Display" + }, + "soulflow_supercell": { + "price": 43800000, + "name": "Soulflow Supercell" + }, + "lvl_1_epic_armadillo": { + "price": 300000, + "name": "Armadillo" + }, + "perfect_chestplate_10": { + "price": 6000000, + "name": "Perfect Chestplate - Tier X" + }, + "razor_sharp_shark_tooth_necklace": { + "price": 4440000, + "name": "Shark Tooth Necklace" + }, + "lvl_1_uncommon_enderman": { + "price": 30000, + "name": "Uncommon Enderman" + }, + "ultimate_soul_eater_4": { + "price": 18000000, + "name": "Ultimate Soul Eater 4" + }, + "experiment_the_fish": { + "price": 90000, + "name": "Experiment The Fish" + }, + "wolf_ring": { + "price": 1660000, + "name": "Wolf Ring" + }, + "ultimate_combo_3": { + "price": 100000, + "name": "Ultimate Combo 3" + }, + "lvl_1_legendary_monkey": { + "price": 19999999, + "name": "Monkey" + }, + "revenant_chestplate": { + "price": 1595000, + "name": "Revenant Chestplate" + }, + "growth_7": { + "price": 89999999, + "name": "Growth 7" + }, + "lvl_100_uncommon_griffin": { + "price": 3000000, + "name": "Uncommon Griffin" + }, + "lvl_1_rare_magma_cube": { + "price": 199000, + "name": "Rare Magma Cube" + }, + "lvl_1_common_squid": { + "price": 124000, + "name": "Common Squid" + }, + "echolocator": { + "price": 60000, + "name": "Echolocator" + }, + "perfect_boots_1": { + "price": 600000, + "name": "Boots - Tier I" + }, + "jasper_power_scroll": { + "price": 1000000, + "name": "Jasper Power Scroll" + }, + "recluse_fang": { + "price": 325000, + "name": "Recluse Fang" + }, + "perfect_leggings_2": { + "price": 2000000, + "name": "Perfect Leggings - Tier Ii" + }, + "ultimate_no_pain_no_gain_4": { + "price": 98000, + "name": "Ultimate No Pain No Gain 4" + }, + "lvl_100_legendary_tarantula": { + "price": 34900000, + "name": "Tarantula" + }, + "frozen_blaze_icicle": { + "price": 72000000, + "name": "Icicle Skin" + }, + "french_bread": { + "price": 19000000, + "name": "French Bread" + }, + "gold_claws": { + "price": 4500000, + "name": "Gold Claws" + }, + "zombie_artifact": { + "price": 2222222, + "name": "Zombie Artifact" + }, + "snipe_4": { + "price": 81111111, + "name": "Snipe 4" + }, + "lvl_100_epic_griffin": { + "price": 18000000, + "name": "Griffin" + }, + "lvl_100_legendary_bal": { + "price": 31000000, + "name": "Bal" + }, + "lvl_100_legendary_bal_skin_bal_inferno": { + "price": 39500000, + "name": "Bal" + }, + "lvl_100_legendary_bal_skin_bal_inferno_candy_7": { + "price": 31000000, + "name": "Bal" + }, + "etherwarp_merger": { + "price": 490000, + "name": "Etherwarp Merger" + }, + "turbo_wheat_3": { + "price": 100000, + "name": "Turbo Wheat 3" + }, + "lvl_100_legendary_skeleton": { + "price": 21000000, + "name": "Skeleton" + }, + "mosquito_bow": { + "price": 38000000, + "name": "Mosquito Bow" + }, + "pet_skin_sheep_neon_red": { + "price": 349999998, + "name": "Neon Red Sheep Skin" + }, + "lvl_1_legendary_skeleton_horse": { + "price": 645000, + "name": "Skeleton Horse" + }, + "lvl_1_legendary_skeleton_horse_skin_horse_zombie": { + "price": 30000000, + "name": "Skeleton Horse" + }, + "lvl_1_legendary_zombie": { + "price": 4999999, + "name": "Zombie" + }, + "extra_large_gemstone_sack": { + "price": 75000000, + "name": "Extra Large Gemstone Sack" + }, + "chestplate_of_the_pack": { + "price": 1200000, + "name": "Chestplate Of The Pack" + }, + "guardian_chestplate": { + "price": 345000, + "name": "Guardian Chestplate" + }, + "bag_of_cash": { + "price": 30000000, + "name": "Bag Of Cash" + }, + "turbo_cactus_4": { + "price": 849000, + "name": "Turbo Cactus 4" + }, + "wand_of_restoration": { + "price": 775000, + "name": "Wand Of Restoration" + }, + "pink_donut_personality": { + "price": 36000000, + "name": "Pink Donut Minion Skin" + }, + "valkyrie": { + "price": 1250000000, + "name": "Valkyrie" + }, + "turbo_pumpkin_2": { + "price": 280000, + "name": "Turbo Pumpkin 2" + }, + "lvl_1_rare_dolphin": { + "price": 700000, + "name": "Rare Dolphin" + }, + "shadow_assassin_mauve": { + "price": 35000000, + "name": "Mauve Skin" + }, + "lvl_1_epic_elephant": { + "price": 1499999, + "name": "Elephant" + }, + "steel_chestplate": { + "price": 6000000, + "name": "Steel Chestplate" + }, + "lvl_1_rare_squid": { + "price": 429000, + "name": "Rare Squid" + }, + "hunter_talisman": { + "price": 6000000, + "name": "Hunter Talisman" + }, + "hardened_diamond_leggings": { + "price": 20000, + "name": "Hardened Diamond Leggings" + }, + "lvl_1_common_bat": { + "price": 125000, + "name": "Common Bat" + }, + "lvl_1_epic_spirit": { + "price": 750000, + "name": "Spirit" + }, + "lvl_1_common_pig": { + "price": 10000, + "name": "Common Pig" + }, + "pet_skin_rabbit_rose": { + "price": 37000000, + "name": "Rose Rabbit Skin" + }, + "lvl_1_epic_zombie": { + "price": 430000, + "name": "Zombie" + }, + "wither_relic": { + "price": 73000000, + "name": "Wither Relic" + }, + "emerald_armor_chestplate": { + "price": 2500000, + "name": "Emerald Armor Chestplate" + }, + "master_skull_tier_6": { + "price": 164000000, + "name": "Master Skull - Tier 6" + }, + "ultimate_soul_eater_2": { + "price": 4299000, + "name": "Ultimate Soul Eater 2" + }, + "wither_artifact": { + "price": 60000000, + "name": "Wither Artifact" + }, + "lvl_1_common_guardian": { + "price": 225000, + "name": "Common Guardian" + }, + "overload_4": { + "price": 8999990, + "name": "Overload 4" + }, + "lvl_100_legendary_dolphin": { + "price": 27000000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skin_dolphin_snubfin": { + "price": 80000000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skin_dolphin_snubnose_green": { + "price": 59500000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skin_dolphin_snubfin_candy_10": { + "price": 58000000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skin_dolphin_snubnose_purple": { + "price": 75000000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skin_dolphin_snubnose_red": { + "price": 34000000, + "name": "Dolphin" + }, + "lvl_1_legendary_bee": { + "price": 2800000, + "name": "Bee" + }, + "lvl_1_legendary_bee_skin_bee_rgbee": { + "price": 13500000, + "name": "Bee" + }, + "pet_item_bubblegum": { + "price": 5400000, + "name": "Bubblegum" + }, + "lvl_1_uncommon_sheep": { + "price": 1000000, + "name": "Uncommon Sheep" + }, + "smarty_pants_3": { + "price": 4000000, + "name": "Smarty Pants 3" + }, + "wrapped_gift_for_juliette": { + "price": 899000, + "name": "Secret Gift For Juliette" + }, + "diver_puffer": { + "price": 42500000, + "name": "Puffer Fish Skin" + }, + "speedster_leggings": { + "price": 450000, + "name": "Speedster Leggings" + }, + "tutti_frutti_poison": { + "price": 99999, + "name": "Tutti-frutti Flavored Poison" + }, + "lvl_1_epic_parrot": { + "price": 3400000, + "name": "Parrot" + }, + "lvl_100_epic_silverfish": { + "price": 1800000, + "name": "Silverfish" + }, + "beacon_4": { + "price": 14000000, + "name": "Beacon Iv" + }, + "lvl_1_rare_jerry": { + "price": 90000, + "name": "Rare Jerry" + }, + "armor_of_the_resistance_helmet": { + "price": 300000, + "name": "Helmet Of The Rising Sun" + }, + "respite_3": { + "price": 35000, + "name": "Respite 3" + }, + "titanium_pickaxe": { + "price": 1000000, + "name": "Titanium Pickaxe" + }, + "talisman_enrichment_defense": { + "price": 1898999, + "name": "Defense Enrichment" + }, + "giant_cleaver": { + "price": 7000000, + "name": "Cleaver" + }, + "holy_shimmer": { + "price": 30990000, + "name": "Shimmer Skin" + }, + "lvl_1_epic_chicken": { + "price": 300000, + "name": "Chicken" + }, + "vicious_4": { + "price": 26000000, + "name": "Vicious 4" + }, + "lvl_1_uncommon_horse": { + "price": 150000, + "name": "Uncommon Horse" + }, + "lvl_1_legendary_griffin": { + "price": 24000000, + "name": "Griffin" + }, + "talisman_enrichment_walk_speed": { + "price": 1899899, + "name": "Speed Enrichment" + }, + "mithril_drill_engine": { + "price": 19300000, + "name": "Mithril-plated Drill Engine" + }, + "spider_egg_mixin": { + "price": 300000, + "name": "Spider Egg Mixin" + }, + "perfect_chestplate_9": { + "price": 6500000, + "name": "Perfect Chestplate - Tier Ix" + }, + "lvl_1_rare_ocelot": { + "price": 600000, + "name": "Rare Ocelot" + }, + "lvl_100_common_griffin": { + "price": 3300000, + "name": "Common Griffin" + }, + "cluck_the_fish": { + "price": 19990999, + "name": "Cluck The Fish" + }, + "lvl_1_rare_wolf": { + "price": 549999, + "name": "Rare Wolf" + }, + "pet_skin_chicken_baby_chick": { + "price": 44900000, + "name": "Baby Chick Chicken Skin" + }, + "dr_paper": { + "price": 1000000, + "name": "Dctr. Paper" + }, + "lvl_1_legendary_bal": { + "price": 10890000, + "name": "Bal" + }, + "dctr_space_helm": { + "price": 1820000000, + "name": "Dctr's Space Helmet" + }, + "lvl_1_legendary_parrot": { + "price": 18999990, + "name": "Parrot" + }, + "zombie_lord_leggings": { + "price": 1200000, + "name": "Zombie Lord Leggings" + }, + "armor_of_magma_helmet": { + "price": 19000000, + "name": "Armor Of Magma Helmet" + }, + "lvl_100_epic_armadillo": { + "price": 2400000, + "name": "Armadillo" + }, + "turbo_carrot_2": { + "price": 75000, + "name": "Turbo Carrot 2" + }, + "wise_baby": { + "price": 275000000, + "name": "Baby Skin" + }, + "mercenary_axe": { + "price": 100000, + "name": "Mercenary Axe" + }, + "wither_helmet": { + "price": 3400000, + "name": "Wither Helmet" + }, + "lvl_100_legendary_snowman": { + "price": 31900000, + "name": "Snowman" + }, + "pet_skin_enderman": { + "price": 149999990, + "name": "Spooky Enderman Skin" + }, + "tarantula_black_widow": { + "price": 111111111, + "name": "Black Widow Skin" + }, + "dragon_hunter_5": { + "price": 17444444, + "name": "Dragon Hunter 5" + }, + "cleave_6": { + "price": 8999999, + "name": "Cleave 6" + }, + "jungle_amulet": { + "price": 1600000, + "name": "Jungle Amulet" + }, + "helix": { + "price": 3000, + "name": "Helix" + }, + "flame_breaker_chestplate": { + "price": 700000, + "name": "Flamebreaker Chestplate" + }, + "perfect_leggings_1": { + "price": 900000, + "name": "Leggings - Tier I" + }, + "holy_dragon_leggings": { + "price": 299900, + "name": "Holy Dragon Leggings" + }, + "foraging_4_portal": { + "price": 35467, + "name": "Portal To Savanna Woodland" + }, + "enchanted_jack_o_lantern": { + "price": 399999, + "name": "Lantern Helmet" + }, + "snow_snowglobe": { + "price": 56000000, + "name": "Snowglobe Skin" + }, + "museum_travel_scroll": { + "price": 220000, + "name": "Travel Scroll To Museum" + }, + "lvl_1_uncommon_elephant": { + "price": 99999, + "name": "Uncommon Elephant" + }, + "rejuvenate_4": { + "price": 400000, + "name": "Rejuvenate 4" + }, + "pet_skin_yeti_grown_up": { + "price": 200000000, + "name": "Grown-up Baby Yeti Skin" + }, + "overflux_capacitor": { + "price": 53000000, + "name": "Overflux Capacitor" + }, + "flame_breaker_boots": { + "price": 320000, + "name": "Flamebreaker Boots" + }, + "secret_dungeon_redstone_key": { + "price": 12000000, + "name": "Redstone Key" + }, + "lvl_100_legendary_zombie": { + "price": 31000000, + "name": "Zombie" + }, + "turbo_cactus_5": { + "price": 1599921, + "name": "Turbo Cactus 5" + }, + "lvl_1_uncommon_dolphin": { + "price": 69000, + "name": "Uncommon Dolphin" + }, + "lvl_1_common_rabbit": { + "price": 500, + "name": "Common Rabbit" + }, + "heat_leggings": { + "price": 18999, + "name": "Heat Leggings" + }, + "thunderbolt_6": { + "price": 2700000, + "name": "Thunderbolt 6" + }, + "hub_castle_travel_scroll": { + "price": 169000, + "name": "Travel Scroll To Hub Castle" + }, + "mineral_helmet": { + "price": 135000, + "name": "Mineral Helmet" + }, + "lvl_100_uncommon_guardian": { + "price": 500000, + "name": "Uncommon Guardian" + }, + "ultimate_swarm_4": { + "price": 4900000, + "name": "Ultimate Swarm 4" + }, + "turbo_pumpkin_3": { + "price": 769420, + "name": "Turbo Pumpkin 3" + }, + "pumpkin_launcher": { + "price": 3500000, + "name": "Pumpkin Launcher" + }, + "lvl_100_legendary_megalodon": { + "price": 15200000, + "name": "Megalodon" + }, + "lvl_100_legendary_megalodon_skin_megalodon_baby_candy_10": { + "price": 36000000, + "name": "Megalodon" + }, + "lvl_100_legendary_megalodon_skin_megalodon_baby": { + "price": 34999999, + "name": "Megalodon" + }, + "pristine_4": { + "price": 11500000, + "name": "Pristine 4" + }, + "lvl_100_epic_parrot": { + "price": 7895000, + "name": "Parrot" + }, + "lvl_100_epic_mithril_golem": { + "price": 3300000, + "name": "Mithril Golem" + }, + "starlight_leggings": { + "price": 90000, + "name": "Leggings" + }, + "lvl_100_legendary_enderman": { + "price": 50000000, + "name": "Enderman" + }, + "talisman_enrichment_critical_chance": { + "price": 1899999, + "name": "Critical Chance Enrichment" + }, + "sapphire_polished_drill_engine": { + "price": 63270000, + "name": "Sapphire-polished Drill Engine" + }, + "snow_shovel": { + "price": 10000, + "name": "Snow Shovel" + }, + "end_portal_fumes_mixin": { + "price": 200000, + "name": "End Portal Fumes" + }, + "divan_drill": { + "price": 996000000, + "name": "Heated Divan's Drill" + }, + "pet_item_hardened_scales_uncommon": { + "price": 1000000, + "name": "Hardened Scales" + }, + "astraea": { + "price": 1300000000, + "name": "Astraea ➍" + }, + "lvl_1_uncommon_tiger": { + "price": 94999, + "name": "Uncommon Tiger" + }, + "respite_5": { + "price": 999999, + "name": "Respite 5" + }, + "growth_helmet": { + "price": 430000, + "name": "Helmet Of Growth" + }, + "lvl_1_legendary_flying_fish": { + "price": 3649969, + "name": "Flying Fish" + }, + "master_skull_tier_7": { + "price": 700000000, + "name": "Master Skull - Tier 7" + }, + "lvl_100_common_guardian": { + "price": 850000, + "name": "Common Guardian" + }, + "lvl_100_epic_blue_whale": { + "price": 29900000, + "name": "Blue Whale" + }, + "lvl_1_rare_guardian": { + "price": 1000000, + "name": "Rare Guardian" + }, + "wood": { + "price": 160, + "name": "Oak Wood Plank" + }, + "ultimate_soul_eater_3": { + "price": 8866666, + "name": "Ultimate Soul Eater 3" + }, + "lvl_1_legendary_silverfish": { + "price": 930000, + "name": "Silverfish" + }, + "lvl_1_uncommon_silverfish": { + "price": 14000, + "name": "Uncommon Silverfish" + }, + "first_strike_5": { + "price": 156000000, + "name": "First Strike 5" + }, + "turbo_coco_4": { + "price": 900000, + "name": "Turbo Coco 4" + }, + "lvl_100_legendary_jellyfish": { + "price": 30000000, + "name": "Jellyfish" + }, + "lvl_1_rare_silverfish": { + "price": 34999, + "name": "Rare Silverfish" + }, + "turbo_mushrooms_3": { + "price": 134999, + "name": "Turbo Mushrooms 3" + }, + "ultimate_bank_2": { + "price": 10000, + "name": "Ultimate Bank 2" + }, + "unstable_baby": { + "price": 249000000, + "name": "Baby Skin" + }, + "respite_1": { + "price": 40000, + "name": "Respite 1" + }, + "lvl_100_legendary_giraffe": { + "price": 36000000, + "name": "Giraffe" + }, + "scarf_thesis": { + "price": 2400000, + "name": "Scarf's Thesis" + }, + "lapis_armor_boots": { + "price": 1000, + "name": "Lapis Armor Boots" + }, + "lvl_1_legendary_snowman": { + "price": 8000000, + "name": "Snowman" + }, + "lvl_100_epic_turtle": { + "price": 9980000, + "name": "Turtle" + }, + "skeleton_lord_leggings": { + "price": 4000000, + "name": "Skeleton Lord Leggings" + }, + "turbo_warts_2": { + "price": 95000, + "name": "Turbo Warts 2" + }, + "bat_person_artifact": { + "price": 10860000, + "name": "Bat Person Artifact" + }, + "spirit_sword": { + "price": 18000000, + "name": "Spirit Sword" + }, + "perfect_helmet_9": { + "price": 7300000, + "name": "Perfect Helmet - Tier Ix" + }, + "strong_baby": { + "price": 250000000, + "name": "Baby Skin" + }, + "rosetta_boots": { + "price": 481, + "name": "Rosetta's Boots" + }, + "record_8": { + "price": 20, + "name": "Music Disc - Stal" + }, + "ember_chestplate": { + "price": 2800000, + "name": "Ember Chestplate" + }, + "pet_item_foraging_skill_boost_epic": { + "price": 3999990, + "name": "Foraging Exp Boost" + }, + "wolf_fur_mixin": { + "price": 1000000, + "name": "Wolf Fur Mixin" + }, + "lvl_1_common_ocelot": { + "price": 50000, + "name": "Common Ocelot" + }, + "pet_skin_guardian": { + "price": 250000000, + "name": "Watcher Guardian Skin" + }, + "smarty_pants_4": { + "price": 4099999, + "name": "Smarty Pants 4" + }, + "ultimate_swarm_2": { + "price": 1300000, + "name": "Ultimate Swarm 2" + }, + "blaze_chestplate": { + "price": 2999000, + "name": "Blaze Chestplate" + }, + "turbo_melon_4": { + "price": 999000, + "name": "Turbo Melon 4" + }, + "dragon_hunter_2": { + "price": 2400000, + "name": "Dragon Hunter 2" + }, + "diamond_bonzo_head": { + "price": 79900000, + "name": "Diamond Bonzo Head" + }, + "lvl_1_rare_scatha": { + "price": 58000000, + "name": "Rare Scatha" + }, + "glass": { + "price": 128, + "name": "Glass" + }, + "hunter_ring": { + "price": 22000000, + "name": "Hunter Ring" + }, + "starred_spider_queens_stinger": { + "price": 4799999, + "name": "Unreal Spider Queen's Stinger" + }, + "lvl_100_epic_rock": { + "price": 6000000, + "name": "Rock" + }, + "zombie_sword": { + "price": 499000, + "name": "Zombie Sword" + }, + "skeleton_lord_boots": { + "price": 999000, + "name": "Skeleton Lord Boots" + }, + "superior_baby": { + "price": 333333333, + "name": "Baby Skin" + }, + "eternal_hoof": { + "price": 12299000, + "name": "Eternal Hoof" + }, + "lvl_100_legendary_spider": { + "price": 33000000, + "name": "Spider" + }, + "bane_of_arthropods_5": { + "price": 1400, + "name": "Bane Of Arthropods 5" + }, + "lvl_1_epic_tiger": { + "price": 1998000, + "name": "Tiger" + }, + "lvl_1_common_sheep": { + "price": 2000000, + "name": "Common Sheep" + }, + "looting_5": { + "price": 136500000, + "name": "Looting 5" + }, + "perfect_helmet_7": { + "price": 4999999, + "name": "Perfect Helmet - Tier Vii" + }, + "hub_da_travel_scroll": { + "price": 15440000, + "name": "Travel Scroll To Dark Auction" + }, + "lvl_100_legendary_magma_cube": { + "price": 49999999, + "name": "Magma Cube" + }, + "perfect_helmet_2": { + "price": 1123000, + "name": "Helmet - Tier Ii" + }, + "potato_basket": { + "price": 696969696, + "name": "Basket Of Hope From The Great Potato War" + }, + "slayer_energy_drink": { + "price": 4000000, + "name": "Slayer© Energy Drink" + }, + "lvl_100_epic_rabbit": { + "price": 5600000, + "name": "Rabbit" + }, + "turbo_coco_2": { + "price": 150000, + "name": "Turbo Coco 2" + }, + "diamond_thorn_head": { + "price": 198000000, + "name": "Diamond Thorn Head" + }, + "perfect_chestplate_7": { + "price": 3281000, + "name": "Chestplate - Tier Vii" + }, + "perfect_boots_4": { + "price": 1700000, + "name": "Perfect Boots - Tier Iv" + }, + "fancy_tuxedo_leggings": { + "price": 5899000, + "name": "Fancy Tuxedo Pants" + }, + "scorpion_bow": { + "price": 10000000, + "name": "Scorpion Bow" + }, + "perfect_chestplate_2": { + "price": 1499000, + "name": "Chestplate - Tier Ii" + }, + "lvl_100_legendary_pigman": { + "price": 23750000, + "name": "Pigman" + }, + "lvl_1_legendary_enderman": { + "price": 32999000, + "name": "Enderman" + }, + "dragon_hunter_4": { + "price": 10499999, + "name": "Dragon Hunter 4" + }, + "soul_esoward": { + "price": 3000000, + "name": "Soul Esoward" + }, + "lvl_100_rare_rabbit": { + "price": 3000000, + "name": "Rare Rabbit" + }, + "lvl_1_rare_tiger": { + "price": 850000, + "name": "Rare Tiger" + }, + "perfect_helmet_10": { + "price": 6400000, + "name": "Perfect Helmet - Tier X" + }, + "lvl_1_common_silverfish": { + "price": 2000, + "name": "Common Silverfish" + }, + "leaves": { + "price": 128, + "name": "Oak Leaves" + }, + "perfect_chestplate_4": { + "price": 3500000, + "name": "Chestplate - Tier Iv" + }, + "celeste_leggings": { + "price": 7500, + "name": "Celeste Leggings" + }, + "farm_armor_chestplate": { + "price": 120000, + "name": "Farm Armor Chestplate" + }, + "pet_skin_tiger_twilight": { + "price": 850000000, + "name": "Tiger Skin" + }, + "viking_tear": { + "price": 30000, + "name": "Viking's Tear" + }, + "lapis_armor_leggings": { + "price": 6782, + "name": "Lapis Armor Leggings" + }, + "stone_chestplate": { + "price": 38998, + "name": "Stone Chestplate" + }, + "goblin_omelette_blue_cheese": { + "price": 105000000, + "name": "Blue Cheese Goblin Omelette" + }, + "reaper_spirit": { + "price": 380000000, + "name": "Spirit Skin" + }, + "wood:1": { + "price": 32, + "name": "Spruce Wood Plank" + }, + "green_egg": { + "price": 19000000, + "name": "Green Egged Skin" + }, + "lvl_1_common_jerry": { + "price": 48999, + "name": "Common Jerry" + }, + "protector_shimmer": { + "price": 45000000, + "name": "Shimmer Skin" + }, + "turbo_coco_3": { + "price": 548000, + "name": "Turbo Coco 3" + }, + "pet_skin_rabbit": { + "price": 405000000, + "name": "Rabbit Skin" + }, + "pet_skin_elephant_orange": { + "price": 525000000, + "name": "Orange Elephant Skin" + }, + "infini_torch": { + "price": 150000, + "name": "Infinitorch™" + }, + "iron_ore": { + "price": 960, + "name": "Iron Ore" + }, + "ultimate_rend_3": { + "price": 2200000, + "name": "Ultimate Rend 3" + }, + "farm_armor_helmet": { + "price": 80000, + "name": "Farm Armor Helmet" + }, + "lava_talisman": { + "price": 29000, + "name": "Lava Talisman" + }, + "jungle_axe": { + "price": 2400, + "name": "Jungle Axe" + }, + "lapis_armor_helmet": { + "price": 5000, + "name": "Lapis Armor Helmet" + }, + "record_11": { + "price": 20, + "name": "Music Disc - 11" + }, + "flame_breaker_helmet": { + "price": 275000, + "name": "Flamebreaker Helmet" + }, + "flame_breaker_leggings": { + "price": 750000, + "name": "Flamebreaker Leggings" + }, + "perfect_leggings_9": { + "price": 8760000, + "name": "Perfect Leggings - Tier Ix" + }, + "piggy_bank": { + "price": 80000, + "name": "Piggy Bank" + }, + "perfect_chestplate_5": { + "price": 4200000, + "name": "Chestplate - Tier V" + }, + "fractured_mithril_pickaxe": { + "price": 2585, + "name": "Fractured Mithril Pickaxe" + }, + "lvl_1_epic_griffin": { + "price": 5490000, + "name": "Griffin" + }, + "fish_hat": { + "price": 24, + "name": "Fish Hat" + }, + "lvl_1_legendary_horse": { + "price": 990000, + "name": "Horse" + }, + "record_9": { + "price": 100, + "name": "Music Disc - Strad" + }, + "pumpkin_helmet": { + "price": 50, + "name": "Pumpkin Helmet" + }, + "ultimate_no_pain_no_gain_5": { + "price": 170000, + "name": "Ultimate No Pain No Gain 5" + }, + "pumpkin_chestplate": { + "price": 80, + "name": "Pumpkin Chestplate" + }, + "king_talisman": { + "price": 500000, + "name": "King Talisman" + }, + "lvl_100_common_silverfish": { + "price": 500000, + "name": "Common Silverfish" + }, + "lvl_1_common_tiger": { + "price": 95000, + "name": "Common Tiger" + }, + "wool:6": { + "price": 2, + "name": "Pink Wool" + }, + "wool:4": { + "price": 640, + "name": "Yellow Wool" + }, + "squire_chestplate": { + "price": 13000, + "name": "Squire Chestplate" + }, + "lvl_1_uncommon_giraffe": { + "price": 250000, + "name": "Uncommon Giraffe" + }, + "ring_potion_affinity": { + "price": 7100, + "name": "Potion Affinity Ring" + }, + "farm_suit_chestplate": { + "price": 160, + "name": "Farm Suit Chestplate" + }, + "medium_enchanted_chest": { + "price": 78000, + "name": "Medium Storage" + }, + "rosetta_leggings": { + "price": 3085, + "name": "Rosetta's Leggings" + }, + "bucket": { + "price": 4, + "name": "Bucket" + }, + "lvl_1_epic_giraffe": { + "price": 1200000, + "name": "Giraffe" + }, + "wool": { + "price": 500, + "name": "White Wool" + }, + "lvl_100_rare_tiger": { + "price": 8300000, + "name": "Rare Tiger" + }, + "heat_chestplate": { + "price": 39500, + "name": "Heat Chestplate" + }, + "heat_boots": { + "price": 39000, + "name": "Heat Boots" + }, + "heat_helmet": { + "price": 38999, + "name": "Heat Helmet" + }, + "gold_ore": { + "price": 15, + "name": "Gold Ore" + }, + "hard_clay": { + "price": 2, + "name": "Hardened Clay" + }, + "stick": { + "price": 1, + "name": "Stick" + }, + "wood_hoe": { + "price": 1, + "name": "Wooden Hoe" + }, + "enchanted_dandelion": { + "price": 800, + "name": "Enchanted Dandelion" + }, + "danger_1_portal": { + "price": 60000, + "name": "Portal To Spider's Den" + }, + "wood_sword": { + "price": 5, + "name": "Wooden Sword" + }, + "farming_2_portal": { + "price": 50000, + "name": "Portal To Mushroom Island" + }, + "melon_block": { + "price": 46, + "name": "Melon Block" + }, + "grass": { + "price": 55, + "name": "Grass" + }, + "lvl_1_rare_giraffe": { + "price": 209000, + "name": "Rare Giraffe" + }, + "cooked_fish": { + "price": 2560, + "name": "Cooked Fish" + }, + "gold_hoe": { + "price": 20, + "name": "Golden Hoe" + }, + "healing_ring": { + "price": 85000, + "name": "Healing Ring" + }, + "farm_suit_helmet": { + "price": 125, + "name": "Farm Suit Helmet" + }, + "potion_affinity_talisman": { + "price": 960, + "name": "Potion Affinity Talisman" + }, + "squire_boots": { + "price": 7500, + "name": "Squire Boots" + }, + "wool:14": { + "price": 16, + "name": "Red Wool" + }, + "triple_strike_3": { + "price": 6000, + "name": "Triple Strike 3" + }, + "farm_armor_boots": { + "price": 50000, + "name": "Farm Armor Boots" + }, + "lvl_1_legendary_black_cat": { + "price": 17199999, + "name": "Black Cat" + }, + "small_enchanted_chest": { + "price": 1000, + "name": "Small Storage" + }, + "ultimate_swarm_3": { + "price": 2700000, + "name": "Ultimate Swarm 3" + }, + "record_4": { + "price": 100, + "name": "Music Disc - Chirp" + }, + "mining_1_portal": { + "price": 80000, + "name": "Portal To The Gold Mine" + }, + "redstone_ore": { + "price": 1000, + "name": "Redstone Ore" + }, + "gravity_talisman": { + "price": 4320, + "name": "Gravity Talisman" + }, + "wood_button": { + "price": 3, + "name": "Wooden Button" + }, + "perfect_leggings_10": { + "price": 4800000, + "name": "Perfect Leggings - Tier X" + }, + "red_rose:7": { + "price": 64, + "name": "Pink Tulip" + }, + "blaze_powder": { + "price": 20, + "name": "Blaze Powder" + }, + "stone_spade": { + "price": 5, + "name": "Stone Shovel" + }, + "zombie_boots": { + "price": 700000, + "name": "Zombie Boots" + }, + "cracked_piggy_bank": { + "price": 80000, + "name": "Cracked Piggy Bank" + }, + "enchantment_table": { + "price": 40, + "name": "Enchantment Table" + }, + "spider_talisman": { + "price": 250, + "name": "Spider Talisman" + }, + "bat_person_ring": { + "price": 3000000, + "name": "Bat Person Ring" + }, + "rune": { + "price": 1000, + "name": "◆ Blood Rune I" + }, + "perfect_leggings_7": { + "price": 3200000, + "name": "Perfect Leggings - Tier Vii" + }, + "lvl_1_uncommon_chicken": { + "price": 80000, + "name": "Uncommon Chicken" + }, + "pet_item_big_teeth_common": { + "price": 600000, + "name": "Big Teeth" + }, + "foraging_2_portal": { + "price": 35163, + "name": "Portal To Spruce Woods" + }, + "lvl_1_common_skeleton": { + "price": 59000, + "name": "Common Skeleton" + }, + "perfect_chestplate_6": { + "price": 5000000, + "name": "Perfect Chestplate - Tier Vi" + }, + "foraging_5_portal": { + "price": 34578, + "name": "Portal To Dark Thicket" + }, + "lvl_1_legendary_golden_dragon": { + "price": 575000000, + "name": "Golden Dragon" + }, + "perfect_boots_10": { + "price": 5050000, + "name": "Boots - Tier X" + }, + "lvl_100_legendary_flying_fish": { + "price": 22000000, + "name": "Flying Fish" + }, + "leaves:3": { + "price": 12, + "name": "Jungle Leaves" + }, + "prismarine": { + "price": 320, + "name": "Prismarine" + }, + "pet_skin_elephant_blue": { + "price": 300000000, + "name": "Blue Elephant Skin" + }, + "lvl_100_epic_lion": { + "price": 20000000, + "name": "Lion" + }, + "pet_item_sharpened_claws_uncommon": { + "price": 999000, + "name": "Sharpened Claws" + }, + "turbo_mushrooms_2": { + "price": 70000, + "name": "Turbo Mushrooms 2" + }, + "lvl_1_rare_chicken": { + "price": 180000, + "name": "Rare Chicken" + }, + "lvl_100_rare_rock": { + "price": 1500000, + "name": "Rare Rock" + }, + "turbo_mushrooms_4": { + "price": 300000, + "name": "Turbo Mushrooms 4" + }, + "ultimate_rend_4": { + "price": 7200000, + "name": "Ultimate Rend 4" + }, + "celeste_chestplate": { + "price": 7500, + "name": "Celeste Chestplate" + }, + "perfect_boots_6": { + "price": 2457600, + "name": "Boots - Tier Vi" + }, + "paper": { + "price": 6, + "name": "Paper" + }, + "speed_talisman": { + "price": 550, + "name": "Speed Talisman" + }, + "wither_bow": { + "price": 15, + "name": "Wither Bow" + }, + "diamond_scarf_head": { + "price": 166000000, + "name": "Diamond Scarf Head" + }, + "green_record": { + "price": 100, + "name": "Music Disc - Cat" + }, + "tripwire_hook": { + "price": 4, + "name": "Tripwire Hook" + }, + "lvl_100_epic_wither_skeleton": { + "price": 5999999, + "name": "Wither Skeleton" + }, + "iron_chestplate": { + "price": 65, + "name": "Iron Chestplate" + }, + "ink_sack:1": { + "price": 64, + "name": "Rose Red" + }, + "iron_helmet": { + "price": 40, + "name": "Iron Helmet" + }, + "record_6": { + "price": 20, + "name": "Music Disc - Mall" + }, + "farm_suit_leggings": { + "price": 32, + "name": "Farm Suit Leggings" + }, + "wood:3": { + "price": 1, + "name": "Jungle Wood Plank" + }, + "squire_sword": { + "price": 12630, + "name": "Squire Sword" + }, + "gold_record": { + "price": 20, + "name": "Music Disc - 13" + }, + "enderman_mask": { + "price": 1000, + "name": "Enderman Mask" + }, + "record_7": { + "price": 100, + "name": "Music Disc - Mellohi" + }, + "rosetta_helmet": { + "price": 2630, + "name": "Rosetta's Helmet" + }, + "rosetta_chestplate": { + "price": 661, + "name": "Rosetta's Chestplate" + }, + "celeste_boots": { + "price": 7500, + "name": "Celeste Boots" + }, + "book": { + "price": 3720, + "name": "Book" + }, + "magical_water_bucket": { + "price": 200, + "name": "Magical Water Bucket" + }, + "bandaged_mithril_pickaxe": { + "price": 2580, + "name": "Bandaged Mithril Pickaxe" + }, + "fire_talisman": { + "price": 30000, + "name": "Fire Talisman" + }, + "ultimate_chimera_5": { + "price": 1684000000, + "name": "Ultimate Chimera 5" + }, + "wood_talisman": { + "price": 800, + "name": "Wood Affinity Talisman" + }, + "flaming_sword": { + "price": 100, + "name": "Flaming Sword" + }, + "lvl_100_rare_silverfish": { + "price": 2100000, + "name": "Rare Silverfish" + }, + "mithril_pickaxe": { + "price": 2000, + "name": "Mithril Pickaxe" + }, + "lvl_100_legendary_scatha": { + "price": 307000000, + "name": "Scatha" + }, + "lvl_1_legendary_scatha": { + "price": 290000000, + "name": "Scatha" + }, + "perfect_chestplate_11": { + "price": 5000000, + "name": "Perfect Chestplate - Tier Xi" + }, + "red_rose:2": { + "price": 64, + "name": "Allium" + }, + "lvl_1_rare_bee": { + "price": 150000, + "name": "Rare Bee" + }, + "record_10": { + "price": 20, + "name": "Music Disc - Ward" + }, + "rails": { + "price": 20, + "name": "Rail" + }, + "record_5": { + "price": 20, + "name": "Music Disc - Far" + }, + "record_12": { + "price": 100, + "name": "Music Disc - Wait" + }, + "yellow_flower": { + "price": 5, + "name": "Dandelion" + }, + "lvl_100_legendary_elephant_skinned_elephant_blue": { + "price": 350000000, + "name": "Elephant" + }, + "lvl_100_legendary_baby_yeti_skinned_yeti_grown_up": { + "price": 175000000, + "name": "Baby Yeti" + }, + "lvl_1_legendary_chicken_skinned_chicken_baby_chick": { + "price": 49999999, + "name": "Chicken" + }, + "lvl_1_legendary_skeleton_horse_skinned_horse_zombie": { + "price": 20000000, + "name": "Skeleton Horse" + }, + "lvl_100_epic_baby_yeti_skinned_yeti_grown_up": { + "price": 140000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_guardian_skinned_guardian": { + "price": 300000000, + "name": "Guardian" + }, + "lvl_100_legendary_elephant_skinned_elephant_pink": { + "price": 138999999, + "name": "Elephant" + }, + "lvl_100_legendary_hound_skinned_hound_beagle": { + "price": 46999000, + "name": "Hound" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple": { + "price": 360000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_ocelot_skinned_ocelot_snow_tiger": { + "price": 28500000, + "name": "Ocelot" + }, + "lvl_100_legendary_parrot_skinned_parrot_gold_macaw": { + "price": 41111111, + "name": "Parrot" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_red": { + "price": 270000000, + "name": "Sheep" + }, + "lvl_100_legendary_elephant_skinned_elephant_orange": { + "price": 340000000, + "name": "Elephant" + }, + "lvl_100_legendary_sheep_skinned_sheep_purple": { + "price": 700000000, + "name": "Sheep" + }, + "glass_bottle": { + "price": 500, + "name": "Glass Bottle" + }, + "lvl_100_legendary_sheep_skinned_sheep_white": { + "price": 719000000, + "name": "Sheep" + }, + "lvl_100_legendary_rock_skinned_rock_embarrassed": { + "price": 650000000, + "name": "Rock" + }, + "lvl_100_legendary_phoenix_skinned_phoenix_ice": { + "price": 100000000, + "name": "Phoenix" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_blue": { + "price": 588696000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_pastel": { + "price": 360000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_jerry_skinned_jerry_green_elf": { + "price": 180000000, + "name": "Jerry" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer": { + "price": 63500000, + "name": "Enderman" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth": { + "price": 51000000, + "name": "Tiger" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_fossilized": { + "price": 20000000, + "name": "Silverfish" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_ivory": { + "price": 49500000, + "name": "Black Cat" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_yellow": { + "price": 120000000, + "name": "Sheep" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_onyx": { + "price": 43969696, + "name": "Black Cat" + }, + "lvl_100_legendary_wither_skeleton_skinned_wither": { + "price": 149999990, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine": { + "price": 19000000, + "name": "Rabbit" + }, + "lvl_100_legendary_blue_whale_skinned_whale_orca": { + "price": 105000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_elephant_skinned_elephant_green": { + "price": 89999000, + "name": "Elephant" + }, + "lvl_100_legendary_monkey_skinned_monkey_golden": { + "price": 94000000, + "name": "Monkey" + }, + "lvl_100_mythic_enderman_skinned_enderman": { + "price": 190000000, + "name": "Enderman" + }, + "lvl_100_legendary_elephant_skinned_elephant_purple": { + "price": 79777777, + "name": "Elephant" + }, + "lvl_100_legendary_rock_skinned_rock_cool": { + "price": 600000000, + "name": "Rock" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue": { + "price": 345000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_blue": { + "price": 250000000, + "name": "Sheep" + }, + "lvl_100_legendary_monkey_skinned_monkey_gorilla": { + "price": 54899000, + "name": "Monkey" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_pastel": { + "price": 626969696, + "name": "Ender Dragon" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome": { + "price": 28000000, + "name": "Elephant" + }, + "lvl_100_legendary_silverfish_skinned_silverfish": { + "price": 159999999, + "name": "Silverfish" + }, + "lvl_100_legendary_sheep_skinned_sheep_light_blue": { + "price": 625000000, + "name": "Sheep" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_red": { + "price": 340000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_tiger_skinned_tiger_twilight": { + "price": 750000000, + "name": "Tiger" + }, + "lvl_100_legendary_wolf_skinned_wolf": { + "price": 40000000, + "name": "Wolf" + }, + "lvl_100_legendary_elephant_skinned_elephant_red": { + "price": 82000000, + "name": "Elephant" + }, + "lvl_100_legendary_bat_skinned_bat_vampire": { + "price": 34950000, + "name": "Bat" + }, + "lvl_100_legendary_endermite_skinned_endermite_radiant": { + "price": 17000000, + "name": "Endermite" + }, + "lvl_100_legendary_squid_skinned_squid_glow": { + "price": 28500000, + "name": "Squid" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_rose": { + "price": 26500000, + "name": "Rabbit" + }, + "lvl_100_legendary_sheep_skinned_sheep_black": { + "price": 1295000000, + "name": "Sheep" + }, + "lvl_1_uncommon_mithril_golem": { + "price": 80000, + "name": "Uncommon Mithril Golem" + }, + "titanium_talisman": { + "price": 249000, + "name": "Titanium Talisman" + }, + "defuse_kit": { + "price": 1, + "name": "Defuse Kit" + }, + "wishing_compass": { + "price": 5, + "name": "Wishing Compass" + }, + "nether_brick_item": { + "price": 1, + "name": "Nether Brick" + }, + "miner_outfit_leggings": { + "price": 2300, + "name": "Miner's Outfit Leggings" + }, + "lvl_1_uncommon_endermite": { + "price": 299000, + "name": "Uncommon Endermite" + }, + "gold_chestplate": { + "price": 16, + "name": "Golden Chestplate" + }, + "squid_boots": { + "price": 75, + "name": "Squid Boots" + }, + "day_saver": { + "price": 35, + "name": "Day Saver" + }, + "boat": { + "price": 1, + "name": "Boat" + }, + "wool:5": { + "price": 10, + "name": "Lime Wool" + }, + "wool:1": { + "price": 10, + "name": "Orange Wool" + }, + "desert_island": { + "price": 10000, + "name": "Desert Island" + }, + "wool:10": { + "price": 640, + "name": "Purple Wool" + }, + "wool:13": { + "price": 2, + "name": "Green Wool" + }, + "wool:2": { + "price": 2, + "name": "Magenta Wool" + }, + "golden_carrot": { + "price": 256, + "name": "Golden Carrot" + }, + "undead_sword": { + "price": 105, + "name": "Sword" + }, + "cobble_wall": { + "price": 5, + "name": "Cobblestone Wall" + }, + "stained_clay:9": { + "price": 18, + "name": "Cyan Hardened Clay" + }, + "sign": { + "price": 1, + "name": "Sign" + }, + "lvl_1_common_giraffe": { + "price": 19999, + "name": "Common Giraffe" + }, + "red_rose:1": { + "price": 64, + "name": "Blue Orchid" + }, + "torch": { + "price": 1, + "name": "Torch" + }, + "turbo_cactus_2": { + "price": 140000, + "name": "Turbo Cactus 2" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_purple": { + "price": 585000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ocelot": { + "price": 13890000, + "name": "Ocelot" + }, + "enchanted_poppy": { + "price": 576, + "name": "Enchanted Poppy" + }, + "squire_leggings": { + "price": 7500, + "name": "Squire Leggings" + }, + "iron_pickaxe": { + "price": 5, + "name": "Iron Pickaxe" + }, + "apple": { + "price": 350, + "name": "Apple" + }, + "emerald_ring": { + "price": 38000, + "name": "Emerald Ring" + }, + "pumpkin_boots": { + "price": 10, + "name": "Pumpkin Boots" + }, + "iron_sword": { + "price": 15, + "name": "Iron Sword" + }, + "perfect_helmet_6": { + "price": 4696420, + "name": "Helmet - Tier Vi" + }, + "lvl_100_uncommon_dolphin": { + "price": 1000000, + "name": "Uncommon Dolphin" + }, + "jumbo_backpack_skinned_green_egg": { + "price": 14000000, + "name": "Jumbo Backpack" + }, + "jumbo_backpack_skinned_purple_egg": { + "price": 14999999, + "name": "Jumbo Backpack" + }, + "large_backpack_skinned_enderpack": { + "price": 18990000, + "name": "Large Backpack" + }, + "protector_dragon_helmet_skinned_protector_shimmer": { + "price": 50000000, + "name": "Protector Dragon Helmet" + }, + "unstable_dragon_helmet_skinned_unstable_baby": { + "price": 219000000, + "name": "Unstable Dragon Helmet" + }, + "jumbo_backpack_skinned_enderpack": { + "price": 40000000, + "name": "Jumbo Backpack" + }, + "mastiff_helmet_skinned_mastiff_puppy": { + "price": 60000000, + "name": "Mastiff Crown" + }, + "holy_dragon_helmet_skinned_holy_shimmer": { + "price": 33333333, + "name": "Holy Dragon Helmet" + }, + "young_dragon_helmet_skinned_young_baby": { + "price": 445000000, + "name": "Young Dragon Helmet" + }, + "protector_dragon_helmet_skinned_protector_baby": { + "price": 149000000, + "name": "Protector Dragon Helmet" + }, + "holy_dragon_helmet_skinned_holy_baby": { + "price": 150000000, + "name": "Holy Dragon Helmet" + }, + "old_dragon_helmet_skinned_old_shimmer": { + "price": 31999000, + "name": "Old Dragon Helmet" + }, + "frozen_blaze_helmet_skinned_frozen_blaze_icicle": { + "price": 181250000, + "name": "Frozen Blaze Helmet" + }, + "perfect_helmet_2_skinned_perfect_forge": { + "price": 60000000, + "name": "Perfect Helmet - Tier Ii" + }, + "auto_smelter": { + "price": 160, + "name": "Auto Smelter" + }, + "lvl_100_legendary_jerry_skinned_jerry_red_elf": { + "price": 280000000, + "name": "Jerry" + }, + "clownfish_hat": { + "price": 140, + "name": "Clownfish Hat" + }, + "shadow_assassin_helmet_skinned_shadow_assassin_mauve": { + "price": 7300000, + "name": "Shadow Assassin Helmet" + }, + "perfect_helmet_4": { + "price": 4000000, + "name": "Perfect Helmet - Tier Iv" + }, + "hard_glass": { + "price": 320, + "name": "Hard Glass" + }, + "pumpkin_seeds": { + "price": 6, + "name": "Pumpkin Seeds" + }, + "squire_helmet": { + "price": 8100, + "name": "Squire Helmet" + }, + "superior_dragon_helmet_skinned_superior_baby": { + "price": 250000000, + "name": "Superior Dragon Helmet" + }, + "lvl_1_legendary_guardian": { + "price": 5000000, + "name": "Guardian" + }, + "promising_axe": { + "price": 100, + "name": "Promising Axe" + }, + "miner_outfit_helmet": { + "price": 2000, + "name": "Miner's Outfit Helmet" + }, + "lever": { + "price": 5, + "name": "Lever" + }, + "stone_button": { + "price": 1, + "name": "Stone Button" + }, + "red_rose:5": { + "price": 5, + "name": "Orange Tulip" + }, + "wood:5": { + "price": 8, + "name": "Dark Oak Wood Plank" + }, + "iron_hoe": { + "price": 3, + "name": "Iron Hoe" + }, + "solar_panel": { + "price": 50000, + "name": "Solar Panel" + }, + "zombie_pickaxe": { + "price": 15, + "name": "Zombie Pickaxe" + }, + "mushroom_helmet": { + "price": 50, + "name": "Mushroom Helmet" + }, + "celeste_wand": { + "price": 12000, + "name": "Celeste Wand" + }, + "angler_helmet": { + "price": 75, + "name": "Angler Helmet" + }, + "angler_chestplate": { + "price": 24, + "name": "Angler Chestplate" + }, + "angler_leggings": { + "price": 21, + "name": "Angler Leggings" + }, + "angler_boots": { + "price": 60, + "name": "Angler Boots" + }, + "efficient_axe": { + "price": 125, + "name": "Efficient Axe" + }, + "stained_glass:5": { + "price": 960, + "name": "Lime Stained Glass" + }, + "perfect_leggings_4": { + "price": 3000000, + "name": "Perfect Leggings - Tier Iv" + }, + "perfect_leggings_5": { + "price": 3800000, + "name": "Perfect Leggings - Tier V" + }, + "lvl_1_rare_bat": { + "price": 100000, + "name": "Rare Bat" + }, + "magnetic_talisman": { + "price": 2000, + "name": "Talisman" + }, + "perfect_boots_9": { + "price": 8400000, + "name": "Perfect Boots - Tier Ix" + }, + "farmer_orb": { + "price": 9500, + "name": "Farmer Orb" + }, + "lvl_100_epic_skeleton": { + "price": 12500000, + "name": "Skeleton" + }, + "broken_piggy_bank": { + "price": 21000, + "name": "Broken Piggy Bank" + }, + "budget_hopper": { + "price": 6000, + "name": "Budget Hopper" + }, + "diamond_axe": { + "price": 65, + "name": "Diamond Axe" + }, + "end_sword": { + "price": 50, + "name": "End Sword" + }, + "lvl_100_epic_flying_fish": { + "price": 15000000, + "name": "Flying Fish" + }, + "lvl_100_uncommon_armadillo": { + "price": 900000, + "name": "Uncommon Armadillo" + }, + "builder_kiwi": { + "price": 50, + "name": "Kiwi" + }, + "builder_lettuce": { + "price": 50, + "name": "Lettuce" + }, + "red_rose:6": { + "price": 10, + "name": "White Tulip" + }, + "promising_spade": { + "price": 135, + "name": "Promising Shovel" + }, + "smooth_brick:2": { + "price": 320, + "name": "Cracked Stone Bricks" + }, + "miner_outfit_boots": { + "price": 1600, + "name": "Miner's Outfit Boots" + }, + "miner_outfit_chestplate": { + "price": 3200, + "name": "Miner's Outfit Chestplate" + }, + "diamond_pickaxe": { + "price": 170, + "name": "Diamond Pickaxe" + }, + "celeste_helmet": { + "price": 8000, + "name": "Celeste Helmet" + }, + "stained_clay:14": { + "price": 640, + "name": "Red Hardened Clay" + }, + "blaze_hat": { + "price": 100, + "name": "Blaze Hat" + }, + "gold_nugget": { + "price": 6, + "name": "Gold Nugget" + }, + "lvl_1_common_wolf": { + "price": 325000, + "name": "Common Wolf" + }, + "golden_apple": { + "price": 1920, + "name": "Golden Apple" + }, + "lvl_1_rare_mithril_golem": { + "price": 600000, + "name": "Rare Mithril Golem" + }, + "record_3": { + "price": 100, + "name": "Music Disc - Blocks" + }, + "lvl_1_common_chicken": { + "price": 100000, + "name": "Common Chicken" + }, + "perfect_leggings_8": { + "price": 5200000, + "name": "Perfect Leggings - Tier Viii" + }, + "eye_of_ender": { + "price": 960, + "name": "Eye Of Ender" + }, + "sapling": { + "price": 1, + "name": "Oak Sapling" + }, + "soul_sand": { + "price": 500, + "name": "Soul Sand" + }, + "rookie_axe": { + "price": 30, + "name": "Rookie Axe" + }, + "shears": { + "price": 15, + "name": "Shears" + }, + "scavenger_talisman": { + "price": 200, + "name": "Scavenger Talisman" + }, + "fancy_sword": { + "price": 100, + "name": "Fancy Sword" + }, + "dirt:2": { + "price": 500, + "name": "Podzol" + }, + "mycel": { + "price": 51, + "name": "Mycel" + }, + "vaccine_talisman": { + "price": 22, + "name": "Vaccine Talisman" + }, + "fishing_rod": { + "price": 15, + "name": "Fishing Rod" + }, + "wool:11": { + "price": 10, + "name": "Blue Wool" + }, + "wood_pickaxe": { + "price": 10, + "name": "Wooden Pickaxe" + }, + "dead_bush": { + "price": 2, + "name": "Dead Bush" + }, + "gold_axe": { + "price": 50, + "name": "Golden Axe" + }, + "builder_appalled_pumpkin": { + "price": 50, + "name": "Appalled Pumpkin" + }, + "lvl_100_epic_blaze": { + "price": 31500000, + "name": "Blaze" + }, + "coin_talisman": { + "price": 70, + "name": "Talisman Of Coins" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_green": { + "price": 120000000, + "name": "Sheep" + }, + "perfect_helmet_5": { + "price": 2200000, + "name": "Perfect Helmet - Tier V" + }, + "red_rose": { + "price": 5, + "name": "Poppy" + }, + "flint_shovel": { + "price": 36, + "name": "Flint Shovel" + }, + "wood_spade": { + "price": 5, + "name": "Wooden Shovel" + }, + "lvl_100_legendary_chicken_skinned_chicken_baby_chick": { + "price": 48888888, + "name": "Chicken" + }, + "vine": { + "price": 1600, + "name": "Vines" + }, + "leggings_of_the_pack": { + "price": 700000, + "name": "Leggings Of The Pack" + }, + "red_rose:8": { + "price": 64, + "name": "Oxeye Daisy" + }, + "mushroom_chestplate": { + "price": 80, + "name": "Mushroom Chestplate" + }, + "farm_suit_boots": { + "price": 20, + "name": "Farm Suit Boots" + }, + "night_vision_charm": { + "price": 12500, + "name": "Night Vision Charm" + }, + "strong_dragon_helmet_skinned_strong_shimmer": { + "price": 26500000, + "name": "Dragon Helmet" + }, + "rookie_pickaxe": { + "price": 10, + "name": "Rookie Pickaxe" + }, + "red_rose:3": { + "price": 64, + "name": "Azure Bluet" + }, + "wool:3": { + "price": 2, + "name": "Blue Wool" + }, + "gold_spade": { + "price": 95, + "name": "Golden Shovel" + }, + "stained_glass:14": { + "price": 960, + "name": "Red Stained Glass" + }, + "perfect_leggings_3": { + "price": 1541032, + "name": "Perfect Leggings - Tier Iii" + }, + "nether_brick": { + "price": 10, + "name": "Nether Bricks" + }, + "cookie": { + "price": 1, + "name": "Cookie" + }, + "healing_talisman": { + "price": 1440, + "name": "Healing Talisman" + }, + "mine_talisman": { + "price": 599, + "name": "Mine Affinity Talisman" + }, + "diver_helmet_skinned_diver_puffer": { + "price": 27000000, + "name": "Diver's Mask" + }, + "perfect_helmet_3": { + "price": 1350000, + "name": "Perfect Helmet - Tier Iii" + }, + "step:5": { + "price": 96, + "name": "Stone Brick Slab" + }, + "lvl_100_epic_enderman": { + "price": 17500000, + "name": "Enderman" + }, + "lvl_100_epic_enderman_skin_enderman_slayer": { + "price": 11999999, + "name": "Enderman" + }, + "lvl_100_epic_enderman_skin_enderman_slayer_candy_10": { + "price": 10000000, + "name": "Enderman" + }, + "lvl_100_epic_enderman_skin_enderman_slayer_candy_6": { + "price": 16900000, + "name": "Enderman" + }, + "stone:6": { + "price": 310, + "name": "Polished Andesite" + }, + "gold_pickaxe": { + "price": 30, + "name": "Golden Pickaxe" + }, + "stone_axe": { + "price": 10, + "name": "Stone Axe" + }, + "melon_seeds": { + "price": 1, + "name": "Melon Seeds" + }, + "lvl_100_legendary_sheep_skinned_sheep_pink": { + "price": 750000000, + "name": "Sheep" + }, + "ultimate_rend_5": { + "price": 8100000, + "name": "Ultimate Rend 5" + }, + "lvl_100_legendary_skeleton_horse_skinned_horse_zombie": { + "price": 45000000, + "name": "Skeleton Horse" + }, + "lvl_100_common_rock": { + "price": 300000, + "name": "Common Rock" + }, + "double_plant:4": { + "price": 64, + "name": "Rose Bush" + }, + "farming_talisman": { + "price": 25, + "name": "Farming Talisman" + }, + "iron_spade": { + "price": 3, + "name": "Iron Shovel" + }, + "sea_creature_talisman": { + "price": 180, + "name": "Sea Creature Talisman" + }, + "lvl_100_legendary_golden_dragon": { + "price": 750000000, + "name": "Unknown" + }, + "feather_talisman": { + "price": 800, + "name": "Feather Talisman" + }, + "bread": { + "price": 15, + "name": "Bread" + }, + "aspect_of_the_jerry": { + "price": 1, + "name": "Unknown" + }, + "pet_skin_rock_thinking": { + "price": 600000000, + "name": "Thinking Rock Skin" + }, + "bow": { + "price": 50, + "name": "Bow" + }, + "diamond_spade": { + "price": 25, + "name": "Diamond Shovel" + }, + "smooth_brick": { + "price": 1, + "name": "Stone Bricks" + }, + "lvl_1_legendary_squid_skinned_squid_glow": { + "price": 44490000, + "name": "Squid" + }, + "village_talisman": { + "price": 326, + "name": "Village Affinity Talisman" + }, + "lvl_1_epic_scatha": { + "price": 119000000, + "name": "Scatha" + }, + "wool:15": { + "price": 10, + "name": "Black Wool" + }, + "milk_bucket": { + "price": 20, + "name": "Milk Bucket" + }, + "lvl_1_common_spider": { + "price": 800000, + "name": "Common Spider" + }, + "lvl_100_uncommon_blue_whale": { + "price": 2500000, + "name": "Uncommon Blue Whale" + }, + "lvl_100_uncommon_rock": { + "price": 4900000, + "name": "Uncommon Rock" + }, + "decent_bow": { + "price": 99, + "name": "Decent Bow" + }, + "bowl": { + "price": 50, + "name": "Bowl" + }, + "stone_hoe": { + "price": 10, + "name": "Stone Hoe" + }, + "lvl_100_legendary_rock_skinned_rock_thinking": { + "price": 420000000, + "name": "Rock" + }, + "speedster_rod": { + "price": 1000, + "name": "Speedster Rod" + }, + "wood:2": { + "price": 10, + "name": "Birch Wood Plank" + }, + "lvl_1_common_mithril_golem": { + "price": 50000, + "name": "Common Mithril Golem" + }, + "slime_hat": { + "price": 20, + "name": "Slime Hat" + }, + "shadow_assassin_helmet_skinned_shadow_assassin_admiral": { + "price": 7000000, + "name": "Shadow Assassin Helmet" + }, + "zombie_talisman": { + "price": 250, + "name": "Zombie Talisman" + }, + "magical_lava_bucket": { + "price": 30, + "name": "Magical Lava Bucket" + }, + "unstable_dragon_helmet_skinned_unstable_shimmer": { + "price": 21400000, + "name": "Unstable Dragon Helmet" + }, + "workbench": { + "price": 64, + "name": "Crafting Table" + }, + "hub_portal": { + "price": 300, + "name": "Portal To The Hub" + }, + "gift_compass": { + "price": 1000, + "name": "Gift Compass" + }, + "wool:7": { + "price": 6, + "name": "Gray Wool" + }, + "hopper": { + "price": 4800, + "name": "Hopper" + }, + "furnace": { + "price": 32, + "name": "Furnace" + }, + "wood:4": { + "price": 96, + "name": "Acacia Wood Plank" + }, + "mushroom_leggings": { + "price": 70, + "name": "Mushroom Leggings" + }, + "mushroom_boots": { + "price": 40, + "name": "Mushroom Boots" + }, + "feather_ring": { + "price": 9000, + "name": "Feather Ring" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_red": { + "price": 630000000, + "name": "Ender Dragon" + }, + "turbo_mushrooms_5": { + "price": 800000, + "name": "Turbo Mushrooms 5" + }, + "strong_dragon_helmet_skinned_strong_baby": { + "price": 355000000, + "name": "Strong Dragon Helmet" + }, + "rogue_sword": { + "price": 5000, + "name": "Rogue Sword" + }, + "lvl_1_uncommon_bee": { + "price": 25000, + "name": "Uncommon Bee" + }, + "tnt": { + "price": 75, + "name": "Tnt" + }, + "flint_and_steel": { + "price": 35, + "name": "Flint And Steel" + }, + "step:3": { + "price": 1, + "name": "Cobblestone Slab" + }, + "clay_brick": { + "price": 640, + "name": "Brick" + }, + "skeleton_hat": { + "price": 8, + "name": "Skeleton Hat" + }, + "spider_sword": { + "price": 15, + "name": "Spider Sword" + }, + "spider_hat": { + "price": 60, + "name": "Spider Hat" + }, + "weather_stick": { + "price": 800, + "name": "Weather Stick" + }, + "lvl_1_common_endermite": { + "price": 299000, + "name": "Common Endermite" + }, + "reaper_mask_skinned_reaper_spirit": { + "price": 330000000, + "name": "Reaper Mask" + }, + "starred_shadow_assassin_helmet_skinned_shadow_assassin_crimson": { + "price": 9900000, + "name": "Fierce Shadow Assassin Helmet" + }, + "wise_dragon_helmet_skinned_wise_shimmer": { + "price": 25500000, + "name": "Wise Dragon Helmet" + }, + "starred_shadow_assassin_helmet_skinned_shadow_assassin_admiral": { + "price": 9600000, + "name": "Fierce Shadow Assassin Helmet" + }, + "tarantula_helmet_skinned_tarantula_black_widow": { + "price": 53000000, + "name": "Tarantula Helmet" + }, + "starred_shadow_assassin_helmet_skinned_shadow_assassin_mauve": { + "price": 19999998, + "name": "Ancient Shadow Assassin Helmet" + }, + "young_dragon_helmet_skinned_young_shimmer": { + "price": 50000000, + "name": "Young Dragon Helmet" + }, + "superior_dragon_helmet_skinned_superior_shimmer": { + "price": 74999999, + "name": "Superior Dragon Helmet" + }, + "wise_dragon_helmet_skinned_wise_baby": { + "price": 265000000, + "name": "Wise Dragon Helmet" + }, + "wood_step:1": { + "price": 160, + "name": "Spruce Wood Slab" + }, + "pumpkin_leggings": { + "price": 14, + "name": "Pumpkin Leggings" + }, + "wood_step:4": { + "price": 160, + "name": "Acacia Wood Slab" + }, + "power_artifact": { + "price": 46400000, + "name": "Unknown" + }, + "prismarine_rod": { + "price": 10, + "name": "Prismarine Rod" + }, + "haste_block": { + "price": 51200, + "name": "Haste Block" + }, + "magic_mushroom_soup": { + "price": 1280, + "name": "Magical Mushroom Soup" + }, + "lvl_1_epic_enderman_skinned_enderman_slayer": { + "price": 449999, + "name": "Enderman" + }, + "perfect_boots_7": { + "price": 4000000, + "name": "Perfect Boots - Tier Vii" + }, + "perfect_helmet_8": { + "price": 5000000, + "name": "Helmet - Tier Viii" + }, + "builder_melon": { + "price": 10, + "name": "Melon" + }, + "gold_helmet": { + "price": 10, + "name": "Golden Helmet" + }, + "lvl_100_legendary_dolphin_candy_10": { + "price": 46300000, + "name": "Dolphin" + }, + "lvl_100_legendary_black_cat_candy_10": { + "price": 54000000, + "name": "Black Cat" + }, + "lvl_100_epic_tiger_candy_1": { + "price": 16444444, + "name": "Tiger" + }, + "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_10": { + "price": 84000000, + "name": "Blue Whale" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_10": { + "price": 195000000, + "name": "Enderman" + }, + "lvl_100_legendary_squid_skinned_squid_glow_candy_10": { + "price": 70500000, + "name": "Squid" + }, + "lvl_100_uncommon_griffin_candy_5": { + "price": 4499999, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_golem_candy_8": { + "price": 29000000, + "name": "Golem" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_red_candy_10": { + "price": 589000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_lion_candy_10": { + "price": 24500000, + "name": "Lion" + }, + "lvl_100_rare_griffin_candy_10": { + "price": 4500000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_elephant_candy_10": { + "price": 28000000, + "name": "Elephant" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_10": { + "price": 69000000, + "name": "Black Cat" + }, + "lvl_100_epic_baby_yeti_candy_10": { + "price": 33900000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_enderman_candy_10": { + "price": 53333333, + "name": "Enderman" + }, + "lvl_100_legendary_blaze_candy_10": { + "price": 86000000, + "name": "Blaze" + }, + "lvl_100_legendary_baby_yeti_skinned_yeti_grown_up_candy_10": { + "price": 125000000, + "name": "Baby Yeti" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_3": { + "price": 199000000, + "name": "Enderman" + }, + "lvl_100_epic_griffin_candy_5": { + "price": 13999000, + "name": "Griffin" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_10": { + "price": 69000000, + "name": "Black Cat" + }, + "lvl_100_legendary_sheep_candy_6": { + "price": 6990000, + "name": "Sheep" + }, + "lvl_100_legendary_sheep_skinned_sheep_black_candy_10": { + "price": 1450000000, + "name": "Sheep" + }, + "lvl_100_legendary_megalodon_candy_8": { + "price": 27200000, + "name": "Megalodon" + }, + "lvl_100_legendary_ender_dragon_candy_10": { + "price": 819000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_candy_10": { + "price": 530000000, + "name": "Ender Dragon" + }, + "lvl_100_mythic_enderman_candy_1": { + "price": 44000000, + "name": "Enderman" + }, + "lvl_100_legendary_blue_whale_candy_10": { + "price": 45000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_1": { + "price": 36999999, + "name": "Elephant" + }, + "lvl_100_epic_tiger_candy_2": { + "price": 17500000, + "name": "Tiger" + }, + "lvl_100_legendary_wither_skeleton_candy_10": { + "price": 13000000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_6": { + "price": 44999999, + "name": "Tiger" + }, + "lvl_100_legendary_golem_candy_2": { + "price": 21899000, + "name": "Golem" + }, + "lvl_100_legendary_tiger_candy_10": { + "price": 28000000, + "name": "Tiger" + }, + "lvl_100_legendary_griffin_candy_10": { + "price": 45988000, + "name": "Griffin" + }, + "lvl_100_legendary_tiger_candy_6": { + "price": 37900000, + "name": "Tiger" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_10": { + "price": 46100000, + "name": "Enderman" + }, + "lvl_100_legendary_megalodon_candy_10": { + "price": 26700000, + "name": "Megalodon" + }, + "lvl_100_legendary_skeleton_horse_candy_10": { + "price": 34000000, + "name": "Skeleton Horse" + }, + "lvl_100_legendary_bal_candy_10": { + "price": 50000000, + "name": "Bal" + }, + "lvl_100_epic_ender_dragon_candy_3": { + "price": 525000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_bee_candy_10": { + "price": 20500000, + "name": "Bee" + }, + "lvl_100_legendary_elephant_skinned_elephant_orange_candy_10": { + "price": 295555555, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_candy_5": { + "price": 28600000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skinned_elephant_green_candy_10": { + "price": 99000000, + "name": "Elephant" + }, + "lvl_100_mythic_enderman_candy_2": { + "price": 39000000, + "name": "Enderman" + }, + "lvl_100_legendary_golem_candy_10": { + "price": 10000000, + "name": "Golem" + }, + "lvl_100_legendary_turtle_candy_2": { + "price": 28900000, + "name": "Turtle" + }, + "lvl_100_legendary_bal_candy_7": { + "price": 33800000, + "name": "Bal" + }, + "lvl_100_epic_dolphin_candy_10": { + "price": 14000000, + "name": "Dolphin" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple_candy_10": { + "price": 514900000, + "name": "Ender Dragon" + }, + "lvl_100_epic_griffin_candy_1": { + "price": 13499000, + "name": "Griffin" + }, + "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_7": { + "price": 37500000, + "name": "Endermite" + }, + "lvl_100_epic_baby_yeti_candy_5": { + "price": 34000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_rabbit_candy_4": { + "price": 7500000, + "name": "Rabbit" + }, + "lvl_100_legendary_ocelot_candy_2": { + "price": 22999000, + "name": "Ocelot" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_10": { + "price": 44000000, + "name": "Tiger" + }, + "lvl_100_legendary_sheep_candy_8": { + "price": 50000000, + "name": "Sheep" + }, + "lvl_100_epic_griffin_candy_10": { + "price": 13999000, + "name": "Griffin" + }, + "lvl_100_legendary_sheep_candy_10": { + "price": 14000000, + "name": "Sheep" + }, + "lvl_100_mythic_enderman_candy_10": { + "price": 39999999, + "name": "Enderman" + }, + "lvl_100_epic_griffin_candy_4": { + "price": 10450000, + "name": "Griffin" + }, + "lvl_100_legendary_turtle_candy_10": { + "price": 28900000, + "name": "Turtle" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_2": { + "price": 199999999, + "name": "Enderman" + }, + "lvl_100_rare_dolphin_candy_10": { + "price": 4700000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_black_cat_candy_5": { + "price": 58700000, + "name": "Black Cat" + }, + "lvl_100_legendary_skeleton_candy_10": { + "price": 15000000, + "name": "Skeleton" + }, + "lvl_100_legendary_wither_skeleton_skinned_wither_candy_10": { + "price": 142000000, + "name": "Wither Skeleton" + }, + "lvl_100_epic_baby_yeti_candy_1": { + "price": 44000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_6": { + "price": 69000000, + "name": "Black Cat" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_blue_candy_10": { + "price": 909999999, + "name": "Ender Dragon" + }, + "lvl_100_epic_griffin_candy_6": { + "price": 10500000, + "name": "Griffin" + }, + "lvl_100_legendary_tiger_skinned_tiger_twilight_candy_10": { + "price": 550000000, + "name": "Tiger" + }, + "lvl_100_legendary_wolf_candy_1": { + "price": 16900000, + "name": "Wolf" + }, + "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_1": { + "price": 80000000, + "name": "Blue Whale" + }, + "lvl_100_epic_baby_yeti_skinned_yeti_grown_up_candy_10": { + "price": 89999000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_elephant_skinned_elephant_red_candy_8": { + "price": 149000000, + "name": "Elephant" + }, + "lvl_100_legendary_spider_candy_1": { + "price": 40000000, + "name": "Spider" + }, + "lvl_100_legendary_hound_candy_10": { + "price": 28500000, + "name": "Hound" + }, + "lvl_100_rare_griffin_candy_9": { + "price": 5950000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_10": { + "price": 215000000, + "name": "Sheep" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_10": { + "price": 130000000, + "name": "Rabbit" + }, + "lvl_100_uncommon_griffin_candy_10": { + "price": 4490000, + "name": "Uncommon Griffin" + }, + "lvl_100_epic_baby_yeti_skinned_yeti_grown_up_candy_9": { + "price": 250000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_elephant_skinned_elephant_blue_candy_3": { + "price": 400000000, + "name": "Elephant" + }, + "lvl_100_legendary_golem_candy_1": { + "price": 22499000, + "name": "Golem" + }, + "lvl_100_legendary_monkey_candy_10": { + "price": 60500000, + "name": "Monkey" + }, + "lvl_100_legendary_rock_skinned_rock_embarrassed_candy_10": { + "price": 588000000, + "name": "Rock" + }, + "lvl_100_uncommon_griffin_candy_2": { + "price": 4000000, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_baby_yeti_candy_10": { + "price": 55555555, + "name": "Baby Yeti" + }, + "lvl_100_legendary_rabbit_candy_3": { + "price": 7100000, + "name": "Rabbit" + }, + "lvl_100_legendary_squid_candy_1": { + "price": 41988000, + "name": "Squid" + }, + "lvl_100_legendary_mithril_golem_candy_2": { + "price": 7350000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_rabbit_candy_2": { + "price": 8190000, + "name": "Rabbit" + }, + "lvl_100_legendary_wolf_candy_5": { + "price": 19500000, + "name": "Wolf" + }, + "lvl_100_epic_baby_yeti_candy_8": { + "price": 38500000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_elephant_skinned_elephant_red_candy_5": { + "price": 159000000, + "name": "Elephant" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_10": { + "price": 36000000, + "name": "Rabbit" + }, + "lvl_100_legendary_pig_candy_10": { + "price": 20000000, + "name": "Pig" + }, + "lvl_100_legendary_blue_whale_candy_8": { + "price": 42000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_giraffe_candy_8": { + "price": 40000000, + "name": "Giraffe" + }, + "lvl_100_mythic_enderman_candy_6": { + "price": 51000000, + "name": "Enderman" + }, + "lvl_100_legendary_bat_candy_10": { + "price": 12345678, + "name": "Bat" + }, + "lvl_100_legendary_skeleton_candy_8": { + "price": 17990000, + "name": "Skeleton" + }, + "lvl_100_epic_dolphin_candy_2": { + "price": 13000000, + "name": "Dolphin" + }, + "lvl_100_legendary_bat_candy_5": { + "price": 11000000, + "name": "Bat" + }, + "lvl_100_legendary_spider_candy_10": { + "price": 30000000, + "name": "Spider" + }, + "lvl_100_mythic_enderman_candy_9": { + "price": 59899998, + "name": "Enderman" + }, + "lvl_100_legendary_griffin_candy_5": { + "price": 51000000, + "name": "Griffin" + }, + "lvl_100_legendary_elephant_skinned_elephant_purple_candy_10": { + "price": 93000000, + "name": "Elephant" + }, + "lvl_100_uncommon_griffin_candy_4": { + "price": 4099999, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_sheep_skinned_sheep_purple_candy_10": { + "price": 400000000, + "name": "Sheep" + }, + "lvl_100_legendary_wither_skeleton_skinned_wither_candy_4": { + "price": 77999999, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_2": { + "price": 34000000, + "name": "Rabbit" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_1": { + "price": 74000000, + "name": "Black Cat" + }, + "lvl_100_epic_guardian_candy_10": { + "price": 2400000, + "name": "Guardian" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_red_candy_1": { + "price": 530000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_elephant_skinned_elephant_purple_candy_3": { + "price": 95999999, + "name": "Elephant" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_5": { + "price": 227000000, + "name": "Enderman" + }, + "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_2": { + "price": 85000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_giraffe_candy_10": { + "price": 39000000, + "name": "Giraffe" + }, + "lvl_100_legendary_monkey_candy_5": { + "price": 55000000, + "name": "Monkey" + }, + "lvl_100_epic_phoenix_candy_6": { + "price": 30000000, + "name": "Phoenix" + }, + "lvl_100_legendary_tiger_candy_1": { + "price": 41500000, + "name": "Tiger" + }, + "lvl_100_mythic_enderman_candy_3": { + "price": 39000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_7": { + "price": 47000000, + "name": "Enderman" + }, + "lvl_100_legendary_squid_candy_10": { + "price": 34000000, + "name": "Squid" + }, + "lvl_100_epic_tiger_candy_9": { + "price": 14000000, + "name": "Tiger" + }, + "lvl_100_epic_mithril_golem_candy_1": { + "price": 3800000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_10": { + "price": 250000000, + "name": "Sheep" + }, + "lvl_100_epic_baby_yeti_candy_6": { + "price": 38960000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_griffin_candy_8": { + "price": 41000000, + "name": "Griffin" + }, + "lvl_100_rare_guardian_candy_1": { + "price": 2550000, + "name": "Rare Guardian" + }, + "lvl_100_legendary_wolf_candy_10": { + "price": 16900000, + "name": "Wolf" + }, + "lvl_100_legendary_horse_candy_10": { + "price": 37000000, + "name": "Horse" + }, + "lvl_100_epic_rabbit_candy_10": { + "price": 8000000, + "name": "Rabbit" + }, + "lvl_100_epic_mithril_golem_candy_3": { + "price": 3499999, + "name": "Mithril Golem" + }, + "lvl_100_legendary_jerry_skinned_jerry_green_elf_candy_10": { + "price": 220000000, + "name": "Jerry" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue_candy_10": { + "price": 540000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_tiger_candy_10": { + "price": 16444444, + "name": "Tiger" + }, + "lvl_100_legendary_ghoul_candy_10": { + "price": 25000000, + "name": "Ghoul" + }, + "lvl_200_legendary_golden_dragon_candy_10": { + "price": 1298900000, + "name": "Golden Dragon" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_7": { + "price": 76000000, + "name": "Black Cat" + }, + "lvl_100_epic_scatha_candy_7": { + "price": 840000000, + "name": "Scatha" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_pastel_candy_2": { + "price": 545000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_elephant_candy_9": { + "price": 29990000, + "name": "Elephant" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_10": { + "price": 52000000, + "name": "Elephant" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_pastel_candy_10": { + "price": 525000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_9": { + "price": 69999999, + "name": "Black Cat" + }, + "lvl_100_legendary_ammonite_candy_10": { + "price": 28000000, + "name": "Ammonite" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_9": { + "price": 35000000, + "name": "Enderman" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_candy_2": { + "price": 62000000, + "name": "Silverfish" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_1": { + "price": 222222222, + "name": "Sheep" + }, + "lvl_100_legendary_blue_whale_skinned_whale_orca_candy_4": { + "price": 80000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_squid_candy_7": { + "price": 29999999, + "name": "Squid" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_2": { + "price": 38500000, + "name": "Enderman" + }, + "lvl_100_epic_tiger_candy_3": { + "price": 19500000, + "name": "Tiger" + }, + "lvl_100_legendary_bat_candy_1": { + "price": 8888888, + "name": "Bat" + }, + "lvl_100_legendary_elephant_skinned_elephant_pink_candy_10": { + "price": 377777777, + "name": "Elephant" + }, + "lvl_100_legendary_monkey_skinned_monkey_gorilla_candy_10": { + "price": 75000000, + "name": "Monkey" + }, + "lvl_100_legendary_bal_candy_3": { + "price": 39900000, + "name": "Bal" + }, + "lvl_100_epic_mithril_golem_candy_8": { + "price": 5300000, + "name": "Mithril Golem" + }, + "lvl_100_rare_griffin_candy_5": { + "price": 4900000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_baby_yeti_candy_5": { + "price": 47998000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_jerry_candy_10": { + "price": 45000000, + "name": "Jerry" + }, + "lvl_100_legendary_elephant_candy_2": { + "price": 31990000, + "name": "Elephant" + }, + "lvl_100_epic_ender_dragon_candy_5": { + "price": 539000000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_blaze_candy_9": { + "price": 91999999, + "name": "Blaze" + }, + "lvl_100_legendary_wither_skeleton_candy_3": { + "price": 15000000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_sheep_skinned_sheep_pink_candy_10": { + "price": 777777777, + "name": "Sheep" + }, + "lvl_100_legendary_griffin_candy_1": { + "price": 53000000, + "name": "Griffin" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_7": { + "price": 288999999, + "name": "Sheep" + }, + "lvl_100_legendary_baby_yeti_candy_1": { + "price": 58888888, + "name": "Baby Yeti" + }, + "lvl_100_legendary_elephant_skinned_elephant_red_candy_1": { + "price": 135000000, + "name": "Elephant" + }, + "lvl_100_rare_griffin_candy_1": { + "price": 5500000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_hound_skinned_hound_beagle_candy_10": { + "price": 39000000, + "name": "Hound" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_1": { + "price": 55000000, + "name": "Enderman" + }, + "lvl_100_legendary_griffin_candy_6": { + "price": 45950000, + "name": "Griffin" + }, + "lvl_100_legendary_rock_skinned_rock_cool_candy_6": { + "price": 840000000, + "name": "Rock" + }, + "lvl_100_legendary_blue_whale_candy_1": { + "price": 43500000, + "name": "Blue Whale" + }, + "lvl_100_mythic_enderman_candy_8": { + "price": 35000000, + "name": "Enderman" + }, + "lvl_100_legendary_black_cat_candy_1": { + "price": 66666666, + "name": "Black Cat" + }, + "lvl_100_epic_baby_yeti_candy_3": { + "price": 43000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_bat_skinned_bat_vampire_candy_3": { + "price": 35000000, + "name": "Bat" + }, + "lvl_100_legendary_rabbit_candy_6": { + "price": 7800000, + "name": "Rabbit" + }, + "lvl_100_legendary_tiger_candy_9": { + "price": 27999999, + "name": "Tiger" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_rose_candy_8": { + "price": 44500000, + "name": "Rabbit" + }, + "lvl_100_legendary_tarantula_candy_10": { + "price": 28500000, + "name": "Tarantula" + }, + "lvl_100_legendary_sheep_skinned_sheep_light_blue_candy_10": { + "price": 630000000, + "name": "Sheep" + }, + "lvl_100_legendary_bat_skinned_bat_vampire_candy_10": { + "price": 35000000, + "name": "Bat" + }, + "lvl_100_rare_griffin_candy_2": { + "price": 4800000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_dolphin_candy_1": { + "price": 40000000, + "name": "Dolphin" + }, + "lvl_100_epic_tiger_candy_6": { + "price": 14300000, + "name": "Tiger" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_candy_3": { + "price": 75000000, + "name": "Silverfish" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_3": { + "price": 37000000, + "name": "Elephant" + }, + "lvl_100_rare_guardian_candy_10": { + "price": 1400000, + "name": "Rare Guardian" + }, + "lvl_100_legendary_rabbit_candy_5": { + "price": 6400000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_candy_1": { + "price": 8999900, + "name": "Rabbit" + }, + "lvl_100_epic_enderman_skinned_enderman_slayer": { + "price": 17999000, + "name": "Enderman" + }, + "lvl_100_legendary_wither_skeleton_candy_1": { + "price": 9500000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_monkey_candy_1": { + "price": 46000000, + "name": "Monkey" + }, + "lvl_100_legendary_black_cat_candy_9": { + "price": 65000000, + "name": "Black Cat" + }, + "lvl_100_legendary_tiger_candy_3": { + "price": 44999999, + "name": "Tiger" + }, + "lvl_100_legendary_griffin_candy_4": { + "price": 45897000, + "name": "Griffin" + }, + "lvl_100_legendary_lion_candy_1": { + "price": 43330000, + "name": "Lion" + }, + "lvl_100_legendary_sheep_candy_3": { + "price": 7000000, + "name": "Sheep" + }, + "lvl_100_legendary_elephant_candy_7": { + "price": 27500000, + "name": "Elephant" + }, + "lvl_100_legendary_tiger_candy_5": { + "price": 34500000, + "name": "Tiger" + }, + "lvl_100_epic_baby_yeti_candy_2": { + "price": 33000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_skeleton_candy_1": { + "price": 24999999, + "name": "Skeleton" + }, + "lvl_100_epic_guardian_candy_1": { + "price": 2500000, + "name": "Guardian" + }, + "lvl_100_legendary_blue_whale_candy_2": { + "price": 48900000, + "name": "Blue Whale" + }, + "lvl_100_legendary_blue_whale_candy_5": { + "price": 48340000, + "name": "Blue Whale" + }, + "lvl_100_legendary_griffin_candy_2": { + "price": 41500000, + "name": "Griffin" + }, + "lvl_100_mythic_enderman_candy_4": { + "price": 50000000, + "name": "Enderman" + }, + "lvl_100_legendary_endermite_candy_4": { + "price": 8500000, + "name": "Endermite" + }, + "lvl_100_legendary_elephant_candy_6": { + "price": 32400000, + "name": "Elephant" + }, + "lvl_100_legendary_squid_skinned_squid_glow_candy_8": { + "price": 64444444, + "name": "Squid" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_5": { + "price": 52000000, + "name": "Elephant" + }, + "lvl_100_legendary_wolf_candy_2": { + "price": 17400000, + "name": "Wolf" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_yellow_candy_10": { + "price": 252222222, + "name": "Sheep" + }, + "lvl_100_legendary_elephant_skinned_elephant_blue_candy_10": { + "price": 350000000, + "name": "Elephant" + }, + "perfect_leggings_6": { + "price": 3000000, + "name": "Leggings - Tier Vi" + }, + "lvl_100_epic_baby_yeti_candy_9": { + "price": 44000000, + "name": "Baby Yeti" + }, + "old_dragon_helmet_skinned_old_baby": { + "price": 170000000, + "name": "Old Dragon Helmet" + }, + "lvl_100_epic_silverfish_candy_2": { + "price": 2000000, + "name": "Silverfish" + }, + "lvl_100_legendary_wolf_skinned_wolf_candy_3": { + "price": 46464646, + "name": "Wolf" + }, + "lvl_100_legendary_sheep_candy_2": { + "price": 33900000, + "name": "Sheep" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_candy_1": { + "price": 89000000, + "name": "Silverfish" + }, + "lvl_100_legendary_elephant_skinned_elephant_green_candy_1": { + "price": 89000000, + "name": "Elephant" + }, + "lvl_100_legendary_sheep_candy_1": { + "price": 37777777, + "name": "Sheep" + }, + "lvl_100_legendary_guardian_skinned_guardian_candy_4": { + "price": 210000000, + "name": "Guardian" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_5": { + "price": 48999999, + "name": "Enderman" + }, + "lvl_100_legendary_lion_candy_5": { + "price": 48796969, + "name": "Lion" + }, + "lvl_100_legendary_bal_candy_6": { + "price": 84000000, + "name": "Bal" + }, + "lvl_100_legendary_tiger_candy_7": { + "price": 28500000, + "name": "Tiger" + }, + "lvl_100_uncommon_griffin_candy_3": { + "price": 5152894, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_2": { + "price": 40000000, + "name": "Elephant" + }, + "stone_sword": { + "price": 1, + "name": "Stone Sword" + }, + "lvl_100_legendary_wither_skeleton_candy_2": { + "price": 11000000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_elephant_candy_1": { + "price": 31990000, + "name": "Elephant" + }, + "lvl_100_epic_enderman_candy_1": { + "price": 8000000, + "name": "Enderman" + }, + "lvl_100_legendary_sheep_candy_9": { + "price": 33000000, + "name": "Sheep" + }, + "lvl_100_legendary_guardian_candy_1": { + "price": 5490000, + "name": "Guardian" + }, + "lvl_100_legendary_silverfish_candy_10": { + "price": 5000000, + "name": "Silverfish" + }, + "lvl_100_legendary_black_cat_candy_7": { + "price": 59000000, + "name": "Black Cat" + }, + "lvl_100_legendary_blue_whale_candy_7": { + "price": 52200000, + "name": "Blue Whale" + }, + "wool:12": { + "price": 640, + "name": "Brown Wool" + }, + "lvl_1_common_enderman_skinned_enderman_slayer": { + "price": 250000, + "name": "Common Enderman" + }, + "lvl_100_legendary_armadillo_candy_3": { + "price": 8700000, + "name": "Armadillo" + }, + "lvl_100_rare_dolphin_candy_1": { + "price": 5000000, + "name": "Rare Dolphin" + }, + "lvl_100_epic_tiger_skinned_tiger_saber_tooth": { + "price": 19900000, + "name": "Tiger" + }, + "lvl_100_legendary_skeleton_candy_9": { + "price": 18000000, + "name": "Skeleton" + }, + "lvl_100_epic_baby_yeti_candy_7": { + "price": 35500000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_black_cat_candy_8": { + "price": 60000000, + "name": "Black Cat" + }, + "lvl_100_legendary_black_cat_candy_4": { + "price": 57999990, + "name": "Black Cat" + }, + "lvl_100_legendary_wither_skeleton_candy_4": { + "price": 10700000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_bal_candy_8": { + "price": 83000000, + "name": "Bal" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_3": { + "price": 47444000, + "name": "Tiger" + }, + "lvl_100_epic_tiger_candy_7": { + "price": 17000000, + "name": "Tiger" + }, + "lvl_100_legendary_sheep_candy_4": { + "price": 8000000, + "name": "Sheep" + }, + "wood_step:3": { + "price": 160, + "name": "Jungle Wood Slab" + }, + "step": { + "price": 3, + "name": "Stone Slab" + }, + "wood_step:2": { + "price": 32, + "name": "Birch Wood Slab" + }, + "stained_glass_pane:7": { + "price": 240, + "name": "Gray Stained Glass Pane" + }, + "lvl_100_legendary_wither_skeleton_candy_6": { + "price": 9990000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_onyx_candy_6": { + "price": 76000000, + "name": "Black Cat" + }, + "lvl_100_legendary_mithril_golem_candy_3": { + "price": 10000000, + "name": "Mithril Golem" + }, + "lvl_100_uncommon_griffin_candy_1": { + "price": 4000000, + "name": "Uncommon Griffin" + }, + "stone_pickaxe": { + "price": 2, + "name": "Stone Pickaxe" + }, + "lvl_100_epic_dolphin_candy_5": { + "price": 13199999, + "name": "Dolphin" + }, + "lvl_100_legendary_enderman_candy_2": { + "price": 65000000, + "name": "Enderman" + }, + "lvl_100_legendary_skeleton_candy_5": { + "price": 24000000, + "name": "Skeleton" + }, + "lvl_100_legendary_silverfish_candy_1": { + "price": 4400000, + "name": "Silverfish" + }, + "lvl_100_legendary_snowman_candy_10": { + "price": 42999999, + "name": "Snowman" + }, + "lvl_100_epic_sheep_candy_2": { + "price": 3100000, + "name": "Sheep" + }, + "builder_lilac_fruit": { + "price": 100, + "name": "Lilac Fruit" + }, + "cleaver": { + "price": 8, + "name": "Cleaver" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_6": { + "price": 50000000, + "name": "Enderman" + }, + "lvl_100_legendary_guardian_candy_10": { + "price": 9450000, + "name": "Guardian" + }, + "smooth_stairs": { + "price": 64, + "name": "Stone Brick Stairs" + }, + "lvl_100_legendary_elephant_candy_3": { + "price": 29000000, + "name": "Elephant" + }, + "lvl_100_legendary_bat_skinned_bat_vampire_candy_2": { + "price": 35499999, + "name": "Bat" + }, + "lvl_100_legendary_armadillo_candy_10": { + "price": 6200000, + "name": "Armadillo" + }, + "compass": { + "price": 12, + "name": "Compass" + }, + "lvl_100_legendary_lion_candy_10": { + "price": 43000000, + "name": "Lion" + }, + "lvl_100_legendary_flying_fish_candy_8": { + "price": 37000000, + "name": "Flying Fish" + }, + "lvl_100_legendary_silverfish_candy_9": { + "price": 3500000, + "name": "Silverfish" + }, + "lvl_100_rare_dolphin_candy_9": { + "price": 3500000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_tiger_candy_4": { + "price": 28000000, + "name": "Tiger" + }, + "lvl_100_legendary_squid_candy_2": { + "price": 36000000, + "name": "Squid" + }, + "sapling:2": { + "price": 2, + "name": "Birch Sapling" + }, + "lvl_100_legendary_jellyfish_candy_4": { + "price": 19000000, + "name": "Jellyfish" + }, + "lvl_100_legendary_blue_whale_candy_6": { + "price": 50777777, + "name": "Blue Whale" + }, + "lvl_100_legendary_flying_fish_candy_2": { + "price": 24000000, + "name": "Flying Fish" + }, + "lvl_100_legendary_bal_candy_2": { + "price": 40000000, + "name": "Bal" + }, + "lvl_100_legendary_griffin_candy_3": { + "price": 50949000, + "name": "Griffin" + }, + "simple_carrot_candy": { + "price": 5, + "name": "Carrot Candy" + }, + "lvl_100_rare_griffin_candy_8": { + "price": 4800000, + "name": "Rare Griffin" + }, + "fence_gate": { + "price": 320, + "name": "Oak Fence Gate" + }, + "lvl_100_legendary_griffin_candy_7": { + "price": 43000000, + "name": "Griffin" + }, + "lvl_100_legendary_blue_whale_candy_4": { + "price": 46500000, + "name": "Blue Whale" + }, + "lvl_100_legendary_sheep_candy_5": { + "price": 6500000, + "name": "Sheep" + }, + "lvl_100_legendary_rabbit_candy_10": { + "price": 8222222, + "name": "Rabbit" + }, + "lvl_1_mythic_enderman_skinned_enderman_slayer": { + "price": 39000000, + "name": "Unknown" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_6": { + "price": 37500000, + "name": "Elephant" + }, + "theoretical_hoe": { + "price": 900000, + "name": "Unknown" + }, + "theoretical_hoe_carrot_1": { + "price": 900000, + "name": "Unknown" + }, + "theoretical_hoe_carrot_2": { + "price": 2000000, + "name": "Unknown" + }, + "lvl_100_legendary_mithril_golem_candy_1": { + "price": 7000000, + "name": "Mithril Golem" + }, + "theoretical_hoe_carrot_3": { + "price": 19000000, + "name": "Unknown" + }, + "theoretical_hoe_warts_1": { + "price": 900000, + "name": "Unknown" + }, + "theoretical_hoe_warts_2": { + "price": 2500000, + "name": "Unknown" + }, + "theoretical_hoe_warts_3": { + "price": 19000000, + "name": "Unknown" + }, + "theoretical_hoe_cane_1": { + "price": 1000000, + "name": "Unknown" + }, + "theoretical_hoe_cane_2": { + "price": 2700000, + "name": "Unknown" + }, + "theoretical_hoe_cane_3": { + "price": 20000000, + "name": "Unknown" + }, + "theoretical_hoe_potato_1": { + "price": 1000000, + "name": "Unknown" + }, + "lvl_100_uncommon_griffin_candy_8": { + "price": 3800000, + "name": "Uncommon Griffin" + }, + "theoretical_hoe_potato_2": { + "price": 2400000, + "name": "Unknown" + }, + "theoretical_hoe_potato_3": { + "price": 18000000, + "name": "Unknown" + }, + "theoretical_hoe_wheat_1": { + "price": 900000, + "name": "Unknown" + }, + "theoretical_hoe_wheat_2": { + "price": 3000000, + "name": "Unknown" + }, + "theoretical_hoe_wheat_3": { + "price": 80000000, + "name": "Unknown" + }, + "pumpkin_dicer": { + "price": 1000000, + "name": "Unknown" + }, + "lvl_100_rare_dolphin_candy_3": { + "price": 6000000, + "name": "Rare Dolphin" + }, + "melon_dicer": { + "price": 1000000, + "name": "Unknown" + }, + "lvl_100_epic_armadillo_candy_2": { + "price": 4000000, + "name": "Armadillo" + }, + "leaves:1": { + "price": 128, + "name": "Spruce Leaves" + }, + "lvl_100_epic_sheep_candy_7": { + "price": 3500000, + "name": "Sheep" + }, + "lvl_100_legendary_squid_candy_4": { + "price": 29500000, + "name": "Squid" + }, + "lvl_100_legendary_elephant_candy_4": { + "price": 30000000, + "name": "Elephant" + }, + "wood_axe": { + "price": 5, + "name": "Wooden Axe" + }, + "lvl_100_legendary_monkey_skinned_monkey_golden_candy_8": { + "price": 99999999, + "name": "Monkey" + }, + "lvl_100_legendary_dolphin_candy_7": { + "price": 43000000, + "name": "Dolphin" + }, + "wood_stairs": { + "price": 70, + "name": "Oak Wood Stairs" + }, + "lvl_100_epic_baby_yeti_candy_4": { + "price": 35000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_candy_10": { + "price": 230000000, + "name": "Rabbit" + }, + "farmer_rod": { + "price": 2000, + "name": "Farmer's Rod" + }, + "lvl_100_legendary_griffin_candy_9": { + "price": 48000000, + "name": "Griffin" + }, + "lvl_100_legendary_wolf_candy_3": { + "price": 15999990, + "name": "Wolf" + }, + "lvl_100_common_griffin_candy_8": { + "price": 7000000, + "name": "Common Griffin" + }, + "trap_door": { + "price": 15, + "name": "Wooden Trapdoor" + }, + "anvil": { + "price": 1350, + "name": "Anvil" + }, + "lvl_100_epic_bal": { + "price": 20000000, + "name": "Bal" + }, + "lvl_100_rare_pig": { + "price": 300000, + "name": "Unknown" + }, + "lvl_100_epic_tarantula": { + "price": 5000000, + "name": "Tarantula" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_7": { + "price": 43900000, + "name": "Rabbit" + }, + "lvl_100_legendary_wither_skeleton_candy_5": { + "price": 15000000, + "name": "Wither Skeleton" + }, + "end_biome_stick": { + "price": 128, + "name": "End Biome Stick" + }, + "lvl_100_legendary_wolf_candy_7": { + "price": 22000000, + "name": "Wolf" + }, + "lvl_100_legendary_bal_candy_4": { + "price": 110000000, + "name": "Bal" + }, + "speckled_melon": { + "price": 1120, + "name": "Glistering Melon" + }, + "forest_biome_stick": { + "price": 100, + "name": "Forest Biome Stick" + }, + "lvl_100_legendary_blue_whale_candy_9": { + "price": 54998000, + "name": "Blue Whale" + }, + "lvl_100_rare_griffin_candy_4": { + "price": 5800000, + "name": "Rare Griffin" + }, + "web": { + "price": 1450, + "name": "Web" + }, + "lvl_100_uncommon_tiger": { + "price": 4999999, + "name": "Uncommon Tiger" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_red_candy_10": { + "price": 799999999, + "name": "Ender Dragon" + }, + "lvl_100_legendary_blaze_candy_5": { + "price": 86000000, + "name": "Blaze" + }, + "magma_cube_head": { + "price": 160, + "name": "Magma Cube Head" + }, + "lvl_100_legendary_squid_candy_3": { + "price": 30999999, + "name": "Squid" + }, + "lvl_100_legendary_guardian_candy_2": { + "price": 6000000, + "name": "Guardian" + }, + "lvl_100_legendary_squid_skinned_squid_glow_candy_1": { + "price": 68988000, + "name": "Squid" + }, + "lvl_100_mythic_enderman_candy_5": { + "price": 39499000, + "name": "Enderman" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_2": { + "price": 36000000, + "name": "Rabbit" + }, + "lvl_100_uncommon_griffin_candy_6": { + "price": 4000000, + "name": "Uncommon Griffin" + }, + "stone:1": { + "price": 140, + "name": "Granite" + }, + "lvl_100_legendary_ammonite_candy_5": { + "price": 38500000, + "name": "Ammonite" + }, + "lvl_100_legendary_skeleton_candy_7": { + "price": 27000000, + "name": "Skeleton" + }, + "sugar": { + "price": 10, + "name": "Sugar" + }, + "lvl_100_rare_griffin_candy_7": { + "price": 5300000, + "name": "Rare Griffin" + }, + "lvl_100_legendary_wither_skeleton_candy_8": { + "price": 9500000, + "name": "Wither Skeleton" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_1": { + "price": 61000000, + "name": "Tiger" + }, + "lvl_100_epic_griffin_candy_8": { + "price": 13000000, + "name": "Griffin" + }, + "lvl_100_epic_silverfish_candy_5": { + "price": 2999999, + "name": "Silverfish" + }, + "lvl_100_epic_jellyfish_candy_1": { + "price": 4000000, + "name": "Jellyfish" + }, + "lvl_100_epic_rabbit_candy_2": { + "price": 6750000, + "name": "Rabbit" + }, + "lvl_100_legendary_mithril_golem_candy_10": { + "price": 6400000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_baby_yeti_candy_8": { + "price": 52500000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_flying_fish_candy_10": { + "price": 38000000, + "name": "Flying Fish" + }, + "lvl_1_rare_enderman_skinned_enderman_slayer": { + "price": 240000, + "name": "Rare Enderman" + }, + "lvl_100_legendary_bal_candy_1": { + "price": 47000000, + "name": "Bal" + }, + "quartz_ore": { + "price": 1500, + "name": "Nether Quartz Ore" + }, + "lvl_100_rare_griffin_candy_3": { + "price": 6300000, + "name": "Rare Griffin" + }, + "lvl_100_epic_mithril_golem_candy_2": { + "price": 3800000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_ammonite_candy_4": { + "price": 37000000, + "name": "Ammonite" + }, + "lvl_100_uncommon_griffin_candy_7": { + "price": 5000000, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_baby_yeti_candy_6": { + "price": 58000000, + "name": "Baby Yeti" + }, + "lvl_100_legendary_skeleton_candy_3": { + "price": 17499900, + "name": "Skeleton" + }, + "lvl_100_epic_dolphin_candy_9": { + "price": 16355555, + "name": "Dolphin" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_3": { + "price": 38000000, + "name": "Enderman" + }, + "sapling:3": { + "price": 40, + "name": "Jungle Sapling" + }, + "lvl_100_legendary_zombie_candy_10": { + "price": 40000000, + "name": "Zombie" + }, + "lvl_100_epic_guardian_candy_9": { + "price": 3000000, + "name": "Guardian" + }, + "lvl_100_legendary_rabbit_candy_9": { + "price": 6450000, + "name": "Rabbit" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_1": { + "price": 35000000, + "name": "Rabbit" + }, + "lvl_100_legendary_blaze_candy_3": { + "price": 95000000, + "name": "Blaze" + }, + "double_plant:5": { + "price": 64, + "name": "Peony" + }, + "lvl_100_epic_guardian_candy_8": { + "price": 3100000, + "name": "Guardian" + }, + "lvl_100_legendary_ammonite_candy_2": { + "price": 41800000, + "name": "Ammonite" + }, + "stained_glass_pane:14": { + "price": 240, + "name": "Red Stained Glass Pane" + }, + "stained_glass_pane:8": { + "price": 240, + "name": "Gray Stained Glass Pane" + }, + "lvl_1_rare_endermite": { + "price": 450000, + "name": "Rare Endermite" + }, + "lvl_100_legendary_golem_candy_3": { + "price": 21000000, + "name": "Golem" + }, + "lvl_100_legendary_sheep_candy_7": { + "price": 7499999, + "name": "Sheep" + }, + "builder_orange": { + "price": 10, + "name": "Orange" + }, + "lvl_100_legendary_blue_whale_candy_3": { + "price": 48000000, + "name": "Blue Whale" + }, + "lvl_100_epic_dolphin_candy_1": { + "price": 16455555, + "name": "Dolphin" + }, + "lvl_100_legendary_black_cat_candy_3": { + "price": 56000000, + "name": "Black Cat" + }, + "lvl_100_legendary_wither_skeleton_skinned_wither_candy_1": { + "price": 140000000, + "name": "Wither Skeleton" + }, + "perfect_helmet_12_skinned_perfect_forge": { + "price": 68000000, + "name": "Perfect Helmet - Tier Xii" + }, + "lvl_100_legendary_pig_candy_3": { + "price": 24000000, + "name": "Pig" + }, + "lvl_100_legendary_wither_skeleton_skinned_wither_candy_9": { + "price": 150111000, + "name": "Wither Skeleton" + }, + "lvl_100_epic_phoenix_candy_2": { + "price": 67000000, + "name": "Phoenix" + }, + "ladder": { + "price": 31, + "name": "Ladder" + }, + "lvl_100_legendary_squid_candy_5": { + "price": 30900000, + "name": "Squid" + }, + "lvl_100_legendary_rock_candy_5": { + "price": 19999000, + "name": "Rock" + }, + "lvl_100_epic_tiger_candy_5": { + "price": 16900000, + "name": "Tiger" + }, + "dirt:1": { + "price": 5, + "name": "Coarse Dirt" + }, + "spruce_wood_stairs": { + "price": 1, + "name": "Spruce Wood Stairs" + }, + "lvl_100_epic_tiger_candy_4": { + "price": 14000000, + "name": "Tiger" + }, + "lvl_100_legendary_black_cat_candy_2": { + "price": 58999999, + "name": "Black Cat" + }, + "redstone_torch_on": { + "price": 1, + "name": "Redstone Torch" + }, + "lvl_100_epic_dolphin_candy_4": { + "price": 13500000, + "name": "Dolphin" + }, + "lvl_100_epic_mithril_golem_candy_10": { + "price": 3799000, + "name": "Mithril Golem" + }, + "lvl_100_rare_mithril_golem": { + "price": 1200000, + "name": "Rare Mithril Golem" + }, + "pet_skin_blaze_frozen": { + "price": 9998000, + "name": "Frozen Blaze Skin" + }, + "lvl_100_legendary_blaze_skinned_blaze_frozen": { + "price": 60000000, + "name": "Blaze" + }, + "prismarine:1": { + "price": 50, + "name": "Prismarine Bricks" + }, + "birch_wood_stairs": { + "price": 160, + "name": "Birch Wood Stairs" + }, + "lvl_100_legendary_blaze_candy_1": { + "price": 84000000, + "name": "Blaze" + }, + "lvl_100_epic_skeleton_candy_10": { + "price": 6000000, + "name": "Skeleton" + }, + "lvl_100_epic_dolphin_candy_6": { + "price": 12000000, + "name": "Dolphin" + }, + "grilled_pork": { + "price": 775, + "name": "Cooked Porkchop" + }, + "snow_suit_helmet_skinned_snow_snowglobe": { + "price": 35000000, + "name": "Snow Suit Helmet" + }, + "builder_onion": { + "price": 50, + "name": "Onion" + }, + "lvl_100_legendary_squid_skinned_squid_glow_candy_3": { + "price": 66000000, + "name": "Squid" + }, + "lvl_100_legendary_blaze_skinned_blaze_frozen_candy_10": { + "price": 105000000, + "name": "Blaze" + }, + "lvl_100_epic_dolphin_candy_3": { + "price": 10000000, + "name": "Dolphin" + }, + "perfect_boots_11": { + "price": 6000000, + "name": "Perfect Boots - Tier Xi" + }, + "lvl_100_legendary_silverfish_candy_4": { + "price": 3700000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_candy_2": { + "price": 3790000, + "name": "Silverfish" + }, + "spray_can": { + "price": 25, + "name": "Spray Can" + }, + "stone:5": { + "price": 2, + "name": "Andesite" + }, + "lvl_100_epic_rabbit_candy_4": { + "price": 6200000, + "name": "Rabbit" + }, + "lvl_100_legendary_skeleton_candy_2": { + "price": 17980000, + "name": "Skeleton" + }, + "lvl_100_legendary_silverfish_candy_3": { + "price": 3000000, + "name": "Silverfish" + }, + "lvl_100_legendary_silverfish_candy_8": { + "price": 2999999, + "name": "Silverfish" + }, + "lvl_100_epic_blue_whale_candy_4": { + "price": 21000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_guardian_skinned_guardian_candy_10": { + "price": 250000000, + "name": "Guardian" + }, + "lvl_100_rare_tiger_candy_2": { + "price": 5000000, + "name": "Rare Tiger" + }, + "lvl_100_epic_blue_whale_candy_6": { + "price": 20000000, + "name": "Blue Whale" + }, + "lvl_100_epic_enderman_skinned_enderman_slayer_candy_2": { + "price": 20000000, + "name": "Enderman" + }, + "lvl_100_legendary_wither_skeleton_candy_7": { + "price": 10700000, + "name": "Wither Skeleton" + }, + "stained_glass_pane": { + "price": 240, + "name": "White Stained Glass Pane" + }, + "ghast_head": { + "price": 69, + "name": "Ghast Head" + }, + "lvl_100_epic_mithril_golem_candy_5": { + "price": 3950000, + "name": "Mithril Golem" + }, + "ink_sack:9": { + "price": 320, + "name": "Pink Dye" + }, + "lvl_100_legendary_enderman_candy_1": { + "price": 55000000, + "name": "Enderman" + }, + "lvl_100_legendary_blaze_candy_4": { + "price": 86000000, + "name": "Blaze" + }, + "birch_door_item": { + "price": 320, + "name": "Birch Door" + }, + "stained_glass:4": { + "price": 300, + "name": "Yellow Stained Glass" + }, + "lvl_100_legendary_mithril_golem_candy_4": { + "price": 5700000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_wolf_skinned_wolf_candy_1": { + "price": 55000000, + "name": "Wolf" + }, + "lvl_100_rare_tiger_candy_6": { + "price": 7000000, + "name": "Rare Tiger" + }, + "lvl_100_legendary_ocelot_candy_10": { + "price": 19500000, + "name": "Ocelot" + }, + "builder_apple": { + "price": 3000, + "name": "Apple" + }, + "night_saver": { + "price": 175, + "name": "Night Saver" + }, + "nether_biome_stick": { + "price": 2560, + "name": "Nether Biome Stick" + }, + "lvl_100_rare_dolphin_candy_2": { + "price": 4000000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_elephant_skinned_elephant_green_candy_3": { + "price": 97333333, + "name": "Elephant" + }, + "stone:3": { + "price": 10, + "name": "Diorite" + }, + "lvl_100_epic_phoenix_candy_9": { + "price": 24000000, + "name": "Phoenix" + }, + "cactus_chestplate": { + "price": 20, + "name": "Cactus Chestplate" + }, + "lvl_100_rare_rabbit_candy_10": { + "price": 600000, + "name": "Rare Rabbit" + }, + "lvl_100_rare_griffin_candy_6": { + "price": 7000000, + "name": "Rare Griffin" + }, + "lvl_1_legendary_ocelot_skinned_ocelot_snow_tiger": { + "price": 8000000, + "name": "Ocelot" + }, + "lvl_100_legendary_blaze_skinned_blaze_frozen_candy_7": { + "price": 135000000, + "name": "Blaze" + }, + "painting": { + "price": 320, + "name": "Painting" + }, + "lvl_100_epic_blue_whale_candy_8": { + "price": 26000000, + "name": "Blue Whale" + }, + "lvl_100_epic_blue_whale_candy_10": { + "price": 24000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_guardian_skinned_guardian_candy_1": { + "price": 249999999, + "name": "Guardian" + }, + "lvl_100_epic_silverfish_candy_1": { + "price": 2150000, + "name": "Silverfish" + }, + "gold_plate": { + "price": 8, + "name": "Weighted Pressure Plate" + }, + "lvl_100_legendary_black_cat_candy_6": { + "price": 55000000, + "name": "Black Cat" + }, + "iron_axe": { + "price": 60, + "name": "Iron Axe" + }, + "game_breaker": { + "price": 9999999999, + "name": "Game Breaker" + }, + "lvl_100_legendary_tiger_candy_2": { + "price": 27900000, + "name": "Tiger" + }, + "lvl_100_legendary_squid_candy_6": { + "price": 30850000, + "name": "Squid" + }, + "gold_boots": { + "price": 8, + "name": "Golden Boots" + }, + "lvl_100_legendary_rock_skinned_rock_laughing": { + "price": 465000000, + "name": "Unknown" + }, + "lvl_100_legendary_rock_skinned_rock_laugh": { + "price": 639999999, + "name": "Rock" + }, + "lvl_100_legendary_ocelot_skinned_ocelot_snow_tiger_candy_10": { + "price": 65000000, + "name": "Ocelot" + }, + "lvl_100_rare_dolphin_candy_6": { + "price": 7000000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_squid_candy_8": { + "price": 30000000, + "name": "Squid" + }, + "lvl_100_rare_dolphin_candy_5": { + "price": 3250000, + "name": "Rare Dolphin" + }, + "lvl_200_legendary_golden_dragon_candy_1": { + "price": 1299000000, + "name": "Golden Dragon" + }, + "lvl_100_common_griffin_candy_10": { + "price": 3500000, + "name": "Common Griffin" + }, + "double_plant:1": { + "price": 64, + "name": "Lilac" + }, + "long_grass:1": { + "price": 169, + "name": "Long Grass" + }, + "protector_baby": { + "price": 169000000, + "name": "Baby Skin" + }, + "sandstone": { + "price": 21, + "name": "Sandstone" + }, + "lvl_100_legendary_sheep_skinned_sheep_light_green": { + "price": 1000000000, + "name": "Sheep" + }, + "lvl_100_legendary_blaze_candy_6": { + "price": 92000000, + "name": "Blaze" + }, + "lvl_100_rare_dolphin_candy_4": { + "price": 5900000, + "name": "Rare Dolphin" + }, + "lvl_100_rare_elephant": { + "price": 1000000, + "name": "Rare Elephant" + }, + "lvl_100_epic_rabbit_candy_3": { + "price": 4500000, + "name": "Rabbit" + }, + "lvl_1_legendary_blaze_skinned_blaze_frozen": { + "price": 30123100, + "name": "Blaze" + }, + "rock_the_fish": { + "price": 79950000, + "name": "Rock The Fish" + }, + "lvl_100_legendary_dolphin_candy_9": { + "price": 50000000, + "name": "Dolphin" + }, + "lvl_100_common_dolphin_candy_8": { + "price": 500000, + "name": "Common Dolphin" + }, + "soulflow_pile": { + "price": 800, + "name": "Soulflow Pile" + }, + "builder_lemon": { + "price": 50, + "name": "Lemon" + }, + "lvl_100_common_bee": { + "price": 350000, + "name": "Common Bee" + }, + "lvl_100_epic_silverfish_candy_10": { + "price": 1899000, + "name": "Silverfish" + }, + "lvl_100_legendary_black_cat_skinned_black_cat_ivory_candy_7": { + "price": 61000000, + "name": "Black Cat" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_5": { + "price": 58000000, + "name": "Tiger" + }, + "ultimate_chimera_2": { + "price": 215000000, + "name": "Ultimate Chimera 2" + }, + "lvl_100_epic_turtle_candy_10": { + "price": 15000000, + "name": "Turtle" + }, + "lvl_100_legendary_lion_candy_3": { + "price": 44000000, + "name": "Lion" + }, + "coal_ore": { + "price": 57, + "name": "Coal Ore" + }, + "lvl_100_legendary_tiger_skinned_tiger_saber_tooth_candy_8": { + "price": 50000000, + "name": "Tiger" + }, + "lvl_100_legendary_monkey_candy_7": { + "price": 62000000, + "name": "Monkey" + }, + "lvl_100_legendary_dolphin_candy_3": { + "price": 45800000, + "name": "Dolphin" + }, + "lvl_100_rare_enderman_candy_10": { + "price": 4900000, + "name": "Rare Enderman" + }, + "lvl_100_legendary_wolf_candy_6": { + "price": 18000000, + "name": "Wolf" + }, + "lvl_100_legendary_armadillo_candy_2": { + "price": 6500000, + "name": "Armadillo" + }, + "lvl_100_legendary_blaze_candy_7": { + "price": 90969000, + "name": "Blaze" + }, + "lvl_100_legendary_golem_candy_6": { + "price": 24200000, + "name": "Golem" + }, + "lvl_100_legendary_elephant_candy_8": { + "price": 35000000, + "name": "Elephant" + }, + "lvl_100_legendary_ammonite_candy_1": { + "price": 39999999, + "name": "Ammonite" + }, + "lvl_100_legendary_ocelot_candy_7": { + "price": 20000000, + "name": "Ocelot" + }, + "lvl_100_legendary_baby_yeti_candy_2": { + "price": 54999999, + "name": "Baby Yeti" + }, + "cooked_mutton": { + "price": 1600, + "name": "Cooked Mutton" + }, + "lvl_100_uncommon_tiger_candy_10": { + "price": 16000000, + "name": "Uncommon Tiger" + }, + "wood_plate": { + "price": 320, + "name": "Wooden Pressure Plate" + }, + "mithril_infusion": { + "price": 21730, + "name": "Mithril Infusion" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_red_candy_3": { + "price": 210000000, + "name": "Sheep" + }, + "lvl_100_epic_blue_whale_candy_7": { + "price": 27950000, + "name": "Blue Whale" + }, + "lvl_100_legendary_rabbit_candy_7": { + "price": 10700000, + "name": "Rabbit" + }, + "lvl_100_legendary_jellyfish_candy_3": { + "price": 17500000, + "name": "Jellyfish" + }, + "iron_fence": { + "price": 64, + "name": "Iron Bars" + }, + "lvl_100_legendary_parrot_candy_8": { + "price": 27999999, + "name": "Parrot" + }, + "lvl_100_legendary_guardian_candy_3": { + "price": 5800000, + "name": "Guardian" + }, + "lvl_100_common_griffin_candy_1": { + "price": 3500000, + "name": "Common Griffin" + }, + "stained_clay:10": { + "price": 10, + "name": "Purple Hardened Clay" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_fossilized_candy_1": { + "price": 35000000, + "name": "Silverfish" + }, + "cooked_beef": { + "price": 256, + "name": "Cooked Beef" + }, + "lvl_100_epic_ender_dragon_candy_7": { + "price": 519000000, + "name": "Ender Dragon" + }, + "jumbo_backpack_skinned_blue_egg": { + "price": 10999999, + "name": "Jumbo Backpack" + }, + "ink_sack:7": { + "price": 64, + "name": "Gray Dye" + }, + "lvl_100_epic_sheep_candy_3": { + "price": 4700000, + "name": "Sheep" + }, + "bane_of_arthropods_3": { + "price": 200, + "name": "Bane Of Arthropods 3" + }, + "lvl_100_legendary_wolf_skinned_wolf_candy_5": { + "price": 59555555, + "name": "Wolf" + }, + "lvl_100_legendary_phoenix_candy_10": { + "price": 105000000, + "name": "Phoenix" + }, + "lvl_100_uncommon_silverfish": { + "price": 50000, + "name": "Uncommon Silverfish" + }, + "shadow_assassin_helmet_skinned_shadow_assassin_crimson": { + "price": 8000000, + "name": "Shadow Assassin Helmet" + }, + "ink_sack:2": { + "price": 64, + "name": "Cactus Green" + }, + "lvl_100_epic_jellyfish_candy_10": { + "price": 6570000, + "name": "Jellyfish" + }, + "acacia_fence_gate": { + "price": 320, + "name": "Acacia Fence Gate" + }, + "item_frame": { + "price": 50, + "name": "Item Frame" + }, + "lvl_100_rare_blue_whale": { + "price": 4500000, + "name": "Rare Blue Whale" + }, + "lvl_1_legendary_rock_skinned_rock_cool": { + "price": 570000000, + "name": "Unknown" + }, + "lvl_100_legendary_jellyfish_candy_1": { + "price": 17000000, + "name": "Jellyfish" + }, + "lvl_100_legendary_sheep_skinned_sheep_neon_blue_candy_2": { + "price": 295000000, + "name": "Sheep" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_4": { + "price": 44000000, + "name": "Enderman" + }, + "lvl_100_common_griffin_candy_5": { + "price": 4000000, + "name": "Common Griffin" + }, + "lvl_100_epic_dolphin_candy_8": { + "price": 10000000, + "name": "Dolphin" + }, + "baked_potato": { + "price": 5, + "name": "Baked Potato" + }, + "lvl_100_common_griffin_candy_3": { + "price": 4000000, + "name": "Common Griffin" + }, + "lvl_100_epic_rabbit_skinned_rabbit_aquamarine": { + "price": 20000000, + "name": "Rabbit" + }, + "chainmail_chestplate": { + "price": 1, + "name": "Chainmail Chestplate" + }, + "lvl_100_legendary_mithril_golem_candy_6": { + "price": 6300000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_baby_yeti_candy_9": { + "price": 63999990, + "name": "Baby Yeti" + }, + "lvl_100_legendary_wolf_candy_8": { + "price": 18400000, + "name": "Wolf" + }, + "lvl_100_epic_ender_dragon_candy_8": { + "price": 560000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_griffin_candy_2": { + "price": 20000000, + "name": "Griffin" + }, + "perfect_helmet_11": { + "price": 6200000, + "name": "Perfect Helmet - Tier Xi" + }, + "lvl_100_legendary_pigman_candy_10": { + "price": 36999999, + "name": "Pigman" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_neon_purple_candy_10": { + "price": 850000000, + "name": "Ender Dragon" + }, + "cactus_boots": { + "price": 2, + "name": "Cactus Boots" + }, + "cactus_helmet": { + "price": 15, + "name": "Cactus Helmet" + }, + "lvl_100_rare_armadillo_candy_1": { + "price": 3200000, + "name": "Rare Armadillo" + }, + "ultimate_chimera_3": { + "price": 380000000, + "name": "Ultimate Chimera 3" + }, + "ultimate_chimera_4": { + "price": 772000000, + "name": "Ultimate Chimera 4" + }, + "serrated_claws": { + "price": 4000000, + "name": "Serrated Claws" + }, + "lvl_100_uncommon_lion": { + "price": 500000, + "name": "Uncommon Lion" + }, + "lvl_100_common_ocelot": { + "price": 5000000, + "name": "Common Ocelot" + }, + "sand:1": { + "price": 13, + "name": "Sand:1" + }, + "lvl_1_legendary_hound_skinned_hound_beagle": { + "price": 15000000, + "name": "Hound" + }, + "lvl_1_epic_blaze_skinned_blaze_frozen": { + "price": 45000000, + "name": "Blaze" + }, + "flawless_jasper_gem": { + "price": 3987207, + "name": "Flawless Jasper Gem" + }, + "lvl_1_mythic_enderman": { + "price": 30000000, + "name": "Unknown" + }, + "lvl_100_legendary_zombie_candy_7": { + "price": 35000000, + "name": "Zombie" + }, + "boss_spirit_bow": { + "price": 1111111111, + "name": "Spirit Bow" + }, + "lvl_100_epic_ocelot_candy_10": { + "price": 19000000, + "name": "Ocelot" + }, + "lvl_100_legendary_monkey_candy_4": { + "price": 65500000, + "name": "Monkey" + }, + "lvl_100_legendary_ocelot_candy_3": { + "price": 22800000, + "name": "Ocelot" + }, + "lvl_100_epic_golem": { + "price": 7999999, + "name": "Golem" + }, + "lvl_100_legendary_ocelot_candy_6": { + "price": 25000000, + "name": "Ocelot" + }, + "lvl_100_legendary_magma_cube_candy_10": { + "price": 32000000, + "name": "Magma Cube" + }, + "lvl_100_legendary_wolf_skinned_wolf_candy_10": { + "price": 59900000, + "name": "Wolf" + }, + "lvl_100_legendary_rock_skinned_rock_cool_candy_10": { + "price": 500000000, + "name": "Rock" + }, + "lvl_100_legendary_mithril_golem_candy_7": { + "price": 6500000, + "name": "Mithril Golem" + }, + "lvl_100_legendary_phoenix_candy_1": { + "price": 110000000, + "name": "Phoenix" + }, + "lvl_100_legendary_blaze_candy_8": { + "price": 84999999, + "name": "Blaze" + }, + "lvl_100_legendary_tarantula_candy_7": { + "price": 29000000, + "name": "Tarantula" + }, + "lvl_100_legendary_baby_yeti_candy_3": { + "price": 48000000, + "name": "Baby Yeti" + }, + "lvl_1_legendary_blue_whale_skinned_whale_orca": { + "price": 125000000, + "name": "Blue Whale" + }, + "lvl_100_legendary_elephant_skinned_elephant_purple_candy_7": { + "price": 92999999, + "name": "Elephant" + }, + "lvl_100_common_squid_skinned_squid_glow": { + "price": 45000000, + "name": "Common Squid" + }, + "lvl_100_legendary_flying_fish_candy_4": { + "price": 31999990, + "name": "Flying Fish" + }, + "lvl_100_legendary_ender_dragon_candy_1": { + "price": 899999999, + "name": "Ender Dragon" + }, + "lvl_100_epic_jellyfish_candy_2": { + "price": 7700000, + "name": "Jellyfish" + }, + "lvl_100_epic_ender_dragon_candy_6": { + "price": 538969000, + "name": "Ender Dragon" + }, + "lvl_100_legendary_turtle_candy_9": { + "price": 39999000, + "name": "Turtle" + }, + "lvl_100_legendary_rabbit_skinned_rabbit": { + "price": 217770000, + "name": "Rabbit" + }, + "lvl_100_epic_griffin_candy_7": { + "price": 13000000, + "name": "Griffin" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_4": { + "price": 194000000, + "name": "Enderman" + }, + "pet_skin_sheep_purple": { + "price": 610000000, + "name": "Purple Sheep Skin" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_pastel_candy_10": { + "price": 820000000, + "name": "Ender Dragon" + }, + "lvl_100_common_monkey_skinned_monkey_gorilla": { + "price": 40000000, + "name": "Common Monkey" + }, + "lvl_100_legendary_endermite_candy_10": { + "price": 8980000, + "name": "Endermite" + }, + "lvl_100_epic_rock_candy_10": { + "price": 4999000, + "name": "Rock" + }, + "lvl_100_epic_blaze_candy_9": { + "price": 43000000, + "name": "Blaze" + }, + "lvl_100_epic_phoenix_skinned_phoenix_ice": { + "price": 17500000, + "name": "Phoenix" + }, + "lvl_100_rare_scatha_candy_10": { + "price": 435432100, + "name": "Rare Scatha" + }, + "lvl_100_legendary_squid_skinned_squid_glow_candy_2": { + "price": 59999999, + "name": "Squid" + }, + "lvl_100_legendary_flying_fish_candy_6": { + "price": 30900000, + "name": "Flying Fish" + }, + "lvl_100_legendary_elephant_skinned_elephant_red_candy_10": { + "price": 134999999, + "name": "Elephant" + }, + "lvl_100_rare_dolphin_candy_7": { + "price": 3200000, + "name": "Rare Dolphin" + }, + "diamond_ore": { + "price": 150, + "name": "Diamond Ore" + }, + "lvl_100_legendary_wither_skeleton_candy_9": { + "price": 15999997, + "name": "Wither Skeleton" + }, + "lvl_100_epic_squid": { + "price": 9911420, + "name": "Squid" + }, + "lvl_100_epic_dolphin_candy_7": { + "price": 10999999, + "name": "Dolphin" + }, + "lvl_100_legendary_armadillo_candy_1": { + "price": 7200000, + "name": "Armadillo" + }, + "lvl_100_legendary_zombie_candy_3": { + "price": 45000000, + "name": "Zombie" + }, + "perfect_leggings_11": { + "price": 4820000, + "name": "Perfect Leggings - Tier Xi" + }, + "gold_leggings": { + "price": 70, + "name": "Golden Leggings" + }, + "lvl_100_uncommon_griffin_candy_9": { + "price": 4000000, + "name": "Uncommon Griffin" + }, + "lvl_100_legendary_wolf_candy_9": { + "price": 25000000, + "name": "Wolf" + }, + "lvl_100_legendary_parrot_candy_10": { + "price": 26000000, + "name": "Parrot" + }, + "lvl_100_mythic_enderman_skinned_enderman_slayer_candy_8": { + "price": 48000000, + "name": "Enderman" + }, + "lvl_100_epic_bat_candy_10": { + "price": 7500000, + "name": "Bat" + }, + "brick": { + "price": 960, + "name": "Bricks" + }, + "cow_head": { + "price": 80, + "name": "Cow Head" + }, + "lvl_100_common_rock_candy_1": { + "price": 500000, + "name": "Common Rock" + }, + "pufferfish_hat": { + "price": 300, + "name": "Pufferfish Hat" + }, + "mossy_cobblestone": { + "price": 30, + "name": "Moss Stone" + }, + "stained_clay:13": { + "price": 2, + "name": "Green Hardened Clay" + }, + "lvl_100_legendary_sheep_skinned_sheep_white_candy_10": { + "price": 749999999, + "name": "Sheep" + }, + "lvl_100_legendary_elephant_skinned_elephant_monochrome_candy_4": { + "price": 31000000, + "name": "Elephant" + }, + "lvl_100_legendary_endermite_candy_1": { + "price": 10000000, + "name": "Endermite" + }, + "lvl_100_epic_guardian_candy_4": { + "price": 4600000, + "name": "Guardian" + }, + "lvl_100_epic_ender_dragon_candy_9": { + "price": 540000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_purple_candy_5": { + "price": 560000000, + "name": "Ender Dragon" + }, + "golem_hat": { + "price": 100, + "name": "Golem Hat" + }, + "lvl_100_epic_blaze_candy_10": { + "price": 41999999, + "name": "Blaze" + }, + "lvl_100_legendary_elephant_skinned_elephant_orange_candy_3": { + "price": 297000000, + "name": "Elephant" + }, + "lvl_100_epic_monkey_candy_1": { + "price": 20000000, + "name": "Monkey" + }, + "lvl_100_legendary_wolf_candy_4": { + "price": 20000000, + "name": "Wolf" + }, + "builder_ancient_fruit": { + "price": 50, + "name": "Fruit" + }, + "builder_bush": { + "price": 50, + "name": "Bush" + }, + "builder_cactus": { + "price": 100, + "name": "Cactus" + }, + "builder_corn": { + "price": 50, + "name": "Corn" + }, + "builder_berry": { + "price": 10, + "name": "Berry" + }, + "builder_beetroot": { + "price": 50, + "name": "Beetroot" + }, + "lvl_100_legendary_blaze_candy_2": { + "price": 89999999, + "name": "Blaze" + }, + "lvl_100_epic_phoenix_candy_10": { + "price": 109000000, + "name": "Phoenix" + }, + "enchanted_bookshelf": { + "price": 135000, + "name": "Enchanted Bookshelf" + }, + "lvl_100_legendary_enderman_candy_4": { + "price": 55000000, + "name": "Enderman" + }, + "dark_oak_stairs": { + "price": 160, + "name": "Dark Oak Wood Stairs" + }, + "lvl_100_epic_ender_dragon_skinned_dragon_neon_blue_candy_8": { + "price": 569000000, + "name": "Ender Dragon" + }, + "prismarine_blade": { + "price": 690, + "name": "Prismarine Blade" + }, + "lvl_100_legendary_guardian_candy_6": { + "price": 5400000, + "name": "Guardian" + }, + "lvl_100_common_griffin_candy_4": { + "price": 2500000, + "name": "Common Griffin" + }, + "lvl_100_legendary_ender_dragon_candy_2": { + "price": 817999000, + "name": "Ender Dragon" + }, + "ink_sack:12": { + "price": 8, + "name": "Blue Dye" + }, + "lvl_100_epic_tiger_candy_8": { + "price": 17000000, + "name": "Tiger" + }, + "lvl_100_legendary_megalodon_candy_5": { + "price": 26000000, + "name": "Megalodon" + }, + "book_and_quill": { + "price": 9, + "name": "Book And Quill" + }, + "lvl_100_rare_guardian_candy_2": { + "price": 1600000, + "name": "Rare Guardian" + }, + "lvl_100_epic_megalodon": { + "price": 12700000, + "name": "Megalodon" + }, + "lvl_100_legendary_dolphin_candy_5": { + "price": 48700000, + "name": "Dolphin" + }, + "hot_potato_book": { + "price": 47123, + "name": "Hot Potato Book" + }, + "lvl_100_legendary_magma_cube_candy_4": { + "price": 31500000, + "name": "Magma Cube" + }, + "lvl_100_legendary_chicken_skinned_chicken_baby_chick_candy_10": { + "price": 50000000, + "name": "Chicken" + }, + "lvl_100_legendary_spirit_candy_10": { + "price": 28000000, + "name": "Spirit" + }, + "danger_3_portal": { + "price": 500, + "name": "Portal To The End" + }, + "lvl_100_legendary_bal_candy_5": { + "price": 34900000, + "name": "Bal" + }, + "lvl_100_legendary_ghoul_candy_3": { + "price": 40000000, + "name": "Ghoul" + }, + "lvl_100_legendary_monkey_skinned_monkey_golden_candy_5": { + "price": 99999999, + "name": "Monkey" + }, + "lvl_100_legendary_chicken_candy_2": { + "price": 24500000, + "name": "Chicken" + }, + "lvl_100_epic_lion_candy_9": { + "price": 25000000, + "name": "Lion" + }, + "lvl_100_legendary_skeleton_candy_6": { + "price": 22499999, + "name": "Skeleton" + }, + "iron_plate": { + "price": 384, + "name": "Weighted Pressure Plate" + }, + "fence": { + "price": 43, + "name": "Oak Fence" + }, + "lvl_100_legendary_chicken_candy_10": { + "price": 25000000, + "name": "Chicken" + }, + "lvl_100_legendary_monkey_candy_6": { + "price": 60000000, + "name": "Monkey" + }, + "lvl_100_mythic_enderman_candy_7": { + "price": 51000000, + "name": "Enderman" + }, + "lvl_100_legendary_armadillo_candy_4": { + "price": 51000000, + "name": "Armadillo" + }, + "lvl_100_legendary_silverfish_candy_6": { + "price": 3790000, + "name": "Silverfish" + }, + "lvl_1_uncommon_zombie": { + "price": 150000, + "name": "Uncommon Zombie" + }, + "lvl_100_epic_wither_skeleton_candy_3": { + "price": 5000000, + "name": "Wither Skeleton" + }, + "gold_sword": { + "price": 20, + "name": "Golden Sword" + }, + "lvl_100_legendary_flying_fish_candy_5": { + "price": 30000000, + "name": "Flying Fish" + }, + "lvl_100_legendary_flying_fish_candy_1": { + "price": 25000000, + "name": "Flying Fish" + }, + "lvl_100_legendary_skeleton_horse_skinned_horse_zombie_candy_10": { + "price": 65000000, + "name": "Skeleton Horse" + }, + "ink_sack:13": { + "price": 5, + "name": "Magenta Dye" + }, + "lvl_100_legendary_ender_dragon_skinned_dragon_pastel_candy_4": { + "price": 809696969, + "name": "Ender Dragon" + }, + "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_3": { + "price": 30000000, + "name": "Endermite" + }, + "lvl_100_mythic_enderman_skinned_enderman_candy_1": { + "price": 182000000, + "name": "Enderman" + }, + "lvl_100_legendary_baby_yeti_candy_4": { + "price": 51999999, + "name": "Baby Yeti" + }, + "jungle_wood_stairs": { + "price": 160, + "name": "Jungle Wood Stairs" + }, + "lvl_1_rare_spider": { + "price": 200000, + "name": "Rare Spider" + }, + "lvl_100_legendary_monkey_skinned_monkey_golden_candy_10": { + "price": 130000000, + "name": "Monkey" + }, + "lvl_100_legendary_silverfish_candy_5": { + "price": 5499999, + "name": "Silverfish" + }, + "lvl_1_rare_zombie": { + "price": 150000, + "name": "Rare Zombie" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_6": { + "price": 35000000, + "name": "Rabbit" + }, + "lvl_100_epic_sheep_candy_1": { + "price": 3800000, + "name": "Sheep" + }, + "lvl_100_legendary_bat_candy_3": { + "price": 8000000, + "name": "Bat" + }, + "lvl_100_rare_guardian_candy_5": { + "price": 1500000, + "name": "Rare Guardian" + }, + "lvl_100_rare_tiger_candy_10": { + "price": 6750000, + "name": "Rare Tiger" + }, + "lvl_100_legendary_wolf_skinned_wolf_candy_2": { + "price": 60000000, + "name": "Wolf" + }, + "lvl_100_legendary_ocelot_candy_4": { + "price": 19800000, + "name": "Ocelot" + }, + "lvl_100_rare_rabbit_candy_6": { + "price": 1500000, + "name": "Rare Rabbit" + }, + "lvl_100_epic_parrot_candy_1": { + "price": 8850000, + "name": "Parrot" + }, + "lvl_100_legendary_dolphin_candy_6": { + "price": 46400000, + "name": "Dolphin" + }, + "lvl_100_common_dolphin": { + "price": 3500000, + "name": "Common Dolphin" + }, + "lvl_100_epic_sheep_candy_10": { + "price": 3800000, + "name": "Sheep" + }, + "lvl_100_legendary_ammonite_candy_9": { + "price": 33000000, + "name": "Ammonite" + }, + "lvl_100_epic_rabbit_candy_6": { + "price": 5900000, + "name": "Rabbit" + }, + "wool:8": { + "price": 640, + "name": "Gray Wool" + }, + "skeleton_talisman": { + "price": 250, + "name": "Skeleton Talisman" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_fossilized_candy_10": { + "price": 47555000, + "name": "Silverfish" + }, + "ink_sack:11": { + "price": 12, + "name": "Dandelion Yellow" + }, + "lvl_100_legendary_silverfish_skinned_silverfish_candy_10": { + "price": 79990000, + "name": "Silverfish" + }, + "lvl_100_epic_enderman_candy_10": { + "price": 14000000, + "name": "Enderman" + }, + "lvl_100_legendary_turtle_candy_7": { + "price": 35000000, + "name": "Turtle" + }, + "cooked_chicken": { + "price": 60, + "name": "Cooked Chicken" + }, + "lvl_100_legendary_rat_candy_1": { + "price": 20400000, + "name": "Rat" + }, + "lvl_100_legendary_dolphin_candy_2": { + "price": 50000000, + "name": "Dolphin" + }, + "lvl_100_epic_blue_whale_candy_2": { + "price": 29950000, + "name": "Blue Whale" + }, + "dark_oak_fence": { + "price": 5, + "name": "Dark Oak Fence" + }, + "lvl_100_epic_guardian_candy_2": { + "price": 3200000, + "name": "Guardian" + }, + "savana_bow": { + "price": 500, + "name": "Savanna Bow" + }, + "lvl_1_uncommon_spider": { + "price": 520000, + "name": "Uncommon Spider" + }, + "thin_glass": { + "price": 240, + "name": "Glass Pane" + }, + "cheese_fuel": { + "price": 7209, + "name": "Cheese Fuel" + }, + "iron_trapdoor": { + "price": 3840, + "name": "Iron Trapdoor" + }, + "lvl_100_uncommon_enderman": { + "price": 550000, + "name": "Uncommon Enderman" + }, + "builder_banana_bunch": { + "price": 50, + "name": "Banana Bunch" + }, + "bigger_teeth": { + "price": 3890000, + "name": "Bigger Teeth" + }, + "silence_block": { + "price": 200, + "name": "Silence Block" + }, + "lvl_100_rare_lion": { + "price": 5000000, + "name": "Rare Lion" + }, + "leaves:2": { + "price": 69, + "name": "Birch Leaves" + }, + "jungle_fence_gate": { + "price": 320, + "name": "Jungle Fence Gate" + }, + "intimidation_talisman": { + "price": 777, + "name": "Intimidation Talisman" + }, + "step:6": { + "price": 2, + "name": "Nether Brick Slab" + }, + "chainmail_boots": { + "price": 5, + "name": "Chainmail Boots" + }, + "lvl_100_epic_endermite": { + "price": 7000000, + "name": "Endermite" + }, + "lvl_100_epic_hound": { + "price": 36000000, + "name": "Hound" + }, + "dark_oak_fence_gate": { + "price": 320, + "name": "Dark Oak Fence Gate" + }, + "stained_glass_pane:10": { + "price": 1, + "name": "Purple Stained Glass Pane" + }, + "lvl_100_common_blue_whale": { + "price": 1000000, + "name": "Common Blue Whale" + }, + "builder_brown_mushroom": { + "price": 10, + "name": "Brown Mushroom" + }, + "builder_blue_corn": { + "price": 3200, + "name": "Blue Corn" + }, + "lvl_100_legendary_rock_skinned_rock_derp": { + "price": 688888888, + "name": "Rock" + }, + "lvl_100_rare_endermite": { + "price": 7000000, + "name": "Rare Endermite" + }, + "sapling:5": { + "price": 1, + "name": "Dark Oak Sapling" + }, + "fermented_spider_eye": { + "price": 3200, + "name": "Fermented Spider Eye" + }, + "creeper_hat": { + "price": 16, + "name": "Creeper Hat" + }, + "stained_clay:4": { + "price": 10, + "name": "Yellow Hardened Clay" + }, + "prismarine:2": { + "price": 320, + "name": "Dark Prismarine" + }, + "leather_chestplate": { + "price": 60, + "name": "Leather Chestplate" + }, + "lvl_1_legendary_endermite_skinned_endermite_radiant": { + "price": 10000000, + "name": "Endermite" + }, + "iron_door": { + "price": 18, + "name": "Iron Door" + }, + "bane_of_arthropods_2": { + "price": 300000, + "name": "Bane Of Arthropods 2" + }, + "chicken_head": { + "price": 40, + "name": "Chicken Head" + }, + "big_brain_4": { + "price": 29000000, + "name": "Big Brain 4" + }, + "nether_fence": { + "price": 10, + "name": "Nether Brick Fence" + }, + "wool:9": { + "price": 640, + "name": "Cyan Wool" + }, + "lvl_100_epic_hound_candy_6": { + "price": 11000000, + "name": "Hound" + }, + "lvl_100_legendary_jerry_candy_6": { + "price": 30000000, + "name": "Jerry" + }, + "lvl_100_rare_enderman_skinned_enderman_slayer": { + "price": 10000000, + "name": "Rare Enderman" + }, + "lvl_100_legendary_endermite_candy_3": { + "price": 10000000, + "name": "Endermite" + }, + "lvl_100_legendary_endermite_skinned_endermite_radiant_candy_1": { + "price": 35000000, + "name": "Endermite" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_3": { + "price": 39995000, + "name": "Rabbit" + }, + "lvl_100_legendary_snowman_candy_8": { + "price": 44000000, + "name": "Snowman" + }, + "lvl_100_legendary_lion_candy_9": { + "price": 42500000, + "name": "Lion" + }, + "lvl_100_common_rock_candy_10": { + "price": 1000000, + "name": "Common Rock" + }, + "lvl_100_legendary_mithril_golem_candy_5": { + "price": 7490000, + "name": "Mithril Golem" + }, + "lvl_100_epic_tiger_skinned_tiger_saber_tooth_candy_5": { + "price": 34799999, + "name": "Tiger" + }, + "lvl_100_legendary_turtle_candy_6": { + "price": 26999900, + "name": "Turtle" + }, + "lvl_100_legendary_rabbit_skinned_rabbit_aquamarine_candy_4": { + "price": 34999000, + "name": "Rabbit" + }, + "lvl_100_legendary_elephant_skinned_elephant_blue_candy_1": { + "price": 400000000, + "name": "Elephant" + }, + "lvl_100_epic_lion_candy_6": { + "price": 28200000, + "name": "Lion" + }, + "lvl_100_epic_tiger_skinned_tiger_saber_tooth_candy_3": { + "price": 33333333, + "name": "Tiger" + }, + "ink_sack:14": { + "price": 47, + "name": "Orange Dye" + }, + "roofed_forest_biome_stick": { + "price": 160, + "name": "Roofed Forest Biome Stick" + }, + "nether_brick_stairs": { + "price": 640, + "name": "Nether Bricks Stairs" + }, + "daylight_detector": { + "price": 2880, + "name": "Detector" + }, + "birch_fence": { + "price": 64, + "name": "Birch Fence" + }, + "powered_rail": { + "price": 960, + "name": "Powered Rail" + }, + "lvl_100_common_enderman": { + "price": 5989999, + "name": "Common Enderman" + }, + "lvl_100_rare_giraffe": { + "price": 9911420, + "name": "Rare Giraffe" + }, + "stained_clay:5": { + "price": 640, + "name": "Lime Hardened Clay" + }, + "stained_clay:6": { + "price": 640, + "name": "Pink Hardened Clay" + }, + "minecart": { + "price": 40, + "name": "Minecart" + }, + "wood_door": { + "price": 1, + "name": "Oak Door" + }, + "lvl_1_common_tiger_skinned_tiger_saber_tooth": { + "price": 10000000, + "name": "Common Tiger" + }, + "lvl_100_rare_flying_fish": { + "price": 3000000, + "name": "Rare Flying Fish" + }, + "carpet:13": { + "price": 320, + "name": "Green Carpet" + }, + "stained_glass:13": { + "price": 960, + "name": "Green Stained Glass" + }, + "carpet": { + "price": 9, + "name": "Carpet" + }, + "sculptors_axe": { + "price": 320, + "name": "Sculptor's Axe" + }, + "taiga_biome_stick": { + "price": 160, + "name": "Taiga Biome Stick" + }, + "red_rose:4": { + "price": 64, + "name": "Red Tulip" + }, + "young_baby": { + "price": 599999999, + "name": "Baby Skin" + }, + "lvl_100_epic_monkey": { + "price": 15000000, + "name": "Monkey" + }, + "cobblestone_stairs": { + "price": 320, + "name": "Cobblestone Stairs" + }, + "squid_hat": { + "price": 10, + "name": "Squid Hat" + }, + "piston_base": { + "price": 2560, + "name": "Piston" + }, + "pet_skin_dolphin_snubfin": { + "price": 7000000, + "name": "Snubfin Dolphin Skin" + }, + "pet_skin_dolphin_snubnose_red": { + "price": 9000000, + "name": "Red Snubfin Dolphin Skin" + }, + "pet_skin_dolphin_snubnose_purple": { + "price": 9100000, + "name": "Purple Snubfin Dolphin Skin" + }, + "pet_skin_dolphin_snubnose_green": { + "price": 6000000, + "name": "Green Snubfin Dolphin Skin" + }, + "lvl_1_common_dolphin_skinned_dolphin_snubnose_red": { + "price": 14000000, + "name": "Common Dolphin" + }, + "pet_skin_rock_derp": { + "price": 800000000, + "name": "Derpy Rock Skin" + }, + "lvl_1_uncommon_dolphin_skinned_dolphin_snubnose_green": { + "price": 3000000, + "name": "Uncommon Dolphin" + }, + "lvl_1_rare_dolphin_skinned_dolphin_snubnose_green": { + "price": 5000000, + "name": "Rare Dolphin" + }, + "lvl_100_legendary_dolphin_skinned_dolphin_snubfin": { + "price": 36000000, + "name": "Dolphin" + }, + "lvl_1_epic_dolphin_skinned_dolphin_snubfin": { + "price": 10000000, + "name": "Dolphin" + }, + "builder_pink_berry": { + "price": 50, + "name": "Pink Berry" + }, + "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_green": { + "price": 30000000, + "name": "Dolphin" + }, + "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_purple": { + "price": 16000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skinned_dolphin_snubnose_green": { + "price": 9500000, + "name": "Dolphin" + }, + "leash": { + "price": 80, + "name": "Lead" + }, + "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_purple": { + "price": 29990000, + "name": "Dolphin" + }, + "lvl_100_rare_dolphin_skinned_dolphin_snubnose_purple": { + "price": 4000000, + "name": "Rare Dolphin" + }, + "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_red": { + "price": 16000000, + "name": "Dolphin" + }, + "lvl_100_epic_dolphin_skinned_dolphin_snubfin": { + "price": 9999000, + "name": "Dolphin" + }, + "lvl_1_legendary_dolphin_skinned_dolphin_snubnose_green": { + "price": 17999900, + "name": "Dolphin" + }, + "lvl_1_legendary_dolphin_skinned_dolphin_snubfin": { + "price": 17000000, + "name": "Dolphin" + }, + "wood_step:5": { + "price": 160, + "name": "Dark Oak Wood Slab" + }, + "leather_leggings": { + "price": 50, + "name": "Leather Leggings" + }, + "lvl_1_epic_dolphin_skinned_dolphin_snubnose_red": { + "price": 4990000, + "name": "Dolphin" + }, + "lvl_100_legendary_dolphin_skinned_dolphin_snubnose_red": { + "price": 33000000, + "name": "Dolphin" + }, + "lvl_1_common_dolphin_skinned_dolphin_snubfin": { + "price": 6000000, + "name": "Common Dolphin" + }, + "lvl_100_rare_skeleton": { + "price": 6900000, + "name": "Rare Skeleton" + }, + "step:7": { + "price": 5, + "name": "Quartz Slab" + }, + "pet_skin_sheep_pink": { + "price": 1000000000, + "name": "Pink Sheep Skin" + }, + "lvl_1_uncommon_enderman_skinned_enderman_slayer": { + "price": 1000000, + "name": "Uncommon Enderman" + }, + "long_grass:2": { + "price": 10, + "name": "Fern" + }, + "birch_forest_biome_stick": { + "price": 160, + "name": "Birch Forest Biome Stick" + }, + "lvl_100_common_tiger": { + "price": 2000000, + "name": "Common Tiger" + }, + "stained_clay:11": { + "price": 640, + "name": "Blue Hardened Clay" + }, + "chainmail_leggings": { + "price": 5, + "name": "Chainmail Leggings" + }, + "lvl_1_rare_dolphin_skinned_dolphin_snubfin": { + "price": 7000000, + "name": "Rare Dolphin" + }, + "pet_skin_rock_laugh": { + "price": 620000000, + "name": "Laughing Rock Skin" + }, + "lvl_100_epic_dolphin_skinned_dolphin_snubnose_purple": { + "price": 10000000, + "name": "Dolphin" + }, + "sapling:1": { + "price": 1, + "name": "Spruce Sapling" + }, + "cauldron_item": { + "price": 10, + "name": "Cauldron" + }, + "gemstone_collection": { + "price": 25000000, + "name": "Gemstone" + }, + "smooth_brick:1": { + "price": 640, + "name": "Mossy Stone Bricks" + }, + "lvl_1_common_monkey_skinned_monkey_gorilla": { + "price": 10000000, + "name": "Common Monkey" + }, + "lvl_1_common_monkey_skinned_monkey_golden": { + "price": 94999998, + "name": "Common Monkey" + }, + "pet_skin_sheep_light_blue": { + "price": 769420420, + "name": "Blue Sheep Skin" + }, + "lvl_100_epic_blaze_skinned_blaze_frozen": { + "price": 38900000, + "name": "Blaze" + }, + "dueces_builder_clay": { + "price": 6000000000, + "name": "Unknown" + }, + "bingo_talisman": { + "price": 32000000, + "name": "Bingo Talisman" + }, + "bingo_ring": { + "price": 118000000, + "name": "Bingo Ring" + }, + "stained_glass_pane:13": { + "price": 240, + "name": "Green Stained Glass Pane" + }, + "stained_glass_pane:4": { + "price": 240, + "name": "Yellow Stained Glass Pane" + }, + "stained_glass_pane:5": { + "price": 240, + "name": "Lime Stained Glass Pane" + }, + "command": { + "price": 50000000, + "name": "Command Block" + }, + "lvl_100_common_rabbit": { + "price": 550000, + "name": "Common Rabbit" + }, + "lvl_100_epic_elephant": { + "price": 10300000, + "name": "Elephant" + }, + "stone_plate": { + "price": 640, + "name": "Stone Pressure Plate" + }, + "lvl_1_common_dolphin_skinned_dolphin_snubnose_green": { + "price": 4500000, + "name": "Common Dolphin" + }, + "stained_clay:1": { + "price": 640, + "name": "Orange Hardened Clay" + }, + "stained_clay:2": { + "price": 640, + "name": "Magenta Hardened Clay" + }, + "lvl_100_rare_enderman": { + "price": 8000000, + "name": "Rare Enderman" + }, + "chainmail_helmet": { + "price": 1, + "name": "Chainmail Helmet" + }, + "lvl_100_epic_spirit": { + "price": 25000000, + "name": "Spirit" + }, + "lvl_1_legendary_ender_dragon_skinned_dragon_pastel": { + "price": 750000000, + "name": "Ender Dragon" + }, + "lvl_100_rare_sheep": { + "price": 3000000, + "name": "Rare Sheep" + }, + "smooth_brick:3": { + "price": 48, + "name": "Chiseled Stone Bricks" + }, + "sandstone:2": { + "price": 960, + "name": "Smooth Sandstone" + }, + "red_sandstone:1": { + "price": 960, + "name": "Red Chiseled Sandstone" + }, + "lvl_100_epic_dolphin_skinned_dolphin_snubnose_red": { + "price": 12299000, + "name": "Dolphin" + }, + "pet_skin_tiger_golden": { + "price": 10950000, + "name": "Golden Tiger Skin" + }, + "lvl_100_epic_tiger_skinned_tiger_golden": { + "price": 18000000, + "name": "Tiger" + }, + "lvl_100_legendary_tiger_skinned_tiger_golden": { + "price": 44000000, + "name": "Tiger" + }, + "lvl_1_uncommon_tiger_skinned_tiger_golden": { + "price": 13000000, + "name": "Uncommon Tiger" + }, + "carpet:1": { + "price": 320, + "name": "Orange Carpet" + }, + "lvl_1_rare_tiger_skinned_tiger_golden": { + "price": 14000000, + "name": "Rare Tiger" + }, + "spruce_fence": { + "price": 1, + "name": "Spruce Fence" + }, + "lvl_100_legendary_rock_skinned_rock_smile": { + "price": 435000000, + "name": "Rock" + }, + "trapped_chest": { + "price": 1280, + "name": "Trapped Chest" + }, + "lvl_1_rare_monkey_skinned_monkey_gorilla": { + "price": 26999999, + "name": "Rare Monkey" + }, + "lvl_100_rare_dolphin_skinned_dolphin_snubfin": { + "price": 6898000, + "name": "Rare Dolphin" + }, + "lvl_1_uncommon_monkey_skinned_monkey_gorilla": { + "price": 26999999, + "name": "Uncommon Monkey" + }, + "bed": { + "price": 25, + "name": "Bed" + }, + "stained_glass_pane:1": { + "price": 240, + "name": "Orange Stained Glass Pane" + }, + "carpet:10": { + "price": 320, + "name": "Purple Carpet" + }, + "lvl_100_epic_bee": { + "price": 1500000, + "name": "Bee" + }, + "desert_biome_stick": { + "price": 64, + "name": "Desert Biome Stick" + }, + "lvl_1_epic_tiger_skinned_tiger_golden": { + "price": 5000000, + "name": "Tiger" + }, + "lvl_100_epic_magma_cube": { + "price": 40000000, + "name": "Magma Cube" + }, + "lvl_1_legendary_jerry_skinned_jerry_red_elf": { + "price": 280000000, + "name": "Jerry" + }, + "showcase_block": { + "price": 1, + "name": "Showcase Block" + }, + "stained_glass:3": { + "price": 320, + "name": "Blue Stained Glass" + }, + "lvl_1_common_zombie": { + "price": 500000, + "name": "Common Zombie" + }, + "pet_skin_sheep_light_green": { + "price": 1010000000, + "name": "Green Sheep Skin" + }, + "sandstone:1": { + "price": 960, + "name": "Chiseled Sandstone" + }, + "log:0": { + "price": 25000000, + "name": "Oak Wood" + }, + "red_sandstone": { + "price": 960, + "name": "Red Sandstone" + }, + "necron_blade": { + "price": 1269420666, + "name": "Necron's Blade (unrefined)" + }, + "builder_chesto_berry": { + "price": 50, + "name": "Chesto Berry" + }, + "lvl_100_epic_silverfish_skinned_silverfish_fossilized": { + "price": 15000000, + "name": "Silverfish" + }, + "lvl_1_legendary_bat_skinned_bat_vampire": { + "price": 9500000, + "name": "Bat" + }, + "lvl_100_common_rock_skinned_rock_cool": { + "price": 614788000, + "name": "Common Rock" + }, + "lvl_100_epic_zombie": { + "price": 17000000, + "name": "Zombie" + }, + "lvl_1_common_silverfish_skinned_silverfish_fossilized": { + "price": 50000000, + "name": "Common Silverfish" + }, + "lvl_1_epic_ender_dragon_skinned_dragon_neon_blue": { + "price": 435000000, + "name": "Ender Dragon" + }, + "blobfish_hat": { + "price": 25, + "name": "Blobfish Hat" + }, + "stained_glass_pane:15": { + "price": 69, + "name": "Black Stained Glass Pane" + }, + "lvl_1_legendary_enderman_skinned_enderman_slayer": { + "price": 36500000, + "name": "Enderman" + }, + "map:-128": { + "price": 9500000, + "name": "Map" + }, + "lvl_100_uncommon_mithril_golem": { + "price": 2988888, + "name": "Uncommon Mithril Golem" + }, + "leaves_2:1": { + "price": 640, + "name": "Dark Oak Leaves" + }, + "hoe_of_greater_tilling": { + "price": 100000, + "name": "Unknown" + }, + "lvl_100_rare_dolphin_skinned_dolphin_snubnose_green": { + "price": 12650000, + "name": "Rare Dolphin" + }, + "stained_glass:2": { + "price": 960, + "name": "Magenta Stained Glass" + }, + "stained_glass:1": { + "price": 960, + "name": "Orange Stained Glass" + }, + "double_plant:2": { + "price": 320, + "name": "Double Tallgrass" + }, + "lvl_100_common_mithril_golem": { + "price": 5000000, + "name": "Common Mithril Golem" + }, + "lvl_100_rare_monkey": { + "price": 6000000, + "name": "Rare Monkey" + }, + "sponge_rod": { + "price": 340, + "name": "Sponge Rod" + }, + "stained_glass:11": { + "price": 960, + "name": "Blue Stained Glass" + }, + "lvl_100_common_enderman_skinned_enderman_slayer": { + "price": 6000000, + "name": "Common Enderman" + }, + "carpet:8": { + "price": 320, + "name": "Gray Carpet" + }, + "piston_sticky_base": { + "price": 3840, + "name": "Sticky Piston" + }, + "pet_skin_armadillo_enchanted": { + "price": 28000000, + "name": "Enchanted Armadillo Skin" + }, + "pet_skin_armadillo_seafoam": { + "price": 35999999, + "name": "Seafoam Armadillo Skin" + }, + "lvl_100_legendary_armadillo_skinned_armadillo_seafoam": { + "price": 37999999, + "name": "Armadillo" + }, + "lvl_100_legendary_armadillo_skinned_armadillo_enchanted": { + "price": 30000000, + "name": "Armadillo" + }, + "stained_clay": { + "price": 640, + "name": "White Hardened Clay" + }, + "lvl_1_epic_ender_dragon_skinned_dragon_neon_purple": { + "price": 400000000, + "name": "Ender Dragon" + }, + "lvl_1_legendary_armadillo_skinned_armadillo_seafoam": { + "price": 25000000, + "name": "Armadillo" + }, + "lvl_1_legendary_armadillo_skinned_armadillo_enchanted": { + "price": 25000000, + "name": "Armadillo" + }, + "stained_glass:15": { + "price": 960, + "name": "Black Stained Glass" + }, + "stone:4": { + "price": 640, + "name": "Polished Diorite" + }, + "lvl_100_uncommon_monkey": { + "price": 400000, + "name": "Unknown" + }, + "dark_oak_door_item": { + "price": 10, + "name": "Dark Oak Door" + }, + "epoch_cake_aqua": { + "price": 1239000, + "name": "Barry Century Cake" + }, + "epoch_cake_green": { + "price": 3000000, + "name": "Pet Rock Century Cake" + }, + "epoch_cake_purple": { + "price": 1600000, + "name": "Streamer's Century Cake" + }, + "epoch_cake_pink": { + "price": 1900000, + "name": "Crab-colored Century Cake" + }, + "epoch_cake_black": { + "price": 1800000, + "name": "Century Cake Of The Next Dungeon Floor" + }, + "epoch_cake_blue": { + "price": 1950000, + "name": "Sea Emperor Century Cake" + }, + "epoch_cake_red": { + "price": 1500000, + "name": "Apunch Century Cake" + }, + "epoch_cake_orange": { + "price": 1600000, + "name": "Latest Update Century Cake" + }, + "epoch_cake_yellow": { + "price": 2199999, + "name": "Potato-style Century Cake" + }, + "jukebox": { + "price": 3840, + "name": "Jukebox" + }, + "sea_creature_ring": { + "price": 5000, + "name": "Sea Creature Ring" + }, + "pet_skin_rock_embarrassed": { + "price": 750000000, + "name": "Embarrassed Rock Skin" + }, + "diode": { + "price": 960, + "name": "Repeater" + }, + "stained_glass_pane:3": { + "price": 11, + "name": "Blue Stained Glass Pane" + }, + "cake": { + "price": 10, + "name": "Cake" + }, + "medium_backpack_skinned_blue_egg": { + "price": 5000000, + "name": "Medium Backpack" + }, + "lvl_1_rare_armadillo_skinned_armadillo_seafoam": { + "price": 21000000, + "name": "Rare Armadillo" + }, + "lvl_100_common_armadillo_skinned_armadillo_seafoam": { + "price": 14000000, + "name": "Common Armadillo" + }, + "lvl_100_common_armadillo_skinned_armadillo_enchanted": { + "price": 14000000, + "name": "Common Armadillo" + }, + "lvl_1_epic_dolphin_skinned_dolphin_snubnose_purple": { + "price": 6000000, + "name": "Dolphin" + }, + "lvl_1_uncommon_elephant_skinned_elephant_monochrome": { + "price": 20000000, + "name": "Uncommon Elephant" + }, + "lvl_1_rare_wither_skeleton": { + "price": 327589592, + "name": "Rare Wither Skeleton" + }, + "jungle_fence": { + "price": 320, + "name": "Jungle Fence" + }, + "redstone_comparator": { + "price": 1600, + "name": "Comparator" + }, + "builder_berry_bush": { + "price": 10, + "name": "Berry Bush" + }, + "dungeon_disc_5": { + "price": 160000, + "name": "Necron Disc" + }, + "dungeon_disc_1": { + "price": 180000, + "name": "Dungeon Disc" + }, + "dungeon_disc_2": { + "price": 50000, + "name": "Clown Disc" + }, + "dye_wild_strawberry": { + "price": 65000000, + "name": "Wild Strawberry Dye" + }, + "dungeon_disc_3": { + "price": 80000, + "name": "Watcher Disc" + }, + "fifth_master_star": { + "price": 104984996, + "name": "Fifth Master Star" + }, + "dye_necron": { + "price": 33950000, + "name": "Necron Dye" + }, + "dungeon_disc_4": { + "price": 869000, + "name": "Old Disc" + }, + "thunderlord_7": { + "price": 9433333, + "name": "Thunderlord 7" + }, + "dye_mango": { + "price": 48000000, + "name": "Mango Dye" + }, + "dark_claymore": { + "price": 461888888, + "name": "Dark Claymore" + }, + "stained_glass:10": { + "price": 960, + "name": "Purple Stained Glass" + }, + "dye_brick_red": { + "price": 175000000, + "name": "Brick Red Dye" + }, + "lvl_1_legendary_tiger_skinned_tiger_saber_tooth": { + "price": 20000000, + "name": "Tiger" + }, + "dye_bone": { + "price": 300000000, + "name": "Bone Dye" + }, + "lvl_1_rare_armadillo_skinned_armadillo_enchanted": { + "price": 15000000, + "name": "Rare Armadillo" + }, + "dye_byzantium": { + "price": 83300000, + "name": "Byzantium Dye" + }, + "dye_emerald": { + "price": 1690420420, + "name": "Emerald Dye" + }, + "lvl_100_uncommon_sheep": { + "price": 1000000, + "name": "Uncommon Sheep" + }, + "greater_backpack_skinned_enderpack": { + "price": 10000000, + "name": "Greater Backpack" + }, + "mushroom_soup": { + "price": 5, + "name": "Mushroom Soup" + }, + "carpet:14": { + "price": 320, + "name": "Red Carpet" + }, + "sapling:4": { + "price": 80, + "name": "Acacia Sapling" + }, + "lvl_1_epic_dolphin_skinned_dolphin_snubnose_green": { + "price": 7000000, + "name": "Dolphin" + }, + "dye_dark_purple": { + "price": 200000000, + "name": "Dark Purple Dye" + }, + "coco_chopper": { + "price": 900000, + "name": "Unknown" + }, + "prismarine_bow": { + "price": 600, + "name": "Prismarine Bow" + }, + "lvl_100_common_squid": { + "price": 2999999, + "name": "Common Squid" + }, + "emerald_ore": { + "price": 240, + "name": "Emerald Ore" + }, + "carpet:11": { + "price": 320, + "name": "Blue Carpet" + }, + "moil_log": { + "price": 0, + "name": "Moil Log" + }, + "stained_glass_pane:6": { + "price": 240, + "name": "Pink Stained Glass Pane" + }, + "stained_glass_pane:2": { + "price": 240, + "name": "Magenta Stained Glass Pane" + }, + "ink_sack:5": { + "price": 5, + "name": "Purple Dye" + }, + "blessed fruit": { + "price": 1000000, + "name": "Unknown" + }, + "dye_aquamarine": { + "price": 1670000000, + "name": "Aquamarine Dye" + }, + "lvl_200_legendary_golden_dragon": { + "price": 1067890000, + "name": "Golden Dragon" + }, + "lvl_100_epic_parrot_skinned_parrot_gold_macaw": { + "price": 22000000, + "name": "Parrot" + }, + "compact_4": { + "price": 1499000, + "name": "Compact 4" + }, + "pet_skin_sheep_black": { + "price": 2147483647, + "name": "Black Sheep Skin" + }, + "perfect_helmet_9_skinned_perfect_forge": { + "price": 80000000, + "name": "Perfect Helmet - Tier Ix" + }, + "sandstone_stairs": { + "price": 640, + "name": "Sandstone Stairs" + }, + "sponge:1": { + "price": 16000, + "name": "Wet Sponge" + }, + "lvl_100_rare_rock_skinned_rock_derp": { + "price": 400000000, + "name": "Rare Rock" + }, + "carpet:4": { + "price": 320, + "name": "Yellow Carpet" + }, + "carpet:6": { + "price": 320, + "name": "Pink Carpet" + }, + "stained_clay:7": { + "price": 640, + "name": "Gray Hardened Clay" + }, + "monster_egg:58": { + "price": 2147483647, + "name": "Spawn Enderman" + }, + "pet_skin_jerry_handsome": { + "price": 8000000, + "name": "Handsome Jerry Skin" + }, + "lvl_1_legendary_jerry_skinned_jerry_handsome": { + "price": 3000000, + "name": "Jerry" + }, + "lvl_1_epic_jerry_skinned_jerry_handsome": { + "price": 8299999, + "name": "Jerry" + }, + "lvl_1_epic_hound_skinned_hound_beagle": { + "price": 8000000, + "name": "Hound" + }, + "large_backpack_skinned_blue_egg": { + "price": 10000000, + "name": "Large Backpack" + }, + "redstone_lamp_off": { + "price": 1920, + "name": "Redstone Lamp" + }, + "lvl_100_legendary_jerry_skinned_jerry_handsome": { + "price": 39500000, + "name": "Jerry" + }, + "lvl_100_rare_dolphin_skinned_dolphin_snubnose_red": { + "price": 15000000, + "name": "Rare Dolphin" + }, + "lvl_1_legendary_rabbit_skinned_rabbit_aquamarine": { + "price": 15000000, + "name": "Rabbit" + }, + "epoch_cake_brown": { + "price": 3000000, + "name": "Chocolate Century Cake" + }, + "epoch_cake_white": { + "price": 1340000, + "name": "Cloudy Century Cake" + }, + "dye_carmine": { + "price": 500000000, + "name": "Carmine Dye" + }, + "epoch_cake_cyan": { + "price": 4340000, + "name": "Century Cake Of Hype" + }, + "ink_sack:6": { + "price": 1, + "name": "Cyan Dye" + }, + "lvl_1_epic_ocelot_skinned_ocelot_snow_tiger": { + "price": 8000000, + "name": "Ocelot" + }, + "lvl_1_legendary_black_cat_skinned_black_cat_onyx": { + "price": 35000000, + "name": "Black Cat" + }, + "lvl_1_legendary_tiger_skinned_tiger_golden": { + "price": 21500000, + "name": "Tiger" + }, + "stained_clay:3": { + "price": 640, + "name": "Blue Hardened Clay" + }, + "stained_clay:12": { + "price": 640, + "name": "Brown Hardened Clay" + }, + "stained_clay:8": { + "price": 640, + "name": "Gray Hardened Clay" + }, + "tropical_bird_1_personality": { + "price": 200000, + "name": "Tropical Bird 1 Minion Skin" + }, + "white_tiger_personality": { + "price": 230000, + "name": "White Tiger Minion Skin" + }, + "floral_lamppost": { + "price": 400000, + "name": "Floral Lamppost" + }, + "tropical_bird_2_personality": { + "price": 999999, + "name": "Tropical Bird 2 Minion Skin" + }, + "lvl_100_common_monkey": { + "price": 9999999, + "name": "Common Monkey" + }, + "perfect_helmet_1_skinned_perfect_forge": { + "price": 53000000, + "name": "Helmet - Tier I" + }, + "lvl_100_epic_ghoul": { + "price": 7000000, + "name": "Ghoul" + }, + "lvl_1_legendary_phoenix_skinned_phoenix_ice": { + "price": 54000000, + "name": "Phoenix" + }, + "lvl_100_legendary_enderman_skinned_enderman_slayer": { + "price": 50000000, + "name": "Enderman" + }, + "whipped_magma_cream": { + "price": 204800, + "name": "Whipped Magma Cream" + }, + "glowstone_gauntlet": { + "price": 40000, + "name": "Glowstone Gauntlet" + }, + "amalgamated_crimsonite": { + "price": 0, + "name": "Amalgamated Crimsonite" + }, + "moody_grappleshot": { + "price": 2394999, + "name": "Moody Grappleshot" + }, + "staff_of_the_volcano": { + "price": 300000, + "name": "Staff Of The Volcano" + }, + "magma_fish": { + "price": 164, + "name": "Magma Fish" + }, + "chyme": { + "price": 490000, + "name": "Chyme" + }, + "charm_1": { + "price": 99999, + "name": "Charm 1" + }, + "slug_boots": { + "price": 198000, + "name": "Slug Boots" + }, + "sword_of_bad_health": { + "price": 10000, + "name": "Sword Of Bad Health" + }, + "blade_of_the_volcano": { + "price": 320000, + "name": "Blade Of The Volcano" + }, + "moogma_leggings": { + "price": 298000, + "name": "Moogma Leggings" + }, + "flaming_chestplate": { + "price": 499000, + "name": "Flaming Chestplate" + }, + "vanquished_glowstone_gauntlet": { + "price": 1590000, + "name": "Waxed Vanquished Glowstone Gauntlet" + }, + "mesa_biome_stick": { + "price": 2000, + "name": "Mesa Biome Stick" + }, + "magma_necklace": { + "price": 169000, + "name": "Magma Necklace" + }, + "taurus_helmet": { + "price": 1000000, + "name": "Taurus Helmet" + }, + "mushroom_spore": { + "price": 5000, + "name": "Mushroom Spore" + }, + "abiphone_xii_mega_color": { + "price": 10000000, + "name": "Abiphone Xii Mega Color" + }, + "thunder_in_a_bottle_empty": { + "price": 300000, + "name": "Empty Thunder Bottle" + }, + "smoldering_1": { + "price": 4150000, + "name": "Smoldering 1" + }, + "vanquished_ghast_cloak": { + "price": 5089999, + "name": "Vanquished Ghast Cloak" + }, + "charminizer": { + "price": 950000, + "name": "Charminizer" + }, + "ghast_cloak": { + "price": 1170000, + "name": "Ghast Cloak" + }, + "vanquished_blaze_belt": { + "price": 1950000, + "name": "Vanquished Blaze Belt" + }, + "magma_rod": { + "price": 65000, + "name": "Magma Rod" + }, + "vanquished_magma_necklace": { + "price": 2700000, + "name": "Vanquished Magma Necklace" + }, + "rainbow_2": { + "price": 49000, + "name": "Rainbow 2" + }, + "corrupted_bait": { + "price": 13, + "name": "Corrupted Bait" + }, + "blaze_belt": { + "price": 190000, + "name": "Blaze Belt" + }, + "suspicious_stew": { + "price": 3000000, + "name": "Stew" + }, + "blessing_6": { + "price": 1750000, + "name": "Blessing 6" + }, + "lvl_1_legendary_snail": { + "price": 5399000, + "name": "Snail" + }, + "lvl_1_legendary_mooshroom_cow": { + "price": 7600000, + "name": "Mooshroom Cow" + }, + "inferno_fuel_block": { + "price": 15000, + "name": "Inferno Fuel Block" + }, + "lvl_1_uncommon_droplet_wisp": { + "price": 2550000, + "name": "Uncommon Droplet Wisp" + }, + "abiphone_xi_ultra_style": { + "price": 9500000, + "name": "Abiphone Xi Ultra Style" + }, + "abiphone_x_plus_special_edition": { + "price": 500, + "name": "Abiphone X Plus Special Edition" + }, + "ancient_cloak": { + "price": 4900000, + "name": "Cloak" + }, + "lvl_1_epic_mooshroom_cow": { + "price": 5999900, + "name": "Mooshroom Cow" + }, + "firedust_dagger": { + "price": 2300000, + "name": "Firedust Dagger" + }, + "corrupt_soil": { + "price": 1310000, + "name": "Corrupt Soil" + }, + "opal_power_scroll": { + "price": 588000, + "name": "Opal Power Scroll" + }, + "lvl_1_common_mooshroom_cow": { + "price": 3000000, + "name": "Common Mooshroom Cow" + }, + "lvl_1_rare_mooshroom_cow": { + "price": 2500000, + "name": "Rare Mooshroom Cow" + }, + "berserker_boots": { + "price": 1890000, + "name": "Berserker Boots" + }, + "red_thornleaf": { + "price": 6400, + "name": "Red Thornleaf" + }, + "mycelium_dust": { + "price": 74000, + "name": "Mycelium Dust" + }, + "mana_disintegrator": { + "price": 979999, + "name": "Mana Disintegrator" + }, + "charm_2": { + "price": 297000, + "name": "Charm 2" + }, + "kelvin_inverter": { + "price": 100000, + "name": "Kelvin Inverter" + }, + "berserker_chestplate": { + "price": 9000000, + "name": "Berserker Chestplate" + }, + "berserker_leggings": { + "price": 9000000, + "name": "Berserker Leggings" + }, + "berserker_helmet": { + "price": 7850000, + "name": "Berserker Helmet" + }, + "mawdust_dagger": { + "price": 1380000, + "name": "Dagger" + }, + "lvl_1_epic_snail": { + "price": 3899000, + "name": "Snail" + }, + "lvl_1_common_snail": { + "price": 2500000, + "name": "Common Snail" + }, + "abiphone_xiii_pro_giga": { + "price": 90000000, + "name": "Abiphone Xiii Pro Giga" + }, + "corruption_1": { + "price": 5000, + "name": "Corruption 1" + }, + "abiphone_xii_mega": { + "price": 6000000, + "name": "Abiphone Xii Mega" + }, + "smoldering_2": { + "price": 8488888, + "name": "Smoldering 2" + }, + "synthesizer_v1": { + "price": 2000000, + "name": "Synthesizer V1" + }, + "atominizer": { + "price": 4000000, + "name": "Atominizer" + }, + "inferno_fuel_blaze_rod": { + "price": 300000, + "name": "Inferno Minion Fuel" + }, + "abiphone_x_plus": { + "price": 500, + "name": "Abiphone X Plus" + }, + "lvl_1_uncommon_mooshroom_cow": { + "price": 999000, + "name": "Uncommon Mooshroom Cow" + }, + "corruption_2": { + "price": 48888, + "name": "Corruption 2" + }, + "sulphuric_coal": { + "price": 589000, + "name": "Sulphuric Coal" + }, + "corruption_3": { + "price": 74444, + "name": "Corruption 3" + }, + "corruption_4": { + "price": 120000, + "name": "Corruption 4" + }, + "scorched_power_crystal": { + "price": 2200000, + "name": "Scorched Power Crystal" + }, + "archfiend_dice": { + "price": 10000000, + "name": "Archfiend Dice" + }, + "lamp_rainbow": { + "price": 2500, + "name": "Rainbow Lamp" + }, + "charm_5": { + "price": 1688888, + "name": "Charm 5" + }, + "fire_freeze_staff": { + "price": 975000, + "name": "Fire Freeze Staff" + }, + "flame_2": { + "price": 49000, + "name": "Flame 2" + }, + "sulphur_bow": { + "price": 13300000, + "name": "Sulphur Bow" + }, + "inferno_fuel_magma_cream": { + "price": 300000, + "name": "Inferno Minion Fuel" + }, + "inferno_rod": { + "price": 12250000, + "name": "Inferno Rod" + }, + "thunderbolt_necklace": { + "price": 419000, + "name": "Thunderbolt Necklace" + }, + "dye_flame": { + "price": 174407082, + "name": "Flame Dye" + }, + "ultimate_reiterate_1": { + "price": 19000000, + "name": "Ultimate Reiterate 1" + }, + "inferno_fuel_nether_stalk": { + "price": 500000, + "name": "Inferno Minion Fuel" + }, + "implosion_belt": { + "price": 998000, + "name": "Implosion Belt" + }, + "magma_lord_fragment": { + "price": 1899999, + "name": "Magma Lord Fragment" + }, + "burstfire_dagger": { + "price": 7500000, + "name": "Kindlebane Dagger" + }, + "burstmaw_dagger": { + "price": 7500000, + "name": "Mawdredge Dagger" + }, + "inferno_fuel_crude_gabagool": { + "price": 1000000, + "name": "Inferno Minion Fuel" + }, + "abiphone_xiii_pro": { + "price": 20000000, + "name": "Abiphone Xiii Pro" + }, + "synthesizer_v2": { + "price": 9900000, + "name": "Synthesizer V2" + }, + "corruption_5": { + "price": 189999, + "name": "Corruption 5" + }, + "lvl_1_uncommon_snail": { + "price": 2000000, + "name": "Uncommon Snail" + }, + "charm_3": { + "price": 900000, + "name": "Charm 3" + }, + "fire_aspect_3": { + "price": 5500000, + "name": "Fire Aspect 3" + }, + "ragnarock_axe": { + "price": 580000, + "name": "Ragnarock Axe" + }, + "fire_fury_staff": { + "price": 9800000, + "name": "Fire Fury Staff" + }, + "wand_of_strength": { + "price": 950000, + "name": "Wand Of Strength" + }, + "flaming_fist": { + "price": 11800000, + "name": "Flaming Fist" + }, + "lvl_100_common_elephant": { + "price": 50000, + "name": "Common Elephant" + }, + "fire_veil_wand": { + "price": 7230000, + "name": "Fire Veil Wand" + }, + "smoldering_3": { + "price": 19000000, + "name": "Smoldering 3" + }, + "gauntlet_of_contagion": { + "price": 14500000, + "name": "Gauntlet Of Contagion" + }, + "hardened_mana_1": { + "price": 50000, + "name": "Hardened Mana 1" + }, + "strong_mana_1": { + "price": 100000, + "name": "Mana 1" + }, + "mana_vampire_1": { + "price": 290000, + "name": "Mana Vampire 1" + }, + "fervor_boots": { + "price": 700000, + "name": "Fervor Boots" + }, + "ferocious_mana_1": { + "price": 450000, + "name": "Ferocious Mana 1" + }, + "attribute_shard": { + "price": 20000, + "name": "Attribute Shard" + }, + "fervor_helmet": { + "price": 695000, + "name": "Fervor Helmet" + }, + "crimson_helmet": { + "price": 1600000, + "name": "Crimson Helmet" + }, + "terror_leggings": { + "price": 590000, + "name": "Terror Leggings" + }, + "fervor_leggings": { + "price": 580000, + "name": "Fervor Leggings" + }, + "crimson_chestplate": { + "price": 1850000, + "name": "Crimson Chestplate" + }, + "molten_necklace": { + "price": 5499999, + "name": "Molten Necklace" + }, + "crimson_boots": { + "price": 1550000, + "name": "Crimson Boots" + }, + "terror_chestplate": { + "price": 777000, + "name": "Terror Chestplate" + }, + "aurora_boots": { + "price": 800000, + "name": "Aurora Boots" + }, + "crimson_leggings": { + "price": 1400000, + "name": "Crimson Leggings" + }, + "terror_boots": { + "price": 599999, + "name": "Terror Boots" + }, + "terror_helmet": { + "price": 700000, + "name": "Terror Helmet" + }, + "lvl_100_legendary_snail": { + "price": 19500000, + "name": "Snail" + }, + "aurora_helmet": { + "price": 600000, + "name": "Aurora Helmet" + }, + "ferocious_mana_2": { + "price": 1390000, + "name": "Ferocious Mana 2" + }, + "fervor_chestplate": { + "price": 750000, + "name": "Fervor Chestplate" + }, + "aurora_chestplate": { + "price": 550000, + "name": "Aurora Chestplate" + }, + "runic_staff": { + "price": 1000000, + "name": "Aurora Staff" + }, + "aurora_leggings": { + "price": 550000, + "name": "Aurora Leggings" + }, + "molten_bracelet": { + "price": 3111111, + "name": "Molten Bracelet" + }, + "molten_belt": { + "price": 1900000, + "name": "Molten Belt" + }, + "shimmering_light_slippers": { + "price": 3000000, + "name": "Light Slippers" + }, + "shimmering_light_hood": { + "price": 7999000, + "name": "Light Hood" + }, + "hardened_mana_2": { + "price": 140000, + "name": "Hardened Mana 2" + }, + "molten_cloak": { + "price": 4000000, + "name": "Molten Cloak" + }, + "shimmering_light_tunic": { + "price": 9900000, + "name": "Light Tunic" + }, + "delirium_necklace": { + "price": 4444444, + "name": "Delirium Necklace" + }, + "mana_vampire_2": { + "price": 800000, + "name": "Mana Vampire 2" + }, + "strong_mana_3": { + "price": 940000, + "name": "Mana 3" + }, + "strong_mana_2": { + "price": 200000, + "name": "Mana 2" + }, + "ferocious_mana_4": { + "price": 4999999, + "name": "Ferocious Mana 4" + }, + "ferocious_mana_3": { + "price": 2850000, + "name": "Ferocious Mana 3" + }, + "hardened_mana_3": { + "price": 290000, + "name": "Hardened Mana 3" + }, + "mana_vampire_3": { + "price": 1600000, + "name": "Mana Vampire 3" + }, + "ferocious_mana_5": { + "price": 13000000, + "name": "Ferocious Mana 5" + }, + "hardened_mana_4": { + "price": 1300000, + "name": "Hardened Mana 4" + }, + "red_thornleaf_tea": { + "price": 188000, + "name": "Red Thornleaf Tea" + }, + "hardened_mana_5": { + "price": 2600000, + "name": "Hardened Mana 5" + }, + "strong_mana_5": { + "price": 5890000, + "name": "Mana 5" + }, + "lvl_1_rare_snail": { + "price": 3600000, + "name": "Rare Snail" + }, + "lvl_100_legendary_mooshroom_cow": { + "price": 22500000, + "name": "Mooshroom Cow" + }, + "ultimate_fatal_tempo_1": { + "price": 105000000, + "name": "Ultimate Fatal Tempo 1" + }, + "synthesizer_v3": { + "price": 37500000, + "name": "Fortified Synthesizer V3" + }, + "mana_vampire_4": { + "price": 3600000, + "name": "Mana Vampire 4" + }, + "ultimate_inferno_1": { + "price": 28000000, + "name": "Ultimate Inferno 1" + }, + "strong_mana_4": { + "price": 1700000, + "name": "Mana 4" + }, + "mana_vampire_5": { + "price": 5700000, + "name": "Mana Vampire 5" + }, + "inferno_fuel_glowstone_dust": { + "price": 3000000, + "name": "Inferno Minion Fuel" + }, + "scourge_cloak": { + "price": 9998000, + "name": "Scourge Cloak" + }, + "inferno_heavy_crude_gabagool": { + "price": 1799999, + "name": "Inferno Minion Fuel" + }, + "thunder_in_a_bottle": { + "price": 2000000, + "name": "Thunder In A Bottle" + }, + "hardened_mana_6": { + "price": 4999990, + "name": "Hardened Mana 6" + }, + "magma_lord_boots": { + "price": 5100000, + "name": "Magma Lord Boots" + }, + "ferocious_mana_6": { + "price": 23000000, + "name": "Ferocious Mana 6" + }, + "magma_lord_gauntlet": { + "price": 13999999, + "name": "Magma Lord Gauntlet" + }, + "hardened_mana_7": { + "price": 14800000, + "name": "Hardened Mana 7" + }, + "ferocious_mana_7": { + "price": 45000000, + "name": "Ferocious Mana 7" + }, + "mana_vampire_8": { + "price": 49000000, + "name": "Mana Vampire 8" + }, + "charm_4": { + "price": 950000, + "name": "Charm 4" + }, + "mana_vampire_6": { + "price": 12900000, + "name": "Mana Vampire 6" + }, + "strong_mana_8": { + "price": 39999000, + "name": "Mana 8" + }, + "lava_shell_necklace": { + "price": 2389900, + "name": "Lava Shell Necklace" + }, + "strong_mana_7": { + "price": 18000000, + "name": "Mana 7" + }, + "warning_flare": { + "price": 7800000, + "name": "Warning Flare" + }, + "shimmering_light_trousers": { + "price": 7000000, + "name": "Light Trousers" + }, + "hardened_mana_8": { + "price": 11000000, + "name": "Hardened Mana 8" + }, + "magma_lord_leggings": { + "price": 10500000, + "name": "Magma Lord Leggings" + }, + "magma_lord_helmet": { + "price": 9698999, + "name": "Magma Lord Helmet" + }, + "smoldering_5": { + "price": 83000000, + "name": "Smoldering 5" + }, + "lvl_100_epic_mooshroom_cow": { + "price": 13000000, + "name": "Mooshroom Cow" + }, + "ultimate_reiterate_3": { + "price": 80000000, + "name": "Ultimate Reiterate 3" + }, + "scoville_belt": { + "price": 15000000, + "name": "Glistening Scoville Belt" + }, + "jacobus_register": { + "price": 21500000, + "name": "Unknown" + }, + "lvl_100_epic_snail": { + "price": 15500000, + "name": "Snail" + }, + "strong_mana_6": { + "price": 9990000, + "name": "Mana 6" + }, + "demonlord_gauntlet": { + "price": 50000000, + "name": "Strengthened Demonslayer Gauntlet" + }, + "strong_mana_9": { + "price": 90000000, + "name": "Mana 9" + }, + "hellfire_rod": { + "price": 89900000, + "name": "Hellfire Rod" + }, + "inferno_heavy_glowstone_dust": { + "price": 2250000, + "name": "Inferno Minion Fuel" + }, + "mana_vampire_7": { + "price": 27000000, + "name": "Mana Vampire 7" + }, + "strong_mana_10": { + "price": 179999998, + "name": "Mana 10" + }, + "magma_lord_chestplate": { + "price": 14200000, + "name": "Magma Lord Chestplate" + }, + "lvl_100_uncommon_droplet_wisp": { + "price": 40000000, + "name": "Uncommon Droplet Wisp" + }, + "thornleaf_scythe": { + "price": 50, + "name": "Thornleaf Scythe" + }, + "inferno_hypergolic_crude_gabagool": { + "price": 21900000, + "name": "Inferno Minion Fuel" + }, + "high_class_archfiend_dice": { + "price": 54400000, + "name": "High Class Archfiend Dice" + }, + "stew_the_fish": { + "price": 55000000, + "name": "Stew The Fish" + }, + "inferno_heavy_magma_cream": { + "price": 900000, + "name": "Inferno Minion Fuel" + }, + "marsh_spore_soup": { + "price": 95000, + "name": "Marsh Spore Soup" + }, + "ultimate_reiterate_5": { + "price": 299999900, + "name": "Ultimate Reiterate 5" + }, + "spore_harvester": { + "price": 250, + "name": "Spore Harvester" + }, + "smoldering_4": { + "price": 42400000, + "name": "Smoldering 4" + }, + "magma_fish_hat": { + "price": 400, + "name": "Magmafish Hat" + }, + "lvl_1_legendary_rabbit_skinned_rabbit_rose": { + "price": 15000000, + "name": "Rabbit" + }, + "wilson_engineering_plans": { + "price": 14900000, + "name": "Wilson's Engineering Plans" + }, + "ultimate_reiterate_2": { + "price": 39000000, + "name": "Ultimate Reiterate 2" + }, + "ferocious_mana_8": { + "price": 80000000, + "name": "Ferocious Mana 8" + }, + "subzero_inverter": { + "price": 4900000, + "name": "Subzero Inverter" + }, + "lvl_100_common_wolf": { + "price": 2000000, + "name": "Common Wolf" + }, + "burststopper_talisman": { + "price": 84444444, + "name": "Burststopper Talisman" + }, + "bridge_egg": { + "price": 800, + "name": "Bridge Egg" + }, + "ink_sack:10": { + "price": 29, + "name": "Lime Dye" + }, + "lvl_1_epic_ender_dragon_skinned_dragon_pastel": { + "price": 310100000, + "name": "Ender Dragon" + }, + "mana_vampire_10": { + "price": 290000000, + "name": "Mana Vampire 10" + }, + "red_sandstone:2": { + "price": 960, + "name": "Red Smooth Sandstone" + }, + "hardened_mana_9": { + "price": 23999000, + "name": "Hardened Mana 9" + }, + "lvl_100_rare_snail": { + "price": 14500000, + "name": "Rare Snail" + }, + "lvl_100_common_jerry_skinned_jerry_green_elf": { + "price": 149999999, + "name": "Common Jerry" + }, + "ultimate_reiterate_4": { + "price": 144000000, + "name": "Ultimate Reiterate 4" + }, + "reinforced_scales": { + "price": 4000000, + "name": "Scales" + }, + "ferocious_mana_9": { + "price": 199999999, + "name": "Ferocious Mana 9" + }, + "inferno_heavy_blaze_rod": { + "price": 2500000, + "name": "Inferno Minion Fuel" + }, + "mana_vampire_9": { + "price": 115000000, + "name": "Mana Vampire 9" + }, + "gabagoey_mixin": { + "price": 500000, + "name": "Gabagoey Mixin" + }, + "everburning_flame": { + "price": 80000000, + "name": "Everburning Flame" + }, + "hardened_mana_10": { + "price": 90000000, + "name": "Hardened Mana 10" + }, + "ultimate_flash_1": { + "price": 1920000, + "name": "Ultimate Flash 1" + }, + "ultimate_flash_2": { + "price": 4500000, + "name": "Ultimate Flash 2" + }, + "ultimate_flash_3": { + "price": 9800000, + "name": "Ultimate Flash 3" + }, + "radioactive_vial": { + "price": 197000000, + "name": "Radioactive Vial" + }, + "lvl_100_mythic_flying_fish": { + "price": 180000000, + "name": "Flying Fish" + }, + "ultimate_flash_5": { + "price": 39800000, + "name": "Ultimate Flash 5" + }, + "scornclaw_brew": { + "price": 250, + "name": "Scornclaw Brew" + }, + "acacia_stairs": { + "price": 4, + "name": "Acacia Wood Stairs" + }, + "eccentric_painting_bundle": { + "price": 115000000, + "name": "Eccentric Painting Bundle" + }, + "ultimate_flash_4": { + "price": 18000000, + "name": "Ultimate Flash 4" + }, + "lvl_100_uncommon_mooshroom_cow": { + "price": 7000000, + "name": "Uncommon Mooshroom Cow" + }, + "ultimate_fatal_tempo_3": { + "price": 450000000, + "name": "Ultimate Fatal Tempo 3" + }, + "lvl_100_common_mooshroom_cow": { + "price": 6500000, + "name": "Common Mooshroom Cow" + }, + "lvl_1_uncommon_dolphin_skinned_dolphin_snubnose_purple": { + "price": 7000000, + "name": "Uncommon Dolphin" + }, + "lvl_1_uncommon_dolphin_skinned_dolphin_snubfin": { + "price": 2500000, + "name": "Uncommon Dolphin" + }, + "jack_o_lantern": { + "price": 1280, + "name": "Jack O' Lantern" + }, + "lvl_1_uncommon_dolphin_skinned_dolphin_snubnose_red": { + "price": 6000000, + "name": "Uncommon Dolphin" + }, + "lvl_1_uncommon_armadillo_skinned_armadillo_enchanted": { + "price": 11000000, + "name": "Uncommon Armadillo" + }, + "lvl_1_uncommon_armadillo_skinned_armadillo_seafoam": { + "price": 7000000, + "name": "Uncommon Armadillo" + }, + "enrager": { + "price": 2146999999, + "name": "Enrager" + }, + "infinite_spirit_leap": { + "price": 37999888, + "name": "Infinileap" + }, + "amalgamated_crimsonite_new": { + "price": 272021, + "name": "Amalgamated Crimsonite New" + }, + "ender_chest": { + "price": 17600, + "name": "Ender Chest" + }, + "jungle_biome_stick": { + "price": 160, + "name": "Jungle Biome Stick" + }, + "lvl_100_epic_wolf": { + "price": 2000000, + "name": "Wolf" + }, + "lvl_100_rare_frost_wisp": { + "price": 89000000, + "name": "Rare Frost Wisp" + }, + "lvl_1_epic_monkey_skinned_monkey_gorilla": { + "price": 19000000, + "name": "Monkey" + }, + "pet_skin_kuudra_loyalty": { + "price": 13449000, + "name": "Loyalty Kuudra Skin" + }, + "gabagool_the_fish": { + "price": 495000000, + "name": "Gabagool The Fish" + }, + "diamond_the_fish": { + "price": 69690000, + "name": "Diamond The Fish" + }, + "carpet:2": { + "price": 320, + "name": "Magenta Carpet" + }, + "firework_charge": { + "price": 3, + "name": "Firework Star" + }, + "lvl_100_common_pig": { + "price": 16999999, + "name": "Common Pig" + }, + "carpet:12": { + "price": 320, + "name": "Brown Carpet" + }, + "inferno_hypergolic_blaze_rod": { + "price": 21720000, + "name": "Inferno Minion Fuel" + }, + "ferocious_mana_10": { + "price": 399999999, + "name": "Ferocious Mana 10" + }, + "lvl_1_uncommon_jerry_skinned_jerry_handsome": { + "price": 1000000, + "name": "Uncommon Jerry" + }, + "lvl_1_legendary_sheep_skinned_sheep_pink": { + "price": 550000000, + "name": "Sheep" + }, + "destruction_cloak": { + "price": 150000000, + "name": "Destruction Cloak" + }, + "black_coffee": { + "price": 250, + "name": "Black Coffee" + }, + "heartmaw_dagger": { + "price": 478888888, + "name": "Deathripper Dagger" + }, + "ultimate_fatal_tempo_2": { + "price": 180000000, + "name": "Ultimate Fatal Tempo 2" + }, + "lvl_1_legendary_monkey_skinned_monkey_gorilla": { + "price": 30999999, + "name": "Monkey" + }, + "tactical_insertion": { + "price": 200000000, + "name": "Tactical Insertion" + }, + "dropper": { + "price": 1280, + "name": "Dropper" + }, + "burststopper_artifact": { + "price": 140000000, + "name": "Burststopper Artifact" + }, + "step:1": { + "price": 160, + "name": "Sandstone Slab" + }, + "stained_glass": { + "price": 500, + "name": "White Stained Glass" + }, + "upgrade_stone_frost": { + "price": 90000000, + "name": "Wisp Upgrade Stone" + }, + "true_warden": { + "price": 46000000, + "name": "True Warden Skin" + }, + "warden_helmet_skinned_true_warden": { + "price": 190000000, + "name": "Warden Helmet" + }, + "hot_chocolate": { + "price": 250, + "name": "Hot Chocolate" + }, + "inferno_heavy_nether_stalk": { + "price": 9500000, + "name": "Inferno Minion Fuel" + }, + "bingo_artifact": { + "price": 290000000, + "name": "Bingo Artifact" + }, + "lvl_100_epic_spider": { + "price": 20000000, + "name": "Spider" + }, + "teleporter_pill": { + "price": 500000000, + "name": "Teleporter Pill" + }, + "ultimate_fatal_tempo_4": { + "price": 450000000, + "name": "Ultimate Fatal Tempo 4" + }, + "heartfire_dagger": { + "price": 500000000, + "name": "Pyrochaos Dagger" + }, + "stone:2": { + "price": 640, + "name": "Polished Granite" + }, + "ultimate_inferno_2": { + "price": 100000000, + "name": "Ultimate Inferno 2" + }, + "lvl_1_common_ocelot_skinned_ocelot_snow_tiger": { + "price": 6900000, + "name": "Common Ocelot" + }, + "lvl_1_common_tiger_skinned_tiger_golden": { + "price": 6900000, + "name": "Common Tiger" + }, + "stained_glass_pane:12": { + "price": 1, + "name": "Brown Stained Glass Pane" + }, + "perfect_helmet_10_skinned_perfect_forge": { + "price": 5500000, + "name": "Perfect Helmet - Tier X" + }, + "lvl_100_uncommon_dolphin_skinned_dolphin_snubnose_red": { + "price": 5200000, + "name": "Uncommon Dolphin" + }, + "lvl_100_common_rock_skinned_rock_embarrassed": { + "price": 600000000, + "name": "Common Rock" + }, + "brick_stairs": { + "price": 640, + "name": "Brick Stairs" + }, + "lvl_1_legendary_wolf_skinned_wolf": { + "price": 29666666, + "name": "Wolf" + }, + "inferno_hypergolic_nether_stalk": { + "price": 20000000, + "name": "Inferno Minion Fuel" + }, + "stained_glass_pane:9": { + "price": 240, + "name": "Cyan Stained Glass Pane" + }, + "stained_glass_pane:11": { + "price": 4, + "name": "Blue Stained Glass Pane" + }, + "lvl_100_epic_glacial_wisp": { + "price": 1000000000, + "name": "Glacial Wisp" + }, + "blazetekk_ham_radio": { + "price": 759000000, + "name": "Blazetekk™ Ham Radio" + }, + "pet_skin_enderman_xenon": { + "price": 5900000, + "name": "Xenon Enderman Skin" + }, + "pet_skin_enderman_neon": { + "price": 5300000, + "name": "Neon Enderman Skin" + }, + "lvl_100_mythic_enderman_skinned_enderman_neon": { + "price": 47000000, + "name": "Enderman" + }, + "lvl_100_mythic_enderman_skinned_enderman_xenon": { + "price": 55000000, + "name": "Enderman" + }, + "party_hat_crab_animated": { + "price": 2040000, + "name": "Orange Crab Hat Of Celebration - 2022 Edition" + }, + "summoning_eye": { + "price": 853771, + "name": "Summoning Eye" + }, + "alert_flare": { + "price": 389000000, + "name": "Alert Flare" + }, + "lvl_1_epic_enderman_skinned_enderman_xenon": { + "price": 6900000, + "name": "Enderman" + }, + "annihilation_cloak": { + "price": 540000000, + "name": "Strengthened Annihilation Cloak" + }, + "lvl_1_legendary_rock_skinned_rock_smile": { + "price": 425000000, + "name": "Rock" + }, + "lvl_100_epic_enderman_skinned_enderman_xenon": { + "price": 18500000, + "name": "Enderman" + }, + "lvl_1_rare_frost_wisp": { + "price": 170555555, + "name": "Rare Frost Wisp" + }, + "lvl_1_epic_glacial_wisp": { + "price": 495000000, + "name": "Unknown" + }, + "lvl_1_legendary_subzero_wisp": { + "price": 6000000000, + "name": "Unknown" + }, + "lvl_100_legendary_subzero_wisp": { + "price": 6000000000, + "name": "Unknown" + }, + "sos_flare": { + "price": 2650000000, + "name": "Sos Flare" + }, + "lvl_1_common_enderman_skinned_enderman_neon": { + "price": 5000000, + "name": "Common Enderman" + }, + "lvl_100_uncommon_squid": { + "price": 5900000, + "name": "Uncommon Squid" + }, + "lvl_1_legendary_enderman_skinned_enderman_xenon": { + "price": 37000000, + "name": "Enderman" + }, + "lvl_100_epic_enderman_skinned_enderman_neon": { + "price": 19000000, + "name": "Enderman" + }, + "abiphone_xi_ultra": { + "price": 500, + "name": "Abiphone Xi Ultra" + }, + "inferno_hypergolic_magma_cream": { + "price": 22700000, + "name": "Inferno Minion Fuel" + }, + "lvl_100_rare_bee": { + "price": 2400000, + "name": "Rare Bee" + }, + "volleyball": { + "price": 19999, + "name": "Volleyball Court" + }, + "fish_personality": { + "price": 87999, + "name": "Fish Minion Skin" + }, + "crab": { + "price": 123000, + "name": "Crab" + }, + "pufferfish_personality": { + "price": 600000, + "name": "Pufferfish Minion Skin" + }, + "ice_cream_cart": { + "price": 199444, + "name": "Ice Cream Cart" + }, + "small_pool": { + "price": 18000, + "name": "Small Pool" + }, + "hammock": { + "price": 5000, + "name": "Hammock" + }, + "scarleton_premium": { + "price": 20000, + "name": "Scarleton Premium" + }, + "pet_skin_bal_inferno": { + "price": 27000000, + "name": "Inferno Bal Skin" + }, + "lvl_1_common_chicken_skinned_chicken_baby_chick": { + "price": 39000000, + "name": "Common Chicken" + }, + "lvl_100_epic_guardian_skinned_guardian": { + "price": 200000000, + "name": "Guardian" + }, + "lvl_1_epic_enderman_skinned_enderman_neon": { + "price": 5800000, + "name": "Enderman" + }, + "jungle_door_item": { + "price": 320, + "name": "Jungle Door" + }, + "lvl_1_epic_phoenix_skinned_phoenix_ice": { + "price": 5000000, + "name": "Phoenix" + }, + "carrot_stick": { + "price": 15, + "name": "Carrot On A Stick" + }, + "lvl_100_legendary_bal_skinned_bal_inferno": { + "price": 45000000, + "name": "Bal" + }, + "dye_iceberg": { + "price": 2000000000, + "name": "Iceberg Dye" + }, + "leaves_2": { + "price": 640, + "name": "Acacia Leaves" + }, + "lvl_100_uncommon_bat": { + "price": 2000000, + "name": "Uncommon Bat" + }, + "pet_skin_megalodon_baby": { + "price": 5990000, + "name": "Baby Megalodon Skin" + }, + "lvl_1_legendary_megalodon_skinned_megalodon_baby": { + "price": 6000000, + "name": "Megalodon" + }, + "lvl_1_epic_megalodon_skinned_megalodon_baby": { + "price": 5000000, + "name": "Megalodon" + }, + "lvl_100_legendary_megalodon_skinned_megalodon_baby": { + "price": 18998999, + "name": "Megalodon" + }, + "lvl_100_common_dolphin_skinned_dolphin_snubnose_purple": { + "price": 5000000, + "name": "Common Dolphin" + }, + "lvl_100_common_dolphin_skinned_dolphin_snubnose_green": { + "price": 5000000, + "name": "Common Dolphin" + }, + "lvl_100_common_dolphin_skinned_dolphin_snubfin": { + "price": 5000000, + "name": "Common Dolphin" + }, + "lvl_100_common_dolphin_skinned_dolphin_snubnose_red": { + "price": 5000000, + "name": "Common Dolphin" + }, + "lvl_1_legendary_monkey_skinned_monkey_golden": { + "price": 83999999, + "name": "Monkey" + }, + "inferno_hypergolic_glowstone_dust": { + "price": 23000000, + "name": "Inferno Minion Fuel" + }, + "lvl_100_uncommon_bee": { + "price": 3249999, + "name": "Uncommon Bee" + }, + "lvl_100_epic_ocelot_skinned_ocelot_snow_tiger": { + "price": 24599999, + "name": "Ocelot" + }, + "lamp_lilac": { + "price": 2500, + "name": "Lilac Lamp" + }, + "deep_ocean_biome_stick": { + "price": 750, + "name": "Deep Ocean Biome Stick" + }, + "savana_biome_stick": { + "price": 160, + "name": "Savanna Biome Stick" + }, + "ultimate_inferno_3": { + "price": 120000000, + "name": "Ultimate Inferno 3" + }, + "lvl_100_common_lion": { + "price": 4500000, + "name": "Common Lion" + }, + "red_sandstone_stairs": { + "price": 640, + "name": "Red Sandstone Stairs" + }, + "pet_skin_ender_dragon_undead": { + "price": 4800000, + "name": "Ender Dragon Skin" + }, + "lvl_100_legendary_ender_dragon_skinned_ender_dragon_undead": { + "price": 580000000, + "name": "Ender Dragon" + }, + "lvl_100_epic_ender_dragon_skinned_ender_dragon_undead": { + "price": 258000000, + "name": "Ender Dragon" + }, + "lvl_100_common_skeleton": { + "price": 14000000, + "name": "Common Skeleton" + }, + "lvl_1_rare_dolphin_skinned_dolphin_snubnose_purple": { + "price": 5000000, + "name": "Rare Dolphin" + }, + "thunder_boots": { + "price": 700000, + "name": "Thunder Boots" + }, + "thunder_helmet": { + "price": 699000, + "name": "Thunder Helmet" + }, + "thunder_chestplate": { + "price": 1000000, + "name": "Thunder Chestplate" + }, + "thunder_leggings": { + "price": 1000000, + "name": "Thunder Leggings" + }, + "salmon_hat": { + "price": 200, + "name": "Salmon Hat" + }, + "adaptive_boots": { + "price": 330000, + "name": "Adaptive Boots" + }, + "goblin_boots": { + "price": 2999, + "name": "Goblin Boots" + }, + "carpet:3": { + "price": 320, + "name": "Blue Carpet" + }, + "dispenser": { + "price": 1280, + "name": "Dispenser" + }, + "hecatomb_1": { + "price": 2100000, + "name": "Hecatomb 1" + }, + "champion_1": { + "price": 1200000, + "name": "Champion 1" + }, + "reheated_gummy_polar_bear": { + "price": 500000, + "name": "Re-heated Gummy Polar Bear" + }, + "hypergolic_ionized_ceramics": { + "price": 400000, + "name": "Hypergolic Ionized Ceramics" + }, + "capsaicin_eyedrops": { + "price": 679999, + "name": "Capsaicin Eyedrops" + }, + "64_inferno_fuel_block": { + "price": 850000, + "name": "64x Inferno Fuel Block" + }, + "carpet:9": { + "price": 320, + "name": "Cyan Carpet" + }, + "stone_bridge": { + "price": 320, + "name": "Stone Platform" + }, + "cayenne_5": { + "price": 40000000, + "name": "Cayenne 5" + }, + "cayenne_4": { + "price": 15000000, + "name": "Cayenne 4" + }, + "wolf_talisman": { + "price": 250, + "name": "Wolf Talisman" + }, + "pulse_ring": { + "price": 40000, + "name": "Pulse Ring" + }, + "rabbit_hat": { + "price": 10, + "name": "Rabbit Hat" + }, + "spruce_fence_gate": { + "price": 320, + "name": "Spruce Fence Gate" + }, + "birch_fence_gate": { + "price": 320, + "name": "Birch Fence Gate" + }, + "lvl_1_common_dolphin_skinned_dolphin_snubnose_purple": { + "price": 3000000, + "name": "Common Dolphin" + }, + "dante_talisman": { + "price": 110, + "name": "Dante Talisman" + }, + "lvl_100_epic_chicken": { + "price": 13000000, + "name": "Chicken" + }, + "acacia_fence": { + "price": 320, + "name": "Acacia Fence" + }, + "acacia_door_item": { + "price": 320, + "name": "Acacia Door" + }, + "lvl_100_uncommon_ocelot": { + "price": 10000000, + "name": "Uncommon Ocelot" + }, + "carpet:15": { + "price": 320, + "name": "Black Carpet" + }, + "carpet:7": { + "price": 320, + "name": "Gray Carpet" + }, + "carpet:5": { + "price": 320, + "name": "Lime Carpet" + }, + "stained_glass:9": { + "price": 960, + "name": "Cyan Stained Glass" + }, + "stained_glass:8": { + "price": 960, + "name": "Gray Stained Glass" + }, + "stained_glass:12": { + "price": 960, + "name": "Brown Stained Glass" + }, + "stained_glass:7": { + "price": 960, + "name": "Gray Stained Glass" + }, + "stained_glass:6": { + "price": 10, + "name": "Pink Stained Glass" + }, + "dye_celeste": { + "price": 1500000000, + "name": "Celeste Dye" + }, + "watch": { + "price": 2560, + "name": "Clock" + }, + "note_block": { + "price": 960, + "name": "Noteblock" + }, + "step:4": { + "price": 160, + "name": "Brick Slab" + }, + "stained_clay:15": { + "price": 640, + "name": "Black Hardened Clay" + }, + "cooked_fish:1": { + "price": 3200, + "name": "Cooked Salmon" + }, + "lvl_100_legendary_enderman_skinned_enderman_xenon": { + "price": 56000000, + "name": "Enderman" + }, + "mushroom_biome_stick": { + "price": 2000, + "name": "Mushroom Biome Stick" + }, + "lvl_1_legendary_enderman_skinned_enderman_neon": { + "price": 30000000, + "name": "Enderman" + }, + "stuffed_chili_pepper": { + "price": 66666666, + "name": "Stuffed Chili Pepper" + }, + "bird_house": { + "price": 82000, + "name": "Bird House" + }, + "dirt_bottle": { + "price": 0, + "name": "Dirt Bottle" + }, + "lvl_100_epic_megalodon_skinned_megalodon_baby": { + "price": 16000000, + "name": "Megalodon" + }, + "lvl_100_common_jerry_skinned_jerry_handsome": { + "price": 20000000, + "name": "Common Jerry" + }, + "the_art_of_peace": { + "price": 57000000, + "name": "The Art Of Peace" + }, + "pet_skin_rock_blinking": { + "price": 92500000, + "name": "Blinking Rock Skin" + }, + "shens_regalia": { + "price": 544444444, + "name": "Shen's Regalia" + }, + "lvl_100_legendary_rock_skinned_rock_blinking": { + "price": 90000000, + "name": "Rock" + }, + "artifact_of_control": { + "price": 920000000, + "name": "Artifact Of Control" + }, + "rat_jetpack": { + "price": 59000000, + "name": "Rat Jetpack" + }, + "lvl_100_mythic_rat": { + "price": 60000000, + "name": "Rat" + }, + "lvl_100_epic_pigman": { + "price": 19000000, + "name": "Pigman" + }, + "pet_skin_bee_rgbee": { + "price": 10300000, + "name": "Rgbee Bee Skin" + }, + "lvl_1_legendary_bee_skinned_bee_rgbee": { + "price": 15000000, + "name": "Bee" + }, + "wizard_wand": { + "price": 696969420, + "name": "Wizard Wand" + }, + "pandoras_box": { + "price": 700000000, + "name": "Pandora's Box" + }, + "pet_skin_rock_sweating": { + "price": 56000000, + "name": "Sweating Rock Skin" + }, + "jalapeno_book": { + "price": 39500000, + "name": "Jalapeno Book" + }, + "lvl_100_legendary_rock_skinned_rock_sweating": { + "price": 59999999, + "name": "Rock" + }, + "lvl_100_legendary_bee_skinned_bee_rgbee": { + "price": 40000000, + "name": "Bee" + }, + "ink_sack:8": { + "price": 29, + "name": "Gray Dye" + }, + "pet_item_farming_skill_boost_uncommon": { + "price": 400000, + "name": "Farming Exp Boost" + }, + "lvl_1_uncommon_squid_skinned_squid_glow": { + "price": 21000000, + "name": "Uncommon Squid" + }, + "pet_skin_rock_surprised": { + "price": 56000000, + "name": "Surprised Rock Skin" + }, + "worm_the_fish": { + "price": 16999999, + "name": "Worm The Fish" + }, + "activator_rail": { + "price": 120, + "name": "Activator Rail" + }, + "crimson_essence": { + "price": 13200, + "name": "Crimson Essence" + }, + "ink_sack:4": { + "price": 4, + "name": "Ink Sack:4" + }, + "brown_mushroom": { + "price": 26, + "name": "Brown Mushroom" + }, + "tarantula_web": { + "price": 36, + "name": "Tarantula Web" + }, + "ink_sack:3": { + "price": 2, + "name": "Ink Sack:3" + }, + "spooky_shard": { + "price": 4998, + "name": "Spooky Shard" + }, + "exp_bottle": { + "price": 42, + "name": "Exp Bottle" + }, + "enchanted_potato": { + "price": 277, + "name": "Enchanted Potato" + }, + "jerry_box_green": { + "price": 79997, + "name": "Jerry Box Green" + }, + "enchanted_slime_ball": { + "price": 3200, + "name": "Enchanted Slime Ball" + }, + "carrot_item": { + "price": 3, + "name": "Carrot Item" + }, + "enchanted_red_mushroom": { + "price": 718, + "name": "Enchanted Red Mushroom" + }, + "enchanted_golden_carrot": { + "price": 49492, + "name": "Enchanted Golden Carrot" + }, + "enchanted_rabbit_hide": { + "price": 30960, + "name": "Enchanted Rabbit Hide" + }, + "flawed_amethyst_gem": { + "price": 306, + "name": "Flawed Amethyst Gem" + }, + "perfect_jade_gem": { + "price": 8766739, + "name": "Perfect Jade Gem" + }, + "enchanted_sugar": { + "price": 330, + "name": "Enchanted Sugar" + }, + "enchanted_birch_log": { + "price": 486, + "name": "Enchanted Birch Log" + }, + "enchanted_gunpowder": { + "price": 1842, + "name": "Enchanted Gunpowder" + }, + "cactus": { + "price": 2, + "name": "Cactus" + }, + "enchanted_melon": { + "price": 231, + "name": "Enchanted Melon" + }, + "pumpkin": { + "price": 5, + "name": "Pumpkin" + }, + "enchanted_blaze_rod": { + "price": 355992, + "name": "Enchanted Blaze Rod" + }, + "enchanted_cake": { + "price": 5625, + "name": "Enchanted Cake" + }, + "flawed_jasper_gem": { + "price": 647, + "name": "Flawed Jasper Gem" + }, + "enchanted_brown_mushroom": { + "price": 691, + "name": "Enchanted Brown Mushroom" + }, + "enchanted_raw_salmon": { + "price": 1600, + "name": "Enchanted Raw Salmon" + }, + "goblin_egg_yellow": { + "price": 126994, + "name": "Goblin Egg Yellow" + }, + "flawed_amber_gem": { + "price": 355, + "name": "Flawed Amber Gem" + }, + "nurse_shark_tooth": { + "price": 1999, + "name": "Nurse Shark Tooth" + }, + "wheat": { + "price": 3, + "name": "Wheat" + }, + "enchanted_glistering_melon": { + "price": 3913, + "name": "Enchanted Glistering Melon" + }, + "prismarine_shard": { + "price": 6, + "name": "Prismarine Shard" + }, + "enchanted_emerald": { + "price": 1072, + "name": "Enchanted Emerald" + }, + "protector_fragment": { + "price": 7319, + "name": "Protector Fragment" + }, + "enchanted_spider_eye": { + "price": 776, + "name": "Enchanted Spider Eye" + }, + "enchanted_melon_block": { + "price": 25838, + "name": "Enchanted Melon Block" + }, + "power_crystal": { + "price": 347190, + "name": "Power Crystal" + }, + "grand_exp_bottle": { + "price": 4331, + "name": "Grand Exp Bottle" + }, + "red_mushroom": { + "price": 3, + "name": "Red Mushroom" + }, + "mutton": { + "price": 23, + "name": "Mutton" + }, + "raw_soulflow": { + "price": 88, + "name": "Raw Soulflow" + }, + "diamond": { + "price": 8, + "name": "Diamond" + }, + "cobblestone": { + "price": 1, + "name": "Cobblestone" + }, + "shark_fin": { + "price": 294, + "name": "Shark Fin" + }, + "wise_fragment": { + "price": 25334, + "name": "Wise Fragment" + }, + "refined_mithril": { + "price": 298999, + "name": "Refined Mithril" + }, + "raw_fish": { + "price": 16, + "name": "Raw Fish" + }, + "enchanted_pufferfish": { + "price": 2436, + "name": "Enchanted Pufferfish" + }, + "spider_eye": { + "price": 4, + "name": "Spider Eye" + }, + "perfect_ruby_gem": { + "price": 6436250, + "name": "Perfect Ruby Gem" + }, + "perfect_jasper_gem": { + "price": 5581808, + "name": "Perfect Jasper Gem" + }, + "yoggie": { + "price": 261, + "name": "Yoggie" + }, + "enchanted_netherrack": { + "price": 197, + "name": "Enchanted Netherrack" + }, + "enchanted_hard_stone": { + "price": 1943, + "name": "Enchanted Hard Stone" + }, + "enchanted_huge_mushroom_1": { + "price": 5997, + "name": "Enchanted Huge Mushroom 1" + }, + "refined_diamond": { + "price": 479992, + "name": "Refined Diamond" + }, + "enchanted_cobblestone": { + "price": 264, + "name": "Enchanted Cobblestone" + }, + "tightly_tied_hay_bale": { + "price": 516095, + "name": "Tightly Tied Hay Bale" + }, + "enchanted_huge_mushroom_2": { + "price": 91879, + "name": "Enchanted Huge Mushroom 2" + }, + "pork": { + "price": 9, + "name": "Pork" + }, + "tiger_shark_tooth": { + "price": 30161, + "name": "Tiger Shark Tooth" + }, + "prismarine_crystals": { + "price": 7, + "name": "Prismarine Crystals" + }, + "huge_mushroom_1": { + "price": 13, + "name": "Huge Mushroom 1" + }, + "ice": { + "price": 5, + "name": "Ice" + }, + "ice_bait": { + "price": 16, + "name": "Ice Bait" + }, + "enchanted_snow_block": { + "price": 598, + "name": "Enchanted Snow Block" + }, + "golden_tooth": { + "price": 84999, + "name": "Golden Tooth" + }, + "huge_mushroom_2": { + "price": 143, + "name": "Huge Mushroom 2" + }, + "string": { + "price": 5, + "name": "String" + }, + "hyper_catalyst": { + "price": 121760, + "name": "Hyper Catalyst" + }, + "rabbit_foot": { + "price": 5, + "name": "Rabbit Foot" + }, + "redstone": { + "price": 1, + "name": "Redstone" + }, + "jerry_box_golden": { + "price": 1299999, + "name": "Jerry Box Golden" + }, + "pumpkin_guts": { + "price": 43797, + "name": "Pumpkin Guts" + }, + "enchanted_carrot_on_a_stick": { + "price": 0, + "name": "Enchanted Carrot On A Stick" + }, + "booster_cookie": { + "price": 2793699, + "name": "Booster Cookie" + }, + "enchanted_cactus_green": { + "price": 1194, + "name": "Enchanted Cactus Green" + }, + "enchanted_lapis_lazuli_block": { + "price": 55772, + "name": "Enchanted Lapis Lazuli Block" + }, + "enchanted_cookie": { + "price": 65767, + "name": "Enchanted Cookie" + }, + "enchanted_endstone": { + "price": 689, + "name": "Enchanted Endstone" + }, + "enchanted_sand": { + "price": 873, + "name": "Enchanted Sand" + }, + "colossal_exp_bottle": { + "price": 595394, + "name": "Colossal Exp Bottle" + }, + "enchanted_string": { + "price": 1089, + "name": "Enchanted String" + }, + "strong_fragment": { + "price": 28547, + "name": "Strong Fragment" + }, + "slime_ball": { + "price": 21, + "name": "Slime Ball" + }, + "holy_fragment": { + "price": 2498, + "name": "Holy Fragment" + }, + "enchanted_acacia_log": { + "price": 1864, + "name": "Enchanted Acacia Log" + }, + "snow_ball": { + "price": 0, + "name": "Snow Ball" + }, + "soul_fragment": { + "price": 1195678, + "name": "Soul Fragment" + }, + "flawed_ruby_gem": { + "price": 267, + "name": "Flawed Ruby Gem" + }, + "sand": { + "price": 4, + "name": "Sand" + }, + "enchanted_egg": { + "price": 1696, + "name": "Enchanted Egg" + }, + "raw_chicken": { + "price": 11, + "name": "Raw Chicken" + }, + "fine_jade_gem": { + "price": 19275, + "name": "Fine Jade Gem" + }, + "plasma_bucket": { + "price": 5395461, + "name": "Plasma Bucket" + }, + "ancient_claw": { + "price": 204, + "name": "Ancient Claw" + }, + "enchanted_ghast_tear": { + "price": 307, + "name": "Enchanted Ghast Tear" + }, + "enchanted_lapis_lazuli": { + "price": 662, + "name": "Enchanted Lapis Lazuli" + }, + "enchanted_cocoa": { + "price": 478, + "name": "Enchanted Cocoa" + }, + "fine_topaz_gem": { + "price": 21979, + "name": "Fine Topaz Gem" + }, + "carrot_bait": { + "price": 59, + "name": "Carrot Bait" + }, + "fine_ruby_gem": { + "price": 19225, + "name": "Fine Ruby Gem" + }, + "seeds": { + "price": 0, + "name": "Seeds" + }, + "enchanted_leather": { + "price": 6329, + "name": "Enchanted Leather" + }, + "perfect_amber_gem": { + "price": 9961999, + "name": "Perfect Amber Gem" + }, + "hay_block": { + "price": 39, + "name": "Hay Block" + }, + "enchanted_shark_fin": { + "price": 62784, + "name": "Enchanted Shark Fin" + }, + "enchanted_sponge": { + "price": 2090, + "name": "Enchanted Sponge" + }, + "ink_sack": { + "price": 838, + "name": "Ink Sack" + }, + "flint": { + "price": 27, + "name": "Flint" + }, + "enchanted_spruce_log": { + "price": 1020, + "name": "Enchanted Spruce Log" + }, + "enchanted_rotten_flesh": { + "price": 749, + "name": "Enchanted Rotten Flesh" + }, + "wolf_tooth": { + "price": 475, + "name": "Wolf Tooth" + }, + "enchanted_grilled_pork": { + "price": 177594, + "name": "Enchanted Grilled Pork" + }, + "enchanted_nether_stalk": { + "price": 347, + "name": "Enchanted Nether Stalk" + }, + "enchanted_redstone_block": { + "price": 38998, + "name": "Enchanted Redstone Block" + }, + "enchanted_quartz_block": { + "price": 286149, + "name": "Enchanted Quartz Block" + }, + "enchanted_ancient_claw": { + "price": 1849, + "name": "Enchanted Ancient Claw" + }, + "green_candy": { + "price": 849, + "name": "Green Candy" + }, + "treasurite": { + "price": 7814, + "name": "Treasurite" + }, + "enchanted_redstone": { + "price": 244, + "name": "Enchanted Redstone" + }, + "enchanted_redstone_lamp": { + "price": 69999, + "name": "Enchanted Redstone Lamp" + }, + "great_white_shark_tooth": { + "price": 994992, + "name": "Great White Shark Tooth" + }, + "dwarven_compactor": { + "price": 290932, + "name": "Dwarven Compactor" + }, + "gravel": { + "price": 5, + "name": "Gravel" + }, + "melon": { + "price": 4, + "name": "Melon" + }, + "raw_fish:3": { + "price": 13, + "name": "Raw Fish:3" + }, + "enchanted_packed_ice": { + "price": 109558, + "name": "Enchanted Packed Ice" + }, + "enchanted_lava_bucket": { + "price": 399564, + "name": "Enchanted Lava Bucket" + }, + "enchanted_prismarine_shard": { + "price": 398, + "name": "Enchanted Prismarine Shard" + }, + "recombobulator_3000": { + "price": 6433988, + "name": "Recombobulator 3000" + }, + "enchanted_iron_block": { + "price": 414681, + "name": "Enchanted Iron Block" + }, + "enchanted_carrot_stick": { + "price": 46768, + "name": "Enchanted Carrot Stick" + }, + "bone": { + "price": 2, + "name": "Bone" + }, + "raw_fish:2": { + "price": 19, + "name": "Raw Fish:2" + }, + "revenant_flesh": { + "price": 3, + "name": "Revenant Flesh" + }, + "enchanted_pork": { + "price": 1326, + "name": "Enchanted Pork" + }, + "enchanted_glowstone": { + "price": 65521, + "name": "Enchanted Glowstone" + }, + "raw_fish:1": { + "price": 11, + "name": "Raw Fish:1" + }, + "goblin_egg_red": { + "price": 8771, + "name": "Goblin Egg Red" + }, + "rough_jasper_gem": { + "price": 7, + "name": "Rough Jasper Gem" + }, + "feather": { + "price": 3, + "name": "Feather" + }, + "whale_bait": { + "price": 1257, + "name": "Whale Bait" + }, + "netherrack": { + "price": 1, + "name": "Netherrack" + }, + "sponge": { + "price": 51, + "name": "Sponge" + }, + "enchanted_dark_oak_log": { + "price": 886, + "name": "Enchanted Dark Oak Log" + }, + "blaze_rod": { + "price": 31, + "name": "Blaze Rod" + }, + "young_fragment": { + "price": 2590, + "name": "Young Fragment" + }, + "flawless_topaz_gem": { + "price": 1579841, + "name": "Flawless Topaz Gem" + }, + "enchanted_clownfish": { + "price": 3192, + "name": "Enchanted Clownfish" + }, + "refined_mineral": { + "price": 26376, + "name": "Refined Mineral" + }, + "enchanted_gold": { + "price": 654, + "name": "Enchanted Gold" + }, + "enchanted_water_lily": { + "price": 36582, + "name": "Enchanted Water Lily" + }, + "enchanted_raw_chicken": { + "price": 649, + "name": "Enchanted Raw Chicken" + }, + "rough_amethyst_gem": { + "price": 4, + "name": "Rough Amethyst Gem" + }, + "rough_ruby_gem": { + "price": 3, + "name": "Rough Ruby Gem" + }, + "goblin_egg_blue": { + "price": 1049998, + "name": "Goblin Egg Blue" + }, + "null_atom": { + "price": 38121, + "name": "Null Atom" + }, + "log:1": { + "price": 8, + "name": "Log:1" + }, + "flawless_ruby_gem": { + "price": 1504916, + "name": "Flawless Ruby Gem" + }, + "titanium_ore": { + "price": 82, + "name": "Titanium Ore" + }, + "blessed_bait": { + "price": 135, + "name": "Blessed Bait" + }, + "catalyst": { + "price": 99518, + "name": "Catalyst" + }, + "log:3": { + "price": 8, + "name": "Log:3" + }, + "log:2": { + "price": 3, + "name": "Log:2" + }, + "enchanted_glowstone_dust": { + "price": 845, + "name": "Enchanted Glowstone Dust" + }, + "enchanted_ink_sack": { + "price": 77099, + "name": "Enchanted Ink Sack" + }, + "enchanted_sugar_cane": { + "price": 51549, + "name": "Enchanted Sugar Cane" + }, + "flawless_sapphire_gem": { + "price": 1522161, + "name": "Flawless Sapphire Gem" + }, + "enchanted_cactus": { + "price": 145231, + "name": "Enchanted Cactus" + }, + "enchanted_cooked_salmon": { + "price": 258199, + "name": "Enchanted Cooked Salmon" + }, + "enchanted_seeds": { + "price": 85, + "name": "Enchanted Seeds" + }, + "concentrated_stone": { + "price": 1086995, + "name": "Concentrated Stone" + }, + "log": { + "price": 6, + "name": "Log" + }, + "enchanted_bone_block": { + "price": 70999, + "name": "Enchanted Bone Block" + }, + "jacobs_ticket": { + "price": 9263, + "name": "Jacobs Ticket" + }, + "ghast_tear": { + "price": 34, + "name": "Ghast Tear" + }, + "enchanted_ender_pearl": { + "price": 164, + "name": "Enchanted Ender Pearl" + }, + "absolute_ender_pearl": { + "price": 11213, + "name": "Absolute Ender Pearl" + }, + "unstable_fragment": { + "price": 2827, + "name": "Unstable Fragment" + }, + "purple_candy": { + "price": 8168, + "name": "Purple Candy" + }, + "spiked_bait": { + "price": 76, + "name": "Spiked Bait" + }, + "enchanted_fermented_spider_eye": { + "price": 60992, + "name": "Enchanted Fermented Spider Eye" + }, + "polished_pumpkin": { + "price": 120720, + "name": "Polished Pumpkin" + }, + "enchanted_gold_block": { + "price": 102952, + "name": "Enchanted Gold Block" + }, + "rough_jade_gem": { + "price": 2, + "name": "Rough Jade Gem" + }, + "enchanted_jungle_log": { + "price": 1270, + "name": "Enchanted Jungle Log" + }, + "null_ovoid": { + "price": 228030, + "name": "Null Ovoid" + }, + "enchanted_flint": { + "price": 3989, + "name": "Enchanted Flint" + }, + "iron_ingot": { + "price": 16, + "name": "Iron Ingot" + }, + "enchanted_emerald_block": { + "price": 173998, + "name": "Enchanted Emerald Block" + }, + "glowstone_dust": { + "price": 13, + "name": "Glowstone Dust" + }, + "gold_ingot": { + "price": 4, + "name": "Gold Ingot" + }, + "rough_sapphire_gem": { + "price": 3, + "name": "Rough Sapphire Gem" + }, + "enchanted_clay_ball": { + "price": 478, + "name": "Enchanted Clay Ball" + }, + "revenant_viscera": { + "price": 41395, + "name": "Revenant Viscera" + }, + "perfect_amethyst_gem": { + "price": 8299999, + "name": "Perfect Amethyst Gem" + }, + "enchanted_mutton": { + "price": 2698, + "name": "Enchanted Mutton" + }, + "titanic_exp_bottle": { + "price": 338572, + "name": "Titanic Exp Bottle" + }, + "tarantula_silk": { + "price": 148996, + "name": "Tarantula Silk" + }, + "null_sphere": { + "price": 1093, + "name": "Null Sphere" + }, + "enchanted_iron": { + "price": 2598, + "name": "Enchanted Iron" + }, + "super_compactor_3000": { + "price": 170089, + "name": "Super Compactor 3000" + }, + "super_egg": { + "price": 241395, + "name": "Super Egg" + }, + "stock_of_stonks": { + "price": 524460, + "name": "Stock Of Stonks" + }, + "mithril_ore": { + "price": 8, + "name": "Mithril Ore" + }, + "enchanted_paper": { + "price": 400, + "name": "Enchanted Paper" + }, + "enchanted_bone": { + "price": 547, + "name": "Enchanted Bone" + }, + "enchanted_hay_block": { + "price": 4216, + "name": "Enchanted Hay Block" + }, + "enchanted_titanium": { + "price": 13073, + "name": "Enchanted Titanium" + }, + "enchanted_diamond_block": { + "price": 206080, + "name": "Enchanted Diamond Block" + }, + "superior_fragment": { + "price": 105972, + "name": "Superior Fragment" + }, + "goblin_egg_green": { + "price": 6999, + "name": "Goblin Egg Green" + }, + "magma_bucket": { + "price": 2155996, + "name": "Magma Bucket" + }, + "spooky_bait": { + "price": 47, + "name": "Spooky Bait" + }, + "emerald": { + "price": 6, + "name": "Emerald" + }, + "enchanted_rabbit_foot": { + "price": 1977, + "name": "Enchanted Rabbit Foot" + }, + "enchanted_ice": { + "price": 705, + "name": "Enchanted Ice" + }, + "clay_ball": { + "price": 3, + "name": "Clay Ball" + }, + "light_bait": { + "price": 39, + "name": "Light Bait" + }, + "old_fragment": { + "price": 5299, + "name": "Old Fragment" + }, + "arachne_keeper_fragment": { + "price": 2499, + "name": "Arachne Keeper Fragment" + }, + "green_gift": { + "price": 9845, + "name": "Green Gift" + }, + "worm_membrane": { + "price": 99650, + "name": "Worm Membrane" + }, + "flawless_amethyst_gem": { + "price": 1949233, + "name": "Flawless Amethyst Gem" + }, + "packed_ice": { + "price": 36, + "name": "Packed Ice" + }, + "rough_amber_gem": { + "price": 3, + "name": "Rough Amber Gem" + }, + "water_lily": { + "price": 144, + "name": "Water Lily" + }, + "log_2": { + "price": 10, + "name": "Log 2" + }, + "hamster_wheel": { + "price": 26196, + "name": "Hamster Wheel" + }, + "enchanted_obsidian": { + "price": 2176, + "name": "Enchanted Obsidian" + }, + "fine_amber_gem": { + "price": 24089, + "name": "Fine Amber Gem" + }, + "enchanted_coal": { + "price": 1251, + "name": "Enchanted Coal" + }, + "enchanted_quartz": { + "price": 1697, + "name": "Enchanted Quartz" + }, + "enchanted_coal_block": { + "price": 200347, + "name": "Enchanted Coal Block" + }, + "werewolf_skin": { + "price": 36819, + "name": "Werewolf Skin" + }, + "perfect_topaz_gem": { + "price": 9318182, + "name": "Perfect Topaz Gem" + }, + "daedalus_stick": { + "price": 21033676, + "name": "Daedalus Stick" + }, + "goblin_egg": { + "price": 4846, + "name": "Goblin Egg" + }, + "enchanted_prismarine_crystals": { + "price": 397, + "name": "Enchanted Prismarine Crystals" + }, + "flawed_jade_gem": { + "price": 242, + "name": "Flawed Jade Gem" + }, + "enchanted_wet_sponge": { + "price": 82292, + "name": "Enchanted Wet Sponge" + }, + "quartz": { + "price": 10, + "name": "Quartz" + }, + "ender_stone": { + "price": 3, + "name": "Ender Stone" + }, + "enchanted_raw_fish": { + "price": 2577, + "name": "Enchanted Raw Fish" + }, + "foul_flesh": { + "price": 39165, + "name": "Foul Flesh" + }, + "raw_beef": { + "price": 4, + "name": "Raw Beef" + }, + "jerry_box_purple": { + "price": 458510, + "name": "Jerry Box Purple" + }, + "enchanted_eye_of_ender": { + "price": 5126, + "name": "Enchanted Eye Of Ender" + }, + "sludge_juice": { + "price": 1195, + "name": "Sludge Juice" + }, + "ectoplasm": { + "price": 61314, + "name": "Ectoplasm" + }, + "sugar_cane": { + "price": 2, + "name": "Sugar Cane" + }, + "shark_bait": { + "price": 248, + "name": "Shark Bait" + }, + "magma_cream": { + "price": 9, + "name": "Magma Cream" + }, + "red_gift": { + "price": 45358, + "name": "Red Gift" + }, + "enchanted_mithril": { + "price": 1286, + "name": "Enchanted Mithril" + }, + "jerry_box_blue": { + "price": 105904, + "name": "Jerry Box Blue" + }, + "enchanted_slime_block": { + "price": 575351, + "name": "Enchanted Slime Block" + }, + "enchanted_raw_beef": { + "price": 681, + "name": "Enchanted Raw Beef" + }, + "enchanted_feather": { + "price": 473, + "name": "Enchanted Feather" + }, + "enchanted_oak_log": { + "price": 985, + "name": "Enchanted Oak Log" + }, + "white_gift": { + "price": 6091, + "name": "White Gift" + }, + "rabbit_hide": { + "price": 28, + "name": "Rabbit Hide" + }, + "nether_stalk": { + "price": 7, + "name": "Nether Stalk" + }, + "rabbit": { + "price": 8, + "name": "Rabbit" + }, + "sulphur": { + "price": 12, + "name": "Sulphur" + }, + "fine_sapphire_gem": { + "price": 19409, + "name": "Fine Sapphire Gem" + }, + "enchanted_pumpkin": { + "price": 775, + "name": "Enchanted Pumpkin" + }, + "dark_bait": { + "price": 799, + "name": "Dark Bait" + }, + "enchanted_carrot": { + "price": 390, + "name": "Enchanted Carrot" + }, + "soulflow": { + "price": 10183, + "name": "Soulflow" + }, + "obsidian": { + "price": 14, + "name": "Obsidian" + }, + "rotten_flesh": { + "price": 4, + "name": "Rotten Flesh" + }, + "enchanted_cooked_fish": { + "price": 419996, + "name": "Enchanted Cooked Fish" + }, + "griffin_feather": { + "price": 48180, + "name": "Griffin Feather" + }, + "minnow_bait": { + "price": 17, + "name": "Minnow Bait" + }, + "enchanted_magma_cream": { + "price": 1378, + "name": "Enchanted Magma Cream" + }, + "starfall": { + "price": 1046, + "name": "Starfall" + }, + "enchanted_firework_rocket": { + "price": 116823, + "name": "Enchanted Firework Rocket" + }, + "hard_stone": { + "price": 3, + "name": "Hard Stone" + }, + "flawless_jade_gem": { + "price": 1470041, + "name": "Flawless Jade Gem" + }, + "flawed_topaz_gem": { + "price": 310, + "name": "Flawed Topaz Gem" + }, + "enchanted_cooked_mutton": { + "price": 136010, + "name": "Enchanted Cooked Mutton" + }, + "fine_amethyst_gem": { + "price": 23177, + "name": "Fine Amethyst Gem" + }, + "refined_titanium": { + "price": 358610, + "name": "Refined Titanium" + }, + "enchanted_rabbit": { + "price": 635, + "name": "Enchanted Rabbit" + }, + "mutant_nether_stalk": { + "price": 59084, + "name": "Mutant Nether Stalk" + }, + "soul_string": { + "price": 9783, + "name": "Soul String" + }, + "enchanted_bread": { + "price": 58, + "name": "Enchanted Bread" + }, + "fuming_potato_book": { + "price": 1175635, + "name": "Fuming Potato Book" + }, + "fine_jasper_gem": { + "price": 48352, + "name": "Fine Jasper Gem" + }, + "flawless_amber_gem": { + "price": 1835107, + "name": "Flawless Amber Gem" + }, + "flawed_sapphire_gem": { + "price": 256, + "name": "Flawed Sapphire Gem" + }, + "enchanted_blaze_powder": { + "price": 2287, + "name": "Enchanted Blaze Powder" + }, + "snow_block": { + "price": 6, + "name": "Snow Block" + }, + "fish_bait": { + "price": 87, + "name": "Fish Bait" + }, + "perfect_sapphire_gem": { + "price": 8364078, + "name": "Perfect Sapphire Gem" + }, + "bazaar_cookie": { + "price": 0, + "name": "Bazaar Cookie" + }, + "enchanted_diamond": { + "price": 1393, + "name": "Enchanted Diamond" + }, + "compactor": { + "price": 2511, + "name": "Compactor" + }, + "enchanted_baked_potato": { + "price": 42147, + "name": "Enchanted Baked Potato" + }, + "horns_of_torment": { + "price": 1174753, + "name": "Horns Of Torment" + }, + "dark_orb": { + "price": 586639, + "name": "Dark Orb" + }, + "enchanted_mycelium_cube": { + "price": 675511, + "name": "Enchanted Mycelium Cube" + }, + "rock_gemstone": { + "price": 786702, + "name": "Rock Gemstone" + }, + "end_stone_shulker": { + "price": 86493, + "name": "End Stone Shulker" + }, + "ender_monocle": { + "price": 271, + "name": "Ender Monocle" + }, + "hazmat_enderman": { + "price": 53994, + "name": "Hazmat Enderman" + }, + "luxurious_spool": { + "price": 809999, + "name": "Luxurious Spool" + }, + "kuudra_mandible": { + "price": 16800000, + "name": "Kuudra Mandible" + }, + "blaze_rod_distillate": { + "price": 22647, + "name": "Blaze Rod Distillate" + }, + "acacia_birdhouse": { + "price": 533551, + "name": "Acacia Birdhouse" + }, + "derelict_ashe": { + "price": 1847, + "name": "Derelict Ashe" + }, + "amber_material": { + "price": 2899999, + "name": "Amber Material" + }, + "crude_gabagool_distillate": { + "price": 106851, + "name": "Crude Gabagool Distillate" + }, + "meteor_shard": { + "price": 1671499, + "name": "Meteor Shard" + }, + "diamond_atom": { + "price": 15280, + "name": "Diamond Atom" + }, + "precursor_gear": { + "price": 834341, + "name": "Precursor Gear" + }, + "deep_sea_orb": { + "price": 5499993, + "name": "Deep Sea Orb" + }, + "necromancer_brooch": { + "price": 27574, + "name": "Necromancer Brooch" + }, + "petrified_starfall": { + "price": 175557, + "name": "Petrified Starfall" + }, + "sadan_brooch": { + "price": 397890, + "name": "Sadan Brooch" + }, + "enchanted_sulphur": { + "price": 1618, + "name": "Enchanted Sulphur" + }, + "omega_egg": { + "price": 2004711, + "name": "Omega Egg" + }, + "magma_cream_distillate": { + "price": 23566, + "name": "Magma Cream Distillate" + }, + "furball": { + "price": 1525142, + "name": "Furball" + }, + "giant_tooth": { + "price": 445471, + "name": "Giant Tooth" + }, + "optical_lens": { + "price": 1044, + "name": "Optical Lens" + }, + "endstone_geode": { + "price": 89999, + "name": "Endstone Geode" + }, + "salmon_opal": { + "price": 1862, + "name": "Salmon Opal" + }, + "aote_stone": { + "price": 4999999, + "name": "Aote Stone" + }, + "golden_ball": { + "price": 1156296, + "name": "Golden Ball" + }, + "glowstone_dust_distillate": { + "price": 19459, + "name": "Glowstone Dust Distillate" + }, + "sulphur_ore": { + "price": 10, + "name": "Sulphur Ore" + }, + "mandraa": { + "price": 3095628, + "name": "Mandraa" + }, + "molten_cube": { + "price": 12167, + "name": "Molten Cube" + }, + "bulky_stone": { + "price": 775392, + "name": "Bulky Stone" + }, + "inferno_vertex": { + "price": 26032985, + "name": "Inferno Vertex" + }, + "refined_amber": { + "price": 1084231, + "name": "Refined Amber" + }, + "rare_diamond": { + "price": 27, + "name": "Rare Diamond" + }, + "jaderald": { + "price": 5757908, + "name": "Jaderald" + }, + "nether_stalk_distillate": { + "price": 24329, + "name": "Nether Stalk Distillate" + }, + "crude_gabagool": { + "price": 319, + "name": "Crude Gabagool" + }, + "dragon_scale": { + "price": 33332, + "name": "Dragon Scale" + }, + "dragon_horn": { + "price": 9178370, + "name": "Dragon Horn" + }, + "hardened_wood": { + "price": 23999, + "name": "Hardened Wood" + }, + "heavy_gabagool": { + "price": 572098, + "name": "Heavy Gabagool" + }, + "eccentric_painting": { + "price": 10809998, + "name": "Eccentric Painting" + }, + "reaper_pepper": { + "price": 115793154, + "name": "Reaper Pepper" + }, + "inferno_apex": { + "price": 500000000, + "name": "Inferno Apex" + }, + "diamonite": { + "price": 1323999, + "name": "Diamonite" + }, + "spirit_decoy": { + "price": 1605620, + "name": "Spirit Decoy" + }, + "obsidian_tablet": { + "price": 1698191, + "name": "Obsidian Tablet" + }, + "candy_corn": { + "price": 2597, + "name": "Candy Corn" + }, + "premium_flesh": { + "price": 3812, + "name": "Premium Flesh" + }, + "midas_jewel": { + "price": 24998, + "name": "Midas Jewel" + }, + "pure_mithril": { + "price": 424999, + "name": "Pure Mithril" + }, + "jerry_stone": { + "price": 170927, + "name": "Jerry Stone" + }, + "vitamin_death": { + "price": 151342, + "name": "Vitamin Death" + }, + "hypergolic_gabagool": { + "price": 17849998, + "name": "Hypergolic Gabagool" + }, + "magma_urchin": { + "price": 2300000, + "name": "Magma Urchin" + }, + "molten_powder": { + "price": 588656, + "name": "Molten Powder" + }, + "rock_candy": { + "price": 69996, + "name": "Rock Candy" + }, + "searing_stone": { + "price": 852495, + "name": "Searing Stone" + }, + "blessed_fruit": { + "price": 1079999, + "name": "Blessed Fruit" + }, + "hot_stuff": { + "price": 77906, + "name": "Hot Stuff" + }, + "suspicious_vial": { + "price": 14999, + "name": "Suspicious Vial" + }, + "red_nose": { + "price": 8000, + "name": "Red Nose" + }, + "dragon_claw": { + "price": 439979, + "name": "Dragon Claw" + }, + "fuel_gabagool": { + "price": 18043, + "name": "Fuel Gabagool" + }, + "lucky_dice": { + "price": 1249983, + "name": "Lucky Dice" + }, + "enchanted_mycelium": { + "price": 8097, + "name": "Enchanted Mycelium" + }, + "precious_pearl": { + "price": 1042325, + "name": "Precious Pearl" + }, + "scorched_books": { + "price": 6206352, + "name": "Scorched Books" + }, + "blaze_wax": { + "price": 999999, + "name": "Blaze Wax" + }, + "wither_blood": { + "price": 2302786, + "name": "Wither Blood" + }, + "shiny_prism": { + "price": 1999995, + "name": "Shiny Prism" + }, + "enchanted_sulphur_cube": { + "price": 256565, + "name": "Enchanted Sulphur Cube" + }, + "flawed_opal_gem": { + "price": 382, + "name": "Flawed Opal Gem" + }, + "enchanted_red_sand": { + "price": 2711, + "name": "Enchanted Red Sand" + }, + "fine_opal_gem": { + "price": 23192, + "name": "Fine Opal Gem" + }, + "perfect_opal_gem": { + "price": 11117040, + "name": "Perfect Opal Gem" + }, + "rough_opal_gem": { + "price": 5, + "name": "Rough Opal Gem" + }, + "flawless_opal_gem": { + "price": 1960547, + "name": "Flawless Opal Gem" + }, + "enchanted_red_sand_cube": { + "price": 398996, + "name": "Enchanted Red Sand Cube" + }, + "hot_bait": { + "price": 692, + "name": "Hot Bait" + }, + "magma_fish_silver": { + "price": 12814, + "name": "Magma Fish Silver" + }, + "magma_fish_gold": { + "price": 629998, + "name": "Magma Fish Gold" + }, + "magma_fish_diamond": { + "price": 8779990, + "name": "Magma Fish Diamond" + }, + "chili_pepper": { + "price": 108998, + "name": "Chili Pepper" + }, + "entropy_suppressor": { + "price": 17999997, + "name": "Entropy Suppressor" + }, + "essence_dragon": { + "price": 68, + "name": "Essence Dragon" + }, + "enchantment_blast_protection_7": { + "price": 2420525, + "name": "Enchantment Blast Protection 7" + }, + "enchantment_big_brain_3": { + "price": 14499995, + "name": "Enchantment Big Brain 3" + }, + "enchantment_big_brain_5": { + "price": 74999997, + "name": "Enchantment Big Brain 5" + }, + "enchantment_big_brain_4": { + "price": 49999998, + "name": "Enchantment Big Brain 4" + }, + "essence_ice": { + "price": 58, + "name": "Essence Ice" + }, + "essence_gold": { + "price": 129, + "name": "Essence Gold" + }, + "enchantment_blast_protection_6": { + "price": 2339, + "name": "Enchantment Blast Protection 6" + }, + "enchantment_turbo_mushrooms_5": { + "price": 90398, + "name": "Enchantment Turbo Mushrooms 5" + }, + "enchantment_turbo_mushrooms_1": { + "price": 4499, + "name": "Enchantment Turbo Mushrooms 1" + }, + "enchantment_turbo_mushrooms_2": { + "price": 20000, + "name": "Enchantment Turbo Mushrooms 2" + }, + "enchantment_turbo_mushrooms_4": { + "price": 500000, + "name": "Enchantment Turbo Mushrooms 4" + }, + "enchantment_turbo_mushrooms_3": { + "price": 250000, + "name": "Enchantment Turbo Mushrooms 3" + }, + "essence_spider": { + "price": 225, + "name": "Essence Spider" + }, + "enchantment_angler_6": { + "price": 17134, + "name": "Enchantment Angler 6" + }, + "essence_crimson": { + "price": 14198, + "name": "Essence Crimson" + }, + "enchantment_ultimate_bank_5": { + "price": 67979, + "name": "Enchantment Ultimate Bank 5" + }, + "enchantment_ultimate_bank_2": { + "price": 5204, + "name": "Enchantment Ultimate Bank 2" + }, + "enchantment_ultimate_bank_1": { + "price": 2008, + "name": "Enchantment Ultimate Bank 1" + }, + "enchantment_ultimate_bank_4": { + "price": 45998, + "name": "Enchantment Ultimate Bank 4" + }, + "enchantment_ultimate_bank_3": { + "price": 18884, + "name": "Enchantment Ultimate Bank 3" + }, + "essence_diamond": { + "price": 42, + "name": "Essence Diamond" + }, + "essence_wither": { + "price": 1464, + "name": "Essence Wither" + }, + "essence_undead": { + "price": 637, + "name": "Essence Undead" + }, + "enchantment_bane_of_arthropods_6": { + "price": 349, + "name": "Enchantment Bane Of Arthropods 6" + }, + "enchantment_bane_of_arthropods_7": { + "price": 883049, + "name": "Enchantment Bane Of Arthropods 7" + }, + "enchantment_sharpness_7": { + "price": 62000000, + "name": "Enchantment Sharpness 7" + }, + "enchantment_sharpness_6": { + "price": 1446491, + "name": "Enchantment Sharpness 6" + }, + "enchantment_feather_falling_6": { + "price": 61, + "name": "Enchantment Feather Falling 6" + }, + "enchantment_ultimate_no_pain_no_gain_2": { + "price": 5982, + "name": "Enchantment Ultimate No Pain No Gain 2" + }, + "enchantment_ultimate_no_pain_no_gain_1": { + "price": 1669, + "name": "Enchantment Ultimate No Pain No Gain 1" + }, + "enchantment_protection_7": { + "price": 29234025, + "name": "Enchantment Protection 7" + }, + "enchantment_protection_6": { + "price": 4374994, + "name": "Enchantment Protection 6" + }, + "enchantment_turbo_coco_1": { + "price": 59057, + "name": "Enchantment Turbo Coco 1" + }, + "enchantment_turbo_coco_5": { + "price": 1044836, + "name": "Enchantment Turbo Coco 5" + }, + "enchantment_turbo_coco_4": { + "price": 1057849, + "name": "Enchantment Turbo Coco 4" + }, + "enchantment_turbo_coco_2": { + "price": 129531, + "name": "Enchantment Turbo Coco 2" + }, + "enchantment_turbo_coco_3": { + "price": 424991, + "name": "Enchantment Turbo Coco 3" + }, + "enchantment_corruption_4": { + "price": 81072, + "name": "Enchantment Corruption 4" + }, + "enchantment_corruption_5": { + "price": 149997, + "name": "Enchantment Corruption 5" + }, + "enchantment_corruption_2": { + "price": 89997, + "name": "Enchantment Corruption 2" + }, + "enchantment_corruption_3": { + "price": 79999, + "name": "Enchantment Corruption 3" + }, + "enchantment_corruption_1": { + "price": 5707, + "name": "Enchantment Corruption 1" + }, + "enchantment_cayenne_5": { + "price": 19999999, + "name": "Enchantment Cayenne 5" + }, + "enchantment_cayenne_4": { + "price": 1500, + "name": "Enchantment Cayenne 4" + }, + "enchantment_cayenne_3": { + "price": 10, + "name": "Enchantment Cayenne 3" + }, + "enchantment_cayenne_2": { + "price": 3, + "name": "Enchantment Cayenne 2" + }, + "enchantment_turbo_cactus_5": { + "price": 1299997, + "name": "Enchantment Turbo Cactus 5" + }, + "enchantment_cayenne_1": { + "price": 2819, + "name": "Enchantment Cayenne 1" + }, + "enchantment_turbo_cactus_4": { + "price": 820299, + "name": "Enchantment Turbo Cactus 4" + }, + "enchantment_turbo_cactus_3": { + "price": 412345, + "name": "Enchantment Turbo Cactus 3" + }, + "enchantment_turbo_cactus_2": { + "price": 189998, + "name": "Enchantment Turbo Cactus 2" + }, + "enchantment_turbo_cactus_1": { + "price": 74999, + "name": "Enchantment Turbo Cactus 1" + }, + "enchantment_ender_slayer_7": { + "price": 39601324, + "name": "Enchantment Ender Slayer 7" + }, + "enchantment_ender_slayer_6": { + "price": 1619990, + "name": "Enchantment Ender Slayer 6" + }, + "enchantment_thunderlord_6": { + "price": 1399, + "name": "Enchantment Thunderlord 6" + }, + "enchantment_turbo_melon_5": { + "price": 1600000, + "name": "Enchantment Turbo Melon 5" + }, + "enchantment_mana_steal_1": { + "price": 13580, + "name": "Enchantment Mana Steal 1" + }, + "enchantment_mana_steal_3": { + "price": 90287, + "name": "Enchantment Mana Steal 3" + }, + "enchantment_mana_steal_2": { + "price": 25000, + "name": "Enchantment Mana Steal 2" + }, + "enchantment_turbo_melon_3": { + "price": 313449, + "name": "Enchantment Turbo Melon 3" + }, + "enchantment_strong_mana_7": { + "price": 12599999, + "name": "Enchantment Strong Mana 7" + }, + "enchantment_turbo_melon_4": { + "price": 1448299, + "name": "Enchantment Turbo Melon 4" + }, + "enchantment_strong_mana_6": { + "price": 99999999, + "name": "Enchantment Strong Mana 6" + }, + "enchantment_turbo_melon_1": { + "price": 83508, + "name": "Enchantment Turbo Melon 1" + }, + "enchantment_strong_mana_5": { + "price": 7210901, + "name": "Enchantment Strong Mana 5" + }, + "enchantment_strong_mana_4": { + "price": 5000000, + "name": "Enchantment Strong Mana 4" + }, + "enchantment_turbo_melon_2": { + "price": 294999, + "name": "Enchantment Turbo Melon 2" + }, + "enchantment_strong_mana_3": { + "price": 4499999, + "name": "Enchantment Strong Mana 3" + }, + "enchantment_strong_mana_2": { + "price": 999999, + "name": "Enchantment Strong Mana 2" + }, + "enchantment_strong_mana_1": { + "price": 225324, + "name": "Enchantment Strong Mana 1" + }, + "enchantment_hardened_mana_1": { + "price": 64696, + "name": "Enchantment Hardened Mana 1" + }, + "enchantment_hardened_mana_3": { + "price": 507650, + "name": "Enchantment Hardened Mana 3" + }, + "enchantment_hardened_mana_2": { + "price": 226950, + "name": "Enchantment Hardened Mana 2" + }, + "enchantment_ultimate_combo_1": { + "price": 34255, + "name": "Enchantment Ultimate Combo 1" + }, + "enchantment_ultimate_combo_2": { + "price": 65496, + "name": "Enchantment Ultimate Combo 2" + }, + "enchantment_ultimate_combo_5": { + "price": 599999, + "name": "Enchantment Ultimate Combo 5" + }, + "enchantment_ultimate_combo_4": { + "price": 441785, + "name": "Enchantment Ultimate Combo 4" + }, + "enchantment_ultimate_combo_3": { + "price": 219946, + "name": "Enchantment Ultimate Combo 3" + }, + "enchantment_strong_mana_9": { + "price": 55000000, + "name": "Enchantment Strong Mana 9" + }, + "enchantment_strong_mana_8": { + "price": 28841472, + "name": "Enchantment Strong Mana 8" + }, + "enchantment_turbo_warts_1": { + "price": 17343, + "name": "Enchantment Turbo Warts 1" + }, + "enchantment_turbo_warts_2": { + "price": 90072, + "name": "Enchantment Turbo Warts 2" + }, + "enchantment_turbo_warts_3": { + "price": 133331, + "name": "Enchantment Turbo Warts 3" + }, + "enchantment_turbo_warts_4": { + "price": 231057, + "name": "Enchantment Turbo Warts 4" + }, + "enchantment_turbo_warts_5": { + "price": 277488, + "name": "Enchantment Turbo Warts 5" + }, + "enchantment_hardened_mana_5": { + "price": 2270198, + "name": "Enchantment Hardened Mana 5" + }, + "enchantment_hardened_mana_4": { + "price": 1533068, + "name": "Enchantment Hardened Mana 4" + }, + "enchantment_hardened_mana_7": { + "price": 4744999, + "name": "Enchantment Hardened Mana 7" + }, + "enchantment_hardened_mana_6": { + "price": 5000000, + "name": "Enchantment Hardened Mana 6" + }, + "enchantment_ultimate_no_pain_no_gain_4": { + "price": 24998, + "name": "Enchantment Ultimate No Pain No Gain 4" + }, + "enchantment_hardened_mana_9": { + "price": 19999999, + "name": "Enchantment Hardened Mana 9" + }, + "enchantment_ultimate_no_pain_no_gain_3": { + "price": 33354, + "name": "Enchantment Ultimate No Pain No Gain 3" + }, + "enchantment_hardened_mana_8": { + "price": 22500099, + "name": "Enchantment Hardened Mana 8" + }, + "enchantment_ultimate_no_pain_no_gain_5": { + "price": 58000, + "name": "Enchantment Ultimate No Pain No Gain 5" + }, + "enchantment_experience_4": { + "price": 450582, + "name": "Enchantment Experience 4" + }, + "enchantment_mana_vampire_10": { + "price": 300000000, + "name": "Enchantment Mana Vampire 10" + }, + "enchantment_delicate_5": { + "price": 1000000, + "name": "Enchantment Delicate 5" + }, + "enchantment_prosecute_6": { + "price": 38189450, + "name": "Enchantment Prosecute 6" + }, + "enchantment_caster_6": { + "price": 286398, + "name": "Enchantment Caster 6" + }, + "enchantment_respite_5": { + "price": 796998, + "name": "Enchantment Respite 5" + }, + "enchantment_respite_4": { + "price": 317999, + "name": "Enchantment Respite 4" + }, + "enchantment_respite_3": { + "price": 84140, + "name": "Enchantment Respite 3" + }, + "enchantment_respite_1": { + "price": 27433, + "name": "Enchantment Respite 1" + }, + "enchantment_respite_2": { + "price": 19999, + "name": "Enchantment Respite 2" + }, + "enchantment_overload_4": { + "price": 9599999, + "name": "Enchantment Overload 4" + }, + "enchantment_overload_5": { + "price": 18176618, + "name": "Enchantment Overload 5" + }, + "enchantment_overload_3": { + "price": 5354407, + "name": "Enchantment Overload 3" + }, + "enchantment_overload_2": { + "price": 2348998, + "name": "Enchantment Overload 2" + }, + "enchantment_overload_1": { + "price": 965756, + "name": "Enchantment Overload 1" + }, + "enchantment_fire_protection_6": { + "price": 136499, + "name": "Enchantment Fire Protection 6" + }, + "enchantment_fire_protection_7": { + "price": 1849764, + "name": "Enchantment Fire Protection 7" + }, + "enchantment_hardened_mana_10": { + "price": 31999999, + "name": "Enchantment Hardened Mana 10" + }, + "enchantment_ultimate_jerry_2": { + "price": 7647, + "name": "Enchantment Ultimate Jerry 2" + }, + "enchantment_ultimate_rend_3": { + "price": 3200000, + "name": "Enchantment Ultimate Rend 3" + }, + "enchantment_ultimate_jerry_1": { + "price": 5599, + "name": "Enchantment Ultimate Jerry 1" + }, + "enchantment_ultimate_rend_2": { + "price": 776648, + "name": "Enchantment Ultimate Rend 2" + }, + "enchantment_ultimate_rend_1": { + "price": 499999, + "name": "Enchantment Ultimate Rend 1" + }, + "enchantment_ultimate_jerry_5": { + "price": 159098, + "name": "Enchantment Ultimate Jerry 5" + }, + "enchantment_ultimate_rend_5": { + "price": 12725356, + "name": "Enchantment Ultimate Rend 5" + }, + "enchantment_ultimate_jerry_4": { + "price": 149998, + "name": "Enchantment Ultimate Jerry 4" + }, + "enchantment_ultimate_rend_4": { + "price": 3999992, + "name": "Enchantment Ultimate Rend 4" + }, + "enchantment_ultimate_jerry_3": { + "price": 22826, + "name": "Enchantment Ultimate Jerry 3" + }, + "enchantment_ultimate_wise_2": { + "price": 311332, + "name": "Enchantment Ultimate Wise 2" + }, + "enchantment_ultimate_wise_1": { + "price": 139450, + "name": "Enchantment Ultimate Wise 1" + }, + "enchantment_ultimate_wise_4": { + "price": 1388451, + "name": "Enchantment Ultimate Wise 4" + }, + "enchantment_ultimate_wise_3": { + "price": 675000, + "name": "Enchantment Ultimate Wise 3" + }, + "enchantment_true_protection_1": { + "price": 921248, + "name": "Enchantment True Protection 1" + }, + "enchantment_luck_of_the_sea_6": { + "price": 299999, + "name": "Enchantment Luck Of The Sea 6" + }, + "enchantment_smarty_pants_3": { + "price": 3499999, + "name": "Enchantment Smarty Pants 3" + }, + "enchantment_ultimate_wise_5": { + "price": 2469696, + "name": "Enchantment Ultimate Wise 5" + }, + "enchantment_smarty_pants_2": { + "price": 1812348, + "name": "Enchantment Smarty Pants 2" + }, + "enchantment_smarty_pants_5": { + "price": 14499998, + "name": "Enchantment Smarty Pants 5" + }, + "enchantment_smarty_pants_4": { + "price": 9999999, + "name": "Enchantment Smarty Pants 4" + }, + "enchantment_smarty_pants_1": { + "price": 662682, + "name": "Enchantment Smarty Pants 1" + }, + "enchantment_lure_6": { + "price": 1149, + "name": "Enchantment Lure 6" + }, + "enchantment_ferocious_mana_8": { + "price": 104998998, + "name": "Enchantment Ferocious Mana 8" + }, + "enchantment_ferocious_mana_9": { + "price": 202542700, + "name": "Enchantment Ferocious Mana 9" + }, + "enchantment_ferocious_mana_4": { + "price": 6032283, + "name": "Enchantment Ferocious Mana 4" + }, + "enchantment_ferocious_mana_5": { + "price": 11422550, + "name": "Enchantment Ferocious Mana 5" + }, + "enchantment_ferocious_mana_6": { + "price": 20355872, + "name": "Enchantment Ferocious Mana 6" + }, + "enchantment_ferocious_mana_7": { + "price": 40711744, + "name": "Enchantment Ferocious Mana 7" + }, + "enchantment_magnet_6": { + "price": 281, + "name": "Enchantment Magnet 6" + }, + "enchantment_ferocious_mana_2": { + "price": 1499996, + "name": "Enchantment Ferocious Mana 2" + }, + "enchantment_ferocious_mana_1": { + "price": 636121, + "name": "Enchantment Ferocious Mana 1" + }, + "enchantment_projectile_protection_7": { + "price": 687418, + "name": "Enchantment Projectile Protection 7" + }, + "enchantment_ferocious_mana_3": { + "price": 3099999, + "name": "Enchantment Ferocious Mana 3" + }, + "enchantment_champion_10": { + "price": 0, + "name": "Enchantment Champion 10" + }, + "enchantment_projectile_protection_6": { + "price": 2344, + "name": "Enchantment Projectile Protection 6" + }, + "enchantment_dragon_hunter_4": { + "price": 9999998, + "name": "Enchantment Dragon Hunter 4" + }, + "enchantment_dragon_hunter_3": { + "price": 4319992, + "name": "Enchantment Dragon Hunter 3" + }, + "enchantment_dragon_hunter_5": { + "price": 17099998, + "name": "Enchantment Dragon Hunter 5" + }, + "enchantment_dragon_hunter_1": { + "price": 1079998, + "name": "Enchantment Dragon Hunter 1" + }, + "enchantment_charm_2": { + "price": 349000, + "name": "Enchantment Charm 2" + }, + "enchantment_charm_3": { + "price": 657049, + "name": "Enchantment Charm 3" + }, + "enchantment_charm_1": { + "price": 171218, + "name": "Enchantment Charm 1" + }, + "enchantment_charm_4": { + "price": 1508984, + "name": "Enchantment Charm 4" + }, + "enchantment_charm_5": { + "price": 2495125, + "name": "Enchantment Charm 5" + }, + "enchantment_ultimate_swarm_5": { + "price": 10249999, + "name": "Enchantment Ultimate Swarm 5" + }, + "enchantment_turbo_wheat_3": { + "price": 149998, + "name": "Enchantment Turbo Wheat 3" + }, + "enchantment_turbo_wheat_4": { + "price": 222762, + "name": "Enchantment Turbo Wheat 4" + }, + "enchantment_turbo_wheat_1": { + "price": 10199, + "name": "Enchantment Turbo Wheat 1" + }, + "enchantment_turbo_wheat_2": { + "price": 24999, + "name": "Enchantment Turbo Wheat 2" + }, + "enchantment_ultimate_swarm_3": { + "price": 3044991, + "name": "Enchantment Ultimate Swarm 3" + }, + "enchantment_ultimate_swarm_4": { + "price": 6382431, + "name": "Enchantment Ultimate Swarm 4" + }, + "enchantment_ultimate_swarm_1": { + "price": 545901, + "name": "Enchantment Ultimate Swarm 1" + }, + "enchantment_turbo_wheat_5": { + "price": 299999, + "name": "Enchantment Turbo Wheat 5" + }, + "enchantment_ultimate_swarm_2": { + "price": 1199999, + "name": "Enchantment Ultimate Swarm 2" + }, + "enchantment_sugar_rush_3": { + "price": 1628995, + "name": "Enchantment Sugar Rush 3" + }, + "enchantment_sugar_rush_2": { + "price": 840171, + "name": "Enchantment Sugar Rush 2" + }, + "enchantment_sugar_rush_1": { + "price": 389995, + "name": "Enchantment Sugar Rush 1" + }, + "enchantment_growth_6": { + "price": 4507226, + "name": "Enchantment Growth 6" + }, + "enchantment_growth_7": { + "price": 116400000, + "name": "Enchantment Growth 7" + }, + "enchantment_ultimate_chimera_1": { + "price": 85844616, + "name": "Enchantment Ultimate Chimera 1" + }, + "enchantment_ultimate_last_stand_5": { + "price": 4299999, + "name": "Enchantment Ultimate Last Stand 5" + }, + "enchantment_ultimate_last_stand_4": { + "price": 2226462, + "name": "Enchantment Ultimate Last Stand 4" + }, + "enchantment_ultimate_chimera_5": { + "price": 1373513856, + "name": "Enchantment Ultimate Chimera 5" + }, + "enchantment_ultimate_last_stand_3": { + "price": 1303253, + "name": "Enchantment Ultimate Last Stand 3" + }, + "enchantment_ultimate_last_stand_2": { + "price": 483375, + "name": "Enchantment Ultimate Last Stand 2" + }, + "enchantment_ultimate_chimera_4": { + "price": 686756928, + "name": "Enchantment Ultimate Chimera 4" + }, + "enchantment_ultimate_last_stand_1": { + "price": 245161, + "name": "Enchantment Ultimate Last Stand 1" + }, + "enchantment_ultimate_chimera_3": { + "price": 375000000, + "name": "Enchantment Ultimate Chimera 3" + }, + "enchantment_ultimate_chimera_2": { + "price": 180000000, + "name": "Enchantment Ultimate Chimera 2" + }, + "enchantment_feather_falling_10": { + "price": 28199, + "name": "Enchantment Feather Falling 10" + }, + "enchantment_smoldering_5": { + "price": 95999984, + "name": "Enchantment Smoldering 5" + }, + "enchantment_smoldering_3": { + "price": 23999996, + "name": "Enchantment Smoldering 3" + }, + "enchantment_smoldering_4": { + "price": 47999992, + "name": "Enchantment Smoldering 4" + }, + "enchantment_smoldering_1": { + "price": 5999999, + "name": "Enchantment Smoldering 1" + }, + "enchantment_smoldering_2": { + "price": 11999998, + "name": "Enchantment Smoldering 2" + }, + "enchantment_critical_6": { + "price": 6992, + "name": "Enchantment Critical 6" + }, + "enchantment_critical_7": { + "price": 51194999, + "name": "Enchantment Critical 7" + }, + "enchantment_thunderbolt_6": { + "price": 4404173, + "name": "Enchantment Thunderbolt 6" + }, + "enchantment_ultimate_reiterate_1": { + "price": 15339028, + "name": "Enchantment Ultimate Reiterate 1" + }, + "enchantment_ultimate_reiterate_4": { + "price": 145000000, + "name": "Enchantment Ultimate Reiterate 4" + }, + "enchantment_ultimate_reiterate_5": { + "price": 284999998, + "name": "Enchantment Ultimate Reiterate 5" + }, + "enchantment_ultimate_reiterate_2": { + "price": 41999999, + "name": "Enchantment Ultimate Reiterate 2" + }, + "enchantment_ultimate_reiterate_3": { + "price": 65000000, + "name": "Enchantment Ultimate Reiterate 3" + }, + "enchantment_venomous_6": { + "price": 36016686, + "name": "Enchantment Venomous 6" + }, + "enchantment_strong_mana_10": { + "price": 239000000, + "name": "Enchantment Strong Mana 10" + }, + "enchantment_feather_falling_7": { + "price": 1794, + "name": "Enchantment Feather Falling 7" + }, + "enchantment_feather_falling_9": { + "price": 135998, + "name": "Enchantment Feather Falling 9" + }, + "enchantment_feather_falling_8": { + "price": 16256, + "name": "Enchantment Feather Falling 8" + }, + "enchantment_compact_1": { + "price": 1631434, + "name": "Enchantment Compact 1" + }, + "enchantment_pristine_1": { + "price": 1073992, + "name": "Enchantment Pristine 1" + }, + "enchantment_pristine_2": { + "price": 2199999, + "name": "Enchantment Pristine 2" + }, + "enchantment_pristine_4": { + "price": 8699999, + "name": "Enchantment Pristine 4" + }, + "enchantment_pristine_5": { + "price": 16479990, + "name": "Enchantment Pristine 5" + }, + "enchantment_ferocious_mana_10": { + "price": 400000000, + "name": "Enchantment Ferocious Mana 10" + }, + "enchantment_pristine_3": { + "price": 4399999, + "name": "Enchantment Pristine 3" + }, + "enchantment_life_steal_5": { + "price": 11494743, + "name": "Enchantment Life Steal 5" + }, + "enchantment_life_steal_4": { + "price": 47499, + "name": "Enchantment Life Steal 4" + }, + "enchantment_tabasco_3": { + "price": 3038768, + "name": "Enchantment Tabasco 3" + }, + "enchantment_tabasco_1": { + "price": 700000, + "name": "Enchantment Tabasco 1" + }, + "enchantment_tabasco_2": { + "price": 110250, + "name": "Enchantment Tabasco 2" + }, + "enchantment_mana_vampire_1": { + "price": 422221, + "name": "Enchantment Mana Vampire 1" + }, + "enchantment_mana_vampire_2": { + "price": 4099999, + "name": "Enchantment Mana Vampire 2" + }, + "enchantment_mana_vampire_4": { + "price": 5800000, + "name": "Enchantment Mana Vampire 4" + }, + "enchantment_mana_vampire_3": { + "price": 14674998, + "name": "Enchantment Mana Vampire 3" + }, + "enchantment_mana_vampire_6": { + "price": 13511072, + "name": "Enchantment Mana Vampire 6" + }, + "enchantment_mana_vampire_5": { + "price": 9999999, + "name": "Enchantment Mana Vampire 5" + }, + "enchantment_mana_vampire_8": { + "price": 54044288, + "name": "Enchantment Mana Vampire 8" + }, + "enchantment_mana_vampire_7": { + "price": 27022144, + "name": "Enchantment Mana Vampire 7" + }, + "enchantment_mana_vampire_9": { + "price": 108088576, + "name": "Enchantment Mana Vampire 9" + }, + "enchantment_titan_killer_7": { + "price": 6899999, + "name": "Enchantment Titan Killer 7" + }, + "enchantment_titan_killer_6": { + "price": 19231, + "name": "Enchantment Titan Killer 6" + }, + "enchantment_power_7": { + "price": 104785985, + "name": "Enchantment Power 7" + }, + "enchantment_power_6": { + "price": 816999, + "name": "Enchantment Power 6" + }, + "enchantment_vampirism_6": { + "price": 299992, + "name": "Enchantment Vampirism 6" + }, + "enchantment_cultivating_1": { + "price": 1350999, + "name": "Enchantment Cultivating 1" + }, + "enchantment_ultimate_soul_eater_1": { + "price": 2142666, + "name": "Enchantment Ultimate Soul Eater 1" + }, + "enchantment_ultimate_soul_eater_3": { + "price": 8799996, + "name": "Enchantment Ultimate Soul Eater 3" + }, + "enchantment_ultimate_soul_eater_2": { + "price": 4799995, + "name": "Enchantment Ultimate Soul Eater 2" + }, + "enchantment_ultimate_soul_eater_5": { + "price": 35599998, + "name": "Enchantment Ultimate Soul Eater 5" + }, + "enchantment_ultimate_soul_eater_4": { + "price": 18999999, + "name": "Enchantment Ultimate Soul Eater 4" + }, + "enchantment_chance_5": { + "price": 19442154, + "name": "Enchantment Chance 5" + }, + "enchantment_chance_4": { + "price": 20504, + "name": "Enchantment Chance 4" + }, + "enchantment_ultimate_flash_2": { + "price": 9999998, + "name": "Enchantment Ultimate Flash 2" + }, + "enchantment_ultimate_flash_1": { + "price": 4125397, + "name": "Enchantment Ultimate Flash 1" + }, + "enchantment_ultimate_flash_4": { + "price": 52031499, + "name": "Enchantment Ultimate Flash 4" + }, + "enchantment_ultimate_flash_3": { + "price": 17999999, + "name": "Enchantment Ultimate Flash 3" + }, + "enchantment_first_strike_5": { + "price": 196999997, + "name": "Enchantment First Strike 5" + }, + "enchantment_ultimate_flash_5": { + "price": 72000000, + "name": "Enchantment Ultimate Flash 5" + }, + "enchantment_turbo_pumpkin_1": { + "price": 95128, + "name": "Enchantment Turbo Pumpkin 1" + }, + "enchantment_turbo_pumpkin_2": { + "price": 192203, + "name": "Enchantment Turbo Pumpkin 2" + }, + "enchantment_turbo_pumpkin_3": { + "price": 599997, + "name": "Enchantment Turbo Pumpkin 3" + }, + "enchantment_turbo_pumpkin_4": { + "price": 1063057, + "name": "Enchantment Turbo Pumpkin 4" + }, + "enchantment_turbo_pumpkin_5": { + "price": 1399999, + "name": "Enchantment Turbo Pumpkin 5" + }, + "enchantment_ultimate_fatal_tempo_5": { + "price": 2159999984, + "name": "Enchantment Ultimate Fatal Tempo 5" + }, + "enchantment_expertise_1": { + "price": 1285708, + "name": "Enchantment Expertise 1" + }, + "enchantment_ultimate_fatal_tempo_3": { + "price": 539999996, + "name": "Enchantment Ultimate Fatal Tempo 3" + }, + "enchantment_ultimate_fatal_tempo_4": { + "price": 1079999992, + "name": "Enchantment Ultimate Fatal Tempo 4" + }, + "enchantment_ultimate_fatal_tempo_1": { + "price": 134999999, + "name": "Enchantment Ultimate Fatal Tempo 1" + }, + "enchantment_ultimate_fatal_tempo_2": { + "price": 269999998, + "name": "Enchantment Ultimate Fatal Tempo 2" + }, + "enchantment_blessing_6": { + "price": 2999999, + "name": "Enchantment Blessing 6" + }, + "enchantment_champion_1": { + "price": 1292694, + "name": "Enchantment Champion 1" + }, + "enchantment_champion_3": { + "price": 0, + "name": "Enchantment Champion 3" + }, + "enchantment_champion_5": { + "price": 0, + "name": "Enchantment Champion 5" + }, + "enchantment_champion_2": { + "price": 0, + "name": "Enchantment Champion 2" + }, + "enchantment_champion_4": { + "price": 0, + "name": "Enchantment Champion 4" + }, + "enchantment_champion_7": { + "price": 0, + "name": "Enchantment Champion 7" + }, + "enchantment_champion_6": { + "price": 0, + "name": "Enchantment Champion 6" + }, + "enchantment_champion_9": { + "price": 0, + "name": "Enchantment Champion 9" + }, + "enchantment_champion_8": { + "price": 0, + "name": "Enchantment Champion 8" + }, + "enchantment_ultimate_one_for_all_1": { + "price": 4909996, + "name": "Enchantment Ultimate One For All 1" + }, + "enchantment_snipe_4": { + "price": 149999999, + "name": "Enchantment Snipe 4" + }, + "enchantment_ultimate_legion_1": { + "price": 1399149, + "name": "Enchantment Ultimate Legion 1" + }, + "enchantment_ultimate_legion_2": { + "price": 3203237, + "name": "Enchantment Ultimate Legion 2" + }, + "enchantment_ultimate_legion_5": { + "price": 23399597, + "name": "Enchantment Ultimate Legion 5" + }, + "enchantment_ultimate_legion_3": { + "price": 5849999, + "name": "Enchantment Ultimate Legion 3" + }, + "enchantment_ultimate_legion_4": { + "price": 14923879, + "name": "Enchantment Ultimate Legion 4" + }, + "enchantment_hecatomb_10": { + "price": 0, + "name": "Enchantment Hecatomb 10" + }, + "enchantment_counter_strike_3": { + "price": 577500, + "name": "Enchantment Counter Strike 3" + }, + "enchantment_counter_strike_4": { + "price": 11026, + "name": "Enchantment Counter Strike 4" + }, + "enchantment_counter_strike_5": { + "price": 59000000, + "name": "Enchantment Counter Strike 5" + }, + "enchantment_spiked_hook_6": { + "price": 74, + "name": "Enchantment Spiked Hook 6" + }, + "enchantment_lethality_6": { + "price": 65686, + "name": "Enchantment Lethality 6" + }, + "enchantment_rejuvenate_1": { + "price": 20998, + "name": "Enchantment Rejuvenate 1" + }, + "enchantment_cleave_6": { + "price": 16276464, + "name": "Enchantment Cleave 6" + }, + "enchantment_rejuvenate_5": { + "price": 371993, + "name": "Enchantment Rejuvenate 5" + }, + "enchantment_vicious_3": { + "price": 13499998, + "name": "Enchantment Vicious 3" + }, + "enchantment_rejuvenate_4": { + "price": 291950, + "name": "Enchantment Rejuvenate 4" + }, + "enchantment_vicious_4": { + "price": 3000000, + "name": "Enchantment Vicious 4" + }, + "enchantment_rejuvenate_3": { + "price": 102908, + "name": "Enchantment Rejuvenate 3" + }, + "enchantment_rejuvenate_2": { + "price": 55246, + "name": "Enchantment Rejuvenate 2" + }, + "enchantment_vicious_5": { + "price": 54999996, + "name": "Enchantment Vicious 5" + }, + "enchantment_turbo_carrot_2": { + "price": 135056, + "name": "Enchantment Turbo Carrot 2" + }, + "enchantment_turbo_carrot_1": { + "price": 45708, + "name": "Enchantment Turbo Carrot 1" + }, + "enchantment_giant_killer_6": { + "price": 710900, + "name": "Enchantment Giant Killer 6" + }, + "enchantment_giant_killer_7": { + "price": 94799999, + "name": "Enchantment Giant Killer 7" + }, + "enchantment_ultimate_inferno_1": { + "price": 49999996, + "name": "Enchantment Ultimate Inferno 1" + }, + "enchantment_ultimate_inferno_3": { + "price": 199999984, + "name": "Enchantment Ultimate Inferno 3" + }, + "enchantment_ultimate_inferno_2": { + "price": 99999992, + "name": "Enchantment Ultimate Inferno 2" + }, + "enchantment_ultimate_inferno_5": { + "price": 799999936, + "name": "Enchantment Ultimate Inferno 5" + }, + "enchantment_ultimate_inferno_4": { + "price": 399999968, + "name": "Enchantment Ultimate Inferno 4" + }, + "enchantment_turbo_carrot_4": { + "price": 824380, + "name": "Enchantment Turbo Carrot 4" + }, + "enchantment_turbo_carrot_3": { + "price": 317097, + "name": "Enchantment Turbo Carrot 3" + }, + "enchantment_turbo_carrot_5": { + "price": 775680, + "name": "Enchantment Turbo Carrot 5" + }, + "enchantment_turbo_cane_4": { + "price": 330895, + "name": "Enchantment Turbo Cane 4" + }, + "enchantment_turbo_cane_3": { + "price": 149999, + "name": "Enchantment Turbo Cane 3" + }, + "enchantment_turbo_cane_2": { + "price": 66858, + "name": "Enchantment Turbo Cane 2" + }, + "enchantment_turbo_cane_1": { + "price": 27666, + "name": "Enchantment Turbo Cane 1" + }, + "enchantment_turbo_cane_5": { + "price": 536186, + "name": "Enchantment Turbo Cane 5" + }, + "enchantment_fortune_4": { + "price": 999998, + "name": "Enchantment Fortune 4" + }, + "enchantment_frail_6": { + "price": 349, + "name": "Enchantment Frail 6" + }, + "enchantment_syphon_5": { + "price": 50000000, + "name": "Enchantment Syphon 5" + }, + "enchantment_syphon_4": { + "price": 338556, + "name": "Enchantment Syphon 4" + }, + "enchantment_infinite_quiver_10": { + "price": 21498, + "name": "Enchantment Infinite Quiver 10" + }, + "enchantment_looting_4": { + "price": 428, + "name": "Enchantment Looting 4" + }, + "enchantment_execute_6": { + "price": 32999999, + "name": "Enchantment Execute 6" + }, + "enchantment_smite_7": { + "price": 1708455, + "name": "Enchantment Smite 7" + }, + "enchantment_scavenger_4": { + "price": 2449, + "name": "Enchantment Scavenger 4" + }, + "enchantment_scavenger_5": { + "price": 16499995, + "name": "Enchantment Scavenger 5" + }, + "enchantment_looting_5": { + "price": 144900998, + "name": "Enchantment Looting 5" + }, + "enchantment_cubism_6": { + "price": 62999997, + "name": "Enchantment Cubism 6" + }, + "enchantment_smite_6": { + "price": 448, + "name": "Enchantment Smite 6" + }, + "enchantment_hecatomb_2": { + "price": 0, + "name": "Enchantment Hecatomb 2" + }, + "enchantment_hecatomb_3": { + "price": 0, + "name": "Enchantment Hecatomb 3" + }, + "enchantment_hecatomb_1": { + "price": 1979999, + "name": "Enchantment Hecatomb 1" + }, + "enchantment_hecatomb_6": { + "price": 0, + "name": "Enchantment Hecatomb 6" + }, + "enchantment_hecatomb_4": { + "price": 0, + "name": "Enchantment Hecatomb 4" + }, + "enchantment_hecatomb_7": { + "price": 0, + "name": "Enchantment Hecatomb 7" + }, + "enchantment_hecatomb_8": { + "price": 0, + "name": "Enchantment Hecatomb 8" + }, + "enchantment_hecatomb_5": { + "price": 0, + "name": "Enchantment Hecatomb 5" + }, + "enchantment_hecatomb_9": { + "price": 0, + "name": "Enchantment Hecatomb 9" + }, + "enchantment_luck_6": { + "price": 92, + "name": "Enchantment Luck 6" + }, + "enchantment_luck_7": { + "price": 46499995, + "name": "Enchantment Luck 7" + }, + "enchantment_infinite_quiver_8": { + "price": 4997, + "name": "Enchantment Infinite Quiver 8" + }, + "enchantment_infinite_quiver_9": { + "price": 9998, + "name": "Enchantment Infinite Quiver 9" + }, + "enchantment_infinite_quiver_6": { + "price": 0, + "name": "Enchantment Infinite Quiver 6" + }, + "enchantment_infinite_quiver_7": { + "price": 224, + "name": "Enchantment Infinite Quiver 7" + }, + "enchantment_ultimate_wisdom_4": { + "price": 1699998, + "name": "Enchantment Ultimate Wisdom 4" + }, + "enchantment_turbo_potato_3": { + "price": 306248, + "name": "Enchantment Turbo Potato 3" + }, + "enchantment_ultimate_wisdom_5": { + "price": 2924137, + "name": "Enchantment Ultimate Wisdom 5" + }, + "enchantment_turbo_potato_4": { + "price": 593408, + "name": "Enchantment Turbo Potato 4" + }, + "enchantment_turbo_potato_5": { + "price": 755928, + "name": "Enchantment Turbo Potato 5" + }, + "enchantment_ultimate_wisdom_1": { + "price": 161383, + "name": "Enchantment Ultimate Wisdom 1" + }, + "enchantment_turbo_potato_1": { + "price": 33759, + "name": "Enchantment Turbo Potato 1" + }, + "enchantment_ultimate_wisdom_2": { + "price": 321620, + "name": "Enchantment Ultimate Wisdom 2" + }, + "enchantment_ultimate_wisdom_3": { + "price": 799999, + "name": "Enchantment Ultimate Wisdom 3" + }, + "enchantment_turbo_potato_2": { + "price": 67800, + "name": "Enchantment Turbo Potato 2" + }, + "enchantment_ultimate_habanero_tactics_5": { + "price": 2431014, + "name": "Enchantment Ultimate Habanero Tactics 5" + }, + "enchantment_ultimate_habanero_tactics_4": { + "price": 1215508, + "name": "Enchantment Ultimate Habanero Tactics 4" + }, + "enchantment_fire_aspect_3": { + "price": 5188420, + "name": "Enchantment Fire Aspect 3" + }, + "enchantment_harvesting_6": { + "price": 115691, + "name": "Enchantment Harvesting 6" + }, + "enchantment_triple_strike_5": { + "price": 52289999, + "name": "Enchantment Triple Strike 5" + }, + "enchantment_thunderlord_7": { + "price": 13999999, + "name": "Enchantment Thunderlord 7" + }, + "enchantment_replenish_1": { + "price": 1095165, + "name": "Enchantment Replenish 1" + } } \ No newline at end of file diff --git a/examples/auctions/example_response_full.json b/examples/auctions/example_response_full.json new file mode 100644 index 0000000..d841a68 --- /dev/null +++ b/examples/auctions/example_response_full.json @@ -0,0 +1,360 @@ +{ + "status": 200, + "data": { + "total": 8, + "activeAuctions": 3, + "unclaimed": 5, + "coinsToClaim": 1452000, + "valueIfAllSold": 15652000, + "active": [ + { + "_id": "6311cee00cf2f44aa14dafd8", + "uuid": "08abd70775d94d6aaaa42d72966328b5", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662111456542, + "end": 1662133056542, + "item_name": "Molten Bracelet", + "item_lore": [ + "§7Strength: §c+20", + "§7Health: §a+30", + "§7Defense: §a+20", + "", + "§bBreeze I", + "§7When you haven't been damaged in", + "§7the last §a5s §7or more, your", + "§7mana costs are decreased by", + "§7§a1%§7.", + "§bMana Pool I", + "§7Grants §b+20✎ Intelligence§7.", + "", + "§8Tiered Bonus: Molten Core (0/4)", + "§7Gain §a5% §7damage resistance", + "§7while fighting §6Kuudra§7.", + "", + "§7§8This item can be reforged!", + "§5§lEPIC BRACELET" + ], + "extra": "Molten Bracelet Skull Item", + "category": "misc", + "tier": "EPIC", + "starting_bid": 9350000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAAFVU23KjRhAd2d6NrKR2K5v33UnirSS1UYwkZEl+080IrwBfkGR4cQ0wgpEGUMFgSfxD8gV5TJX/w5+SD0mlwU4qeWFqzpzuPn2amRpCx6jCagihygE6YF7l1wp6NYyzSFRq6FAQ/xAdT5hHLzjxU2D9VUO123XGubGNaFJFB6qHTuROjzZbzrJOe26v3nKdTp205LN6p9dethypK3dID+KuknhDE8Foeoyqgu5EltC0LF1Fr+aEZ7TyB93Gvjq8lMiiwd3WTeDc9Zk6in3NtCQ97+/01Wyrm/1cu91+Vod95k4uH+yQp/aMr1XWP4NYZuU33FZspi+sXA81yVDGLWuhte3VRaDlfG3lam6vbkJjqKZD1vfVaLB3mvbGUeaGBXWf86iytdADfeVvrZW610fWTsuvtyp7qdvkkRNeSN7dJZ+F85234Ht7cV1q9SaXDftFn6fMZW8y39t3Wnn23B/U5Pr0dib/Hyv4d5fpSx+xN7nZGqz78J8cmbPgmb3Q99bClqZhm3vDnmTfBaWOaa6CN2pbVyzZMMcNKw/WlsmZHs5yY6RC//baCsfQxzw0RkFgra5b+uqCGeZ1rimznaHYoWaqDRt8s811Q1P0la1YrPRoOOgV6/J604OJ1dAXHks3nOyP0dE0TmgVwHfom6fHzq1IaOSL4Bw/PbqfmhL6GsAJJfwZIp9aEnoH0IguaZTSZwxoCH359OgMEkpzilX0PVAWAY3wPs5wQB5o9IPADgXAIyHxqYdZhL4Dkggo5iQVRZ52Ct9OnOAQJP1chCboPSAhiQh241SkmCQUe9RNKEkhh7NHX8E5hDY+wvoLegMatIJ9FcccZJwAqiQkEkVmB3T++ftvWI0E5Zz5NHJpGYUKJV2T0QRyDuIoS8+xFnMBaoegBP8onco/lWoVwqJS6cdC6XMrGK4BSwWBbOgDoNuAcYqXzA8Ei3zgnX3OMi8hL6VwKbhrBizFTNAQuyQCZyDLMk7AmG+LMbSfHvn4Sh3iwU1/OJ6OzSo60klIC+vbL9IGCXEppwKm+Xa8EwnpC5EwJxPFrayRfzeH6LVTjqW4qvAeFG7eb8CfYo+qxbOB3mrG1Bzr9/+UA5oTp+k93PYEaMA6yjLgnSy9HvHo0q27UqNTl1vErXe9jleXSbcry2dd0vXgZzoWLKRgSbhBb7qn7dNmEzfO5TN8pSF0gF6PSt/QIUJ/A62Da3zBBAAA" + }, + "claimed": false, + "claimed_bidders": [], + "bin": true, + "highest_bid_amount": 0, + "bids": [] + }, + { + "_id": "6311d2a40cf2f44aa14dc28c", + "uuid": "90c761b8e2ca4d4b8de4bb92b3252903", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662112420542, + "end": 1662134020542, + "item_name": "[Lvl 58] Tiger", + "item_lore": [ + "§8Combat Pet", + "", + "§7Strength: §c+10.8", + "§7Crit Chance: §c+2.9%", + "§7Crit Damage: §c+29%", + "§7Ferocity: §a+14.5", + "", + "§6Merciless Swipe", + "§7§7Gain §c+17.4% §c⫽ Ferocity§7.", + "", + "§6Hemorrhage", + "§7§7Melee attacks reduce healing", + "§7by §631.9% §7for §a10s§7.", + "", + "§a(2/10) Pet Candy Used", + "", + "§7Progress to Level 59: §e77.5%", + "§2----------------§f---- §e53,796.7§6/§e69k", + "", + "§7§eRight-click to add this pet to", + "§eyour pet menu!", + "", + "§5§lEPIC" + ], + "extra": "[Lvl 58] Tiger Skull Item", + "category": "misc", + "tier": "EPIC", + "starting_bid": 2450000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAAI1TyW7jRhAt2TMZSUASJEgwOXIIG5hgJJmLSIoC5mBIXiiIssfrWEEOLbJEUuIikE2P6SCfkO8QglxzzUWfkg8JUu0lCHIKQZBdVa9evarubgI0oBY1AaC2BVuRX/ulBi8HWZnyWhO2OQu2oXEc+XgYs6Ag1F9NaJ4vyzg++ZRiXoctx4cdXWemjcxvd7vMa+uWrbbtrma0DU1VbMY8nzGT8k7zbIU5j7BoQJ3jHS9zLB5K1+HlFYtLhN+xGinTj6HifxzFXuWYZF+cK/GJs1hZTnpVzQaO6SQUP943x5X9L6zB2bUR3+ijcJp+KGfJlTLWz2I8PlO95PJ2mriKu7i5Pxl6ymS4rNzEUafJJJksRovpMI6mC0efXl+FN4vl3c1iFE/uR8tJ4uru0WVXoCbXh6F7H3Td+6XhapfGdBgoTqra8w/v31MHTXjlR8UqZlUDXoyzHOvkfA2fb9a9QZbMGJdOkZPr283aOuc5pgEP+9Jm7b1TlU4PviP3II+4NAhZ6uFjROvYu/D6OTJkCQueIxQQTIeYZ17EK+Fl79Rux6ASX2/Wpou5F8VYFNL5p2iF8JbA9B6xKH0sanW6u2L1529/SM8sBOhQPmk2jzHJ8jykgiA/proYI0qMc+YtCylHv/RQCpHFURoAMVmzir6mrpJoYc6zXIhSleKJllpkb7U9VflejEIasNSvpMsCfYq9IQwdjiAXinkmjfEWY8mwRV9oWR1jF5TNWmv/59ms5+InQIbesmyzQ0rNPTJNe0m0Ow/S8SwKQt724shbCnLm+xIPo0JakQyewVcEqbIyf7ATTMs3Yj83a2Ozjg9OnUEdXkxYgvANsf0wviVdvR+ppHERBZjTxn95cMdzts95Hs1KjkUdXhGTk84z+PUnmVcrlPvyhXN0cCa3ZObx6JYccxYX2JLxbiX3ezQ10m7aPU03lJ5htWS6IzllifKUFNL9E3z/pHlieGJ2cl9ryWUZ0UJmqKvdua+1DWtmtrumrbeZb3htZD1rZpiarnvzJ7KHiQzEQJ4of66Luw/bpwcX1K4ghJ3/w1eHBo8SLDhLVvCFvaftaZpk9HVb2ncBtuCzx1ML2wB/A6+/FRVqBAAA" + }, + "claimed": false, + "claimed_bidders": [], + "bin": true, + "highest_bid_amount": 0, + "bids": [] + }, + { + "_id": "6311d4220cf2f44aa14dc874", + "uuid": "ce176c35f26f4c94a0a2836590877bdb", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662112802890, + "end": 1662134402890, + "item_name": "Ancient Shark Scale Leggings", + "item_lore": [ + "§7Strength: §c+25 §9(+25)", + "§7Crit Chance: §c+12% §9(+12%)", + "§7Crit Damage: §c+35% §9(+35%)", + "§7Sea Creature Chance: §c+2.5%", + "§7Health: §a+232 §9(+7)", + "§7Defense: §a+177 §9(+7)", + "§7Intelligence: §a+20 §9(+20)", + " §8[§7❈§8] §8[§7❈§8]", + "", + "§9§d§lLegion II", + "§7Increases most of your player", + "§7stats by §e0.14% §7per player", + "§7within §b30 §7blocks of you, up", + "§7to §c20 §7players.", + "§9Growth V", + "§7Grants §a+75 §c❤ Health§7.", + "§9Protection V", + "§7Grants §a+20 §a❈ Defense§7.", + "", + "§6Full Set Bonus: Absorb", + "§7§9Doubles§7 your §a❈ Defense§7", + "§7while in water.", + "", + "§6Full Set Bonus: Reflect", + "§7§7Your sharp scales reflect", + "§7§915% §7of damage onto the", + "§7attacker.", + "", + "§9Ancient Bonus", + "§7Grants §a+1 §9☠ Crit Damage", + "§9§7per §cCatacombs §7level.", + "", + "§7§4❣ §cRequires §aFishing Skill 24§c.", + "§6§lLEGENDARY LEGGINGS" + ], + "extra": "Ancient Shark Scale Leggings Leather Leggings §d§lLegion Protection Growth", + "category": "armor", + "tier": "LEGENDARY", + "starting_bid": 2400000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAAG1UXW7bRhAeWXEiKwHcBAHSpkW6TROkRiyF1B9jvamyLRt1HcNsAgRBYCypIbUQxVV3l3V9gx6hLwYKpKjuoaP4IEVnSdqN0/KFszvffDPzzZB1gDWoiDoAVFZgRYwrmxVYHcosNZU6VA2P1+AGpuEE7FOB26/TQCGf8iDBShXW9sQYdxMea/L+XYdbY6HnCT+joAOpsEa3j+Gr5cLzjcI0NpM+Wy7C560uvba+o/cGfEPeoRKGDSc8DbEAuK2nBYKMjyDbfMbjEtLulhAyNoDZHMjZkIozmcJrbK1m9yk8JMQe8qSogT9vtVtFvLcBX5JvGyNMNRZO1/OunJZ6PzWYJCLGkpPCnbIFZwMekfnyHcEuzn8j6/0nRxLhHmGXi/FykRxgLGTK9vdL3pAK1qjZTGrDZMTOZKaYlRAVPCaENtxoFpwRGp2m27FNe3O8wjyh46kwE5GSI2jbqrwgkeFUl2ybLJvDA7o10oqR1+0VwboJt6mwkZKnZsLe5PlGiqeU0Lbo2SmFF+d/skI38jZhnQKOlDQYGtvHG/j2elDOz6lzVgqaRwF8sVz0drMkYT4a9r1MM91ng0BLFcAzghDrtsxoqTQdChH+Q2NV9E4nIkFG3Z5yg8oyP/wf5mOMEqoQvs6pvbeWT0+4mjMdckrC1DXAlpsvk0eKjfMVYzIlucwE4Q5dc2N4OC2yfUboQRoKTMtkn6rm2r24+P0P9tHG2llvlXMjSYec+OQssAFegr9gYpkbeSmdi/MPFnOMP2dCYc65KzTNN2b+VFCbrQ65m/A5tW33aWe0c7g9OH7LyBrtH478KqyGMpEKYPOvGtw45DO0bfYuq/ZJhynzrQ6MtjEmZg11WN/51Sg+MEaJIDOoa5c0Naff6fTdXq8GtZkci0jQ2t3iBVsN1qQSxPETj2HdP3p1ONo5uaykZn8ocN/fGxz/cOIPBwf/uupwx/5VSLUZsegqrGeJETOa6UmSfyEkyEoV6vOrVaOL1SrcjPNltQeg5rKMEjwJoshztpA3gpdRr9FBp9sIola74QTotjl6GLVDKpT4kT6n2Rzuuu6LtvOi5TLX7TtddvQjZYOb5bDo+QeCTYh1FwUAAA==" + }, + "claimed": false, + "claimed_bidders": [], + "bin": true, + "highest_bid_amount": 0, + "bids": [] + } + ], + "ended": [ + { + "_id": "60bef7cf0cf2426bce82583a", + "uuid": "fce96c43941b4f6b84be79ff7db5bd47", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "60b4f03593c0470c934f94e3bd88f564", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1623128015883, + "end": 1623149615883, + "item_name": "Lapis Armor Chestplate", + "item_lore": [ + "§7Defense: §a+40", + "", + "§7Each piece of this armour grants", + "§7§a50% §7bonus experience when", + "§7mining ores.", + "", + "§6Full Set Bonus: Health", + "§7Increases the wearers maximum", + "§7§c❤ Health §7by §a60§7.", + "", + "§7§8This item can be reforged!", + "§a§lUNCOMMON CHESTPLATE" + ], + "extra": "Lapis Armor Chestplate Leather Chestplate", + "category": "armor", + "tier": "UNCOMMON", + "starting_bid": 2000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAAEWRzW7aQBSFryEpP62E1EWk7qZ/q4gGiG1+di4hIiqYKIC6jC7mYka1x2hmrJKH6a4S78Gj9EHaXtNW3Y3unPOdc2fqADVwZB0AnBKU5Nq5dOB8mOXKOnUoW4wdeL5UK034BVcJOWWojeWabhOMDZt+1qGylmaX4FMNziaZpipPX8DL46F7QxtShgbieMBLt8XztzwdYbQVO0kRiWwj7FYagTrNci1ijcoaeMMidnit92zsrjKVG0H7HWlJik1ft6SgwTepVFLFgiPNB2a/Oh782zxJxJys+Fi4BmJMmNgtFJw7FfEOhgxHMoRQkzYixb1M8/SkOB6iH9++//Wcop+K5n6Lj0XAH01vUTSWllIRoRIrEpo2mY5p/bqogMdDsgyHs+l0ForheDRf3E+CxagM51GWZJoxv6pwFmJKJ/UEd0wLeH8thlsylh/SEtShMdpbjYG1Wq5yS6b6D1BpDVqDjudVoZZpGUu1wBgqy/BTOPscVosfhItJcH83fwweprOHx/8dODfP+frdxvN8l/yo6XttbLp4vWli5Paa2Pd6/et25PbdLuOtTLkQpjto+Fe9q05btDsDtyuCKUAJnt1gijHxQvAbKDoTNEQCAAA=" + }, + "claimed": false, + "claimed_bidders": [ + "5708ac91376c431c9f59f4d09c0d070a", + "992cd336bd4c4295bfb2dca892b8883e" + ], + "highest_bid_amount": 7000, + "bids": [ + { + "auction_id": "fce96c43941b4f6b84be79ff7db5bd47", + "bidder": "5708ac91376c431c9f59f4d09c0d070a", + "profile_id": "ac3fdccb8342435d900eace855c7b9fe", + "amount": 2000, + "timestamp": 1623149060455 + }, + { + "auction_id": "fce96c43941b4f6b84be79ff7db5bd47", + "bidder": "992cd336bd4c4295bfb2dca892b8883e", + "profile_id": "2002f05581f245fb9bcb6378c0e939de", + "amount": 2300, + "timestamp": 1623149271294 + }, + { + "auction_id": "fce96c43941b4f6b84be79ff7db5bd47", + "bidder": "5708ac91376c431c9f59f4d09c0d070a", + "profile_id": "ac3fdccb8342435d900eace855c7b9fe", + "amount": 7000, + "timestamp": 1623149299845 + } + ] + }, + { + "_id": "6311ce9b0cf2f44aa14daecc", + "uuid": "5ff8ef6f0d1c43dea3d709fd5a2669e3", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662111387369, + "end": 1662118789727, + "item_name": "Digested Mosquito", + "item_lore": ["§eRight-click to view recipes!", "", "§6§lLEGENDARY"], + "extra": "Digested Mosquito Rotten Flesh", + "category": "consumables", + "tier": "LEGENDARY", + "starting_bid": 300000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAABWOy06DQBiFf0pVYENM3DsmbkmRm4y7RrA2Ka22deHKDPAXJ4IgDF6eiPfgwYzj9jsn53wGgA4KNwBAmcCE50qtwNFt3b8LxQBVsEIF/Z7neFeyopOtXwNOct41JfvRYbqqW9QkVeF8HHDLi1dhZSXP3oioySfHL9JixhvsLmTJHIdgHMpVvIjX0Xz7rMF0zSqEM8kjXmAnMCdJ3X30XNRggBl/i5bNhWh52gvstH8/OI2Wi3i3j6OXZLN7fFruN3Kn72Vy6dIUbTu8slJ68CyPurlFA9+37Mx1kXoUD36ggS54Jb9Y1YAZzhx35jjk+sYOyUMCMIHjiFWsQOkLf5mBVd0dAQAA" + }, + "claimed": false, + "claimed_bidders": ["5fdb72a7a2d94d22b4b4dd49ad86c791"], + "bin": true, + "highest_bid_amount": 300000, + "bids": [ + { + "auction_id": "5ff8ef6f0d1c43dea3d709fd5a2669e3", + "bidder": "5fdb72a7a2d94d22b4b4dd49ad86c791", + "profile_id": "0f00b28f090440419b0273236fee0463", + "amount": 300000, + "timestamp": 1662118793644 + } + ] + }, + { + "_id": "6311ceac0cf2f44aa14daf0b", + "uuid": "89dcdf0f4e4446a3992760f1b925567c", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662111404504, + "end": 1662118775782, + "item_name": "Digested Mosquito", + "item_lore": ["§eRight-click to view recipes!", "", "§6§lLEGENDARY"], + "extra": "Digested Mosquito Rotten Flesh", + "category": "consumables", + "tier": "LEGENDARY", + "starting_bid": 300000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAABWOzU6DQBhFP0pVYFNN3DsmbkkLDrS6awRrk9JqWxeuzDAz4kRwkBn8eSLegwczjttzb+49HoALlvAAwBrAQDBLWnBwI9t3bXlga1LY4N4Jxm9LUijT+vXgiAlVl+THheFKNtwx1IazvuNbUbxqn5aCviEt0afgX6jhVNRcnZvSqO/ivitX6SJdJ/PtkwPDNak4nBqeiIIrzRnKpPpohZbgwSj91g2Za92IvNVcOf9+cJIsF+lunybP2Wb38Ljcb8xO25rk4nKS59Mppj7HL9jHM3bl50EU+4wGmJIgx5hRB1wtKvNFqhqOZ+MwGochCibXUYzuM4ABHCakIgU3wvAHMiT21h4BAAA=" + }, + "claimed": false, + "claimed_bidders": ["5fdb72a7a2d94d22b4b4dd49ad86c791"], + "bin": true, + "highest_bid_amount": 300000, + "bids": [ + { + "auction_id": "89dcdf0f4e4446a3992760f1b925567c", + "bidder": "5fdb72a7a2d94d22b4b4dd49ad86c791", + "profile_id": "0f00b28f090440419b0273236fee0463", + "amount": 300000, + "timestamp": 1662118779738 + } + ] + }, + { + "_id": "6311cebe0cf2f44aa14daf57", + "uuid": "c8bd4e9c1c2e4dba8174ae41c60e97c3", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662111422821, + "end": 1662118782576, + "item_name": "Digested Mosquito", + "item_lore": ["§eRight-click to view recipes!", "", "§6§lLEGENDARY"], + "extra": "Digested Mosquito Rotten Flesh", + "category": "consumables", + "tier": "LEGENDARY", + "starting_bid": 300000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAABWOzU6DQBSFL6UqsCEm7h0Tt6QwFQruiGBtUtrY1oUrM8AUbwRBGPx5It6DBzOO2++cnPMZADooaACAMoEJ5kqtwMld3b8LxQBVsEIF/QFzfl+yopOtXwPOcuyakv3oMF3XLdckVeFyHPgOi1dhZSVmb0TU5BP5F2l5hg3vrmTJHAdvHMp1vIw3Ubh71mC6YRWHC8kjLHgneE6SuvvoUdRggBl/i5aFQrSY9oJ32r8fnEerZbw/xNFLst0/Pq0OW7nT9zK5Tu05c3LPtdIjDaybwF5YQbqYW67jH3PHd2lqpxroAiv5xaoGTG9G/RmlJLilDgkTgAmcRqxiBZe+8AcSgd3CHQEAAA==" + }, + "claimed": false, + "claimed_bidders": ["5fdb72a7a2d94d22b4b4dd49ad86c791"], + "bin": true, + "highest_bid_amount": 300000, + "bids": [ + { + "auction_id": "c8bd4e9c1c2e4dba8174ae41c60e97c3", + "bidder": "5fdb72a7a2d94d22b4b4dd49ad86c791", + "profile_id": "0f00b28f090440419b0273236fee0463", + "amount": 300000, + "timestamp": 1662118786499 + } + ] + }, + { + "_id": "6311d6600cf2f44aa14dd4e3", + "uuid": "2c2b5b305a9c4e239ce00f2080f4513a", + "auctioneer": "60b4f03593c0470c934f94e3bd88f564", + "profile_id": "4b5da4a29d2d49478f445794f9ee2f41", + "coop": ["60b4f03593c0470c934f94e3bd88f564"], + "start": 1662113376061, + "end": 1662115865842, + "item_name": "Ancient Rose", + "item_lore": [ + "§7§8§oAncient plant imbued with", + "§8§othe unyielding power of truth.", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE DUNGEON ITEM" + ], + "extra": "Ancient Rose Red Rose", + "category": "blocks", + "tier": "RARE", + "starting_bid": 545000, + "item_bytes": { + "type": 0, + "data": "H4sIAAAAAAAAADWPQU+DQBCFB1or4KFHj67GeNOreiQWW5MWCNGDJ7OFESYCS2AQ+4v2f+wPM240Xt7hvS9v5gUAPjgUAIDjgksFXDlw9KDGlp0AZizLGfgbKvCxluVgqe8AjgsauloefJhvVY+edRdwYfSt0XdGq7DNCVsWFrFKzX7EQkzEFVz+AVyhGNsDYV1QW4pOTdgL9S64H7m6sW1nRmNGZcXXeU35h2AlPgkn0WNOHQ7nFjk1+t7oOguzSKxe4nWUxOLpOdp5MI9lg7C0+f8jmRoQAlhGX9zLkLmn/cg4eL9zT9bJNtq9pUmavgK4sFjJRpZoT8AP0zPhyxwBAAA=" + }, + "claimed": false, + "claimed_bidders": ["d1fdc76008574b5f9f6f0f73024749f8"], + "bin": true, + "highest_bid_amount": 545000, + "bids": [ + { + "auction_id": "2c2b5b305a9c4e239ce00f2080f4513a", + "bidder": "d1fdc76008574b5f9f6f0f73024749f8", + "profile_id": "809c9e6c4ef3452bbf73c012cc7f2a10", + "amount": 545000, + "timestamp": 1662115869759 + } + ] + } + ] + } +} diff --git a/examples/bingo/example_response_full.json b/examples/bingo/example_response_full.json new file mode 100644 index 0000000..12ee04a --- /dev/null +++ b/examples/bingo/example_response_full.json @@ -0,0 +1,184 @@ +{ + "status": 200, + "data": { + "uuid": "fb3d96498a5b4d5b91b763db14b195ad", + "profile": { + "points": 105, + "id": 8, + "player": [ + { + "completed": true, + "id": "FIND_EXPERIMENT_PAIRS_1", + "name": "Pair Up!", + "lore": "§7Find §91 Pair §7in the §9Experimentation Table§7.", + "requiredAmount": 1 + }, + { + "completed": true, + "id": "stat_health", + "name": "Healthy", + "lore": "§7Reach §c1,000 §c❤ Health§7.", + "requiredAmount": 1000 + }, + { + "completed": true, + "id": "UNLOCK_DUNGEON_CHEST_WOOD", + "name": "Wooden Treasure", + "lore": "§7Unlock a §fWood§7 Dungeon Chest." + }, + { + "completed": true, + "id": "collection_bone", + "name": "Bone Collector", + "lore": "§7Reach §a100,000 §7Bone Collection.", + "requiredAmount": 100000 + }, + { + "completed": true, + "id": "spawn_golden_goblin", + "name": "Strange Eggs", + "lore": "§7Spawn a §6Golden Goblin §7from a Goblin Egg." + }, + { + "completed": true, + "id": "OBTAIN_JACOB_SILVER", + "name": "Podium Position", + "lore": "§7Obtain a §fSilver§7 or higher §fMedal§7 in Jacob's Farming Contest." + }, + { + "completed": true, + "id": "UNLOCK_UNIQUE_COLLECTIONS_40", + "name": "Diversity", + "lore": "§7Unlock §e40 §7unique Collections.", + "requiredAmount": 40 + }, + { + "completed": true, + "id": "collection_log:3", + "name": "Jungle Wood Collector", + "lore": "§7Reach §a20,000 §7Jungle Wood Collection.", + "requiredAmount": 20000 + }, + { + "completed": true, + "id": "wear_accessories", + "name": "Bedazzled", + "lore": "§7Equip §a22 §7unique Accessories.", + "requiredAmount": 22 + }, + { + "completed": true, + "id": "bestiary_level_5", + "name": "Collecting Data", + "lore": "§7Reach §3Bestiary §7Milestone 5§7.", + "requiredAmount": 5 + }, + { + "completed": true, + "id": "collection_diamond", + "name": "Diamond Collector", + "lore": "§7Reach §a25,000 §7Diamond Collection.", + "requiredAmount": 25000 + }, + { + "completed": true, + "id": "stat_strength", + "name": "Strongman", + "lore": "§7Reach §c120 §c❁ Strength§7.", + "requiredAmount": 120 + }, + { + "completed": true, + "id": "GET_SKILL_combat_10", + "name": "Warrior", + "lore": "§7Obtain level §e10§7 in the §6Combat §7Skill." + }, + { + "completed": true, + "id": "obtain_pets", + "name": "Pet Hoarder", + "lore": "§7Obtain §a9 §7unique Pets.", + "requiredAmount": 9 + }, + { + "completed": true, + "id": "obtain_item_wedding_ring_2", + "name": "Love Is All Around", + "lore": "§7Obtain a §aMediocre Ring of Love§7." + }, + { + "completed": true, + "id": "stat_critical_damage", + "name": "Critical", + "lore": "§7Reach §9100% §9☠ Crit Damage§7.", + "requiredAmount": 100 + }, + { + "completed": true, + "id": "fairy_souls", + "name": "Fairy Finder", + "lore": "§7Obtain §d25 Fairy Souls§7.", + "requiredAmount": 25 + }, + { + "completed": true, + "id": "bank_coins", + "name": "Meiser", + "lore": "§7Store §6500,000 Coins §7in your Bank.", + "requiredAmount": 500000 + }, + { + "completed": true, + "id": "spider_relic", + "name": "Relic Researcher", + "lore": "§7Find 10 §fRelics §7in the Spider's Den.", + "requiredAmount": 10 + }, + { + "completed": true, + "id": "obtain_pet_level", + "name": "Pet Grinder", + "lore": "§7Obtain a §a[Lvl 100] Pet§7.", + "requiredAmount": 0 + } + ], + "community": [ + { + "completed": true, + "id": "summon_sea_creatures", + "name": "Poseidon", + "tiers": [20000, 40000, 60000, 80000, 100000], + "progress": 137961 + }, + { + "completed": true, + "id": "coin_scavenger", + "name": "Scavenger", + "tiers": [50000000, 100000000, 150000000, 200000000, 250000000], + "progress": 327897380 + }, + { + "completed": true, + "id": "kill_dungeon_boss_catacombs_1", + "name": "Clown Collab", + "tiers": [1000, 2000, 3000, 4000, 5000], + "progress": 22927 + }, + { + "completed": true, + "id": "collect_pelts", + "name": "Hunter", + "tiers": [20000, 40000, 60000, 80000, 100000], + "progress": 204684 + }, + { + "completed": false, + "id": "kill_team_treasurite", + "name": "Let the StarFall", + "tiers": [100000, 200000, 300000, 400000, 500000], + "progress": 253432 + } + ] + } + } +} diff --git a/examples/calendar/example_response_full.json b/examples/calendar/example_response_full.json new file mode 100644 index 0000000..685357f --- /dev/null +++ b/examples/calendar/example_response_full.json @@ -0,0 +1,1827 @@ +{ + "status": 200, + "data": { + "from": 1660744480537, + "to": 1661162100000, + "date": "Early Spring 24th, 226", + "year": 226, + "month": "Early Spring", + "day": 24, + "time": "11:30pm", + "hour": 11, + "minute": 30, + "next_day_countdown": 19463, + "next_month_countdown": 8419463, + "next_year_countdown": 417619463, + "events": { + "BANK_INTEREST": { + "name": "Bank Interest", + "duration": 1200000, + "events": [ + { + "start_timestamp": 1660827300000, + "end_timestamp": 1660828500000, + "starting_in": 82819463, + "ending_in": 84019463 + }, + { + "start_timestamp": 1660938900000, + "end_timestamp": 1660940100000, + "starting_in": 194419463, + "ending_in": 195619463 + }, + { + "start_timestamp": 1661050500000, + "end_timestamp": 1661051700000, + "starting_in": 306019463, + "ending_in": 307219463 + } + ] + }, + "DARK_AUCTION": { + "name": "Dark Auction", + "duration": 1200000, + "events": [ + { + "start_timestamp": 1660744500000, + "end_timestamp": 1660745700000, + "starting_in": 19463, + "ending_in": 1219463 + }, + { + "start_timestamp": 1660748100000, + "end_timestamp": 1660749300000, + "starting_in": 3619463, + "ending_in": 4819463 + }, + { + "start_timestamp": 1660751700000, + "end_timestamp": 1660752900000, + "starting_in": 7219463, + "ending_in": 8419463 + }, + { + "start_timestamp": 1660755300000, + "end_timestamp": 1660756500000, + "starting_in": 10819463, + "ending_in": 12019463 + }, + { + "start_timestamp": 1660758900000, + "end_timestamp": 1660760100000, + "starting_in": 14419463, + "ending_in": 15619463 + }, + { + "start_timestamp": 1660762500000, + "end_timestamp": 1660763700000, + "starting_in": 18019463, + "ending_in": 19219463 + }, + { + "start_timestamp": 1660766100000, + "end_timestamp": 1660767300000, + "starting_in": 21619463, + "ending_in": 22819463 + }, + { + "start_timestamp": 1660769700000, + "end_timestamp": 1660770900000, + "starting_in": 25219463, + "ending_in": 26419463 + }, + { + "start_timestamp": 1660773300000, + "end_timestamp": 1660774500000, + "starting_in": 28819463, + "ending_in": 30019463 + }, + { + "start_timestamp": 1660776900000, + "end_timestamp": 1660778100000, + "starting_in": 32419463, + "ending_in": 33619463 + }, + { + "start_timestamp": 1660780500000, + "end_timestamp": 1660781700000, + "starting_in": 36019463, + "ending_in": 37219463 + }, + { + "start_timestamp": 1660784100000, + "end_timestamp": 1660785300000, + "starting_in": 39619463, + "ending_in": 40819463 + }, + { + "start_timestamp": 1660787700000, + "end_timestamp": 1660788900000, + "starting_in": 43219463, + "ending_in": 44419463 + }, + { + "start_timestamp": 1660791300000, + "end_timestamp": 1660792500000, + "starting_in": 46819463, + "ending_in": 48019463 + }, + { + "start_timestamp": 1660794900000, + "end_timestamp": 1660796100000, + "starting_in": 50419463, + "ending_in": 51619463 + }, + { + "start_timestamp": 1660798500000, + "end_timestamp": 1660799700000, + "starting_in": 54019463, + "ending_in": 55219463 + }, + { + "start_timestamp": 1660802100000, + "end_timestamp": 1660803300000, + "starting_in": 57619463, + "ending_in": 58819463 + }, + { + "start_timestamp": 1660805700000, + "end_timestamp": 1660806900000, + "starting_in": 61219463, + "ending_in": 62419463 + }, + { + "start_timestamp": 1660809300000, + "end_timestamp": 1660810500000, + "starting_in": 64819463, + "ending_in": 66019463 + }, + { + "start_timestamp": 1660812900000, + "end_timestamp": 1660814100000, + "starting_in": 68419463, + "ending_in": 69619463 + }, + { + "start_timestamp": 1660816500000, + "end_timestamp": 1660817700000, + "starting_in": 72019463, + "ending_in": 73219463 + }, + { + "start_timestamp": 1660820100000, + "end_timestamp": 1660821300000, + "starting_in": 75619463, + "ending_in": 76819463 + }, + { + "start_timestamp": 1660823700000, + "end_timestamp": 1660824900000, + "starting_in": 79219463, + "ending_in": 80419463 + }, + { + "start_timestamp": 1660827300000, + "end_timestamp": 1660828500000, + "starting_in": 82819463, + "ending_in": 84019463 + }, + { + "start_timestamp": 1660830900000, + "end_timestamp": 1660832100000, + "starting_in": 86419463, + "ending_in": 87619463 + }, + { + "start_timestamp": 1660834500000, + "end_timestamp": 1660835700000, + "starting_in": 90019463, + "ending_in": 91219463 + }, + { + "start_timestamp": 1660838100000, + "end_timestamp": 1660839300000, + "starting_in": 93619463, + "ending_in": 94819463 + }, + { + "start_timestamp": 1660841700000, + "end_timestamp": 1660842900000, + "starting_in": 97219463, + "ending_in": 98419463 + }, + { + "start_timestamp": 1660845300000, + "end_timestamp": 1660846500000, + "starting_in": 100819463, + "ending_in": 102019463 + }, + { + "start_timestamp": 1660848900000, + "end_timestamp": 1660850100000, + "starting_in": 104419463, + "ending_in": 105619463 + }, + { + "start_timestamp": 1660852500000, + "end_timestamp": 1660853700000, + "starting_in": 108019463, + "ending_in": 109219463 + }, + { + "start_timestamp": 1660856100000, + "end_timestamp": 1660857300000, + "starting_in": 111619463, + "ending_in": 112819463 + }, + { + "start_timestamp": 1660859700000, + "end_timestamp": 1660860900000, + "starting_in": 115219463, + "ending_in": 116419463 + }, + { + "start_timestamp": 1660863300000, + "end_timestamp": 1660864500000, + "starting_in": 118819463, + "ending_in": 120019463 + }, + { + "start_timestamp": 1660866900000, + "end_timestamp": 1660868100000, + "starting_in": 122419463, + "ending_in": 123619463 + }, + { + "start_timestamp": 1660870500000, + "end_timestamp": 1660871700000, + "starting_in": 126019463, + "ending_in": 127219463 + }, + { + "start_timestamp": 1660874100000, + "end_timestamp": 1660875300000, + "starting_in": 129619463, + "ending_in": 130819463 + }, + { + "start_timestamp": 1660877700000, + "end_timestamp": 1660878900000, + "starting_in": 133219463, + "ending_in": 134419463 + }, + { + "start_timestamp": 1660881300000, + "end_timestamp": 1660882500000, + "starting_in": 136819463, + "ending_in": 138019463 + }, + { + "start_timestamp": 1660884900000, + "end_timestamp": 1660886100000, + "starting_in": 140419463, + "ending_in": 141619463 + }, + { + "start_timestamp": 1660888500000, + "end_timestamp": 1660889700000, + "starting_in": 144019463, + "ending_in": 145219463 + }, + { + "start_timestamp": 1660892100000, + "end_timestamp": 1660893300000, + "starting_in": 147619463, + "ending_in": 148819463 + }, + { + "start_timestamp": 1660895700000, + "end_timestamp": 1660896900000, + "starting_in": 151219463, + "ending_in": 152419463 + }, + { + "start_timestamp": 1660899300000, + "end_timestamp": 1660900500000, + "starting_in": 154819463, + "ending_in": 156019463 + }, + { + "start_timestamp": 1660902900000, + "end_timestamp": 1660904100000, + "starting_in": 158419463, + "ending_in": 159619463 + }, + { + "start_timestamp": 1660906500000, + "end_timestamp": 1660907700000, + "starting_in": 162019463, + "ending_in": 163219463 + }, + { + "start_timestamp": 1660910100000, + "end_timestamp": 1660911300000, + "starting_in": 165619463, + "ending_in": 166819463 + }, + { + "start_timestamp": 1660913700000, + "end_timestamp": 1660914900000, + "starting_in": 169219463, + "ending_in": 170419463 + }, + { + "start_timestamp": 1660917300000, + "end_timestamp": 1660918500000, + "starting_in": 172819463, + "ending_in": 174019463 + }, + { + "start_timestamp": 1660920900000, + "end_timestamp": 1660922100000, + "starting_in": 176419463, + "ending_in": 177619463 + }, + { + "start_timestamp": 1660924500000, + "end_timestamp": 1660925700000, + "starting_in": 180019463, + "ending_in": 181219463 + }, + { + "start_timestamp": 1660928100000, + "end_timestamp": 1660929300000, + "starting_in": 183619463, + "ending_in": 184819463 + }, + { + "start_timestamp": 1660931700000, + "end_timestamp": 1660932900000, + "starting_in": 187219463, + "ending_in": 188419463 + }, + { + "start_timestamp": 1660935300000, + "end_timestamp": 1660936500000, + "starting_in": 190819463, + "ending_in": 192019463 + }, + { + "start_timestamp": 1660938900000, + "end_timestamp": 1660940100000, + "starting_in": 194419463, + "ending_in": 195619463 + }, + { + "start_timestamp": 1660942500000, + "end_timestamp": 1660943700000, + "starting_in": 198019463, + "ending_in": 199219463 + }, + { + "start_timestamp": 1660946100000, + "end_timestamp": 1660947300000, + "starting_in": 201619463, + "ending_in": 202819463 + }, + { + "start_timestamp": 1660949700000, + "end_timestamp": 1660950900000, + "starting_in": 205219463, + "ending_in": 206419463 + }, + { + "start_timestamp": 1660953300000, + "end_timestamp": 1660954500000, + "starting_in": 208819463, + "ending_in": 210019463 + }, + { + "start_timestamp": 1660956900000, + "end_timestamp": 1660958100000, + "starting_in": 212419463, + "ending_in": 213619463 + }, + { + "start_timestamp": 1660960500000, + "end_timestamp": 1660961700000, + "starting_in": 216019463, + "ending_in": 217219463 + }, + { + "start_timestamp": 1660964100000, + "end_timestamp": 1660965300000, + "starting_in": 219619463, + "ending_in": 220819463 + }, + { + "start_timestamp": 1660967700000, + "end_timestamp": 1660968900000, + "starting_in": 223219463, + "ending_in": 224419463 + }, + { + "start_timestamp": 1660971300000, + "end_timestamp": 1660972500000, + "starting_in": 226819463, + "ending_in": 228019463 + }, + { + "start_timestamp": 1660974900000, + "end_timestamp": 1660976100000, + "starting_in": 230419463, + "ending_in": 231619463 + }, + { + "start_timestamp": 1660978500000, + "end_timestamp": 1660979700000, + "starting_in": 234019463, + "ending_in": 235219463 + }, + { + "start_timestamp": 1660982100000, + "end_timestamp": 1660983300000, + "starting_in": 237619463, + "ending_in": 238819463 + }, + { + "start_timestamp": 1660985700000, + "end_timestamp": 1660986900000, + "starting_in": 241219463, + "ending_in": 242419463 + }, + { + "start_timestamp": 1660989300000, + "end_timestamp": 1660990500000, + "starting_in": 244819463, + "ending_in": 246019463 + }, + { + "start_timestamp": 1660992900000, + "end_timestamp": 1660994100000, + "starting_in": 248419463, + "ending_in": 249619463 + }, + { + "start_timestamp": 1660996500000, + "end_timestamp": 1660997700000, + "starting_in": 252019463, + "ending_in": 253219463 + }, + { + "start_timestamp": 1661000100000, + "end_timestamp": 1661001300000, + "starting_in": 255619463, + "ending_in": 256819463 + }, + { + "start_timestamp": 1661003700000, + "end_timestamp": 1661004900000, + "starting_in": 259219463, + "ending_in": 260419463 + }, + { + "start_timestamp": 1661007300000, + "end_timestamp": 1661008500000, + "starting_in": 262819463, + "ending_in": 264019463 + }, + { + "start_timestamp": 1661010900000, + "end_timestamp": 1661012100000, + "starting_in": 266419463, + "ending_in": 267619463 + }, + { + "start_timestamp": 1661014500000, + "end_timestamp": 1661015700000, + "starting_in": 270019463, + "ending_in": 271219463 + }, + { + "start_timestamp": 1661018100000, + "end_timestamp": 1661019300000, + "starting_in": 273619463, + "ending_in": 274819463 + }, + { + "start_timestamp": 1661021700000, + "end_timestamp": 1661022900000, + "starting_in": 277219463, + "ending_in": 278419463 + }, + { + "start_timestamp": 1661025300000, + "end_timestamp": 1661026500000, + "starting_in": 280819463, + "ending_in": 282019463 + }, + { + "start_timestamp": 1661028900000, + "end_timestamp": 1661030100000, + "starting_in": 284419463, + "ending_in": 285619463 + }, + { + "start_timestamp": 1661032500000, + "end_timestamp": 1661033700000, + "starting_in": 288019463, + "ending_in": 289219463 + }, + { + "start_timestamp": 1661036100000, + "end_timestamp": 1661037300000, + "starting_in": 291619463, + "ending_in": 292819463 + }, + { + "start_timestamp": 1661039700000, + "end_timestamp": 1661040900000, + "starting_in": 295219463, + "ending_in": 296419463 + }, + { + "start_timestamp": 1661043300000, + "end_timestamp": 1661044500000, + "starting_in": 298819463, + "ending_in": 300019463 + }, + { + "start_timestamp": 1661046900000, + "end_timestamp": 1661048100000, + "starting_in": 302419463, + "ending_in": 303619463 + }, + { + "start_timestamp": 1661050500000, + "end_timestamp": 1661051700000, + "starting_in": 306019463, + "ending_in": 307219463 + }, + { + "start_timestamp": 1661054100000, + "end_timestamp": 1661055300000, + "starting_in": 309619463, + "ending_in": 310819463 + }, + { + "start_timestamp": 1661057700000, + "end_timestamp": 1661058900000, + "starting_in": 313219463, + "ending_in": 314419463 + }, + { + "start_timestamp": 1661061300000, + "end_timestamp": 1661062500000, + "starting_in": 316819463, + "ending_in": 318019463 + }, + { + "start_timestamp": 1661064900000, + "end_timestamp": 1661066100000, + "starting_in": 320419463, + "ending_in": 321619463 + }, + { + "start_timestamp": 1661068500000, + "end_timestamp": 1661069700000, + "starting_in": 324019463, + "ending_in": 325219463 + }, + { + "start_timestamp": 1661072100000, + "end_timestamp": 1661073300000, + "starting_in": 327619463, + "ending_in": 328819463 + }, + { + "start_timestamp": 1661075700000, + "end_timestamp": 1661076900000, + "starting_in": 331219463, + "ending_in": 332419463 + }, + { + "start_timestamp": 1661079300000, + "end_timestamp": 1661080500000, + "starting_in": 334819463, + "ending_in": 336019463 + }, + { + "start_timestamp": 1661082900000, + "end_timestamp": 1661084100000, + "starting_in": 338419463, + "ending_in": 339619463 + }, + { + "start_timestamp": 1661086500000, + "end_timestamp": 1661087700000, + "starting_in": 342019463, + "ending_in": 343219463 + }, + { + "start_timestamp": 1661090100000, + "end_timestamp": 1661091300000, + "starting_in": 345619463, + "ending_in": 346819463 + }, + { + "start_timestamp": 1661093700000, + "end_timestamp": 1661094900000, + "starting_in": 349219463, + "ending_in": 350419463 + }, + { + "start_timestamp": 1661097300000, + "end_timestamp": 1661098500000, + "starting_in": 352819463, + "ending_in": 354019463 + }, + { + "start_timestamp": 1661100900000, + "end_timestamp": 1661102100000, + "starting_in": 356419463, + "ending_in": 357619463 + }, + { + "start_timestamp": 1661104500000, + "end_timestamp": 1661105700000, + "starting_in": 360019463, + "ending_in": 361219463 + }, + { + "start_timestamp": 1661108100000, + "end_timestamp": 1661109300000, + "starting_in": 363619463, + "ending_in": 364819463 + }, + { + "start_timestamp": 1661111700000, + "end_timestamp": 1661112900000, + "starting_in": 367219463, + "ending_in": 368419463 + }, + { + "start_timestamp": 1661115300000, + "end_timestamp": 1661116500000, + "starting_in": 370819463, + "ending_in": 372019463 + }, + { + "start_timestamp": 1661118900000, + "end_timestamp": 1661120100000, + "starting_in": 374419463, + "ending_in": 375619463 + }, + { + "start_timestamp": 1661122500000, + "end_timestamp": 1661123700000, + "starting_in": 378019463, + "ending_in": 379219463 + }, + { + "start_timestamp": 1661126100000, + "end_timestamp": 1661127300000, + "starting_in": 381619463, + "ending_in": 382819463 + }, + { + "start_timestamp": 1661129700000, + "end_timestamp": 1661130900000, + "starting_in": 385219463, + "ending_in": 386419463 + }, + { + "start_timestamp": 1661133300000, + "end_timestamp": 1661134500000, + "starting_in": 388819463, + "ending_in": 390019463 + }, + { + "start_timestamp": 1661136900000, + "end_timestamp": 1661138100000, + "starting_in": 392419463, + "ending_in": 393619463 + }, + { + "start_timestamp": 1661140500000, + "end_timestamp": 1661141700000, + "starting_in": 396019463, + "ending_in": 397219463 + }, + { + "start_timestamp": 1661144100000, + "end_timestamp": 1661145300000, + "starting_in": 399619463, + "ending_in": 400819463 + }, + { + "start_timestamp": 1661147700000, + "end_timestamp": 1661148900000, + "starting_in": 403219463, + "ending_in": 404419463 + }, + { + "start_timestamp": 1661151300000, + "end_timestamp": 1661152500000, + "starting_in": 406819463, + "ending_in": 408019463 + }, + { + "start_timestamp": 1661154900000, + "end_timestamp": 1661156100000, + "starting_in": 410419463, + "ending_in": 411619463 + }, + { + "start_timestamp": 1661158500000, + "end_timestamp": 1661159700000, + "starting_in": 414019463, + "ending_in": 415219463 + } + ] + }, + "ELECTION_BOOTH_OPENS": { + "name": "Election Booth Opens", + "duration": 1200000, + "events": [ + { + "start_timestamp": 1660932900000, + "end_timestamp": 1660934100000, + "starting_in": 188419463, + "ending_in": 189619463 + } + ] + }, + "ELECTION_OVER": { + "name": "Election Over", + "duration": 1200000, + "events": [ + { + "start_timestamp": 1660821300000, + "end_timestamp": 1660822500000, + "starting_in": 76819463, + "ending_in": 78019463 + } + ] + }, + "FALLEN_STAR_CULT": { + "name": "Cult of the Fallen Star", + "duration": 1500000, + "events": [ + { + "start_timestamp": 1660748100000, + "end_timestamp": 1660749600000, + "starting_in": 3619463, + "ending_in": 5119463 + }, + { + "start_timestamp": 1660760100000, + "end_timestamp": 1660761600000, + "starting_in": 15619463, + "ending_in": 17119463 + }, + { + "start_timestamp": 1660768500000, + "end_timestamp": 1660770000000, + "starting_in": 24019463, + "ending_in": 25519463 + }, + { + "start_timestamp": 1660776900000, + "end_timestamp": 1660778400000, + "starting_in": 32419463, + "ending_in": 33919463 + }, + { + "start_timestamp": 1660785300000, + "end_timestamp": 1660786800000, + "starting_in": 40819463, + "ending_in": 42319463 + }, + { + "start_timestamp": 1660797300000, + "end_timestamp": 1660798800000, + "starting_in": 52819463, + "ending_in": 54319463 + }, + { + "start_timestamp": 1660805700000, + "end_timestamp": 1660807200000, + "starting_in": 61219463, + "ending_in": 62719463 + }, + { + "start_timestamp": 1660814100000, + "end_timestamp": 1660815600000, + "starting_in": 69619463, + "ending_in": 71119463 + }, + { + "start_timestamp": 1660822500000, + "end_timestamp": 1660824000000, + "starting_in": 78019463, + "ending_in": 79519463 + }, + { + "start_timestamp": 1660834500000, + "end_timestamp": 1660836000000, + "starting_in": 90019463, + "ending_in": 91519463 + }, + { + "start_timestamp": 1660842900000, + "end_timestamp": 1660844400000, + "starting_in": 98419463, + "ending_in": 99919463 + }, + { + "start_timestamp": 1660851300000, + "end_timestamp": 1660852800000, + "starting_in": 106819463, + "ending_in": 108319463 + }, + { + "start_timestamp": 1660859700000, + "end_timestamp": 1660861200000, + "starting_in": 115219463, + "ending_in": 116719463 + }, + { + "start_timestamp": 1660871700000, + "end_timestamp": 1660873200000, + "starting_in": 127219463, + "ending_in": 128719463 + }, + { + "start_timestamp": 1660880100000, + "end_timestamp": 1660881600000, + "starting_in": 135619463, + "ending_in": 137119463 + }, + { + "start_timestamp": 1660888500000, + "end_timestamp": 1660890000000, + "starting_in": 144019463, + "ending_in": 145519463 + }, + { + "start_timestamp": 1660896900000, + "end_timestamp": 1660898400000, + "starting_in": 152419463, + "ending_in": 153919463 + }, + { + "start_timestamp": 1660908900000, + "end_timestamp": 1660910400000, + "starting_in": 164419463, + "ending_in": 165919463 + }, + { + "start_timestamp": 1660917300000, + "end_timestamp": 1660918800000, + "starting_in": 172819463, + "ending_in": 174319463 + }, + { + "start_timestamp": 1660925700000, + "end_timestamp": 1660927200000, + "starting_in": 181219463, + "ending_in": 182719463 + }, + { + "start_timestamp": 1660934100000, + "end_timestamp": 1660935600000, + "starting_in": 189619463, + "ending_in": 191119463 + }, + { + "start_timestamp": 1660946100000, + "end_timestamp": 1660947600000, + "starting_in": 201619463, + "ending_in": 203119463 + }, + { + "start_timestamp": 1660954500000, + "end_timestamp": 1660956000000, + "starting_in": 210019463, + "ending_in": 211519463 + }, + { + "start_timestamp": 1660962900000, + "end_timestamp": 1660964400000, + "starting_in": 218419463, + "ending_in": 219919463 + }, + { + "start_timestamp": 1660971300000, + "end_timestamp": 1660972800000, + "starting_in": 226819463, + "ending_in": 228319463 + }, + { + "start_timestamp": 1660983300000, + "end_timestamp": 1660984800000, + "starting_in": 238819463, + "ending_in": 240319463 + }, + { + "start_timestamp": 1660991700000, + "end_timestamp": 1660993200000, + "starting_in": 247219463, + "ending_in": 248719463 + }, + { + "start_timestamp": 1661000100000, + "end_timestamp": 1661001600000, + "starting_in": 255619463, + "ending_in": 257119463 + }, + { + "start_timestamp": 1661008500000, + "end_timestamp": 1661010000000, + "starting_in": 264019463, + "ending_in": 265519463 + }, + { + "start_timestamp": 1661020500000, + "end_timestamp": 1661022000000, + "starting_in": 276019463, + "ending_in": 277519463 + }, + { + "start_timestamp": 1661028900000, + "end_timestamp": 1661030400000, + "starting_in": 284419463, + "ending_in": 285919463 + }, + { + "start_timestamp": 1661037300000, + "end_timestamp": 1661038800000, + "starting_in": 292819463, + "ending_in": 294319463 + }, + { + "start_timestamp": 1661045700000, + "end_timestamp": 1661047200000, + "starting_in": 301219463, + "ending_in": 302719463 + }, + { + "start_timestamp": 1661057700000, + "end_timestamp": 1661059200000, + "starting_in": 313219463, + "ending_in": 314719463 + }, + { + "start_timestamp": 1661066100000, + "end_timestamp": 1661067600000, + "starting_in": 321619463, + "ending_in": 323119463 + }, + { + "start_timestamp": 1661074500000, + "end_timestamp": 1661076000000, + "starting_in": 330019463, + "ending_in": 331519463 + }, + { + "start_timestamp": 1661082900000, + "end_timestamp": 1661084400000, + "starting_in": 338419463, + "ending_in": 339919463 + }, + { + "start_timestamp": 1661094900000, + "end_timestamp": 1661096400000, + "starting_in": 350419463, + "ending_in": 351919463 + }, + { + "start_timestamp": 1661103300000, + "end_timestamp": 1661104800000, + "starting_in": 358819463, + "ending_in": 360319463 + }, + { + "start_timestamp": 1661111700000, + "end_timestamp": 1661113200000, + "starting_in": 367219463, + "ending_in": 368719463 + }, + { + "start_timestamp": 1661120100000, + "end_timestamp": 1661121600000, + "starting_in": 375619463, + "ending_in": 377119463 + }, + { + "start_timestamp": 1661132100000, + "end_timestamp": 1661133600000, + "starting_in": 387619463, + "ending_in": 389119463 + }, + { + "start_timestamp": 1661140500000, + "end_timestamp": 1661142000000, + "starting_in": 396019463, + "ending_in": 397519463 + }, + { + "start_timestamp": 1661148900000, + "end_timestamp": 1661150400000, + "starting_in": 404419463, + "ending_in": 405919463 + }, + { + "start_timestamp": 1661157300000, + "end_timestamp": 1661158800000, + "starting_in": 412819463, + "ending_in": 414319463 + } + ] + }, + "FEAR_MONGERER": { + "name": "Fear Mongerer", + "duration": 10800000, + "events": [ + { + "start_timestamp": 1661006100000, + "end_timestamp": 1661016900000, + "starting_in": 261619463, + "ending_in": 272419463 + } + ] + }, + "JACOBS_CONTEST": { + "name": "Jacob's Farming Contest", + "duration": 1200000, + "events": [ + { + "start_timestamp": 1660745700000, + "end_timestamp": 1660746900000, + "starting_in": 1219463, + "ending_in": 2419463 + }, + { + "start_timestamp": 1660749300000, + "end_timestamp": 1660750500000, + "starting_in": 4819463, + "ending_in": 6019463 + }, + { + "start_timestamp": 1660752900000, + "end_timestamp": 1660754100000, + "starting_in": 8419463, + "ending_in": 9619463 + }, + { + "start_timestamp": 1660756500000, + "end_timestamp": 1660757700000, + "starting_in": 12019463, + "ending_in": 13219463 + }, + { + "start_timestamp": 1660760100000, + "end_timestamp": 1660761300000, + "starting_in": 15619463, + "ending_in": 16819463 + }, + { + "start_timestamp": 1660763700000, + "end_timestamp": 1660764900000, + "starting_in": 19219463, + "ending_in": 20419463 + }, + { + "start_timestamp": 1660767300000, + "end_timestamp": 1660768500000, + "starting_in": 22819463, + "ending_in": 24019463 + }, + { + "start_timestamp": 1660770900000, + "end_timestamp": 1660772100000, + "starting_in": 26419463, + "ending_in": 27619463 + }, + { + "start_timestamp": 1660774500000, + "end_timestamp": 1660775700000, + "starting_in": 30019463, + "ending_in": 31219463 + }, + { + "start_timestamp": 1660778100000, + "end_timestamp": 1660779300000, + "starting_in": 33619463, + "ending_in": 34819463 + }, + { + "start_timestamp": 1660781700000, + "end_timestamp": 1660782900000, + "starting_in": 37219463, + "ending_in": 38419463 + }, + { + "start_timestamp": 1660785300000, + "end_timestamp": 1660786500000, + "starting_in": 40819463, + "ending_in": 42019463 + }, + { + "start_timestamp": 1660788900000, + "end_timestamp": 1660790100000, + "starting_in": 44419463, + "ending_in": 45619463 + }, + { + "start_timestamp": 1660792500000, + "end_timestamp": 1660793700000, + "starting_in": 48019463, + "ending_in": 49219463 + }, + { + "start_timestamp": 1660796100000, + "end_timestamp": 1660797300000, + "starting_in": 51619463, + "ending_in": 52819463 + }, + { + "start_timestamp": 1660799700000, + "end_timestamp": 1660800900000, + "starting_in": 55219463, + "ending_in": 56419463 + }, + { + "start_timestamp": 1660803300000, + "end_timestamp": 1660804500000, + "starting_in": 58819463, + "ending_in": 60019463 + }, + { + "start_timestamp": 1660806900000, + "end_timestamp": 1660808100000, + "starting_in": 62419463, + "ending_in": 63619463 + }, + { + "start_timestamp": 1660810500000, + "end_timestamp": 1660811700000, + "starting_in": 66019463, + "ending_in": 67219463 + }, + { + "start_timestamp": 1660814100000, + "end_timestamp": 1660815300000, + "starting_in": 69619463, + "ending_in": 70819463 + }, + { + "start_timestamp": 1660817700000, + "end_timestamp": 1660818900000, + "starting_in": 73219463, + "ending_in": 74419463 + }, + { + "start_timestamp": 1660821300000, + "end_timestamp": 1660822500000, + "starting_in": 76819463, + "ending_in": 78019463 + }, + { + "start_timestamp": 1660824900000, + "end_timestamp": 1660826100000, + "starting_in": 80419463, + "ending_in": 81619463 + }, + { + "start_timestamp": 1660828500000, + "end_timestamp": 1660829700000, + "starting_in": 84019463, + "ending_in": 85219463 + }, + { + "start_timestamp": 1660832100000, + "end_timestamp": 1660833300000, + "starting_in": 87619463, + "ending_in": 88819463 + }, + { + "start_timestamp": 1660835700000, + "end_timestamp": 1660836900000, + "starting_in": 91219463, + "ending_in": 92419463 + }, + { + "start_timestamp": 1660839300000, + "end_timestamp": 1660840500000, + "starting_in": 94819463, + "ending_in": 96019463 + }, + { + "start_timestamp": 1660842900000, + "end_timestamp": 1660844100000, + "starting_in": 98419463, + "ending_in": 99619463 + }, + { + "start_timestamp": 1660846500000, + "end_timestamp": 1660847700000, + "starting_in": 102019463, + "ending_in": 103219463 + }, + { + "start_timestamp": 1660850100000, + "end_timestamp": 1660851300000, + "starting_in": 105619463, + "ending_in": 106819463 + }, + { + "start_timestamp": 1660853700000, + "end_timestamp": 1660854900000, + "starting_in": 109219463, + "ending_in": 110419463 + }, + { + "start_timestamp": 1660857300000, + "end_timestamp": 1660858500000, + "starting_in": 112819463, + "ending_in": 114019463 + }, + { + "start_timestamp": 1660860900000, + "end_timestamp": 1660862100000, + "starting_in": 116419463, + "ending_in": 117619463 + }, + { + "start_timestamp": 1660864500000, + "end_timestamp": 1660865700000, + "starting_in": 120019463, + "ending_in": 121219463 + }, + { + "start_timestamp": 1660868100000, + "end_timestamp": 1660869300000, + "starting_in": 123619463, + "ending_in": 124819463 + }, + { + "start_timestamp": 1660871700000, + "end_timestamp": 1660872900000, + "starting_in": 127219463, + "ending_in": 128419463 + }, + { + "start_timestamp": 1660875300000, + "end_timestamp": 1660876500000, + "starting_in": 130819463, + "ending_in": 132019463 + }, + { + "start_timestamp": 1660878900000, + "end_timestamp": 1660880100000, + "starting_in": 134419463, + "ending_in": 135619463 + }, + { + "start_timestamp": 1660882500000, + "end_timestamp": 1660883700000, + "starting_in": 138019463, + "ending_in": 139219463 + }, + { + "start_timestamp": 1660886100000, + "end_timestamp": 1660887300000, + "starting_in": 141619463, + "ending_in": 142819463 + }, + { + "start_timestamp": 1660889700000, + "end_timestamp": 1660890900000, + "starting_in": 145219463, + "ending_in": 146419463 + }, + { + "start_timestamp": 1660893300000, + "end_timestamp": 1660894500000, + "starting_in": 148819463, + "ending_in": 150019463 + }, + { + "start_timestamp": 1660896900000, + "end_timestamp": 1660898100000, + "starting_in": 152419463, + "ending_in": 153619463 + }, + { + "start_timestamp": 1660900500000, + "end_timestamp": 1660901700000, + "starting_in": 156019463, + "ending_in": 157219463 + }, + { + "start_timestamp": 1660904100000, + "end_timestamp": 1660905300000, + "starting_in": 159619463, + "ending_in": 160819463 + }, + { + "start_timestamp": 1660907700000, + "end_timestamp": 1660908900000, + "starting_in": 163219463, + "ending_in": 164419463 + }, + { + "start_timestamp": 1660911300000, + "end_timestamp": 1660912500000, + "starting_in": 166819463, + "ending_in": 168019463 + }, + { + "start_timestamp": 1660914900000, + "end_timestamp": 1660916100000, + "starting_in": 170419463, + "ending_in": 171619463 + }, + { + "start_timestamp": 1660918500000, + "end_timestamp": 1660919700000, + "starting_in": 174019463, + "ending_in": 175219463 + }, + { + "start_timestamp": 1660922100000, + "end_timestamp": 1660923300000, + "starting_in": 177619463, + "ending_in": 178819463 + }, + { + "start_timestamp": 1660925700000, + "end_timestamp": 1660926900000, + "starting_in": 181219463, + "ending_in": 182419463 + }, + { + "start_timestamp": 1660929300000, + "end_timestamp": 1660930500000, + "starting_in": 184819463, + "ending_in": 186019463 + }, + { + "start_timestamp": 1660932900000, + "end_timestamp": 1660934100000, + "starting_in": 188419463, + "ending_in": 189619463 + }, + { + "start_timestamp": 1660936500000, + "end_timestamp": 1660937700000, + "starting_in": 192019463, + "ending_in": 193219463 + }, + { + "start_timestamp": 1660940100000, + "end_timestamp": 1660941300000, + "starting_in": 195619463, + "ending_in": 196819463 + }, + { + "start_timestamp": 1660943700000, + "end_timestamp": 1660944900000, + "starting_in": 199219463, + "ending_in": 200419463 + }, + { + "start_timestamp": 1660947300000, + "end_timestamp": 1660948500000, + "starting_in": 202819463, + "ending_in": 204019463 + }, + { + "start_timestamp": 1660950900000, + "end_timestamp": 1660952100000, + "starting_in": 206419463, + "ending_in": 207619463 + }, + { + "start_timestamp": 1660954500000, + "end_timestamp": 1660955700000, + "starting_in": 210019463, + "ending_in": 211219463 + }, + { + "start_timestamp": 1660958100000, + "end_timestamp": 1660959300000, + "starting_in": 213619463, + "ending_in": 214819463 + }, + { + "start_timestamp": 1660961700000, + "end_timestamp": 1660962900000, + "starting_in": 217219463, + "ending_in": 218419463 + }, + { + "start_timestamp": 1660965300000, + "end_timestamp": 1660966500000, + "starting_in": 220819463, + "ending_in": 222019463 + }, + { + "start_timestamp": 1660968900000, + "end_timestamp": 1660970100000, + "starting_in": 224419463, + "ending_in": 225619463 + }, + { + "start_timestamp": 1660972500000, + "end_timestamp": 1660973700000, + "starting_in": 228019463, + "ending_in": 229219463 + }, + { + "start_timestamp": 1660976100000, + "end_timestamp": 1660977300000, + "starting_in": 231619463, + "ending_in": 232819463 + }, + { + "start_timestamp": 1660979700000, + "end_timestamp": 1660980900000, + "starting_in": 235219463, + "ending_in": 236419463 + }, + { + "start_timestamp": 1660983300000, + "end_timestamp": 1660984500000, + "starting_in": 238819463, + "ending_in": 240019463 + }, + { + "start_timestamp": 1660986900000, + "end_timestamp": 1660988100000, + "starting_in": 242419463, + "ending_in": 243619463 + }, + { + "start_timestamp": 1660990500000, + "end_timestamp": 1660991700000, + "starting_in": 246019463, + "ending_in": 247219463 + }, + { + "start_timestamp": 1660994100000, + "end_timestamp": 1660995300000, + "starting_in": 249619463, + "ending_in": 250819463 + }, + { + "start_timestamp": 1660997700000, + "end_timestamp": 1660998900000, + "starting_in": 253219463, + "ending_in": 254419463 + }, + { + "start_timestamp": 1661001300000, + "end_timestamp": 1661002500000, + "starting_in": 256819463, + "ending_in": 258019463 + }, + { + "start_timestamp": 1661004900000, + "end_timestamp": 1661006100000, + "starting_in": 260419463, + "ending_in": 261619463 + }, + { + "start_timestamp": 1661008500000, + "end_timestamp": 1661009700000, + "starting_in": 264019463, + "ending_in": 265219463 + }, + { + "start_timestamp": 1661012100000, + "end_timestamp": 1661013300000, + "starting_in": 267619463, + "ending_in": 268819463 + }, + { + "start_timestamp": 1661015700000, + "end_timestamp": 1661016900000, + "starting_in": 271219463, + "ending_in": 272419463 + }, + { + "start_timestamp": 1661019300000, + "end_timestamp": 1661020500000, + "starting_in": 274819463, + "ending_in": 276019463 + }, + { + "start_timestamp": 1661022900000, + "end_timestamp": 1661024100000, + "starting_in": 278419463, + "ending_in": 279619463 + }, + { + "start_timestamp": 1661026500000, + "end_timestamp": 1661027700000, + "starting_in": 282019463, + "ending_in": 283219463 + }, + { + "start_timestamp": 1661030100000, + "end_timestamp": 1661031300000, + "starting_in": 285619463, + "ending_in": 286819463 + }, + { + "start_timestamp": 1661033700000, + "end_timestamp": 1661034900000, + "starting_in": 289219463, + "ending_in": 290419463 + }, + { + "start_timestamp": 1661037300000, + "end_timestamp": 1661038500000, + "starting_in": 292819463, + "ending_in": 294019463 + }, + { + "start_timestamp": 1661040900000, + "end_timestamp": 1661042100000, + "starting_in": 296419463, + "ending_in": 297619463 + }, + { + "start_timestamp": 1661044500000, + "end_timestamp": 1661045700000, + "starting_in": 300019463, + "ending_in": 301219463 + }, + { + "start_timestamp": 1661048100000, + "end_timestamp": 1661049300000, + "starting_in": 303619463, + "ending_in": 304819463 + }, + { + "start_timestamp": 1661051700000, + "end_timestamp": 1661052900000, + "starting_in": 307219463, + "ending_in": 308419463 + }, + { + "start_timestamp": 1661055300000, + "end_timestamp": 1661056500000, + "starting_in": 310819463, + "ending_in": 312019463 + }, + { + "start_timestamp": 1661058900000, + "end_timestamp": 1661060100000, + "starting_in": 314419463, + "ending_in": 315619463 + }, + { + "start_timestamp": 1661062500000, + "end_timestamp": 1661063700000, + "starting_in": 318019463, + "ending_in": 319219463 + }, + { + "start_timestamp": 1661066100000, + "end_timestamp": 1661067300000, + "starting_in": 321619463, + "ending_in": 322819463 + }, + { + "start_timestamp": 1661069700000, + "end_timestamp": 1661070900000, + "starting_in": 325219463, + "ending_in": 326419463 + }, + { + "start_timestamp": 1661073300000, + "end_timestamp": 1661074500000, + "starting_in": 328819463, + "ending_in": 330019463 + }, + { + "start_timestamp": 1661076900000, + "end_timestamp": 1661078100000, + "starting_in": 332419463, + "ending_in": 333619463 + }, + { + "start_timestamp": 1661080500000, + "end_timestamp": 1661081700000, + "starting_in": 336019463, + "ending_in": 337219463 + }, + { + "start_timestamp": 1661084100000, + "end_timestamp": 1661085300000, + "starting_in": 339619463, + "ending_in": 340819463 + }, + { + "start_timestamp": 1661087700000, + "end_timestamp": 1661088900000, + "starting_in": 343219463, + "ending_in": 344419463 + }, + { + "start_timestamp": 1661091300000, + "end_timestamp": 1661092500000, + "starting_in": 346819463, + "ending_in": 348019463 + }, + { + "start_timestamp": 1661094900000, + "end_timestamp": 1661096100000, + "starting_in": 350419463, + "ending_in": 351619463 + }, + { + "start_timestamp": 1661098500000, + "end_timestamp": 1661099700000, + "starting_in": 354019463, + "ending_in": 355219463 + }, + { + "start_timestamp": 1661102100000, + "end_timestamp": 1661103300000, + "starting_in": 357619463, + "ending_in": 358819463 + }, + { + "start_timestamp": 1661105700000, + "end_timestamp": 1661106900000, + "starting_in": 361219463, + "ending_in": 362419463 + }, + { + "start_timestamp": 1661109300000, + "end_timestamp": 1661110500000, + "starting_in": 364819463, + "ending_in": 366019463 + }, + { + "start_timestamp": 1661112900000, + "end_timestamp": 1661114100000, + "starting_in": 368419463, + "ending_in": 369619463 + }, + { + "start_timestamp": 1661116500000, + "end_timestamp": 1661117700000, + "starting_in": 372019463, + "ending_in": 373219463 + }, + { + "start_timestamp": 1661120100000, + "end_timestamp": 1661121300000, + "starting_in": 375619463, + "ending_in": 376819463 + }, + { + "start_timestamp": 1661123700000, + "end_timestamp": 1661124900000, + "starting_in": 379219463, + "ending_in": 380419463 + }, + { + "start_timestamp": 1661127300000, + "end_timestamp": 1661128500000, + "starting_in": 382819463, + "ending_in": 384019463 + }, + { + "start_timestamp": 1661130900000, + "end_timestamp": 1661132100000, + "starting_in": 386419463, + "ending_in": 387619463 + }, + { + "start_timestamp": 1661134500000, + "end_timestamp": 1661135700000, + "starting_in": 390019463, + "ending_in": 391219463 + }, + { + "start_timestamp": 1661138100000, + "end_timestamp": 1661139300000, + "starting_in": 393619463, + "ending_in": 394819463 + }, + { + "start_timestamp": 1661141700000, + "end_timestamp": 1661142900000, + "starting_in": 397219463, + "ending_in": 398419463 + }, + { + "start_timestamp": 1661145300000, + "end_timestamp": 1661146500000, + "starting_in": 400819463, + "ending_in": 402019463 + }, + { + "start_timestamp": 1661148900000, + "end_timestamp": 1661150100000, + "starting_in": 404419463, + "ending_in": 405619463 + }, + { + "start_timestamp": 1661152500000, + "end_timestamp": 1661153700000, + "starting_in": 408019463, + "ending_in": 409219463 + }, + { + "start_timestamp": 1661156100000, + "end_timestamp": 1661157300000, + "starting_in": 411619463, + "ending_in": 412819463 + }, + { + "start_timestamp": 1661159700000, + "end_timestamp": 1661160900000, + "starting_in": 415219463, + "ending_in": 416419463 + } + ] + }, + "JERRYS_WORKSHOP": { + "name": "Jerry's Workshop", + "duration": 37200000, + "events": [ + { + "start_timestamp": 1661124900000, + "end_timestamp": 1661162100000, + "starting_in": 380419463, + "ending_in": 417619463 + } + ] + }, + "NEW_YEAR_CELEBRATION": { + "name": "New Year Celebration", + "duration": 3600000, + "events": [ + { + "start_timestamp": 1661158500000, + "end_timestamp": 1661162100000, + "starting_in": 414019463, + "ending_in": 417619463 + } + ] + }, + "SEASON_OF_JERRY": { + "name": "Season of Jerry", + "duration": 3600000, + "events": [ + { + "start_timestamp": 1661152500000, + "end_timestamp": 1661156100000, + "starting_in": 408019463, + "ending_in": 411619463 + } + ] + }, + "SPOOKY_FESTIVAL": { + "name": "Spooky Festival", + "duration": 3600000, + "events": [ + { + "start_timestamp": 1661009700000, + "end_timestamp": 1661013300000, + "starting_in": 265219463, + "ending_in": 268819463 + } + ] + }, + "TRAVELING_ZOO": { + "name": "Traveling Zoo", + "duration": 3600000, + "events": [ + { + "start_timestamp": 1660827300000, + "end_timestamp": 1660830900000, + "starting_in": 82819463, + "ending_in": 86419463, + "pet": "Elephant" + }, + { + "start_timestamp": 1661050500000, + "end_timestamp": 1661054100000, + "starting_in": 306019463, + "ending_in": 309619463, + "pet": "Giraffe" + } + ] + } + } + } +} diff --git a/examples/fetchur/example_response_full.json b/examples/fetchur/example_response_full.json index a5f4a6c..905a89a 100644 --- a/examples/fetchur/example_response_full.json +++ b/examples/fetchur/example_response_full.json @@ -1,9 +1,10 @@ { "status": 200, "data": { - "name": "Rabbit's Foot", - "quantity": 3, - "text": "3x Rabbit's Feet", - "image": "https://sky.shiiyu.moe/item/RABBIT_FOOT" + "name": "Red Wool", + "quantity": 50, + "text": "50x Red Wool", + "image": "https://sky.shiiyu.moe/item/WOOL:14", + "description": "This item can be purchased from the Wool Merchant at the Builder's House in the Hub" } -} \ No newline at end of file +} diff --git a/examples/profile/example_response_full.json b/examples/profile/example_response_full.json index 5b93198..2dbe9b6 100644 --- a/examples/profile/example_response_full.json +++ b/examples/profile/example_response_full.json @@ -6,30 +6,30 @@ "name": "Watermelon", "id": "ea805d40e8284d8d8e64e9fc8ac301ca", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": false, "gamemode": "normal", - "last_save": 1658865721767, + "last_save": 1660392819654, "first_join": 1566480416181, "fairy_souls": 237, - "purse": 200011, - "bank": 75907706.06348844, + "purse": 1749878.1, + "bank": 72957706.06348844, "skills": { "farming": { - "totalXp": 51174926.84323144, - "xp": 51172425, - "level": 49, - "xpCurrent": 2501, - "xpForNext": 4000000, - "progress": 0.00062525, - "levelWithProgress": 49.00062525 + "totalXp": 81035102.22211151, + "xp": 79672425, + "level": 55, + "xpCurrent": 1362677, + "xpForNext": 5800000, + "progress": 0.23494431034482757, + "levelWithProgress": 55.23494431034483 }, "mining": { - "totalXp": 174237174.4224013, + "totalXp": 184370142.3149587, "xp": 111672425, "level": 60, - "xpCurrent": 62564749, + "xpCurrent": 72697717, "xpForNext": 0, "progress": 0, "levelWithProgress": 60 @@ -80,10 +80,10 @@ "levelWithProgress": 50 }, "carpentry": { - "totalXp": 59237690.54235503, + "totalXp": 59237692.846355036, "xp": 55172425, "level": 50, - "xpCurrent": 4065265, + "xpCurrent": 4065267, "xpForNext": 0, "progress": 0, "levelWithProgress": 50 @@ -107,45 +107,57 @@ "levelWithProgress": 11.895666666666667 }, "taming": { - "totalXp": 178548828.91809577, + "totalXp": 196668560.47704425, "xp": 55172425, "level": 50, - "xpCurrent": 123376403, + "xpCurrent": 141496135, "xpForNext": 0, "progress": 0, "levelWithProgress": 50 } }, "networth": { - "total_networth": 3299291337.0634885, - "purse": 200011, - "bank": 75907706.06348844, + "total_networth": 1607165321.1634884, + "purse": 1749878.1, + "bank": 72957706.06348844, "types": { "sacks": { - "total": 4802944, + "total": 10025131, "top_items": [ { "id": "null_sphere", "name": "Null Sphere", - "price": 4801771, + "price": 10004618, "count": 11141 }, + { + "id": "diamond", + "name": "Diamond", + "price": 16528, + "count": 2066 + }, + { + "id": "melon", + "name": "Melon", + "price": 2823, + "count": 2823 + }, { "id": "enchanted_ice", "name": "Enchanted Ice", - "price": 579, + "price": 554, "count": 1 }, { "id": "rotten_flesh", "name": "Rotten Flesh", - "price": 324, + "price": 405, "count": 81 }, { "id": "ender_stone", "name": "End Stone", - "price": 256, + "price": 192, "count": 64 }, { @@ -157,28 +169,28 @@ { "id": "carrot_item", "name": "Carrot", - "price": 6, + "price": 3, "count": 3 } ] }, "armor": { - "total": 72437890, + "total": 82539397, "top_items": [ { "id": "wise_wither_chestplate", "name": "Loving Storm's Chestplate ✪✪✪✪✪", - "price": 28105385, + "price": 27199161, "recomb": true, - "base": 14798000, + "base": 14100000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -190,17 +202,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -210,7 +222,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -246,20 +258,72 @@ ], "count": 1 }, + { + "id": "wither_goggles", + "name": "Necrotic Wither Goggles ✪✪✪✪✪", + "price": 21886914, + "recomb": true, + "base": 14000000, + "calculation": [ + { + "type": "ultimate_wisdom_5", + "value": 2447998.3 + }, + { + "type": "growth_5", + "value": 0 + }, + { + "type": "protection_5", + "value": 0 + }, + { + "type": "Recombobulator 3000", + "value": 4634540.8, + "count": 1 + }, + { + "type": "UNDEAD Essence", + "value": 27500.000000000004, + "count": 40 + }, + { + "type": "UNDEAD Essence", + "value": 55000.00000000001, + "count": 80 + }, + { + "type": "UNDEAD Essence", + "value": 103125.00000000001, + "count": 150 + }, + { + "type": "UNDEAD Essence", + "value": 206250.00000000003, + "count": 300 + }, + { + "type": "UNDEAD Essence", + "value": 412500.00000000006, + "count": 600 + } + ], + "count": 1 + }, { "id": "wise_wither_leggings", "name": "Necrotic Storm's Leggings ✪✪✪✪✪", - "price": 18820385, + "price": 19464160, "recomb": true, - "base": 6998000, + "base": 7849999, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -271,17 +335,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -291,7 +355,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -325,17 +389,17 @@ { "id": "wise_wither_boots", "name": "Necrotic Storm's Boots ✪✪✪✪✪", - "price": 13497385, + "price": 13989161, "recomb": true, - "base": 2500000, + "base": 3200000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -347,17 +411,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -367,7 +431,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -397,70 +461,18 @@ } ], "count": 1 - }, - { - "id": "wither_goggles", - "name": "Necrotic Wither Goggles ✪✪✪✪✪", - "price": 12014734, - "recomb": true, - "base": 3899999, - "calculation": [ - { - "type": "ultimate_wisdom_5", - "value": 2720000 - }, - { - "type": "growth_5", - "value": 0 - }, - { - "type": "protection_5", - "value": 0 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "UNDEAD Essence", - "value": 27500.000000000004, - "count": 40 - }, - { - "type": "UNDEAD Essence", - "value": 55000.00000000001, - "count": 80 - }, - { - "type": "UNDEAD Essence", - "value": 103125.00000000001, - "count": 150 - }, - { - "type": "UNDEAD Essence", - "value": 206250.00000000003, - "count": 300 - }, - { - "type": "UNDEAD Essence", - "value": 412500.00000000006, - "count": 600 - } - ], - "count": 1 } ] }, "wardrobe_inventory": { - "total": 319906257, + "total": 347097231, "top_items": [ { "id": "warden_helmet", "name": "Ancient Warden Helmet", - "price": 173732834, + "price": 166622386, "recomb": true, - "base": 167999996, + "base": 160999000, "calculation": [ { "type": "growth_5", @@ -472,17 +484,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], @@ -491,17 +503,17 @@ { "id": "power_wither_chestplate", "name": "Ancient Necron's Chestplate ✪✪✪✪✪", - "price": 31543337, + "price": 48337314, "recomb": true, - "base": 19900000, + "base": 36699000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -513,17 +525,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -557,17 +569,17 @@ { "id": "power_wither_leggings", "name": "Ancient Necron's Leggings ✪✪✪✪✪", - "price": 24158337, + "price": 41153314, "recomb": true, - "base": 14000000, + "base": 31000000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -579,17 +591,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -623,17 +635,17 @@ { "id": "power_wither_boots", "name": "Ancient Necron's Boots ✪✪✪✪✪", - "price": 18533337, + "price": 19327314, "recomb": true, - "base": 9200000, + "base": 9999000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -645,17 +657,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -687,19 +699,19 @@ "count": 1 }, { - "id": "final_destination_chestplate", - "name": "Ancient Final Destination Chestplate", - "price": 9830837, + "id": "final_destination_leggings", + "name": "Ancient Final Destination Leggings", + "price": 9536727, "recomb": true, - "base": 800000, + "base": 780000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -711,126 +723,109 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "final_destination_leggings", - "name": "Ancient Final Destination Leggings", - "price": 9820837, + "id": "final_destination_boots", + "name": "Ancient Final Destination Boots", + "price": 9506727, "recomb": true, - "base": 790000, + "base": 750000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "sorrow_chestplate", - "name": "Wise Sorrow Chestplate", - "price": 9550000, - "base": 9550000, - "calculation": [ - { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "final_destination_boots", - "name": "Ancient Final Destination Boots", - "price": 9510837, + "id": "final_destination_chestplate", + "name": "Ancient Final Destination Chestplate", + "price": 9456727, "recomb": true, - "base": 480000, + "base": 700000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "sorrow_leggings", - "name": "Wise Sorrow Leggings", - "price": 8600000, - "base": 8600000, + "id": "sorrow_chestplate", + "name": "Wise Sorrow Chestplate", + "price": 9000000, + "base": 9000000, "calculation": [ { "type": "protection_5", @@ -844,10 +839,10 @@ "count": 1 }, { - "id": "sorrow_helmet", - "name": "Wise Sorrow Helmet", - "price": 6080000, - "base": 6080000, + "id": "sorrow_leggings", + "name": "Wise Sorrow Leggings", + "price": 8724494, + "base": 8724494, "calculation": [ { "type": "protection_5", @@ -863,8 +858,8 @@ { "id": "sorrow_boots", "name": "Wise Sorrow Boots", - "price": 4950000, - "base": 4950000, + "price": 6515599, + "base": 6515599, "calculation": [ { "type": "growth_5", @@ -878,37 +873,35 @@ "count": 1 }, { - "id": "ranchers_boots", - "name": "Rancher's Boots", - "price": 2799000, - "base": 2799000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "tarantula_boots", - "name": "Fierce Tarantula Boots", - "price": 1099900, - "base": 1099900, + "id": "sorrow_helmet", + "name": "Wise Sorrow Helmet", + "price": 5900000, + "base": 5900000, "calculation": [ { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 } ], "count": 1 }, + { + "id": "ranchers_boots", + "name": "Rancher's Boots", + "price": 2383333, + "base": 2383333, + "calculation": [], + "count": 1 + }, { "id": "shark_scale_chestplate", "name": "Fierce Shark Scale Chestplate", - "price": 900000, - "base": 900000, + "price": 1000000, + "base": 1000000, "calculation": [ { "type": "protection_5", @@ -922,10 +915,10 @@ "count": 1 }, { - "id": "tarantula_chestplate", - "name": "Fierce Tarantula Chestplate", - "price": 880000, - "base": 880000, + "id": "tarantula_boots", + "name": "Fierce Tarantula Boots", + "price": 925000, + "base": 925000, "calculation": [ { "type": "growth_5", @@ -941,8 +934,8 @@ { "id": "tarantula_helmet", "name": "Fierce Tarantula Helmet", - "price": 818000, - "base": 818000, + "price": 916000, + "base": 916000, "calculation": [ { "type": "growth_5", @@ -956,10 +949,27 @@ "count": 1 }, { - "id": "tarantula_leggings", - "name": "Fierce Tarantula Leggings", - "price": 780000, - "base": 780000, + "id": "tarantula_chestplate", + "name": "Fierce Tarantula Chestplate", + "price": 898999, + "base": 898999, + "calculation": [ + { + "type": "growth_5", + "value": 0 + }, + { + "type": "protection_5", + "value": 0 + } + ], + "count": 1 + }, + { + "id": "bat_person_leggings", + "name": "Wise Bat Person Leggings", + "price": 707999, + "base": 707999, "calculation": [ { "type": "protection_5", @@ -975,8 +985,8 @@ { "id": "young_dragon_chestplate", "name": "Young Dragon Chestplate ✪✪✪✪✪", - "price": 736000, - "base": 230000, + "price": 706000, + "base": 200000, "calculation": [ { "type": "DRAGON Essence", @@ -1009,8 +1019,8 @@ { "id": "shark_scale_leggings", "name": "Fierce Shark Scale Leggings", - "price": 730000, - "base": 730000, + "price": 680000, + "base": 680000, "calculation": [ { "type": "protection_5", @@ -1024,27 +1034,27 @@ "count": 1 }, { - "id": "bat_person_boots", - "name": "Wise Bat Person Boots", - "price": 545000, - "base": 545000, + "id": "shark_scale_helmet", + "name": "Fierce Shark Scale Helmet", + "price": 590000, + "base": 590000, "calculation": [ { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 } ], "count": 1 }, { - "id": "shark_scale_helmet", - "name": "Fierce Shark Scale Helmet", - "price": 520000, - "base": 520000, + "id": "tarantula_leggings", + "name": "Fierce Tarantula Leggings", + "price": 575000, + "base": 575000, "calculation": [ { "type": "protection_5", @@ -1060,8 +1070,8 @@ { "id": "bat_person_helmet", "name": "Wise Bat Person Helmet", - "price": 499000, - "base": 499000, + "price": 509000, + "base": 509000, "calculation": [ { "type": "protection_5", @@ -1075,27 +1085,27 @@ "count": 1 }, { - "id": "bat_person_chestplate", - "name": "Wise Bat Person Chestplate", - "price": 499000, - "base": 499000, + "id": "bat_person_boots", + "name": "Wise Bat Person Boots", + "price": 505999, + "base": 505999, "calculation": [ { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 } ], "count": 1 }, { - "id": "bat_person_leggings", - "name": "Wise Bat Person Leggings", - "price": 499000, - "base": 499000, + "id": "shark_scale_boots", + "name": "Fierce Shark Scale Boots", + "price": 465000, + "base": 465000, "calculation": [ { "type": "protection_5", @@ -1109,30 +1119,10 @@ "count": 1 }, { - "id": "mineral_chestplate", - "name": "Mineral Chestplate", - "price": 489000, - "base": 489000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "mineral_leggings", - "name": "Mineral Leggings", - "price": 430000, - "base": 430000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "shark_scale_boots", - "name": "Fierce Shark Scale Boots", - "price": 370000, - "base": 370000, + "id": "bat_person_chestplate", + "name": "Wise Bat Person Chestplate", + "price": 435000, + "base": 435000, "calculation": [ { "type": "protection_5", @@ -1146,375 +1136,253 @@ "count": 1 }, { - "id": "mineral_helmet", - "name": "Mineral Helmet", - "price": 299000, - "base": 299000, - "calculation": [ - - ], + "id": "mineral_leggings", + "name": "Mineral Leggings", + "price": 330000, + "base": 330000, + "calculation": [], "count": 1 }, { - "id": "young_dragon_leggings", - "name": "Young Dragon Leggings", - "price": 225000, - "base": 225000, - "calculation": [ - - ], + "id": "mineral_helmet", + "name": "Mineral Helmet", + "price": 329000, + "base": 329000, + "calculation": [], "count": 1 }, { "id": "mineral_boots", "name": "Mineral Boots", - "price": 200000, - "base": 200000, - "calculation": [ - - ], + "price": 300000, + "base": 300000, + "calculation": [], + "count": 1 + }, + { + "id": "mineral_chestplate", + "name": "Mineral Chestplate", + "price": 245000, + "base": 245000, + "calculation": [], + "count": 1 + }, + { + "id": "young_dragon_leggings", + "name": "Young Dragon Leggings", + "price": 227500, + "base": 227500, + "calculation": [], "count": 1 }, { "id": "young_dragon_helmet", "name": "Young Dragon Helmet", - "price": 148000, - "base": 148000, - "calculation": [ - - ], + "price": 163874, + "base": 163874, + "calculation": [], "count": 1 }, { "id": "young_dragon_boots", "name": "Young Dragon Boots", - "price": 130000, - "base": 130000, - "calculation": [ - - ], + "price": 123922, + "base": 123922, + "calculation": [], "count": 1 } ] }, "inventory": { - "total": 2045432195, + "total": 115122704, "top_items": [ { - "id": "hyperion", - "name": "Withered Hyperion ✪✪✪✪✪", - "price": 1187500794, + "id": "theoretical_hoe_cane_3", + "name": "Blessed Turing Sugar Cane Hoe", + "price": 26597036, "recomb": true, - "base": 1150000000, + "base": 20000000, "calculation": [ { - "type": "ender_slayer_6", - "value": 1657500 - }, - { - "type": "vampirism_6", - "value": 306000 - }, - { - "type": "giant_killer_6", - "value": 595000 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "ultimate_wise_5", - "value": 2720000 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "lethality_6", - "value": 127500 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "The Art of War", - "value": 6090000, - "count": 1 + "type": "Farming for Dummies", + "value": 1725000, + "count": 5 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { - "type": "FINE JASPER Gem", - "value": 49366, - "count": 1 - }, - { - "type": "JASPER undefined Gem", - "value": 0, - "count": 1 - }, - { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 - }, - { - "type": "wither_blood Reforge", - "value": 2382620, - "count": 1 - }, - { - "type": "WITHER Essence", - "value": 330000, - "count": 150 - }, - { - "type": "WITHER Essence", - "value": 660000, - "count": 300 - }, - { - "type": "WITHER Essence", - "value": 1100000, - "count": 500 - }, - { - "type": "WITHER Essence", - "value": 1980000.0000000002, - "count": 900 - }, - { - "type": "WITHER Essence", - "value": 3300000.0000000005, - "count": 1500 - }, - { - "type": "SHADOW_WARP_SCROLL", - "value": 3800000, + "type": "blessed_fruit Reforge", + "value": 1099996, "count": 1 - }, + } + ], + "count": 1 + }, + { + "id": "enchanted_diamond_block", + "name": "Enchanted Diamond Block", + "price": 85604064, + "base": 13169856, + "calculation": [], + "count": 416 + }, + { + "id": "stonk_pickaxe", + "name": "Refined Stonk", + "price": 2682988, + "base": 1502999, + "calculation": [ { - "type": "WITHER_SHIELD_SCROLL", - "value": 4199000, - "count": 1 + "type": "efficiency_6", + "value": 0 }, { - "type": "IMPLOSION_SCROLL", - "value": 5600000, + "type": "refined_amber Reforge", + "value": 1179989, "count": 1 } ], "count": 1 }, { - "id": "terminator", - "name": "Hasty Terminator ➍⍟✪✪✪✪", - "price": 715911986, - "recomb": true, - "base": 549980000, + "id": "enchanted_diamond", + "name": "Enchanted Diamond", + "price": 213616, + "base": 86528, + "calculation": [], + "count": 158 + }, + { + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 25000, + "base": 12800, + "calculation": [], + "count": 125 + } + ] + }, + "enderchest": { + "total": 83460795, + "top_items": [ + { + "id": "reaper_sword", + "name": "Dirty Reaper Falchion", + "price": 14342620, + "base": 14000000, "calculation": [ { - "type": "vicious_5", - "value": 40205000 - }, - { - "type": "ultimate_soul_eater_5", - "value": 8921499.649999999 - }, - { - "type": "power_6", - "value": 340000 - }, - { - "type": "snipe_3", + "type": "giant_killer_5", "value": 0 }, { - "type": "cubism_5", + "type": "first_strike_4", "value": 0 }, - { - "type": "overload_5", - "value": 6114495.449999999 - }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { - "type": "Fuming Potato Books", - "value": 5369790, - "count": 5 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "first_master_star", - "value": 11950000, - "count": 1 - }, - { - "type": "second_master_star", - "value": 23400000, + "type": "dirt_bottle Reforge", + "value": 0, "count": 1 - }, + } + ], + "count": 1 + }, + { + "id": "emerald_blade", + "name": "Withered Emerald Blade", + "price": 12404000, + "base": 5500000, + "calculation": [ { - "type": "third_master_star", - "value": 29999999, - "count": 1 + "type": "ultimate_one_for_all_1", + "value": 4526250 }, { - "type": "fourth_master_star", - "value": 32688888, + "type": "wither_blood Reforge", + "value": 2377750, "count": 1 - }, - { - "type": "DRAGON Essence", - "value": 110000.00000000001, - "count": 100 - }, - { - "type": "DRAGON Essence", - "value": 220000.00000000003, - "count": 200 - }, - { - "type": "DRAGON Essence", - "value": 330000, - "count": 300 - }, - { - "type": "DRAGON Essence", - "value": 550000, - "count": 500 - }, - { - "type": "DRAGON Essence", - "value": 825000.0000000001, - "count": 750 - }, - { - "type": "DRAGON Essence", - "value": 110000.00000000001, - "count": 100 - }, - { - "type": "DRAGON Essence", - "value": 220000.00000000003, - "count": 200 - }, - { - "type": "DRAGON Essence", - "value": 330000, - "count": 300 - }, - { - "type": "DRAGON Essence", - "value": 550000, - "count": 500 - }, - { - "type": "DRAGON Essence", - "value": 825000.0000000001, - "count": 750 } ], "count": 1 }, { - "id": "atomsplit_katana", - "name": "Fabled Atomsplit Katana", - "price": 61935087, - "recomb": true, - "base": 48000000, + "id": "livid_dagger", + "name": "Fabled Livid Dagger ✪✪✪✪✪", + "price": 9713619, + "base": 7069000, "calculation": [ { - "type": "ultimate_swarm_3", - "value": 1983333.05 - }, - { - "type": "ender_slayer_6", - "value": 1657500 + "type": "ender_slayer_5", + "value": 0 }, { - "type": "giant_killer_6", - "value": 595000 + "type": "giant_killer_5", + "value": 0 }, { "type": "first_strike_4", "value": 0 }, { - "type": "sharpness_6", - "value": 892500 + "type": "sharpness_5", + "value": 0 }, { "type": "cubism_5", "value": 0 }, - { - "type": "lethality_6", - "value": 127500 - }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { - "type": "Fuming Potato Books", - "value": 5369790, - "count": 5 + "type": "dragon_claw Reforge", + "value": 409999, + "count": 1 }, { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 + "type": "WITHER Essence", + "value": 66000, + "count": 30 }, { - "type": "FINE JASPER Gem", - "value": 49366, - "count": 1 + "type": "WITHER Essence", + "value": 132000, + "count": 60 }, { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 + "type": "WITHER Essence", + "value": 264000, + "count": 120 }, { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 + "type": "WITHER Essence", + "value": 550000, + "count": 250 }, { - "type": "dragon_claw Reforge", - "value": 348628, - "count": 1 + "type": "WITHER Essence", + "value": 880000.0000000001, + "count": 400 } ], "count": 1 }, { - "id": "soul_whip", - "name": "Withered Soul Whip", - "price": 18462406, - "base": 8000000, + "id": "flower_of_truth", + "name": "Spicy Flower of Truth", + "price": 6085935, + "base": 5531666, "calculation": [ - { - "type": "ultimate_swarm_5", - "value": 7649916.7 - }, { "type": "ender_slayer_5", "value": 0 @@ -1523,6 +1391,14 @@ "type": "giant_killer_5", "value": 0 }, + { + "type": "first_strike_4", + "value": 0 + }, + { + "type": "ultimate_wise_5", + "value": 211649.15 + }, { "type": "sharpness_5", "value": 0 @@ -1533,106 +1409,57 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 - }, - { - "type": "wither_blood Reforge", - "value": 2382620, - "count": 1 } ], "count": 1 }, { - "id": "bait_ring", - "name": "Shaded Bait Ring", - "price": 17000000, - "base": 17000000, + "id": "mithril_drill_1", + "name": "Refined Mithril Drill SX-R226", + "price": 4969989, + "base": 3790000, "calculation": [ - - ], - "count": 1 - }, - { - "id": "summoning_ring", - "name": "Summoning Ring", - "price": 10555555, - "base": 10555555, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "aspect_of_the_void", - "name": "Heroic Aspect of the Void", - "price": 8420000, - "base": 5700000, - "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "ultimate_wise_5", - "value": 2720000 - }, { - "type": "sharpness_5", + "type": "efficiency_5", "value": 0 }, { - "type": "cubism_5", - "value": 0 + "type": "refined_amber Reforge", + "value": 1179989, + "count": 1 } ], "count": 1 }, { - "id": "wand_of_atonement", - "name": "Wand of Atonement", - "price": 6720000, + "id": "great_spook_staff", + "name": "Great Spook Staff", + "price": 4000000, "base": 4000000, + "calculation": [], + "count": 1 + }, + { + "id": "theoretical_hoe_warts_2", + "name": "Blessed Newton Nether Warts Hoe", + "price": 3599996, + "base": 2500000, "calculation": [ { - "type": "ultimate_wise_5", - "value": 2720000 + "type": "blessed_fruit Reforge", + "value": 1099996, + "count": 1 } ], "count": 1 }, - { - "id": "silverfish", - "name": "[Lvl 100] Legendary Silverfish", - "price": 4290000, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "id": "ocelot", - "name": "[Lvl 72] Epic Ocelot", - "price": 3909539, - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, - "count": 1 - }, { "id": "scorpion_foil", "name": "Spicy Thick Scorpion Foil", - "price": 2729869, - "base": 2299999, + "price": 3242620, + "base": 2900000, "calculation": [ { "type": "giant_killer_5", @@ -1644,131 +1471,57 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 } ], "count": 1 }, { - "id": "bat", - "name": "[Lvl 83] Epic Bat", - "price": 2431943, - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "id": "mana_flux_power_orb", - "name": "Mana Flux Power Orb", - "price": 1900000, - "base": 1900000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "treecapitator_axe", - "name": "Treecapitator", - "price": 1380000, - "base": 1380000, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "wand_of_restoration", - "name": "Wand of Restoration", - "price": 1000000, - "base": 1000000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "aatrox_batphone", - "name": "Maddox Batphone", - "price": 550000, - "base": 550000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "enchanted_book", - "name": "Ultimate Wise 1", - "price": 140000, - "base": 2750, + "id": "theoretical_hoe_carrot_2", + "name": "Blessed Gauss Carrot Hoe", + "price": 3099996, + "base": 2000000, "calculation": [ { - "type": "Enchantment Book", - "value": 140000 + "type": "blessed_fruit Reforge", + "value": 1099996, + "count": 1 } ], "count": 1 }, { - "id": "livid_fragment", - "name": "Livid Fragment", - "price": 97000, - "base": 97000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "piggy_bank", - "name": "Piggy Bank", - "price": 75000, - "base": 75000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "skeletor_leggings", - "name": "Titanic Skeletor Leggings", - "price": 37000, - "base": 37000, + "id": "stonk_pickaxe", + "name": "Refined Stonk", + "price": 2682988, + "base": 1502999, "calculation": [ { - "type": "protection_5", + "type": "efficiency_6", "value": 0 }, { - "type": "growth_5", - "value": 0 + "type": "refined_amber Reforge", + "value": 1179989, + "count": 1 } ], "count": 1 }, { - "id": "enchanted_book", - "name": "Rejuvenate 1", - "price": 293590, - "base": 2750, - "calculation": [ - { - "type": "Enchantment Book", - "value": 26690 - } - ], - "count": 11 + "id": "divan_fragment", + "name": "Divan Fragment", + "price": 2449833, + "base": 2449833, + "calculation": [], + "count": 3 }, { - "id": "zombie_knight_leggings", - "name": "Fierce Zombie Knight Leggings", - "price": 15000, - "base": 15000, + "id": "starred_bonzo_mask", + "name": "⚚ Fierce Bonzo's Mask ✪✪✪✪✪", + "price": 2418000, + "base": 2000000, "calculation": [ { "type": "protection_5", @@ -1777,147 +1530,159 @@ { "type": "growth_5", "value": 0 - } - ], - "count": 1 - }, - { - "id": "potion", - "name": "Health Potion VIII Splash Potion", - "price": 13000, - "base": 13000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "earth_shard", - "name": "Odd Earth Shard", - "price": 12000, - "base": 12000, - "calculation": [ + }, { - "type": "first_strike_4", - "value": 0 + "type": "WITHER Essence", + "value": 11000, + "count": 5 }, { - "type": "sharpness_5", - "value": 0 + "type": "WITHER Essence", + "value": 22000, + "count": 10 }, { - "type": "scavenger_5", - "value": 0 + "type": "WITHER Essence", + "value": 55000.00000000001, + "count": 25 }, { - "type": "giant_killer_5", - "value": 0 + "type": "WITHER Essence", + "value": 110000.00000000001, + "count": 50 + }, + { + "type": "WITHER Essence", + "value": 220000.00000000003, + "count": 100 } ], "count": 1 }, { - "id": "earth_shard", - "name": "Fast Earth Shard", - "price": 12000, - "base": 12000, + "id": "starred_venoms_touch", + "name": "⚚ Unreal Venom's Touch", + "price": 1942620, + "base": 1600000, "calculation": [ { - "type": "first_strike_4", + "type": "power_5", "value": 0 }, { - "type": "sharpness_5", + "type": "snipe_3", "value": 0 }, { - "type": "scavenger_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "zombie_soldier_leggings", - "name": "Titanic Zombie Soldier Leggings", - "price": 10000, - "base": 10000, - "calculation": [ - { - "type": "protection_5", + "type": "cubism_5", "value": 0 }, { - "type": "growth_5", - "value": 0 + "type": "Hot Potato Books", + "value": 342620, + "count": 10 } ], "count": 1 }, { - "id": "zombie_soldier_chestplate", - "name": "Light Zombie Soldier Chestplate", - "price": 10000, - "base": 10000, + "id": "refined_titanium_pickaxe", + "name": "Fleet Refined Titanium Pickaxe", + "price": 1600000, + "base": 1600000, "calculation": [ { - "type": "protection_5", + "type": "efficiency_5", "value": 0 }, { - "type": "growth_5", - "value": 0 + "type": "diamonite Reforge", + "value": 0, + "count": 1 } ], "count": 1 }, { - "id": "zombie_soldier_leggings", - "name": "Clean Zombie Soldier Leggings", - "price": 10000, - "base": 10000, + "id": "treecapitator_axe", + "name": "Treecapitator", + "price": 1574333, + "base": 1574333, "calculation": [ { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", + "type": "efficiency_5", "value": 0 } ], "count": 1 }, { - "id": "crypt_dreadlord_sword", - "name": "Legendary Dreadlord Sword", - "price": 5284, - "base": 5284, + "id": "control_switch", + "name": "Control Switch", + "price": 1095645, + "base": 1095645, + "calculation": [], + "count": 5 + }, + { + "id": "phantom_rod", + "name": "Sharp Phantom Rod", + "price": 999000, + "base": 999000, "calculation": [ { - "type": "first_strike_4", + "type": "ender_slayer_5", "value": 0 }, { - "type": "sharpness_5", + "type": "giant_killer_5", "value": 0 }, { - "type": "scavenger_5", + "type": "sharpness_5", "value": 0 }, { - "type": "giant_killer_5", + "type": "cubism_5", "value": 0 } ], "count": 1 }, { - "id": "crypt_bow", - "name": "Unreal Soulstealer Bow", - "price": 5038, - "base": 5038, + "id": "aspect_of_the_dragon", + "name": "Heroic Aspect of the Dragons", + "price": 927982, + "base": 716333, + "calculation": [ + { + "type": "ultimate_wise_5", + "value": 211649.15 + } + ], + "count": 1 + }, + { + "id": "ornate_zombie_sword", + "name": "Ornate Zombie Sword", + "price": 900000, + "base": 900000, + "calculation": [], + "count": 1 + }, + { + "id": "ftx_3070", + "name": "FTX 3070", + "price": 729171, + "base": 729171, + "calculation": [], + "count": 3 + }, + { + "id": "runaans_bow", + "name": "Unreal Runaan's Bow", + "price": 672620, + "base": 330000, "calculation": [ { "type": "power_5", @@ -1926,1539 +1691,1362 @@ { "type": "snipe_3", "value": 0 + }, + { + "type": "cubism_5", + "value": 0 + }, + { + "type": "Hot Potato Books", + "value": 342620, + "count": 10 } ], "count": 1 }, { - "id": "slime_hat", - "name": "Slime Hat", - "price": 100, - "base": 100, - "calculation": [ - - ], + "id": "dungeon_chest_key", + "name": "Dungeon Chest Key", + "price": 625000, + "base": 625000, + "calculation": [], + "count": 5 + }, + { + "id": "electron_transmitter", + "name": "Electron Transmitter", + "price": 597584, + "base": 597584, + "calculation": [], + "count": 8 + }, + { + "id": "synthetic_heart", + "name": "Synthetic Heart", + "price": 542098, + "base": 542098, + "calculation": [], + "count": 2 + }, + { + "id": "sorrow", + "name": "Sorrow", + "price": 390000, + "base": 390000, + "calculation": [], "count": 1 - } - ] - }, - "enderchest": { - "total": 92272474, - "top_items": [ + }, { - "id": "theoretical_hoe_cane_3", - "name": "Blessed Turing Sugar Cane Hoe", - "price": 26575198, - "recomb": true, - "base": 20000000, - "calculation": [ - { - "type": "Farming for Dummies", - "value": 1745000, - "count": 5 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } - ], + "id": "jungle_key", + "name": "Jungle Key", + "price": 338716, + "base": 338716, + "calculation": [], + "count": 4 + }, + { + "id": "crystal_fragment", + "name": "Crystal Fragment", + "price": 184175, + "base": 184175, + "calculation": [], "count": 1 }, { - "id": "livid_dagger", - "name": "Fabled Livid Dagger ✪✪✪✪✪", - "price": 9870496, - "base": 7199998, - "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "dragon_claw Reforge", - "value": 348628, - "count": 1 - }, - { - "type": "WITHER Essence", - "value": 66000, - "count": 30 - }, - { - "type": "WITHER Essence", - "value": 132000, - "count": 60 - }, - { - "type": "WITHER Essence", - "value": 264000, - "count": 120 - }, - { - "type": "WITHER Essence", - "value": 550000, - "count": 250 - }, - { - "type": "WITHER Essence", - "value": 880000.0000000001, - "count": 400 - } - ], + "id": "blaze_belt", + "name": "Blaze Belt", + "price": 180000, + "base": 180000, + "calculation": [], "count": 1 }, { - "id": "emerald_blade", - "name": "Withered Emerald Blade", - "price": 7678174, - "base": 375000, - "calculation": [ - { - "type": "ultimate_one_for_all_1", - "value": 4920554.8 - }, - { - "type": "wither_blood Reforge", - "value": 2382620, - "count": 1 - } - ], + "id": "jerry_staff", + "name": "Jerry-chine Gun", + "price": 170000, + "base": 170000, + "calculation": [], "count": 1 }, { - "id": "flower_of_truth", - "name": "Spicy Flower of Truth", - "price": 7449870, - "base": 4300000, - "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "ultimate_wise_5", - "value": 2720000 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } - ], + "id": "superlite_motor", + "name": "Superlite Motor", + "price": 149499, + "base": 149499, + "calculation": [], + "count": 3 + }, + { + "id": "prehistoric_egg", + "name": "Prehistoric Egg", + "price": 90000, + "base": 90000, + "calculation": [], "count": 1 }, { - "id": "mithril_drill_1", - "name": "Refined Mithril Drill SX-R226", - "price": 4199999, - "base": 3200000, + "id": "goldor_the_fish", + "name": "Goldor the Fish", + "price": 75000, + "base": 75000, + "calculation": [], + "count": 1 + }, + { + "id": "sludge_juice", + "name": "Sludge Juice", + "price": 259584, + "base": 64896, + "calculation": [], + "count": 256 + }, + { + "id": "goblin_egg", + "name": "Goblin Egg", + "price": 260598, + "base": 53456, + "calculation": [], + "count": 78 + }, + { + "id": "magical_water_bucket", + "name": "Magical Water Bucket", + "price": 82372, + "base": 41186, + "calculation": [], + "count": 2 + }, + { + "id": "sludge_juice", + "name": "Sludge Juice", + "price": 28392, + "base": 28392, + "calculation": [], + "count": 28 + }, + { + "id": "helix", + "name": "Helix", + "price": 7500, + "base": 7500, + "calculation": [], + "count": 1 + }, + { + "id": "wishing_compass", + "name": "Wishing Compass", + "price": 12118, + "base": 6059, + "calculation": [], + "count": 2 + }, + { + "id": "grappling_hook", + "name": "Grappling Hook", + "price": 6000, + "base": 6000, + "calculation": [], + "count": 1 + }, + { + "id": "yoggie", + "name": "Yoggie", + "price": 5984, + "base": 5984, + "calculation": [], + "count": 32 + }, + { + "id": "rogue_sword", + "name": "Rogue Sword", + "price": 5000, + "base": 5000, + "calculation": [], + "count": 1 + }, + { + "id": "jungle_pickaxe", + "name": "Jungle Pickaxe", + "price": 122, + "base": 122, "calculation": [ { "type": "efficiency_5", "value": 0 - }, - { - "type": "refined_amber Reforge", - "value": 999999, - "count": 1 } ], "count": 1 }, { - "id": "theoretical_hoe_warts_2", - "name": "Blessed Newton Nether Warts Hoe", - "price": 3612338, - "base": 2500000, - "calculation": [ - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } - ], + "id": "rabbit_hat", + "name": "Rabbit Hat", + "price": 50, + "base": 50, + "calculation": [], "count": 1 }, { - "id": "aspect_of_the_dragon", - "name": "Heroic Aspect of the Dragons", - "price": 3370000, - "base": 650000, + "id": "gold_pickaxe", + "name": "Golden Pickaxe", + "price": 35, + "base": 35, "calculation": [ { - "type": "ultimate_wise_5", - "value": 2720000 + "type": "efficiency_5", + "value": 0 } ], "count": 1 }, { - "id": "reaper_sword", - "name": "Dirty Reaper Falchion", - "price": 3209870, - "base": 2780000, - "calculation": [ - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "dirt_bottle Reforge", - "value": 0, - "count": 1 - } - ], + "id": "defuse_kit", + "name": "Defuse Kit", + "price": 1, + "base": 1, + "calculation": [], + "count": 1 + } + ] + }, + "personal_vault": { + "total": 499301, + "top_items": [ + { + "id": "livid_fragment", + "name": "Livid Fragment", + "price": 151454, + "recomb": true, + "base": 151454, + "calculation": [], "count": 1 }, { - "id": "theoretical_hoe_carrot_2", - "name": "Blessed Gauss Carrot Hoe", - "price": 3112338, - "base": 2000000, - "calculation": [ - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } - ], + "id": "giant_fragment_boulder", + "name": "Jolly Pink Rock", + "price": 82142, + "recomb": true, + "base": 82142, + "calculation": [], "count": 1 }, { - "id": "great_spook_staff", - "name": "Great Spook Staff", - "price": 2890000, - "base": 2890000, - "calculation": [ - - ], + "id": "potion", + "name": "Blindness II Potion", + "price": 50097, + "base": 50097, + "calculation": [], "count": 1 }, { - "id": "scorpion_foil", - "name": "Spicy Thick Scorpion Foil", - "price": 2729869, - "base": 2299999, - "calculation": [ - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } - ], + "id": "rune", + "name": "◆ Pestilence Rune I", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "divan_fragment", - "name": "Divan Fragment", - "price": 2550000, - "base": 2550000, - "calculation": [ - - ], - "count": 3 + "id": "rune", + "name": "◆ Snake Rune I", + "price": 47500, + "base": 47500, + "calculation": [], + "count": 1 }, { - "id": "starred_venoms_touch", - "name": "⚚ Unreal Venom's Touch", - "price": 1929870, - "base": 1500000, - "calculation": [ - { - "type": "power_5", - "value": 0 - }, - { - "type": "snipe_3", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } - ], + "id": "beheaded_horror", + "name": "Beheaded Horror", + "price": 30000, + "base": 30000, + "calculation": [], "count": 1 }, { - "id": "starred_bonzo_mask", - "name": "⚚ Fierce Bonzo's Mask ✪✪✪✪✪", - "price": 1640222, - "base": 1222222, - "calculation": [ - { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", - "value": 0 - }, - { - "type": "WITHER Essence", - "value": 11000, - "count": 5 - }, - { - "type": "WITHER Essence", - "value": 22000, - "count": 10 - }, - { - "type": "WITHER Essence", - "value": 55000.00000000001, - "count": 25 - }, - { - "type": "WITHER Essence", - "value": 110000.00000000001, - "count": 50 - }, - { - "type": "WITHER Essence", - "value": 220000.00000000003, - "count": 100 - } - ], + "id": "revenant_catalyst", + "name": "Revenant Catalyst", + "price": 27000, + "base": 27000, + "calculation": [], "count": 1 }, { - "id": "stonk_pickaxe", - "name": "Refined Stonk", - "price": 1597999, - "base": 598000, - "calculation": [ - { - "type": "efficiency_6", - "value": 0 - }, - { - "type": "refined_amber Reforge", - "value": 999999, - "count": 1 - } - ], + "id": "foul_flesh", + "name": "Foul Flesh", + "price": 26299, + "base": 26299, + "calculation": [], "count": 1 }, { - "id": "treecapitator_axe", - "name": "Treecapitator", - "price": 1380000, - "base": 1380000, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], + "id": "spiders_den_top_travel_scroll", + "name": "Travel Scroll to Spider's Den Top of Nest", + "price": 13700, + "recomb": true, + "base": 13700, + "calculation": [], "count": 1 }, { - "id": "refined_titanium_pickaxe", - "name": "Fleet Refined Titanium Pickaxe", - "price": 1200000, - "base": 1200000, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - }, - { - "type": "diamonite Reforge", - "value": 0, - "count": 1 - } - ], + "id": "jerry_stone", + "name": "Jerry Stone", + "price": 11685, + "base": 11685, + "calculation": [], "count": 1 }, { - "id": "phantom_rod", - "name": "Sharp Phantom Rod", - "price": 750000, - "base": 750000, + "id": "undead_catalyst", + "name": "Undead Catalyst", + "price": 7000, + "base": 7000, + "calculation": [], + "count": 1 + }, + { + "id": "holy_fragment", + "name": "Holy Dragon Fragment", + "price": 2527, + "recomb": true, + "base": 2527, + "calculation": [], + "count": 1 + }, + { + "id": "arachne_keeper_fragment", + "name": "Arachne's Keeper Fragment", + "price": 1373, + "recomb": true, + "base": 1373, + "calculation": [], + "count": 1 + }, + { + "id": "sludge_juice", + "name": "Sludge Juice", + "price": 1014, + "recomb": true, + "base": 1014, + "calculation": [], + "count": 1 + }, + { + "id": "wool", + "name": "White Wool", + "price": 10, + "recomb": true, + "base": 10, + "calculation": [], + "count": 1 + } + ] + }, + "storage": { + "total": 310116638, + "top_items": [ + { + "id": "gemstone_gauntlet", + "name": "Auspicious Gemstone Gauntlet", + "price": 70941999, + "base": 60000000, "calculation": [ { - "type": "ender_slayer_5", + "type": "efficiency_5", "value": 0 }, { - "type": "giant_killer_5", - "value": 0 + "type": "pristine_4", + "value": 8159150 }, { - "type": "sharpness_5", - "value": 0 + "type": "FINE JADE Gem", + "value": 19381, + "count": 1 }, { - "type": "cubism_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "runaans_bow", - "name": "Unreal Runaan's Bow", - "price": 739870, - "base": 310000, - "calculation": [ + "type": "FINE AMBER Gem", + "value": 24860, + "count": 1 + }, { - "type": "power_5", - "value": 0 + "type": "FINE SAPPHIRE Gem", + "value": 19330, + "count": 1 }, { - "type": "snipe_3", - "value": 0 + "type": "FINE AMETHYST Gem", + "value": 139999, + "count": 1 }, { - "type": "cubism_5", - "value": 0 + "type": "FLAWLESS TOPAZ Gem", + "value": 2031481, + "count": 1 }, { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 + "type": "rock_gemstone Reforge", + "value": 547798, + "count": 1 } ], "count": 1 }, { - "id": "electron_transmitter", - "name": "Electron Transmitter", - "price": 703992, - "base": 703992, + "id": "rod_of_the_sea", + "name": "Salty Rod of the Sea", + "price": 15634540, + "recomb": true, + "base": 11000000, "calculation": [ - + { + "type": "Recombobulator 3000", + "value": 4634540.8, + "count": 1 + } ], - "count": 8 + "count": 1 }, { - "id": "ornate_zombie_sword", - "name": "Ornate Zombie Sword", - "price": 694000, - "base": 694000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ White Spiral Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "dungeon_chest_key", - "name": "Dungeon Chest Key", - "price": 560000, - "base": 560000, - "calculation": [ - - ], - "count": 5 + "id": "rune", + "name": "◆ Hot Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "control_switch", - "name": "Control Switch", - "price": 550000, - "base": 550000, - "calculation": [ - - ], - "count": 5 + "id": "rune", + "name": "◆ Zap Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "synthetic_heart", - "name": "Synthetic Heart", - "price": 399998, - "base": 399998, - "calculation": [ - - ], - "count": 2 + "id": "rune", + "name": "◆ Hearts Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "sorrow", - "name": "Sorrow", - "price": 385000, - "base": 385000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Snow Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "jungle_pickaxe", - "name": "Jungle Pickaxe", - "price": 309000, - "base": 309000, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], - "count": 1 + "id": "rune", + "name": "◆ Lava Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "jerry_staff", - "name": "Jerry-chine Gun", - "price": 300000, - "base": 300000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Gem Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "ftx_3070", - "name": "FTX 3070", - "price": 269994, - "base": 269994, - "calculation": [ - - ], - "count": 3 + "id": "rune", + "name": "◆ Hot Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "superlite_motor", - "name": "Superlite Motor", - "price": 210000, - "base": 210000, - "calculation": [ - - ], - "count": 3 + "id": "rune", + "name": "◆ Sparkling Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [], + "count": 64 }, { - "id": "blaze_belt", - "name": "Blaze Belt", - "price": 200000, - "base": 200000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Blood Rune I", + "price": 6080000, + "base": 3040000, + "calculation": [], + "count": 128 }, { - "id": "jungle_key", - "name": "Jungle Key", - "price": 199996, - "base": 199996, - "calculation": [ - - ], - "count": 4 + "id": "rune", + "name": "◆ White Spiral Rune I", + "price": 2945000, + "base": 2945000, + "calculation": [], + "count": 62 }, { - "id": "crystal_fragment", - "name": "Crystal Fragment", - "price": 99999, - "base": 99999, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Sparkling Rune I", + "price": 2375000, + "base": 2375000, + "calculation": [], + "count": 50 + }, + { + "id": "block_zapper", + "name": "Block Zapper", + "price": 2150000, + "base": 2150000, + "calculation": [], "count": 1 }, { - "id": "goblin_egg", - "name": "Goblin Egg", - "price": 329152, - "base": 82288, - "calculation": [ - - ], - "count": 64 + "id": "jumbo_backpack", + "name": "Jumbo Backpack", + "price": 4200000, + "base": 2100000, + "calculation": [], + "count": 2 }, { - "id": "sludge_juice", - "name": "Sludge Juice", - "price": 321536, - "base": 80384, - "calculation": [ - - ], - "count": 256 + "id": "rabbit", + "name": "[Lvl 57] Legendary Rabbit", + "price": 1811997, + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "goblin_egg", - "name": "Goblin Egg", - "price": 72002, - "base": 72002, - "calculation": [ - - ], - "count": 14 + "id": "enchanted_melon_block", + "name": "Enchanted Melon Block", + "price": 106475200, + "base": 1638080, + "calculation": [], + "count": 4160 }, { - "id": "goldor_the_fish", - "name": "Goldor the Fish", - "price": 58000, - "base": 58000, + "id": "rune", + "name": "◆ Zap Rune I", + "price": 1615000, + "base": 1615000, + "calculation": [], + "count": 34 + }, + { + "id": "stonk_pickaxe", + "name": "Fruitful Stonk", + "price": 1502999, + "base": 1502999, "calculation": [ - + { + "type": "efficiency_6", + "value": 0 + }, + { + "type": "onyx Reforge", + "value": 0, + "count": 1 + } ], "count": 1 }, { - "id": "prehistoric_egg", - "name": "Prehistoric Egg", - "price": 50000, - "base": 50000, + "id": "aspect_of_the_dragon", + "name": "Fabled Aspect of the Dragons", + "price": 1468952, + "base": 716333, "calculation": [ - + { + "type": "ender_slayer_5", + "value": 0 + }, + { + "type": "giant_killer_5", + "value": 0 + }, + { + "type": "first_strike_4", + "value": 0 + }, + { + "type": "sharpness_5", + "value": 0 + }, + { + "type": "cubism_5", + "value": 0 + }, + { + "type": "Hot Potato Books", + "value": 342620, + "count": 10 + }, + { + "type": "dragon_claw Reforge", + "value": 409999, + "count": 1 + } ], "count": 1 }, { - "id": "sludge_juice", - "name": "Sludge Juice", - "price": 35168, - "base": 35168, - "calculation": [ - - ], - "count": 28 + "id": "rune", + "name": "◆ Clouds Rune I", + "price": 1377500, + "base": 1377500, + "calculation": [], + "count": 29 }, { - "id": "yoggie", - "name": "Yoggie", - "price": 18048, - "base": 18048, - "calculation": [ - - ], - "count": 32 + "id": "rune", + "name": "◆ Golden Rune I", + "price": 1235000, + "base": 1235000, + "calculation": [], + "count": 26 }, { - "id": "helix", - "name": "Helix", - "price": 9000, - "base": 9000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Snow Rune I", + "price": 1187500, + "base": 1187500, + "calculation": [], + "count": 25 }, { - "id": "grappling_hook", - "name": "Grappling Hook", - "price": 6000, - "base": 6000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Hearts Rune I", + "price": 1045000, + "base": 1045000, + "calculation": [], + "count": 22 }, { - "id": "rogue_sword", - "name": "Rogue Sword", - "price": 5000, - "base": 5000, - "calculation": [ - - ], + "id": "pet_item_saddle", + "name": "Saddle", + "price": 1000000, + "base": 1000000, + "calculation": [], "count": 1 }, { - "id": "magical_water_bucket", - "name": "Magical Water Bucket", - "price": 400, - "base": 200, - "calculation": [ - - ], - "count": 2 + "id": "rune", + "name": "◆ Pestilence Rune I", + "price": 950000, + "base": 950000, + "calculation": [], + "count": 20 }, { - "id": "rabbit_hat", - "name": "Rabbit Hat", - "price": 50, - "base": 50, - "calculation": [ - - ], + "id": "bat_artifact", + "name": "Strong Bat Artifact", + "price": 909000, + "base": 909000, + "calculation": [], "count": 1 }, { - "id": "gold_pickaxe", - "name": "Golden Pickaxe", - "price": 22, - "base": 22, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], - "count": 1 + "id": "dark_orb", + "name": "Dark Orb", + "price": 873047, + "base": 873047, + "calculation": [], + "count": 1 }, { - "id": "defuse_kit", - "name": "Defuse Kit", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "skeleton_horse", + "name": "[Lvl 10] Legendary Skeleton Horse", + "price": 789356, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "wishing_compass", - "name": "Wishing Compass", - "price": 2, - "base": 1, - "calculation": [ - - ], - "count": 2 - } - ] - }, - "personal_vault": { - "total": 256642, - "top_items": [ - { - "id": "livid_fragment", - "name": "Livid Fragment", - "price": 97000, - "recomb": true, - "base": 97000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Lightning Rune I", + "price": 712500, + "base": 712500, + "calculation": [], + "count": 15 }, { - "id": "foul_flesh", - "name": "Foul Flesh", - "price": 46089, - "base": 46089, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Lava Rune I", + "price": 712500, + "base": 712500, + "calculation": [], + "count": 15 }, { - "id": "beheaded_horror", - "name": "Beheaded Horror", - "price": 30000, - "base": 30000, - "calculation": [ - - ], - "count": 1 + "id": "rune", + "name": "◆ Spirit Rune I", + "price": 712500, + "base": 712500, + "calculation": [], + "count": 15 }, { - "id": "giant_fragment_boulder", - "name": "Jolly Pink Rock", - "price": 25000, - "recomb": true, - "base": 25000, - "calculation": [ - - ], - "count": 1 + "id": "magma_fish_silver", + "name": "Silver Magmafish", + "price": 1339776, + "base": 669888, + "calculation": [], + "count": 128 }, { - "id": "spiders_den_top_travel_scroll", - "name": "Travel Scroll to Spider's Den Top of Nest", - "price": 15000, - "recomb": true, - "base": 15000, - "calculation": [ - - ], - "count": 1 + "id": "attribute_shard", + "name": "Attribute Shard", + "price": 24336760, + "base": 608419, + "calculation": [], + "count": 40 }, { - "id": "potion", - "name": "Blindness II Potion", - "price": 13000, - "base": 13000, - "calculation": [ - - ], + "id": "lucky_hoof", + "name": "Forceful Lucky Hoof", + "price": 600000, + "base": 600000, + "calculation": [], "count": 1 }, { - "id": "jerry_stone", - "name": "Jerry Stone", - "price": 11697, - "base": 11697, - "calculation": [ - - ], + "id": "lucky_hoof", + "name": "Lucky Hoof", + "price": 600000, + "base": 600000, + "calculation": [], "count": 1 }, { - "id": "revenant_catalyst", - "name": "Revenant Catalyst", - "price": 10000, - "base": 10000, - "calculation": [ - - ], - "count": 1 + "id": "magma_fish_silver", + "name": "Silver Magmafish", + "price": 533817, + "base": 533817, + "calculation": [], + "count": 51 }, { - "id": "undead_catalyst", - "name": "Undead Catalyst", - "price": 3000, - "base": 3000, - "calculation": [ - - ], + "id": "ragnarock_axe", + "name": "Ragnarock Axe", + "price": 500000, + "base": 500000, + "calculation": [], "count": 1 }, { - "id": "holy_fragment", - "name": "Holy Dragon Fragment", - "price": 2791, - "recomb": true, - "base": 2791, - "calculation": [ - - ], + "id": "experience_artifact", + "name": "Strong Experience Artifact", + "price": 475000, + "base": 475000, + "calculation": [], "count": 1 }, { - "id": "arachne_keeper_fragment", - "name": "Arachne's Keeper Fragment", - "price": 1679, - "recomb": true, - "base": 1679, - "calculation": [ - - ], + "id": "mineral_talisman", + "name": "Shaded Mineral Talisman", + "price": 474999, + "base": 474999, + "calculation": [], "count": 1 }, { - "id": "sludge_juice", - "name": "Sludge Juice", - "price": 1256, - "recomb": true, - "base": 1256, - "calculation": [ - - ], - "count": 1 + "id": "greater_backpack", + "name": "Greater Backpack", + "price": 7520000, + "base": 470000, + "calculation": [], + "count": 16 }, { - "id": "wool", - "name": "White Wool", - "price": 128, - "recomb": true, - "base": 128, - "calculation": [ - - ], + "id": "the_shredder", + "name": "Salty Shredder", + "price": 450000, + "base": 450000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Pestilence Rune I", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "bee", + "name": "[Lvl 35] Epic Bee", + "price": 405900, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ Snake Rune I", - "price": 1, - "base": 1, + "id": "enchanted_book", + "name": "Strong Mana 2", + "price": 399999, + "base": 10000, "calculation": [ - + { + "type": "Enchantment Book", + "value": 399999 + } ], "count": 1 - } - ] - }, - "storage": { - "total": 82235158, - "top_items": [ + }, { - "id": "gemstone_gauntlet", - "name": "Auspicious Gemstone Gauntlet", - "price": 26508105, - "base": 15144444, + "id": "runaans_bow", + "name": "Unreal Runaan's Bow", + "price": 398524, + "base": 330000, "calculation": [ { - "type": "efficiency_5", + "type": "snipe_3", "value": 0 }, { - "type": "pristine_4", - "value": 8414150 - }, - { - "type": "FINE JADE Gem", - "value": 19502, - "count": 1 - }, - { - "type": "FINE AMBER Gem", - "value": 25873, - "count": 1 - }, - { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 - }, - { - "type": "FINE AMETHYST Gem", - "value": 25597, - "count": 1 + "type": "power_5", + "value": 0 }, { - "type": "FLAWLESS TOPAZ Gem", - "value": 2148967, - "count": 1 + "type": "cubism_5", + "value": 0 }, { - "type": "rock_gemstone Reforge", - "value": 709994, - "count": 1 + "type": "Hot Potato Books", + "value": 68524, + "count": 2 } ], "count": 1 }, { - "id": "rod_of_the_sea", - "name": "Salty Rod of the Sea", - "price": 11590360, - "recomb": true, - "base": 7000000, - "calculation": [ - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - } - ], - "count": 1 + "id": "rune", + "name": "◆ Couture Rune I", + "price": 380000, + "base": 380000, + "calculation": [], + "count": 8 }, { - "id": "jumbo_backpack", - "name": "Jumbo Backpack", - "price": 4970000, - "base": 2485000, - "calculation": [ - - ], - "count": 2 + "id": "rune", + "name": "◆ Wake Rune I", + "price": 332500, + "base": 332500, + "calculation": [], + "count": 7 }, { - "id": "rabbit", - "name": "[Lvl 57] Legendary Rabbit", - "price": 2163679, - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "id": "rune", + "name": "◆ Magical Rune I", + "price": 332500, + "base": 332500, + "calculation": [], + "count": 7 + }, + { + "id": "ghoul", + "name": "[Lvl 20] Legendary Ghoul", + "price": 330026, + "heldItem": "PET_ITEM_COMBAT_SKILL_BOOST_COMMON", "candyUsed": 0, "isPet": true, "count": 1 }, { - "id": "stonk_pickaxe", - "name": "Refined Stonk", - "price": 1597999, - "base": 598000, - "calculation": [ - { - "type": "efficiency_6", - "value": 0 - }, - { - "type": "refined_amber Reforge", - "value": 999999, - "count": 1 - } - ], + "id": "sea_creature_artifact", + "name": "Shaded Sea Creature Artifact", + "price": 318000, + "base": 318000, + "calculation": [], "count": 1 }, { - "id": "block_zapper", - "name": "Block Zapper", - "price": 1580000, - "base": 1580000, - "calculation": [ - - ], + "id": "treasure_talisman", + "name": "Shaded Treasure Talisman", + "price": 311571, + "base": 311571, + "calculation": [], "count": 1 }, { - "id": "aspect_of_the_dragon", - "name": "Fabled Aspect of the Dragons", - "price": 1428498, - "base": 650000, - "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", + "id": "rune", + "name": "◆ Gem Rune I", + "price": 285000, + "base": 285000, + "calculation": [], + "count": 6 + }, + { + "id": "rune", + "name": "◆ Rainbow Rune I", + "price": 285000, + "base": 285000, + "calculation": [], + "count": 6 + }, + { + "id": "moogma_leggings", + "name": "Moogma Leggings", + "price": 520680, + "base": 260340, + "calculation": [], + "count": 2 + }, + { + "id": "grand_exp_bottle", + "name": "Grand Experience Bottle", + "price": 235072, + "base": 235072, + "calculation": [], + "count": 64 + }, + { + "id": "enchanted_melon_block", + "name": "Enchanted Melon Block", + "price": 230355, + "base": 230355, + "calculation": [], + "count": 9 + }, + { + "id": "titanic_exp_bottle", + "name": "Titanic Experience Bottle", + "price": 210841, + "base": 210841, + "calculation": [], + "count": 1 + }, + { + "id": "transmission_tuner", + "name": "Transmission Tuner", + "price": 5600000, + "base": 200000, + "calculation": [], + "count": 28 + }, + { + "id": "bat_the_fish", + "name": "Bat the Fish", + "price": 200000, + "base": 200000, + "calculation": [], + "count": 1 + }, + { + "id": "pet_item_flying_pig", + "name": "Flying Pig", + "price": 195000, + "base": 195000, + "calculation": [], + "count": 1 + }, + { + "id": "crystal_fragment", + "name": "Crystal Fragment", + "price": 184175, + "base": 184175, + "calculation": [], + "count": 1 + }, + { + "id": "artifact_potion_affinity", + "name": "Shaded Potion Affinity Artifact", + "price": 179000, + "base": 179000, + "calculation": [], + "count": 1 + }, + { + "id": "aspect_of_the_end", + "name": "Spicy Aspect of the End", + "price": 178156, + "base": 178156, + "calculation": [ + { + "type": "ender_slayer_5", "value": 0 }, { - "type": "sharpness_5", + "type": "giant_killer_5", "value": 0 }, { - "type": "cubism_5", + "type": "first_strike_4", "value": 0 }, { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 + "type": "sharpness_5", + "value": 0 }, { - "type": "dragon_claw Reforge", - "value": 348628, - "count": 1 + "type": "cubism_5", + "value": 0 } ], "count": 1 }, { - "id": "bat_artifact", - "name": "Strong Bat Artifact", - "price": 890000, - "base": 890000, - "calculation": [ - - ], + "id": "slug_boots", + "name": "Slug Boots", + "price": 176933, + "base": 176933, + "calculation": [], "count": 1 }, { - "id": "ghoul", - "name": "[Lvl 20] Legendary Ghoul", - "price": 848453, - "heldItem": "PET_ITEM_COMBAT_SKILL_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, + "id": "blade_of_the_volcano", + "name": "Blade of the Volcano", + "price": 150000, + "base": 150000, + "calculation": [], + "count": 1 + }, + { + "id": "enchanted_dandelion", + "name": "Enchanted Dandelion", + "price": 147200, + "base": 147200, + "calculation": [], + "count": 40 + }, + { + "id": "rune", + "name": "◆ Blood Rune III", + "price": 142500, + "base": 142500, + "calculation": [], + "count": 3 + }, + { + "id": "feather_artifact", + "name": "Shaded Feather Artifact", + "price": 129000, + "base": 129000, + "calculation": [], + "count": 1 + }, + { + "id": "haste_ring", + "name": "Shaded Haste Ring", + "price": 122500, + "base": 122500, + "calculation": [], "count": 1 }, { "id": "magma_fish_silver", "name": "Silver Magmafish", - "price": 1439488, - "base": 719744, - "calculation": [ - - ], - "count": 128 + "price": 104670, + "base": 104670, + "calculation": [], + "count": 10 }, { - "id": "dark_orb", - "name": "Dark Orb", - "price": 629994, - "base": 629994, - "calculation": [ - - ], + "id": "hoe_of_greater_tilling", + "name": "Hoe of Greater Tilling", + "price": 100000, + "base": 100000, + "calculation": [], "count": 1 }, { - "id": "bee", - "name": "[Lvl 35] Epic Bee", - "price": 604827, - "candyUsed": 0, - "isPet": true, + "id": "water_hydra_head", + "name": "Water Hydra Head", + "price": 100000, + "base": 100000, + "calculation": [], "count": 1 }, { - "id": "stonk_pickaxe", - "name": "Fruitful Stonk", - "price": 598000, - "base": 598000, - "calculation": [ - { - "type": "efficiency_6", - "value": 0 - }, - { - "type": "onyx Reforge", - "value": 0, - "count": 1 - } - ], + "id": "pet_item_combat_skill_boost_uncommon", + "name": "Combat Exp Boost", + "price": 198998, + "base": 99499, + "calculation": [], + "count": 2 + }, + { + "id": "jerry_box_blue", + "name": "Blue Jerry Box", + "price": 99224, + "base": 99224, + "calculation": [], "count": 1 }, { - "id": "magma_fish_silver", - "name": "Silver Magmafish", - "price": 573546, - "base": 573546, - "calculation": [ - - ], - "count": 51 + "id": "rune", + "name": "◆ Snake Rune I", + "price": 95000, + "base": 95000, + "calculation": [], + "count": 2 }, { - "id": "skeleton_horse", - "name": "[Lvl 10] Legendary Skeleton Horse", - "price": 557678, - "candyUsed": 0, - "isPet": true, + "id": "rune", + "name": "◆ Couture Rune I", + "price": 95000, + "base": 95000, + "calculation": [], + "count": 2 + }, + { + "id": "diver_fragment", + "name": "Emperor's Skull", + "price": 91428, + "base": 91428, + "calculation": [], "count": 1 }, { - "id": "mineral_talisman", - "name": "Shaded Mineral Talisman", - "price": 466000, - "base": 466000, - "calculation": [ - - ], + "id": "healing_ring", + "name": "Shaded Healing Ring", + "price": 84000, + "base": 84000, + "calculation": [], "count": 1 }, { - "id": "greater_backpack", - "name": "Greater Backpack", - "price": 7024000, - "base": 439000, - "calculation": [ - - ], - "count": 16 + "id": "enderman_cortex_rewriter", + "name": "Enderman Cortex Rewriter", + "price": 160000, + "base": 80000, + "calculation": [], + "count": 2 + }, + { + "id": "enchanted_dandelion", + "name": "Enchanted Dandelion", + "price": 77280, + "base": 77280, + "calculation": [], + "count": 21 }, { "id": "enchanted_book", - "name": "Strong Mana 2", - "price": 400000, - "base": 2750, + "name": "Critical 6", + "price": 1087500, + "base": 10000, "calculation": [ { "type": "Enchantment Book", - "value": 400000 + "value": 72500 } ], + "count": 15 + }, + { + "id": "magma_rod", + "name": "Magma Rod", + "price": 59000, + "base": 59000, + "calculation": [], "count": 1 }, { - "id": "experience_artifact", - "name": "Strong Experience Artifact", - "price": 400000, - "base": 400000, - "calculation": [ - - ], + "id": "fire_talisman", + "name": "Shaded Fire Talisman", + "price": 52900, + "base": 52900, + "calculation": [], "count": 1 }, { - "id": "runaans_bow", - "name": "Unreal Runaan's Bow", - "price": 395974, - "base": 310000, + "id": "enchanted_book", + "name": "Hardened Mana 1", + "price": 50952, + "base": 10000, "calculation": [ { - "type": "snipe_3", - "value": 0 - }, - { - "type": "power_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 85974, - "count": 2 + "type": "Enchantment Book", + "value": 50952 } ], "count": 1 }, { - "id": "lucky_hoof", - "name": "Forceful Lucky Hoof", - "price": 333000, - "base": 333000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Rainbow Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "lucky_hoof", - "name": "Lucky Hoof", - "price": 333000, - "base": 333000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Smokey Rune I", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "transmission_tuner", - "name": "Transmission Tuner", - "price": 9100000, - "base": 325000, - "calculation": [ - - ], - "count": 28 + "id": "rune", + "name": "◆ Hearts Rune II", + "price": 47500, + "base": 47500, + "calculation": [], + "count": 1 }, { - "id": "treasure_talisman", - "name": "Shaded Treasure Talisman", - "price": 284999, - "base": 284999, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Rainbow Rune III", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "titanic_exp_bottle", - "name": "Titanic Experience Bottle", - "price": 284881, - "base": 284881, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Fire Spiral Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "grand_exp_bottle", - "name": "Grand Experience Bottle", - "price": 252672, - "base": 252672, - "calculation": [ - - ], - "count": 64 - }, - { - "id": "moogma_leggings", - "name": "Moogma Leggings", - "price": 440000, - "base": 220000, - "calculation": [ - - ], - "count": 2 - }, - { - "id": "ragnarock_axe", - "name": "Ragnarock Axe", - "price": 219000, - "base": 219000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "blade_of_the_volcano", - "name": "Blade of the Volcano", - "price": 210000, - "base": 210000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "water_hydra_head", - "name": "Water Hydra Head", - "price": 200000, - "base": 200000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Lightning Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "sea_creature_artifact", - "name": "Shaded Sea Creature Artifact", - "price": 200000, - "base": 200000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ White Spiral Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "aspect_of_the_end", - "name": "Spicy Aspect of the End", - "price": 180000, - "base": 180000, - "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - } - ], + "id": "rune", + "name": "◆ Zap Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "artifact_potion_affinity", - "name": "Shaded Potion Affinity Artifact", - "price": 160000, - "base": 160000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Hot Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "jerry_box_blue", - "name": "Blue Jerry Box", - "price": 142297, - "base": 142297, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Blood Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "slug_boots", - "name": "Slug Boots", - "price": 140000, - "base": 140000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Ice Rune I", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "the_shredder", - "name": "Salty Shredder", - "price": 140000, - "base": 140000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Redstone Rune I", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "haste_ring", - "name": "Shaded Haste Ring", - "price": 137000, - "base": 137000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Endersnake Rune I", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "diver_fragment", - "name": "Emperor's Skull", - "price": 120000, - "base": 120000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Sparkling Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "feather_artifact", - "name": "Shaded Feather Artifact", - "price": 114000, - "base": 114000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Clouds Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "magma_fish_silver", - "name": "Silver Magmafish", - "price": 112460, - "base": 112460, - "calculation": [ - - ], - "count": 10 - }, - { - "id": "hoe_of_greater_tilling", - "name": "Hoe of Greater Tilling", - "price": 100000, - "base": 100000, - "calculation": [ - - ], + "id": "rune", + "name": "◆ Golden Rune II", + "price": 47500, + "base": 47500, + "calculation": [], "count": 1 }, { - "id": "pet_item_flying_pig", - "name": "Flying Pig", - "price": 100000, - "base": 100000, - "calculation": [ - - ], - "count": 1 + "id": "grand_exp_bottle", + "name": "Grand Experience Bottle", + "price": 44076, + "base": 44076, + "calculation": [], + "count": 12 }, { - "id": "enderman_cortex_rewriter", - "name": "Enderman Cortex Rewriter", - "price": 200000, - "base": 100000, - "calculation": [ - - ], - "count": 2 + "id": "enchanted_poppy", + "name": "Enchanted Poppy", + "price": 41472, + "base": 41472, + "calculation": [], + "count": 8 }, { - "id": "crystal_fragment", - "name": "Crystal Fragment", - "price": 99999, - "base": 99999, - "calculation": [ - - ], + "id": "fish_affinity_talisman", + "name": "Shaded Fish Affinity Talisman", + "price": 35315, + "base": 35315, + "calculation": [], "count": 1 }, { - "id": "pet_item_combat_skill_boost_uncommon", - "name": "Combat Exp Boost", - "price": 180000, - "base": 90000, - "calculation": [ - - ], - "count": 2 - }, - { - "id": "magma_rod", - "name": "Magma Rod", - "price": 90000, - "base": 90000, - "calculation": [ - - ], + "id": "emerald_ring", + "name": "Forceful Emerald Ring", + "price": 35000, + "base": 35000, + "calculation": [], "count": 1 }, { - "id": "healing_ring", - "name": "Shaded Healing Ring", - "price": 85000, - "base": 85000, - "calculation": [ - - ], + "id": "sinful_dice", + "name": "Sinful Dice", + "price": 30000, + "base": 30000, + "calculation": [], "count": 1 }, { - "id": "enchanted_book", - "name": "Critical 6", - "price": 1185000, - "base": 2750, - "calculation": [ - { - "type": "Enchantment Book", - "value": 79000 - } - ], - "count": 15 - }, - { - "id": "enchanted_book", - "name": "Hardened Mana 1", - "price": 74000, - "base": 2750, - "calculation": [ - { - "type": "Enchantment Book", - "value": 74000 - } - ], + "id": "lava_talisman", + "name": "Shaded Lava Talisman", + "price": 29000, + "base": 29000, + "calculation": [], "count": 1 }, { "id": "silent_death", "name": "Odd Silent Death", - "price": 69000, - "base": 69000, + "price": 25999, + "base": 25999, "calculation": [ { "type": "first_strike_4", @@ -3480,239 +3068,109 @@ "count": 1 }, { - "id": "pet_item_saddle", - "name": "Saddle", - "price": 59000, - "base": 59000, - "calculation": [ - - ], + "id": "vaccine_talisman", + "name": "Shaded Vaccine Talisman", + "price": 25012, + "base": 25012, + "calculation": [], "count": 1 }, { - "id": "fish_affinity_talisman", - "name": "Shaded Fish Affinity Talisman", - "price": 50000, - "base": 50000, + "id": "enchanted_book", + "name": "Mana Steal 1", + "price": 1025000, + "base": 10000, "calculation": [ - + { + "type": "Enchantment Book", + "value": 25000 + } ], - "count": 1 + "count": 41 }, { - "id": "bat_the_fish", - "name": "Bat the Fish", - "price": 50000, - "base": 50000, - "calculation": [ - - ], - "count": 1 + "id": "enchanted_pork", + "name": "Enchanted Pork", + "price": 24640, + "base": 24640, + "calculation": [], + "count": 16 }, { - "id": "grand_exp_bottle", - "name": "Grand Experience Bottle", - "price": 47376, - "base": 47376, + "id": "enchanted_book", + "name": "Corruption 1", + "price": 195000, + "base": 10000, "calculation": [ - + { + "type": "Enchantment Book", + "value": 15000 + } ], - "count": 12 + "count": 13 }, { - "id": "emerald_ring", - "name": "Forceful Emerald Ring", - "price": 38000, - "base": 38000, - "calculation": [ - - ], - "count": 1 + "id": "enchanted_potato", + "name": "Enchanted Potato", + "price": 13760, + "base": 13760, + "calculation": [], + "count": 64 }, { - "id": "fire_talisman", - "name": "Shaded Fire Talisman", - "price": 32400, - "base": 32400, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "sinful_dice", - "name": "Sinful Dice", - "price": 29999, - "base": 29999, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "lava_talisman", - "name": "Shaded Lava Talisman", - "price": 29000, - "base": 29000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "enchanted_dandelion", - "name": "Enchanted Dandelion", - "price": 25600, - "base": 25600, - "calculation": [ - - ], - "count": 40 - }, - { - "id": "enchanted_book", - "name": "Corruption 1", - "price": 325000, - "base": 2750, - "calculation": [ - { - "type": "Enchantment Book", - "value": 25000 - } - ], - "count": 13 - }, - { - "id": "enchanted_book", - "name": "Mana Steal 1", - "price": 1025000, - "base": 2750, - "calculation": [ - { - "type": "Enchantment Book", - "value": 25000 - } - ], - "count": 41 - }, - { - "id": "enchanted_poppy", - "name": "Enchanted Poppy", - "price": 23040, - "base": 23040, - "calculation": [ - - ], - "count": 8 - }, - { - "id": "enchanted_pork", - "name": "Enchanted Pork", - "price": 22576, - "base": 22576, - "calculation": [ - - ], - "count": 16 - }, - { - "id": "enchanted_potato", - "name": "Enchanted Potato", - "price": 16256, - "base": 16256, - "calculation": [ - - ], - "count": 64 - }, - { - "id": "enchanted_dandelion", - "name": "Enchanted Dandelion", - "price": 13440, - "base": 13440, - "calculation": [ - - ], - "count": 21 - }, - { - "id": "night_vision_charm", - "name": "Shaded Night Vision Charm", - "price": 12000, - "base": 12000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "attribute_shard", - "name": "Attribute Shard", - "price": 399960, - "base": 9999, - "calculation": [ - - ], - "count": 40 + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 12800, + "base": 12800, + "calculation": [], + "count": 64 }, { "id": "farmer_orb", "name": "Shaded Farmer Orb", "price": 9500, "base": 9500, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { - "id": "snow_shovel", - "name": "Snow Shovel", - "price": 9000, - "base": 9000, - "calculation": [ - - ], + "id": "purple_candy", + "name": "Purple Candy", + "price": 8008, + "base": 8008, + "calculation": [], "count": 1 }, { "id": "magma_fish", "name": "Magmafish", - "price": 7872, - "base": 7872, - "calculation": [ - - ], + "price": 7424, + "base": 7424, + "calculation": [], "count": 64 }, { - "id": "purple_candy", - "name": "Purple Candy", - "price": 7826, - "base": 7826, - "calculation": [ - - ], + "id": "wishing_compass", + "name": "Wishing Compass", + "price": 6059, + "base": 6059, + "calculation": [], "count": 1 }, { "id": "arachne_keeper_fragment", "name": "Arachne's Keeper Fragment", - "price": 6716, - "base": 6716, - "calculation": [ - - ], + "price": 5492, + "base": 5492, + "calculation": [], "count": 4 }, { - "id": "gravity_talisman", - "name": "Shaded Gravity Talisman", - "price": 4320, - "base": 4320, - "calculation": [ - - ], + "id": "snow_shovel", + "name": "Snow Shovel", + "price": 5000, + "base": 5000, + "calculation": [], "count": 1 }, { @@ -3720,52 +3178,55 @@ "name": "Sword of Bad Health", "price": 8000, "base": 4000, - "calculation": [ - - ], + "calculation": [], "count": 2 }, { "id": "grand_exp_bottle", "name": "Grand Experience Bottle", - "price": 3948, - "base": 3948, - "calculation": [ - - ], + "price": 3673, + "base": 3673, + "calculation": [], "count": 1 }, { "id": "green_candy", "name": "Green Candy", - "price": 3344, - "base": 3344, - "calculation": [ - - ], + "price": 3256, + "base": 3256, + "calculation": [], "count": 4 }, + { + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 3000, + "base": 3000, + "calculation": [], + "count": 15 + }, { "id": "endstone_rose", "name": "Endstone Rose", "price": 3000, "base": 3000, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { - "id": "fractured_mithril_pickaxe", - "name": "Fractured Mithril Pickaxe", + "id": "coin_talisman", + "name": "Shaded Talisman of Coins", + "price": 2578, + "base": 2578, + "calculation": [], + "count": 1 + }, + { + "id": "night_vision_charm", + "name": "Shaded Night Vision Charm", "price": 2500, "base": 2500, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], + "calculation": [], "count": 1 }, { @@ -3773,59 +3234,71 @@ "name": "Shaded Magnetic Talisman", "price": 2000, "base": 2000, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { - "id": "enchanted_coal", - "name": "Enchanted Coal", - "price": 3030, - "base": 1515, - "calculation": [ - - ], - "count": 2 + "id": "hard_glass", + "name": "Hard Glass", + "price": 2000, + "base": 2000, + "calculation": [], + "count": 1 }, { "id": "enchanted_pork", "name": "Enchanted Pork", - "price": 1411, - "base": 1411, - "calculation": [ - - ], + "price": 1540, + "base": 1540, + "calculation": [], "count": 1 }, { - "id": "enchanted_glowstone_dust", - "name": "Enchanted Glowstone Dust", - "price": 2508, - "base": 1254, - "calculation": [ - - ], - "count": 2 + "id": "pork", + "name": "Raw Porkchop", + "price": 1380, + "base": 1380, + "calculation": [], + "count": 20 }, { "id": "ancient_claw", "name": "Ancient Claw", - "price": 1195, - "base": 1195, - "calculation": [ - - ], + "price": 1135, + "base": 1135, + "calculation": [], "count": 5 }, + { + "id": "enchanted_coal", + "name": "Enchanted Coal", + "price": 2188, + "base": 1094, + "calculation": [], + "count": 2 + }, + { + "id": "enchanted_glowstone_dust", + "name": "Enchanted Glowstone Dust", + "price": 2048, + "base": 1024, + "calculation": [], + "count": 2 + }, { "id": "gift_compass", "name": "Gift Compass", "price": 1000, "base": 1000, - "calculation": [ - - ], + "calculation": [], + "count": 1 + }, + { + "id": "village_talisman", + "name": "Shaded Village Affinity Talisman", + "price": 1000, + "base": 1000, + "calculation": [], "count": 1 }, { @@ -3833,9 +3306,7 @@ "name": "Shaded Mine Affinity Talisman", "price": 1000, "base": 1000, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { @@ -3843,9 +3314,15 @@ "name": "Shaded Scavenger Talisman", "price": 1000, "base": 1000, - "calculation": [ - - ], + "calculation": [], + "count": 1 + }, + { + "id": "gravity_talisman", + "name": "Shaded Gravity Talisman", + "price": 864, + "base": 864, + "calculation": [], "count": 1 }, { @@ -3853,8 +3330,27 @@ "name": "Shaded Wood Affinity Talisman", "price": 800, "base": 800, + "calculation": [], + "count": 1 + }, + { + "id": "pork", + "name": "Raw Porkchop", + "price": 690, + "base": 690, + "calculation": [], + "count": 10 + }, + { + "id": "fractured_mithril_pickaxe", + "name": "Fractured Mithril Pickaxe", + "price": 682, + "base": 682, "calculation": [ - + { + "type": "efficiency_5", + "value": 0 + } ], "count": 1 }, @@ -3863,9 +3359,7 @@ "name": "Sculptor's Axe", "price": 320, "base": 320, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { @@ -3873,76 +3367,62 @@ "name": "Shaded Skeleton Talisman", "price": 250, "base": 250, - "calculation": [ - - ], + "calculation": [], "count": 1 }, { "id": "magma_fish", "name": "Magmafish", - "price": 246, - "base": 246, - "calculation": [ - - ], - "count": 2 + "price": 348, + "base": 232, + "calculation": [], + "count": 3 }, { - "id": "pork", - "name": "Raw Porkchop", - "price": 220, - "base": 220, - "calculation": [ - - ], - "count": 20 + "id": "forest_biome_stick", + "name": "Forest Biome Stick", + "price": 100, + "base": 100, + "calculation": [], + "count": 1 }, { - "id": "village_talisman", - "name": "Shaded Village Affinity Talisman", - "price": 200, - "base": 200, - "calculation": [ - - ], + "id": "record_6", + "name": "Music Disc - Mall", + "price": 100, + "base": 100, + "calculation": [], "count": 1 }, { - "id": "hard_glass", - "name": "Hard Glass", - "price": 160, - "base": 160, - "calculation": [ - - ], - "count": 1 + "id": "leash", + "name": "Lead", + "price": 80, + "base": 80, + "calculation": [], + "count": 2 }, { - "id": "farming_talisman", - "name": "Shaded Farming Talisman", - "price": 125, - "base": 125, - "calculation": [ - - ], - "count": 1 + "id": "sulphur_ore", + "name": "Sulphur", + "price": 54, + "base": 54, + "calculation": [], + "count": 6 }, { - "id": "magma_fish", - "name": "Magmafish", - "price": 123, - "base": 123, - "calculation": [ - - ], - "count": 1 + "id": "blaze_powder", + "name": "Blaze Powder", + "price": 44, + "base": 44, + "calculation": [], + "count": 11 }, { "id": "gold_axe", "name": "Golden Axe", - "price": 110, - "base": 110, + "price": 35, + "base": 35, "calculation": [ { "type": "efficiency_5", @@ -3952,1717 +3432,1067 @@ "count": 1 }, { - "id": "pork", - "name": "Raw Porkchop", - "price": 110, - "base": 110, - "calculation": [ - - ], - "count": 10 + "id": "farming_talisman", + "name": "Shaded Farming Talisman", + "price": 25, + "base": 25, + "calculation": [], + "count": 1 }, { - "id": "blaze_powder", - "name": "Blaze Powder", - "price": 110, - "base": 110, + "id": "diamond_spade", + "name": "Diamond Shovel", + "price": 20, + "base": 20, "calculation": [ - + { + "type": "efficiency_4", + "value": 0 + } ], - "count": 11 + "count": 1 }, { - "id": "vaccine_talisman", - "name": "Shaded Vaccine Talisman", - "price": 110, - "base": 110, - "calculation": [ - - ], + "id": "shears", + "name": "Shears", + "price": 15, + "base": 15, + "calculation": [], "count": 1 }, { - "id": "forest_biome_stick", - "name": "Forest Biome Stick", - "price": 100, - "base": 100, + "id": "gold_spade", + "name": "Golden Shovel", + "price": 15, + "base": 15, "calculation": [ - + { + "type": "efficiency_5", + "value": 0 + } ], "count": 1 }, { - "id": "record_6", - "name": "Music Disc - Mall", - "price": 100, - "base": 100, - "calculation": [ - - ], + "id": "golden_apple", + "name": "Golden Apple", + "price": 8, + "base": 8, + "calculation": [], "count": 1 }, { - "id": "leash", - "name": "Lead", - "price": 80, - "base": 80, - "calculation": [ - - ], - "count": 2 + "id": "blaze_powder", + "name": "Blaze Powder", + "price": 4, + "base": 4, + "calculation": [], + "count": 1 + } + ] + }, + "pets": { + "total": 349667037, + "top_items": [ + { + "name": "[Lvl 100] Legendary Silverfish ✦", + "price": 79478887, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "coin_talisman", - "name": "Shaded Talisman of Coins", - "price": 70, - "base": 70, - "calculation": [ - - ], + "name": "[Lvl 72] Legendary Monkey", + "price": 29447758, + "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ White Spiral Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 98] Legendary Elephant", + "price": 28215706, + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Hot Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 94] Legendary Tiger", + "price": 27121976, + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Zap Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Legendary Wolf", + "price": 23106428, + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Hearts Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Legendary Blue Whale", + "price": 22822583, + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 4, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Snow Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Legendary Rock", + "price": 14588999, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Lava Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Epic Baby Yeti", + "price": 12999552, + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 7, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Gem Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 79] Legendary Squid", + "price": 12649409, + "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Hot Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Epic Parrot", + "price": 12589000, + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Sparkling Rune I", - "price": 64, - "base": 64, - "calculation": [ - - ], - "count": 64 + "name": "[Lvl 100] Legendary Rabbit", + "price": 10594999, + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Blood Rune I", - "price": 128, - "base": 64, - "calculation": [ - - ], - "count": 128 + "name": "[Lvl 100] Legendary Wither Skeleton", + "price": 8589999, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ White Spiral Rune I", - "price": 62, - "base": 62, - "calculation": [ - - ], - "count": 62 + "name": "[Lvl 100] Legendary Sheep", + "price": 8579000, + "heldItem": "PET_ITEM_TEXTBOOK", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "sulphur_ore", - "name": "Sulphur", - "price": 54, - "base": 54, - "calculation": [ - - ], - "count": 6 + "name": "[Lvl 76] Legendary Ocelot", + "price": 7728634, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Sparkling Rune I", - "price": 50, - "base": 50, - "calculation": [ - - ], - "count": 50 + "name": "[Lvl 100] Legendary Endermite", + "price": 7589999, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Zap Rune I", - "price": 34, - "base": 34, - "calculation": [ - - ], - "count": 34 + "name": "[Lvl 100] Epic Dolphin", + "price": 7498999, + "heldItem": "WASHED_UP_SOUVENIR", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Clouds Rune I", - "price": 29, - "base": 29, - "calculation": [ - - ], - "count": 29 + "name": "[Lvl 100] Legendary Bat", + "price": 7249999, + "heldItem": "PET_ITEM_VAMPIRE_FANG", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Golden Rune I", - "price": 26, - "base": 26, - "calculation": [ - - ], - "count": 26 + "name": "[Lvl 88] Legendary Ammonite", + "price": 6820216, + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Snow Rune I", - "price": 25, - "base": 25, - "calculation": [ - - ], - "count": 25 + "name": "[Lvl 100] Legendary Mithril Golem", + "price": 5989999, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Hearts Rune I", - "price": 22, - "base": 22, - "calculation": [ - - ], - "count": 22 + "name": "[Lvl 54] Epic Bal", + "price": 5764571, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "diamond_spade", - "name": "Diamond Shovel", - "price": 20, - "base": 20, - "calculation": [ - { - "type": "efficiency_4", - "value": 0 - } - ], + "name": "[Lvl 16] Epic Rock", + "price": 2501186, + "heldItem": null, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ Pestilence Rune I", - "price": 20, - "base": 20, - "calculation": [ - - ], - "count": 20 + "name": "[Lvl 1] Epic Guardian", + "price": 1950000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "shears", - "name": "Shears", - "price": 15, - "base": 15, - "calculation": [ - - ], + "name": "[Lvl 56] Legendary Skeleton Horse", + "price": 1780074, + "heldItem": "PET_ITEM_SADDLE", + "candyUsed": 10, + "isPet": true, "count": 1 }, { - "id": "gold_spade", - "name": "Golden Shovel", - "price": 15, - "base": 15, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], + "name": "[Lvl 1] Epic Magma Cube", + "price": 1500000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 2 + }, + { + "name": "[Lvl 1] Rare Dolphin", + "price": 640000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ Lightning Rune I", - "price": 15, - "base": 15, - "calculation": [ - - ], - "count": 15 + "name": "[Lvl 1] Rare Rock", + "price": 500000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Lava Rune I", - "price": 15, - "base": 15, - "calculation": [ - - ], - "count": 15 + "name": "[Lvl 25] Epic Bee", + "price": 402211, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Spirit Rune I", - "price": 15, - "base": 15, - "calculation": [ - - ], - "count": 15 + "name": "[Lvl 26] Epic Hound", + "price": 276178, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "blaze_powder", - "name": "Blaze Powder", - "price": 10, - "base": 10, - "calculation": [ - - ], + "name": "[Lvl 18] Common Guardian", + "price": 210598, + "heldItem": null, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "golden_apple", - "name": "Golden Apple", - "price": 8, - "base": 8, - "calculation": [ - - ], + "name": "[Lvl 40] Epic Enderman", + "price": 117905, + "heldItem": null, + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ Couture Rune I", - "price": 8, - "base": 8, - "calculation": [ - - ], - "count": 8 + "name": "[Lvl 1] Uncommon Dolphin", + "price": 99000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Wake Rune I", - "price": 7, - "base": 7, - "calculation": [ - - ], - "count": 7 + "name": "[Lvl 40] Common Griffin", + "price": 76164, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Magical Rune I", - "price": 7, - "base": 7, - "calculation": [ - - ], - "count": 7 + "name": "[Lvl 1] Epic Tarantula", + "price": 70000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Gem Rune I", - "price": 6, - "base": 6, - "calculation": [ - - ], - "count": 6 + "name": "[Lvl 1] Uncommon Rock", + "price": 55000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Rainbow Rune I", - "price": 6, - "base": 6, - "calculation": [ - - ], - "count": 6 + "name": "[Lvl 1] Common Dolphin", + "price": 25000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Blood Rune III", - "price": 3, - "base": 3, - "calculation": [ - - ], - "count": 3 + "name": "[Lvl 1] Epic Ghoul", + "price": 20000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Snake Rune I", - "price": 2, - "base": 2, - "calculation": [ - - ], - "count": 2 + "name": "[Lvl 1] Epic Enderman", + "price": 11000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, + "count": 1 }, { - "id": "rune", - "name": "◆ Couture Rune I", - "price": 2, - "base": 2, - "calculation": [ - - ], + "name": "[Lvl 1] Rare Enderman", + "price": 6000, + "heldItem": null, + "candyUsed": 0, + "isPet": true, "count": 2 - }, + } + ] + }, + "talismans": { + "total": 233929503, + "top_items": [ { - "id": "wishing_compass", - "name": "Wishing Compass", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "ender_artifact", + "name": "Ender Artifact", + "price": 70000000, + "base": 70000000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Rainbow Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "beastmaster_crest_legendary", + "name": "Beastmaster Crest", + "price": 24900000, + "base": 24900000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Smokey Rune I", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "party_hat_crab", + "name": "Yellow Crab Hat of Celebration", + "price": 17000000, + "base": 17000000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Hearts Rune II", - "price": 1, - "base": 1, + "id": "scarf_grimoire", + "name": "Strong Scarf's Grimoire", + "price": 13633540, + "recomb": true, + "base": 8999000, "calculation": [ - + { + "type": "Recombobulator 3000", + "value": 4634540.8, + "count": 1 + } ], "count": 1 }, { - "id": "rune", - "name": "◆ Rainbow Rune III", - "price": 1, - "base": 1, + "id": "auto_recombobulator", + "name": "Auto Recombobulator", + "price": 13475000, + "base": 11900000, "calculation": [ - + { + "type": "Enrichment: magic_find", + "value": 2100000, + "count": 1 + } ], "count": 1 }, { - "id": "rune", - "name": "◆ Fire Spiral Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "candy_relic", + "name": "Candy Relic", + "price": 11000000, + "base": 11000000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Lightning Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "bat_person_artifact", + "name": "Bat Person Artifact", + "price": 10999900, + "base": 10999900, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ White Spiral Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "potato_talisman", + "name": "Potato Talisman", + "price": 8999999, + "base": 8999999, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Zap Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "eternal_hoof", + "name": "Eternal Hoof", + "price": 8999980, + "base": 8999980, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Hot Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "bits_talisman", + "name": "Bits Talisman", + "price": 5699000, + "base": 5699000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Blood Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "personal_compactor_7000", + "name": "Personal Compactor 7000", + "price": 5195000, + "base": 5195000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Ice Rune I", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "survivor_cube", + "name": "Survivor Cube", + "price": 5000000, + "base": 5000000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Redstone Rune I", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "spider_artifact", + "name": "Spider Artifact", + "price": 4700000, + "base": 4700000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Endersnake Rune I", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "red_claw_artifact", + "name": "Red Claw Artifact", + "price": 4500000, + "base": 4500000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Sparkling Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "razor_sharp_shark_tooth_necklace", + "name": "Razor-sharp Shark Tooth Necklace", + "price": 3950000, + "base": 3950000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Clouds Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "speed_artifact", + "name": "Speed Artifact", + "price": 3000000, + "base": 3000000, + "calculation": [], "count": 1 }, { - "id": "rune", - "name": "◆ Golden Rune II", - "price": 1, - "base": 1, - "calculation": [ - - ], + "id": "tarantula_talisman", + "name": "Tarantula Talisman", + "price": 2790000, + "base": 2790000, + "calculation": [], "count": 1 - } - ] - }, - "pets": { - "total": 360717017, - "top_items": [ + }, { - "name": "[Lvl 100] Legendary Silverfish ✦", - "price": 79478888, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "blood_god_crest", + "name": "Blood God Crest", + "price": 2750000, + "base": 2750000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 98] Legendary Elephant", - "price": 35407221, - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", - "candyUsed": 0, - "isPet": true, + "id": "zombie_artifact", + "name": "Zombie Artifact", + "price": 2700000, + "base": 2700000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 72] Legendary Monkey", - "price": 33300797, - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, + "id": "party_hat_crab_animated", + "name": "Green Crab Hat of Celebration - 2022 Edition", + "price": 2300000, + "base": 2300000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 94] Legendary Tiger", - "price": 29381156, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "isPet": true, + "id": "wolf_ring", + "name": "Wolf Ring", + "price": 2100000, + "base": 2100000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Blue Whale", - "price": 23078443, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 4, - "isPet": true, + "id": "devour_ring", + "name": "Devour Ring", + "price": 2000000, + "base": 2000000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Wolf", - "price": 22950000, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "isPet": true, + "id": "intimidation_artifact", + "name": "Intimidation Artifact", + "price": 1450000, + "base": 1450000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Rock", - "price": 15590000, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "wolf_paw", + "name": "Wolf Paw", + "price": 1000000, + "base": 1000000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Epic Parrot", - "price": 13158999, - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, + "id": "bat_artifact", + "name": "Bat Artifact", + "price": 909000, + "base": 909000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Epic Baby Yeti", - "price": 13001939, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 7, - "isPet": true, + "id": "jerry_talisman_green", + "name": "Green Jerry Talisman", + "price": 790000, + "base": 790000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Rabbit", - "price": 12974999, - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "pocket_espresso_machine", + "name": "Pocket Espresso Machine", + "price": 575000, + "base": 575000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 79] Legendary Squid", - "price": 11533001, - "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", - "candyUsed": 0, - "isPet": true, + "id": "king_talisman", + "name": "King Talisman", + "price": 500000, + "base": 500000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Wither Skeleton", - "price": 9284900, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "experience_artifact", + "name": "Experience Artifact", + "price": 475000, + "base": 475000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Sheep", - "price": 9100000, - "heldItem": "PET_ITEM_TEXTBOOK", - "candyUsed": 0, - "isPet": true, + "id": "mineral_talisman", + "name": "Mineral Talisman", + "price": 474999, + "base": 474999, + "calculation": [], "count": 1 }, { - "name": "[Lvl 76] Legendary Ocelot", - "price": 7653732, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "new_year_cake_bag", + "name": "New Year Cake Bag", + "price": 419000, + "base": 419000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Bat", - "price": 7110000, - "heldItem": "PET_ITEM_VAMPIRE_FANG", - "candyUsed": 0, - "isPet": true, + "id": "sea_creature_artifact", + "name": "Sea Creature Artifact", + "price": 318000, + "base": 318000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Epic Dolphin", - "price": 6830000, - "heldItem": "WASHED_UP_SOUVENIR", - "candyUsed": 0, - "isPet": true, + "id": "treasure_talisman", + "name": "Treasure Talisman", + "price": 311571, + "base": 311571, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Endermite", - "price": 6589999, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "titanium_talisman", + "name": "Titanium Talisman", + "price": 256000, + "base": 256000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 100] Legendary Mithril Golem", - "price": 6489000, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, + "id": "artifact_potion_affinity", + "name": "Potion Affinity Artifact", + "price": 179000, + "base": 179000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 54] Epic Bal", - "price": 5716234, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "feather_artifact", + "name": "Feather Artifact", + "price": 129000, + "base": 129000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Epic Guardian", - "price": 2699999, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "haste_ring", + "name": "Haste Ring", + "price": 122500, + "base": 122500, + "calculation": [], "count": 1 }, { - "name": "[Lvl 16] Epic Rock", - "price": 2501186, - "heldItem": null, - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "name": "[Lvl 62] Legendary Ammonite", - "price": 1299535, - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, + "id": "healing_ring", + "name": "Healing Ring", + "price": 84000, + "base": 84000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Epic Magma Cube", - "price": 1998000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, - "count": 2 - }, - { - "name": "[Lvl 56] Legendary Skeleton Horse", - "price": 972904, - "heldItem": "PET_ITEM_SADDLE", - "candyUsed": 10, - "isPet": true, + "id": "fire_talisman", + "name": "Fire Talisman", + "price": 52900, + "base": 52900, + "calculation": [], "count": 1 }, { - "name": "[Lvl 25] Epic Bee", - "price": 601809, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "pigs_foot", + "name": "Pig's Foot", + "price": 40000, + "base": 40000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Rare Rock", - "price": 500000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "fish_affinity_talisman", + "name": "Fish Affinity Talisman", + "price": 35315, + "base": 35315, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Rare Dolphin", - "price": 500000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "emerald_ring", + "name": "Emerald Ring", + "price": 35000, + "base": 35000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 40] Epic Enderman", - "price": 267691, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "lava_talisman", + "name": "Lava Talisman", + "price": 29000, + "base": 29000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 26] Epic Hound", - "price": 157192, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "vaccine_talisman", + "name": "Vaccine Talisman", + "price": 25012, + "base": 25012, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Uncommon Dolphin", - "price": 119000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "farmer_orb", + "name": "Farmer Orb", + "price": 9500, + "base": 9500, + "calculation": [], "count": 1 }, { - "name": "[Lvl 40] Common Griffin", - "price": 109283, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "frozen_chicken", + "name": "Frozen Chicken", + "price": 5000, + "base": 5000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 18] Common Guardian", - "price": 98683, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "coin_talisman", + "name": "Talisman of Coins", + "price": 2578, + "base": 2578, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Epic Enderman", - "price": 95000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "night_vision_charm", + "name": "Night Vision Charm", + "price": 2500, + "base": 2500, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Epic Tarantula", - "price": 69420, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "magnetic_talisman", + "name": "Magnetic Talisman", + "price": 2000, + "base": 2000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Uncommon Rock", - "price": 50000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "village_talisman", + "name": "Village Affinity Talisman", + "price": 1000, + "base": 1000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Common Dolphin", - "price": 20000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "scavenger_talisman", + "name": "Scavenger Talisman", + "price": 1000, + "base": 1000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Epic Ghoul", - "price": 20000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, + "id": "mine_talisman", + "name": "Mine Affinity Talisman", + "price": 1000, + "base": 1000, + "calculation": [], "count": 1 }, { - "name": "[Lvl 1] Rare Enderman", - "price": 8000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, - "count": 2 - } - ] - }, - "talismans": { - "total": 245123043, - "top_items": [ - { - "id": "ender_artifact", - "name": "Ender Artifact", - "price": 73400000, - "base": 73400000, - "calculation": [ - - ], + "id": "gravity_talisman", + "name": "Gravity Talisman", + "price": 864, + "base": 864, + "calculation": [], "count": 1 }, { - "id": "beastmaster_crest_legendary", - "name": "Beastmaster Crest", - "price": 26000000, - "base": 26000000, - "calculation": [ - - ], + "id": "wood_talisman", + "name": "Wood Affinity Talisman", + "price": 800, + "base": 800, + "calculation": [], "count": 1 }, { - "id": "scarf_grimoire", - "name": "Strong Scarf's Grimoire", - "price": 15390360, - "recomb": true, - "base": 10800000, - "calculation": [ - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - } - ], + "id": "skeleton_talisman", + "name": "Skeleton Talisman", + "price": 250, + "base": 250, + "calculation": [], "count": 1 }, { - "id": "party_hat_crab", - "name": "Yellow Crab Hat of Celebration", - "price": 14900000, - "base": 14900000, - "calculation": [ - - ], + "id": "soulflow_pile", + "name": "Soulflow Pile", + "price": 160, + "base": 160, + "calculation": [], "count": 1 }, { - "id": "auto_recombobulator", - "name": "Auto Recombobulator", - "price": 13065000, - "base": 11490000, - "calculation": [ - { - "type": "Enrichment: magic_find", - "value": 2100000, - "count": 1 - } - ], + "id": "dante_talisman", + "name": "Dante Talisman", + "price": 110, + "base": 110, + "calculation": [], "count": 1 }, { - "id": "candy_relic", - "name": "Candy Relic", - "price": 11449000, - "base": 11449000, - "calculation": [ - - ], + "id": "farming_talisman", + "name": "Farming Talisman", + "price": 25, + "base": 25, + "calculation": [], "count": 1 + } + ] + } + } + }, + "weight": { + "total_weight": 8588.876076360184, + "total_weight_with_overflow": 543.6436830177663, + "weight": { + "skills": { + "farming": { + "weight": 1344.1799059153227, + "weight_overflow": 0 + }, + "mining": { + "weight": 1750, + "weight_overflow": 233.80301935086254 + }, + "combat": { + "weight": 1500, + "weight_overflow": 33.98804022751836 + }, + "foraging": { + "weight": 60.361661392648344, + "weight_overflow": 0 + }, + "fishing": { + "weight": 323.14542676995836, + "weight_overflow": 0 + }, + "enchanting": { + "weight": 450, + "weight_overflow": 8.358929807509982 + }, + "alchemy": { + "weight": 200, + "weight_overflow": 0.9655594461091451 + }, + "taming": { + "weight": 500, + "weight_overflow": 266.52813418576636 + }, + "slayer": { + "revenant": { + "weight": 452.8985507246377, + "weight_overflow": 16.513506163509486 }, - { - "id": "eternal_hoof", - "name": "Eternal Hoof", - "price": 11000000, - "base": 11000000, - "calculation": [ - - ], - "count": 1 + "tarantula": { + "weight": 472.14353163361665, + "weight_overflow": 0 }, - { - "id": "bat_person_artifact", - "name": "Bat Person Artifact", - "price": 9900000, - "base": 9900000, - "calculation": [ - - ], - "count": 1 + "sven": { + "weight": 509.683995922528, + "weight_overflow": 0.18653424904133306 }, - { - "id": "potato_talisman", - "name": "Potato Talisman", - "price": 9500000, - "base": 9500000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "spider_artifact", - "name": "Spider Artifact", - "price": 7999999, - "base": 7999999, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "bits_talisman", - "name": "Bits Talisman", - "price": 5599000, - "base": 5599000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "personal_compactor_7000", - "name": "Personal Compactor 7000", - "price": 5290000, - "base": 5290000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "red_claw_artifact", - "name": "Red Claw Artifact", - "price": 5200000, - "base": 5200000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "survivor_cube", - "name": "Survivor Cube", - "price": 5000000, - "base": 5000000, - "calculation": [ - - ], - "count": 1 + "enderman": { + "weight": 69.93006993006993, + "weight_overflow": 0 + } + }, + "dungeons": { + "catacombs": { + "weight": 916.2301953219336, + "weight_overflow": 0 }, - { - "id": "razor_sharp_shark_tooth_necklace", - "name": "Razor-sharp Shark Tooth Necklace", - "price": 3800000, - "base": 3800000, - "calculation": [ - - ], - "count": 1 + "classes": { + "healer": { + "weight": 4.487168439533184, + "weight_overflow": 0 + }, + "mage": { + "weight": 14.96202149806985, + "weight_overflow": 0 + }, + "berserk": { + "weight": 6.198712353824865, + "weight_overflow": 0 + }, + "archer": { + "total": 6.112349682996283, + "weight": 6.112349682996283, + "weight_overflow": 0 + }, + "tank": { + "weight": 8.542486775041839, + "weight_overflow": 0 + } + } + } + }, + "senither": { + "total": 9149.2197997905, + "weight": 8588.876076360184, + "weight_overflow": 543.6436830177663, + "skills": { + "farming": { + "total": 1344.1799059153227, + "weight": 1344.1799059153227, + "weight_overflow": 0 }, - { - "id": "speed_artifact", - "name": "Speed Artifact", - "price": 3800000, - "base": 3800000, - "calculation": [ - - ], - "count": 1 + "mining": { + "total": 1983.8030193508625, + "weight": 1750, + "weight_overflow": 233.80301935086254 }, - { - "id": "zombie_artifact", - "name": "Zombie Artifact", - "price": 3500000, - "base": 3500000, - "calculation": [ - - ], - "count": 1 + "combat": { + "total": 1533.9880402275185, + "weight": 1500, + "weight_overflow": 33.98804022751836 }, - { - "id": "blood_god_crest", - "name": "Blood God Crest", - "price": 3099000, - "base": 3099000, - "calculation": [ - - ], - "count": 1 + "foraging": { + "total": 60.361661392648344, + "weight": 60.361661392648344, + "weight_overflow": 0 }, - { - "id": "tarantula_talisman", - "name": "Tarantula Talisman", - "price": 2800000, - "base": 2800000, - "calculation": [ - - ], - "count": 1 + "fishing": { + "total": 323.14542676995836, + "weight": 323.14542676995836, + "weight_overflow": 0 }, - { - "id": "party_hat_crab_animated", - "name": "Green Crab Hat of Celebration - 2022 Edition", - "price": 2499000, - "base": 2499000, - "calculation": [ - - ], - "count": 1 + "enchanting": { + "total": 458.35892980751, + "weight": 450, + "weight_overflow": 8.358929807509982 }, - { - "id": "devour_ring", - "name": "Devour Ring", - "price": 2080000, - "base": 2080000, - "calculation": [ - - ], - "count": 1 + "alchemy": { + "total": 200.96555944610915, + "weight": 200, + "weight_overflow": 0.9655594461091451 }, - { - "id": "wolf_ring", - "name": "Wolf Ring", - "price": 1950000, - "base": 1950000, - "calculation": [ - - ], - "count": 1 + "taming": { + "total": 766.5281341857664, + "weight": 500, + "weight_overflow": 266.52813418576636 + } + }, + "slayer": { + "total": 1521.3561886234033, + "weight": 1504.6561482108523, + "weight_overflow": 16.70004041255082, + "revenant": { + "total": 469.41205688814716, + "weight": 452.8985507246377, + "weight_overflow": 16.513506163509486 }, - { - "id": "intimidation_artifact", - "name": "Intimidation Artifact", - "price": 1395000, - "base": 1395000, - "calculation": [ - - ], - "count": 1 + "tarantula": { + "total": 472.14353163361665, + "weight": 472.14353163361665, + "weight_overflow": 0 }, - { - "id": "wolf_paw", - "name": "Wolf Paw", - "price": 1000000, - "base": 1000000, - "calculation": [ - - ], - "count": 1 + "sven": { + "total": 509.8705301715694, + "weight": 509.683995922528, + "weight_overflow": 0.18653424904133306 }, - { - "id": "jerry_talisman_green", - "name": "Green Jerry Talisman", - "price": 990000, - "base": 990000, - "calculation": [ - - ], - "count": 1 + "enderman": { + "total": 69.93006993006993, + "weight": 69.93006993006993, + "weight_overflow": 0 + } + }, + "dungeons": { + "total": 956.5329340713996, + "weight": 956.5329340713996, + "weight_overflow": 0, + "catacombs": { + "total": 916.2301953219336, + "weight": 916.2301953219336, + "weight_overflow": 0 }, - { - "id": "bat_artifact", - "name": "Bat Artifact", - "price": 890000, - "base": 890000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "king_talisman", - "name": "King Talisman", - "price": 500000, - "base": 500000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "mineral_talisman", - "name": "Mineral Talisman", - "price": 466000, - "base": 466000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "experience_artifact", - "name": "Experience Artifact", - "price": 400000, - "base": 400000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "new_year_cake_bag", - "name": "New Year Cake Bag", - "price": 400000, - "base": 400000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "pocket_espresso_machine", - "name": "Pocket Espresso Machine", - "price": 397000, - "base": 397000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "treasure_talisman", - "name": "Treasure Talisman", - "price": 284999, - "base": 284999, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "titanium_talisman", - "name": "Titanium Talisman", - "price": 256000, - "base": 256000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "sea_creature_artifact", - "name": "Sea Creature Artifact", - "price": 200000, - "base": 200000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "artifact_potion_affinity", - "name": "Potion Affinity Artifact", - "price": 160000, - "base": 160000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "haste_ring", - "name": "Haste Ring", - "price": 137000, - "base": 137000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "feather_artifact", - "name": "Feather Artifact", - "price": 114000, - "base": 114000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "healing_ring", - "name": "Healing Ring", - "price": 85000, - "base": 85000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "fish_affinity_talisman", - "name": "Fish Affinity Talisman", - "price": 50000, - "base": 50000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "pigs_foot", - "name": "Pig's Foot", - "price": 40000, - "base": 40000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "emerald_ring", - "name": "Emerald Ring", - "price": 38000, - "base": 38000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "fire_talisman", - "name": "Fire Talisman", - "price": 32400, - "base": 32400, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "lava_talisman", - "name": "Lava Talisman", - "price": 29000, - "base": 29000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "night_vision_charm", - "name": "Night Vision Charm", - "price": 12000, - "base": 12000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "farmer_orb", - "name": "Farmer Orb", - "price": 9500, - "base": 9500, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "frozen_chicken", - "name": "Frozen Chicken", - "price": 5000, - "base": 5000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "gravity_talisman", - "name": "Gravity Talisman", - "price": 4320, - "base": 4320, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "magnetic_talisman", - "name": "Magnetic Talisman", - "price": 2000, - "base": 2000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "scavenger_talisman", - "name": "Scavenger Talisman", - "price": 1000, - "base": 1000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "mine_talisman", - "name": "Mine Affinity Talisman", - "price": 1000, - "base": 1000, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "wood_talisman", - "name": "Wood Affinity Talisman", - "price": 800, - "base": 800, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "soulflow_pile", - "name": "Soulflow Pile", - "price": 800, - "base": 800, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "skeleton_talisman", - "name": "Skeleton Talisman", - "price": 250, - "base": 250, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "village_talisman", - "name": "Village Affinity Talisman", - "price": 200, - "base": 200, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "farming_talisman", - "name": "Farming Talisman", - "price": 125, - "base": 125, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "dante_talisman", - "name": "Dante Talisman", - "price": 110, - "base": 110, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "vaccine_talisman", - "name": "Vaccine Talisman", - "price": 110, - "base": 110, - "calculation": [ - - ], - "count": 1 - }, - { - "id": "coin_talisman", - "name": "Talisman of Coins", - "price": 70, - "base": 70, - "calculation": [ - - ], - "count": 1 - } - ] - } - } - }, - "weight": { - "total_weight": 7940.783055698881, - "total_weight_with_overflow": 478.9141212896444, - "weight": { - "skills": { - "farming": { - "weight": 696.0868852540224, - "weight_overflow": 0 - }, - "mining": { - "weight": 1750, - "weight_overflow": 202.18324593035345 - }, - "combat": { - "weight": 1500, - "weight_overflow": 33.98804022751836 - }, - "foraging": { - "weight": 60.361661392648344, - "weight_overflow": 0 - }, - "fishing": { - "weight": 323.14542676995836, - "weight_overflow": 0 - }, - "enchanting": { - "weight": 450, - "weight_overflow": 8.358929807509982 - }, - "alchemy": { - "weight": 200, - "weight_overflow": 0.9655594461091451 - }, - "taming": { - "weight": 500, - "weight_overflow": 233.41834587815345 - }, - "slayer": { - "revenant": { - "weight": 452.8985507246377, - "weight_overflow": 16.513506163509486 - }, - "tarantula": { - "weight": 472.14353163361665, - "weight_overflow": 0 - }, - "sven": { - "weight": 509.683995922528, - "weight_overflow": 0.18653424904133306 - }, - "enderman": { - "weight": 69.93006993006993, - "weight_overflow": 0 - } - }, - "dungeons": { - "catacombs": { - "weight": 916.2301953219336, - "weight_overflow": 0 - }, - "classes": { - "healer": { - "weight": 4.487168439533184, - "weight_overflow": 0 - }, - "mage": { - "weight": 14.96202149806985, - "weight_overflow": 0 - }, - "berserk": { - "weight": 6.198712353824865, - "weight_overflow": 0 - }, - "archer": { - "total": 6.112349682996283, - "weight": 6.112349682996283, - "weight_overflow": 0 - }, - "tank": { - "weight": 8.542486775041839, - "weight_overflow": 0 - } - } - } - }, - "senither": { - "total": 8436.397217401078, - "weight": 7940.783055698881, - "weight_overflow": 478.9141212896444, - "skills": { - "farming": { - "total": 696.0868852540224, - "weight": 696.0868852540224, - "weight_overflow": 0 - }, - "mining": { - "total": 1952.1832459303535, - "weight": 1750, - "weight_overflow": 202.18324593035345 - }, - "combat": { - "total": 1533.9880402275185, - "weight": 1500, - "weight_overflow": 33.98804022751836 - }, - "foraging": { - "total": 60.361661392648344, - "weight": 60.361661392648344, - "weight_overflow": 0 - }, - "fishing": { - "total": 323.14542676995836, - "weight": 323.14542676995836, - "weight_overflow": 0 - }, - "enchanting": { - "total": 458.35892980751, - "weight": 450, - "weight_overflow": 8.358929807509982 - }, - "alchemy": { - "total": 200.96555944610915, - "weight": 200, - "weight_overflow": 0.9655594461091451 - }, - "taming": { - "total": 733.4183458781534, - "weight": 500, - "weight_overflow": 233.41834587815345 - } - }, - "slayer": { - "total": 1521.3561886234033, - "weight": 1504.6561482108523, - "weight_overflow": 16.70004041255082, - "revenant": { - "total": 469.41205688814716, - "weight": 452.8985507246377, - "weight_overflow": 16.513506163509486 - }, - "tarantula": { - "total": 472.14353163361665, - "weight": 472.14353163361665, - "weight_overflow": 0 - }, - "sven": { - "total": 509.8705301715694, - "weight": 509.683995922528, - "weight_overflow": 0.18653424904133306 - }, - "enderman": { - "total": 69.93006993006993, - "weight": 69.93006993006993, - "weight_overflow": 0 - } - }, - "dungeons": { - "total": 956.5329340713996, - "weight": 956.5329340713996, - "weight_overflow": 0, - "catacombs": { - "total": 916.2301953219336, - "weight": 916.2301953219336, - "weight_overflow": 0 - }, - "classes": { - "healer": { - "total": 4.487168439533184, - "weight": 4.487168439533184, - "weight_overflow": 0 - }, - "mage": { - "total": 14.96202149806985, - "weight": 14.96202149806985, - "weight_overflow": 0 - }, - "berserk": { - "total": 6.198712353824865, - "weight": 6.198712353824865, - "weight_overflow": 0 - }, - "archer": { - "total": 6.112349682996283, - "weight": 6.112349682996283, - "weight_overflow": 0 - }, - "tank": { - "total": 8.542486775041839, - "weight": 8.542486775041839, - "weight_overflow": 0 - } - } - } - }, - "lily": { - "total": 12305.857726656186, - "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 - }, - "slayer": { - "total": 1048.2839363756852 - }, - "catacombs": { - "total": 448.2215690473853, - "completion": { - "base": 201.2803902265291, - "master": 2.9480455181468086 + "classes": { + "healer": { + "total": 4.487168439533184, + "weight": 4.487168439533184, + "weight_overflow": 0 + }, + "mage": { + "total": 14.96202149806985, + "weight": 14.96202149806985, + "weight_overflow": 0 + }, + "berserk": { + "total": 6.198712353824865, + "weight": 6.198712353824865, + "weight_overflow": 0 + }, + "archer": { + "total": 6.112349682996283, + "weight": 6.112349682996283, + "weight_overflow": 0 + }, + "tank": { + "total": 8.542486775041839, + "weight": 8.542486775041839, + "weight_overflow": 0 + } + } + } + }, + "lily": { + "total": 9787.789085731169, + "skills": { + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 + }, + "slayer": { + "total": 1047.8763143104497 + }, + "catacombs": { + "total": 448.2215690473853, + "completion": { + "base": 201.2803902265291, + "master": 2.9480455181468086 }, "experience": 243.99313330270934 } @@ -6313,511 +5143,1385 @@ "progress": 0.5989, "levelWithProgress": 8.5989 }, - "skeleton_master": { - "tier": 7, - "nextTier": 5000, - "kills": 4241, - "killsForNext": 759, - "progress": 0.8482, - "levelWithProgress": 7.8482 + "skeleton_master": { + "tier": 7, + "nextTier": 5000, + "kills": 4241, + "killsForNext": 759, + "progress": 0.8482, + "levelWithProgress": 7.8482 + }, + "scared_skeleton": { + "tier": 4, + "nextTier": 500, + "kills": 373, + "killsForNext": 127, + "progress": 0.746, + "levelWithProgress": 4.746 + }, + "diamond_guy": { + "tier": 4, + "nextTier": 500, + "kills": 261, + "killsForNext": 239, + "progress": 0.522, + "levelWithProgress": 4.522 + }, + "dungeon_respawning_skeleton": { + "tier": 8, + "nextTier": 10000, + "kills": 5640, + "killsForNext": 4360, + "progress": 0.564, + "levelWithProgress": 8.564 + }, + "skeletor": { + "tier": 6, + "nextTier": 2500, + "kills": 1464, + "killsForNext": 1036, + "progress": 0.5856, + "levelWithProgress": 6.5856 + }, + "sniper_skeleton": { + "tier": 4, + "nextTier": 500, + "kills": 413, + "killsForNext": 87, + "progress": 0.826, + "levelWithProgress": 4.826 + }, + "crypt_souleater": { + "tier": 7, + "nextTier": 5000, + "kills": 3374, + "killsForNext": 1626, + "progress": 0.6748, + "levelWithProgress": 7.6748 + }, + "crypt_dreadlord": { + "tier": 8, + "nextTier": 10000, + "kills": 5993, + "killsForNext": 4007, + "progress": 0.5993, + "levelWithProgress": 8.5993 + }, + "crypt_tank_zombie": { + "tier": 6, + "nextTier": 2500, + "kills": 1419, + "killsForNext": 1081, + "progress": 0.5676, + "levelWithProgress": 6.5676 + }, + "super_tank_zombie": { + "tier": 7, + "nextTier": 5000, + "kills": 3375, + "killsForNext": 1625, + "progress": 0.675, + "levelWithProgress": 7.675 + }, + "crypt_lurker": { + "tier": 8, + "nextTier": 10000, + "kills": 9299, + "killsForNext": 701, + "progress": 0.9299, + "levelWithProgress": 8.9299 + }, + "cellar_spider": { + "tier": 4, + "nextTier": 500, + "kills": 340, + "killsForNext": 160, + "progress": 0.68, + "levelWithProgress": 4.68 + }, + "watcher_summon_undead": { + "tier": 7, + "nextTier": 5000, + "kills": 2836, + "killsForNext": 2164, + "progress": 0.5672, + "levelWithProgress": 7.5672 + }, + "lonely_spider": { + "tier": 6, + "nextTier": 2500, + "kills": 2462, + "killsForNext": 38, + "progress": 0.9848, + "levelWithProgress": 6.9848 + }, + "shadow_assassin": { + "tier": 4, + "nextTier": 500, + "kills": 426, + "killsForNext": 74, + "progress": 0.852, + "levelWithProgress": 4.852 + }, + "king_midas": { + "tier": 1, + "nextTier": 25, + "kills": 21, + "killsForNext": 4, + "progress": 0.84, + "levelWithProgress": 1.8399999999999999 + }, + "super_archer": { + "tier": 6, + "nextTier": 2500, + "kills": 1409, + "killsForNext": 1091, + "progress": 0.5636, + "levelWithProgress": 6.5636 + }, + "crypt_witherskeleton": { + "tier": 7, + "nextTier": 5000, + "kills": 3436, + "killsForNext": 1564, + "progress": 0.6872, + "levelWithProgress": 7.6872 + }, + "zombie_commander": { + "tier": 5, + "nextTier": 1000, + "kills": 930, + "killsForNext": 70, + "progress": 0.93, + "levelWithProgress": 5.93 + } + } + } + }, + "dungeons": { + "selected_class": "Archer", + "secrets_found": 5452, + "classes": { + "healer": { + "totalXp": 224153.6866333335, + "xp": 188140, + "level": 21, + "xpCurrent": 36013, + "xpForNext": 71500, + "progress": 0.5036783216783217, + "levelWithProgress": 21.503678321678322 + }, + "mage": { + "totalXp": 1745907.942233335, + "xp": 1684640, + "level": 28, + "xpCurrent": 61267, + "xpForNext": 600000, + "progress": 0.10211166666666667, + "levelWithProgress": 28.102111666666666 + }, + "berserk": { + "totalXp": 370437.1206333336, + "xp": 356640, + "level": 23, + "xpCurrent": 13797, + "xpForNext": 132000, + "progress": 0.10452272727272727, + "levelWithProgress": 23.104522727272727 + }, + "archer": { + "totalXp": 360943.01841666666, + "xp": 356640, + "level": 23, + "xpCurrent": 4303, + "xpForNext": 132000, + "progress": 0.03259848484848485, + "levelWithProgress": 23.032598484848485 + }, + "tank": { + "totalXp": 634666.5270666663, + "xp": 488640, + "level": 24, + "xpCurrent": 146026, + "xpForNext": 180000, + "progress": 0.8112555555555555, + "levelWithProgress": 24.811255555555555 + } + }, + "catacombs": { + "skill": { + "totalXp": 2871913.394266667, + "xp": 2284640, + "level": 29, + "xpCurrent": 587273, + "xpForNext": 800000, + "progress": 0.73409125, + "levelWithProgress": 29.73409125 + }, + "highest_tier_completed": "M3", + "floors": { + "entrance": { + "times_played": 6, + "completions": 5, + "best_score": { + "score": 207, + "name": "B" + }, + "fastest": 115924, + "fastest_s": 0, + "fastest_s_plus": 0, + "mobs_killed": 468 + }, + "floor_1": { + "times_played": 45, + "completions": 31, + "best_score": { + "score": 308, + "name": "S+" + }, + "fastest": 106560, + "fastest_s": 162395, + "fastest_s_plus": 167136, + "mobs_killed": 2536 }, - "scared_skeleton": { - "tier": 4, - "nextTier": 500, - "kills": 373, - "killsForNext": 127, - "progress": 0.746, - "levelWithProgress": 4.746 + "floor_2": { + "times_played": 71, + "completions": 56, + "best_score": { + "score": 305, + "name": "S+" + }, + "fastest": 207269, + "fastest_s": 453148, + "fastest_s_plus": 645568, + "mobs_killed": 4445 }, - "diamond_guy": { - "tier": 4, - "nextTier": 500, - "kills": 261, - "killsForNext": 239, - "progress": 0.522, - "levelWithProgress": 4.522 + "floor_3": { + "times_played": 96, + "completions": 71, + "best_score": { + "score": 311, + "name": "S+" + }, + "fastest": 187738, + "fastest_s": 391185, + "fastest_s_plus": 479742, + "mobs_killed": 6298 }, - "dungeon_respawning_skeleton": { - "tier": 8, - "nextTier": 10000, - "kills": 5640, - "killsForNext": 4360, - "progress": 0.564, - "levelWithProgress": 8.564 + "floor_4": { + "times_played": 52, + "completions": 35, + "best_score": { + "score": 311, + "name": "S+" + }, + "fastest": 266286, + "fastest_s": 266286, + "fastest_s_plus": 508720, + "mobs_killed": 7028 }, - "skeletor": { - "tier": 6, - "nextTier": 2500, - "kills": 1464, - "killsForNext": 1036, - "progress": 0.5856, - "levelWithProgress": 6.5856 + "floor_5": { + "times_played": 128, + "completions": 88, + "best_score": { + "score": 313, + "name": "S+" + }, + "fastest": 203576, + "fastest_s": 354238, + "fastest_s_plus": 242905, + "mobs_killed": 16189 }, - "sniper_skeleton": { - "tier": 4, - "nextTier": 500, - "kills": 413, - "killsForNext": 87, - "progress": 0.826, - "levelWithProgress": 4.826 + "floor_6": { + "times_played": 190, + "completions": 145, + "best_score": { + "score": 317, + "name": "S+" + }, + "fastest": 275453, + "fastest_s": 458069, + "fastest_s_plus": 275453, + "mobs_killed": 19996 }, - "crypt_souleater": { - "tier": 7, - "nextTier": 5000, - "kills": 3374, - "killsForNext": 1626, - "progress": 0.6748, - "levelWithProgress": 7.6748 + "floor_7": { + "times_played": 265, + "completions": 14, + "best_score": { + "score": 309, + "name": "S+" + }, + "fastest": 379173, + "fastest_s": 680454, + "fastest_s_plus": 379173, + "mobs_killed": 21340 + } + }, + "master_mode_floors": { + "floor_1": { + "times_played": 0, + "completions": 7, + "best_score": { + "score": 310, + "name": "S+" + }, + "fastest": 328509, + "fastest_s": 394196, + "fastest_s_plus": 328509, + "mobs_killed": 379 }, - "crypt_dreadlord": { - "tier": 8, - "nextTier": 10000, - "kills": 5993, - "killsForNext": 4007, - "progress": 0.5993, - "levelWithProgress": 8.5993 + "floor_2": { + "times_played": 0, + "completions": 3, + "best_score": { + "score": 284, + "name": "S" + }, + "fastest": 838829, + "fastest_s": 838829, + "fastest_s_plus": 0, + "mobs_killed": 379 }, - "crypt_tank_zombie": { - "tier": 6, - "nextTier": 2500, - "kills": 1419, - "killsForNext": 1081, - "progress": 0.5676, - "levelWithProgress": 6.5676 + "floor_3": { + "times_played": 0, + "completions": 6, + "best_score": { + "score": 291, + "name": "S" + }, + "fastest": 222520, + "fastest_s": 222520, + "fastest_s_plus": 0, + "mobs_killed": 336 }, - "super_tank_zombie": { - "tier": 7, - "nextTier": 5000, - "kills": 3375, - "killsForNext": 1625, - "progress": 0.675, - "levelWithProgress": 7.675 + "floor_4": { + "times_played": 0, + "completions": 0, + "best_score": { + "score": 0, + "name": "C" + }, + "fastest": 0, + "fastest_s": 0, + "fastest_s_plus": 0, + "mobs_killed": 0 + }, + "floor_5": { + "times_played": 0, + "completions": 0, + "best_score": { + "score": 0, + "name": "C" + }, + "fastest": 0, + "fastest_s": 0, + "fastest_s_plus": 0, + "mobs_killed": 0 + } + } + } + }, + "crimson": { + "factions": { + "selected_faction": "barbarians", + "mages_reputation": -3000, + "barbarians_reputation": 5570 + }, + "matriarch": { + "pearls_collected": 3, + "last_attempt": 1658496254970 + }, + "kuudra_completed_tiers": { + "none": 23, + "hot": 55 + }, + "dojo": { + "DOJO_POINTS_MOB_KB": 820, + "DOJO_TIME_MOB_KB": 120000, + "DOJO_POINTS_WALL_JUMP": 819, + "DOJO_TIME_WALL_JUMP": 181600, + "DOJO_POINTS_ARCHER": 560, + "DOJO_TIME_ARCHER": 120000, + "DOJO_POINTS_SWORD_SWAP": 736, + "DOJO_TIME_SWORD_SWAP": 120000, + "DOJO_POINTS_SNAKE": 496, + "DOJO_TIME_SNAKE": 60550, + "DOJO_POINTS_FIREBALL": 875, + "DOJO_TIME_FIREBALL": 174150 + } + }, + "trophy_fish": { + "total_caught": 151, + "rewards": [], + "fish": { + "BLOBFISH": 57, + "BLOBFISH_BRONZE": 39, + "BLOBFISH_SILVER": 18, + "BLOBFISH_GOLD": 0, + "BLOBFISH_DIAMOND": 0, + "FLYFISH": 3, + "FLYFISH_BRONZE": 2, + "FLYFISH_SILVER": 1, + "FLYFISH_GOLD": 0, + "FLYFISH_DIAMOND": 0, + "GOLDEN_FISH": 6, + "GOLDEN_FISH_BRONZE": 3, + "GOLDEN_FISH_SILVER": 2, + "GOLDEN_FISH_GOLD": 1, + "GOLDEN_FISH_DIAMOND": 0, + "GUSHER": 46, + "GUSHER_BRONZE": 28, + "GUSHER_SILVER": 16, + "GUSHER_GOLD": 2, + "GUSHER_DIAMOND": 0, + "KARATE_FISH": 0, + "KARATE_FISH_BRONZE": 0, + "KARATE_FISH_SILVER": 0, + "KARATE_FISH_GOLD": 0, + "KARATE_FISH_DIAMOND": 0, + "LAVA_HORSE": 19, + "LAVA_HORSE_BRONZE": 16, + "LAVA_HORSE_SILVER": 2, + "LAVA_HORSE_GOLD": 1, + "LAVA_HORSE_DIAMOND": 0, + "MANA_RAY": 6, + "MANA_RAY_BRONZE": 3, + "MANA_RAY_SILVER": 3, + "MANA_RAY_GOLD": 0, + "MANA_RAY_DIAMOND": 0, + "MOLDFIN": 0, + "MOLDFIN_BRONZE": 0, + "MOLDFIN_SILVER": 0, + "MOLDFIN_GOLD": 0, + "MOLDFIN_DIAMOND": 0, + "OBFUSCATED_FISH_1": 2, + "OBFUSCATED_FISH_1_BRONZE": 1, + "OBFUSCATED_FISH_1_SILVER": 1, + "OBFUSCATED_FISH_1_GOLD": 0, + "OBFUSCATED_FISH_1_DIAMOND": 0, + "OBFUSCATED_FISH_2": 0, + "OBFUSCATED_FISH_2_BRONZE": 0, + "OBFUSCATED_FISH_2_SILVER": 0, + "OBFUSCATED_FISH_2_GOLD": 0, + "OBFUSCATED_FISH_2_DIAMOND": 0, + "OBFUSCATED_FISH_3": 0, + "OBFUSCATED_FISH_3_BRONZE": 0, + "OBFUSCATED_FISH_3_SILVER": 0, + "OBFUSCATED_FISH_3_GOLD": 0, + "OBFUSCATED_FISH_3_DIAMOND": 0, + "SKELETON_FISH": 2, + "SKELETON_FISH_BRONZE": 2, + "SKELETON_FISH_SILVER": 0, + "SKELETON_FISH_GOLD": 0, + "SKELETON_FISH_DIAMOND": 0, + "SLUGFISH": 0, + "SLUGFISH_BRONZE": 0, + "SLUGFISH_SILVER": 0, + "SLUGFISH_GOLD": 0, + "SLUGFISH_DIAMOND": 0, + "SOUL_FISH": 2, + "SOUL_FISH_BRONZE": 1, + "SOUL_FISH_SILVER": 1, + "SOUL_FISH_GOLD": 0, + "SOUL_FISH_DIAMOND": 0, + "STEAMING_HOT_FLOUNDER": 1, + "STEAMING_HOT_FLOUNDER_BRONZE": 1, + "STEAMING_HOT_FLOUNDER_SILVER": 0, + "STEAMING_HOT_FLOUNDER_GOLD": 0, + "STEAMING_HOT_FLOUNDER_DIAMOND": 0, + "SULPHUR_SKITTER": 0, + "SULPHUR_SKITTER_BRONZE": 0, + "SULPHUR_SKITTER_SILVER": 0, + "SULPHUR_SKITTER_GOLD": 0, + "SULPHUR_SKITTER_DIAMOND": 0, + "VANILLE": 0, + "VANILLE_BRONZE": 0, + "VANILLE_SILVER": 0, + "VANILLE_GOLD": 0, + "VANILLE_DIAMOND": 0, + "VOLCANIC_STONEFISH": 7, + "VOLCANIC_STONEFISH_BRONZE": 5, + "VOLCANIC_STONEFISH_SILVER": 2, + "VOLCANIC_STONEFISH_GOLD": 0, + "VOLCANIC_STONEFISH_DIAMOND": 0 + } + }, + "enchanting": { + "enchanting": 60, + "experimentation": { + "simon": { + "last_attempt": 1653391952901, + "attempts_0": 16, + "bonus_clicks": 3, + "last_claimed": 1653392085547, + "claims_0": 13, + "best_score_0": 20, + "attempts_1": 11, + "claims_1": 11, + "best_score_1": 14, + "attempts_2": 9, + "claims_2": 9, + "best_score_2": 15, + "attempts_3": 19, + "claims_3": 18, + "best_score_3": 11, + "attempts_5": 85, + "claims_5": 84, + "best_score_5": 13 + }, + "pairings": { + "last_claimed": 1653392253096, + "claims_0": 4, + "last_attempt": 0, + "claims_1": 7, + "best_score_1": 2, + "claims_2": 9, + "best_score_2": 3, + "claims_3": 24, + "best_score_3": 4, + "claims_4": 31, + "best_score_4": 5, + "claims_5": 58, + "best_score_5": 4, + "best_score_0": 4 + }, + "numbers": { + "last_attempt": 1653392151299, + "attempts_1": 13, + "bonus_clicks": 3, + "last_claimed": 1653392214053, + "claims_1": 13, + "best_score_1": 20, + "attempts_2": 27, + "claims_2": 26, + "best_score_2": 10, + "attempts_3": 88, + "claims_3": 88, + "best_score_3": 13 + }, + "claims_resets": 1, + "claims_resets_timestamp": 1653391939654 + } + }, + "farming": { + "farming": 55, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 1 + }, + "jacob": { + "talked": true, + "medals": { + "bronze": 5, + "silver": 7, + "gold": 0 + }, + "total_badges": { + "bronze": 13, + "silver": 16, + "gold": 4 + }, + "perks": { + "double_drops": 0, + "farming_level_cap": 1 + }, + "unique_golds": 1, + "crops": { + "CARROT_ITEM": { + "name": "Carrot", + "participated": true, + "unique_gold": false, + "contests": 13, + "personal_best": 261318, + "badges": { + "gold": 0, + "silver": 5, + "bronze": 2 + } }, - "crypt_lurker": { - "tier": 8, - "nextTier": 10000, - "kills": 9299, - "killsForNext": 701, - "progress": 0.9299, - "levelWithProgress": 8.9299 + "CACTUS": { + "name": "Cactus", + "participated": true, + "unique_gold": false, + "contests": 3, + "personal_best": 2759, + "badges": { + "gold": 0, + "silver": 1, + "bronze": 0 + } }, - "cellar_spider": { - "tier": 4, - "nextTier": 500, - "kills": 340, - "killsForNext": 160, - "progress": 0.68, - "levelWithProgress": 4.68 + "INK_SACK:3": { + "name": "Cocoa Beans", + "participated": false, + "unique_gold": false, + "contests": 0, + "personal_best": 0, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - "watcher_summon_undead": { - "tier": 7, - "nextTier": 5000, - "kills": 2836, - "killsForNext": 2164, - "progress": 0.5672, - "levelWithProgress": 7.5672 + "MELON": { + "name": "Melon", + "participated": true, + "unique_gold": false, + "contests": 1, + "personal_best": 49, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - "lonely_spider": { - "tier": 6, - "nextTier": 2500, - "kills": 2462, - "killsForNext": 38, - "progress": 0.9848, - "levelWithProgress": 6.9848 + "MUSHROOM_COLLECTION": { + "name": "Mushroom", + "participated": true, + "unique_gold": false, + "contests": 6, + "personal_best": 28, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - "shadow_assassin": { - "tier": 4, - "nextTier": 500, - "kills": 426, - "killsForNext": 74, - "progress": 0.852, - "levelWithProgress": 4.852 + "NETHER_STALK": { + "name": "Nether Wart", + "participated": true, + "unique_gold": false, + "contests": 9, + "personal_best": 157777, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 4 + } }, - "king_midas": { - "tier": 1, - "nextTier": 25, - "kills": 21, - "killsForNext": 4, - "progress": 0.84, - "levelWithProgress": 1.8399999999999999 + "POTATO_ITEM": { + "name": "Potato", + "participated": true, + "unique_gold": false, + "contests": 4, + "personal_best": 280, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - "super_archer": { - "tier": 6, - "nextTier": 2500, - "kills": 1409, - "killsForNext": 1091, - "progress": 0.5636, - "levelWithProgress": 6.5636 + "PUMPKIN": { + "name": "Pumpkin", + "participated": true, + "unique_gold": false, + "contests": 2, + "personal_best": 10380, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 1 + } }, - "crypt_witherskeleton": { - "tier": 7, - "nextTier": 5000, - "kills": 3436, - "killsForNext": 1564, - "progress": 0.6872, - "levelWithProgress": 7.6872 + "SUGAR_CANE": { + "name": "Sugar Cane", + "participated": true, + "unique_gold": true, + "contests": 23, + "personal_best": 260821, + "badges": { + "gold": 4, + "silver": 7, + "bronze": 3 + } }, - "zombie_commander": { - "tier": 5, - "nextTier": 1000, - "kills": 930, - "killsForNext": 70, - "progress": 0.93, - "levelWithProgress": 5.93 + "WHEAT": { + "name": "Wheat", + "participated": true, + "unique_gold": false, + "contests": 7, + "personal_best": 62011, + "badges": { + "gold": 0, + "silver": 3, + "bronze": 3 + } } - } - } - }, - "dungeons": { - "selected_class": "Archer", - "secrets_found": 5452, - "classes": { - "healer": { - "totalXp": 224153.6866333335, - "xp": 188140, - "level": 21, - "xpCurrent": 36013, - "xpForNext": 71500, - "progress": 0.5036783216783217, - "levelWithProgress": 21.503678321678322 - }, - "mage": { - "totalXp": 1745907.942233335, - "xp": 1684640, - "level": 28, - "xpCurrent": 61267, - "xpForNext": 600000, - "progress": 0.10211166666666667, - "levelWithProgress": 28.102111666666666 - }, - "berserk": { - "totalXp": 370437.1206333336, - "xp": 356640, - "level": 23, - "xpCurrent": 13797, - "xpForNext": 132000, - "progress": 0.10452272727272727, - "levelWithProgress": 23.104522727272727 - }, - "archer": { - "totalXp": 360943.01841666666, - "xp": 356640, - "level": 23, - "xpCurrent": 4303, - "xpForNext": 132000, - "progress": 0.03259848484848485, - "levelWithProgress": 23.032598484848485 - }, - "tank": { - "totalXp": 634666.5270666663, - "xp": 488640, - "level": 24, - "xpCurrent": 146026, - "xpForNext": 180000, - "progress": 0.8112555555555555, - "levelWithProgress": 24.811255555555555 - } - }, - "catacombs": { - "skill": { - "totalXp": 2871913.394266667, - "xp": 2284640, - "level": 29, - "xpCurrent": 587273, - "xpForNext": 800000, - "progress": 0.73409125, - "levelWithProgress": 29.73409125 }, - "highest_tier_completed": "M3", - "floors": { - "entrance": { - "times_played": 6, - "completions": 5, - "best_score": { - "score": 207, - "name": "B" + "contests": { + "attended_contests": 68, + "all_contests": [ + { + "date": "6_21_99", + "crop": "PUMPKIN", + "collected": 10380, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1132, + "percentage": 42.74924471299094 + } + }, + { + "date": "6_24_99", + "crop": "CACTUS", + "collected": 2759, + "claimed": true, + "medal": "silver", + "placing": { + "position": 42, + "percentage": 19.35483870967742 + } + }, + { + "date": "6_24_99", + "crop": "NETHER_STALK", + "collected": 302, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "7_2_99", + "crop": "PUMPKIN", + "collected": 211, + "claimed": true, + "medal": null, + "placing": { + "position": 3024, + "percentage": 94.91525423728814 + } + }, + { + "date": "8_16_99", + "crop": "CARROT_ITEM", + "collected": 909, + "claimed": true, + "medal": null, + "placing": { + "position": 976, + "percentage": 78.70967741935485 + } + }, + { + "date": "8_16_99", + "crop": "SUGAR_CANE", + "collected": 16, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "8_28_99", + "crop": "CARROT_ITEM", + "collected": 2404, + "claimed": true, + "medal": null, + "placing": { + "position": 1273, + "percentage": 70.13774104683196 + } + }, + { + "date": "9_9_99", + "crop": "CARROT_ITEM", + "collected": 166589, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 589, + "percentage": 27.510509107893512 + } + }, + { + "date": "10_23_99", + "crop": "CARROT_ITEM", + "collected": 198220, + "claimed": true, + "medal": "silver", + "placing": { + "position": 409, + "percentage": 20.05885237861697 + } + }, + { + "date": "10_29_99", + "crop": "CARROT_ITEM", + "collected": 194582, + "claimed": true, + "medal": "silver", + "placing": { + "position": 690, + "percentage": 20.462633451957295 + } + }, + { + "date": "11_1_99", + "crop": "WHEAT", + "collected": 2293, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1890, + "percentage": 58.75038856077091 + } + }, + { + "date": "11_10_99", + "crop": "WHEAT", + "collected": 62011, + "claimed": true, + "medal": "silver", + "placing": { + "position": 283, + "percentage": 5.449643751203543 + } }, - "fastest": 115924, - "fastest_s": 0, - "fastest_s_plus": 0, - "mobs_killed": 468 - }, - "floor_1": { - "times_played": 45, - "completions": 31, - "best_score": { - "score": 308, - "name": "S+" + { + "date": "2_1_100", + "crop": "WHEAT", + "collected": 41505, + "claimed": true, + "medal": "silver", + "placing": { + "position": 439, + "percentage": 13.629307668425955 + } }, - "fastest": 106560, - "fastest_s": 162395, - "fastest_s_plus": 167136, - "mobs_killed": 2536 - }, - "floor_2": { - "times_played": 71, - "completions": 56, - "best_score": { - "score": 305, - "name": "S+" + { + "date": "3_18_100", + "crop": "CARROT_ITEM", + "collected": 180787, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 389, + "percentage": 27.164804469273747 + } }, - "fastest": 207269, - "fastest_s": 453148, - "fastest_s_plus": 645568, - "mobs_killed": 4445 - }, - "floor_3": { - "times_played": 96, - "completions": 71, - "best_score": { - "score": 311, - "name": "S+" + { + "date": "3_21_100", + "crop": "WHEAT", + "collected": 57318, + "claimed": true, + "medal": "silver", + "placing": { + "position": 216, + "percentage": 7.659574468085106 + } }, - "fastest": 187738, - "fastest_s": 391185, - "fastest_s_plus": 479742, - "mobs_killed": 6298 - }, - "floor_4": { - "times_played": 52, - "completions": 35, - "best_score": { - "score": 311, - "name": "S+" + { + "date": "6_21_100", + "crop": "CARROT_ITEM", + "collected": 250951, + "claimed": true, + "medal": "silver", + "placing": { + "position": 520, + "percentage": 18.01801801801802 + } }, - "fastest": 266286, - "fastest_s": 266286, - "fastest_s_plus": 508720, - "mobs_killed": 7028 - }, - "floor_5": { - "times_played": 128, - "completions": 88, - "best_score": { - "score": 313, - "name": "S+" + { + "date": "1_11_101", + "crop": "CARROT_ITEM", + "collected": 254403, + "claimed": true, + "medal": "silver", + "placing": { + "position": 398, + "percentage": 16.172287687931735 + } }, - "fastest": 203576, - "fastest_s": 354238, - "fastest_s_plus": 242905, - "mobs_killed": 16189 - }, - "floor_6": { - "times_played": 190, - "completions": 145, - "best_score": { - "score": 317, - "name": "S+" + { + "date": "5_28_101", + "crop": "CARROT_ITEM", + "collected": 261318, + "claimed": true, + "medal": "silver", + "placing": { + "position": 388, + "percentage": 16.31623212783852 + } }, - "fastest": 275453, - "fastest_s": 458069, - "fastest_s_plus": 275453, - "mobs_killed": 19996 - }, - "floor_7": { - "times_played": 265, - "completions": 14, - "best_score": { - "score": 309, - "name": "S+" + { + "date": "1_14_111", + "crop": "WHEAT", + "collected": 7355, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 568, + "percentage": 34.65527760829774 + } }, - "fastest": 379173, - "fastest_s": 680454, - "fastest_s_plus": 379173, - "mobs_killed": 21340 - } - }, - "master_mode_floors": { - "floor_1": { - "times_played": 0, - "completions": 7, - "best_score": { - "score": 310, - "name": "S+" + { + "date": "3_27_111", + "crop": "NETHER_STALK", + "collected": 147293, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1260, + "percentage": 55.85106382978723 + } }, - "fastest": 328509, - "fastest_s": 394196, - "fastest_s_plus": 328509, - "mobs_killed": 379 - }, - "floor_2": { - "times_played": 0, - "completions": 3, - "best_score": { - "score": 284, - "name": "S" + { + "date": "3_30_111", + "crop": "NETHER_STALK", + "collected": 139615, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1191, + "percentage": 51.33620689655173 + } }, - "fastest": 838829, - "fastest_s": 838829, - "fastest_s_plus": 0, - "mobs_killed": 379 - }, - "floor_3": { - "times_played": 0, - "completions": 6, - "best_score": { - "score": 291, - "name": "S" + { + "date": "6_12_111", + "crop": "NETHER_STALK", + "collected": 150602, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1467, + "percentage": 51.58227848101266 + } }, - "fastest": 222520, - "fastest_s": 222520, - "fastest_s_plus": 0, - "mobs_killed": 336 - }, - "floor_4": { - "times_played": 0, - "completions": 0, - "best_score": { - "score": 0, - "name": "C" + { + "date": "1_14_112", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": {} }, - "fastest": 0, - "fastest_s": 0, - "fastest_s_plus": 0, - "mobs_killed": 0 - }, - "floor_5": { - "times_played": 0, - "completions": 0, - "best_score": { - "score": 0, - "name": "C" + { + "date": "3_18_112", + "crop": "POTATO_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_27_112", + "crop": "NETHER_STALK", + "collected": 157777, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1135, + "percentage": 33.90083632019116 + } + }, + { + "date": "6_21_112", + "crop": "SUGAR_CANE", + "collected": 4, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "8_4_112", + "crop": "SUGAR_CANE", + "collected": 32, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "1_2_113", + "crop": "SUGAR_CANE", + "collected": 35110, + "claimed": true, + "medal": null, + "placing": { + "position": 1329, + "percentage": 63.95572666025024 + } + }, + { + "date": "8_4_118", + "crop": "SUGAR_CANE", + "collected": 225754, + "claimed": true, + "medal": "silver", + "placing": { + "position": 133, + "percentage": 6.120570639668661 + } + }, + { + "date": "8_13_118", + "crop": "SUGAR_CANE", + "collected": 230120, + "claimed": true, + "medal": "silver", + "placing": { + "position": 142, + "percentage": 5.3584905660377355 + } + }, + { + "date": "8_22_118", + "crop": "SUGAR_CANE", + "collected": 241842, + "claimed": true, + "medal": "silver", + "placing": { + "position": 159, + "percentage": 5.218247456514605 + } + }, + { + "date": "8_31_118", + "crop": "SUGAR_CANE", + "collected": 251791, + "claimed": true, + "medal": "silver", + "placing": { + "position": 108, + "percentage": 5.152671755725191 + } + }, + { + "date": "10_23_118", + "crop": "NETHER_STALK", + "collected": 18, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "11_1_118", + "crop": "SUGAR_CANE", + "collected": 255061, + "claimed": true, + "medal": "gold", + "placing": { + "position": 74, + "percentage": 2.6831036983321246 + } + }, + { + "date": "11_10_118", + "crop": "SUGAR_CANE", + "collected": 156314, + "claimed": true, + "medal": "silver", + "placing": { + "position": 479, + "percentage": 14.815960408289513 + } + }, + { + "date": "12_24_118", + "crop": "NETHER_STALK", + "collected": 940, + "claimed": true, + "medal": null, + "placing": { + "position": 1156, + "percentage": 84.01162790697676 + } + }, + { + "date": "12_30_118", + "crop": "SUGAR_CANE", + "collected": 250419, + "claimed": true, + "medal": "gold", + "placing": { + "position": 83, + "percentage": 4.377637130801688 + } + }, + { + "date": "1_5_119", + "crop": "SUGAR_CANE", + "collected": 259533, + "claimed": true, + "medal": "gold", + "placing": { + "position": 69, + "percentage": 2.7090694935217905 + } + }, + { + "date": "2_28_119", + "crop": "POTATO_ITEM", + "collected": 280, + "claimed": true, + "medal": null, + "placing": { + "position": 533, + "percentage": 78.84615384615384 + } + }, + { + "date": "1_26_124", + "crop": "SUGAR_CANE", + "collected": 89885, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 903, + "percentage": 32.10095982936367 + } + }, + { + "date": "4_26_127", + "crop": "WHEAT", + "collected": 3658, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 560, + "percentage": 36.86635944700461 + } + }, + { + "date": "11_25_127", + "crop": "SUGAR_CANE", + "collected": 260821, + "claimed": true, + "medal": "gold", + "placing": { + "position": 98, + "percentage": 4.027949034114262 + } + }, + { + "date": "9_24_131", + "crop": "MUSHROOM_COLLECTION", + "collected": 8, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_6_132", + "crop": "SUGAR_CANE", + "collected": 170, + "claimed": true, + "medal": null, + "placing": { + "position": 3283, + "percentage": 96.72952268709487 + } + }, + { + "date": "9_3_134", + "crop": "WHEAT", + "collected": 2, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "12_30_136", + "crop": "SUGAR_CANE", + "collected": 15, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_9_137", + "crop": "CACTUS", + "collected": 4, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_18_137", + "crop": "SUGAR_CANE", + "collected": 15, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "12_15_137", + "crop": "CARROT_ITEM", + "collected": 8, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "9_27_138", + "crop": "POTATO_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "11_31_138", + "crop": "MUSHROOM_COLLECTION", + "collected": 3, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "2_1_140", + "crop": "CACTUS", + "collected": 2, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "10_11_143", + "crop": "SUGAR_CANE", + "collected": 121790, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1362, + "percentage": 34.62125063548551 + } + }, + { + "date": "10_14_143", + "crop": "SUGAR_CANE", + "collected": 9839, + "claimed": true, + "medal": null, + "placing": { + "position": 3102, + "percentage": 75.01813784764208 + } + }, + { + "date": "10_17_143", + "crop": "NETHER_STALK", + "collected": 20, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_3_144", + "crop": "MELON", + "collected": 49, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_18_144", + "crop": "SUGAR_CANE", + "collected": 99402, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1574, + "percentage": 43.432671081677704 + } + }, + { + "date": "2_28_145", + "crop": "SUGAR_CANE", + "collected": 233667, + "claimed": true, + "medal": "silver", + "placing": { + "position": 510, + "percentage": 14.233882221602009 + } + }, + { + "date": "5_10_145", + "crop": "SUGAR_CANE", + "collected": 204288, + "claimed": true, + "medal": "silver", + "placing": { + "position": 712, + "percentage": 21.887488472179527 + } + }, + { + "date": "9_21_167", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "2_4_200", + "crop": "POTATO_ITEM", + "collected": 18, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "8_22_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 4, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "9_12_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 4, + "claimed": false, + "medal": null, + "placing": {} }, - "fastest": 0, - "fastest_s": 0, - "fastest_s_plus": 0, - "mobs_killed": 0 - } + { + "date": "11_16_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 16, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "3_27_201", + "crop": "SUGAR_CANE", + "collected": 78450, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "1_29_202", + "crop": "MUSHROOM_COLLECTION", + "collected": 28, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "7_8_205", + "crop": "NETHER_STALK", + "collected": 24, + "claimed": false, + "medal": null, + "placing": {} + }, + { + "date": "12_9_217", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": {} + } + ] } } }, - "crimson": { - "factions": { - "selected_faction": "barbarians", - "mages_reputation": -3000, - "barbarians_reputation": 5570 - }, - "matriarch": { - "pearls_collected": 3, - "last_attempt": 1658496254970 - }, - "kuudra_completed_tiers": { - "none": 23, - "hot": 55 - }, - "dojo": { - "DOJO_POINTS_MOB_KB": 820, - "DOJO_TIME_MOB_KB": 120000, - "DOJO_POINTS_WALL_JUMP": 819, - "DOJO_TIME_WALL_JUMP": 181600, - "DOJO_POINTS_ARCHER": 560, - "DOJO_TIME_ARCHER": 120000, - "DOJO_POINTS_SWORD_SWAP": 736, - "DOJO_TIME_SWORD_SWAP": 120000, - "DOJO_POINTS_SNAKE": 496, - "DOJO_TIME_SNAKE": 60550, - "DOJO_POINTS_FIREBALL": 875, - "DOJO_TIME_FIREBALL": 174150 - } - }, - "trophy_fish": { - "total_caught": 151, - "rewards": [ - - ], - "fish": { - "BLOBFISH": 57, - "BLOBFISH_BRONZE": 39, - "BLOBFISH_SILVER": 18, - "BLOBFISH_GOLD": 0, - "BLOBFISH_DIAMOND": 0, - "FLYFISH": 3, - "FLYFISH_BRONZE": 2, - "FLYFISH_SILVER": 1, - "FLYFISH_GOLD": 0, - "FLYFISH_DIAMOND": 0, - "GOLDEN_FISH": 6, - "GOLDEN_FISH_BRONZE": 3, - "GOLDEN_FISH_SILVER": 2, - "GOLDEN_FISH_GOLD": 1, - "GOLDEN_FISH_DIAMOND": 0, - "GUSHER": 46, - "GUSHER_BRONZE": 28, - "GUSHER_SILVER": 16, - "GUSHER_GOLD": 2, - "GUSHER_DIAMOND": 0, - "KARATE_FISH": 0, - "KARATE_FISH_BRONZE": 0, - "KARATE_FISH_SILVER": 0, - "KARATE_FISH_GOLD": 0, - "KARATE_FISH_DIAMOND": 0, - "LAVA_HORSE": 19, - "LAVA_HORSE_BRONZE": 16, - "LAVA_HORSE_SILVER": 2, - "LAVA_HORSE_GOLD": 1, - "LAVA_HORSE_DIAMOND": 0, - "MANA_RAY": 6, - "MANA_RAY_BRONZE": 3, - "MANA_RAY_SILVER": 3, - "MANA_RAY_GOLD": 0, - "MANA_RAY_DIAMOND": 0, - "MOLDFIN": 0, - "MOLDFIN_BRONZE": 0, - "MOLDFIN_SILVER": 0, - "MOLDFIN_GOLD": 0, - "MOLDFIN_DIAMOND": 0, - "OBFUSCATED_FISH_1": 2, - "OBFUSCATED_FISH_1_BRONZE": 1, - "OBFUSCATED_FISH_1_SILVER": 1, - "OBFUSCATED_FISH_1_GOLD": 0, - "OBFUSCATED_FISH_1_DIAMOND": 0, - "OBFUSCATED_FISH_2": 0, - "OBFUSCATED_FISH_2_BRONZE": 0, - "OBFUSCATED_FISH_2_SILVER": 0, - "OBFUSCATED_FISH_2_GOLD": 0, - "OBFUSCATED_FISH_2_DIAMOND": 0, - "OBFUSCATED_FISH_3": 0, - "OBFUSCATED_FISH_3_BRONZE": 0, - "OBFUSCATED_FISH_3_SILVER": 0, - "OBFUSCATED_FISH_3_GOLD": 0, - "OBFUSCATED_FISH_3_DIAMOND": 0, - "SKELETON_FISH": 2, - "SKELETON_FISH_BRONZE": 2, - "SKELETON_FISH_SILVER": 0, - "SKELETON_FISH_GOLD": 0, - "SKELETON_FISH_DIAMOND": 0, - "SLUGFISH": 0, - "SLUGFISH_BRONZE": 0, - "SLUGFISH_SILVER": 0, - "SLUGFISH_GOLD": 0, - "SLUGFISH_DIAMOND": 0, - "SOUL_FISH": 2, - "SOUL_FISH_BRONZE": 1, - "SOUL_FISH_SILVER": 1, - "SOUL_FISH_GOLD": 0, - "SOUL_FISH_DIAMOND": 0, - "STEAMING_HOT_FLOUNDER": 1, - "STEAMING_HOT_FLOUNDER_BRONZE": 1, - "STEAMING_HOT_FLOUNDER_SILVER": 0, - "STEAMING_HOT_FLOUNDER_GOLD": 0, - "STEAMING_HOT_FLOUNDER_DIAMOND": 0, - "SULPHUR_SKITTER": 0, - "SULPHUR_SKITTER_BRONZE": 0, - "SULPHUR_SKITTER_SILVER": 0, - "SULPHUR_SKITTER_GOLD": 0, - "SULPHUR_SKITTER_DIAMOND": 0, - "VANILLE": 0, - "VANILLE_BRONZE": 0, - "VANILLE_SILVER": 0, - "VANILLE_GOLD": 0, - "VANILLE_DIAMOND": 0, - "VOLCANIC_STONEFISH": 7, - "VOLCANIC_STONEFISH_BRONZE": 5, - "VOLCANIC_STONEFISH_SILVER": 2, - "VOLCANIC_STONEFISH_GOLD": 0, - "VOLCANIC_STONEFISH_DIAMOND": 0 - } - }, "mining": { "mining": 60, "mithril_powder": { @@ -6932,9 +6636,7 @@ "maxLevel": 20 } ], - "disabled_perks": [ - "forge_time" - ], + "disabled_perks": ["forge_time"], "last_reset": 1631300262538, "pickaxe_ability": "Mining Speed Boost" }, @@ -6945,9 +6647,7 @@ "name": "Jade Crystal", "id": "jade_crystal", "total_placed": 4, - "statues_placed": [ - - ], + "statues_placed": [], "state": "Not Found" }, { @@ -6959,9 +6659,7 @@ { "name": "Sapphire Crystal", "total_placed": 4, - "parts_delivered": [ - - ], + "parts_delivered": [], "state": "Not Found" }, { @@ -7055,9 +6753,7 @@ "level": 0, "xpForNext": 10, "progress": 0, - "kills": { - - } + "kills": {} } }, "milestones": { @@ -7150,6 +6846,12 @@ "id": "PULSE_RING", "price": 40000 }, + { + "name": "Piggy Bank", + "rarity": "uncommon", + "id": "PIGGY_BANK", + "price": 80000 + }, { "name": "Master Skull - Tier 1", "rarity": "common", @@ -7166,79 +6868,85 @@ "name": "Jungle Amulet", "rarity": "uncommon", "id": "JUNGLE_AMULET", - "price": 1190000 + "price": 1650000 }, { "name": "Handy Blood Chalice", "rarity": "common", "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 - }, - { - "name": "Soulflow Battery", - "rarity": "rare", - "id": "SOULFLOW_BATTERY", - "price": 1600000 + "price": 1890000 }, { "name": "Master Skull - Tier 3", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_3", - "price": 2000000 - }, - { - "name": "Titanium Ring", - "rarity": "rare", - "id": "TITANIUM_RING", - "price": 2399999 + "price": 1974000 }, { "name": "Treasure Ring", "rarity": "epic", "id": "TREASURE_RING", - "price": 3050000 + "price": 3300000 }, { - "name": "Hunter Talisman", - "rarity": "uncommon", - "id": "HUNTER_TALISMAN", - "price": 4200000 + "name": "Titanium Ring", + "rarity": "rare", + "id": "TITANIUM_RING", + "price": 3574000 }, { "name": "Blue Jerry Talisman", "rarity": "rare", "id": "JERRY_TALISMAN_BLUE", + "price": 4500000 + }, + { + "name": "Soulflow Battery", + "rarity": "rare", + "id": "SOULFLOW_BATTERY", + "price": 5000000 + }, + { + "name": "Hunter Talisman", + "rarity": "uncommon", + "id": "HUNTER_TALISMAN", "price": 5500000 }, { "name": "Titanium Artifact", "rarity": "epic", "id": "TITANIUM_ARTIFACT", - "price": 6700000 + "price": 6889000 }, { "name": "Master Skull - Tier 4", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_4", - "price": 8290000 - }, - { - "name": "Shady Ring", - "rarity": "uncommon", - "id": "SHADY_RING", - "price": 13200000 + "price": 8148999 }, { "name": "Titanium Relic", "rarity": "legendary", "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 15000000 + }, + { + "name": "Bait Ring", + "rarity": "rare", + "id": "BAIT_RING", + "price": 16999000 + }, + { + "name": "Shady Ring", + "rarity": "uncommon", + "id": "SHADY_RING", + "price": 19000000 }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -7250,115 +6958,115 @@ "name": "Purple Jerry Talisman", "rarity": "epic", "id": "JERRY_TALISMAN_PURPLE", - "price": 23400000 - }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 + "price": 21900000 }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 - }, - { - "name": "Bingo Talisman", - "rarity": "common", - "id": "BINGO_TALISMAN", - "price": 32000000 + "price": 29350000 }, { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Master Skull - Tier 5", "rarity": "rare", "id": "MASTER_SKULL_TIER_5", - "price": 33499999 + "price": 32000000 + }, + { + "name": "Bingo Talisman", + "rarity": "common", + "id": "BINGO_TALISMAN", + "price": 32750000 }, { "name": "Crooked Artifact", "rarity": "rare", "id": "CROOKED_ARTIFACT", - "price": 39000000 + "price": 37000000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 }, { - "name": "Artifact of Power", - "rarity": "rare", - "id": "POWER_ARTIFACT", - "price": 46400000 + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Wither Artifact", "rarity": "epic", "id": "WITHER_ARTIFACT", - "price": 50298000 + "price": 44995000 + }, + { + "name": "Artifact of Power", + "rarity": "rare", + "id": "POWER_ARTIFACT", + "price": 46400000 }, { "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 - }, - { - "name": "Burststopper Talisman", - "rarity": "rare", - "id": "BURSTSTOPPER_TALISMAN", - "price": 75000000 + "price": 69499900 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 + }, + { + "name": "Burststopper Talisman", + "rarity": "rare", + "id": "BURSTSTOPPER_TALISMAN", + "price": 106000000 }, { "name": "Master Skull - Tier 6", "rarity": "epic", "id": "MASTER_SKULL_TIER_6", - "price": 140000000 + "price": 146000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -7370,13 +7078,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ], "maxTalismans": [ @@ -7410,29 +7118,35 @@ "id": "PULSE_RING", "price": 40000 }, + { + "name": "Piggy Bank", + "rarity": "uncommon", + "id": "PIGGY_BANK", + "price": 80000 + }, { "name": "Jungle Amulet", "rarity": "uncommon", "id": "JUNGLE_AMULET", - "price": 1190000 + "price": 1650000 }, { "name": "Handy Blood Chalice", "rarity": "common", "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 + "price": 1890000 }, { "name": "Titanium Relic", "rarity": "legendary", "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 15000000 }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -7440,41 +7154,41 @@ "id": "JACOBUS_REGISTER", "price": 21500000 }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 - }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 + "price": 29350000 }, { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 + }, + { + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Artifact of Power", @@ -7486,31 +7200,31 @@ "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 + "price": 69499900 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -7522,13 +7236,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ] }, @@ -9835,9 +9549,7 @@ "id": 397, "Count": 1, "tag": { - "ench": [ - - ], + "ench": [], "HideFlags": 254, "SkullOwner": { "Id": "a4baabfd-565a-33f1-a52b-b120cb7c749b", @@ -9880,2321 +9592,2358 @@ "reforge": "necrotic" } }, - "Damage": 3 - } - }, - "equipment": { - "necklace": { - - }, - "cloak": { - - }, - "belt": { - "id": 397, - "Count": 1, - "tag": { - "HideFlags": 254, - "SkullOwner": { - "Id": "6cdab1c1-42bd-3604-8656-2f68fb474ff6", - "Properties": { - "textures": [ - { - "Value": "ewogICJ0aW1lc3RhbXAiIDogMTY0MzU5OTY3OTc4MywKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVhNGY3ZTU3YTQzNTk0NTdjZTBlN2RhMjdlODUxM2E4YjYxOTdmMWNhNjhkMDcxNTQyYzY2ZjhhNDFiYWY0ZWQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==" - } - ] - } + "Damage": 3 + } + }, + "equipment": { + "necklace": {}, + "cloak": {}, + "belt": { + "id": 397, + "Count": 1, + "tag": { + "HideFlags": 254, + "SkullOwner": { + "Id": "6cdab1c1-42bd-3604-8656-2f68fb474ff6", + "Properties": { + "textures": [ + { + "Value": "ewogICJ0aW1lc3RhbXAiIDogMTY0MzU5OTY3OTc4MywKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVhNGY3ZTU3YTQzNTk0NTdjZTBlN2RhMjdlODUxM2E4YjYxOTdmMWNhNjhkMDcxNTQyYzY2ZjhhNDFiYWY0ZWQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==" + } + ] + } + }, + "display": { + "Lore": [ + "§7Health: §a+25", + "§7Defense: §a+15", + "", + "§7Reduces damage taken by §c4%§7.", + "", + "§7§8This item can be reforged!", + "§8§l* §8Soulbound §8§l*", + "§9§lRARE BELT" + ], + "Name": "§9Blue Belt" + }, + "ExtraAttributes": { + "id": "DOJO_BLUE_BELT", + "uuid": "6d027b01-2437-4e4d-a495-3bb252739ea3", + "timestamp": 1650718680 + } + }, + "Damage": 3 + }, + "gloves": {} + }, + "pets": { + "auto_pet": { + "rules_limit": 4, + "rules": [ + { + "id": "ENTER_ISLAND", + "pet": "BAL", + "exceptions": [], + "disabled": false, + "data": { + "island": "mining_3" + } + }, + { + "id": "START_SLAYER_QUEST", + "pet": "ENDERMAN", + "exceptions": [], + "disabled": false, + "data": {} + }, + { + "id": "BOSS_SPAWN", + "pet": "ENDER_DRAGON", + "exceptions": [], + "disabled": false, + "data": { + "boss": "enderman", + "category": "slayer" + } + }, + { + "id": "BOSS_SPAWN", + "pet": "BLACK_CAT", + "exceptions": [], + "disabled": false, + "data": { + "boss": "wolf", + "category": "slayer" + } + } + ] + }, + "pets": [ + { + "type": "AMMONITE", + "exp": 10093904.518010952, + "active": true, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 6820216.005904126, + "modified": { + "name": "[Lvl 88] Legendary Ammonite", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "sea_creature_chance": 6.16 + }, + "texture_path": "https://sky.shiiyu.moe/head/a074a7bd976fe6aba1624161793be547d54c835cf422243a851ba09d1e650553", + "name": "[Lvl 88] Ammonite", + "display_name": "Ammonite", + "xpMaxLevel": 25353230, + "level": 88, + "xpCurrent": 61074, + "xpForNext": 791700, + "progress": 0.07714285714285714, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a+6%", + " ", + "§6Heart of the Sea", + "§7Each Heart of the Mountain level grants §3+0.9 α Sea Creature Chance", + " ", + "§6Not a Snail", + "§7Each fishing and mining level grants §f+1.8 ✦ Speed §7and §a+1.8 ❈ Defense", + " ", + "§6Gift of the Ammonite", + "§7Increases your fishing speed by §a0.5% §7for each mining level", + "", + "§6Held Item: §fAll Skills Exp Boost", + "§7Gives +§a10% §7pet exp for all skills", + " ", + "§7Progress to Level 89: §e7.7%", + "§2--§f------------------ §e61,074 §6/ §e792K", + "", + "§7Total XP: §e10.0M §6/ §e25.3M §6(39%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "BAT", + "exp": 25365455.329407804, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_VAMPIRE_FANG", + "candyUsed": 0, + "skin": null, + "price": 7249999, + "modified": { + "name": "[Lvl 100] Legendary Bat", + "isPet": true + }, + "rarity": "mythic", + "stats": { + "intelligence": 100, + "speed": 5, + "sea_creature_chance": 5 + }, + "texture_path": "https://sky.shiiyu.moe/head/382fc3f71b41769376a9e92fe3adbaac3772b999b219c9d6b4680ba9983e527", + "name": "[Lvl 100] Bat", + "display_name": "Bat", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Intelligence: §a+100", + "§7Speed: §a+5", + "§7Sea Creature Chance: §a+5%", + " ", + "§6Candy Lover", + "§7Increases the chance for mobs to drop Candy by §a20%", + " ", + "§6Nightmare", + "§7During night, gain §a30 §9✎ Intelligence, §a50 §f✦ Speed§7, and night vision", + " ", + "§6Wings of Steel", + "§7Deals §a+50% §7damage to §6Spooky §7enemies during the §6Spooky Festival", + " ", + "§6Sonar", + "§7+§a25% §7chance to fish up spooky sea creatures", + "", + "§6Held Item: §6Vampire Fang", + "§7Upgrades a Bat pet from §6Legendary §7to §dMythic §7adding a bonus perk and bonus stats!", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "WOLF", + "exp": 64147245.20134974, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "skin": null, + "price": 23106428, + "modified": { + "name": "[Lvl 100] Legendary Wolf", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 50, + "crit_damage": 10, + "speed": 20, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/dc3dd984bb659849bd52994046964c22725f717e986b12d548fd169367d494", + "name": "[Lvl 100] Wolf", + "display_name": "Wolf", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+50", + "§7Crit Damage: §a+10", + "§7Speed: §a+20", + "§7True Defense: §a+10", + " ", + "§6Alpha Dog", + "§7Take §a30% §7less damage from wolves", + " ", + "§6Pack Leader", + "§7Gain §a15 §9 ☠ Crit Damage §7for every nearby wolf monsters", + "§8Max 10 wolves", + " ", + "§6Combat Exp Boost", + "§7Boosts your Combat exp by §a30%", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e64.1M §6/ §e25.3M §6(253%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "OCELOT", + "exp": 4530919.826667831, + "active": false, + "tier": "LEGENDARY", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 7728634.044289301, + "modified": { + "name": "[Lvl 76] Legendary Ocelot", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 38, + "ferocity": 7.6000000000000005 + }, + "texture_path": "https://sky.shiiyu.moe/head/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1", + "name": "[Lvl 76] Ocelot", + "display_name": "Ocelot", + "xpMaxLevel": 25353230, + "level": 76, + "xpCurrent": 298489, + "xpForNext": 311700, + "progress": 0.9576162977221687, + "lore": [ + "§8Foraging Pet", + "", + "§7Speed: §a+38", + "§7Ferocity: §a+7", + " ", + "§6Foraging Exp Boost", + "§7Boosts your Foraging exp by §a22.8%", + " ", + "§6Tree Hugger", + "§7Foraging minions work §a22.8% §7faster while on your island", + " ", + "§6Tree Essence", + "§7Gain a §a22.8% §7chance to get exp from breaking a log", + " ", + "§7Progress to Level 77: §e95.8%", + "§2--------------------§f §e298,489 §6/ §e312K", + "", + "§7Total XP: §e4.5M §6/ §e25.3M §6(17%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "SQUID", + "exp": 5301460.283916464, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", + "candyUsed": 0, + "skin": null, + "price": 12649409.724261776, + "modified": { + "name": "[Lvl 79] Legendary Squid", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 39.5, + "intelligence": 39.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/01433be242366af126da434b8735df1eb5b3cb2cede39145974e9c483607bac", + "name": "[Lvl 79] Squid", + "display_name": "Squid", + "xpMaxLevel": 25353230, + "level": 79, + "xpCurrent": 65930, + "xpForNext": 383700, + "progress": 0.17182694813656502, + "lore": [ + "§8Fishing Pet", + "", + "§7Health: §a+39", + "§7Intelligence: §a+39", + " ", + "§6More Ink", + "§7Gain a §a79% §7chance to get double drops from squids", + " ", + "§6Ink Specialty", + "§7Buffs the Ink Wand by §a31.6 §c❁ Damage §7and §a15.8 §c❁ Strength", + " ", + "§6Fishing Exp Boost", + "§7Boosts your Fishing exp by §a23.7%", + "", + "§6Held Item: §aFishing Exp Boost", + "§7Gives +§a30% §7pet exp for Fishing", + " ", + "§7Progress to Level 80: §e17.2%", + "§2----§f---------------- §e65,930 §6/ §e384K", + "", + "§7Total XP: §e5.3M §6/ §e25.3M §6(20%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "TIGER", + "exp": 16637923.460626705, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "skin": null, + "price": 27121976.519028433, + "modified": { + "name": "[Lvl 94] Legendary Tiger", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "strength": 14.4, + "crit_chance": 4.7, + "crit_damage": 47, + "ferocity": 23.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/fc42638744922b5fcf62cd9bf27eeab91b2e72d6c70e86cc5aa3883993e9d84", + "name": "[Lvl 94] Tiger", + "display_name": "Tiger", + "xpMaxLevel": 25353230, + "level": 94, + "xpCurrent": 704893, + "xpForNext": 1286700, + "progress": 0.5478301080282895, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+14", + "§7Crit Chance: §a+4", + "§7Crit Damage: §a+47", + "§7Ferocity: §a+23", + " ", + "§6Merciless Swipe", + "§7Gain \t§c+28.2% ⫽ Ferocity.", + " ", + "§6Hemorrhage", + "§7Melee attacks reduce healing by §651.7% §7for §a10s", + " ", + "§6Apex Predator", + "§7Deal §c+18.8% §7damage against targets with no other mobs within §a15 §7blocks", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§7Progress to Level 95: §e54.8%", + "§2-----------§f--------- §e704,893 §6/ §e1.3M", + "", + "§7Total XP: §e16.6M §6/ §e25.3M §6(65%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "RABBIT", + "exp": 156606948.77894327, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 10594999, + "modified": { + "name": "[Lvl 100] Legendary Rabbit", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 100, + "speed": 20 + }, + "texture_path": "https://sky.shiiyu.moe/head/117bffc1972acd7f3b4a8f43b5b6c7534695b8fd62677e0306b2831574b", + "name": "[Lvl 100] Rabbit", + "display_name": "Rabbit", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Farming Pet", + "", + "§7Health: §a+100", + "§7Speed: §a+20", + " ", + "§6Happy Feet ", + "§7Jump Potions also give §a+50 §7speed", + " ", + "§6Farming Exp Boost ", + "§7Boosts your Farming Exp by §a30%", + " ", + "§6Efficient Farming", + "§7Farming minions work §a30% §7faster while on your island.", + "", + "§6Held Item: §9Farming Exp Boost", + "§7Gives +§a40% §7pet exp for Farming", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e156.6M §6/ §e25.3M §6(617%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "SKELETON_HORSE", + "exp": 1003415.3682159979, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_SADDLE", + "candyUsed": 10, + "skin": null, + "price": 1780074.9931128544, + "modified": { + "name": "[Lvl 56] Legendary Skeleton Horse", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 28, + "intelligence": 56 + }, + "texture_path": "https://sky.shiiyu.moe/head/47effce35132c86ff72bcae77dfbb1d22587e94df3cbc2570ed17cf8973a", + "name": "[Lvl 56] Skeleton Horse", + "display_name": "Skeleton Horse", + "xpMaxLevel": 25353230, + "level": 56, + "xpCurrent": 52485, + "xpForNext": 79200, + "progress": 0.662689393939394, + "lore": [ + "§8Combat Mount", + "", + "§7Speed: §a+28", + "§7Intelligence: §a+56", + " ", + "§6Ridable", + "§7Right-click your summoned pet to ride it!", + " ", + "§6Run", + "§7Increase the speed of your mount by §a84%", + " ", + "§6Ride Into Battle", + "§7When riding your horse, gain +§a22.4% §7bow damage", + "", + "§6Held Item: §aSaddle", + "§7Increase horse speed by §a50% §7 and jump boost by §a100%", + " ", + "§7Progress to Level 57: §e66.3%", + "§2--------------§f------ §e52,485 §6/ §e80K", + "", + "§7Total XP: §e1.0M §6/ §e25.3M §6(3%)", + "§7Candy Used: §e10 §6/ §e10", + "" + ] + }, + { + "type": "BLUE_WHALE", + "exp": 26202530.403314777, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 4, + "skin": null, + "price": 22822583.329432752, + "modified": { + "name": "[Lvl 100] Legendary Blue Whale", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 200 + }, + "texture_path": "https://sky.shiiyu.moe/head/dab779bbccc849f88273d844e8ca2f3a67a1699cb216c0a11b44326ce2cc20", + "name": "[Lvl 100] Blue Whale", + "display_name": "Blue Whale", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Health: §a+200", + " ", + "§6Ingest", + "§7All potions heal §c+250 ❤", + " ", + "§6Bulk", + "§7Gain §a1 ❈ Defense §7per §c20.0 Max ❤ Health", + " ", + "§6Archimedes", + "§7Gain §c+20% Max ❤ Health", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e26.2M §6/ §e25.3M §6(103%)", + "§7Candy Used: §e4 §6/ §e10", + "" + ] + }, + { + "type": "WITHER_SKELETON", + "exp": 25365204.923713338, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 8589999, + "modified": { + "name": "[Lvl 100] Legendary Wither Skeleton", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "crit_chance": 5, + "intelligence": 25, + "crit_damage": 25, + "defense": 25, + "strength": 25 + }, + "texture_path": "https://sky.shiiyu.moe/head/f5ec964645a8efac76be2f160d7c9956362f32b6517390c59c3085034f050cff", + "name": "[Lvl 100] Wither Skeleton", + "display_name": "Wither Skeleton", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Crit Chance: §a+5", + "§7Intelligence: §a+25", + "§7Crit Damage: §a+25", + "§7Defense: §a+25", + "§7Strength: §a+25", + " ", + "§6Stronger Bones", + "§7Take §a30% §7less damage from skeletons", + " ", + "§6Wither Blood", + "§7Deal §a25% §7more damage to wither mobs", + " ", + "§6Death's Touch", + "§7Upon hitting an enemy inflict the wither effect for §a200% §7damage over 3 seconds", + "§8Does not stack", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ELEPHANT", + "exp": 23427065.020068675, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", + "candyUsed": 0, + "skin": null, + "price": 28215706.80373154, + "modified": { + "name": "[Lvl 98] Legendary Elephant", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "intelligence": 73.5, + "health": 98 + }, + "texture_path": "https://sky.shiiyu.moe/head/7071a76f669db5ed6d32b48bb2dba55d5317d7f45225cb3267ec435cfa514", + "name": "[Lvl 98] Elephant", + "display_name": "Elephant", + "xpMaxLevel": 25353230, + "level": 98, + "xpCurrent": 1707235, + "xpForNext": 1746700, + "progress": 0.9774059655350089, + "lore": [ + "§8Farming Pet", + "", + "§7Intelligence: §a+73", + "§7Health: §a+98", + " ", + "§6Stomp", + "§7Gain §a19.6 ❈ Defense §7for every §f100 ✦ Speed", + " ", + "§6Walking Fortress", + "§7Gain §c1 ❤ Health §7for every §a10 ❈ Defense", + " ", + "§6Trunk Efficiency", + "§7Grants §a+176.4 §6☘ Farming Fortune§7, which increases your chance for multiple drops", + "", + "§6Held Item: §5Farming Exp Boost", + "§7Gives +§a50% §7pet exp for Farming", + " ", + "§7Progress to Level 99: §e97.7%", + "§2--------------------§f §e1,707,235 §6/ §e1.8M", + "", + "§7Total XP: §e23.4M §6/ §e25.3M §6(92%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ENDERMITE", + "exp": 26355560.600336473, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 7589999, + "modified": { + "name": "[Lvl 100] Legendary Endermite", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/5a1a0831aa03afb4212adcbb24e5dfaa7f476a1173fce259ef75a85855", + "name": "[Lvl 100] Endermite", + "display_name": "Endermite", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Intelligence: §a+100", + " ", + "§6More Stonks", + "§7Gain more exp orbs for breaking end stone and gain a +§a50% §7chance to get an extra block dropped.", + " ", + "§6Pearl Muncher", + "§7Upon picking up an ender pearl, consume it and gain §a10 §6coins", + " ", + "§6Pearl Powered", + "§7Upon consuming an ender pearl, gain +§a50 §7speed for 10 seconds", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e26.3M §6/ §e25.3M §6(103%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 25379444.268969074, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 14588999, + "modified": { + "name": "[Lvl 100] Legendary Rock", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "defense": 200, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 100] Rock", + "display_name": "Rock", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+200", + "§7True Defense: §a+10", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a25% §7defense", + " ", + "§6Steady Ground", + "§7While sitting on your rock, gain +§a30§7% damage", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GRANDMA_WOLF", + "exp": 56655894.46371074, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_EXP_SHARE", + "candyUsed": 0, + "skin": null, + "rarity": "legendary", + "stats": { + "health": 100, + "strength": 25 + }, + "texture_path": "https://sky.shiiyu.moe/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", + "name": "[Lvl 100] Grandma Wolf", + "display_name": "Grandma Wolf", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+100", + "§7Strength: §a+25", + " ", + "§6Kill Combo", + "§7Gain buffs for combo kills. Effects stack as you increase your combo.", + "", + "§a5 Combo §8(lasts §a10s§8)", + "§8+§b3% §b✯ Magic Find", + "§a10 Combo §8(lasts §a8s§8)", + "§8+§610 §7coins per kill", + "§a15 Combo §8(lasts §a6s§8)", + "§8+§b3% §b✯ Magic Find", + "§a20 Combo §8(lasts §a5s§8)", + "§8+§315% §7Combat Exp", + "§a25 Combo §8(lasts §a4s§8)", + "§8+§b3% §b✯ Magic Find", + "§a30 Combo §8(lasts §a3s§8)", + "§8+§610 §7coins per kill", + "", + "§6Held Item: §5Exp Share", + "§7While unequipped this pet gains §a25% §7of the equipped pet's xp, this is §7split between all pets holding the item.", + " ", + "§8This pet's perks are active even when the pet is not summoned!", + "", + "§bMAX LEVEL", + "", + "§7Total XP: §e56.6M §6/ §e25.3M §6(223%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MITHRIL_GOLEM", + "exp": 130316005.44530973, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 5989999, + "modified": { + "name": "[Lvl 100] Legendary Mithril Golem", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "true_defense": 50 + }, + "texture_path": "https://sky.shiiyu.moe/head/c1b2dfe8ed5dffc5b1687bc1c249c39de2d8a6c3d90305c95f6d1a1a330a0b1", + "name": "[Lvl 100] Mithril Golem", + "display_name": "Mithril Golem", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7True Defense: §a+50", + " ", + "§6Mithril Affinity", + "§7Gain +§a100 §6⸕ Mining Speed §7when mining §eMithril", + " ", + "§6The Smell Of Powder", + "§7Gain +§a20% §7more §2Mithril Powder", + " ", + "§6Danger Averse", + "§7Increases your combat stats by +§a20% §7on mining islands", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e130.3M §6/ §e25.3M §6(514%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "SHEEP", + "exp": 41525369.18072697, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_TEXTBOOK", + "candyUsed": 0, + "skin": null, + "price": 8579000, + "modified": { + "name": "[Lvl 100] Legendary Sheep", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "ability_damage": 20, + "intelligence": 200 + }, + "texture_path": "https://sky.shiiyu.moe/head/64e22a46047d272e89a1cfa13e9734b7e12827e235c2012c1a95962874da0", + "name": "[Lvl 100] Sheep", + "display_name": "Sheep", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Alchemy Pet", + "", + "§7Ability Damage: §a+20%", + "§7Intelligence: §a+200", + " ", + "§6Mana Saver", + "§7Reduces the mana cost of abilities by §a20%", + " ", + "§6Overheal", + "§7Gives a §a10% §7shield after not taking damage for 10s", + " ", + "§6Dungeon Wizard", + "§7Increases your total mana by §a25% §7while in dungeons", + "", + "§6Held Item: §6Textbook", + "§7Increases the pet's §b✎ Intelligence §7by §a100%", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e41.5M §6/ §e25.3M §6(163%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "SILVERFISH", + "exp": 194381317.07596773, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": "SILVERFISH", + "price": 79478887, + "modified": { + "name": "[Lvl 100] Legendary Silverfish ✦", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "defense": 100, + "health": 20 + }, + "texture_path": "https://sky.shiiyu.moe/head/d8552ff591042c4a38f8ba0626784ae28c4545a97d423fd9037c341035593273", + "name": "[Lvl 100] Silverfish ✦", + "display_name": "Silverfish ✦", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet, Fortified Skin", + "", + "§7Defense: §a+100", + "§7Health: §a+20", + " ", + "§6True Defense Boost", + "§7Boosts your §f❂ True Defense §7by §a15", + " ", + "§6Mining Exp Boost", + "§7Boosts your Mining exp by §a30%", + " ", + "§6Dexterity", + "§7Gives permanent haste III", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e194.3M §6/ §e25.3M §6(766%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MONKEY", + "exp": 3234594.0934215398, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 29447758.903947636, + "modified": { + "name": "[Lvl 72] Legendary Monkey", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 14.4, + "intelligence": 36 + }, + "texture_path": "https://sky.shiiyu.moe/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", + "name": "[Lvl 72] Monkey", + "display_name": "Monkey", + "xpMaxLevel": 25353230, + "level": 72, + "xpCurrent": 58964, + "xpForNext": 237700, + "progress": 0.2480605805637358, + "lore": [ + "§8Foraging Pet", + "", + "§7Speed: §a+14", + "§7Intelligence: §a+36", + " ", + "§6Treeborn", + "§7Grants §a+43.2 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", + " ", + "§6Vine Swing", + "§7Gain +§a72\t§f✦ Speed §7while in The Park", + " ", + "§6Evolved Axes", + "§7Reduce the cooldown of Jungle Axe and Treecapitator by §a36%", + "", + "§6Held Item: §fForaging Exp Boost", + "§7Gives +§a20% §7pet exp for Foraging", + " ", + "§7Progress to Level 73: §e24.8%", + "§2-----§f--------------- §e58,964 §6/ §e238K", + "", + "§7Total XP: §e3.2M §6/ §e25.3M §6(12%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "BEE", + "exp": 37405.08750000002, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 402211.11837332405, + "modified": { + "name": "[Lvl 25] Epic Bee", + "isPet": true + }, + "rarity": "epic", + "stats": { + "strength": 11.25, + "intelligence": 12.5, + "speed": 2.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", + "name": "[Lvl 25] Bee", + "display_name": "Bee", + "xpMaxLevel": 18608500, + "level": 25, + "xpCurrent": 405, + "xpForNext": 3700, + "progress": 0.10945945945945947, + "lore": [ + "§8Farming Pet", + "", + "§7Strength: §a+11", + "§7Intelligence: §a+12", + "§7Speed: §a+2", + " ", + "§6Hive", + "§7Gain §b+4.5 ✎ Intelligence §7and §c+3.8 ❁ Strength §7for each nearby bee.", + "§8Max 15 bees", + " ", + "§6Busy Buzz Buzz", + "§7Has §a25% §7chance for flowers to drop an extra one", + " ", + "§7Progress to Level 26: §e10.9%", + "§2---§f----------------- §e405 §6/ §e3.7K", + "", + "§7Total XP: §e37K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ENDERMAN", + "exp": 161443.38498812658, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 117905.93817185139, + "modified": { + "name": "[Lvl 40] Epic Enderman", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 30 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 40] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 18608500, + "level": 40, + "xpCurrent": 6443, + "xpForNext": 16200, + "progress": 0.39771604938271604, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a+30", + " ", + "§6Enderian", + "§7Take §a12% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a20 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 41: §e39.8%", + "§2--------§f------------ §e6,443 §6/ §e17K", + "", + "§7Total XP: §e161K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GUARDIAN", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 1950000, + "modified": { + "name": "[Lvl 1] Epic Guardian", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 1, + "defense": 0.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", + "name": "[Lvl 1] Guardian", + "display_name": "Guardian", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Enchanting Pet", + "", + "§7Intelligence: §a+1", + "§7Defense: §a0", + " ", + "§6Lazerbeam", + "§7Zap your enemies for §b0.2x §7your §b✎ Intelligence §7every §a3s", + " ", + "§6Enchanting Exp Boost", + "§7Boosts your Enchanting exp by §a0.3%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GHOUL", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 20000, + "modified": { + "name": "[Lvl 1] Epic Ghoul", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 0.75, + "health": 1, + "ferocity": 0.05 + }, + "texture_path": "https://sky.shiiyu.moe/head/87934565bf522f6f4726cdfe127137be11d37c310db34d8c70253392b5ff5b", + "name": "[Lvl 1] Ghoul", + "display_name": "Ghoul", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Intelligence: §a0", + "§7Health: §a+1", + "§7Ferocity: §a0", + " ", + "§6Amplified Healing", + "§7Increase all healing by §a0.3%", + " ", + "§6Zombie Arm", + "§7Increase the health and range of the Zombie sword by §a0.5%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "HOUND", + "exp": 43487.29259999999, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 276178.30033457826, + "modified": { + "name": "[Lvl 26] Epic Hound", + "isPet": true + }, + "rarity": "epic", + "stats": { + "strength": 10.4, + "bonus_attack_speed": 3.9, + "ferocity": 1.3 + }, + "texture_path": "https://sky.shiiyu.moe/head/b7c8bef6beb77e29af8627ecdc38d86aa2fea7ccd163dc73c00f9f258f9a1457", + "name": "[Lvl 26] Hound", + "display_name": "Hound", + "xpMaxLevel": 18608500, + "level": 26, + "xpCurrent": 2787, + "xpForNext": 4000, + "progress": 0.69675, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+10", + "§7Bonus Attack Speed: §a+3", + "§7Ferocity: §a+1", + " ", + "§6Scavenger", + "§7Gain +§a1.3 §7coins per monster kill", + " ", + "§6Finder", + "§7Increases the chance for monsters to drop their armor by §a2.6%", + " ", + "§7Progress to Level 27: §e69.7%", + "§2--------------§f------ §e2,787 §6/ §e4.0K", + "", + "§7Total XP: §e43K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 14720.653773215987, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 2501186.606440023, + "modified": { + "name": "[Lvl 16] Epic Rock", + "isPet": true + }, + "rarity": "epic", + "stats": { + "defense": 32, + "true_defense": 1.6 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 16] Rock", + "display_name": "Rock", + "xpMaxLevel": 18608500, + "level": 16, + "xpCurrent": 620, + "xpForNext": 1800, + "progress": 0.34444444444444444, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+32", + "§7True Defense: §a+1", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a4% §7defense", + " ", + "§7Progress to Level 17: §e34.4%", + "§2-------§f------------- §e620 §6/ §e1.8K", + "", + "§7Total XP: §e14K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "DOLPHIN", + "exp": 36119159.19140592, + "active": false, + "tier": "EPIC", + "heldItem": "WASHED_UP_SOUVENIR", + "candyUsed": 0, + "skin": null, + "price": 7498999, + "modified": { + "name": "[Lvl 100] Epic Dolphin", + "isPet": true + }, + "rarity": "epic", + "stats": { + "sea_creature_chance": 10, + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 100] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a+10%", + "§7Intelligence: §a+100", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a5% §7for each nearby player within 10 blocks up to §a25%", + " ", + "§6Echolocation", + "§7Increases sea creatures catch chance by §a10%", + "", + "§6Held Item: §6Washed-up Souvenir", + "§7Increases §3α Sea Creature Chance §7by §a5", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e36.1M §6/ §e18.6M §6(194%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "PARROT", + "exp": 27614407.780526333, + "active": false, + "tier": "EPIC", + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 12589000, + "modified": { + "name": "[Lvl 100] Epic Parrot", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 10, + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/5df4b3401a4d06ad66ac8b5c4d189618ae617f9c143071c8ac39a563cf4e4208", + "name": "[Lvl 100] Parrot", + "display_name": "Parrot", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Alchemy Pet", + "", + "§7Crit Damage: §a+10", + "§7Intelligence: §a+100", + " ", + "§6Flamboyant", + "§7Adds §a15 §7levels to intimidation accessories", + " ", + "§6Repeat", + "§7Boosts potion duration by §a40%", + "", + "§6Held Item: §fAll Skills Exp Boost", + "§7Gives +§a10% §7pet exp for all skills", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e27.6M §6/ §e18.6M §6(148%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 750000, + "modified": { + "name": "[Lvl 1] Epic Magma Cube", + "isPet": true + }, + "rarity": "epic", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.3% §7faster while on your island", + " ", + "§6Salt Blade", + "§7Deal §a0.3% §7more damage to slimes", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 750000, + "modified": { + "name": "[Lvl 1] Epic Magma Cube", + "isPet": true + }, + "rarity": "epic", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.3% §7faster while on your island", + " ", + "§6Salt Blade", + "§7Deal §a0.3% §7more damage to slimes", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "BABY_YETI", + "exp": 25708831.561584134, + "active": false, + "tier": "EPIC", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 7, + "skin": null, + "price": 12999552.733267803, + "modified": { + "name": "[Lvl 100] Epic Baby Yeti", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 75, + "strength": 40 + }, + "texture_path": "https://sky.shiiyu.moe/head/ab126814fc3fa846dad934c349628a7a1de5b415021a03ef4211d62514d5", + "name": "[Lvl 100] Baby Yeti", + "display_name": "Baby Yeti", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Intelligence: §a+75", + "§7Strength: §a+40", + " ", + "§6Cold Breeze", + "§7Gives §a50 §c❁ Strength §7and §9☠ Crit Damage §7when near snow", + " ", + "§6Ice Shields", + "§7Gain §a50% §7of your strength as §a❈ Defense", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.7M §6/ §e18.6M §6(138%)", + "§7Candy Used: §e7 §6/ §e10", + "" + ] + }, + { + "type": "BAL", + "exp": 619046.7311604992, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 5764571.374156177, + "modified": { + "name": "[Lvl 54] Epic Bal", + "isPet": true + }, + "rarity": "epic", + "stats": { + "ferocity": 5.4, + "strength": 13.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/c469ba2047122e0a2de3c7437ad3dd5d31f1ac2d27abde9f8841e1d92a8c5b75", + "name": "[Lvl 54] Bal", + "display_name": "Bal", + "xpMaxLevel": 18608500, + "level": 54, + "xpCurrent": 43246, + "xpForNext": 52200, + "progress": 0.8284674329501915, + "lore": [ + "§8Combat Pet", + "", + "§7Ferocity: §a+5", + "§7Strength: §a+13", + " ", + "§6Protective Skin", + "§7§7Gives §cheat immunity.", + " ", + "§6Fire Whip", + "§7Every §a5s §7while in combat the Balrog will strike nearby enemies with his fire whip dealing §c5.4% §7of your damage as §ftrue damage.", + " ", + "§7Progress to Level 55: §e82.8%", + "§2-----------------§f--- §e43,246 §6/ §e53K", + "", + "§7Total XP: §e619K §6/ §e18.6M §6(3%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 11000, + "modified": { + "name": "[Lvl 1] Epic Enderman", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.3% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "TARANTULA", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 70000, + "modified": { + "name": "[Lvl 1] Epic Tarantula", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_chance": 0.1, + "crit_damage": 0.3, + "strength": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/8300986ed0a04ea79904f6ae53f49ed3a0ff5b1df62bba622ecbd3777f156df8", + "name": "[Lvl 1] Tarantula", + "display_name": "Tarantula", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Chance: §a0", + "§7Crit Damage: §a0", + "§7Strength: §a0", + " ", + "§6Webbed Cells", + "§7Anti-healing is §a0.3% §7less effective against you", + " ", + "§6Eight Legs", + "§7Decreases the mana cost of Spider, Tarantula and Thorn's boots by §a0.5%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "HORSE", + "exp": 9673.888333333345, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "rare", + "stats": { + "intelligence": 8, + "speed": 4 + }, + "texture_path": "https://sky.shiiyu.moe/head/36fcd3ec3bc84bafb4123ea479471f9d2f42d8fb9c5f11cf5f4e0d93226", + "name": "[Lvl 16] Horse", + "display_name": "Horse", + "xpMaxLevel": 12626665, + "level": 16, + "xpCurrent": 858, + "xpForNext": 1150, + "progress": 0.7460869565217392, + "lore": [ + "§8Combat Mount", + "", + "§7Intelligence: §a+8", + "§7Speed: §a+4", + " ", + "§6Ridable", + "§7Right-click your summoned pet to ride it!", + " ", + "§6Run", + "§7Increase the speed of your mount by §a17.6%", + " ", + "§7Progress to Level 17: §e74.6%", + "§2---------------§f----- §e858 §6/ §e1.2K", + "", + "§7Total XP: §e9.6K §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 3000, + "modified": { + "name": "[Lvl 1] Rare Enderman", + "isPet": true + }, + "rarity": "rare", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.2% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 500000, + "modified": { + "name": "[Lvl 1] Rare Rock", + "isPet": true + }, + "rarity": "rare", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a0.2% §7defense", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 640000, + "modified": { + "name": "[Lvl 1] Rare Dolphin", + "isPet": true + }, + "rarity": "rare", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", + " ", + "§6Echolocation", + "§7Increases sea creatures catch chance by §a0.1%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 3000, + "modified": { + "name": "[Lvl 1] Rare Enderman", + "isPet": true + }, + "rarity": "rare", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.2% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 99000, + "modified": { + "name": "[Lvl 1] Uncommon Dolphin", + "isPet": true + }, + "rarity": "uncommon", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "uncommon", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.2% §7faster while on your island", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 55000, + "modified": { + "name": "[Lvl 1] Uncommon Rock", + "isPet": true + }, + "rarity": "uncommon", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "JERRY", + "exp": 1354.1999999999996, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "intelligence": -10 + }, + "texture_path": "https://sky.shiiyu.moe/head/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b", + "name": "[Lvl 10] Jerry", + "display_name": "Jerry", + "xpMaxLevel": 5624785, + "level": 10, + "xpCurrent": 14, + "xpForNext": 230, + "progress": 0.06086956521739131, + "lore": [ + "§8Combat Pet", + "", + "§7Intelligence: §a-10", + " ", + "§6Jerry", + "§7Gain §a50% §7chance to deal your regular damage", + " ", + "§6Jerry", + "§7Gain §a100% §7chance to receive a normal amount of drops from mobs", + " ", + "§7Progress to Level 11: §e6.1%", + "§2--§f------------------ §e14 §6/ §e230", + "", + "§7Total XP: §e1.3K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GUARDIAN", + "exp": 4260.302499999998, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 210598.35868837652, + "modified": { + "name": "[Lvl 18] Common Guardian", + "isPet": true }, - "display": { - "Lore": [ - "§7Health: §a+25", - "§7Defense: §a+15", - "", - "§7Reduces damage taken by §c4%§7.", - "", - "§7§8This item can be reforged!", - "§8§l* §8Soulbound §8§l*", - "§9§lRARE BELT" - ], - "Name": "§9Blue Belt" + "rarity": "common", + "stats": { + "intelligence": 18, + "defense": 9 + }, + "texture_path": "https://sky.shiiyu.moe/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", + "name": "[Lvl 18] Guardian", + "display_name": "Guardian", + "xpMaxLevel": 5624785, + "level": 18, + "xpCurrent": 335, + "xpForNext": 490, + "progress": 0.6836734693877551, + "lore": [ + "§8Enchanting Pet", + "", + "§7Intelligence: §a+18", + "§7Defense: §a+9", + " ", + "§6Lazerbeam", + "§7Zap your enemies for §b0.4x §7your §b✎ Intelligence §7every §a3s", + " ", + "§7Progress to Level 19: §e68.4%", + "§2--------------§f------ §e335 §6/ §e490", + "", + "§7Total XP: §e4.2K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GRIFFIN", + "exp": 37257.960816000086, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 76164.36809997188, + "modified": { + "name": "[Lvl 40] Common Griffin", + "isPet": true }, - "ExtraAttributes": { - "id": "DOJO_BLUE_BELT", - "uuid": "6d027b01-2437-4e4d-a495-3bb252739ea3", - "timestamp": 1650718680 - } + "rarity": "common", + "stats": { + "strength": 10, + "crit_chance": 4, + "crit_damage": 20, + "intelligence": 4, + "magic_find": 4 + }, + "ignoresTierBoost": true, + "texture_path": "https://sky.shiiyu.moe/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", + "name": "[Lvl 40] Griffin", + "display_name": "Griffin", + "xpMaxLevel": 5624785, + "level": 40, + "xpCurrent": 192, + "xpForNext": 3420, + "progress": 0.056140350877192984, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+10", + "§7Crit Chance: §a+4", + "§7Crit Damage: §a+20", + "§7Intelligence: §a+4", + "§7Magic Find: §a+4", + " ", + "§6Odyssey", + "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", + " ", + "§7Progress to Level 41: §e5.6%", + "§2--§f------------------ §e192 §6/ §e3.5K", + "", + "§7Total XP: §e37K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 3 - }, - "gloves": { - - } + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 25000, + "modified": { + "name": "[Lvl 1] Common Dolphin", + "isPet": true + }, + "rarity": "common", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 5628208.409586144, + "active": false, + "tier": "COMMON", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 10, + "skin": null, + "rarity": "common", + "stats": { + "defense": 200, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 100] Rock", + "display_name": "Rock", + "xpMaxLevel": 5624785, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+200", + "§7True Defense: §a+10", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e5.6M §6/ §e5.6M §6(100%)", + "§7Candy Used: §e10 §6/ §e10", + "" + ] + }, + { + "type": "KUUDRA", + "exp": 341344.2917178187, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "health": 256, + "strength": 25.6 + }, + "texture_path": "https://sky.shiiyu.moe/head/1f0239fb498e5907ede12ab32629ee95f0064574a9ffdff9fc3a1c8e2ec17587", + "name": "[Lvl 64] Kuudra", + "display_name": "Kuudra", + "xpMaxLevel": 5624785, + "level": 64, + "xpCurrent": 2459, + "xpForNext": 32400, + "progress": 0.07589506172839507, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+256", + "§7Strength: §a+25", + " ", + "§6Crimson", + "§7Grants §a6.4% §7extra crimson essence", + " ", + "§6Wither Bait", + "§7Increases the odds of finding a vanquisher by §a6.4%", + " ", + "§8This pet's perks are active even when the pet is not summoned!", + "", + "§8This pet gains XP even when not summoned!", + "", + "§8This pet only gains XP on the §cCrimson Isle§8!", + "", + "§7Progress to Level 65: §e7.6%", + "§2--§f------------------ §e2,459 §6/ §e33K", + "", + "§7Total XP: §e341K §6/ §e5.6M §6(6%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + } + ] }, - "pets": [ - { - "type": "BLUE_WHALE", - "exp": 26202530.403314777, - "active": true, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 4, - "skin": null, - "price": 23078443.30374092, - "modified": { - "name": "[Lvl 100] Legendary Blue Whale", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 200 - }, - "texture_path": "/head/dab779bbccc849f88273d844e8ca2f3a67a1699cb216c0a11b44326ce2cc20", - "name": "[Lvl 100] Blue Whale", - "display_name": "Blue Whale", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Health: §a+200", - " ", - "§6Ingest", - "§7All potions heal §c+250 ❤", - " ", - "§6Bulk", - "§7Gain §a1 ❈ Defense §7per §c20.0 Max ❤ Health", - " ", - "§6Archimedes", - "§7Gain §c+20% Max ❤ Health", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e26.2M §6/ §e25.3M §6(103%)", - "§7Candy Used: §e4 §6/ §e10", - "" - ] - }, - { - "type": "BAT", - "exp": 25365455.329407804, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_VAMPIRE_FANG", - "candyUsed": 0, - "skin": null, - "price": 7110000, - "modified": { - "name": "[Lvl 100] Legendary Bat", - "isPet": true - }, - "rarity": "mythic", - "stats": { - "intelligence": 100, - "speed": 5, - "sea_creature_chance": 5 - }, - "texture_path": "/head/382fc3f71b41769376a9e92fe3adbaac3772b999b219c9d6b4680ba9983e527", - "name": "[Lvl 100] Bat", - "display_name": "Bat", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Intelligence: §a+100", - "§7Speed: §a+5", - "§7Sea Creature Chance: §a+5%", - " ", - "§6Candy Lover", - "§7Increases the chance for mobs to drop Candy by §a20%", - " ", - "§6Nightmare", - "§7During night, gain §a30 §9✎ Intelligence, §a50 §f✦ Speed§7, and night vision", - " ", - "§6Wings of Steel", - "§7Deals §a+50% §7damage to §6Spooky §7enemies during the §6Spooky Festival", - " ", - "§6Sonar", - "§7+§a25% §7chance to fish up spooky sea creatures", - "", - "§6Held Item: §6Vampire Fang", - "§7Upgrades a Bat pet from §6Legendary §7to §dMythic §7adding a bonus perk and bonus stats!", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "WOLF", - "exp": 64147245.20134974, - "active": false, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "skin": null, - "price": 22950000, - "modified": { - "name": "[Lvl 100] Legendary Wolf", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 50, - "crit_damage": 10, - "speed": 20, - "true_defense": 10 - }, - "texture_path": "/head/dc3dd984bb659849bd52994046964c22725f717e986b12d548fd169367d494", - "name": "[Lvl 100] Wolf", - "display_name": "Wolf", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+50", - "§7Crit Damage: §a+10", - "§7Speed: §a+20", - "§7True Defense: §a+10", - " ", - "§6Alpha Dog", - "§7Take §a30% §7less damage from wolves", - " ", - "§6Pack Leader", - "§7Gain §a15 §9 ☠ Crit Damage §7for every nearby wolf monsters", - "§8Max 10 wolves", - " ", - "§6Combat Exp Boost", - "§7Boosts your Combat exp by §a30%", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e64.1M §6/ §e25.3M §6(253%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "OCELOT", - "exp": 4530919.826667831, - "active": false, - "tier": "LEGENDARY", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 7653732.261702525, - "modified": { - "name": "[Lvl 76] Legendary Ocelot", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 38, - "ferocity": 7.6000000000000005 - }, - "texture_path": "/head/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1", - "name": "[Lvl 76] Ocelot", - "display_name": "Ocelot", - "xpMaxLevel": 25353230, - "level": 76, - "xpCurrent": 298489, - "xpForNext": 311700, - "progress": 0.9576162977221687, - "lore": [ - "§8Foraging Pet", - "", - "§7Speed: §a+38", - "§7Ferocity: §a+7", - " ", - "§6Foraging Exp Boost", - "§7Boosts your Foraging exp by §a22.8%", - " ", - "§6Tree Hugger", - "§7Foraging minions work §a22.8% §7faster while on your island", - " ", - "§6Tree Essence", - "§7Gain a §a22.8% §7chance to get exp from breaking a log", - " ", - "§7Progress to Level 77: §e95.8%", - "§2--------------------§f §e298,489 §6/ §e312K", - "", - "§7Total XP: §e4.5M §6/ §e25.3M §6(17%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SQUID", - "exp": 5301460.283916464, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", - "candyUsed": 0, - "skin": null, - "price": 11533001.763661455, - "modified": { - "name": "[Lvl 79] Legendary Squid", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 39.5, - "intelligence": 39.5 - }, - "texture_path": "/head/01433be242366af126da434b8735df1eb5b3cb2cede39145974e9c483607bac", - "name": "[Lvl 79] Squid", - "display_name": "Squid", - "xpMaxLevel": 25353230, - "level": 79, - "xpCurrent": 65930, - "xpForNext": 383700, - "progress": 0.17182694813656502, - "lore": [ - "§8Fishing Pet", - "", - "§7Health: §a+39", - "§7Intelligence: §a+39", - " ", - "§6More Ink", - "§7Gain a §a79% §7chance to get double drops from squids", - " ", - "§6Ink Specialty", - "§7Buffs the Ink Wand by §a31.6 §c❁ Damage §7and §a15.8 §c❁ Strength", - " ", - "§6Fishing Exp Boost", - "§7Boosts your Fishing exp by §a23.7%", - "", - "§6Held Item: §aFishing Exp Boost", - "§7Gives +§a30% §7pet exp for Fishing", - " ", - "§7Progress to Level 80: §e17.2%", - "§2----§f---------------- §e65,930 §6/ §e384K", - "", - "§7Total XP: §e5.3M §6/ §e25.3M §6(20%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "TIGER", - "exp": 16637923.460626705, - "active": false, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "skin": null, - "price": 29381156.113014214, - "modified": { - "name": "[Lvl 94] Legendary Tiger", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "strength": 14.4, - "crit_chance": 4.7, - "crit_damage": 47, - "ferocity": 23.5 - }, - "texture_path": "/head/fc42638744922b5fcf62cd9bf27eeab91b2e72d6c70e86cc5aa3883993e9d84", - "name": "[Lvl 94] Tiger", - "display_name": "Tiger", - "xpMaxLevel": 25353230, - "level": 94, - "xpCurrent": 704893, - "xpForNext": 1286700, - "progress": 0.5478301080282895, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+14", - "§7Crit Chance: §a+4", - "§7Crit Damage: §a+47", - "§7Ferocity: §a+23", - " ", - "§6Merciless Swipe", - "§7Gain \t§c+28.2% ⫽ Ferocity.", - " ", - "§6Hemorrhage", - "§7Melee attacks reduce healing by §651.7% §7for §a10s", - " ", - "§6Apex Predator", - "§7Deal §c+18.8% §7damage against targets with no other mobs within §a15 §7blocks", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§7Progress to Level 95: §e54.8%", - "§2-----------§f--------- §e704,893 §6/ §e1.3M", - "", - "§7Total XP: §e16.6M §6/ §e25.3M §6(65%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "RABBIT", - "exp": 92650232.4205664, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 12974999, - "modified": { - "name": "[Lvl 100] Legendary Rabbit", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 100, - "speed": 20 - }, - "texture_path": "/head/117bffc1972acd7f3b4a8f43b5b6c7534695b8fd62677e0306b2831574b", - "name": "[Lvl 100] Rabbit", - "display_name": "Rabbit", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Farming Pet", - "", - "§7Health: §a+100", - "§7Speed: §a+20", - " ", - "§6Happy Feet ", - "§7Jump Potions also give §a+50 §7speed", - " ", - "§6Farming Exp Boost ", - "§7Boosts your Farming Exp by §a30%", - " ", - "§6Efficient Farming", - "§7Farming minions work §a30% §7faster while on your island.", - "", - "§6Held Item: §9Farming Exp Boost", - "§7Gives +§a40% §7pet exp for Farming", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e92.6M §6/ §e25.3M §6(365%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SKELETON_HORSE", - "exp": 1003415.3682159979, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_SADDLE", - "candyUsed": 10, - "skin": null, - "price": 972904.3472496292, - "modified": { - "name": "[Lvl 56] Legendary Skeleton Horse", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 28, - "intelligence": 56 - }, - "texture_path": "/head/47effce35132c86ff72bcae77dfbb1d22587e94df3cbc2570ed17cf8973a", - "name": "[Lvl 56] Skeleton Horse", - "display_name": "Skeleton Horse", - "xpMaxLevel": 25353230, - "level": 56, - "xpCurrent": 52485, - "xpForNext": 79200, - "progress": 0.662689393939394, - "lore": [ - "§8Combat Mount", - "", - "§7Speed: §a+28", - "§7Intelligence: §a+56", - " ", - "§6Ridable", - "§7Right-click your summoned pet to ride it!", - " ", - "§6Run", - "§7Increase the speed of your mount by §a84%", - " ", - "§6Ride Into Battle", - "§7When riding your horse, gain +§a22.4% §7bow damage", - "", - "§6Held Item: §aSaddle", - "§7Increase horse speed by §a50% §7 and jump boost by §a100%", - " ", - "§7Progress to Level 57: §e66.3%", - "§2--------------§f------ §e52,485 §6/ §e80K", - "", - "§7Total XP: §e1.0M §6/ §e25.3M §6(3%)", - "§7Candy Used: §e10 §6/ §e10", - "" - ] - }, - { - "type": "WITHER_SKELETON", - "exp": 25365204.923713338, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 9284900, - "modified": { - "name": "[Lvl 100] Legendary Wither Skeleton", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "crit_chance": 5, - "intelligence": 25, - "crit_damage": 25, - "defense": 25, - "strength": 25 - }, - "texture_path": "/head/f5ec964645a8efac76be2f160d7c9956362f32b6517390c59c3085034f050cff", - "name": "[Lvl 100] Wither Skeleton", - "display_name": "Wither Skeleton", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Crit Chance: §a+5", - "§7Intelligence: §a+25", - "§7Crit Damage: §a+25", - "§7Defense: §a+25", - "§7Strength: §a+25", - " ", - "§6Stronger Bones", - "§7Take §a30% §7less damage from skeletons", - " ", - "§6Wither Blood", - "§7Deal §a25% §7more damage to wither mobs", - " ", - "§6Death's Touch", - "§7Upon hitting an enemy inflict the wither effect for §a200% §7damage over 3 seconds", - "§8Does not stack", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ELEPHANT", - "exp": 23427065.020068675, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", - "candyUsed": 0, - "skin": null, - "price": 35407221.39999827, - "modified": { - "name": "[Lvl 98] Legendary Elephant", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "intelligence": 73.5, - "health": 98 - }, - "texture_path": "/head/7071a76f669db5ed6d32b48bb2dba55d5317d7f45225cb3267ec435cfa514", - "name": "[Lvl 98] Elephant", - "display_name": "Elephant", - "xpMaxLevel": 25353230, - "level": 98, - "xpCurrent": 1707235, - "xpForNext": 1746700, - "progress": 0.9774059655350089, - "lore": [ - "§8Farming Pet", - "", - "§7Intelligence: §a+73", - "§7Health: §a+98", - " ", - "§6Stomp", - "§7Gain §a19.6 ❈ Defense §7for every §f100 ✦ Speed", - " ", - "§6Walking Fortress", - "§7Gain §c1 ❤ Health §7for every §a10 ❈ Defense", - " ", - "§6Trunk Efficiency", - "§7Grants §a+176.4 §6☘ Farming Fortune§7, which increases your chance for multiple drops", - "", - "§6Held Item: §5Farming Exp Boost", - "§7Gives +§a50% §7pet exp for Farming", - " ", - "§7Progress to Level 99: §e97.7%", - "§2--------------------§f §e1,707,235 §6/ §e1.8M", - "", - "§7Total XP: §e23.4M §6/ §e25.3M §6(92%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMITE", - "exp": 26355560.600336473, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 6589999, - "modified": { - "name": "[Lvl 100] Legendary Endermite", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "intelligence": 100 - }, - "texture_path": "/head/5a1a0831aa03afb4212adcbb24e5dfaa7f476a1173fce259ef75a85855", - "name": "[Lvl 100] Endermite", - "display_name": "Endermite", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Intelligence: §a+100", - " ", - "§6More Stonks", - "§7Gain more exp orbs for breaking end stone and gain a +§a50% §7chance to get an extra block dropped.", - " ", - "§6Pearl Muncher", - "§7Upon picking up an ender pearl, consume it and gain §a10 §6coins", - " ", - "§6Pearl Powered", - "§7Upon consuming an ender pearl, gain +§a50 §7speed for 10 seconds", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e26.3M §6/ §e25.3M §6(103%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 25379444.268969074, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 15590000, - "modified": { - "name": "[Lvl 100] Legendary Rock", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "defense": 200, - "true_defense": 10 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 100] Rock", - "display_name": "Rock", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+200", - "§7True Defense: §a+10", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a25% §7defense", - " ", - "§6Steady Ground", - "§7While sitting on your rock, gain +§a30§7% damage", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GRANDMA_WOLF", - "exp": 50260724.958288014, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_EXP_SHARE", - "candyUsed": 0, - "skin": null, - "rarity": "legendary", - "stats": { - "health": 100, - "strength": 25 - }, - "texture_path": "/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", - "name": "[Lvl 100] Grandma Wolf", - "display_name": "Grandma Wolf", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+100", - "§7Strength: §a+25", - " ", - "§6Kill Combo", - "§7Gain buffs for combo kills. Effects stack as you increase your combo.", - "", - "§a5 Combo §8(lasts §a10s§8)", - "§8+§b3% §b✯ Magic Find", - "§a10 Combo §8(lasts §a8s§8)", - "§8+§610 §7coins per kill", - "§a15 Combo §8(lasts §a6s§8)", - "§8+§b3% §b✯ Magic Find", - "§a20 Combo §8(lasts §a5s§8)", - "§8+§315% §7Combat Exp", - "§a25 Combo §8(lasts §a4s§8)", - "§8+§b3% §b✯ Magic Find", - "§a30 Combo §8(lasts §a3s§8)", - "§8+§610 §7coins per kill", - "", - "§6Held Item: §5Exp Share", - "§7While unequipped this pet gains §a25% §7of the equipped pet's xp, this is §7split between all pets holding the item.", - " ", - "§8This pet's perks are active even when the pet is not summoned!", - "", - "§bMAX LEVEL", - "", - "§7Total XP: §e50.2M §6/ §e25.3M §6(198%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MITHRIL_GOLEM", - "exp": 130316005.44530973, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 6489000, - "modified": { - "name": "[Lvl 100] Legendary Mithril Golem", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "true_defense": 50 - }, - "texture_path": "/head/c1b2dfe8ed5dffc5b1687bc1c249c39de2d8a6c3d90305c95f6d1a1a330a0b1", - "name": "[Lvl 100] Mithril Golem", - "display_name": "Mithril Golem", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7True Defense: §a+50", - " ", - "§6Mithril Affinity", - "§7Gain +§a100 §6⸕ Mining Speed §7when mining §eMithril", - " ", - "§6The Smell Of Powder", - "§7Gain +§a20% §7more §2Mithril Powder", - " ", - "§6Danger Averse", - "§7Increases your combat stats by +§a20% §7on mining islands", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e130.3M §6/ §e25.3M §6(514%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SHEEP", - "exp": 41525369.18072697, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_TEXTBOOK", - "candyUsed": 0, - "skin": null, - "price": 9100000, - "modified": { - "name": "[Lvl 100] Legendary Sheep", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "ability_damage": 20, - "intelligence": 200 - }, - "texture_path": "/head/64e22a46047d272e89a1cfa13e9734b7e12827e235c2012c1a95962874da0", - "name": "[Lvl 100] Sheep", - "display_name": "Sheep", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Alchemy Pet", - "", - "§7Ability Damage: §a+20%", - "§7Intelligence: §a+200", - " ", - "§6Mana Saver", - "§7Reduces the mana cost of abilities by §a20%", - " ", - "§6Overheal", - "§7Gives a §a10% §7shield after not taking damage for 10s", - " ", - "§6Dungeon Wizard", - "§7Increases your total mana by §a25% §7while in dungeons", - "", - "§6Held Item: §6Textbook", - "§7Increases the pet's §b✎ Intelligence §7by §a100%", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e41.5M §6/ §e25.3M §6(163%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "AMMONITE", - "exp": 1571694.6405923986, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 1299535.1543311258, - "modified": { - "name": "[Lvl 62] Legendary Ammonite", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "sea_creature_chance": 4.340000000000001 - }, - "texture_path": "/head/a074a7bd976fe6aba1624161793be547d54c835cf422243a851ba09d1e650553", - "name": "[Lvl 62] Ammonite", - "display_name": "Ammonite", - "xpMaxLevel": 25353230, - "level": 62, - "xpCurrent": 53064, - "xpForNext": 119700, - "progress": 0.4433082706766917, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a+4%", - " ", - "§6Heart of the Sea", - "§7Each Heart of the Mountain level grants §3+0.6 α Sea Creature Chance", - " ", - "§6Not a Snail", - "§7Each fishing and mining level grants §f+1.2 ✦ Speed §7and §a+1.2 ❈ Defense", - " ", - "§6Gift of the Ammonite", - "§7Increases your fishing speed by §a0.4% §7for each mining level", - "", - "§6Held Item: §fAll Skills Exp Boost", - "§7Gives +§a10% §7pet exp for all skills", - " ", - "§7Progress to Level 63: §e44.3%", - "§2---------§f----------- §e53,064 §6/ §e120K", - "", - "§7Total XP: §e1.5M §6/ §e25.3M §6(6%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SILVERFISH", - "exp": 194381317.07596773, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": "SILVERFISH", - "price": 79478888, - "modified": { - "name": "[Lvl 100] Legendary Silverfish ✦", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "defense": 100, - "health": 20 - }, - "texture_path": "/head/d8552ff591042c4a38f8ba0626784ae28c4545a97d423fd9037c341035593273", - "name": "[Lvl 100] Silverfish ✦", - "display_name": "Silverfish ✦", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet, Fortified Skin", - "", - "§7Defense: §a+100", - "§7Health: §a+20", - " ", - "§6True Defense Boost", - "§7Boosts your §f❂ True Defense §7by §a15", - " ", - "§6Mining Exp Boost", - "§7Boosts your Mining exp by §a30%", - " ", - "§6Dexterity", - "§7Gives permanent haste III", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e194.3M §6/ §e25.3M §6(766%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MONKEY", - "exp": 3234594.0934215398, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 33300797.550139688, - "modified": { - "name": "[Lvl 72] Legendary Monkey", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 14.4, - "intelligence": 36 - }, - "texture_path": "/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", - "name": "[Lvl 72] Monkey", - "display_name": "Monkey", - "xpMaxLevel": 25353230, - "level": 72, - "xpCurrent": 58964, - "xpForNext": 237700, - "progress": 0.2480605805637358, - "lore": [ - "§8Foraging Pet", - "", - "§7Speed: §a+14", - "§7Intelligence: §a+36", - " ", - "§6Treeborn", - "§7Grants §a+43.2 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", - " ", - "§6Vine Swing", - "§7Gain +§a72\t§f✦ Speed §7while in The Park", - " ", - "§6Evolved Axes", - "§7Reduce the cooldown of Jungle Axe and Treecapitator by §a36%", - "", - "§6Held Item: §fForaging Exp Boost", - "§7Gives +§a20% §7pet exp for Foraging", - " ", - "§7Progress to Level 73: §e24.8%", - "§2-----§f--------------- §e58,964 §6/ §e238K", - "", - "§7Total XP: §e3.2M §6/ §e25.3M §6(12%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "BEE", - "exp": 37405.08750000002, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 601809.0968509015, - "modified": { - "name": "[Lvl 25] Epic Bee", - "isPet": true - }, - "rarity": "epic", - "stats": { - "strength": 11.25, - "intelligence": 12.5, - "speed": 2.5 - }, - "texture_path": "/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", - "name": "[Lvl 25] Bee", - "display_name": "Bee", - "xpMaxLevel": 18608500, - "level": 25, - "xpCurrent": 405, - "xpForNext": 3700, - "progress": 0.10945945945945947, - "lore": [ - "§8Farming Pet", - "", - "§7Strength: §a+11", - "§7Intelligence: §a+12", - "§7Speed: §a+2", - " ", - "§6Hive", - "§7Gain §b+4.5 ✎ Intelligence §7and §c+3.8 ❁ Strength §7for each nearby bee.", - "§8Max 15 bees", - " ", - "§6Busy Buzz Buzz", - "§7Has §a25% §7chance for flowers to drop an extra one", - " ", - "§7Progress to Level 26: §e10.9%", - "§2---§f----------------- §e405 §6/ §e3.7K", - "", - "§7Total XP: §e37K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 161443.38498812658, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 267691.5430146793, - "modified": { - "name": "[Lvl 40] Epic Enderman", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 30 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 40] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 18608500, - "level": 40, - "xpCurrent": 6443, - "xpForNext": 16200, - "progress": 0.39771604938271604, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a+30", - " ", - "§6Enderian", - "§7Take §a12% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a20 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 41: §e39.8%", - "§2--------§f------------ §e6,443 §6/ §e17K", - "", - "§7Total XP: §e161K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GUARDIAN", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 2699999, - "modified": { - "name": "[Lvl 1] Epic Guardian", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 1, - "defense": 0.5 - }, - "texture_path": "/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", - "name": "[Lvl 1] Guardian", - "display_name": "Guardian", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Enchanting Pet", - "", - "§7Intelligence: §a+1", - "§7Defense: §a0", - " ", - "§6Lazerbeam", - "§7Zap your enemies for §b0.2x §7your §b✎ Intelligence §7every §a3s", - " ", - "§6Enchanting Exp Boost", - "§7Boosts your Enchanting exp by §a0.3%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GHOUL", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 20000, - "modified": { - "name": "[Lvl 1] Epic Ghoul", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 0.75, - "health": 1, - "ferocity": 0.05 - }, - "texture_path": "/head/87934565bf522f6f4726cdfe127137be11d37c310db34d8c70253392b5ff5b", - "name": "[Lvl 1] Ghoul", - "display_name": "Ghoul", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Intelligence: §a0", - "§7Health: §a+1", - "§7Ferocity: §a0", - " ", - "§6Amplified Healing", - "§7Increase all healing by §a0.3%", - " ", - "§6Zombie Arm", - "§7Increase the health and range of the Zombie sword by §a0.5%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "HOUND", - "exp": 43487.29259999999, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 157192.60408053308, - "modified": { - "name": "[Lvl 26] Epic Hound", - "isPet": true - }, - "rarity": "epic", - "stats": { - "strength": 10.4, - "bonus_attack_speed": 3.9, - "ferocity": 1.3 - }, - "texture_path": "/head/b7c8bef6beb77e29af8627ecdc38d86aa2fea7ccd163dc73c00f9f258f9a1457", - "name": "[Lvl 26] Hound", - "display_name": "Hound", - "xpMaxLevel": 18608500, - "level": 26, - "xpCurrent": 2787, - "xpForNext": 4000, - "progress": 0.69675, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+10", - "§7Bonus Attack Speed: §a+3", - "§7Ferocity: §a+1", - " ", - "§6Scavenger", - "§7Gain +§a1.3 §7coins per monster kill", - " ", - "§6Finder", - "§7Increases the chance for monsters to drop their armor by §a2.6%", - " ", - "§7Progress to Level 27: §e69.7%", - "§2--------------§f------ §e2,787 §6/ §e4.0K", - "", - "§7Total XP: §e43K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 14720.653773215987, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 2501186.6072310945, - "modified": { - "name": "[Lvl 16] Epic Rock", - "isPet": true - }, - "rarity": "epic", - "stats": { - "defense": 32, - "true_defense": 1.6 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 16] Rock", - "display_name": "Rock", - "xpMaxLevel": 18608500, - "level": 16, - "xpCurrent": 620, - "xpForNext": 1800, - "progress": 0.34444444444444444, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+32", - "§7True Defense: §a+1", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a4% §7defense", - " ", - "§7Progress to Level 17: §e34.4%", - "§2-------§f------------- §e620 §6/ §e1.8K", - "", - "§7Total XP: §e14K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 36119159.19140592, - "active": false, - "tier": "EPIC", - "heldItem": "WASHED_UP_SOUVENIR", - "candyUsed": 0, - "skin": null, - "price": 6830000, - "modified": { - "name": "[Lvl 100] Epic Dolphin", - "isPet": true - }, - "rarity": "epic", - "stats": { - "sea_creature_chance": 10, - "intelligence": 100 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 100] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a+10%", - "§7Intelligence: §a+100", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a5% §7for each nearby player within 10 blocks up to §a25%", - " ", - "§6Echolocation", - "§7Increases sea creatures catch chance by §a10%", - "", - "§6Held Item: §6Washed-up Souvenir", - "§7Increases §3α Sea Creature Chance §7by §a5", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e36.1M §6/ §e18.6M §6(194%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "PARROT", - "exp": 27614407.780526333, - "active": false, - "tier": "EPIC", - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 13158999, - "modified": { - "name": "[Lvl 100] Epic Parrot", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 10, - "intelligence": 100 - }, - "texture_path": "/head/5df4b3401a4d06ad66ac8b5c4d189618ae617f9c143071c8ac39a563cf4e4208", - "name": "[Lvl 100] Parrot", - "display_name": "Parrot", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Alchemy Pet", - "", - "§7Crit Damage: §a+10", - "§7Intelligence: §a+100", - " ", - "§6Flamboyant", - "§7Adds §a15 §7levels to intimidation accessories", - " ", - "§6Repeat", - "§7Boosts potion duration by §a40%", - "", - "§6Held Item: §fAll Skills Exp Boost", - "§7Gives +§a10% §7pet exp for all skills", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e27.6M §6/ §e18.6M §6(148%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 999000, - "modified": { - "name": "[Lvl 1] Epic Magma Cube", - "isPet": true - }, - "rarity": "epic", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.3% §7faster while on your island", - " ", - "§6Salt Blade", - "§7Deal §a0.3% §7more damage to slimes", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 999000, - "modified": { - "name": "[Lvl 1] Epic Magma Cube", - "isPet": true - }, - "rarity": "epic", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.3% §7faster while on your island", - " ", - "§6Salt Blade", - "§7Deal §a0.3% §7more damage to slimes", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "BABY_YETI", - "exp": 25708831.561584134, - "active": false, - "tier": "EPIC", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 7, - "skin": null, - "price": 13001939.889431503, - "modified": { - "name": "[Lvl 100] Epic Baby Yeti", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 75, - "strength": 40 - }, - "texture_path": "/head/ab126814fc3fa846dad934c349628a7a1de5b415021a03ef4211d62514d5", - "name": "[Lvl 100] Baby Yeti", - "display_name": "Baby Yeti", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Intelligence: §a+75", - "§7Strength: §a+40", - " ", - "§6Cold Breeze", - "§7Gives §a50 §c❁ Strength §7and §9☠ Crit Damage §7when near snow", - " ", - "§6Ice Shields", - "§7Gain §a50% §7of your strength as §a❈ Defense", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.7M §6/ §e18.6M §6(138%)", - "§7Candy Used: §e7 §6/ §e10", - "" - ] - }, - { - "type": "BAL", - "exp": 619046.7311604992, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 5716234.718141884, - "modified": { - "name": "[Lvl 54] Epic Bal", - "isPet": true - }, - "rarity": "epic", - "stats": { - "ferocity": 5.4, - "strength": 13.5 - }, - "texture_path": "/head/c469ba2047122e0a2de3c7437ad3dd5d31f1ac2d27abde9f8841e1d92a8c5b75", - "name": "[Lvl 54] Bal", - "display_name": "Bal", - "xpMaxLevel": 18608500, - "level": 54, - "xpCurrent": 43246, - "xpForNext": 52200, - "progress": 0.8284674329501915, - "lore": [ - "§8Combat Pet", - "", - "§7Ferocity: §a+5", - "§7Strength: §a+13", - " ", - "§6Protective Skin", - "§7§7Gives §cheat immunity.", - " ", - "§6Fire Whip", - "§7Every §a5s §7while in combat the Balrog will strike nearby enemies with his fire whip dealing §c5.4% §7of your damage as §ftrue damage.", - " ", - "§7Progress to Level 55: §e82.8%", - "§2-----------------§f--- §e43,246 §6/ §e53K", - "", - "§7Total XP: §e619K §6/ §e18.6M §6(3%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 95000, - "modified": { - "name": "[Lvl 1] Epic Enderman", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.3% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "TARANTULA", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 69420, - "modified": { - "name": "[Lvl 1] Epic Tarantula", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_chance": 0.1, - "crit_damage": 0.3, - "strength": 0.1 - }, - "texture_path": "/head/8300986ed0a04ea79904f6ae53f49ed3a0ff5b1df62bba622ecbd3777f156df8", - "name": "[Lvl 1] Tarantula", - "display_name": "Tarantula", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Chance: §a0", - "§7Crit Damage: §a0", - "§7Strength: §a0", - " ", - "§6Webbed Cells", - "§7Anti-healing is §a0.3% §7less effective against you", - " ", - "§6Eight Legs", - "§7Decreases the mana cost of Spider, Tarantula and Thorn's boots by §a0.5%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "HORSE", - "exp": 9673.888333333345, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "rare", - "stats": { - "intelligence": 8, - "speed": 4 - }, - "texture_path": "/head/36fcd3ec3bc84bafb4123ea479471f9d2f42d8fb9c5f11cf5f4e0d93226", - "name": "[Lvl 16] Horse", - "display_name": "Horse", - "xpMaxLevel": 12626665, - "level": 16, - "xpCurrent": 858, - "xpForNext": 1150, - "progress": 0.7460869565217392, - "lore": [ - "§8Combat Mount", - "", - "§7Intelligence: §a+8", - "§7Speed: §a+4", - " ", - "§6Ridable", - "§7Right-click your summoned pet to ride it!", - " ", - "§6Run", - "§7Increase the speed of your mount by §a17.6%", - " ", - "§7Progress to Level 17: §e74.6%", - "§2---------------§f----- §e858 §6/ §e1.2K", - "", - "§7Total XP: §e9.6K §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 4000, - "modified": { - "name": "[Lvl 1] Rare Enderman", - "isPet": true - }, - "rarity": "rare", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.2% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 500000, - "modified": { - "name": "[Lvl 1] Rare Rock", - "isPet": true - }, - "rarity": "rare", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a0.2% §7defense", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 500000, - "modified": { - "name": "[Lvl 1] Rare Dolphin", - "isPet": true - }, - "rarity": "rare", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", - " ", - "§6Echolocation", - "§7Increases sea creatures catch chance by §a0.1%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 4000, - "modified": { - "name": "[Lvl 1] Rare Enderman", - "isPet": true - }, - "rarity": "rare", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.2% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 119000, - "modified": { - "name": "[Lvl 1] Uncommon Dolphin", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "uncommon", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.2% §7faster while on your island", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 50000, - "modified": { - "name": "[Lvl 1] Uncommon Rock", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "JERRY", - "exp": 1354.1999999999996, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "intelligence": -10 - }, - "texture_path": "/head/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b", - "name": "[Lvl 10] Jerry", - "display_name": "Jerry", - "xpMaxLevel": 5624785, - "level": 10, - "xpCurrent": 14, - "xpForNext": 230, - "progress": 0.06086956521739131, - "lore": [ - "§8Combat Pet", - "", - "§7Intelligence: §a-10", - " ", - "§6Jerry", - "§7Gain §a50% §7chance to deal your regular damage", - " ", - "§6Jerry", - "§7Gain §a100% §7chance to receive a normal amount of drops from mobs", - " ", - "§7Progress to Level 11: §e6.1%", - "§2--§f------------------ §e14 §6/ §e230", - "", - "§7Total XP: §e1.3K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GUARDIAN", - "exp": 4260.302499999998, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 98683.18928723499, - "modified": { - "name": "[Lvl 18] Common Guardian", - "isPet": true - }, - "rarity": "common", - "stats": { - "intelligence": 18, - "defense": 9 - }, - "texture_path": "/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", - "name": "[Lvl 18] Guardian", - "display_name": "Guardian", - "xpMaxLevel": 5624785, - "level": 18, - "xpCurrent": 335, - "xpForNext": 490, - "progress": 0.6836734693877551, - "lore": [ - "§8Enchanting Pet", - "", - "§7Intelligence: §a+18", - "§7Defense: §a+9", - " ", - "§6Lazerbeam", - "§7Zap your enemies for §b0.4x §7your §b✎ Intelligence §7every §a3s", - " ", - "§7Progress to Level 19: §e68.4%", - "§2--------------§f------ §e335 §6/ §e490", - "", - "§7Total XP: §e4.2K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GRIFFIN", - "exp": 37257.960816000086, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 109283.82139107553, - "modified": { - "name": "[Lvl 40] Common Griffin", - "isPet": true - }, - "rarity": "common", - "stats": { - "strength": 10, - "crit_chance": 4, - "crit_damage": 20, - "intelligence": 4, - "magic_find": 4 - }, - "ignoresTierBoost": true, - "texture_path": "/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", - "name": "[Lvl 40] Griffin", - "display_name": "Griffin", - "xpMaxLevel": 5624785, - "level": 40, - "xpCurrent": 192, - "xpForNext": 3420, - "progress": 0.056140350877192984, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+10", - "§7Crit Chance: §a+4", - "§7Crit Damage: §a+20", - "§7Intelligence: §a+4", - "§7Magic Find: §a+4", - " ", - "§6Odyssey", - "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", - " ", - "§7Progress to Level 41: §e5.6%", - "§2--§f------------------ §e192 §6/ §e3.5K", - "", - "§7Total XP: §e37K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 20000, - "modified": { - "name": "[Lvl 1] Common Dolphin", - "isPet": true - }, - "rarity": "common", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 5628208.409586144, - "active": false, - "tier": "COMMON", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 10, - "skin": null, - "rarity": "common", - "stats": { - "defense": 200, - "true_defense": 10 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 100] Rock", - "display_name": "Rock", - "xpMaxLevel": 5624785, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+200", - "§7True Defense: §a+10", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e5.6M §6/ §e5.6M §6(100%)", - "§7Candy Used: §e10 §6/ §e10", - "" - ] - }, - { - "type": "KUUDRA", - "exp": 341344.2917178187, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "health": 256, - "strength": 25.6 - }, - "texture_path": "/head/1f0239fb498e5907ede12ab32629ee95f0064574a9ffdff9fc3a1c8e2ec17587", - "name": "[Lvl 64] Kuudra", - "display_name": "Kuudra", - "xpMaxLevel": 5624785, - "level": 64, - "xpCurrent": 2459, - "xpForNext": 32400, - "progress": 0.07589506172839507, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+256", - "§7Strength: §a+25", - " ", - "§6Crimson", - "§7Grants §a6.4% §7extra crimson essence", - " ", - "§6Wither Bait", - "§7Increases the odds of finding a vanquisher by §a6.4%", - " ", - "§8This pet's perks are active even when the pet is not summoned!", - "", - "§8This pet gains XP even when not summoned!", - "", - "§8This pet only gains XP on the §cCrimson Isle§8!", - "", - "§7Progress to Level 65: §e7.6%", - "§2--§f------------------ §e2,459 §6/ §e33K", - "", - "§7Total XP: §e341K §6/ §e5.6M §6(6%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - } - ], "talismans": { "common": [ { @@ -12677,9 +12426,7 @@ "enrichment": "None" } ], - "very": [ - - ] + "very": [] }, "collections": [ { @@ -12856,11 +12603,11 @@ "category": "FARMING", "maxTiers": 9, "tier": 9, - "amount": 155633680, + "amount": 262395543, "contributions": [ { "user": "ea805d40e8284d8d8e64e9fc8ac301ca", - "amount": 155633680 + "amount": 262395543 } ] }, @@ -13066,11 +12813,11 @@ "category": "MINING", "maxTiers": 9, "tier": 9, - "amount": 51812743, + "amount": 62489689, "contributions": [ { "user": "ea805d40e8284d8d8e64e9fc8ac301ca", - "amount": 51812743 + "amount": 62489689 } ] }, @@ -13249,9 +12996,7 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [ - - ] + "contributions": [] }, { "name": "Slimeball", @@ -14004,47 +13749,9 @@ ] }, "cakebag": [ - 17, - 18, - 30, - 35, - 36, - 37, - 41, - 42, - 43, - 46, - 47, - 48, - 49, - 53, - 54, - 55, - 59, - 64, - 78, - 69, - 84, - 90, - 97, - 101, - 112, - 119, - 121, - 124, - 125, - 126, - 132, - 136, - 137, - 138, - 139, - 143, - 149, - 150, - 173, - 180, - 185 + 17, 18, 30, 35, 36, 37, 41, 42, 43, 46, 47, 48, 49, 53, 54, 55, 59, 64, + 78, 69, 84, 90, 97, 101, 112, 119, 121, 124, 125, 126, 132, 136, 137, 138, + 139, 143, 149, 150, 173, 180, 185 ] } -} \ No newline at end of file +} diff --git a/examples/profiles/example_response_full.json b/examples/profiles/example_response_full.json index 01e8c56..69fa538 100644 --- a/examples/profiles/example_response_full.json +++ b/examples/profiles/example_response_full.json @@ -7,30 +7,30 @@ "name": "Watermelon", "id": "ea805d40e8284d8d8e64e9fc8ac301ca", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": false, "gamemode": "normal", - "last_save": 1658865721767, + "last_save": 1660392819654, "first_join": 1566480416181, "fairy_souls": 237, - "purse": 200011, - "bank": 75907706.06348844, + "purse": 1749878.1, + "bank": 72957706.06348844, "skills": { "farming": { - "totalXp": 51174926.84323144, - "xp": 51172425, - "level": 49, - "xpCurrent": 2501, - "xpForNext": 4000000, - "progress": 0.00062525, - "levelWithProgress": 49.00062525 + "totalXp": 81035102.22211151, + "xp": 79672425, + "level": 55, + "xpCurrent": 1362677, + "xpForNext": 5800000, + "progress": 0.23494431034482757, + "levelWithProgress": 55.23494431034483 }, "mining": { - "totalXp": 174237174.4224013, + "totalXp": 184370142.3149587, "xp": 111672425, "level": 60, - "xpCurrent": 62564749, + "xpCurrent": 72697717, "xpForNext": 0, "progress": 0, "levelWithProgress": 60 @@ -81,10 +81,10 @@ "levelWithProgress": 50 }, "carpentry": { - "totalXp": 59237690.54235503, + "totalXp": 59237692.846355036, "xp": 55172425, "level": 50, - "xpCurrent": 4065265, + "xpCurrent": 4065267, "xpForNext": 0, "progress": 0, "levelWithProgress": 50 @@ -108,45 +108,57 @@ "levelWithProgress": 11.895666666666667 }, "taming": { - "totalXp": 178548828.91809577, + "totalXp": 196668560.47704425, "xp": 55172425, "level": 50, - "xpCurrent": 123376403, + "xpCurrent": 141496135, "xpForNext": 0, "progress": 0, "levelWithProgress": 50 } }, "networth": { - "total_networth": 3299291337.0634885, - "purse": 200011, - "bank": 75907706.06348844, + "total_networth": 1607165321.1634884, + "purse": 1749878.1, + "bank": 72957706.06348844, "types": { "sacks": { - "total": 4802944, + "total": 10025131, "top_items": [ { "id": "null_sphere", "name": "Null Sphere", - "price": 4801771, + "price": 10004618, "count": 11141 }, + { + "id": "diamond", + "name": "Diamond", + "price": 16528, + "count": 2066 + }, + { + "id": "melon", + "name": "Melon", + "price": 2823, + "count": 2823 + }, { "id": "enchanted_ice", "name": "Enchanted Ice", - "price": 579, + "price": 554, "count": 1 }, { "id": "rotten_flesh", "name": "Rotten Flesh", - "price": 324, + "price": 405, "count": 81 }, { "id": "ender_stone", "name": "End Stone", - "price": 256, + "price": 192, "count": 64 }, { @@ -158,28 +170,28 @@ { "id": "carrot_item", "name": "Carrot", - "price": 6, + "price": 3, "count": 3 } ] }, "armor": { - "total": 72437890, + "total": 82539397, "top_items": [ { "id": "wise_wither_chestplate", "name": "Loving Storm's Chestplate ✪✪✪✪✪", - "price": 28105385, + "price": 27199161, "recomb": true, - "base": 14798000, + "base": 14100000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -191,17 +203,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -211,7 +223,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -247,20 +259,72 @@ ], "count": 1 }, + { + "id": "wither_goggles", + "name": "Necrotic Wither Goggles ✪✪✪✪✪", + "price": 21886914, + "recomb": true, + "base": 14000000, + "calculation": [ + { + "type": "ultimate_wisdom_5", + "value": 2447998.3 + }, + { + "type": "growth_5", + "value": 0 + }, + { + "type": "protection_5", + "value": 0 + }, + { + "type": "Recombobulator 3000", + "value": 4634540.8, + "count": 1 + }, + { + "type": "UNDEAD Essence", + "value": 27500.000000000004, + "count": 40 + }, + { + "type": "UNDEAD Essence", + "value": 55000.00000000001, + "count": 80 + }, + { + "type": "UNDEAD Essence", + "value": 103125.00000000001, + "count": 150 + }, + { + "type": "UNDEAD Essence", + "value": 206250.00000000003, + "count": 300 + }, + { + "type": "UNDEAD Essence", + "value": 412500.00000000006, + "count": 600 + } + ], + "count": 1 + }, { "id": "wise_wither_leggings", "name": "Necrotic Storm's Leggings ✪✪✪✪✪", - "price": 18820385, + "price": 19464160, "recomb": true, - "base": 6998000, + "base": 7849999, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -272,17 +336,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -292,7 +356,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -326,17 +390,17 @@ { "id": "wise_wither_boots", "name": "Necrotic Storm's Boots ✪✪✪✪✪", - "price": 13497385, + "price": 13989161, "recomb": true, - "base": 2500000, + "base": 3200000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -348,17 +412,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -368,7 +432,7 @@ }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { @@ -398,70 +462,18 @@ } ], "count": 1 - }, - { - "id": "wither_goggles", - "name": "Necrotic Wither Goggles ✪✪✪✪✪", - "price": 12014734, - "recomb": true, - "base": 3899999, - "calculation": [ - { - "type": "ultimate_wisdom_5", - "value": 2720000 - }, - { - "type": "growth_5", - "value": 0 - }, - { - "type": "protection_5", - "value": 0 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "UNDEAD Essence", - "value": 27500.000000000004, - "count": 40 - }, - { - "type": "UNDEAD Essence", - "value": 55000.00000000001, - "count": 80 - }, - { - "type": "UNDEAD Essence", - "value": 103125.00000000001, - "count": 150 - }, - { - "type": "UNDEAD Essence", - "value": 206250.00000000003, - "count": 300 - }, - { - "type": "UNDEAD Essence", - "value": 412500.00000000006, - "count": 600 - } - ], - "count": 1 } ] }, "wardrobe_inventory": { - "total": 319906257, + "total": 347097231, "top_items": [ { "id": "warden_helmet", "name": "Ancient Warden Helmet", - "price": 173732834, + "price": 166622386, "recomb": true, - "base": 167999996, + "base": 160999000, "calculation": [ { "type": "growth_5", @@ -473,17 +485,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], @@ -492,17 +504,17 @@ { "id": "power_wither_chestplate", "name": "Ancient Necron's Chestplate ✪✪✪✪✪", - "price": 31543337, + "price": 48337314, "recomb": true, - "base": 19900000, + "base": 36699000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -514,17 +526,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -558,17 +570,17 @@ { "id": "power_wither_leggings", "name": "Ancient Necron's Leggings ✪✪✪✪✪", - "price": 24158337, + "price": 41153314, "recomb": true, - "base": 14000000, + "base": 31000000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -580,17 +592,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -624,17 +636,17 @@ { "id": "power_wither_boots", "name": "Ancient Necron's Boots ✪✪✪✪✪", - "price": 18533337, + "price": 19327314, "recomb": true, - "base": 9200000, + "base": 9999000, "calculation": [ { "type": "ultimate_last_stand_2", - "value": 382500 + "value": 379585.35 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "protection_5", @@ -646,17 +658,17 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 }, { @@ -688,19 +700,19 @@ "count": 1 }, { - "id": "final_destination_chestplate", - "name": "Ancient Final Destination Chestplate", - "price": 9830837, + "id": "final_destination_leggings", + "name": "Ancient Final Destination Leggings", + "price": 9536727, "recomb": true, - "base": 800000, + "base": 780000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { "type": "growth_5", @@ -712,126 +724,109 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "final_destination_leggings", - "name": "Ancient Final Destination Leggings", - "price": 9820837, + "id": "final_destination_boots", + "name": "Ancient Final Destination Boots", + "price": 9506727, "recomb": true, - "base": 790000, + "base": 750000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "sorrow_chestplate", - "name": "Wise Sorrow Chestplate", - "price": 9550000, - "base": 9550000, - "calculation": [ - { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "final_destination_boots", - "name": "Ancient Final Destination Boots", - "price": 9510837, + "id": "final_destination_chestplate", + "name": "Ancient Final Destination Chestplate", + "price": 9456727, "recomb": true, - "base": 480000, + "base": 700000, "calculation": [ { "type": "ultimate_wisdom_5", - "value": 2720000 + "value": 2447998.3 }, { "type": "rejuvenate_5", - "value": 577998.2999999999 + "value": 685342.25 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 }, { "type": "precursor_gear Reforge", - "value": 712608, + "value": 646226, "count": 1 } ], "count": 1 }, { - "id": "sorrow_leggings", - "name": "Wise Sorrow Leggings", - "price": 8600000, - "base": 8600000, + "id": "sorrow_chestplate", + "name": "Wise Sorrow Chestplate", + "price": 9000000, + "base": 9000000, "calculation": [ { "type": "protection_5", @@ -845,10 +840,10 @@ "count": 1 }, { - "id": "sorrow_helmet", - "name": "Wise Sorrow Helmet", - "price": 6080000, - "base": 6080000, + "id": "sorrow_leggings", + "name": "Wise Sorrow Leggings", + "price": 8724494, + "base": 8724494, "calculation": [ { "type": "protection_5", @@ -864,8 +859,8 @@ { "id": "sorrow_boots", "name": "Wise Sorrow Boots", - "price": 4950000, - "base": 4950000, + "price": 6515599, + "base": 6515599, "calculation": [ { "type": "growth_5", @@ -879,35 +874,37 @@ "count": 1 }, { - "id": "ranchers_boots", - "name": "Rancher's Boots", - "price": 2799000, - "base": 2799000, - "calculation": [], - "count": 1 - }, - { - "id": "tarantula_boots", - "name": "Fierce Tarantula Boots", - "price": 1099900, - "base": 1099900, + "id": "sorrow_helmet", + "name": "Wise Sorrow Helmet", + "price": 5900000, + "base": 5900000, "calculation": [ { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 } ], "count": 1 }, + { + "id": "ranchers_boots", + "name": "Rancher's Boots", + "price": 2383333, + "base": 2383333, + "calculation": [ + + ], + "count": 1 + }, { "id": "shark_scale_chestplate", "name": "Fierce Shark Scale Chestplate", - "price": 900000, - "base": 900000, + "price": 1000000, + "base": 1000000, "calculation": [ { "type": "protection_5", @@ -921,10 +918,10 @@ "count": 1 }, { - "id": "tarantula_chestplate", - "name": "Fierce Tarantula Chestplate", - "price": 880000, - "base": 880000, + "id": "tarantula_boots", + "name": "Fierce Tarantula Boots", + "price": 925000, + "base": 925000, "calculation": [ { "type": "growth_5", @@ -940,8 +937,8 @@ { "id": "tarantula_helmet", "name": "Fierce Tarantula Helmet", - "price": 818000, - "base": 818000, + "price": 916000, + "base": 916000, "calculation": [ { "type": "growth_5", @@ -955,10 +952,27 @@ "count": 1 }, { - "id": "tarantula_leggings", - "name": "Fierce Tarantula Leggings", - "price": 780000, - "base": 780000, + "id": "tarantula_chestplate", + "name": "Fierce Tarantula Chestplate", + "price": 898999, + "base": 898999, + "calculation": [ + { + "type": "growth_5", + "value": 0 + }, + { + "type": "protection_5", + "value": 0 + } + ], + "count": 1 + }, + { + "id": "bat_person_leggings", + "name": "Wise Bat Person Leggings", + "price": 707999, + "base": 707999, "calculation": [ { "type": "protection_5", @@ -974,8 +988,8 @@ { "id": "young_dragon_chestplate", "name": "Young Dragon Chestplate ✪✪✪✪✪", - "price": 736000, - "base": 230000, + "price": 706000, + "base": 200000, "calculation": [ { "type": "DRAGON Essence", @@ -1008,8 +1022,8 @@ { "id": "shark_scale_leggings", "name": "Fierce Shark Scale Leggings", - "price": 730000, - "base": 730000, + "price": 680000, + "base": 680000, "calculation": [ { "type": "protection_5", @@ -1023,27 +1037,27 @@ "count": 1 }, { - "id": "bat_person_boots", - "name": "Wise Bat Person Boots", - "price": 545000, - "base": 545000, + "id": "shark_scale_helmet", + "name": "Fierce Shark Scale Helmet", + "price": 590000, + "base": 590000, "calculation": [ { - "type": "growth_5", + "type": "protection_5", "value": 0 }, { - "type": "protection_5", + "type": "growth_5", "value": 0 } ], "count": 1 }, { - "id": "shark_scale_helmet", - "name": "Fierce Shark Scale Helmet", - "price": 520000, - "base": 520000, + "id": "tarantula_leggings", + "name": "Fierce Tarantula Leggings", + "price": 575000, + "base": 575000, "calculation": [ { "type": "protection_5", @@ -1059,8 +1073,8 @@ { "id": "bat_person_helmet", "name": "Wise Bat Person Helmet", - "price": 499000, - "base": 499000, + "price": 509000, + "base": 509000, "calculation": [ { "type": "protection_5", @@ -1074,27 +1088,27 @@ "count": 1 }, { - "id": "bat_person_chestplate", - "name": "Wise Bat Person Chestplate", - "price": 499000, - "base": 499000, + "id": "bat_person_boots", + "name": "Wise Bat Person Boots", + "price": 505999, + "base": 505999, "calculation": [ { - "type": "protection_5", + "type": "growth_5", "value": 0 }, { - "type": "growth_5", + "type": "protection_5", "value": 0 } ], "count": 1 }, { - "id": "bat_person_leggings", - "name": "Wise Bat Person Leggings", - "price": 499000, - "base": 499000, + "id": "shark_scale_boots", + "name": "Fierce Shark Scale Boots", + "price": 465000, + "base": 465000, "calculation": [ { "type": "protection_5", @@ -1108,26 +1122,10 @@ "count": 1 }, { - "id": "mineral_chestplate", - "name": "Mineral Chestplate", - "price": 489000, - "base": 489000, - "calculation": [], - "count": 1 - }, - { - "id": "mineral_leggings", - "name": "Mineral Leggings", - "price": 430000, - "base": 430000, - "calculation": [], - "count": 1 - }, - { - "id": "shark_scale_boots", - "name": "Fierce Shark Scale Boots", - "price": 370000, - "base": 370000, + "id": "bat_person_chestplate", + "name": "Wise Bat Person Chestplate", + "price": 435000, + "base": 435000, "calculation": [ { "type": "protection_5", @@ -1141,479 +1139,352 @@ "count": 1 }, { - "id": "mineral_helmet", - "name": "Mineral Helmet", - "price": 299000, - "base": 299000, - "calculation": [], + "id": "mineral_leggings", + "name": "Mineral Leggings", + "price": 330000, + "base": 330000, + "calculation": [ + + ], "count": 1 }, { - "id": "young_dragon_leggings", - "name": "Young Dragon Leggings", - "price": 225000, - "base": 225000, - "calculation": [], + "id": "mineral_helmet", + "name": "Mineral Helmet", + "price": 329000, + "base": 329000, + "calculation": [ + + ], "count": 1 }, { "id": "mineral_boots", "name": "Mineral Boots", - "price": 200000, - "base": 200000, - "calculation": [], - "count": 1 + "price": 300000, + "base": 300000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "mineral_chestplate", + "name": "Mineral Chestplate", + "price": 245000, + "base": 245000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "young_dragon_leggings", + "name": "Young Dragon Leggings", + "price": 227500, + "base": 227500, + "calculation": [ + + ], + "count": 1 }, { "id": "young_dragon_helmet", "name": "Young Dragon Helmet", - "price": 148000, - "base": 148000, - "calculation": [], + "price": 163874, + "base": 163874, + "calculation": [ + + ], "count": 1 }, { "id": "young_dragon_boots", "name": "Young Dragon Boots", - "price": 130000, - "base": 130000, - "calculation": [], + "price": 123922, + "base": 123922, + "calculation": [ + + ], "count": 1 } ] }, "inventory": { - "total": 2045432195, + "total": 115122704, "top_items": [ { - "id": "hyperion", - "name": "Withered Hyperion ✪✪✪✪✪", - "price": 1187500794, + "id": "theoretical_hoe_cane_3", + "name": "Blessed Turing Sugar Cane Hoe", + "price": 26597036, "recomb": true, - "base": 1150000000, + "base": 20000000, "calculation": [ { - "type": "ender_slayer_6", - "value": 1657500 + "type": "Farming for Dummies", + "value": 1725000, + "count": 5 }, { - "type": "vampirism_6", - "value": 306000 + "type": "Recombobulator 3000", + "value": 4634540.8, + "count": 1 }, { - "type": "giant_killer_6", - "value": 595000 - }, + "type": "blessed_fruit Reforge", + "value": 1099996, + "count": 1 + } + ], + "count": 1 + }, + { + "id": "enchanted_diamond_block", + "name": "Enchanted Diamond Block", + "price": 85604064, + "base": 13169856, + "calculation": [ + + ], + "count": 416 + }, + { + "id": "stonk_pickaxe", + "name": "Refined Stonk", + "price": 2682988, + "base": 1502999, + "calculation": [ { - "type": "first_strike_4", + "type": "efficiency_6", "value": 0 }, { - "type": "ultimate_wise_5", - "value": 2720000 - }, + "type": "refined_amber Reforge", + "value": 1179989, + "count": 1 + } + ], + "count": 1 + }, + { + "id": "enchanted_diamond", + "name": "Enchanted Diamond", + "price": 213616, + "base": 86528, + "calculation": [ + + ], + "count": 158 + }, + { + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 25000, + "base": 12800, + "calculation": [ + + ], + "count": 125 + } + ] + }, + "enderchest": { + "total": 83460795, + "top_items": [ + { + "id": "reaper_sword", + "name": "Dirty Reaper Falchion", + "price": 14342620, + "base": 14000000, + "calculation": [ { - "type": "cubism_5", + "type": "giant_killer_5", "value": 0 }, { - "type": "lethality_6", - "value": 127500 + "type": "first_strike_4", + "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { - "type": "The Art of War", - "value": 6090000, - "count": 1 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "FINE JASPER Gem", - "value": 49366, - "count": 1 - }, - { - "type": "JASPER undefined Gem", + "type": "dirt_bottle Reforge", "value": 0, "count": 1 - }, + } + ], + "count": 1 + }, + { + "id": "emerald_blade", + "name": "Withered Emerald Blade", + "price": 12404000, + "base": 5500000, + "calculation": [ { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 + "type": "ultimate_one_for_all_1", + "value": 4526250 }, { "type": "wither_blood Reforge", - "value": 2382620, - "count": 1 - }, - { - "type": "WITHER Essence", - "value": 330000, - "count": 150 - }, - { - "type": "WITHER Essence", - "value": 660000, - "count": 300 - }, - { - "type": "WITHER Essence", - "value": 1100000, - "count": 500 - }, - { - "type": "WITHER Essence", - "value": 1980000.0000000002, - "count": 900 - }, - { - "type": "WITHER Essence", - "value": 3300000.0000000005, - "count": 1500 - }, - { - "type": "SHADOW_WARP_SCROLL", - "value": 3800000, - "count": 1 - }, - { - "type": "WITHER_SHIELD_SCROLL", - "value": 4199000, - "count": 1 - }, - { - "type": "IMPLOSION_SCROLL", - "value": 5600000, + "value": 2377750, "count": 1 } ], "count": 1 }, { - "id": "terminator", - "name": "Hasty Terminator ➍⍟✪✪✪✪", - "price": 715911986, - "recomb": true, - "base": 549980000, + "id": "livid_dagger", + "name": "Fabled Livid Dagger ✪✪✪✪✪", + "price": 9713619, + "base": 7069000, "calculation": [ { - "type": "vicious_5", - "value": 40205000 + "type": "ender_slayer_5", + "value": 0 }, { - "type": "ultimate_soul_eater_5", - "value": 8921499.649999999 + "type": "giant_killer_5", + "value": 0 }, { - "type": "power_6", - "value": 340000 + "type": "first_strike_4", + "value": 0 }, { - "type": "snipe_3", + "type": "sharpness_5", "value": 0 }, { "type": "cubism_5", "value": 0 }, - { - "type": "overload_5", - "value": 6114495.449999999 - }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { - "type": "Fuming Potato Books", - "value": 5369790, - "count": 5 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "first_master_star", - "value": 11950000, - "count": 1 - }, - { - "type": "second_master_star", - "value": 23400000, - "count": 1 - }, - { - "type": "third_master_star", - "value": 29999999, - "count": 1 - }, - { - "type": "fourth_master_star", - "value": 32688888, + "type": "dragon_claw Reforge", + "value": 409999, "count": 1 }, { - "type": "DRAGON Essence", - "value": 110000.00000000001, - "count": 100 - }, - { - "type": "DRAGON Essence", - "value": 220000.00000000003, - "count": 200 - }, - { - "type": "DRAGON Essence", - "value": 330000, - "count": 300 - }, - { - "type": "DRAGON Essence", - "value": 550000, - "count": 500 - }, - { - "type": "DRAGON Essence", - "value": 825000.0000000001, - "count": 750 - }, - { - "type": "DRAGON Essence", - "value": 110000.00000000001, - "count": 100 + "type": "WITHER Essence", + "value": 66000, + "count": 30 }, { - "type": "DRAGON Essence", - "value": 220000.00000000003, - "count": 200 + "type": "WITHER Essence", + "value": 132000, + "count": 60 }, { - "type": "DRAGON Essence", - "value": 330000, - "count": 300 + "type": "WITHER Essence", + "value": 264000, + "count": 120 }, { - "type": "DRAGON Essence", + "type": "WITHER Essence", "value": 550000, - "count": 500 + "count": 250 }, { - "type": "DRAGON Essence", - "value": 825000.0000000001, - "count": 750 + "type": "WITHER Essence", + "value": 880000.0000000001, + "count": 400 } ], "count": 1 }, { - "id": "atomsplit_katana", - "name": "Fabled Atomsplit Katana", - "price": 61935087, - "recomb": true, - "base": 48000000, + "id": "flower_of_truth", + "name": "Spicy Flower of Truth", + "price": 6085935, + "base": 5531666, "calculation": [ { - "type": "ultimate_swarm_3", - "value": 1983333.05 - }, - { - "type": "ender_slayer_6", - "value": 1657500 + "type": "ender_slayer_5", + "value": 0 }, { - "type": "giant_killer_6", - "value": 595000 + "type": "giant_killer_5", + "value": 0 }, { "type": "first_strike_4", "value": 0 }, { - "type": "sharpness_6", - "value": 892500 + "type": "ultimate_wise_5", + "value": 211649.15 }, { - "type": "cubism_5", + "type": "sharpness_5", "value": 0 }, { - "type": "lethality_6", - "value": 127500 + "type": "cubism_5", + "value": 0 }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 - }, - { - "type": "Fuming Potato Books", - "value": 5369790, - "count": 5 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "FINE JASPER Gem", - "value": 49366, - "count": 1 - }, - { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 - }, - { - "type": "FINE SAPPHIRE Gem", - "value": 19578, - "count": 1 - }, - { - "type": "dragon_claw Reforge", - "value": 348628, - "count": 1 } ], "count": 1 }, { - "id": "soul_whip", - "name": "Withered Soul Whip", - "price": 18462406, - "base": 8000000, + "id": "mithril_drill_1", + "name": "Refined Mithril Drill SX-R226", + "price": 4969989, + "base": 3790000, "calculation": [ { - "type": "ultimate_swarm_5", - "value": 7649916.7 - }, - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", + "type": "efficiency_5", "value": 0 }, { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "wither_blood Reforge", - "value": 2382620, + "type": "refined_amber Reforge", + "value": 1179989, "count": 1 } ], "count": 1 }, { - "id": "bait_ring", - "name": "Shaded Bait Ring", - "price": 17000000, - "base": 17000000, - "calculation": [], - "count": 1 - }, - { - "id": "summoning_ring", - "name": "Summoning Ring", - "price": 10555555, - "base": 10555555, - "calculation": [], - "count": 1 - }, - { - "id": "aspect_of_the_void", - "name": "Heroic Aspect of the Void", - "price": 8420000, - "base": 5700000, + "id": "great_spook_staff", + "name": "Great Spook Staff", + "price": 4000000, + "base": 4000000, "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "ultimate_wise_5", - "value": 2720000 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - } + ], "count": 1 }, { - "id": "wand_of_atonement", - "name": "Wand of Atonement", - "price": 6720000, - "base": 4000000, + "id": "theoretical_hoe_warts_2", + "name": "Blessed Newton Nether Warts Hoe", + "price": 3599996, + "base": 2500000, "calculation": [ { - "type": "ultimate_wise_5", - "value": 2720000 + "type": "blessed_fruit Reforge", + "value": 1099996, + "count": 1 } ], "count": 1 }, - { - "id": "silverfish", - "name": "[Lvl 100] Legendary Silverfish", - "price": 4290000, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "id": "ocelot", - "name": "[Lvl 72] Epic Ocelot", - "price": 3909539, - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, - "count": 1 - }, { "id": "scorpion_foil", "name": "Spicy Thick Scorpion Foil", - "price": 2729869, - "base": 2299999, + "price": 3242620, + "base": 2900000, "calculation": [ { "type": "giant_killer_5", @@ -1625,121 +1496,59 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 } ], "count": 1 }, { - "id": "bat", - "name": "[Lvl 83] Epic Bat", - "price": 2431943, - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "id": "mana_flux_power_orb", - "name": "Mana Flux Power Orb", - "price": 1900000, - "base": 1900000, - "calculation": [], - "count": 1 - }, - { - "id": "treecapitator_axe", - "name": "Treecapitator", - "price": 1380000, - "base": 1380000, - "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } - ], - "count": 1 - }, - { - "id": "wand_of_restoration", - "name": "Wand of Restoration", - "price": 1000000, - "base": 1000000, - "calculation": [], - "count": 1 - }, - { - "id": "aatrox_batphone", - "name": "Maddox Batphone", - "price": 550000, - "base": 550000, - "calculation": [], - "count": 1 - }, - { - "id": "enchanted_book", - "name": "Ultimate Wise 1", - "price": 140000, - "base": 2750, + "id": "theoretical_hoe_carrot_2", + "name": "Blessed Gauss Carrot Hoe", + "price": 3099996, + "base": 2000000, "calculation": [ { - "type": "Enchantment Book", - "value": 140000 + "type": "blessed_fruit Reforge", + "value": 1099996, + "count": 1 } ], "count": 1 }, { - "id": "livid_fragment", - "name": "Livid Fragment", - "price": 97000, - "base": 97000, - "calculation": [], - "count": 1 - }, - { - "id": "piggy_bank", - "name": "Piggy Bank", - "price": 75000, - "base": 75000, - "calculation": [], - "count": 1 - }, - { - "id": "skeletor_leggings", - "name": "Titanic Skeletor Leggings", - "price": 37000, - "base": 37000, + "id": "stonk_pickaxe", + "name": "Refined Stonk", + "price": 2682988, + "base": 1502999, "calculation": [ { - "type": "protection_5", + "type": "efficiency_6", "value": 0 }, { - "type": "growth_5", - "value": 0 + "type": "refined_amber Reforge", + "value": 1179989, + "count": 1 } ], "count": 1 }, { - "id": "enchanted_book", - "name": "Rejuvenate 1", - "price": 293590, - "base": 2750, + "id": "divan_fragment", + "name": "Divan Fragment", + "price": 2449833, + "base": 2449833, "calculation": [ - { - "type": "Enchantment Book", - "value": 26690 - } + ], - "count": 11 + "count": 3 }, { - "id": "zombie_knight_leggings", - "name": "Fierce Zombie Knight Leggings", - "price": 15000, - "base": 15000, + "id": "starred_bonzo_mask", + "name": "⚚ Fierce Bonzo's Mask ✪✪✪✪✪", + "price": 2418000, + "base": 2000000, "calculation": [ { "type": "protection_5", @@ -1748,145 +1557,165 @@ { "type": "growth_5", "value": 0 - } - ], - "count": 1 - }, - { - "id": "potion", - "name": "Health Potion VIII Splash Potion", - "price": 13000, - "base": 13000, - "calculation": [], - "count": 1 - }, - { - "id": "earth_shard", - "name": "Odd Earth Shard", - "price": 12000, - "base": 12000, - "calculation": [ + }, { - "type": "first_strike_4", - "value": 0 + "type": "WITHER Essence", + "value": 11000, + "count": 5 }, { - "type": "sharpness_5", - "value": 0 + "type": "WITHER Essence", + "value": 22000, + "count": 10 }, { - "type": "scavenger_5", - "value": 0 + "type": "WITHER Essence", + "value": 55000.00000000001, + "count": 25 }, { - "type": "giant_killer_5", - "value": 0 + "type": "WITHER Essence", + "value": 110000.00000000001, + "count": 50 + }, + { + "type": "WITHER Essence", + "value": 220000.00000000003, + "count": 100 } ], "count": 1 }, { - "id": "earth_shard", - "name": "Fast Earth Shard", - "price": 12000, - "base": 12000, + "id": "starred_venoms_touch", + "name": "⚚ Unreal Venom's Touch", + "price": 1942620, + "base": 1600000, "calculation": [ { - "type": "first_strike_4", + "type": "power_5", "value": 0 }, { - "type": "sharpness_5", + "type": "snipe_3", "value": 0 }, { - "type": "scavenger_5", + "type": "cubism_5", "value": 0 + }, + { + "type": "Hot Potato Books", + "value": 342620, + "count": 10 } ], "count": 1 }, { - "id": "zombie_soldier_leggings", - "name": "Titanic Zombie Soldier Leggings", - "price": 10000, - "base": 10000, + "id": "refined_titanium_pickaxe", + "name": "Fleet Refined Titanium Pickaxe", + "price": 1600000, + "base": 1600000, "calculation": [ { - "type": "protection_5", + "type": "efficiency_5", "value": 0 }, { - "type": "growth_5", - "value": 0 + "type": "diamonite Reforge", + "value": 0, + "count": 1 } ], "count": 1 }, { - "id": "zombie_soldier_chestplate", - "name": "Light Zombie Soldier Chestplate", - "price": 10000, - "base": 10000, + "id": "treecapitator_axe", + "name": "Treecapitator", + "price": 1574333, + "base": 1574333, "calculation": [ { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", + "type": "efficiency_5", "value": 0 } ], "count": 1 }, { - "id": "zombie_soldier_leggings", - "name": "Clean Zombie Soldier Leggings", - "price": 10000, - "base": 10000, + "id": "control_switch", + "name": "Control Switch", + "price": 1095645, + "base": 1095645, "calculation": [ - { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", - "value": 0 - } + ], - "count": 1 + "count": 5 }, { - "id": "crypt_dreadlord_sword", - "name": "Legendary Dreadlord Sword", - "price": 5284, - "base": 5284, + "id": "phantom_rod", + "name": "Sharp Phantom Rod", + "price": 999000, + "base": 999000, "calculation": [ { - "type": "first_strike_4", + "type": "ender_slayer_5", "value": 0 }, { - "type": "sharpness_5", + "type": "giant_killer_5", "value": 0 }, { - "type": "scavenger_5", + "type": "sharpness_5", "value": 0 }, { - "type": "giant_killer_5", + "type": "cubism_5", "value": 0 } ], "count": 1 }, { - "id": "crypt_bow", - "name": "Unreal Soulstealer Bow", - "price": 5038, - "base": 5038, + "id": "aspect_of_the_dragon", + "name": "Heroic Aspect of the Dragons", + "price": 927982, + "base": 716333, + "calculation": [ + { + "type": "ultimate_wise_5", + "value": 211649.15 + } + ], + "count": 1 + }, + { + "id": "ornate_zombie_sword", + "name": "Ornate Zombie Sword", + "price": 900000, + "base": 900000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "ftx_3070", + "name": "FTX 3070", + "price": 729171, + "base": 729171, + "calculation": [ + + ], + "count": 3 + }, + { + "id": "runaans_bow", + "name": "Unreal Runaan's Bow", + "price": 672620, + "base": 330000, "calculation": [ { "type": "power_5", @@ -1895,513 +1724,224 @@ { "type": "snipe_3", "value": 0 + }, + { + "type": "cubism_5", + "value": 0 + }, + { + "type": "Hot Potato Books", + "value": 342620, + "count": 10 } ], "count": 1 }, { - "id": "slime_hat", - "name": "Slime Hat", - "price": 100, - "base": 100, - "calculation": [], - "count": 1 - } - ] - }, - "enderchest": { - "total": 92272474, - "top_items": [ - { - "id": "theoretical_hoe_cane_3", - "name": "Blessed Turing Sugar Cane Hoe", - "price": 26575198, - "recomb": true, - "base": 20000000, + "id": "dungeon_chest_key", + "name": "Dungeon Chest Key", + "price": 625000, + "base": 625000, "calculation": [ - { - "type": "Farming for Dummies", - "value": 1745000, - "count": 5 - }, - { - "type": "Recombobulator 3000", - "value": 4590360.8, - "count": 1 - }, - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } + ], - "count": 1 + "count": 5 }, { - "id": "livid_dagger", - "name": "Fabled Livid Dagger ✪✪✪✪✪", - "price": 9870496, - "base": 7199998, + "id": "electron_transmitter", + "name": "Electron Transmitter", + "price": 597584, + "base": 597584, "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "dragon_claw Reforge", - "value": 348628, - "count": 1 - }, - { - "type": "WITHER Essence", - "value": 66000, - "count": 30 - }, - { - "type": "WITHER Essence", - "value": 132000, - "count": 60 - }, - { - "type": "WITHER Essence", - "value": 264000, - "count": 120 - }, - { - "type": "WITHER Essence", - "value": 550000, - "count": 250 - }, - { - "type": "WITHER Essence", - "value": 880000.0000000001, - "count": 400 - } + ], - "count": 1 + "count": 8 }, { - "id": "emerald_blade", - "name": "Withered Emerald Blade", - "price": 7678174, - "base": 375000, + "id": "synthetic_heart", + "name": "Synthetic Heart", + "price": 542098, + "base": 542098, "calculation": [ - { - "type": "ultimate_one_for_all_1", - "value": 4920554.8 - }, - { - "type": "wither_blood Reforge", - "value": 2382620, - "count": 1 - } + ], - "count": 1 + "count": 2 }, { - "id": "flower_of_truth", - "name": "Spicy Flower of Truth", - "price": 7449870, - "base": 4300000, + "id": "sorrow", + "name": "Sorrow", + "price": 390000, + "base": 390000, "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "ultimate_wise_5", - "value": 2720000 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } + ], "count": 1 }, { - "id": "mithril_drill_1", - "name": "Refined Mithril Drill SX-R226", - "price": 4199999, - "base": 3200000, + "id": "jungle_key", + "name": "Jungle Key", + "price": 338716, + "base": 338716, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - }, - { - "type": "refined_amber Reforge", - "value": 999999, - "count": 1 - } + ], - "count": 1 + "count": 4 }, { - "id": "theoretical_hoe_warts_2", - "name": "Blessed Newton Nether Warts Hoe", - "price": 3612338, - "base": 2500000, + "id": "crystal_fragment", + "name": "Crystal Fragment", + "price": 184175, + "base": 184175, "calculation": [ - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } + ], "count": 1 }, { - "id": "aspect_of_the_dragon", - "name": "Heroic Aspect of the Dragons", - "price": 3370000, - "base": 650000, + "id": "blaze_belt", + "name": "Blaze Belt", + "price": 180000, + "base": 180000, "calculation": [ - { - "type": "ultimate_wise_5", - "value": 2720000 - } + ], "count": 1 }, { - "id": "reaper_sword", - "name": "Dirty Reaper Falchion", - "price": 3209870, - "base": 2780000, + "id": "jerry_staff", + "name": "Jerry-chine Gun", + "price": 170000, + "base": 170000, "calculation": [ - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - }, - { - "type": "dirt_bottle Reforge", - "value": 0, - "count": 1 - } + ], "count": 1 }, { - "id": "theoretical_hoe_carrot_2", - "name": "Blessed Gauss Carrot Hoe", - "price": 3112338, - "base": 2000000, + "id": "superlite_motor", + "name": "Superlite Motor", + "price": 149499, + "base": 149499, "calculation": [ - { - "type": "blessed_fruit Reforge", - "value": 1112338, - "count": 1 - } + ], - "count": 1 + "count": 3 }, { - "id": "great_spook_staff", - "name": "Great Spook Staff", - "price": 2890000, - "base": 2890000, - "calculation": [], + "id": "prehistoric_egg", + "name": "Prehistoric Egg", + "price": 90000, + "base": 90000, + "calculation": [ + + ], "count": 1 }, { - "id": "scorpion_foil", - "name": "Spicy Thick Scorpion Foil", - "price": 2729869, - "base": 2299999, + "id": "goldor_the_fish", + "name": "Goldor the Fish", + "price": 75000, + "base": 75000, "calculation": [ - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } + ], "count": 1 }, { - "id": "divan_fragment", - "name": "Divan Fragment", - "price": 2550000, - "base": 2550000, - "calculation": [], - "count": 3 + "id": "sludge_juice", + "name": "Sludge Juice", + "price": 259584, + "base": 64896, + "calculation": [ + + ], + "count": 256 }, { - "id": "starred_venoms_touch", - "name": "⚚ Unreal Venom's Touch", - "price": 1929870, - "base": 1500000, + "id": "goblin_egg", + "name": "Goblin Egg", + "price": 260598, + "base": 53456, "calculation": [ - { - "type": "power_5", - "value": 0 - }, - { - "type": "snipe_3", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } + ], - "count": 1 + "count": 78 }, { - "id": "starred_bonzo_mask", - "name": "⚚ Fierce Bonzo's Mask ✪✪✪✪✪", - "price": 1640222, - "base": 1222222, + "id": "magical_water_bucket", + "name": "Magical Water Bucket", + "price": 82372, + "base": 41186, "calculation": [ - { - "type": "protection_5", - "value": 0 - }, - { - "type": "growth_5", - "value": 0 - }, - { - "type": "WITHER Essence", - "value": 11000, - "count": 5 - }, - { - "type": "WITHER Essence", - "value": 22000, - "count": 10 - }, - { - "type": "WITHER Essence", - "value": 55000.00000000001, - "count": 25 - }, - { - "type": "WITHER Essence", - "value": 110000.00000000001, - "count": 50 - }, - { - "type": "WITHER Essence", - "value": 220000.00000000003, - "count": 100 - } + ], - "count": 1 + "count": 2 }, { - "id": "stonk_pickaxe", - "name": "Refined Stonk", - "price": 1597999, - "base": 598000, + "id": "sludge_juice", + "name": "Sludge Juice", + "price": 28392, + "base": 28392, "calculation": [ - { - "type": "efficiency_6", - "value": 0 - }, - { - "type": "refined_amber Reforge", - "value": 999999, - "count": 1 - } + ], - "count": 1 + "count": 28 }, { - "id": "treecapitator_axe", - "name": "Treecapitator", - "price": 1380000, - "base": 1380000, + "id": "helix", + "name": "Helix", + "price": 7500, + "base": 7500, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } + ], "count": 1 }, { - "id": "refined_titanium_pickaxe", - "name": "Fleet Refined Titanium Pickaxe", - "price": 1200000, - "base": 1200000, + "id": "wishing_compass", + "name": "Wishing Compass", + "price": 12118, + "base": 6059, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - }, - { - "type": "diamonite Reforge", - "value": 0, - "count": 1 - } + ], - "count": 1 + "count": 2 }, { - "id": "phantom_rod", - "name": "Sharp Phantom Rod", - "price": 750000, - "base": 750000, + "id": "grappling_hook", + "name": "Grappling Hook", + "price": 6000, + "base": 6000, "calculation": [ - { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - } + ], "count": 1 }, { - "id": "runaans_bow", - "name": "Unreal Runaan's Bow", - "price": 739870, - "base": 310000, + "id": "yoggie", + "name": "Yoggie", + "price": 5984, + "base": 5984, "calculation": [ - { - "type": "power_5", - "value": 0 - }, - { - "type": "snipe_3", - "value": 0 - }, - { - "type": "cubism_5", - "value": 0 - }, - { - "type": "Hot Potato Books", - "value": 429870, - "count": 10 - } + ], - "count": 1 - }, - { - "id": "electron_transmitter", - "name": "Electron Transmitter", - "price": 703992, - "base": 703992, - "calculation": [], - "count": 8 - }, - { - "id": "ornate_zombie_sword", - "name": "Ornate Zombie Sword", - "price": 694000, - "base": 694000, - "calculation": [], - "count": 1 - }, - { - "id": "dungeon_chest_key", - "name": "Dungeon Chest Key", - "price": 560000, - "base": 560000, - "calculation": [], - "count": 5 - }, - { - "id": "control_switch", - "name": "Control Switch", - "price": 550000, - "base": 550000, - "calculation": [], - "count": 5 - }, - { - "id": "synthetic_heart", - "name": "Synthetic Heart", - "price": 399998, - "base": 399998, - "calculation": [], - "count": 2 + "count": 32 }, { - "id": "sorrow", - "name": "Sorrow", - "price": 385000, - "base": 385000, - "calculation": [], + "id": "rogue_sword", + "name": "Rogue Sword", + "price": 5000, + "base": 5000, + "calculation": [ + + ], "count": 1 }, { "id": "jungle_pickaxe", "name": "Jungle Pickaxe", - "price": 309000, - "base": 309000, + "price": 122, + "base": 122, "calculation": [ { "type": "efficiency_5", @@ -2410,155 +1950,21 @@ ], "count": 1 }, - { - "id": "jerry_staff", - "name": "Jerry-chine Gun", - "price": 300000, - "base": 300000, - "calculation": [], - "count": 1 - }, - { - "id": "ftx_3070", - "name": "FTX 3070", - "price": 269994, - "base": 269994, - "calculation": [], - "count": 3 - }, - { - "id": "superlite_motor", - "name": "Superlite Motor", - "price": 210000, - "base": 210000, - "calculation": [], - "count": 3 - }, - { - "id": "blaze_belt", - "name": "Blaze Belt", - "price": 200000, - "base": 200000, - "calculation": [], - "count": 1 - }, - { - "id": "jungle_key", - "name": "Jungle Key", - "price": 199996, - "base": 199996, - "calculation": [], - "count": 4 - }, - { - "id": "crystal_fragment", - "name": "Crystal Fragment", - "price": 99999, - "base": 99999, - "calculation": [], - "count": 1 - }, - { - "id": "goblin_egg", - "name": "Goblin Egg", - "price": 329152, - "base": 82288, - "calculation": [], - "count": 64 - }, - { - "id": "sludge_juice", - "name": "Sludge Juice", - "price": 321536, - "base": 80384, - "calculation": [], - "count": 256 - }, - { - "id": "goblin_egg", - "name": "Goblin Egg", - "price": 72002, - "base": 72002, - "calculation": [], - "count": 14 - }, - { - "id": "goldor_the_fish", - "name": "Goldor the Fish", - "price": 58000, - "base": 58000, - "calculation": [], - "count": 1 - }, - { - "id": "prehistoric_egg", - "name": "Prehistoric Egg", - "price": 50000, - "base": 50000, - "calculation": [], - "count": 1 - }, - { - "id": "sludge_juice", - "name": "Sludge Juice", - "price": 35168, - "base": 35168, - "calculation": [], - "count": 28 - }, - { - "id": "yoggie", - "name": "Yoggie", - "price": 18048, - "base": 18048, - "calculation": [], - "count": 32 - }, - { - "id": "helix", - "name": "Helix", - "price": 9000, - "base": 9000, - "calculation": [], - "count": 1 - }, - { - "id": "grappling_hook", - "name": "Grappling Hook", - "price": 6000, - "base": 6000, - "calculation": [], - "count": 1 - }, - { - "id": "rogue_sword", - "name": "Rogue Sword", - "price": 5000, - "base": 5000, - "calculation": [], - "count": 1 - }, - { - "id": "magical_water_bucket", - "name": "Magical Water Bucket", - "price": 400, - "base": 200, - "calculation": [], - "count": 2 - }, { "id": "rabbit_hat", "name": "Rabbit Hat", "price": 50, "base": 50, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { "id": "gold_pickaxe", "name": "Golden Pickaxe", - "price": 22, - "base": 22, + "price": 35, + "base": 35, "calculation": [ { "type": "efficiency_5", @@ -2572,37 +1978,66 @@ "name": "Defuse Kit", "price": 1, "base": 1, - "calculation": [], + "calculation": [ + + ], "count": 1 - }, - { - "id": "wishing_compass", - "name": "Wishing Compass", - "price": 2, - "base": 1, - "calculation": [], - "count": 2 } ] }, "personal_vault": { - "total": 256642, + "total": 499301, "top_items": [ { "id": "livid_fragment", "name": "Livid Fragment", - "price": 97000, + "price": 151454, "recomb": true, - "base": 97000, - "calculation": [], + "base": 151454, + "calculation": [ + + ], "count": 1 }, { - "id": "foul_flesh", - "name": "Foul Flesh", - "price": 46089, - "base": 46089, - "calculation": [], + "id": "giant_fragment_boulder", + "name": "Jolly Pink Rock", + "price": 82142, + "recomb": true, + "base": 82142, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "potion", + "name": "Blindness II Potion", + "price": 50097, + "base": 50097, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Pestilence Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Snake Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { @@ -2610,121 +2045,116 @@ "name": "Beheaded Horror", "price": 30000, "base": 30000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "giant_fragment_boulder", - "name": "Jolly Pink Rock", - "price": 25000, - "recomb": true, - "base": 25000, - "calculation": [], + "id": "revenant_catalyst", + "name": "Revenant Catalyst", + "price": 27000, + "base": 27000, + "calculation": [ + + ], "count": 1 }, { - "id": "spiders_den_top_travel_scroll", - "name": "Travel Scroll to Spider's Den Top of Nest", - "price": 15000, - "recomb": true, - "base": 15000, - "calculation": [], + "id": "foul_flesh", + "name": "Foul Flesh", + "price": 26299, + "base": 26299, + "calculation": [ + + ], "count": 1 }, { - "id": "potion", - "name": "Blindness II Potion", - "price": 13000, - "base": 13000, - "calculation": [], + "id": "spiders_den_top_travel_scroll", + "name": "Travel Scroll to Spider's Den Top of Nest", + "price": 13700, + "recomb": true, + "base": 13700, + "calculation": [ + + ], "count": 1 }, { "id": "jerry_stone", "name": "Jerry Stone", - "price": 11697, - "base": 11697, - "calculation": [], - "count": 1 - }, - { - "id": "revenant_catalyst", - "name": "Revenant Catalyst", - "price": 10000, - "base": 10000, - "calculation": [], + "price": 11685, + "base": 11685, + "calculation": [ + + ], "count": 1 }, { "id": "undead_catalyst", "name": "Undead Catalyst", - "price": 3000, - "base": 3000, - "calculation": [], + "price": 7000, + "base": 7000, + "calculation": [ + + ], "count": 1 }, { "id": "holy_fragment", "name": "Holy Dragon Fragment", - "price": 2791, + "price": 2527, "recomb": true, - "base": 2791, - "calculation": [], + "base": 2527, + "calculation": [ + + ], "count": 1 }, { "id": "arachne_keeper_fragment", "name": "Arachne's Keeper Fragment", - "price": 1679, + "price": 1373, "recomb": true, - "base": 1679, - "calculation": [], + "base": 1373, + "calculation": [ + + ], "count": 1 }, { "id": "sludge_juice", "name": "Sludge Juice", - "price": 1256, + "price": 1014, "recomb": true, - "base": 1256, - "calculation": [], + "base": 1014, + "calculation": [ + + ], "count": 1 }, { "id": "wool", "name": "White Wool", - "price": 128, + "price": 10, "recomb": true, - "base": 128, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Pestilence Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Snake Rune I", - "price": 1, - "base": 1, - "calculation": [], + "base": 10, + "calculation": [ + + ], "count": 1 } ] }, "storage": { - "total": 82235158, + "total": 310116638, "top_items": [ { "id": "gemstone_gauntlet", "name": "Auspicious Gemstone Gauntlet", - "price": 26508105, - "base": 15144444, + "price": 70941999, + "base": 60000000, "calculation": [ { "type": "efficiency_5", @@ -2732,36 +2162,36 @@ }, { "type": "pristine_4", - "value": 8414150 + "value": 8159150 }, { "type": "FINE JADE Gem", - "value": 19502, + "value": 19381, "count": 1 }, { "type": "FINE AMBER Gem", - "value": 25873, + "value": 24860, "count": 1 }, { "type": "FINE SAPPHIRE Gem", - "value": 19578, + "value": 19330, "count": 1 }, { "type": "FINE AMETHYST Gem", - "value": 25597, + "value": 139999, "count": 1 }, { "type": "FLAWLESS TOPAZ Gem", - "value": 2148967, + "value": 2031481, "count": 1 }, { "type": "rock_gemstone Reforge", - "value": 709994, + "value": 547798, "count": 1 } ], @@ -2770,66 +2200,210 @@ { "id": "rod_of_the_sea", "name": "Salty Rod of the Sea", - "price": 11590360, + "price": 15634540, "recomb": true, - "base": 7000000, + "base": 11000000, "calculation": [ { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 } ], "count": 1 }, + { + "id": "rune", + "name": "◆ White Spiral Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Hot Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Zap Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Hearts Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Snow Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Lava Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Gem Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Hot Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Sparkling Rune I", + "price": 3040000, + "base": 3040000, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "rune", + "name": "◆ Blood Rune I", + "price": 6080000, + "base": 3040000, + "calculation": [ + + ], + "count": 128 + }, + { + "id": "rune", + "name": "◆ White Spiral Rune I", + "price": 2945000, + "base": 2945000, + "calculation": [ + + ], + "count": 62 + }, + { + "id": "rune", + "name": "◆ Sparkling Rune I", + "price": 2375000, + "base": 2375000, + "calculation": [ + + ], + "count": 50 + }, + { + "id": "block_zapper", + "name": "Block Zapper", + "price": 2150000, + "base": 2150000, + "calculation": [ + + ], + "count": 1 + }, { "id": "jumbo_backpack", "name": "Jumbo Backpack", - "price": 4970000, - "base": 2485000, - "calculation": [], + "price": 4200000, + "base": 2100000, + "calculation": [ + + ], "count": 2 }, { "id": "rabbit", "name": "[Lvl 57] Legendary Rabbit", - "price": 2163679, + "price": 1811997, "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, "count": 1 }, + { + "id": "enchanted_melon_block", + "name": "Enchanted Melon Block", + "price": 106475200, + "base": 1638080, + "calculation": [ + + ], + "count": 4160 + }, + { + "id": "rune", + "name": "◆ Zap Rune I", + "price": 1615000, + "base": 1615000, + "calculation": [ + + ], + "count": 34 + }, { "id": "stonk_pickaxe", - "name": "Refined Stonk", - "price": 1597999, - "base": 598000, + "name": "Fruitful Stonk", + "price": 1502999, + "base": 1502999, "calculation": [ { "type": "efficiency_6", "value": 0 }, { - "type": "refined_amber Reforge", - "value": 999999, + "type": "onyx Reforge", + "value": 0, "count": 1 } ], "count": 1 }, - { - "id": "block_zapper", - "name": "Block Zapper", - "price": 1580000, - "base": 1580000, - "calculation": [], - "count": 1 - }, { "id": "aspect_of_the_dragon", "name": "Fabled Aspect of the Dragons", - "price": 1428498, - "base": 650000, + "price": 1468952, + "base": 716333, "calculation": [ { "type": "ender_slayer_5", @@ -2853,134 +2427,261 @@ }, { "type": "Hot Potato Books", - "value": 429870, + "value": 342620, "count": 10 }, { "type": "dragon_claw Reforge", - "value": 348628, + "value": 409999, "count": 1 } ], "count": 1 }, { - "id": "bat_artifact", - "name": "Strong Bat Artifact", - "price": 890000, - "base": 890000, - "calculation": [], - "count": 1 + "id": "rune", + "name": "◆ Clouds Rune I", + "price": 1377500, + "base": 1377500, + "calculation": [ + + ], + "count": 29 }, { - "id": "ghoul", - "name": "[Lvl 20] Legendary Ghoul", - "price": 848453, - "heldItem": "PET_ITEM_COMBAT_SKILL_BOOST_COMMON", - "candyUsed": 0, - "isPet": true, - "count": 1 + "id": "rune", + "name": "◆ Golden Rune I", + "price": 1235000, + "base": 1235000, + "calculation": [ + + ], + "count": 26 }, { - "id": "magma_fish_silver", - "name": "Silver Magmafish", - "price": 1439488, - "base": 719744, - "calculation": [], - "count": 128 + "id": "rune", + "name": "◆ Snow Rune I", + "price": 1187500, + "base": 1187500, + "calculation": [ + + ], + "count": 25 }, { - "id": "dark_orb", - "name": "Dark Orb", - "price": 629994, - "base": 629994, - "calculation": [], - "count": 1 + "id": "rune", + "name": "◆ Hearts Rune I", + "price": 1045000, + "base": 1045000, + "calculation": [ + + ], + "count": 22 }, { - "id": "bee", - "name": "[Lvl 35] Epic Bee", - "price": 604827, - "candyUsed": 0, - "isPet": true, + "id": "pet_item_saddle", + "name": "Saddle", + "price": 1000000, + "base": 1000000, + "calculation": [ + + ], "count": 1 }, { - "id": "stonk_pickaxe", - "name": "Fruitful Stonk", - "price": 598000, - "base": 598000, + "id": "rune", + "name": "◆ Pestilence Rune I", + "price": 950000, + "base": 950000, "calculation": [ - { - "type": "efficiency_6", - "value": 0 - }, - { - "type": "onyx Reforge", - "value": 0, - "count": 1 - } + + ], + "count": 20 + }, + { + "id": "bat_artifact", + "name": "Strong Bat Artifact", + "price": 909000, + "base": 909000, + "calculation": [ + ], "count": 1 }, { - "id": "magma_fish_silver", - "name": "Silver Magmafish", - "price": 573546, - "base": 573546, - "calculation": [], - "count": 51 + "id": "dark_orb", + "name": "Dark Orb", + "price": 873047, + "base": 873047, + "calculation": [ + + ], + "count": 1 }, { "id": "skeleton_horse", "name": "[Lvl 10] Legendary Skeleton Horse", - "price": 557678, + "price": 789356, "candyUsed": 0, "isPet": true, "count": 1 }, + { + "id": "rune", + "name": "◆ Lightning Rune I", + "price": 712500, + "base": 712500, + "calculation": [ + + ], + "count": 15 + }, + { + "id": "rune", + "name": "◆ Lava Rune I", + "price": 712500, + "base": 712500, + "calculation": [ + + ], + "count": 15 + }, + { + "id": "rune", + "name": "◆ Spirit Rune I", + "price": 712500, + "base": 712500, + "calculation": [ + + ], + "count": 15 + }, + { + "id": "magma_fish_silver", + "name": "Silver Magmafish", + "price": 1339776, + "base": 669888, + "calculation": [ + + ], + "count": 128 + }, + { + "id": "attribute_shard", + "name": "Attribute Shard", + "price": 24336760, + "base": 608419, + "calculation": [ + + ], + "count": 40 + }, + { + "id": "lucky_hoof", + "name": "Forceful Lucky Hoof", + "price": 600000, + "base": 600000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "lucky_hoof", + "name": "Lucky Hoof", + "price": 600000, + "base": 600000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "magma_fish_silver", + "name": "Silver Magmafish", + "price": 533817, + "base": 533817, + "calculation": [ + + ], + "count": 51 + }, + { + "id": "ragnarock_axe", + "name": "Ragnarock Axe", + "price": 500000, + "base": 500000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "experience_artifact", + "name": "Strong Experience Artifact", + "price": 475000, + "base": 475000, + "calculation": [ + + ], + "count": 1 + }, { "id": "mineral_talisman", "name": "Shaded Mineral Talisman", - "price": 466000, - "base": 466000, - "calculation": [], + "price": 474999, + "base": 474999, + "calculation": [ + + ], "count": 1 }, { "id": "greater_backpack", "name": "Greater Backpack", - "price": 7024000, - "base": 439000, - "calculation": [], + "price": 7520000, + "base": 470000, + "calculation": [ + + ], "count": 16 }, + { + "id": "the_shredder", + "name": "Salty Shredder", + "price": 450000, + "base": 450000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "bee", + "name": "[Lvl 35] Epic Bee", + "price": 405900, + "candyUsed": 0, + "isPet": true, + "count": 1 + }, { "id": "enchanted_book", "name": "Strong Mana 2", - "price": 400000, - "base": 2750, + "price": 399999, + "base": 10000, "calculation": [ { "type": "Enchantment Book", - "value": 400000 + "value": 399999 } ], "count": 1 }, - { - "id": "experience_artifact", - "name": "Strong Experience Artifact", - "price": 400000, - "base": 400000, - "calculation": [], - "count": 1 - }, { "id": "runaans_bow", "name": "Unreal Runaan's Bow", - "price": 395974, - "base": 310000, + "price": 398524, + "base": 330000, "calculation": [ { "type": "snipe_3", @@ -2996,105 +2697,186 @@ }, { "type": "Hot Potato Books", - "value": 85974, + "value": 68524, "count": 2 } ], "count": 1 }, { - "id": "lucky_hoof", - "name": "Forceful Lucky Hoof", - "price": 333000, - "base": 333000, - "calculation": [], - "count": 1 + "id": "rune", + "name": "◆ Couture Rune I", + "price": 380000, + "base": 380000, + "calculation": [ + + ], + "count": 8 }, { - "id": "lucky_hoof", - "name": "Lucky Hoof", - "price": 333000, - "base": 333000, - "calculation": [], + "id": "rune", + "name": "◆ Wake Rune I", + "price": 332500, + "base": 332500, + "calculation": [ + + ], + "count": 7 + }, + { + "id": "rune", + "name": "◆ Magical Rune I", + "price": 332500, + "base": 332500, + "calculation": [ + + ], + "count": 7 + }, + { + "id": "ghoul", + "name": "[Lvl 20] Legendary Ghoul", + "price": 330026, + "heldItem": "PET_ITEM_COMBAT_SKILL_BOOST_COMMON", + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "transmission_tuner", - "name": "Transmission Tuner", - "price": 9100000, - "base": 325000, - "calculation": [], - "count": 28 + "id": "sea_creature_artifact", + "name": "Shaded Sea Creature Artifact", + "price": 318000, + "base": 318000, + "calculation": [ + + ], + "count": 1 }, { "id": "treasure_talisman", "name": "Shaded Treasure Talisman", - "price": 284999, - "base": 284999, - "calculation": [], + "price": 311571, + "base": 311571, + "calculation": [ + + ], "count": 1 }, { - "id": "titanic_exp_bottle", - "name": "Titanic Experience Bottle", - "price": 284881, - "base": 284881, - "calculation": [], - "count": 1 + "id": "rune", + "name": "◆ Gem Rune I", + "price": 285000, + "base": 285000, + "calculation": [ + + ], + "count": 6 }, { - "id": "grand_exp_bottle", - "name": "Grand Experience Bottle", - "price": 252672, - "base": 252672, - "calculation": [], - "count": 64 + "id": "rune", + "name": "◆ Rainbow Rune I", + "price": 285000, + "base": 285000, + "calculation": [ + + ], + "count": 6 }, { "id": "moogma_leggings", "name": "Moogma Leggings", - "price": 440000, - "base": 220000, - "calculation": [], + "price": 520680, + "base": 260340, + "calculation": [ + + ], "count": 2 }, { - "id": "ragnarock_axe", - "name": "Ragnarock Axe", - "price": 219000, - "base": 219000, - "calculation": [], - "count": 1 + "id": "grand_exp_bottle", + "name": "Grand Experience Bottle", + "price": 235072, + "base": 235072, + "calculation": [ + + ], + "count": 64 }, { - "id": "blade_of_the_volcano", - "name": "Blade of the Volcano", - "price": 210000, - "base": 210000, - "calculation": [], + "id": "enchanted_melon_block", + "name": "Enchanted Melon Block", + "price": 230355, + "base": 230355, + "calculation": [ + + ], + "count": 9 + }, + { + "id": "titanic_exp_bottle", + "name": "Titanic Experience Bottle", + "price": 210841, + "base": 210841, + "calculation": [ + + ], "count": 1 }, { - "id": "water_hydra_head", - "name": "Water Hydra Head", - "price": 200000, + "id": "transmission_tuner", + "name": "Transmission Tuner", + "price": 5600000, "base": 200000, - "calculation": [], - "count": 1 + "calculation": [ + + ], + "count": 28 }, { - "id": "sea_creature_artifact", - "name": "Shaded Sea Creature Artifact", + "id": "bat_the_fish", + "name": "Bat the Fish", "price": 200000, "base": 200000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "pet_item_flying_pig", + "name": "Flying Pig", + "price": 195000, + "base": 195000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "crystal_fragment", + "name": "Crystal Fragment", + "price": 184175, + "base": 184175, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "artifact_potion_affinity", + "name": "Shaded Potion Affinity Artifact", + "price": 179000, + "base": 179000, + "calculation": [ + + ], "count": 1 }, { "id": "aspect_of_the_end", "name": "Spicy Aspect of the End", - "price": 180000, - "base": 180000, + "price": 178156, + "base": 178156, "calculation": [ { "type": "ender_slayer_5", @@ -3119,68 +2901,74 @@ ], "count": 1 }, - { - "id": "artifact_potion_affinity", - "name": "Shaded Potion Affinity Artifact", - "price": 160000, - "base": 160000, - "calculation": [], - "count": 1 - }, - { - "id": "jerry_box_blue", - "name": "Blue Jerry Box", - "price": 142297, - "base": 142297, - "calculation": [], - "count": 1 - }, { "id": "slug_boots", "name": "Slug Boots", - "price": 140000, - "base": 140000, - "calculation": [], + "price": 176933, + "base": 176933, + "calculation": [ + + ], "count": 1 }, { - "id": "the_shredder", - "name": "Salty Shredder", - "price": 140000, - "base": 140000, - "calculation": [], + "id": "blade_of_the_volcano", + "name": "Blade of the Volcano", + "price": 150000, + "base": 150000, + "calculation": [ + + ], "count": 1 }, { - "id": "haste_ring", - "name": "Shaded Haste Ring", - "price": 137000, - "base": 137000, - "calculation": [], - "count": 1 + "id": "enchanted_dandelion", + "name": "Enchanted Dandelion", + "price": 147200, + "base": 147200, + "calculation": [ + + ], + "count": 40 }, { - "id": "diver_fragment", - "name": "Emperor's Skull", - "price": 120000, - "base": 120000, - "calculation": [], - "count": 1 + "id": "rune", + "name": "◆ Blood Rune III", + "price": 142500, + "base": 142500, + "calculation": [ + + ], + "count": 3 }, { "id": "feather_artifact", "name": "Shaded Feather Artifact", - "price": 114000, - "base": 114000, - "calculation": [], + "price": 129000, + "base": 129000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "haste_ring", + "name": "Shaded Haste Ring", + "price": 122500, + "base": 122500, + "calculation": [ + + ], "count": 1 }, { "id": "magma_fish_silver", "name": "Silver Magmafish", - "price": 112460, - "base": 112460, - "calculation": [], + "price": 104670, + "base": 104670, + "calculation": [ + + ], "count": 10 }, { @@ -3188,300 +2976,516 @@ "name": "Hoe of Greater Tilling", "price": 100000, "base": 100000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "pet_item_flying_pig", - "name": "Flying Pig", + "id": "water_hydra_head", + "name": "Water Hydra Head", "price": 100000, "base": 100000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "enderman_cortex_rewriter", - "name": "Enderman Cortex Rewriter", - "price": 200000, - "base": 100000, - "calculation": [], + "id": "pet_item_combat_skill_boost_uncommon", + "name": "Combat Exp Boost", + "price": 198998, + "base": 99499, + "calculation": [ + + ], "count": 2 }, { - "id": "crystal_fragment", - "name": "Crystal Fragment", - "price": 99999, - "base": 99999, - "calculation": [], + "id": "jerry_box_blue", + "name": "Blue Jerry Box", + "price": 99224, + "base": 99224, + "calculation": [ + + ], "count": 1 }, { - "id": "pet_item_combat_skill_boost_uncommon", - "name": "Combat Exp Boost", - "price": 180000, - "base": 90000, - "calculation": [], + "id": "rune", + "name": "◆ Snake Rune I", + "price": 95000, + "base": 95000, + "calculation": [ + + ], "count": 2 }, { - "id": "magma_rod", - "name": "Magma Rod", - "price": 90000, - "base": 90000, - "calculation": [], + "id": "rune", + "name": "◆ Couture Rune I", + "price": 95000, + "base": 95000, + "calculation": [ + + ], + "count": 2 + }, + { + "id": "diver_fragment", + "name": "Emperor's Skull", + "price": 91428, + "base": 91428, + "calculation": [ + + ], "count": 1 }, { "id": "healing_ring", "name": "Shaded Healing Ring", - "price": 85000, - "base": 85000, - "calculation": [], + "price": 84000, + "base": 84000, + "calculation": [ + + ], "count": 1 }, + { + "id": "enderman_cortex_rewriter", + "name": "Enderman Cortex Rewriter", + "price": 160000, + "base": 80000, + "calculation": [ + + ], + "count": 2 + }, + { + "id": "enchanted_dandelion", + "name": "Enchanted Dandelion", + "price": 77280, + "base": 77280, + "calculation": [ + + ], + "count": 21 + }, { "id": "enchanted_book", "name": "Critical 6", - "price": 1185000, - "base": 2750, + "price": 1087500, + "base": 10000, "calculation": [ { "type": "Enchantment Book", - "value": 79000 + "value": 72500 } ], "count": 15 }, + { + "id": "magma_rod", + "name": "Magma Rod", + "price": 59000, + "base": 59000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "fire_talisman", + "name": "Shaded Fire Talisman", + "price": 52900, + "base": 52900, + "calculation": [ + + ], + "count": 1 + }, { "id": "enchanted_book", "name": "Hardened Mana 1", - "price": 74000, - "base": 2750, + "price": 50952, + "base": 10000, "calculation": [ { "type": "Enchantment Book", - "value": 74000 + "value": 50952 } ], "count": 1 }, { - "id": "silent_death", - "name": "Odd Silent Death", - "price": 69000, - "base": 69000, + "id": "rune", + "name": "◆ Rainbow Rune II", + "price": 47500, + "base": 47500, "calculation": [ - { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "scavenger_5", - "value": 0 - }, - { - "type": "giant_killer_5", - "value": 0 - } + ], "count": 1 }, { - "id": "pet_item_saddle", - "name": "Saddle", - "price": 59000, - "base": 59000, - "calculation": [], + "id": "rune", + "name": "◆ Smokey Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "fish_affinity_talisman", - "name": "Shaded Fish Affinity Talisman", - "price": 50000, - "base": 50000, - "calculation": [], + "id": "rune", + "name": "◆ Hearts Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "bat_the_fish", - "name": "Bat the Fish", - "price": 50000, - "base": 50000, - "calculation": [], + "id": "rune", + "name": "◆ Rainbow Rune III", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "grand_exp_bottle", - "name": "Grand Experience Bottle", - "price": 47376, - "base": 47376, - "calculation": [], - "count": 12 - }, - { - "id": "emerald_ring", - "name": "Forceful Emerald Ring", - "price": 38000, - "base": 38000, - "calculation": [], + "id": "rune", + "name": "◆ Fire Spiral Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "fire_talisman", - "name": "Shaded Fire Talisman", - "price": 32400, - "base": 32400, - "calculation": [], + "id": "rune", + "name": "◆ Lightning Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "sinful_dice", - "name": "Sinful Dice", - "price": 29999, - "base": 29999, - "calculation": [], + "id": "rune", + "name": "◆ White Spiral Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "lava_talisman", - "name": "Shaded Lava Talisman", - "price": 29000, - "base": 29000, - "calculation": [], + "id": "rune", + "name": "◆ Zap Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "enchanted_dandelion", - "name": "Enchanted Dandelion", - "price": 25600, - "base": 25600, - "calculation": [], - "count": 40 + "id": "rune", + "name": "◆ Hot Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_book", - "name": "Corruption 1", - "price": 325000, - "base": 2750, + "id": "rune", + "name": "◆ Blood Rune II", + "price": 47500, + "base": 47500, "calculation": [ - { - "type": "Enchantment Book", - "value": 25000 - } + ], - "count": 13 + "count": 1 }, { - "id": "enchanted_book", - "name": "Mana Steal 1", - "price": 1025000, - "base": 2750, + "id": "rune", + "name": "◆ Ice Rune I", + "price": 47500, + "base": 47500, "calculation": [ - { - "type": "Enchantment Book", - "value": 25000 - } + ], - "count": 41 + "count": 1 }, { - "id": "enchanted_poppy", - "name": "Enchanted Poppy", - "price": 23040, - "base": 23040, - "calculation": [], - "count": 8 + "id": "rune", + "name": "◆ Redstone Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_pork", - "name": "Enchanted Pork", - "price": 22576, - "base": 22576, - "calculation": [], - "count": 16 + "id": "rune", + "name": "◆ Endersnake Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_potato", - "name": "Enchanted Potato", - "price": 16256, - "base": 16256, - "calculation": [], - "count": 64 + "id": "rune", + "name": "◆ Sparkling Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_dandelion", - "name": "Enchanted Dandelion", - "price": 13440, - "base": 13440, - "calculation": [], - "count": 21 + "id": "rune", + "name": "◆ Clouds Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "night_vision_charm", - "name": "Shaded Night Vision Charm", - "price": 12000, - "base": 12000, - "calculation": [], + "id": "rune", + "name": "◆ Golden Rune II", + "price": 47500, + "base": 47500, + "calculation": [ + + ], "count": 1 }, { - "id": "attribute_shard", - "name": "Attribute Shard", - "price": 399960, - "base": 9999, - "calculation": [], - "count": 40 + "id": "grand_exp_bottle", + "name": "Grand Experience Bottle", + "price": 44076, + "base": 44076, + "calculation": [ + + ], + "count": 12 }, { - "id": "farmer_orb", - "name": "Shaded Farmer Orb", - "price": 9500, - "base": 9500, - "calculation": [], + "id": "enchanted_poppy", + "name": "Enchanted Poppy", + "price": 41472, + "base": 41472, + "calculation": [ + + ], + "count": 8 + }, + { + "id": "fish_affinity_talisman", + "name": "Shaded Fish Affinity Talisman", + "price": 35315, + "base": 35315, + "calculation": [ + + ], "count": 1 }, { - "id": "snow_shovel", - "name": "Snow Shovel", - "price": 9000, - "base": 9000, - "calculation": [], + "id": "emerald_ring", + "name": "Forceful Emerald Ring", + "price": 35000, + "base": 35000, + "calculation": [ + + ], "count": 1 }, { - "id": "magma_fish", - "name": "Magmafish", - "price": 7872, - "base": 7872, - "calculation": [], + "id": "sinful_dice", + "name": "Sinful Dice", + "price": 30000, + "base": 30000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "lava_talisman", + "name": "Shaded Lava Talisman", + "price": 29000, + "base": 29000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "silent_death", + "name": "Odd Silent Death", + "price": 25999, + "base": 25999, + "calculation": [ + { + "type": "first_strike_4", + "value": 0 + }, + { + "type": "sharpness_5", + "value": 0 + }, + { + "type": "scavenger_5", + "value": 0 + }, + { + "type": "giant_killer_5", + "value": 0 + } + ], + "count": 1 + }, + { + "id": "vaccine_talisman", + "name": "Shaded Vaccine Talisman", + "price": 25012, + "base": 25012, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "enchanted_book", + "name": "Mana Steal 1", + "price": 1025000, + "base": 10000, + "calculation": [ + { + "type": "Enchantment Book", + "value": 25000 + } + ], + "count": 41 + }, + { + "id": "enchanted_pork", + "name": "Enchanted Pork", + "price": 24640, + "base": 24640, + "calculation": [ + + ], + "count": 16 + }, + { + "id": "enchanted_book", + "name": "Corruption 1", + "price": 195000, + "base": 10000, + "calculation": [ + { + "type": "Enchantment Book", + "value": 15000 + } + ], + "count": 13 + }, + { + "id": "enchanted_potato", + "name": "Enchanted Potato", + "price": 13760, + "base": 13760, + "calculation": [ + + ], "count": 64 }, + { + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 12800, + "base": 12800, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "farmer_orb", + "name": "Shaded Farmer Orb", + "price": 9500, + "base": 9500, + "calculation": [ + + ], + "count": 1 + }, { "id": "purple_candy", "name": "Purple Candy", - "price": 7826, - "base": 7826, - "calculation": [], + "price": 8008, + "base": 8008, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "magma_fish", + "name": "Magmafish", + "price": 7424, + "base": 7424, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "wishing_compass", + "name": "Wishing Compass", + "price": 6059, + "base": 6059, + "calculation": [ + + ], "count": 1 }, { "id": "arachne_keeper_fragment", "name": "Arachne's Keeper Fragment", - "price": 6716, - "base": 6716, - "calculation": [], + "price": 5492, + "base": 5492, + "calculation": [ + + ], "count": 4 }, { - "id": "gravity_talisman", - "name": "Shaded Gravity Talisman", - "price": 4320, - "base": 4320, - "calculation": [], + "id": "snow_shovel", + "name": "Snow Shovel", + "price": 5000, + "base": 5000, + "calculation": [ + + ], "count": 1 }, { @@ -3489,43 +3493,68 @@ "name": "Sword of Bad Health", "price": 8000, "base": 4000, - "calculation": [], + "calculation": [ + + ], "count": 2 }, { "id": "grand_exp_bottle", "name": "Grand Experience Bottle", - "price": 3948, - "base": 3948, - "calculation": [], + "price": 3673, + "base": 3673, + "calculation": [ + + ], "count": 1 }, { "id": "green_candy", "name": "Green Candy", - "price": 3344, - "base": 3344, - "calculation": [], + "price": 3256, + "base": 3256, + "calculation": [ + + ], "count": 4 }, + { + "id": "enchanted_melon", + "name": "Enchanted Melon", + "price": 3000, + "base": 3000, + "calculation": [ + + ], + "count": 15 + }, { "id": "endstone_rose", "name": "Endstone Rose", "price": 3000, "base": 3000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "fractured_mithril_pickaxe", - "name": "Fractured Mithril Pickaxe", + "id": "coin_talisman", + "name": "Shaded Talisman of Coins", + "price": 2578, + "base": 2578, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "night_vision_charm", + "name": "Shaded Night Vision Charm", "price": 2500, "base": 2500, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } + ], "count": 1 }, @@ -3534,47 +3563,89 @@ "name": "Shaded Magnetic Talisman", "price": 2000, "base": 2000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "enchanted_coal", - "name": "Enchanted Coal", - "price": 3030, - "base": 1515, - "calculation": [], - "count": 2 + "id": "hard_glass", + "name": "Hard Glass", + "price": 2000, + "base": 2000, + "calculation": [ + + ], + "count": 1 }, { "id": "enchanted_pork", "name": "Enchanted Pork", - "price": 1411, - "base": 1411, - "calculation": [], + "price": 1540, + "base": 1540, + "calculation": [ + + ], "count": 1 }, { - "id": "enchanted_glowstone_dust", - "name": "Enchanted Glowstone Dust", - "price": 2508, - "base": 1254, - "calculation": [], - "count": 2 + "id": "pork", + "name": "Raw Porkchop", + "price": 1380, + "base": 1380, + "calculation": [ + + ], + "count": 20 }, { "id": "ancient_claw", "name": "Ancient Claw", - "price": 1195, - "base": 1195, - "calculation": [], + "price": 1135, + "base": 1135, + "calculation": [ + + ], "count": 5 }, + { + "id": "enchanted_coal", + "name": "Enchanted Coal", + "price": 2188, + "base": 1094, + "calculation": [ + + ], + "count": 2 + }, + { + "id": "enchanted_glowstone_dust", + "name": "Enchanted Glowstone Dust", + "price": 2048, + "base": 1024, + "calculation": [ + + ], + "count": 2 + }, { "id": "gift_compass", "name": "Gift Compass", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "village_talisman", + "name": "Shaded Village Affinity Talisman", + "price": 1000, + "base": 1000, + "calculation": [ + + ], "count": 1 }, { @@ -3582,7 +3653,9 @@ "name": "Shaded Mine Affinity Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -3590,7 +3663,19 @@ "name": "Shaded Scavenger Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "gravity_talisman", + "name": "Shaded Gravity Talisman", + "price": 864, + "base": 864, + "calculation": [ + + ], "count": 1 }, { @@ -3598,7 +3683,32 @@ "name": "Shaded Wood Affinity Talisman", "price": 800, "base": 800, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "pork", + "name": "Raw Porkchop", + "price": 690, + "base": 690, + "calculation": [ + + ], + "count": 10 + }, + { + "id": "fractured_mithril_pickaxe", + "name": "Fractured Mithril Pickaxe", + "price": 682, + "base": 682, + "calculation": [ + { + "type": "efficiency_5", + "value": 0 + } + ], "count": 1 }, { @@ -3606,7 +3716,9 @@ "name": "Sculptor's Axe", "price": 320, "base": 320, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -3614,100 +3726,29 @@ "name": "Shaded Skeleton Talisman", "price": 250, "base": 250, - "calculation": [], - "count": 1 - }, - { - "id": "magma_fish", - "name": "Magmafish", - "price": 246, - "base": 246, - "calculation": [], - "count": 2 - }, - { - "id": "pork", - "name": "Raw Porkchop", - "price": 220, - "base": 220, - "calculation": [], - "count": 20 - }, - { - "id": "village_talisman", - "name": "Shaded Village Affinity Talisman", - "price": 200, - "base": 200, - "calculation": [], - "count": 1 - }, - { - "id": "hard_glass", - "name": "Hard Glass", - "price": 160, - "base": 160, - "calculation": [], - "count": 1 - }, - { - "id": "farming_talisman", - "name": "Shaded Farming Talisman", - "price": 125, - "base": 125, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { "id": "magma_fish", "name": "Magmafish", - "price": 123, - "base": 123, - "calculation": [], - "count": 1 - }, - { - "id": "gold_axe", - "name": "Golden Axe", - "price": 110, - "base": 110, + "price": 348, + "base": 232, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } + ], - "count": 1 - }, - { - "id": "pork", - "name": "Raw Porkchop", - "price": 110, - "base": 110, - "calculation": [], - "count": 10 - }, - { - "id": "blaze_powder", - "name": "Blaze Powder", - "price": 110, - "base": 110, - "calculation": [], - "count": 11 - }, - { - "id": "vaccine_talisman", - "name": "Shaded Vaccine Talisman", - "price": 110, - "base": 110, - "calculation": [], - "count": 1 + "count": 3 }, { "id": "forest_biome_stick", "name": "Forest Biome Stick", "price": 100, "base": 100, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -3715,7 +3756,9 @@ "name": "Music Disc - Mall", "price": 100, "base": 100, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -3723,160 +3766,53 @@ "name": "Lead", "price": 80, "base": 80, - "calculation": [], + "calculation": [ + + ], "count": 2 }, - { - "id": "coin_talisman", - "name": "Shaded Talisman of Coins", - "price": 70, - "base": 70, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ White Spiral Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Hot Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Zap Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Hearts Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Snow Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Lava Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Gem Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Hot Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Sparkling Rune I", - "price": 64, - "base": 64, - "calculation": [], - "count": 64 - }, - { - "id": "rune", - "name": "◆ Blood Rune I", - "price": 128, - "base": 64, - "calculation": [], - "count": 128 - }, - { - "id": "rune", - "name": "◆ White Spiral Rune I", - "price": 62, - "base": 62, - "calculation": [], - "count": 62 - }, { "id": "sulphur_ore", "name": "Sulphur", "price": 54, "base": 54, - "calculation": [], + "calculation": [ + + ], "count": 6 }, { - "id": "rune", - "name": "◆ Sparkling Rune I", - "price": 50, - "base": 50, - "calculation": [], - "count": 50 - }, - { - "id": "rune", - "name": "◆ Zap Rune I", - "price": 34, - "base": 34, - "calculation": [], - "count": 34 - }, - { - "id": "rune", - "name": "◆ Clouds Rune I", - "price": 29, - "base": 29, - "calculation": [], - "count": 29 + "id": "blaze_powder", + "name": "Blaze Powder", + "price": 44, + "base": 44, + "calculation": [ + + ], + "count": 11 }, { - "id": "rune", - "name": "◆ Golden Rune I", - "price": 26, - "base": 26, - "calculation": [], - "count": 26 + "id": "gold_axe", + "name": "Golden Axe", + "price": 35, + "base": 35, + "calculation": [ + { + "type": "efficiency_5", + "value": 0 + } + ], + "count": 1 }, { - "id": "rune", - "name": "◆ Snow Rune I", + "id": "farming_talisman", + "name": "Shaded Farming Talisman", "price": 25, "base": 25, - "calculation": [], - "count": 25 - }, - { - "id": "rune", - "name": "◆ Hearts Rune I", - "price": 22, - "base": 22, - "calculation": [], - "count": 22 + "calculation": [ + + ], + "count": 1 }, { "id": "diamond_spade", @@ -3891,20 +3827,14 @@ ], "count": 1 }, - { - "id": "rune", - "name": "◆ Pestilence Rune I", - "price": 20, - "base": 20, - "calculation": [], - "count": 20 - }, { "id": "shears", "name": "Shears", "price": 15, "base": 15, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -3921,277 +3851,65 @@ "count": 1 }, { - "id": "rune", - "name": "◆ Lightning Rune I", - "price": 15, - "base": 15, - "calculation": [], - "count": 15 - }, - { - "id": "rune", - "name": "◆ Lava Rune I", - "price": 15, - "base": 15, - "calculation": [], - "count": 15 - }, - { - "id": "rune", - "name": "◆ Spirit Rune I", - "price": 15, - "base": 15, - "calculation": [], - "count": 15 + "id": "golden_apple", + "name": "Golden Apple", + "price": 8, + "base": 8, + "calculation": [ + + ], + "count": 1 }, { "id": "blaze_powder", "name": "Blaze Powder", - "price": 10, - "base": 10, - "calculation": [], + "price": 4, + "base": 4, + "calculation": [ + + ], "count": 1 - }, + } + ] + }, + "pets": { + "total": 349667037, + "top_items": [ { - "id": "golden_apple", - "name": "Golden Apple", - "price": 8, - "base": 8, - "calculation": [], + "name": "[Lvl 100] Legendary Silverfish ✦", + "price": 79478887, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "isPet": true, "count": 1 }, { - "id": "rune", - "name": "◆ Couture Rune I", - "price": 8, - "base": 8, - "calculation": [], - "count": 8 - }, - { - "id": "rune", - "name": "◆ Wake Rune I", - "price": 7, - "base": 7, - "calculation": [], - "count": 7 - }, - { - "id": "rune", - "name": "◆ Magical Rune I", - "price": 7, - "base": 7, - "calculation": [], - "count": 7 - }, - { - "id": "rune", - "name": "◆ Gem Rune I", - "price": 6, - "base": 6, - "calculation": [], - "count": 6 - }, - { - "id": "rune", - "name": "◆ Rainbow Rune I", - "price": 6, - "base": 6, - "calculation": [], - "count": 6 - }, - { - "id": "rune", - "name": "◆ Blood Rune III", - "price": 3, - "base": 3, - "calculation": [], - "count": 3 - }, - { - "id": "rune", - "name": "◆ Snake Rune I", - "price": 2, - "base": 2, - "calculation": [], - "count": 2 - }, - { - "id": "rune", - "name": "◆ Couture Rune I", - "price": 2, - "base": 2, - "calculation": [], - "count": 2 - }, - { - "id": "wishing_compass", - "name": "Wishing Compass", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Rainbow Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Smokey Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Hearts Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Rainbow Rune III", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Fire Spiral Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Lightning Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ White Spiral Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Zap Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Hot Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Blood Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Ice Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Redstone Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Endersnake Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Sparkling Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Clouds Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Golden Rune II", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - } - ] - }, - "pets": { - "total": 360717017, - "top_items": [ - { - "name": "[Lvl 100] Legendary Silverfish ✦", - "price": 79478888, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "name": "[Lvl 72] Legendary Monkey", + "price": 29447758, + "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", "candyUsed": 0, "isPet": true, "count": 1 }, { "name": "[Lvl 98] Legendary Elephant", - "price": 35407221, + "price": 28215706, "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 72] Legendary Monkey", - "price": 33300797, - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", + "name": "[Lvl 94] Legendary Tiger", + "price": 27121976, + "heldItem": "DWARF_TURTLE_SHELMET", "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 94] Legendary Tiger", - "price": 29381156, + "name": "[Lvl 100] Legendary Wolf", + "price": 23106428, "heldItem": "DWARF_TURTLE_SHELMET", "candyUsed": 0, "isPet": true, @@ -4199,63 +3917,55 @@ }, { "name": "[Lvl 100] Legendary Blue Whale", - "price": 23078443, + "price": 22822583, "heldItem": "DWARF_TURTLE_SHELMET", "candyUsed": 4, "isPet": true, "count": 1 }, - { - "name": "[Lvl 100] Legendary Wolf", - "price": 22950000, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "isPet": true, - "count": 1 - }, { "name": "[Lvl 100] Legendary Rock", - "price": 15590000, + "price": 14588999, "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 100] Epic Parrot", - "price": 13158999, - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, + "name": "[Lvl 100] Epic Baby Yeti", + "price": 12999552, + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 7, "isPet": true, "count": 1 }, { - "name": "[Lvl 100] Epic Baby Yeti", - "price": 13001939, - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 7, + "name": "[Lvl 79] Legendary Squid", + "price": 12649409, + "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", + "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 100] Legendary Rabbit", - "price": 12974999, - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "name": "[Lvl 100] Epic Parrot", + "price": 12589000, + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 79] Legendary Squid", - "price": 11533001, - "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", + "name": "[Lvl 100] Legendary Rabbit", + "price": 10594999, + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, "count": 1 }, { "name": "[Lvl 100] Legendary Wither Skeleton", - "price": 9284900, + "price": 8589999, "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, @@ -4263,7 +3973,7 @@ }, { "name": "[Lvl 100] Legendary Sheep", - "price": 9100000, + "price": 8579000, "heldItem": "PET_ITEM_TEXTBOOK", "candyUsed": 0, "isPet": true, @@ -4271,39 +3981,47 @@ }, { "name": "[Lvl 76] Legendary Ocelot", - "price": 7653732, + "price": 7728634, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 100] Legendary Bat", - "price": 7110000, - "heldItem": "PET_ITEM_VAMPIRE_FANG", + "name": "[Lvl 100] Legendary Endermite", + "price": 7589999, + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, "count": 1 }, { "name": "[Lvl 100] Epic Dolphin", - "price": 6830000, + "price": 7498999, "heldItem": "WASHED_UP_SOUVENIR", "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 100] Legendary Endermite", - "price": 6589999, - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "name": "[Lvl 100] Legendary Bat", + "price": 7249999, + "heldItem": "PET_ITEM_VAMPIRE_FANG", + "candyUsed": 0, + "isPet": true, + "count": 1 + }, + { + "name": "[Lvl 88] Legendary Ammonite", + "price": 6820216, + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", "candyUsed": 0, "isPet": true, "count": 1 }, { "name": "[Lvl 100] Legendary Mithril Golem", - "price": 6489000, + "price": 5989999, "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", "candyUsed": 0, "isPet": true, @@ -4311,87 +4029,87 @@ }, { "name": "[Lvl 54] Epic Bal", - "price": 5716234, + "price": 5764571, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Epic Guardian", - "price": 2699999, + "name": "[Lvl 16] Epic Rock", + "price": 2501186, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 16] Epic Rock", - "price": 2501186, + "name": "[Lvl 1] Epic Guardian", + "price": 1950000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 62] Legendary Ammonite", - "price": 1299535, - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, + "name": "[Lvl 56] Legendary Skeleton Horse", + "price": 1780074, + "heldItem": "PET_ITEM_SADDLE", + "candyUsed": 10, "isPet": true, "count": 1 }, { "name": "[Lvl 1] Epic Magma Cube", - "price": 1998000, + "price": 1500000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 2 }, { - "name": "[Lvl 56] Legendary Skeleton Horse", - "price": 972904, - "heldItem": "PET_ITEM_SADDLE", - "candyUsed": 10, + "name": "[Lvl 1] Rare Dolphin", + "price": 640000, + "heldItem": null, + "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 25] Epic Bee", - "price": 601809, + "name": "[Lvl 1] Rare Rock", + "price": 500000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Rare Rock", - "price": 500000, + "name": "[Lvl 25] Epic Bee", + "price": 402211, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Rare Dolphin", - "price": 500000, + "name": "[Lvl 26] Epic Hound", + "price": 276178, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 40] Epic Enderman", - "price": 267691, + "name": "[Lvl 18] Common Guardian", + "price": 210598, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 26] Epic Hound", - "price": 157192, + "name": "[Lvl 40] Epic Enderman", + "price": 117905, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -4399,7 +4117,7 @@ }, { "name": "[Lvl 1] Uncommon Dolphin", - "price": 119000, + "price": 99000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -4407,46 +4125,38 @@ }, { "name": "[Lvl 40] Common Griffin", - "price": 109283, + "price": 76164, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 18] Common Guardian", - "price": 98683, + "name": "[Lvl 1] Epic Tarantula", + "price": 70000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Epic Enderman", - "price": 95000, - "heldItem": null, - "candyUsed": 0, - "isPet": true, - "count": 1 - }, - { - "name": "[Lvl 1] Epic Tarantula", - "price": 69420, + "name": "[Lvl 1] Uncommon Rock", + "price": 55000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Uncommon Rock", - "price": 50000, + "name": "[Lvl 1] Common Dolphin", + "price": 25000, "heldItem": null, "candyUsed": 0, "isPet": true, "count": 1 }, { - "name": "[Lvl 1] Common Dolphin", + "name": "[Lvl 1] Epic Ghoul", "price": 20000, "heldItem": null, "candyUsed": 0, @@ -4454,8 +4164,8 @@ "count": 1 }, { - "name": "[Lvl 1] Epic Ghoul", - "price": 20000, + "name": "[Lvl 1] Epic Enderman", + "price": 11000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -4463,7 +4173,7 @@ }, { "name": "[Lvl 1] Rare Enderman", - "price": 8000, + "price": 6000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -4472,52 +4182,58 @@ ] }, "talismans": { - "total": 245123043, + "total": 233929503, "top_items": [ { "id": "ender_artifact", "name": "Ender Artifact", - "price": 73400000, - "base": 73400000, - "calculation": [], + "price": 70000000, + "base": 70000000, + "calculation": [ + + ], "count": 1 }, { "id": "beastmaster_crest_legendary", "name": "Beastmaster Crest", - "price": 26000000, - "base": 26000000, - "calculation": [], + "price": 24900000, + "base": 24900000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "party_hat_crab", + "name": "Yellow Crab Hat of Celebration", + "price": 17000000, + "base": 17000000, + "calculation": [ + + ], "count": 1 }, { "id": "scarf_grimoire", "name": "Strong Scarf's Grimoire", - "price": 15390360, + "price": 13633540, "recomb": true, - "base": 10800000, + "base": 8999000, "calculation": [ { "type": "Recombobulator 3000", - "value": 4590360.8, + "value": 4634540.8, "count": 1 } ], "count": 1 }, - { - "id": "party_hat_crab", - "name": "Yellow Crab Hat of Celebration", - "price": 14900000, - "base": 14900000, - "calculation": [], - "count": 1 - }, { "id": "auto_recombobulator", "name": "Auto Recombobulator", - "price": 13065000, - "base": 11490000, + "price": 13475000, + "base": 11900000, "calculation": [ { "type": "Enrichment: magic_find", @@ -4530,65 +4246,61 @@ { "id": "candy_relic", "name": "Candy Relic", - "price": 11449000, - "base": 11449000, - "calculation": [], - "count": 1 - }, - { - "id": "eternal_hoof", - "name": "Eternal Hoof", "price": 11000000, "base": 11000000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { "id": "bat_person_artifact", "name": "Bat Person Artifact", - "price": 9900000, - "base": 9900000, - "calculation": [], + "price": 10999900, + "base": 10999900, + "calculation": [ + + ], "count": 1 }, { "id": "potato_talisman", "name": "Potato Talisman", - "price": 9500000, - "base": 9500000, - "calculation": [], + "price": 8999999, + "base": 8999999, + "calculation": [ + + ], "count": 1 }, { - "id": "spider_artifact", - "name": "Spider Artifact", - "price": 7999999, - "base": 7999999, - "calculation": [], + "id": "eternal_hoof", + "name": "Eternal Hoof", + "price": 8999980, + "base": 8999980, + "calculation": [ + + ], "count": 1 }, { "id": "bits_talisman", "name": "Bits Talisman", - "price": 5599000, - "base": 5599000, - "calculation": [], + "price": 5699000, + "base": 5699000, + "calculation": [ + + ], "count": 1 }, { "id": "personal_compactor_7000", "name": "Personal Compactor 7000", - "price": 5290000, - "base": 5290000, - "calculation": [], - "count": 1 - }, - { - "id": "red_claw_artifact", - "name": "Red Claw Artifact", - "price": 5200000, - "base": 5200000, - "calculation": [], + "price": 5195000, + "base": 5195000, + "calculation": [ + + ], "count": 1 }, { @@ -4596,79 +4308,119 @@ "name": "Survivor Cube", "price": 5000000, "base": 5000000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "spider_artifact", + "name": "Spider Artifact", + "price": 4700000, + "base": 4700000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "red_claw_artifact", + "name": "Red Claw Artifact", + "price": 4500000, + "base": 4500000, + "calculation": [ + + ], "count": 1 }, { "id": "razor_sharp_shark_tooth_necklace", "name": "Razor-sharp Shark Tooth Necklace", - "price": 3800000, - "base": 3800000, - "calculation": [], + "price": 3950000, + "base": 3950000, + "calculation": [ + + ], "count": 1 }, { "id": "speed_artifact", "name": "Speed Artifact", - "price": 3800000, - "base": 3800000, - "calculation": [], + "price": 3000000, + "base": 3000000, + "calculation": [ + + ], "count": 1 }, { - "id": "zombie_artifact", - "name": "Zombie Artifact", - "price": 3500000, - "base": 3500000, - "calculation": [], + "id": "tarantula_talisman", + "name": "Tarantula Talisman", + "price": 2790000, + "base": 2790000, + "calculation": [ + + ], "count": 1 }, { "id": "blood_god_crest", "name": "Blood God Crest", - "price": 3099000, - "base": 3099000, - "calculation": [], + "price": 2750000, + "base": 2750000, + "calculation": [ + + ], "count": 1 }, { - "id": "tarantula_talisman", - "name": "Tarantula Talisman", - "price": 2800000, - "base": 2800000, - "calculation": [], + "id": "zombie_artifact", + "name": "Zombie Artifact", + "price": 2700000, + "base": 2700000, + "calculation": [ + + ], "count": 1 }, { "id": "party_hat_crab_animated", "name": "Green Crab Hat of Celebration - 2022 Edition", - "price": 2499000, - "base": 2499000, - "calculation": [], + "price": 2300000, + "base": 2300000, + "calculation": [ + + ], "count": 1 }, { - "id": "devour_ring", - "name": "Devour Ring", - "price": 2080000, - "base": 2080000, - "calculation": [], + "id": "wolf_ring", + "name": "Wolf Ring", + "price": 2100000, + "base": 2100000, + "calculation": [ + + ], "count": 1 }, { - "id": "wolf_ring", - "name": "Wolf Ring", - "price": 1950000, - "base": 1950000, - "calculation": [], + "id": "devour_ring", + "name": "Devour Ring", + "price": 2000000, + "base": 2000000, + "calculation": [ + + ], "count": 1 }, { "id": "intimidation_artifact", "name": "Intimidation Artifact", - "price": 1395000, - "base": 1395000, - "calculation": [], + "price": 1450000, + "base": 1450000, + "calculation": [ + + ], "count": 1 }, { @@ -4676,23 +4428,39 @@ "name": "Wolf Paw", "price": 1000000, "base": 1000000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "bat_artifact", + "name": "Bat Artifact", + "price": 909000, + "base": 909000, + "calculation": [ + + ], "count": 1 }, { "id": "jerry_talisman_green", "name": "Green Jerry Talisman", - "price": 990000, - "base": 990000, - "calculation": [], + "price": 790000, + "base": 790000, + "calculation": [ + + ], "count": 1 }, { - "id": "bat_artifact", - "name": "Bat Artifact", - "price": 890000, - "base": 890000, - "calculation": [], + "id": "pocket_espresso_machine", + "name": "Pocket Espresso Machine", + "price": 575000, + "base": 575000, + "calculation": [ + + ], "count": 1 }, { @@ -4700,47 +4468,59 @@ "name": "King Talisman", "price": 500000, "base": 500000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "mineral_talisman", - "name": "Mineral Talisman", - "price": 466000, - "base": 466000, - "calculation": [], + "id": "experience_artifact", + "name": "Experience Artifact", + "price": 475000, + "base": 475000, + "calculation": [ + + ], "count": 1 }, { - "id": "experience_artifact", - "name": "Experience Artifact", - "price": 400000, - "base": 400000, - "calculation": [], + "id": "mineral_talisman", + "name": "Mineral Talisman", + "price": 474999, + "base": 474999, + "calculation": [ + + ], "count": 1 }, { "id": "new_year_cake_bag", "name": "New Year Cake Bag", - "price": 400000, - "base": 400000, - "calculation": [], + "price": 419000, + "base": 419000, + "calculation": [ + + ], "count": 1 }, { - "id": "pocket_espresso_machine", - "name": "Pocket Espresso Machine", - "price": 397000, - "base": 397000, - "calculation": [], + "id": "sea_creature_artifact", + "name": "Sea Creature Artifact", + "price": 318000, + "base": 318000, + "calculation": [ + + ], "count": 1 }, { "id": "treasure_talisman", "name": "Treasure Talisman", - "price": 284999, - "base": 284999, - "calculation": [], + "price": 311571, + "base": 311571, + "calculation": [ + + ], "count": 1 }, { @@ -4748,55 +4528,59 @@ "name": "Titanium Talisman", "price": 256000, "base": 256000, - "calculation": [], - "count": 1 - }, - { - "id": "sea_creature_artifact", - "name": "Sea Creature Artifact", - "price": 200000, - "base": 200000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { "id": "artifact_potion_affinity", "name": "Potion Affinity Artifact", - "price": 160000, - "base": 160000, - "calculation": [], + "price": 179000, + "base": 179000, + "calculation": [ + + ], "count": 1 }, { - "id": "haste_ring", - "name": "Haste Ring", - "price": 137000, - "base": 137000, - "calculation": [], + "id": "feather_artifact", + "name": "Feather Artifact", + "price": 129000, + "base": 129000, + "calculation": [ + + ], "count": 1 }, { - "id": "feather_artifact", - "name": "Feather Artifact", - "price": 114000, - "base": 114000, - "calculation": [], + "id": "haste_ring", + "name": "Haste Ring", + "price": 122500, + "base": 122500, + "calculation": [ + + ], "count": 1 }, { "id": "healing_ring", "name": "Healing Ring", - "price": 85000, - "base": 85000, - "calculation": [], + "price": 84000, + "base": 84000, + "calculation": [ + + ], "count": 1 }, { - "id": "fish_affinity_talisman", - "name": "Fish Affinity Talisman", - "price": 50000, - "base": 50000, - "calculation": [], + "id": "fire_talisman", + "name": "Fire Talisman", + "price": 52900, + "base": 52900, + "calculation": [ + + ], "count": 1 }, { @@ -4804,23 +4588,29 @@ "name": "Pig's Foot", "price": 40000, "base": 40000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "emerald_ring", - "name": "Emerald Ring", - "price": 38000, - "base": 38000, - "calculation": [], + "id": "fish_affinity_talisman", + "name": "Fish Affinity Talisman", + "price": 35315, + "base": 35315, + "calculation": [ + + ], "count": 1 }, { - "id": "fire_talisman", - "name": "Fire Talisman", - "price": 32400, - "base": 32400, - "calculation": [], + "id": "emerald_ring", + "name": "Emerald Ring", + "price": 35000, + "base": 35000, + "calculation": [ + + ], "count": 1 }, { @@ -4828,15 +4618,19 @@ "name": "Lava Talisman", "price": 29000, "base": 29000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "night_vision_charm", - "name": "Night Vision Charm", - "price": 12000, - "base": 12000, - "calculation": [], + "id": "vaccine_talisman", + "name": "Vaccine Talisman", + "price": 25012, + "base": 25012, + "calculation": [ + + ], "count": 1 }, { @@ -4844,7 +4638,9 @@ "name": "Farmer Orb", "price": 9500, "base": 9500, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -4852,15 +4648,29 @@ "name": "Frozen Chicken", "price": 5000, "base": 5000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "gravity_talisman", - "name": "Gravity Talisman", - "price": 4320, - "base": 4320, - "calculation": [], + "id": "coin_talisman", + "name": "Talisman of Coins", + "price": 2578, + "base": 2578, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "night_vision_charm", + "name": "Night Vision Charm", + "price": 2500, + "base": 2500, + "calculation": [ + + ], "count": 1 }, { @@ -4868,7 +4678,19 @@ "name": "Magnetic Talisman", "price": 2000, "base": 2000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "village_talisman", + "name": "Village Affinity Talisman", + "price": 1000, + "base": 1000, + "calculation": [ + + ], "count": 1 }, { @@ -4876,7 +4698,9 @@ "name": "Scavenger Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -4884,7 +4708,19 @@ "name": "Mine Affinity Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "gravity_talisman", + "name": "Gravity Talisman", + "price": 864, + "base": 864, + "calculation": [ + + ], "count": 1 }, { @@ -4892,15 +4728,9 @@ "name": "Wood Affinity Talisman", "price": 800, "base": 800, - "calculation": [], - "count": 1 - }, - { - "id": "soulflow_pile", - "name": "Soulflow Pile", - "price": 800, - "base": 800, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -4908,23 +4738,19 @@ "name": "Skeleton Talisman", "price": 250, "base": 250, - "calculation": [], - "count": 1 - }, - { - "id": "village_talisman", - "name": "Village Affinity Talisman", - "price": 200, - "base": 200, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "farming_talisman", - "name": "Farming Talisman", - "price": 125, - "base": 125, - "calculation": [], + "id": "soulflow_pile", + "name": "Soulflow Pile", + "price": 160, + "base": 160, + "calculation": [ + + ], "count": 1 }, { @@ -4932,23 +4758,19 @@ "name": "Dante Talisman", "price": 110, "base": 110, - "calculation": [], - "count": 1 - }, - { - "id": "vaccine_talisman", - "name": "Vaccine Talisman", - "price": 110, - "base": 110, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "coin_talisman", - "name": "Talisman of Coins", - "price": 70, - "base": 70, - "calculation": [], + "id": "farming_talisman", + "name": "Farming Talisman", + "price": 25, + "base": 25, + "calculation": [ + + ], "count": 1 } ] @@ -4956,17 +4778,17 @@ } }, "weight": { - "total_weight": 7940.783055698881, - "total_weight_with_overflow": 478.9141212896444, + "total_weight": 8588.876076360184, + "total_weight_with_overflow": 543.6436830177663, "weight": { "skills": { "farming": { - "weight": 696.0868852540224, + "weight": 1344.1799059153227, "weight_overflow": 0 }, "mining": { "weight": 1750, - "weight_overflow": 202.18324593035345 + "weight_overflow": 233.80301935086254 }, "combat": { "weight": 1500, @@ -4990,7 +4812,7 @@ }, "taming": { "weight": 500, - "weight_overflow": 233.41834587815345 + "weight_overflow": 266.52813418576636 }, "slayer": { "revenant": { @@ -5041,19 +4863,19 @@ } }, "senither": { - "total": 8436.397217401078, - "weight": 7940.783055698881, - "weight_overflow": 478.9141212896444, + "total": 9149.2197997905, + "weight": 8588.876076360184, + "weight_overflow": 543.6436830177663, "skills": { "farming": { - "total": 696.0868852540224, - "weight": 696.0868852540224, + "total": 1344.1799059153227, + "weight": 1344.1799059153227, "weight_overflow": 0 }, "mining": { - "total": 1952.1832459303535, + "total": 1983.8030193508625, "weight": 1750, - "weight_overflow": 202.18324593035345 + "weight_overflow": 233.80301935086254 }, "combat": { "total": 1533.9880402275185, @@ -5081,9 +4903,9 @@ "weight_overflow": 0.9655594461091451 }, "taming": { - "total": 733.4183458781534, + "total": 766.5281341857664, "weight": 500, - "weight_overflow": 233.41834587815345 + "weight_overflow": 266.52813418576636 } }, "slayer": { @@ -5150,14 +4972,14 @@ } }, "lily": { - "total": 12305.857726656186, + "total": 9787.789085731169, "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 }, "slayer": { - "total": 1048.2839363756852 + "total": 1047.8763143104497 }, "catacombs": { "total": 448.2215690473853, @@ -6223,7 +6045,9 @@ }, "trophy_fish": { "total_caught": 151, - "rewards": [], + "rewards": [ + + ], "fish": { "BLOBFISH": 57, "BLOBFISH_BRONZE": 39, @@ -6317,217 +6141,1153 @@ "VOLCANIC_STONEFISH_DIAMOND": 0 } }, - "mining": { - "mining": 60, - "mithril_powder": { - "current": 9247, - "total": 1949506 - }, - "gemstone_powder": { - "current": 34822, - "total": 555468 - }, - "hotM_tree": { - "tokens": { - "current": 0, - "total": 15 - }, - "level": 7, - "perks": [ - { - "name": "Peak of the Mountain", - "id": "special_0", - "level": 5, - "maxLevel": 5 - }, - { - "name": "Mining Speed", - "id": "mining_speed", - "level": 25, - "maxLevel": 50 - }, - { - "name": "Mining Fortune", - "id": "mining_fortune", - "level": 26, - "maxLevel": 50 - }, - { - "name": "Titanium Insanium", - "id": "titanium_insanium", - "level": 21, - "maxLevel": 50 - }, - { - "name": "Mining Speed Boost", - "id": "mining_speed_boost", - "level": 1, - "maxLevel": 1 - }, - { - "name": "Daily Powder", - "id": "daily_powder", - "level": 26, - "maxLevel": 100 - }, - { - "name": "Efficient Miner", - "id": "efficient_miner", - "level": 72, - "maxLevel": 100 - }, - { - "name": "Mole", - "id": "mole", - "level": 75, - "maxLevel": 190 - }, - { - "name": "Professional", - "id": "professional", - "level": 37, - "maxLevel": 140 - }, - { - "name": "Powder Buff", - "id": "powder_buff", - "level": 11, - "maxLevel": 50 - }, - { - "name": "Fortunate", - "id": "fortunate", - "level": 20, - "maxLevel": 20 - }, - { - "name": "Great Explorer", - "id": "great_explorer", - "level": 10, - "maxLevel": 20 - }, - { - "name": "Mining Fortune 2", - "id": "mining_fortune_2", - "level": 11, - "maxLevel": 50 + "enchanting": { + "enchanting": 60, + "experimentation": { + "simon": { + "last_attempt": 1653391952901, + "attempts_0": 16, + "bonus_clicks": 3, + "last_claimed": 1653392085547, + "claims_0": 13, + "best_score_0": 20, + "attempts_1": 11, + "claims_1": 11, + "best_score_1": 14, + "attempts_2": 9, + "claims_2": 9, + "best_score_2": 15, + "attempts_3": 19, + "claims_3": 18, + "best_score_3": 11, + "attempts_5": 85, + "claims_5": 84, + "best_score_5": 13 + }, + "pairings": { + "last_claimed": 1653392253096, + "claims_0": 4, + "last_attempt": 0, + "claims_1": 7, + "best_score_1": 2, + "claims_2": 9, + "best_score_2": 3, + "claims_3": 24, + "best_score_3": 4, + "claims_4": 31, + "best_score_4": 5, + "claims_5": 58, + "best_score_5": 4, + "best_score_0": 4 + }, + "numbers": { + "last_attempt": 1653392151299, + "attempts_1": 13, + "bonus_clicks": 3, + "last_claimed": 1653392214053, + "claims_1": 13, + "best_score_1": 20, + "attempts_2": 27, + "claims_2": 26, + "best_score_2": 10, + "attempts_3": 88, + "claims_3": 88, + "best_score_3": 13 + }, + "claims_resets": 1, + "claims_resets_timestamp": 1653391939654 + } + }, + "farming": { + "farming": 55, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 1 + }, + "jacob": { + "talked": true, + "medals": { + "bronze": 5, + "silver": 7, + "gold": 0 + }, + "total_badges": { + "bronze": 13, + "silver": 16, + "gold": 4 + }, + "perks": { + "double_drops": 0, + "farming_level_cap": 1 + }, + "unique_golds": 1, + "crops": { + "CARROT_ITEM": { + "name": "Carrot", + "participated": true, + "unique_gold": false, + "contests": 13, + "personal_best": 261318, + "badges": { + "gold": 0, + "silver": 5, + "bronze": 2 + } }, - { - "name": "Lonesome Miner", - "id": "lonesome_miner", - "level": 1, - "maxLevel": 45 + "CACTUS": { + "name": "Cactus", + "participated": true, + "unique_gold": false, + "contests": 3, + "personal_best": 2759, + "badges": { + "gold": 0, + "silver": 1, + "bronze": 0 + } }, - { - "name": "Mining Speed 2", - "id": "mining_speed_2", - "level": 19, - "maxLevel": 50 + "INK_SACK:3": { + "name": "Cocoa Beans", + "participated": false, + "unique_gold": false, + "contests": 0, + "personal_best": 0, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - { - "name": "Quick Forge", - "id": "forge_time", - "level": 10, - "maxLevel": 20 - } - ], - "disabled_perks": ["forge_time"], - "last_reset": 1631300262538, - "pickaxe_ability": "Mining Speed Boost" - }, - "crystal_hollows": { - "last_pass": 1653388967191, - "crystals": [ - { - "name": "Jade Crystal", - "id": "jade_crystal", - "total_placed": 4, - "statues_placed": [], - "state": "Not Found" + "MELON": { + "name": "Melon", + "participated": true, + "unique_gold": false, + "contests": 1, + "personal_best": 49, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - { - "name": "Amber Crystal", - "total_placed": 4, - "king_quests_completed": 5, - "state": "Not Found" + "MUSHROOM_COLLECTION": { + "name": "Mushroom", + "participated": true, + "unique_gold": false, + "contests": 6, + "personal_best": 28, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - { - "name": "Sapphire Crystal", - "total_placed": 4, - "parts_delivered": [], - "state": "Not Found" + "NETHER_STALK": { + "name": "Nether Wart", + "participated": true, + "unique_gold": false, + "contests": 9, + "personal_best": 157777, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 4 + } }, - { - "name": "Amethyst Crystal", - "total_placed": 4, - "state": "Not Found" + "POTATO_ITEM": { + "name": "Potato", + "participated": true, + "unique_gold": false, + "contests": 4, + "personal_best": 280, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } }, - { - "name": "Topaz Crystal", - "total_placed": 4, - "state": "Found" + "PUMPKIN": { + "name": "Pumpkin", + "participated": true, + "unique_gold": false, + "contests": 2, + "personal_best": 10380, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 1 + } }, - { - "name": "Jasper Crystal", - "total_placed": 0, - "state": "Not Found" + "SUGAR_CANE": { + "name": "Sugar Cane", + "participated": true, + "unique_gold": true, + "contests": 23, + "personal_best": 260821, + "badges": { + "gold": 4, + "silver": 7, + "bronze": 3 + } }, - { - "name": "Ruby Crystal", - "total_placed": 0, - "state": "Not Found" + "WHEAT": { + "name": "Wheat", + "participated": true, + "unique_gold": false, + "contests": 7, + "personal_best": 62011, + "badges": { + "gold": 0, + "silver": 3, + "bronze": 3 + } } - ] - }, - "forge": [ - { - "slot": 1, - "item": "Bejeweled Handle", - "id": "BEJEWELED_HANDLE", - "ending": 1643457369970, - "ended": true - } - ] - }, - "slayer": { - "zombie": { - "xp": 1071500, - "totalKills": 1312, - "level": 9, - "xpForNext": 0, - "progress": 0, - "kills": { - "1": 1, - "2": 4, - "3": 60, - "4": 813, - "5": 434 - } - }, - "spider": { - "xp": 1000000, - "totalKills": 1819, - "level": 9, - "xpForNext": 0, - "progress": 0, - "kills": { - "1": 5, - "2": 3, - "3": 63, - "4": 1748 - } - }, - "wolf": { - "xp": 1000500, - "totalKills": 1766, - "level": 9, - "xpForNext": 0, - "progress": 0, - "kills": { - "1": 5, - "2": 17, - "3": 34, - "4": 1710 + }, + "contests": { + "attended_contests": 68, + "all_contests": [ + { + "date": "6_21_99", + "crop": "PUMPKIN", + "collected": 10380, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1132, + "percentage": 42.74924471299094 + } + }, + { + "date": "6_24_99", + "crop": "CACTUS", + "collected": 2759, + "claimed": true, + "medal": "silver", + "placing": { + "position": 42, + "percentage": 19.35483870967742 + } + }, + { + "date": "6_24_99", + "crop": "NETHER_STALK", + "collected": 302, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "7_2_99", + "crop": "PUMPKIN", + "collected": 211, + "claimed": true, + "medal": null, + "placing": { + "position": 3024, + "percentage": 94.91525423728814 + } + }, + { + "date": "8_16_99", + "crop": "CARROT_ITEM", + "collected": 909, + "claimed": true, + "medal": null, + "placing": { + "position": 976, + "percentage": 78.70967741935485 + } + }, + { + "date": "8_16_99", + "crop": "SUGAR_CANE", + "collected": 16, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "8_28_99", + "crop": "CARROT_ITEM", + "collected": 2404, + "claimed": true, + "medal": null, + "placing": { + "position": 1273, + "percentage": 70.13774104683196 + } + }, + { + "date": "9_9_99", + "crop": "CARROT_ITEM", + "collected": 166589, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 589, + "percentage": 27.510509107893512 + } + }, + { + "date": "10_23_99", + "crop": "CARROT_ITEM", + "collected": 198220, + "claimed": true, + "medal": "silver", + "placing": { + "position": 409, + "percentage": 20.05885237861697 + } + }, + { + "date": "10_29_99", + "crop": "CARROT_ITEM", + "collected": 194582, + "claimed": true, + "medal": "silver", + "placing": { + "position": 690, + "percentage": 20.462633451957295 + } + }, + { + "date": "11_1_99", + "crop": "WHEAT", + "collected": 2293, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1890, + "percentage": 58.75038856077091 + } + }, + { + "date": "11_10_99", + "crop": "WHEAT", + "collected": 62011, + "claimed": true, + "medal": "silver", + "placing": { + "position": 283, + "percentage": 5.449643751203543 + } + }, + { + "date": "2_1_100", + "crop": "WHEAT", + "collected": 41505, + "claimed": true, + "medal": "silver", + "placing": { + "position": 439, + "percentage": 13.629307668425955 + } + }, + { + "date": "3_18_100", + "crop": "CARROT_ITEM", + "collected": 180787, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 389, + "percentage": 27.164804469273747 + } + }, + { + "date": "3_21_100", + "crop": "WHEAT", + "collected": 57318, + "claimed": true, + "medal": "silver", + "placing": { + "position": 216, + "percentage": 7.659574468085106 + } + }, + { + "date": "6_21_100", + "crop": "CARROT_ITEM", + "collected": 250951, + "claimed": true, + "medal": "silver", + "placing": { + "position": 520, + "percentage": 18.01801801801802 + } + }, + { + "date": "1_11_101", + "crop": "CARROT_ITEM", + "collected": 254403, + "claimed": true, + "medal": "silver", + "placing": { + "position": 398, + "percentage": 16.172287687931735 + } + }, + { + "date": "5_28_101", + "crop": "CARROT_ITEM", + "collected": 261318, + "claimed": true, + "medal": "silver", + "placing": { + "position": 388, + "percentage": 16.31623212783852 + } + }, + { + "date": "1_14_111", + "crop": "WHEAT", + "collected": 7355, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 568, + "percentage": 34.65527760829774 + } + }, + { + "date": "3_27_111", + "crop": "NETHER_STALK", + "collected": 147293, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1260, + "percentage": 55.85106382978723 + } + }, + { + "date": "3_30_111", + "crop": "NETHER_STALK", + "collected": 139615, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1191, + "percentage": 51.33620689655173 + } + }, + { + "date": "6_12_111", + "crop": "NETHER_STALK", + "collected": 150602, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1467, + "percentage": 51.58227848101266 + } + }, + { + "date": "1_14_112", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_18_112", + "crop": "POTATO_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_27_112", + "crop": "NETHER_STALK", + "collected": 157777, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1135, + "percentage": 33.90083632019116 + } + }, + { + "date": "6_21_112", + "crop": "SUGAR_CANE", + "collected": 4, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "8_4_112", + "crop": "SUGAR_CANE", + "collected": 32, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "1_2_113", + "crop": "SUGAR_CANE", + "collected": 35110, + "claimed": true, + "medal": null, + "placing": { + "position": 1329, + "percentage": 63.95572666025024 + } + }, + { + "date": "8_4_118", + "crop": "SUGAR_CANE", + "collected": 225754, + "claimed": true, + "medal": "silver", + "placing": { + "position": 133, + "percentage": 6.120570639668661 + } + }, + { + "date": "8_13_118", + "crop": "SUGAR_CANE", + "collected": 230120, + "claimed": true, + "medal": "silver", + "placing": { + "position": 142, + "percentage": 5.3584905660377355 + } + }, + { + "date": "8_22_118", + "crop": "SUGAR_CANE", + "collected": 241842, + "claimed": true, + "medal": "silver", + "placing": { + "position": 159, + "percentage": 5.218247456514605 + } + }, + { + "date": "8_31_118", + "crop": "SUGAR_CANE", + "collected": 251791, + "claimed": true, + "medal": "silver", + "placing": { + "position": 108, + "percentage": 5.152671755725191 + } + }, + { + "date": "10_23_118", + "crop": "NETHER_STALK", + "collected": 18, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "11_1_118", + "crop": "SUGAR_CANE", + "collected": 255061, + "claimed": true, + "medal": "gold", + "placing": { + "position": 74, + "percentage": 2.6831036983321246 + } + }, + { + "date": "11_10_118", + "crop": "SUGAR_CANE", + "collected": 156314, + "claimed": true, + "medal": "silver", + "placing": { + "position": 479, + "percentage": 14.815960408289513 + } + }, + { + "date": "12_24_118", + "crop": "NETHER_STALK", + "collected": 940, + "claimed": true, + "medal": null, + "placing": { + "position": 1156, + "percentage": 84.01162790697676 + } + }, + { + "date": "12_30_118", + "crop": "SUGAR_CANE", + "collected": 250419, + "claimed": true, + "medal": "gold", + "placing": { + "position": 83, + "percentage": 4.377637130801688 + } + }, + { + "date": "1_5_119", + "crop": "SUGAR_CANE", + "collected": 259533, + "claimed": true, + "medal": "gold", + "placing": { + "position": 69, + "percentage": 2.7090694935217905 + } + }, + { + "date": "2_28_119", + "crop": "POTATO_ITEM", + "collected": 280, + "claimed": true, + "medal": null, + "placing": { + "position": 533, + "percentage": 78.84615384615384 + } + }, + { + "date": "1_26_124", + "crop": "SUGAR_CANE", + "collected": 89885, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 903, + "percentage": 32.10095982936367 + } + }, + { + "date": "4_26_127", + "crop": "WHEAT", + "collected": 3658, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 560, + "percentage": 36.86635944700461 + } + }, + { + "date": "11_25_127", + "crop": "SUGAR_CANE", + "collected": 260821, + "claimed": true, + "medal": "gold", + "placing": { + "position": 98, + "percentage": 4.027949034114262 + } + }, + { + "date": "9_24_131", + "crop": "MUSHROOM_COLLECTION", + "collected": 8, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_6_132", + "crop": "SUGAR_CANE", + "collected": 170, + "claimed": true, + "medal": null, + "placing": { + "position": 3283, + "percentage": 96.72952268709487 + } + }, + { + "date": "9_3_134", + "crop": "WHEAT", + "collected": 2, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "12_30_136", + "crop": "SUGAR_CANE", + "collected": 15, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_9_137", + "crop": "CACTUS", + "collected": 4, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_18_137", + "crop": "SUGAR_CANE", + "collected": 15, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "12_15_137", + "crop": "CARROT_ITEM", + "collected": 8, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "9_27_138", + "crop": "POTATO_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "11_31_138", + "crop": "MUSHROOM_COLLECTION", + "collected": 3, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "2_1_140", + "crop": "CACTUS", + "collected": 2, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "10_11_143", + "crop": "SUGAR_CANE", + "collected": 121790, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1362, + "percentage": 34.62125063548551 + } + }, + { + "date": "10_14_143", + "crop": "SUGAR_CANE", + "collected": 9839, + "claimed": true, + "medal": null, + "placing": { + "position": 3102, + "percentage": 75.01813784764208 + } + }, + { + "date": "10_17_143", + "crop": "NETHER_STALK", + "collected": 20, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_3_144", + "crop": "MELON", + "collected": 49, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_18_144", + "crop": "SUGAR_CANE", + "collected": 99402, + "claimed": true, + "medal": "bronze", + "placing": { + "position": 1574, + "percentage": 43.432671081677704 + } + }, + { + "date": "2_28_145", + "crop": "SUGAR_CANE", + "collected": 233667, + "claimed": true, + "medal": "silver", + "placing": { + "position": 510, + "percentage": 14.233882221602009 + } + }, + { + "date": "5_10_145", + "crop": "SUGAR_CANE", + "collected": 204288, + "claimed": true, + "medal": "silver", + "placing": { + "position": 712, + "percentage": 21.887488472179527 + } + }, + { + "date": "9_21_167", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "2_4_200", + "crop": "POTATO_ITEM", + "collected": 18, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "8_22_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 4, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "9_12_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 4, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "11_16_200", + "crop": "MUSHROOM_COLLECTION", + "collected": 16, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "3_27_201", + "crop": "SUGAR_CANE", + "collected": 78450, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "1_29_202", + "crop": "MUSHROOM_COLLECTION", + "collected": 28, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "7_8_205", + "crop": "NETHER_STALK", + "collected": 24, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "12_9_217", + "crop": "CARROT_ITEM", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + } + ] + } + } + }, + "mining": { + "mining": 60, + "mithril_powder": { + "current": 9247, + "total": 1949506 + }, + "gemstone_powder": { + "current": 34822, + "total": 555468 + }, + "hotM_tree": { + "tokens": { + "current": 0, + "total": 15 + }, + "level": 7, + "perks": [ + { + "name": "Peak of the Mountain", + "id": "special_0", + "level": 5, + "maxLevel": 5 + }, + { + "name": "Mining Speed", + "id": "mining_speed", + "level": 25, + "maxLevel": 50 + }, + { + "name": "Mining Fortune", + "id": "mining_fortune", + "level": 26, + "maxLevel": 50 + }, + { + "name": "Titanium Insanium", + "id": "titanium_insanium", + "level": 21, + "maxLevel": 50 + }, + { + "name": "Mining Speed Boost", + "id": "mining_speed_boost", + "level": 1, + "maxLevel": 1 + }, + { + "name": "Daily Powder", + "id": "daily_powder", + "level": 26, + "maxLevel": 100 + }, + { + "name": "Efficient Miner", + "id": "efficient_miner", + "level": 72, + "maxLevel": 100 + }, + { + "name": "Mole", + "id": "mole", + "level": 75, + "maxLevel": 190 + }, + { + "name": "Professional", + "id": "professional", + "level": 37, + "maxLevel": 140 + }, + { + "name": "Powder Buff", + "id": "powder_buff", + "level": 11, + "maxLevel": 50 + }, + { + "name": "Fortunate", + "id": "fortunate", + "level": 20, + "maxLevel": 20 + }, + { + "name": "Great Explorer", + "id": "great_explorer", + "level": 10, + "maxLevel": 20 + }, + { + "name": "Mining Fortune 2", + "id": "mining_fortune_2", + "level": 11, + "maxLevel": 50 + }, + { + "name": "Lonesome Miner", + "id": "lonesome_miner", + "level": 1, + "maxLevel": 45 + }, + { + "name": "Mining Speed 2", + "id": "mining_speed_2", + "level": 19, + "maxLevel": 50 + }, + { + "name": "Quick Forge", + "id": "forge_time", + "level": 10, + "maxLevel": 20 + } + ], + "disabled_perks": [ + "forge_time" + ], + "last_reset": 1631300262538, + "pickaxe_ability": "Mining Speed Boost" + }, + "crystal_hollows": { + "last_pass": 1653388967191, + "crystals": [ + { + "name": "Jade Crystal", + "id": "jade_crystal", + "total_placed": 4, + "statues_placed": [ + + ], + "state": "Not Found" + }, + { + "name": "Amber Crystal", + "total_placed": 4, + "king_quests_completed": 5, + "state": "Not Found" + }, + { + "name": "Sapphire Crystal", + "total_placed": 4, + "parts_delivered": [ + + ], + "state": "Not Found" + }, + { + "name": "Amethyst Crystal", + "total_placed": 4, + "state": "Not Found" + }, + { + "name": "Topaz Crystal", + "total_placed": 4, + "state": "Found" + }, + { + "name": "Jasper Crystal", + "total_placed": 0, + "state": "Not Found" + }, + { + "name": "Ruby Crystal", + "total_placed": 0, + "state": "Not Found" + } + ] + }, + "forge": [ + { + "slot": 1, + "item": "Bejeweled Handle", + "id": "BEJEWELED_HANDLE", + "ending": 1643457369970, + "ended": true + } + ] + }, + "slayer": { + "zombie": { + "xp": 1071500, + "totalKills": 1312, + "level": 9, + "xpForNext": 0, + "progress": 0, + "kills": { + "1": 1, + "2": 4, + "3": 60, + "4": 813, + "5": 434 + } + }, + "spider": { + "xp": 1000000, + "totalKills": 1819, + "level": 9, + "xpForNext": 0, + "progress": 0, + "kills": { + "1": 5, + "2": 3, + "3": 63, + "4": 1748 + } + }, + "wolf": { + "xp": 1000500, + "totalKills": 1766, + "level": 9, + "xpForNext": 0, + "progress": 0, + "kills": { + "1": 5, + "2": 17, + "3": 34, + "4": 1710 } }, "enderman": { @@ -6548,7 +7308,9 @@ "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } } }, "milestones": { @@ -6641,6 +7403,12 @@ "id": "PULSE_RING", "price": 40000 }, + { + "name": "Piggy Bank", + "rarity": "uncommon", + "id": "PIGGY_BANK", + "price": 80000 + }, { "name": "Master Skull - Tier 1", "rarity": "common", @@ -6657,79 +7425,85 @@ "name": "Jungle Amulet", "rarity": "uncommon", "id": "JUNGLE_AMULET", - "price": 1190000 + "price": 1650000 }, { "name": "Handy Blood Chalice", "rarity": "common", "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 - }, - { - "name": "Soulflow Battery", - "rarity": "rare", - "id": "SOULFLOW_BATTERY", - "price": 1600000 + "price": 1890000 }, { "name": "Master Skull - Tier 3", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_3", - "price": 2000000 - }, - { - "name": "Titanium Ring", - "rarity": "rare", - "id": "TITANIUM_RING", - "price": 2399999 + "price": 1974000 }, { "name": "Treasure Ring", "rarity": "epic", "id": "TREASURE_RING", - "price": 3050000 + "price": 3300000 }, { - "name": "Hunter Talisman", - "rarity": "uncommon", - "id": "HUNTER_TALISMAN", - "price": 4200000 + "name": "Titanium Ring", + "rarity": "rare", + "id": "TITANIUM_RING", + "price": 3574000 }, { "name": "Blue Jerry Talisman", "rarity": "rare", "id": "JERRY_TALISMAN_BLUE", + "price": 4500000 + }, + { + "name": "Soulflow Battery", + "rarity": "rare", + "id": "SOULFLOW_BATTERY", + "price": 5000000 + }, + { + "name": "Hunter Talisman", + "rarity": "uncommon", + "id": "HUNTER_TALISMAN", "price": 5500000 }, { "name": "Titanium Artifact", "rarity": "epic", "id": "TITANIUM_ARTIFACT", - "price": 6700000 + "price": 6889000 }, { "name": "Master Skull - Tier 4", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_4", - "price": 8290000 + "price": 8148999 + }, + { + "name": "Titanium Relic", + "rarity": "legendary", + "id": "TITANIUM_RELIC", + "price": 15000000 + }, + { + "name": "Bait Ring", + "rarity": "rare", + "id": "BAIT_RING", + "price": 16999000 }, { "name": "Shady Ring", "rarity": "uncommon", "id": "SHADY_RING", - "price": 13200000 - }, - { - "name": "Titanium Relic", - "rarity": "legendary", - "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 19000000 }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -6741,115 +7515,115 @@ "name": "Purple Jerry Talisman", "rarity": "epic", "id": "JERRY_TALISMAN_PURPLE", - "price": 23400000 - }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 + "price": 21900000 }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 + "price": 29350000 }, { - "name": "Bingo Talisman", - "rarity": "common", - "id": "BINGO_TALISMAN", - "price": 32000000 - }, - { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Master Skull - Tier 5", "rarity": "rare", "id": "MASTER_SKULL_TIER_5", - "price": 33499999 + "price": 32000000 + }, + { + "name": "Bingo Talisman", + "rarity": "common", + "id": "BINGO_TALISMAN", + "price": 32750000 }, { "name": "Crooked Artifact", "rarity": "rare", "id": "CROOKED_ARTIFACT", - "price": 39000000 + "price": 37000000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 }, { - "name": "Artifact of Power", - "rarity": "rare", - "id": "POWER_ARTIFACT", - "price": 46400000 + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Wither Artifact", "rarity": "epic", "id": "WITHER_ARTIFACT", - "price": 50298000 + "price": 44995000 + }, + { + "name": "Artifact of Power", + "rarity": "rare", + "id": "POWER_ARTIFACT", + "price": 46400000 }, { "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 - }, - { - "name": "Burststopper Talisman", - "rarity": "rare", - "id": "BURSTSTOPPER_TALISMAN", - "price": 75000000 + "price": 69499900 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 + }, + { + "name": "Burststopper Talisman", + "rarity": "rare", + "id": "BURSTSTOPPER_TALISMAN", + "price": 106000000 }, { "name": "Master Skull - Tier 6", "rarity": "epic", "id": "MASTER_SKULL_TIER_6", - "price": 140000000 + "price": 146000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -6861,13 +7635,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ], "maxTalismans": [ @@ -6901,29 +7675,35 @@ "id": "PULSE_RING", "price": 40000 }, + { + "name": "Piggy Bank", + "rarity": "uncommon", + "id": "PIGGY_BANK", + "price": 80000 + }, { "name": "Jungle Amulet", "rarity": "uncommon", "id": "JUNGLE_AMULET", - "price": 1190000 + "price": 1650000 }, { "name": "Handy Blood Chalice", "rarity": "common", "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 + "price": 1890000 }, { "name": "Titanium Relic", "rarity": "legendary", "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 15000000 }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -6931,41 +7711,41 @@ "id": "JACOBUS_REGISTER", "price": 21500000 }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 - }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 + "price": 29350000 }, { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 + }, + { + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Artifact of Power", @@ -6977,31 +7757,31 @@ "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 + "price": 69499900 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -7013,13 +7793,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ] }, @@ -8922,2762 +9702,2823 @@ "deaths": 2 }, { - "name": "Wither Defender Guard", - "id": "wither_defender_guard", - "deaths": 2 + "name": "Wither Defender Guard", + "id": "wither_defender_guard", + "deaths": 2 + }, + { + "name": "Kuudra Landmine", + "id": "kuudra_landmine", + "deaths": 2 + }, + { + "name": "Thunder", + "id": "thunder", + "deaths": 2 + }, + { + "name": "Respawning Skeleton", + "id": "respawning_skeleton", + "deaths": 1 + }, + { + "name": "Wither", + "id": "wither", + "deaths": 1 + }, + { + "name": "Old Dragon", + "id": "old_dragon", + "deaths": 1 + }, + { + "name": "Frosty The Snowman", + "id": "frosty_the_snowman", + "deaths": 1 + }, + { + "name": "Superior Dragon", + "id": "superior_dragon", + "deaths": 1 + }, + { + "name": "Strong Dragon", + "id": "strong_dragon", + "deaths": 1 + }, + { + "name": "Guardian Emperor", + "id": "guardian_emperor", + "deaths": 1 + }, + { + "name": "Skeletor", + "id": "skeletor", + "deaths": 1 + }, + { + "name": "Spirit Miniboss", + "id": "spirit_miniboss", + "deaths": 1 + }, + { + "name": "Dungeon Respawning Skeleton", + "id": "dungeon_respawning_skeleton", + "deaths": 1 + }, + { + "name": "Sadan", + "id": "sadan", + "deaths": 1 + }, + { + "name": "Sadan Giant", + "id": "sadan_giant", + "deaths": 1 + }, + { + "name": "Spirit Rabbit", + "id": "spirit_rabbit", + "deaths": 1 + }, + { + "name": "Goblin Murderlover", + "id": "goblin_murderlover", + "deaths": 1 + }, + { + "name": "Livid", + "id": "livid", + "deaths": 1 + }, + { + "name": "Master Bonzo", + "id": "master_bonzo", + "deaths": 1 + }, + { + "name": "Watcher Giant Boulder", + "id": "watcher_giant_boulder", + "deaths": 1 + }, + { + "name": "Crypt Souleater", + "id": "crypt_souleater", + "deaths": 1 + }, + { + "name": "Armor Stand", + "id": "armor_stand", + "deaths": 1 + }, + { + "name": "Arachne Brood", + "id": "arachne_brood", + "deaths": 1 + }, + { + "name": "Arachne", + "id": "arachne", + "deaths": 1 + }, + { + "name": "Crushed", + "id": "crushed", + "deaths": 1 + }, + { + "name": "Team Treasurite Corleone", + "id": "team_treasurite_corleone", + "deaths": 1 + }, + { + "name": "Master Dungeon Respawning Skeleton", + "id": "master_dungeon_respawning_skeleton", + "deaths": 1 + }, + { + "name": "Splitter Spider", + "id": "splitter_spider", + "deaths": 1 + }, + { + "name": "Goblin Battler", + "id": "goblin_battler", + "deaths": 1 + }, + { + "name": "Master Lost Adventurer", + "id": "master_lost_adventurer", + "deaths": 1 + }, + { + "name": "Master Crypt Souleater", + "id": "master_crypt_souleater", + "deaths": 1 + }, + { + "name": "Master Professor Warrior Guardian", + "id": "master_professor_warrior_guardian", + "deaths": 1 + }, + { + "name": "Team Treasurite Grunt", + "id": "team_treasurite_grunt", + "deaths": 1 + }, + { + "name": "Wraith", + "id": "wraith", + "deaths": 1 + }, + { + "name": "Ashfang Red Blaze", + "id": "ashfang_red_blaze", + "deaths": 1 + }, + { + "name": "Unstable Magma", + "id": "unstable_magma", + "deaths": 1 + }, + { + "name": "Kuudra Berserker", + "id": "kuudra_berserker", + "deaths": 1 }, { - "name": "Kuudra Landmine", - "id": "kuudra_landmine", - "deaths": 2 + "name": "Wandering Blaze", + "id": "wandering_blaze", + "deaths": 1 }, { - "name": "Thunder", - "id": "thunder", - "deaths": 2 + "name": "Fire Mage", + "id": "fire_mage", + "deaths": 1 }, { - "name": "Respawning Skeleton", - "id": "respawning_skeleton", + "name": "Flare", + "id": "flare", "deaths": 1 }, { - "name": "Wither", - "id": "wither", + "name": "Kuudra Knocker", + "id": "kuudra_knocker", "deaths": 1 }, { - "name": "Old Dragon", - "id": "old_dragon", + "name": "Moogma", + "id": "moogma", "deaths": 1 }, { - "name": "Frosty The Snowman", - "id": "frosty_the_snowman", + "name": "Master Crypt Dreadlord", + "id": "master_crypt_dreadlord", "deaths": 1 + } + ] + }, + "armor": { + "helmet": { + "id": 301, + "Count": 1, + "tag": { + "ench": [ + { + "lvl": 3, + "id": 8 + } + ], + "Unbreakable": 1, + "HideFlags": 254, + "display": { + "Lore": [ + "§7Gear Score: §d784 §8(2388)", + "§7Health: §a+274.5 §e(+40) §8(+873.6)", + "§7Defense: §a+106.5 §e(+20) §8(+336)", + "§7Intelligence: §a+499 §9(+200) §d(+24) §8(+1,592.64)", + " §9[§b✎§9] §9[§b⚔§9]", + "", + "§d§l§d§lWisdom V§9, §9Depth Strider III§9, §9Feather Falling X", + "§9Growth V§9, §9Protection V§9, §9Rejuvenate V", + "", + "§7Reduces the damage you take from", + "§7withers by §c10%§7.", + "", + "§6Full Set Bonus: Witherborn", + "§7Spawns a wither minion every", + "§7§e30 §7seconds up to a maximum", + "§7§a1 §7wither. Your withers will", + "§7travel to and explode on nearby", + "§7enemies.", + "", + "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON BOOTS §d§l§ka" + ], + "color": 1889508, + "Name": "§dNecrotic Storm's Boots §6✪§6✪§6✪§6✪§6✪" + }, + "ExtraAttributes": { + "hot_potato_count": 10, + "color": "28:212:228", + "gems": { + "COMBAT_0": "FINE", + "COMBAT_0_gem": "SAPPHIRE", + "SAPPHIRE_0": "FINE" + }, + "dungeon_item_level": 5, + "originTag": "WISE_WITHER_BOOTS", + "id": "WISE_WITHER_BOOTS", + "enchantments": { + "depth_strider": 3, + "ultimate_wisdom": 5, + "feather_falling": 10, + "rejuvenate": 5, + "growth": 5, + "protection": 5 + }, + "uuid": "1366d4dd-9e53-43bc-8d39-ee2d96e282fd", + "timestamp": 1616645820, + "recombobulated": true, + "reforge": "necrotic" + } + }, + "Damage": 0 + }, + "chestplate": { + "id": 300, + "Count": 1, + "tag": { + "Unbreakable": 1, + "HideFlags": 254, + "display": { + "Lore": [ + "§7Gear Score: §d944 §8(2921)", + "§7Health: §a+368 §e(+40) §8(+1,159.2)", + "§7Defense: §a+150.5 §e(+20) §8(+470.4)", + "§7Intelligence: §a+499 §9(+200) §d(+24) §8(+1,592.64)", + " §9[§b✎§9] §9[§b⚔§9]", + "", + "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", + "§9Rejuvenate V", + "", + "§7Reduces the damage you take from", + "§7withers by §c10%§7.", + "", + "§6Full Set Bonus: Witherborn", + "§7Spawns a wither minion every", + "§7§e30 §7seconds up to a maximum", + "§7§a1 §7wither. Your withers will", + "§7travel to and explode on nearby", + "§7enemies.", + "", + "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON LEGGINGS §d§l§ka" + ], + "color": 1550532, + "Name": "§dNecrotic Storm's Leggings §6✪§6✪§6✪§6✪§6✪" + }, + "ExtraAttributes": { + "hot_potato_count": 10, + "color": "23:168:196", + "gems": { + "COMBAT_0": "FINE", + "COMBAT_0_gem": "SAPPHIRE", + "SAPPHIRE_0": "FINE" + }, + "dungeon_item_level": 5, + "originTag": "WISE_WITHER_LEGGINGS", + "id": "WISE_WITHER_LEGGINGS", + "enchantments": { + "ultimate_wisdom": 5, + "rejuvenate": 5, + "growth": 5, + "protection": 5 + }, + "uuid": "c49fdcda-72a7-45f0-9696-300ed87bff0d", + "timestamp": 1612341900, + "recombobulated": true, + "reforge": "necrotic" + } + }, + "Damage": 0 + }, + "leggings": { + "id": 299, + "Count": 1, + "tag": { + "Unbreakable": 1, + "HideFlags": 254, + "display": { + "Lore": [ + "§7Gear Score: §d1012 §8(3130)", + "§7Health: §a+415 §e(+40) §9(+14) §8(+1,307.04)", + "§7Defense: §a+181 §e(+20) §9(+14) §8(+567.84)", + "§7Intelligence: §a+419 §9(+120) §d(+24) §8(+1,323.84)", + " §9[§b✎§9] §9[§b⚔§9]", + "", + "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", + "§9Rejuvenate V", + "", + "§7Reduces the damage you take from", + "§7withers by §c10%§7.", + "", + "§6Full Set Bonus: Witherborn", + "§7Spawns a wither minion every", + "§7§e30 §7seconds up to a maximum", + "§7§a1 §7wither. Your withers will", + "§7travel to and explode on nearby", + "§7enemies.", + "", + "§9Loving Bonus", + "§7Increases ability damage by", + "§7§a5%§7.", + "", + "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON CHESTPLATE §d§l§ka" + ], + "color": 1545156, + "Name": "§dLoving Storm's Chestplate §6✪§6✪§6✪§6✪§6✪" + }, + "ExtraAttributes": { + "hot_potato_count": 10, + "color": "23:147:196", + "gems": { + "COMBAT_0": "FINE", + "COMBAT_0_gem": "SAPPHIRE", + "SAPPHIRE_0": "FINE" + }, + "dungeon_item_level": 5, + "originTag": "WISE_WITHER_CHESTPLATE", + "id": "WISE_WITHER_CHESTPLATE", + "enchantments": { + "ultimate_wisdom": 5, + "rejuvenate": 5, + "protection": 5, + "growth": 5 + }, + "uuid": "8b92343b-d6cb-4734-b3a4-c68b80893473", + "timestamp": 1617733800, + "recombobulated": true, + "reforge": "loving" + } + }, + "Damage": 0 + }, + "boots": { + "id": 397, + "Count": 1, + "tag": { + "ench": [ + + ], + "HideFlags": 254, + "SkullOwner": { + "Id": "a4baabfd-565a-33f1-a52b-b120cb7c749b", + "Properties": { + "textures": [ + { + "Value": "ewogICJ0aW1lc3RhbXAiIDogMTYwNTU0MzM0MTg4MSwKICAicHJvZmlsZUlkIiA6ICJiMGQ0YjI4YmMxZDc0ODg5YWYwZTg2NjFjZWU5NmFhYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNaW5lU2tpbl9vcmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzdjZWI4ZjA3NThlMmQ4YWM0OWRlNmY5Nzc2MDNjN2JmYzIzZmQ4MmE4NTc0ODEwYTQ1ZjVlOTdjNjQzNmQ3OSIKICAgIH0KICB9Cn0=" + } + ] + } + }, + "display": { + "Lore": [ + "§7Gear Score: §d455 §8(1236)", + "§7Ability Damage: §c+49.5% §8(+67.5%)", + "§7Health: §a+75 §8(+252)", + "§7Defense: §a+15 §8(+50.4)", + "§7Intelligence: §a+480 §9(+150) §8(+1,512)", + "", + "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", + "", + "§aPerfect 52500 / 52500", + "§6§l§ka§r §6§l§6§lLEGENDARY DUNGEON HELMET §6§l§ka" + ], + "Name": "§6Necrotic Wither Goggles §6✪§6✪§6✪§6✪§6✪" + }, + "ExtraAttributes": { + "dungeon_item_level": 5, + "originTag": "SHOP_PURCHASE", + "id": "WITHER_GOGGLES", + "shop_dungeon_floor_completion_required": 6, + "enchantments": { + "ultimate_wisdom": 5, + "growth": 5, + "protection": 5 + }, + "uuid": "4cf123e4-8c4e-4720-979c-bb92e87852f6", + "timestamp": 1620386520, + "recombobulated": true, + "reforge": "necrotic" + } }, - { - "name": "Superior Dragon", - "id": "superior_dragon", - "deaths": 1 + "Damage": 3 + } + }, + "equipment": { + "necklace": { + + }, + "cloak": { + + }, + "belt": { + "id": 397, + "Count": 1, + "tag": { + "HideFlags": 254, + "SkullOwner": { + "Id": "6cdab1c1-42bd-3604-8656-2f68fb474ff6", + "Properties": { + "textures": [ + { + "Value": "ewogICJ0aW1lc3RhbXAiIDogMTY0MzU5OTY3OTc4MywKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVhNGY3ZTU3YTQzNTk0NTdjZTBlN2RhMjdlODUxM2E4YjYxOTdmMWNhNjhkMDcxNTQyYzY2ZjhhNDFiYWY0ZWQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==" + } + ] + } + }, + "display": { + "Lore": [ + "§7Health: §a+25", + "§7Defense: §a+15", + "", + "§7Reduces damage taken by §c4%§7.", + "", + "§7§8This item can be reforged!", + "§8§l* §8Soulbound §8§l*", + "§9§lRARE BELT" + ], + "Name": "§9Blue Belt" + }, + "ExtraAttributes": { + "id": "DOJO_BLUE_BELT", + "uuid": "6d027b01-2437-4e4d-a495-3bb252739ea3", + "timestamp": 1650718680 + } }, + "Damage": 3 + }, + "gloves": { + + } + }, + "pets": { + "auto_pet": { + "rules_limit": 4, + "rules": [ + { + "id": "ENTER_ISLAND", + "pet": "BAL", + "exceptions": [ + + ], + "disabled": false, + "data": { + "island": "mining_3" + } + }, + { + "id": "START_SLAYER_QUEST", + "pet": "ENDERMAN", + "exceptions": [ + + ], + "disabled": false, + "data": { + + } + }, + { + "id": "BOSS_SPAWN", + "pet": "ENDER_DRAGON", + "exceptions": [ + + ], + "disabled": false, + "data": { + "boss": "enderman", + "category": "slayer" + } + }, + { + "id": "BOSS_SPAWN", + "pet": "BLACK_CAT", + "exceptions": [ + + ], + "disabled": false, + "data": { + "boss": "wolf", + "category": "slayer" + } + } + ] + }, + "pets": [ { - "name": "Strong Dragon", - "id": "strong_dragon", - "deaths": 1 + "type": "AMMONITE", + "exp": 10093904.518010952, + "active": true, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 6820216.005904126, + "modified": { + "name": "[Lvl 88] Legendary Ammonite", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "sea_creature_chance": 6.16 + }, + "texture_path": "https://sky.shiiyu.moe/head/a074a7bd976fe6aba1624161793be547d54c835cf422243a851ba09d1e650553", + "name": "[Lvl 88] Ammonite", + "display_name": "Ammonite", + "xpMaxLevel": 25353230, + "level": 88, + "xpCurrent": 61074, + "xpForNext": 791700, + "progress": 0.07714285714285714, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a+6%", + " ", + "§6Heart of the Sea", + "§7Each Heart of the Mountain level grants §3+0.9 α Sea Creature Chance", + " ", + "§6Not a Snail", + "§7Each fishing and mining level grants §f+1.8 ✦ Speed §7and §a+1.8 ❈ Defense", + " ", + "§6Gift of the Ammonite", + "§7Increases your fishing speed by §a0.5% §7for each mining level", + "", + "§6Held Item: §fAll Skills Exp Boost", + "§7Gives +§a10% §7pet exp for all skills", + " ", + "§7Progress to Level 89: §e7.7%", + "§2--§f------------------ §e61,074 §6/ §e792K", + "", + "§7Total XP: §e10.0M §6/ §e25.3M §6(39%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Guardian Emperor", - "id": "guardian_emperor", - "deaths": 1 + "type": "BAT", + "exp": 25365455.329407804, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_VAMPIRE_FANG", + "candyUsed": 0, + "skin": null, + "price": 7249999, + "modified": { + "name": "[Lvl 100] Legendary Bat", + "isPet": true + }, + "rarity": "mythic", + "stats": { + "intelligence": 100, + "speed": 5, + "sea_creature_chance": 5 + }, + "texture_path": "https://sky.shiiyu.moe/head/382fc3f71b41769376a9e92fe3adbaac3772b999b219c9d6b4680ba9983e527", + "name": "[Lvl 100] Bat", + "display_name": "Bat", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Intelligence: §a+100", + "§7Speed: §a+5", + "§7Sea Creature Chance: §a+5%", + " ", + "§6Candy Lover", + "§7Increases the chance for mobs to drop Candy by §a20%", + " ", + "§6Nightmare", + "§7During night, gain §a30 §9✎ Intelligence, §a50 §f✦ Speed§7, and night vision", + " ", + "§6Wings of Steel", + "§7Deals §a+50% §7damage to §6Spooky §7enemies during the §6Spooky Festival", + " ", + "§6Sonar", + "§7+§a25% §7chance to fish up spooky sea creatures", + "", + "§6Held Item: §6Vampire Fang", + "§7Upgrades a Bat pet from §6Legendary §7to §dMythic §7adding a bonus perk and bonus stats!", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Skeletor", - "id": "skeletor", - "deaths": 1 + "type": "WOLF", + "exp": 64147245.20134974, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "skin": null, + "price": 23106428, + "modified": { + "name": "[Lvl 100] Legendary Wolf", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 50, + "crit_damage": 10, + "speed": 20, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/dc3dd984bb659849bd52994046964c22725f717e986b12d548fd169367d494", + "name": "[Lvl 100] Wolf", + "display_name": "Wolf", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+50", + "§7Crit Damage: §a+10", + "§7Speed: §a+20", + "§7True Defense: §a+10", + " ", + "§6Alpha Dog", + "§7Take §a30% §7less damage from wolves", + " ", + "§6Pack Leader", + "§7Gain §a15 §9 ☠ Crit Damage §7for every nearby wolf monsters", + "§8Max 10 wolves", + " ", + "§6Combat Exp Boost", + "§7Boosts your Combat exp by §a30%", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e64.1M §6/ §e25.3M §6(253%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Spirit Miniboss", - "id": "spirit_miniboss", - "deaths": 1 + "type": "OCELOT", + "exp": 4530919.826667831, + "active": false, + "tier": "LEGENDARY", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 7728634.044289301, + "modified": { + "name": "[Lvl 76] Legendary Ocelot", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 38, + "ferocity": 7.6000000000000005 + }, + "texture_path": "https://sky.shiiyu.moe/head/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1", + "name": "[Lvl 76] Ocelot", + "display_name": "Ocelot", + "xpMaxLevel": 25353230, + "level": 76, + "xpCurrent": 298489, + "xpForNext": 311700, + "progress": 0.9576162977221687, + "lore": [ + "§8Foraging Pet", + "", + "§7Speed: §a+38", + "§7Ferocity: §a+7", + " ", + "§6Foraging Exp Boost", + "§7Boosts your Foraging exp by §a22.8%", + " ", + "§6Tree Hugger", + "§7Foraging minions work §a22.8% §7faster while on your island", + " ", + "§6Tree Essence", + "§7Gain a §a22.8% §7chance to get exp from breaking a log", + " ", + "§7Progress to Level 77: §e95.8%", + "§2--------------------§f §e298,489 §6/ §e312K", + "", + "§7Total XP: §e4.5M §6/ §e25.3M §6(17%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Dungeon Respawning Skeleton", - "id": "dungeon_respawning_skeleton", - "deaths": 1 + "type": "SQUID", + "exp": 5301460.283916464, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", + "candyUsed": 0, + "skin": null, + "price": 12649409.724261776, + "modified": { + "name": "[Lvl 79] Legendary Squid", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 39.5, + "intelligence": 39.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/01433be242366af126da434b8735df1eb5b3cb2cede39145974e9c483607bac", + "name": "[Lvl 79] Squid", + "display_name": "Squid", + "xpMaxLevel": 25353230, + "level": 79, + "xpCurrent": 65930, + "xpForNext": 383700, + "progress": 0.17182694813656502, + "lore": [ + "§8Fishing Pet", + "", + "§7Health: §a+39", + "§7Intelligence: §a+39", + " ", + "§6More Ink", + "§7Gain a §a79% §7chance to get double drops from squids", + " ", + "§6Ink Specialty", + "§7Buffs the Ink Wand by §a31.6 §c❁ Damage §7and §a15.8 §c❁ Strength", + " ", + "§6Fishing Exp Boost", + "§7Boosts your Fishing exp by §a23.7%", + "", + "§6Held Item: §aFishing Exp Boost", + "§7Gives +§a30% §7pet exp for Fishing", + " ", + "§7Progress to Level 80: §e17.2%", + "§2----§f---------------- §e65,930 §6/ §e384K", + "", + "§7Total XP: §e5.3M §6/ §e25.3M §6(20%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Sadan", - "id": "sadan", - "deaths": 1 + "type": "TIGER", + "exp": 16637923.460626705, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 0, + "skin": null, + "price": 27121976.519028433, + "modified": { + "name": "[Lvl 94] Legendary Tiger", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "strength": 14.4, + "crit_chance": 4.7, + "crit_damage": 47, + "ferocity": 23.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/fc42638744922b5fcf62cd9bf27eeab91b2e72d6c70e86cc5aa3883993e9d84", + "name": "[Lvl 94] Tiger", + "display_name": "Tiger", + "xpMaxLevel": 25353230, + "level": 94, + "xpCurrent": 704893, + "xpForNext": 1286700, + "progress": 0.5478301080282895, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+14", + "§7Crit Chance: §a+4", + "§7Crit Damage: §a+47", + "§7Ferocity: §a+23", + " ", + "§6Merciless Swipe", + "§7Gain \t§c+28.2% ⫽ Ferocity.", + " ", + "§6Hemorrhage", + "§7Melee attacks reduce healing by §651.7% §7for §a10s", + " ", + "§6Apex Predator", + "§7Deal §c+18.8% §7damage against targets with no other mobs within §a15 §7blocks", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§7Progress to Level 95: §e54.8%", + "§2-----------§f--------- §e704,893 §6/ §e1.3M", + "", + "§7Total XP: §e16.6M §6/ §e25.3M §6(65%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Sadan Giant", - "id": "sadan_giant", - "deaths": 1 + "type": "RABBIT", + "exp": 156606948.77894327, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 10594999, + "modified": { + "name": "[Lvl 100] Legendary Rabbit", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 100, + "speed": 20 + }, + "texture_path": "https://sky.shiiyu.moe/head/117bffc1972acd7f3b4a8f43b5b6c7534695b8fd62677e0306b2831574b", + "name": "[Lvl 100] Rabbit", + "display_name": "Rabbit", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Farming Pet", + "", + "§7Health: §a+100", + "§7Speed: §a+20", + " ", + "§6Happy Feet ", + "§7Jump Potions also give §a+50 §7speed", + " ", + "§6Farming Exp Boost ", + "§7Boosts your Farming Exp by §a30%", + " ", + "§6Efficient Farming", + "§7Farming minions work §a30% §7faster while on your island.", + "", + "§6Held Item: §9Farming Exp Boost", + "§7Gives +§a40% §7pet exp for Farming", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e156.6M §6/ §e25.3M §6(617%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Spirit Rabbit", - "id": "spirit_rabbit", - "deaths": 1 + "type": "SKELETON_HORSE", + "exp": 1003415.3682159979, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_SADDLE", + "candyUsed": 10, + "skin": null, + "price": 1780074.9931128544, + "modified": { + "name": "[Lvl 56] Legendary Skeleton Horse", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 28, + "intelligence": 56 + }, + "texture_path": "https://sky.shiiyu.moe/head/47effce35132c86ff72bcae77dfbb1d22587e94df3cbc2570ed17cf8973a", + "name": "[Lvl 56] Skeleton Horse", + "display_name": "Skeleton Horse", + "xpMaxLevel": 25353230, + "level": 56, + "xpCurrent": 52485, + "xpForNext": 79200, + "progress": 0.662689393939394, + "lore": [ + "§8Combat Mount", + "", + "§7Speed: §a+28", + "§7Intelligence: §a+56", + " ", + "§6Ridable", + "§7Right-click your summoned pet to ride it!", + " ", + "§6Run", + "§7Increase the speed of your mount by §a84%", + " ", + "§6Ride Into Battle", + "§7When riding your horse, gain +§a22.4% §7bow damage", + "", + "§6Held Item: §aSaddle", + "§7Increase horse speed by §a50% §7 and jump boost by §a100%", + " ", + "§7Progress to Level 57: §e66.3%", + "§2--------------§f------ §e52,485 §6/ §e80K", + "", + "§7Total XP: §e1.0M §6/ §e25.3M §6(3%)", + "§7Candy Used: §e10 §6/ §e10", + "" + ] }, { - "name": "Goblin Murderlover", - "id": "goblin_murderlover", - "deaths": 1 + "type": "BLUE_WHALE", + "exp": 26202530.403314777, + "active": false, + "tier": "LEGENDARY", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 4, + "skin": null, + "price": 22822583.329432752, + "modified": { + "name": "[Lvl 100] Legendary Blue Whale", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "health": 200 + }, + "texture_path": "https://sky.shiiyu.moe/head/dab779bbccc849f88273d844e8ca2f3a67a1699cb216c0a11b44326ce2cc20", + "name": "[Lvl 100] Blue Whale", + "display_name": "Blue Whale", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Health: §a+200", + " ", + "§6Ingest", + "§7All potions heal §c+250 ❤", + " ", + "§6Bulk", + "§7Gain §a1 ❈ Defense §7per §c20.0 Max ❤ Health", + " ", + "§6Archimedes", + "§7Gain §c+20% Max ❤ Health", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e26.2M §6/ §e25.3M §6(103%)", + "§7Candy Used: §e4 §6/ §e10", + "" + ] }, { - "name": "Livid", - "id": "livid", - "deaths": 1 + "type": "WITHER_SKELETON", + "exp": 25365204.923713338, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 8589999, + "modified": { + "name": "[Lvl 100] Legendary Wither Skeleton", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "crit_chance": 5, + "intelligence": 25, + "crit_damage": 25, + "defense": 25, + "strength": 25 + }, + "texture_path": "https://sky.shiiyu.moe/head/f5ec964645a8efac76be2f160d7c9956362f32b6517390c59c3085034f050cff", + "name": "[Lvl 100] Wither Skeleton", + "display_name": "Wither Skeleton", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Crit Chance: §a+5", + "§7Intelligence: §a+25", + "§7Crit Damage: §a+25", + "§7Defense: §a+25", + "§7Strength: §a+25", + " ", + "§6Stronger Bones", + "§7Take §a30% §7less damage from skeletons", + " ", + "§6Wither Blood", + "§7Deal §a25% §7more damage to wither mobs", + " ", + "§6Death's Touch", + "§7Upon hitting an enemy inflict the wither effect for §a200% §7damage over 3 seconds", + "§8Does not stack", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Bonzo", - "id": "master_bonzo", - "deaths": 1 + "type": "ELEPHANT", + "exp": 23427065.020068675, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", + "candyUsed": 0, + "skin": null, + "price": 28215706.80373154, + "modified": { + "name": "[Lvl 98] Legendary Elephant", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "intelligence": 73.5, + "health": 98 + }, + "texture_path": "https://sky.shiiyu.moe/head/7071a76f669db5ed6d32b48bb2dba55d5317d7f45225cb3267ec435cfa514", + "name": "[Lvl 98] Elephant", + "display_name": "Elephant", + "xpMaxLevel": 25353230, + "level": 98, + "xpCurrent": 1707235, + "xpForNext": 1746700, + "progress": 0.9774059655350089, + "lore": [ + "§8Farming Pet", + "", + "§7Intelligence: §a+73", + "§7Health: §a+98", + " ", + "§6Stomp", + "§7Gain §a19.6 ❈ Defense §7for every §f100 ✦ Speed", + " ", + "§6Walking Fortress", + "§7Gain §c1 ❤ Health §7for every §a10 ❈ Defense", + " ", + "§6Trunk Efficiency", + "§7Grants §a+176.4 §6☘ Farming Fortune§7, which increases your chance for multiple drops", + "", + "§6Held Item: §5Farming Exp Boost", + "§7Gives +§a50% §7pet exp for Farming", + " ", + "§7Progress to Level 99: §e97.7%", + "§2--------------------§f §e1,707,235 §6/ §e1.8M", + "", + "§7Total XP: §e23.4M §6/ §e25.3M §6(92%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Watcher Giant Boulder", - "id": "watcher_giant_boulder", - "deaths": 1 + "type": "ENDERMITE", + "exp": 26355560.600336473, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 7589999, + "modified": { + "name": "[Lvl 100] Legendary Endermite", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/5a1a0831aa03afb4212adcbb24e5dfaa7f476a1173fce259ef75a85855", + "name": "[Lvl 100] Endermite", + "display_name": "Endermite", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7Intelligence: §a+100", + " ", + "§6More Stonks", + "§7Gain more exp orbs for breaking end stone and gain a +§a50% §7chance to get an extra block dropped.", + " ", + "§6Pearl Muncher", + "§7Upon picking up an ender pearl, consume it and gain §a10 §6coins", + " ", + "§6Pearl Powered", + "§7Upon consuming an ender pearl, gain +§a50 §7speed for 10 seconds", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e26.3M §6/ §e25.3M §6(103%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Crypt Souleater", - "id": "crypt_souleater", - "deaths": 1 + "type": "ROCK", + "exp": 25379444.268969074, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 14588999, + "modified": { + "name": "[Lvl 100] Legendary Rock", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "defense": 200, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 100] Rock", + "display_name": "Rock", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+200", + "§7True Defense: §a+10", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a25% §7defense", + " ", + "§6Steady Ground", + "§7While sitting on your rock, gain +§a30§7% damage", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Armor Stand", - "id": "armor_stand", - "deaths": 1 + "type": "GRANDMA_WOLF", + "exp": 56655894.46371074, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_EXP_SHARE", + "candyUsed": 0, + "skin": null, + "rarity": "legendary", + "stats": { + "health": 100, + "strength": 25 + }, + "texture_path": "https://sky.shiiyu.moe/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", + "name": "[Lvl 100] Grandma Wolf", + "display_name": "Grandma Wolf", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+100", + "§7Strength: §a+25", + " ", + "§6Kill Combo", + "§7Gain buffs for combo kills. Effects stack as you increase your combo.", + "", + "§a5 Combo §8(lasts §a10s§8)", + "§8+§b3% §b✯ Magic Find", + "§a10 Combo §8(lasts §a8s§8)", + "§8+§610 §7coins per kill", + "§a15 Combo §8(lasts §a6s§8)", + "§8+§b3% §b✯ Magic Find", + "§a20 Combo §8(lasts §a5s§8)", + "§8+§315% §7Combat Exp", + "§a25 Combo §8(lasts §a4s§8)", + "§8+§b3% §b✯ Magic Find", + "§a30 Combo §8(lasts §a3s§8)", + "§8+§610 §7coins per kill", + "", + "§6Held Item: §5Exp Share", + "§7While unequipped this pet gains §a25% §7of the equipped pet's xp, this is §7split between all pets holding the item.", + " ", + "§8This pet's perks are active even when the pet is not summoned!", + "", + "§bMAX LEVEL", + "", + "§7Total XP: §e56.6M §6/ §e25.3M §6(223%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Arachne Brood", - "id": "arachne_brood", - "deaths": 1 + "type": "MITHRIL_GOLEM", + "exp": 130316005.44530973, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": null, + "price": 5989999, + "modified": { + "name": "[Lvl 100] Legendary Mithril Golem", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "true_defense": 50 + }, + "texture_path": "https://sky.shiiyu.moe/head/c1b2dfe8ed5dffc5b1687bc1c249c39de2d8a6c3d90305c95f6d1a1a330a0b1", + "name": "[Lvl 100] Mithril Golem", + "display_name": "Mithril Golem", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet", + "", + "§7True Defense: §a+50", + " ", + "§6Mithril Affinity", + "§7Gain +§a100 §6⸕ Mining Speed §7when mining §eMithril", + " ", + "§6The Smell Of Powder", + "§7Gain +§a20% §7more §2Mithril Powder", + " ", + "§6Danger Averse", + "§7Increases your combat stats by +§a20% §7on mining islands", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e130.3M §6/ §e25.3M §6(514%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Arachne", - "id": "arachne", - "deaths": 1 + "type": "SHEEP", + "exp": 41525369.18072697, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_TEXTBOOK", + "candyUsed": 0, + "skin": null, + "price": 8579000, + "modified": { + "name": "[Lvl 100] Legendary Sheep", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "ability_damage": 20, + "intelligence": 200 + }, + "texture_path": "https://sky.shiiyu.moe/head/64e22a46047d272e89a1cfa13e9734b7e12827e235c2012c1a95962874da0", + "name": "[Lvl 100] Sheep", + "display_name": "Sheep", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Alchemy Pet", + "", + "§7Ability Damage: §a+20%", + "§7Intelligence: §a+200", + " ", + "§6Mana Saver", + "§7Reduces the mana cost of abilities by §a20%", + " ", + "§6Overheal", + "§7Gives a §a10% §7shield after not taking damage for 10s", + " ", + "§6Dungeon Wizard", + "§7Increases your total mana by §a25% §7while in dungeons", + "", + "§6Held Item: §6Textbook", + "§7Increases the pet's §b✎ Intelligence §7by §a100%", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e41.5M §6/ §e25.3M §6(163%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Crushed", - "id": "crushed", - "deaths": 1 + "type": "SILVERFISH", + "exp": 194381317.07596773, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 0, + "skin": "SILVERFISH", + "price": 79478887, + "modified": { + "name": "[Lvl 100] Legendary Silverfish ✦", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "defense": 100, + "health": 20 + }, + "texture_path": "https://sky.shiiyu.moe/head/d8552ff591042c4a38f8ba0626784ae28c4545a97d423fd9037c341035593273", + "name": "[Lvl 100] Silverfish ✦", + "display_name": "Silverfish ✦", + "xpMaxLevel": 25353230, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Pet, Fortified Skin", + "", + "§7Defense: §a+100", + "§7Health: §a+20", + " ", + "§6True Defense Boost", + "§7Boosts your §f❂ True Defense §7by §a15", + " ", + "§6Mining Exp Boost", + "§7Boosts your Mining exp by §a30%", + " ", + "§6Dexterity", + "§7Gives permanent haste III", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e194.3M §6/ §e25.3M §6(766%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Team Treasurite Corleone", - "id": "team_treasurite_corleone", - "deaths": 1 + "type": "MONKEY", + "exp": 3234594.0934215398, + "active": false, + "tier": "LEGENDARY", + "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 29447758.903947636, + "modified": { + "name": "[Lvl 72] Legendary Monkey", + "isPet": true + }, + "rarity": "legendary", + "stats": { + "speed": 14.4, + "intelligence": 36 + }, + "texture_path": "https://sky.shiiyu.moe/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", + "name": "[Lvl 72] Monkey", + "display_name": "Monkey", + "xpMaxLevel": 25353230, + "level": 72, + "xpCurrent": 58964, + "xpForNext": 237700, + "progress": 0.2480605805637358, + "lore": [ + "§8Foraging Pet", + "", + "§7Speed: §a+14", + "§7Intelligence: §a+36", + " ", + "§6Treeborn", + "§7Grants §a+43.2 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", + " ", + "§6Vine Swing", + "§7Gain +§a72\t§f✦ Speed §7while in The Park", + " ", + "§6Evolved Axes", + "§7Reduce the cooldown of Jungle Axe and Treecapitator by §a36%", + "", + "§6Held Item: §fForaging Exp Boost", + "§7Gives +§a20% §7pet exp for Foraging", + " ", + "§7Progress to Level 73: §e24.8%", + "§2-----§f--------------- §e58,964 §6/ §e238K", + "", + "§7Total XP: §e3.2M §6/ §e25.3M §6(12%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Dungeon Respawning Skeleton", - "id": "master_dungeon_respawning_skeleton", - "deaths": 1 + "type": "BEE", + "exp": 37405.08750000002, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 402211.11837332405, + "modified": { + "name": "[Lvl 25] Epic Bee", + "isPet": true + }, + "rarity": "epic", + "stats": { + "strength": 11.25, + "intelligence": 12.5, + "speed": 2.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", + "name": "[Lvl 25] Bee", + "display_name": "Bee", + "xpMaxLevel": 18608500, + "level": 25, + "xpCurrent": 405, + "xpForNext": 3700, + "progress": 0.10945945945945947, + "lore": [ + "§8Farming Pet", + "", + "§7Strength: §a+11", + "§7Intelligence: §a+12", + "§7Speed: §a+2", + " ", + "§6Hive", + "§7Gain §b+4.5 ✎ Intelligence §7and §c+3.8 ❁ Strength §7for each nearby bee.", + "§8Max 15 bees", + " ", + "§6Busy Buzz Buzz", + "§7Has §a25% §7chance for flowers to drop an extra one", + " ", + "§7Progress to Level 26: §e10.9%", + "§2---§f----------------- §e405 §6/ §e3.7K", + "", + "§7Total XP: §e37K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Splitter Spider", - "id": "splitter_spider", - "deaths": 1 + "type": "ENDERMAN", + "exp": 161443.38498812658, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 117905.93817185139, + "modified": { + "name": "[Lvl 40] Epic Enderman", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 30 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 40] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 18608500, + "level": 40, + "xpCurrent": 6443, + "xpForNext": 16200, + "progress": 0.39771604938271604, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a+30", + " ", + "§6Enderian", + "§7Take §a12% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a20 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 41: §e39.8%", + "§2--------§f------------ §e6,443 §6/ §e17K", + "", + "§7Total XP: §e161K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Goblin Battler", - "id": "goblin_battler", - "deaths": 1 + "type": "GUARDIAN", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 1950000, + "modified": { + "name": "[Lvl 1] Epic Guardian", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 1, + "defense": 0.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", + "name": "[Lvl 1] Guardian", + "display_name": "Guardian", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Enchanting Pet", + "", + "§7Intelligence: §a+1", + "§7Defense: §a0", + " ", + "§6Lazerbeam", + "§7Zap your enemies for §b0.2x §7your §b✎ Intelligence §7every §a3s", + " ", + "§6Enchanting Exp Boost", + "§7Boosts your Enchanting exp by §a0.3%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Lost Adventurer", - "id": "master_lost_adventurer", - "deaths": 1 + "type": "GHOUL", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 20000, + "modified": { + "name": "[Lvl 1] Epic Ghoul", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 0.75, + "health": 1, + "ferocity": 0.05 + }, + "texture_path": "https://sky.shiiyu.moe/head/87934565bf522f6f4726cdfe127137be11d37c310db34d8c70253392b5ff5b", + "name": "[Lvl 1] Ghoul", + "display_name": "Ghoul", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Intelligence: §a0", + "§7Health: §a+1", + "§7Ferocity: §a0", + " ", + "§6Amplified Healing", + "§7Increase all healing by §a0.3%", + " ", + "§6Zombie Arm", + "§7Increase the health and range of the Zombie sword by §a0.5%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Crypt Souleater", - "id": "master_crypt_souleater", - "deaths": 1 + "type": "HOUND", + "exp": 43487.29259999999, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 276178.30033457826, + "modified": { + "name": "[Lvl 26] Epic Hound", + "isPet": true + }, + "rarity": "epic", + "stats": { + "strength": 10.4, + "bonus_attack_speed": 3.9, + "ferocity": 1.3 + }, + "texture_path": "https://sky.shiiyu.moe/head/b7c8bef6beb77e29af8627ecdc38d86aa2fea7ccd163dc73c00f9f258f9a1457", + "name": "[Lvl 26] Hound", + "display_name": "Hound", + "xpMaxLevel": 18608500, + "level": 26, + "xpCurrent": 2787, + "xpForNext": 4000, + "progress": 0.69675, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+10", + "§7Bonus Attack Speed: §a+3", + "§7Ferocity: §a+1", + " ", + "§6Scavenger", + "§7Gain +§a1.3 §7coins per monster kill", + " ", + "§6Finder", + "§7Increases the chance for monsters to drop their armor by §a2.6%", + " ", + "§7Progress to Level 27: §e69.7%", + "§2--------------§f------ §e2,787 §6/ §e4.0K", + "", + "§7Total XP: §e43K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Professor Warrior Guardian", - "id": "master_professor_warrior_guardian", - "deaths": 1 + "type": "ROCK", + "exp": 14720.653773215987, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 2501186.606440023, + "modified": { + "name": "[Lvl 16] Epic Rock", + "isPet": true + }, + "rarity": "epic", + "stats": { + "defense": 32, + "true_defense": 1.6 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 16] Rock", + "display_name": "Rock", + "xpMaxLevel": 18608500, + "level": 16, + "xpCurrent": 620, + "xpForNext": 1800, + "progress": 0.34444444444444444, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+32", + "§7True Defense: §a+1", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a4% §7defense", + " ", + "§7Progress to Level 17: §e34.4%", + "§2-------§f------------- §e620 §6/ §e1.8K", + "", + "§7Total XP: §e14K §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Team Treasurite Grunt", - "id": "team_treasurite_grunt", - "deaths": 1 + "type": "DOLPHIN", + "exp": 36119159.19140592, + "active": false, + "tier": "EPIC", + "heldItem": "WASHED_UP_SOUVENIR", + "candyUsed": 0, + "skin": null, + "price": 7498999, + "modified": { + "name": "[Lvl 100] Epic Dolphin", + "isPet": true + }, + "rarity": "epic", + "stats": { + "sea_creature_chance": 10, + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 100] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a+10%", + "§7Intelligence: §a+100", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a5% §7for each nearby player within 10 blocks up to §a25%", + " ", + "§6Echolocation", + "§7Increases sea creatures catch chance by §a10%", + "", + "§6Held Item: §6Washed-up Souvenir", + "§7Increases §3α Sea Creature Chance §7by §a5", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e36.1M §6/ §e18.6M §6(194%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Wraith", - "id": "wraith", - "deaths": 1 + "type": "PARROT", + "exp": 27614407.780526333, + "active": false, + "tier": "EPIC", + "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", + "candyUsed": 0, + "skin": null, + "price": 12589000, + "modified": { + "name": "[Lvl 100] Epic Parrot", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 10, + "intelligence": 100 + }, + "texture_path": "https://sky.shiiyu.moe/head/5df4b3401a4d06ad66ac8b5c4d189618ae617f9c143071c8ac39a563cf4e4208", + "name": "[Lvl 100] Parrot", + "display_name": "Parrot", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Alchemy Pet", + "", + "§7Crit Damage: §a+10", + "§7Intelligence: §a+100", + " ", + "§6Flamboyant", + "§7Adds §a15 §7levels to intimidation accessories", + " ", + "§6Repeat", + "§7Boosts potion duration by §a40%", + "", + "§6Held Item: §fAll Skills Exp Boost", + "§7Gives +§a10% §7pet exp for all skills", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e27.6M §6/ §e18.6M §6(148%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Ashfang Red Blaze", - "id": "ashfang_red_blaze", - "deaths": 1 + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 750000, + "modified": { + "name": "[Lvl 1] Epic Magma Cube", + "isPet": true + }, + "rarity": "epic", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.3% §7faster while on your island", + " ", + "§6Salt Blade", + "§7Deal §a0.3% §7more damage to slimes", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Unstable Magma", - "id": "unstable_magma", - "deaths": 1 + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 750000, + "modified": { + "name": "[Lvl 1] Epic Magma Cube", + "isPet": true + }, + "rarity": "epic", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.3% §7faster while on your island", + " ", + "§6Salt Blade", + "§7Deal §a0.3% §7more damage to slimes", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Kuudra Berserker", - "id": "kuudra_berserker", - "deaths": 1 + "type": "BABY_YETI", + "exp": 25708831.561584134, + "active": false, + "tier": "EPIC", + "heldItem": "DWARF_TURTLE_SHELMET", + "candyUsed": 7, + "skin": null, + "price": 12999552.733267803, + "modified": { + "name": "[Lvl 100] Epic Baby Yeti", + "isPet": true + }, + "rarity": "epic", + "stats": { + "intelligence": 75, + "strength": 40 + }, + "texture_path": "https://sky.shiiyu.moe/head/ab126814fc3fa846dad934c349628a7a1de5b415021a03ef4211d62514d5", + "name": "[Lvl 100] Baby Yeti", + "display_name": "Baby Yeti", + "xpMaxLevel": 18608500, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Intelligence: §a+75", + "§7Strength: §a+40", + " ", + "§6Cold Breeze", + "§7Gives §a50 §c❁ Strength §7and §9☠ Crit Damage §7when near snow", + " ", + "§6Ice Shields", + "§7Gain §a50% §7of your strength as §a❈ Defense", + "", + "§6Held Item: §9Dwarf Turtle Shelmet", + "§7Makes the pet's owner immune to knockback.", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e25.7M §6/ §e18.6M §6(138%)", + "§7Candy Used: §e7 §6/ §e10", + "" + ] }, { - "name": "Wandering Blaze", - "id": "wandering_blaze", - "deaths": 1 + "type": "BAL", + "exp": 619046.7311604992, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 5764571.374156177, + "modified": { + "name": "[Lvl 54] Epic Bal", + "isPet": true + }, + "rarity": "epic", + "stats": { + "ferocity": 5.4, + "strength": 13.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/c469ba2047122e0a2de3c7437ad3dd5d31f1ac2d27abde9f8841e1d92a8c5b75", + "name": "[Lvl 54] Bal", + "display_name": "Bal", + "xpMaxLevel": 18608500, + "level": 54, + "xpCurrent": 43246, + "xpForNext": 52200, + "progress": 0.8284674329501915, + "lore": [ + "§8Combat Pet", + "", + "§7Ferocity: §a+5", + "§7Strength: §a+13", + " ", + "§6Protective Skin", + "§7§7Gives §cheat immunity.", + " ", + "§6Fire Whip", + "§7Every §a5s §7while in combat the Balrog will strike nearby enemies with his fire whip dealing §c5.4% §7of your damage as §ftrue damage.", + " ", + "§7Progress to Level 55: §e82.8%", + "§2-----------------§f--- §e43,246 §6/ §e53K", + "", + "§7Total XP: §e619K §6/ §e18.6M §6(3%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Fire Mage", - "id": "fire_mage", - "deaths": 1 + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 11000, + "modified": { + "name": "[Lvl 1] Epic Enderman", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.3% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Flare", - "id": "flare", - "deaths": 1 + "type": "TARANTULA", + "exp": 0, + "active": false, + "tier": "EPIC", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 70000, + "modified": { + "name": "[Lvl 1] Epic Tarantula", + "isPet": true + }, + "rarity": "epic", + "stats": { + "crit_chance": 0.1, + "crit_damage": 0.3, + "strength": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/8300986ed0a04ea79904f6ae53f49ed3a0ff5b1df62bba622ecbd3777f156df8", + "name": "[Lvl 1] Tarantula", + "display_name": "Tarantula", + "xpMaxLevel": 18608500, + "level": 1, + "xpCurrent": 0, + "xpForNext": 440, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Chance: §a0", + "§7Crit Damage: §a0", + "§7Strength: §a0", + " ", + "§6Webbed Cells", + "§7Anti-healing is §a0.3% §7less effective against you", + " ", + "§6Eight Legs", + "§7Decreases the mana cost of Spider, Tarantula and Thorn's boots by §a0.5%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e440", + "", + "§7Total XP: §e0 §6/ §e18.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Kuudra Knocker", - "id": "kuudra_knocker", - "deaths": 1 + "type": "HORSE", + "exp": 9673.888333333345, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "rare", + "stats": { + "intelligence": 8, + "speed": 4 + }, + "texture_path": "https://sky.shiiyu.moe/head/36fcd3ec3bc84bafb4123ea479471f9d2f42d8fb9c5f11cf5f4e0d93226", + "name": "[Lvl 16] Horse", + "display_name": "Horse", + "xpMaxLevel": 12626665, + "level": 16, + "xpCurrent": 858, + "xpForNext": 1150, + "progress": 0.7460869565217392, + "lore": [ + "§8Combat Mount", + "", + "§7Intelligence: §a+8", + "§7Speed: §a+4", + " ", + "§6Ridable", + "§7Right-click your summoned pet to ride it!", + " ", + "§6Run", + "§7Increase the speed of your mount by §a17.6%", + " ", + "§7Progress to Level 17: §e74.6%", + "§2---------------§f----- §e858 §6/ §e1.2K", + "", + "§7Total XP: §e9.6K §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Moogma", - "id": "moogma", - "deaths": 1 + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 3000, + "modified": { + "name": "[Lvl 1] Rare Enderman", + "isPet": true + }, + "rarity": "rare", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.2% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, { - "name": "Master Crypt Dreadlord", - "id": "master_crypt_dreadlord", - "deaths": 1 - } - ] - }, - "armor": { - "helmet": { - "id": 301, - "Count": 1, - "tag": { - "ench": [ - { - "lvl": 3, - "id": 8 - } - ], - "Unbreakable": 1, - "HideFlags": 254, - "display": { - "Lore": [ - "§7Gear Score: §d784 §8(2388)", - "§7Health: §a+274.5 §e(+40) §8(+873.6)", - "§7Defense: §a+106.5 §e(+20) §8(+336)", - "§7Intelligence: §a+499 §9(+200) §d(+24) §8(+1,592.64)", - " §9[§b✎§9] §9[§b⚔§9]", - "", - "§d§l§d§lWisdom V§9, §9Depth Strider III§9, §9Feather Falling X", - "§9Growth V§9, §9Protection V§9, §9Rejuvenate V", - "", - "§7Reduces the damage you take from", - "§7withers by §c10%§7.", - "", - "§6Full Set Bonus: Witherborn", - "§7Spawns a wither minion every", - "§7§e30 §7seconds up to a maximum", - "§7§a1 §7wither. Your withers will", - "§7travel to and explode on nearby", - "§7enemies.", - "", - "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON BOOTS §d§l§ka" - ], - "color": 1889508, - "Name": "§dNecrotic Storm's Boots §6✪§6✪§6✪§6✪§6✪" + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 500000, + "modified": { + "name": "[Lvl 1] Rare Rock", + "isPet": true }, - "ExtraAttributes": { - "hot_potato_count": 10, - "color": "28:212:228", - "gems": { - "COMBAT_0": "FINE", - "COMBAT_0_gem": "SAPPHIRE", - "SAPPHIRE_0": "FINE" - }, - "dungeon_item_level": 5, - "originTag": "WISE_WITHER_BOOTS", - "id": "WISE_WITHER_BOOTS", - "enchantments": { - "depth_strider": 3, - "ultimate_wisdom": 5, - "feather_falling": 10, - "rejuvenate": 5, - "growth": 5, - "protection": 5 - }, - "uuid": "1366d4dd-9e53-43bc-8d39-ee2d96e282fd", - "timestamp": 1616645820, - "recombobulated": true, - "reforge": "necrotic" - } + "rarity": "rare", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§6Fortify", + "§7While sitting on your rock, gain +§a0.2% §7defense", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 0 - }, - "chestplate": { - "id": 300, - "Count": 1, - "tag": { - "Unbreakable": 1, - "HideFlags": 254, - "display": { - "Lore": [ - "§7Gear Score: §d944 §8(2921)", - "§7Health: §a+368 §e(+40) §8(+1,159.2)", - "§7Defense: §a+150.5 §e(+20) §8(+470.4)", - "§7Intelligence: §a+499 §9(+200) §d(+24) §8(+1,592.64)", - " §9[§b✎§9] §9[§b⚔§9]", - "", - "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", - "§9Rejuvenate V", - "", - "§7Reduces the damage you take from", - "§7withers by §c10%§7.", - "", - "§6Full Set Bonus: Witherborn", - "§7Spawns a wither minion every", - "§7§e30 §7seconds up to a maximum", - "§7§a1 §7wither. Your withers will", - "§7travel to and explode on nearby", - "§7enemies.", - "", - "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON LEGGINGS §d§l§ka" - ], - "color": 1550532, - "Name": "§dNecrotic Storm's Leggings §6✪§6✪§6✪§6✪§6✪" + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 640000, + "modified": { + "name": "[Lvl 1] Rare Dolphin", + "isPet": true }, - "ExtraAttributes": { - "hot_potato_count": 10, - "color": "23:168:196", - "gems": { - "COMBAT_0": "FINE", - "COMBAT_0_gem": "SAPPHIRE", - "SAPPHIRE_0": "FINE" - }, - "dungeon_item_level": 5, - "originTag": "WISE_WITHER_LEGGINGS", - "id": "WISE_WITHER_LEGGINGS", - "enchantments": { - "ultimate_wisdom": 5, - "rejuvenate": 5, - "growth": 5, - "protection": 5 - }, - "uuid": "c49fdcda-72a7-45f0-9696-300ed87bff0d", - "timestamp": 1612341900, - "recombobulated": true, - "reforge": "necrotic" - } + "rarity": "rare", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", + " ", + "§6Echolocation", + "§7Increases sea creatures catch chance by §a0.1%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 0 - }, - "leggings": { - "id": 299, - "Count": 1, - "tag": { - "Unbreakable": 1, - "HideFlags": 254, - "display": { - "Lore": [ - "§7Gear Score: §d1012 §8(3130)", - "§7Health: §a+415 §e(+40) §9(+14) §8(+1,307.04)", - "§7Defense: §a+181 §e(+20) §9(+14) §8(+567.84)", - "§7Intelligence: §a+419 §9(+120) §d(+24) §8(+1,323.84)", - " §9[§b✎§9] §9[§b⚔§9]", - "", - "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", - "§9Rejuvenate V", - "", - "§7Reduces the damage you take from", - "§7withers by §c10%§7.", - "", - "§6Full Set Bonus: Witherborn", - "§7Spawns a wither minion every", - "§7§e30 §7seconds up to a maximum", - "§7§a1 §7wither. Your withers will", - "§7travel to and explode on nearby", - "§7enemies.", - "", - "§9Loving Bonus", - "§7Increases ability damage by", - "§7§a5%§7.", - "", - "§d§l§ka§r §d§l§d§lMYTHIC DUNGEON CHESTPLATE §d§l§ka" - ], - "color": 1545156, - "Name": "§dLoving Storm's Chestplate §6✪§6✪§6✪§6✪§6✪" + { + "type": "ENDERMAN", + "exp": 0, + "active": false, + "tier": "RARE", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 3000, + "modified": { + "name": "[Lvl 1] Rare Enderman", + "isPet": true }, - "ExtraAttributes": { - "hot_potato_count": 10, - "color": "23:147:196", - "gems": { - "COMBAT_0": "FINE", - "COMBAT_0_gem": "SAPPHIRE", - "SAPPHIRE_0": "FINE" - }, - "dungeon_item_level": 5, - "originTag": "WISE_WITHER_CHESTPLATE", - "id": "WISE_WITHER_CHESTPLATE", - "enchantments": { - "ultimate_wisdom": 5, - "rejuvenate": 5, - "protection": 5, - "growth": 5 - }, - "uuid": "8b92343b-d6cb-4734-b3a4-c68b80893473", - "timestamp": 1617733800, - "recombobulated": true, - "reforge": "loving" - } + "rarity": "rare", + "stats": { + "crit_damage": 0.75 + }, + "texture_path": "https://sky.shiiyu.moe/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", + "name": "[Lvl 1] Enderman", + "display_name": "Enderman", + "xpMaxLevel": 12626665, + "level": 1, + "xpCurrent": 0, + "xpForNext": 275, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Crit Damage: §a0", + " ", + "§6Enderian", + "§7Take §a0.2% §7less damage from end monsters", + " ", + "§6Teleport Savvy", + "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e275", + "", + "§7Total XP: §e0 §6/ §e12.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 0 - }, - "boots": { - "id": 397, - "Count": 1, - "tag": { - "ench": [], - "HideFlags": 254, - "SkullOwner": { - "Id": "a4baabfd-565a-33f1-a52b-b120cb7c749b", - "Properties": { - "textures": [ - { - "Value": "ewogICJ0aW1lc3RhbXAiIDogMTYwNTU0MzM0MTg4MSwKICAicHJvZmlsZUlkIiA6ICJiMGQ0YjI4YmMxZDc0ODg5YWYwZTg2NjFjZWU5NmFhYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNaW5lU2tpbl9vcmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzdjZWI4ZjA3NThlMmQ4YWM0OWRlNmY5Nzc2MDNjN2JmYzIzZmQ4MmE4NTc0ODEwYTQ1ZjVlOTdjNjQzNmQ3OSIKICAgIH0KICB9Cn0=" - } - ] - } + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 99000, + "modified": { + "name": "[Lvl 1] Uncommon Dolphin", + "isPet": true + }, + "rarity": "uncommon", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MAGMA_CUBE", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "uncommon", + "stats": { + "health": 0.5, + "defense": 0.33, + "strength": 0.2 + }, + "texture_path": "https://sky.shiiyu.moe/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", + "name": "[Lvl 1] Magma Cube", + "display_name": "Magma Cube", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a0", + "§7Defense: §a0", + "§7Strength: §a0", + " ", + "§6Slimy Minions", + "§7Slime minions work §a0.2% §7faster while on your island", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 55000, + "modified": { + "name": "[Lvl 1] Uncommon Rock", + "isPet": true }, - "display": { - "Lore": [ - "§7Gear Score: §d455 §8(1236)", - "§7Ability Damage: §c+49.5% §8(+67.5%)", - "§7Health: §a+75 §8(+252)", - "§7Defense: §a+15 §8(+50.4)", - "§7Intelligence: §a+480 §9(+150) §8(+1,512)", - "", - "§d§l§d§lWisdom V§9, §9Growth V§9, §9Protection V", - "", - "§aPerfect 52500 / 52500", - "§6§l§ka§r §6§l§6§lLEGENDARY DUNGEON HELMET §6§l§ka" - ], - "Name": "§6Necrotic Wither Goggles §6✪§6✪§6✪§6✪§6✪" + "rarity": "uncommon", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "JERRY", + "exp": 1354.1999999999996, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "intelligence": -10 + }, + "texture_path": "https://sky.shiiyu.moe/head/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b", + "name": "[Lvl 10] Jerry", + "display_name": "Jerry", + "xpMaxLevel": 5624785, + "level": 10, + "xpCurrent": 14, + "xpForNext": 230, + "progress": 0.06086956521739131, + "lore": [ + "§8Combat Pet", + "", + "§7Intelligence: §a-10", + " ", + "§6Jerry", + "§7Gain §a50% §7chance to deal your regular damage", + " ", + "§6Jerry", + "§7Gain §a100% §7chance to receive a normal amount of drops from mobs", + " ", + "§7Progress to Level 11: §e6.1%", + "§2--§f------------------ §e14 §6/ §e230", + "", + "§7Total XP: §e1.3K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GUARDIAN", + "exp": 4260.302499999998, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 210598.35868837652, + "modified": { + "name": "[Lvl 18] Common Guardian", + "isPet": true }, - "ExtraAttributes": { - "dungeon_item_level": 5, - "originTag": "SHOP_PURCHASE", - "id": "WITHER_GOGGLES", - "shop_dungeon_floor_completion_required": 6, - "enchantments": { - "ultimate_wisdom": 5, - "growth": 5, - "protection": 5 - }, - "uuid": "4cf123e4-8c4e-4720-979c-bb92e87852f6", - "timestamp": 1620386520, - "recombobulated": true, - "reforge": "necrotic" - } + "rarity": "common", + "stats": { + "intelligence": 18, + "defense": 9 + }, + "texture_path": "https://sky.shiiyu.moe/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", + "name": "[Lvl 18] Guardian", + "display_name": "Guardian", + "xpMaxLevel": 5624785, + "level": 18, + "xpCurrent": 335, + "xpForNext": 490, + "progress": 0.6836734693877551, + "lore": [ + "§8Enchanting Pet", + "", + "§7Intelligence: §a+18", + "§7Defense: §a+9", + " ", + "§6Lazerbeam", + "§7Zap your enemies for §b0.4x §7your §b✎ Intelligence §7every §a3s", + " ", + "§7Progress to Level 19: §e68.4%", + "§2--------------§f------ §e335 §6/ §e490", + "", + "§7Total XP: §e4.2K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 3 - } - }, - "equipment": { - "necklace": {}, - "cloak": {}, - "belt": { - "id": 397, - "Count": 1, - "tag": { - "HideFlags": 254, - "SkullOwner": { - "Id": "6cdab1c1-42bd-3604-8656-2f68fb474ff6", - "Properties": { - "textures": [ - { - "Value": "ewogICJ0aW1lc3RhbXAiIDogMTY0MzU5OTY3OTc4MywKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVhNGY3ZTU3YTQzNTk0NTdjZTBlN2RhMjdlODUxM2E4YjYxOTdmMWNhNjhkMDcxNTQyYzY2ZjhhNDFiYWY0ZWQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==" - } - ] - } + { + "type": "GRIFFIN", + "exp": 37257.960816000086, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 76164.36809997188, + "modified": { + "name": "[Lvl 40] Common Griffin", + "isPet": true }, - "display": { - "Lore": [ - "§7Health: §a+25", - "§7Defense: §a+15", - "", - "§7Reduces damage taken by §c4%§7.", - "", - "§7§8This item can be reforged!", - "§8§l* §8Soulbound §8§l*", - "§9§lRARE BELT" - ], - "Name": "§9Blue Belt" + "rarity": "common", + "stats": { + "strength": 10, + "crit_chance": 4, + "crit_damage": 20, + "intelligence": 4, + "magic_find": 4 + }, + "ignoresTierBoost": true, + "texture_path": "https://sky.shiiyu.moe/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", + "name": "[Lvl 40] Griffin", + "display_name": "Griffin", + "xpMaxLevel": 5624785, + "level": 40, + "xpCurrent": 192, + "xpForNext": 3420, + "progress": 0.056140350877192984, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+10", + "§7Crit Chance: §a+4", + "§7Crit Damage: §a+20", + "§7Intelligence: §a+4", + "§7Magic Find: §a+4", + " ", + "§6Odyssey", + "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", + " ", + "§7Progress to Level 41: §e5.6%", + "§2--§f------------------ §e192 §6/ §e3.5K", + "", + "§7Total XP: §e37K §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 25000, + "modified": { + "name": "[Lvl 1] Common Dolphin", + "isPet": true }, - "ExtraAttributes": { - "id": "DOJO_BLUE_BELT", - "uuid": "6d027b01-2437-4e4d-a495-3bb252739ea3", - "timestamp": 1650718680 - } + "rarity": "common", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] }, - "Damage": 3 - }, - "gloves": {} + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 5628208.409586144, + "active": false, + "tier": "COMMON", + "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", + "candyUsed": 10, + "skin": null, + "rarity": "common", + "stats": { + "defense": 200, + "true_defense": 10 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 100] Rock", + "display_name": "Rock", + "xpMaxLevel": 5624785, + "level": 100, + "xpCurrent": null, + "xpForNext": 0, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+200", + "§7True Defense: §a+10", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + "", + "§6Held Item: §9Mining Exp Boost", + "§7Gives +§a40% §7pet exp for Mining", + " ", + "§bMAX LEVEL", + "", + "§7Total XP: §e5.6M §6/ §e5.6M §6(100%)", + "§7Candy Used: §e10 §6/ §e10", + "" + ] + }, + { + "type": "KUUDRA", + "exp": 341344.2917178187, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "health": 256, + "strength": 25.6 + }, + "texture_path": "https://sky.shiiyu.moe/head/1f0239fb498e5907ede12ab32629ee95f0064574a9ffdff9fc3a1c8e2ec17587", + "name": "[Lvl 64] Kuudra", + "display_name": "Kuudra", + "xpMaxLevel": 5624785, + "level": 64, + "xpCurrent": 2459, + "xpForNext": 32400, + "progress": 0.07589506172839507, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+256", + "§7Strength: §a+25", + " ", + "§6Crimson", + "§7Grants §a6.4% §7extra crimson essence", + " ", + "§6Wither Bait", + "§7Increases the odds of finding a vanquisher by §a6.4%", + " ", + "§8This pet's perks are active even when the pet is not summoned!", + "", + "§8This pet gains XP even when not summoned!", + "", + "§8This pet only gains XP on the §cCrimson Isle§8!", + "", + "§7Progress to Level 65: §e7.6%", + "§2--§f------------------ §e2,459 §6/ §e33K", + "", + "§7Total XP: §e341K §6/ §e5.6M §6(6%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + } + ] }, - "pets": [ - { - "type": "BLUE_WHALE", - "exp": 26202530.403314777, - "active": true, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 4, - "skin": null, - "price": 23078443.30374092, - "modified": { - "name": "[Lvl 100] Legendary Blue Whale", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 200 - }, - "texture_path": "/head/dab779bbccc849f88273d844e8ca2f3a67a1699cb216c0a11b44326ce2cc20", - "name": "[Lvl 100] Blue Whale", - "display_name": "Blue Whale", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Health: §a+200", - " ", - "§6Ingest", - "§7All potions heal §c+250 ❤", - " ", - "§6Bulk", - "§7Gain §a1 ❈ Defense §7per §c20.0 Max ❤ Health", - " ", - "§6Archimedes", - "§7Gain §c+20% Max ❤ Health", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e26.2M §6/ §e25.3M §6(103%)", - "§7Candy Used: §e4 §6/ §e10", - "" - ] - }, - { - "type": "BAT", - "exp": 25365455.329407804, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_VAMPIRE_FANG", - "candyUsed": 0, - "skin": null, - "price": 7110000, - "modified": { - "name": "[Lvl 100] Legendary Bat", - "isPet": true - }, - "rarity": "mythic", - "stats": { - "intelligence": 100, - "speed": 5, - "sea_creature_chance": 5 - }, - "texture_path": "/head/382fc3f71b41769376a9e92fe3adbaac3772b999b219c9d6b4680ba9983e527", - "name": "[Lvl 100] Bat", - "display_name": "Bat", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Intelligence: §a+100", - "§7Speed: §a+5", - "§7Sea Creature Chance: §a+5%", - " ", - "§6Candy Lover", - "§7Increases the chance for mobs to drop Candy by §a20%", - " ", - "§6Nightmare", - "§7During night, gain §a30 §9✎ Intelligence, §a50 §f✦ Speed§7, and night vision", - " ", - "§6Wings of Steel", - "§7Deals §a+50% §7damage to §6Spooky §7enemies during the §6Spooky Festival", - " ", - "§6Sonar", - "§7+§a25% §7chance to fish up spooky sea creatures", - "", - "§6Held Item: §6Vampire Fang", - "§7Upgrades a Bat pet from §6Legendary §7to §dMythic §7adding a bonus perk and bonus stats!", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "WOLF", - "exp": 64147245.20134974, - "active": false, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "skin": null, - "price": 22950000, - "modified": { - "name": "[Lvl 100] Legendary Wolf", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 50, - "crit_damage": 10, - "speed": 20, - "true_defense": 10 - }, - "texture_path": "/head/dc3dd984bb659849bd52994046964c22725f717e986b12d548fd169367d494", - "name": "[Lvl 100] Wolf", - "display_name": "Wolf", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+50", - "§7Crit Damage: §a+10", - "§7Speed: §a+20", - "§7True Defense: §a+10", - " ", - "§6Alpha Dog", - "§7Take §a30% §7less damage from wolves", - " ", - "§6Pack Leader", - "§7Gain §a15 §9 ☠ Crit Damage §7for every nearby wolf monsters", - "§8Max 10 wolves", - " ", - "§6Combat Exp Boost", - "§7Boosts your Combat exp by §a30%", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e64.1M §6/ §e25.3M §6(253%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "OCELOT", - "exp": 4530919.826667831, - "active": false, - "tier": "LEGENDARY", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 7653732.261702525, - "modified": { - "name": "[Lvl 76] Legendary Ocelot", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 38, - "ferocity": 7.6000000000000005 - }, - "texture_path": "/head/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1", - "name": "[Lvl 76] Ocelot", - "display_name": "Ocelot", - "xpMaxLevel": 25353230, - "level": 76, - "xpCurrent": 298489, - "xpForNext": 311700, - "progress": 0.9576162977221687, - "lore": [ - "§8Foraging Pet", - "", - "§7Speed: §a+38", - "§7Ferocity: §a+7", - " ", - "§6Foraging Exp Boost", - "§7Boosts your Foraging exp by §a22.8%", - " ", - "§6Tree Hugger", - "§7Foraging minions work §a22.8% §7faster while on your island", - " ", - "§6Tree Essence", - "§7Gain a §a22.8% §7chance to get exp from breaking a log", - " ", - "§7Progress to Level 77: §e95.8%", - "§2--------------------§f §e298,489 §6/ §e312K", - "", - "§7Total XP: §e4.5M §6/ §e25.3M §6(17%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SQUID", - "exp": 5301460.283916464, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FISHING_SKILL_BOOST_UNCOMMON", - "candyUsed": 0, - "skin": null, - "price": 11533001.763661455, - "modified": { - "name": "[Lvl 79] Legendary Squid", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 39.5, - "intelligence": 39.5 - }, - "texture_path": "/head/01433be242366af126da434b8735df1eb5b3cb2cede39145974e9c483607bac", - "name": "[Lvl 79] Squid", - "display_name": "Squid", - "xpMaxLevel": 25353230, - "level": 79, - "xpCurrent": 65930, - "xpForNext": 383700, - "progress": 0.17182694813656502, - "lore": [ - "§8Fishing Pet", - "", - "§7Health: §a+39", - "§7Intelligence: §a+39", - " ", - "§6More Ink", - "§7Gain a §a79% §7chance to get double drops from squids", - " ", - "§6Ink Specialty", - "§7Buffs the Ink Wand by §a31.6 §c❁ Damage §7and §a15.8 §c❁ Strength", - " ", - "§6Fishing Exp Boost", - "§7Boosts your Fishing exp by §a23.7%", - "", - "§6Held Item: §aFishing Exp Boost", - "§7Gives +§a30% §7pet exp for Fishing", - " ", - "§7Progress to Level 80: §e17.2%", - "§2----§f---------------- §e65,930 §6/ §e384K", - "", - "§7Total XP: §e5.3M §6/ §e25.3M §6(20%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "TIGER", - "exp": 16637923.460626705, - "active": false, - "tier": "LEGENDARY", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 0, - "skin": null, - "price": 29381156.113014214, - "modified": { - "name": "[Lvl 94] Legendary Tiger", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "strength": 14.4, - "crit_chance": 4.7, - "crit_damage": 47, - "ferocity": 23.5 - }, - "texture_path": "/head/fc42638744922b5fcf62cd9bf27eeab91b2e72d6c70e86cc5aa3883993e9d84", - "name": "[Lvl 94] Tiger", - "display_name": "Tiger", - "xpMaxLevel": 25353230, - "level": 94, - "xpCurrent": 704893, - "xpForNext": 1286700, - "progress": 0.5478301080282895, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+14", - "§7Crit Chance: §a+4", - "§7Crit Damage: §a+47", - "§7Ferocity: §a+23", - " ", - "§6Merciless Swipe", - "§7Gain \t§c+28.2% ⫽ Ferocity.", - " ", - "§6Hemorrhage", - "§7Melee attacks reduce healing by §651.7% §7for §a10s", - " ", - "§6Apex Predator", - "§7Deal §c+18.8% §7damage against targets with no other mobs within §a15 §7blocks", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§7Progress to Level 95: §e54.8%", - "§2-----------§f--------- §e704,893 §6/ §e1.3M", - "", - "§7Total XP: §e16.6M §6/ §e25.3M §6(65%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "RABBIT", - "exp": 92650232.4205664, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 12974999, - "modified": { - "name": "[Lvl 100] Legendary Rabbit", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "health": 100, - "speed": 20 - }, - "texture_path": "/head/117bffc1972acd7f3b4a8f43b5b6c7534695b8fd62677e0306b2831574b", - "name": "[Lvl 100] Rabbit", - "display_name": "Rabbit", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Farming Pet", - "", - "§7Health: §a+100", - "§7Speed: §a+20", - " ", - "§6Happy Feet ", - "§7Jump Potions also give §a+50 §7speed", - " ", - "§6Farming Exp Boost ", - "§7Boosts your Farming Exp by §a30%", - " ", - "§6Efficient Farming", - "§7Farming minions work §a30% §7faster while on your island.", - "", - "§6Held Item: §9Farming Exp Boost", - "§7Gives +§a40% §7pet exp for Farming", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e92.6M §6/ §e25.3M §6(365%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SKELETON_HORSE", - "exp": 1003415.3682159979, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_SADDLE", - "candyUsed": 10, - "skin": null, - "price": 972904.3472496292, - "modified": { - "name": "[Lvl 56] Legendary Skeleton Horse", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 28, - "intelligence": 56 - }, - "texture_path": "/head/47effce35132c86ff72bcae77dfbb1d22587e94df3cbc2570ed17cf8973a", - "name": "[Lvl 56] Skeleton Horse", - "display_name": "Skeleton Horse", - "xpMaxLevel": 25353230, - "level": 56, - "xpCurrent": 52485, - "xpForNext": 79200, - "progress": 0.662689393939394, - "lore": [ - "§8Combat Mount", - "", - "§7Speed: §a+28", - "§7Intelligence: §a+56", - " ", - "§6Ridable", - "§7Right-click your summoned pet to ride it!", - " ", - "§6Run", - "§7Increase the speed of your mount by §a84%", - " ", - "§6Ride Into Battle", - "§7When riding your horse, gain +§a22.4% §7bow damage", - "", - "§6Held Item: §aSaddle", - "§7Increase horse speed by §a50% §7 and jump boost by §a100%", - " ", - "§7Progress to Level 57: §e66.3%", - "§2--------------§f------ §e52,485 §6/ §e80K", - "", - "§7Total XP: §e1.0M §6/ §e25.3M §6(3%)", - "§7Candy Used: §e10 §6/ §e10", - "" - ] - }, - { - "type": "WITHER_SKELETON", - "exp": 25365204.923713338, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 9284900, - "modified": { - "name": "[Lvl 100] Legendary Wither Skeleton", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "crit_chance": 5, - "intelligence": 25, - "crit_damage": 25, - "defense": 25, - "strength": 25 - }, - "texture_path": "/head/f5ec964645a8efac76be2f160d7c9956362f32b6517390c59c3085034f050cff", - "name": "[Lvl 100] Wither Skeleton", - "display_name": "Wither Skeleton", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Crit Chance: §a+5", - "§7Intelligence: §a+25", - "§7Crit Damage: §a+25", - "§7Defense: §a+25", - "§7Strength: §a+25", - " ", - "§6Stronger Bones", - "§7Take §a30% §7less damage from skeletons", - " ", - "§6Wither Blood", - "§7Deal §a25% §7more damage to wither mobs", - " ", - "§6Death's Touch", - "§7Upon hitting an enemy inflict the wither effect for §a200% §7damage over 3 seconds", - "§8Does not stack", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ELEPHANT", - "exp": 23427065.020068675, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FARMING_SKILL_BOOST_EPIC", - "candyUsed": 0, - "skin": null, - "price": 35407221.39999827, - "modified": { - "name": "[Lvl 98] Legendary Elephant", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "intelligence": 73.5, - "health": 98 - }, - "texture_path": "/head/7071a76f669db5ed6d32b48bb2dba55d5317d7f45225cb3267ec435cfa514", - "name": "[Lvl 98] Elephant", - "display_name": "Elephant", - "xpMaxLevel": 25353230, - "level": 98, - "xpCurrent": 1707235, - "xpForNext": 1746700, - "progress": 0.9774059655350089, - "lore": [ - "§8Farming Pet", - "", - "§7Intelligence: §a+73", - "§7Health: §a+98", - " ", - "§6Stomp", - "§7Gain §a19.6 ❈ Defense §7for every §f100 ✦ Speed", - " ", - "§6Walking Fortress", - "§7Gain §c1 ❤ Health §7for every §a10 ❈ Defense", - " ", - "§6Trunk Efficiency", - "§7Grants §a+176.4 §6☘ Farming Fortune§7, which increases your chance for multiple drops", - "", - "§6Held Item: §5Farming Exp Boost", - "§7Gives +§a50% §7pet exp for Farming", - " ", - "§7Progress to Level 99: §e97.7%", - "§2--------------------§f §e1,707,235 §6/ §e1.8M", - "", - "§7Total XP: §e23.4M §6/ §e25.3M §6(92%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMITE", - "exp": 26355560.600336473, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 6589999, - "modified": { - "name": "[Lvl 100] Legendary Endermite", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "intelligence": 100 - }, - "texture_path": "/head/5a1a0831aa03afb4212adcbb24e5dfaa7f476a1173fce259ef75a85855", - "name": "[Lvl 100] Endermite", - "display_name": "Endermite", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7Intelligence: §a+100", - " ", - "§6More Stonks", - "§7Gain more exp orbs for breaking end stone and gain a +§a50% §7chance to get an extra block dropped.", - " ", - "§6Pearl Muncher", - "§7Upon picking up an ender pearl, consume it and gain §a10 §6coins", - " ", - "§6Pearl Powered", - "§7Upon consuming an ender pearl, gain +§a50 §7speed for 10 seconds", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e26.3M §6/ §e25.3M §6(103%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 25379444.268969074, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 15590000, - "modified": { - "name": "[Lvl 100] Legendary Rock", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "defense": 200, - "true_defense": 10 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 100] Rock", - "display_name": "Rock", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+200", - "§7True Defense: §a+10", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a25% §7defense", - " ", - "§6Steady Ground", - "§7While sitting on your rock, gain +§a30§7% damage", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.3M §6/ §e25.3M §6(100%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GRANDMA_WOLF", - "exp": 50260724.958288014, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_EXP_SHARE", - "candyUsed": 0, - "skin": null, - "rarity": "legendary", - "stats": { - "health": 100, - "strength": 25 - }, - "texture_path": "/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", - "name": "[Lvl 100] Grandma Wolf", - "display_name": "Grandma Wolf", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+100", - "§7Strength: §a+25", - " ", - "§6Kill Combo", - "§7Gain buffs for combo kills. Effects stack as you increase your combo.", - "", - "§a5 Combo §8(lasts §a10s§8)", - "§8+§b3% §b✯ Magic Find", - "§a10 Combo §8(lasts §a8s§8)", - "§8+§610 §7coins per kill", - "§a15 Combo §8(lasts §a6s§8)", - "§8+§b3% §b✯ Magic Find", - "§a20 Combo §8(lasts §a5s§8)", - "§8+§315% §7Combat Exp", - "§a25 Combo §8(lasts §a4s§8)", - "§8+§b3% §b✯ Magic Find", - "§a30 Combo §8(lasts §a3s§8)", - "§8+§610 §7coins per kill", - "", - "§6Held Item: §5Exp Share", - "§7While unequipped this pet gains §a25% §7of the equipped pet's xp, this is §7split between all pets holding the item.", - " ", - "§8This pet's perks are active even when the pet is not summoned!", - "", - "§bMAX LEVEL", - "", - "§7Total XP: §e50.2M §6/ §e25.3M §6(198%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MITHRIL_GOLEM", - "exp": 130316005.44530973, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": null, - "price": 6489000, - "modified": { - "name": "[Lvl 100] Legendary Mithril Golem", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "true_defense": 50 - }, - "texture_path": "/head/c1b2dfe8ed5dffc5b1687bc1c249c39de2d8a6c3d90305c95f6d1a1a330a0b1", - "name": "[Lvl 100] Mithril Golem", - "display_name": "Mithril Golem", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet", - "", - "§7True Defense: §a+50", - " ", - "§6Mithril Affinity", - "§7Gain +§a100 §6⸕ Mining Speed §7when mining §eMithril", - " ", - "§6The Smell Of Powder", - "§7Gain +§a20% §7more §2Mithril Powder", - " ", - "§6Danger Averse", - "§7Increases your combat stats by +§a20% §7on mining islands", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e130.3M §6/ §e25.3M §6(514%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SHEEP", - "exp": 41525369.18072697, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_TEXTBOOK", - "candyUsed": 0, - "skin": null, - "price": 9100000, - "modified": { - "name": "[Lvl 100] Legendary Sheep", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "ability_damage": 20, - "intelligence": 200 - }, - "texture_path": "/head/64e22a46047d272e89a1cfa13e9734b7e12827e235c2012c1a95962874da0", - "name": "[Lvl 100] Sheep", - "display_name": "Sheep", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Alchemy Pet", - "", - "§7Ability Damage: §a+20%", - "§7Intelligence: §a+200", - " ", - "§6Mana Saver", - "§7Reduces the mana cost of abilities by §a20%", - " ", - "§6Overheal", - "§7Gives a §a10% §7shield after not taking damage for 10s", - " ", - "§6Dungeon Wizard", - "§7Increases your total mana by §a25% §7while in dungeons", - "", - "§6Held Item: §6Textbook", - "§7Increases the pet's §b✎ Intelligence §7by §a100%", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e41.5M §6/ §e25.3M §6(163%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "AMMONITE", - "exp": 1571694.6405923986, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 1299535.1543311258, - "modified": { - "name": "[Lvl 62] Legendary Ammonite", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "sea_creature_chance": 4.340000000000001 - }, - "texture_path": "/head/a074a7bd976fe6aba1624161793be547d54c835cf422243a851ba09d1e650553", - "name": "[Lvl 62] Ammonite", - "display_name": "Ammonite", - "xpMaxLevel": 25353230, - "level": 62, - "xpCurrent": 53064, - "xpForNext": 119700, - "progress": 0.4433082706766917, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a+4%", - " ", - "§6Heart of the Sea", - "§7Each Heart of the Mountain level grants §3+0.6 α Sea Creature Chance", - " ", - "§6Not a Snail", - "§7Each fishing and mining level grants §f+1.2 ✦ Speed §7and §a+1.2 ❈ Defense", - " ", - "§6Gift of the Ammonite", - "§7Increases your fishing speed by §a0.4% §7for each mining level", - "", - "§6Held Item: §fAll Skills Exp Boost", - "§7Gives +§a10% §7pet exp for all skills", - " ", - "§7Progress to Level 63: §e44.3%", - "§2---------§f----------- §e53,064 §6/ §e120K", - "", - "§7Total XP: §e1.5M §6/ §e25.3M §6(6%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "SILVERFISH", - "exp": 194381317.07596773, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 0, - "skin": "SILVERFISH", - "price": 79478888, - "modified": { - "name": "[Lvl 100] Legendary Silverfish ✦", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "defense": 100, - "health": 20 - }, - "texture_path": "/head/d8552ff591042c4a38f8ba0626784ae28c4545a97d423fd9037c341035593273", - "name": "[Lvl 100] Silverfish ✦", - "display_name": "Silverfish ✦", - "xpMaxLevel": 25353230, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Pet, Fortified Skin", - "", - "§7Defense: §a+100", - "§7Health: §a+20", - " ", - "§6True Defense Boost", - "§7Boosts your §f❂ True Defense §7by §a15", - " ", - "§6Mining Exp Boost", - "§7Boosts your Mining exp by §a30%", - " ", - "§6Dexterity", - "§7Gives permanent haste III", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e194.3M §6/ §e25.3M §6(766%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MONKEY", - "exp": 3234594.0934215398, - "active": false, - "tier": "LEGENDARY", - "heldItem": "PET_ITEM_FORAGING_SKILL_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 33300797.550139688, - "modified": { - "name": "[Lvl 72] Legendary Monkey", - "isPet": true - }, - "rarity": "legendary", - "stats": { - "speed": 14.4, - "intelligence": 36 - }, - "texture_path": "/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", - "name": "[Lvl 72] Monkey", - "display_name": "Monkey", - "xpMaxLevel": 25353230, - "level": 72, - "xpCurrent": 58964, - "xpForNext": 237700, - "progress": 0.2480605805637358, - "lore": [ - "§8Foraging Pet", - "", - "§7Speed: §a+14", - "§7Intelligence: §a+36", - " ", - "§6Treeborn", - "§7Grants §a+43.2 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", - " ", - "§6Vine Swing", - "§7Gain +§a72\t§f✦ Speed §7while in The Park", - " ", - "§6Evolved Axes", - "§7Reduce the cooldown of Jungle Axe and Treecapitator by §a36%", - "", - "§6Held Item: §fForaging Exp Boost", - "§7Gives +§a20% §7pet exp for Foraging", - " ", - "§7Progress to Level 73: §e24.8%", - "§2-----§f--------------- §e58,964 §6/ §e238K", - "", - "§7Total XP: §e3.2M §6/ §e25.3M §6(12%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "BEE", - "exp": 37405.08750000002, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 601809.0968509015, - "modified": { - "name": "[Lvl 25] Epic Bee", - "isPet": true - }, - "rarity": "epic", - "stats": { - "strength": 11.25, - "intelligence": 12.5, - "speed": 2.5 - }, - "texture_path": "/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", - "name": "[Lvl 25] Bee", - "display_name": "Bee", - "xpMaxLevel": 18608500, - "level": 25, - "xpCurrent": 405, - "xpForNext": 3700, - "progress": 0.10945945945945947, - "lore": [ - "§8Farming Pet", - "", - "§7Strength: §a+11", - "§7Intelligence: §a+12", - "§7Speed: §a+2", - " ", - "§6Hive", - "§7Gain §b+4.5 ✎ Intelligence §7and §c+3.8 ❁ Strength §7for each nearby bee.", - "§8Max 15 bees", - " ", - "§6Busy Buzz Buzz", - "§7Has §a25% §7chance for flowers to drop an extra one", - " ", - "§7Progress to Level 26: §e10.9%", - "§2---§f----------------- §e405 §6/ §e3.7K", - "", - "§7Total XP: §e37K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 161443.38498812658, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 267691.5430146793, - "modified": { - "name": "[Lvl 40] Epic Enderman", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 30 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 40] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 18608500, - "level": 40, - "xpCurrent": 6443, - "xpForNext": 16200, - "progress": 0.39771604938271604, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a+30", - " ", - "§6Enderian", - "§7Take §a12% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a20 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 41: §e39.8%", - "§2--------§f------------ §e6,443 §6/ §e17K", - "", - "§7Total XP: §e161K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GUARDIAN", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 2699999, - "modified": { - "name": "[Lvl 1] Epic Guardian", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 1, - "defense": 0.5 - }, - "texture_path": "/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", - "name": "[Lvl 1] Guardian", - "display_name": "Guardian", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Enchanting Pet", - "", - "§7Intelligence: §a+1", - "§7Defense: §a0", - " ", - "§6Lazerbeam", - "§7Zap your enemies for §b0.2x §7your §b✎ Intelligence §7every §a3s", - " ", - "§6Enchanting Exp Boost", - "§7Boosts your Enchanting exp by §a0.3%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GHOUL", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 20000, - "modified": { - "name": "[Lvl 1] Epic Ghoul", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 0.75, - "health": 1, - "ferocity": 0.05 - }, - "texture_path": "/head/87934565bf522f6f4726cdfe127137be11d37c310db34d8c70253392b5ff5b", - "name": "[Lvl 1] Ghoul", - "display_name": "Ghoul", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Intelligence: §a0", - "§7Health: §a+1", - "§7Ferocity: §a0", - " ", - "§6Amplified Healing", - "§7Increase all healing by §a0.3%", - " ", - "§6Zombie Arm", - "§7Increase the health and range of the Zombie sword by §a0.5%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "HOUND", - "exp": 43487.29259999999, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 157192.60408053308, - "modified": { - "name": "[Lvl 26] Epic Hound", - "isPet": true - }, - "rarity": "epic", - "stats": { - "strength": 10.4, - "bonus_attack_speed": 3.9, - "ferocity": 1.3 - }, - "texture_path": "/head/b7c8bef6beb77e29af8627ecdc38d86aa2fea7ccd163dc73c00f9f258f9a1457", - "name": "[Lvl 26] Hound", - "display_name": "Hound", - "xpMaxLevel": 18608500, - "level": 26, - "xpCurrent": 2787, - "xpForNext": 4000, - "progress": 0.69675, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+10", - "§7Bonus Attack Speed: §a+3", - "§7Ferocity: §a+1", - " ", - "§6Scavenger", - "§7Gain +§a1.3 §7coins per monster kill", - " ", - "§6Finder", - "§7Increases the chance for monsters to drop their armor by §a2.6%", - " ", - "§7Progress to Level 27: §e69.7%", - "§2--------------§f------ §e2,787 §6/ §e4.0K", - "", - "§7Total XP: §e43K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 14720.653773215987, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 2501186.6072310945, - "modified": { - "name": "[Lvl 16] Epic Rock", - "isPet": true - }, - "rarity": "epic", - "stats": { - "defense": 32, - "true_defense": 1.6 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 16] Rock", - "display_name": "Rock", - "xpMaxLevel": 18608500, - "level": 16, - "xpCurrent": 620, - "xpForNext": 1800, - "progress": 0.34444444444444444, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+32", - "§7True Defense: §a+1", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a4% §7defense", - " ", - "§7Progress to Level 17: §e34.4%", - "§2-------§f------------- §e620 §6/ §e1.8K", - "", - "§7Total XP: §e14K §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 36119159.19140592, - "active": false, - "tier": "EPIC", - "heldItem": "WASHED_UP_SOUVENIR", - "candyUsed": 0, - "skin": null, - "price": 6830000, - "modified": { - "name": "[Lvl 100] Epic Dolphin", - "isPet": true - }, - "rarity": "epic", - "stats": { - "sea_creature_chance": 10, - "intelligence": 100 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 100] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a+10%", - "§7Intelligence: §a+100", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a5% §7for each nearby player within 10 blocks up to §a25%", - " ", - "§6Echolocation", - "§7Increases sea creatures catch chance by §a10%", - "", - "§6Held Item: §6Washed-up Souvenir", - "§7Increases §3α Sea Creature Chance §7by §a5", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e36.1M §6/ §e18.6M §6(194%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "PARROT", - "exp": 27614407.780526333, - "active": false, - "tier": "EPIC", - "heldItem": "PET_ITEM_ALL_SKILLS_BOOST_COMMON", - "candyUsed": 0, - "skin": null, - "price": 13158999, - "modified": { - "name": "[Lvl 100] Epic Parrot", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 10, - "intelligence": 100 - }, - "texture_path": "/head/5df4b3401a4d06ad66ac8b5c4d189618ae617f9c143071c8ac39a563cf4e4208", - "name": "[Lvl 100] Parrot", - "display_name": "Parrot", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Alchemy Pet", - "", - "§7Crit Damage: §a+10", - "§7Intelligence: §a+100", - " ", - "§6Flamboyant", - "§7Adds §a15 §7levels to intimidation accessories", - " ", - "§6Repeat", - "§7Boosts potion duration by §a40%", - "", - "§6Held Item: §fAll Skills Exp Boost", - "§7Gives +§a10% §7pet exp for all skills", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e27.6M §6/ §e18.6M §6(148%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 999000, - "modified": { - "name": "[Lvl 1] Epic Magma Cube", - "isPet": true - }, - "rarity": "epic", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.3% §7faster while on your island", - " ", - "§6Salt Blade", - "§7Deal §a0.3% §7more damage to slimes", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 999000, - "modified": { - "name": "[Lvl 1] Epic Magma Cube", - "isPet": true - }, - "rarity": "epic", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.3% §7faster while on your island", - " ", - "§6Salt Blade", - "§7Deal §a0.3% §7more damage to slimes", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "BABY_YETI", - "exp": 25708831.561584134, - "active": false, - "tier": "EPIC", - "heldItem": "DWARF_TURTLE_SHELMET", - "candyUsed": 7, - "skin": null, - "price": 13001939.889431503, - "modified": { - "name": "[Lvl 100] Epic Baby Yeti", - "isPet": true - }, - "rarity": "epic", - "stats": { - "intelligence": 75, - "strength": 40 - }, - "texture_path": "/head/ab126814fc3fa846dad934c349628a7a1de5b415021a03ef4211d62514d5", - "name": "[Lvl 100] Baby Yeti", - "display_name": "Baby Yeti", - "xpMaxLevel": 18608500, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Intelligence: §a+75", - "§7Strength: §a+40", - " ", - "§6Cold Breeze", - "§7Gives §a50 §c❁ Strength §7and §9☠ Crit Damage §7when near snow", - " ", - "§6Ice Shields", - "§7Gain §a50% §7of your strength as §a❈ Defense", - "", - "§6Held Item: §9Dwarf Turtle Shelmet", - "§7Makes the pet's owner immune to knockback.", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e25.7M §6/ §e18.6M §6(138%)", - "§7Candy Used: §e7 §6/ §e10", - "" - ] - }, - { - "type": "BAL", - "exp": 619046.7311604992, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 5716234.718141884, - "modified": { - "name": "[Lvl 54] Epic Bal", - "isPet": true - }, - "rarity": "epic", - "stats": { - "ferocity": 5.4, - "strength": 13.5 - }, - "texture_path": "/head/c469ba2047122e0a2de3c7437ad3dd5d31f1ac2d27abde9f8841e1d92a8c5b75", - "name": "[Lvl 54] Bal", - "display_name": "Bal", - "xpMaxLevel": 18608500, - "level": 54, - "xpCurrent": 43246, - "xpForNext": 52200, - "progress": 0.8284674329501915, - "lore": [ - "§8Combat Pet", - "", - "§7Ferocity: §a+5", - "§7Strength: §a+13", - " ", - "§6Protective Skin", - "§7§7Gives §cheat immunity.", - " ", - "§6Fire Whip", - "§7Every §a5s §7while in combat the Balrog will strike nearby enemies with his fire whip dealing §c5.4% §7of your damage as §ftrue damage.", - " ", - "§7Progress to Level 55: §e82.8%", - "§2-----------------§f--- §e43,246 §6/ §e53K", - "", - "§7Total XP: §e619K §6/ §e18.6M §6(3%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 95000, - "modified": { - "name": "[Lvl 1] Epic Enderman", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.3% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "TARANTULA", - "exp": 0, - "active": false, - "tier": "EPIC", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 69420, - "modified": { - "name": "[Lvl 1] Epic Tarantula", - "isPet": true - }, - "rarity": "epic", - "stats": { - "crit_chance": 0.1, - "crit_damage": 0.3, - "strength": 0.1 - }, - "texture_path": "/head/8300986ed0a04ea79904f6ae53f49ed3a0ff5b1df62bba622ecbd3777f156df8", - "name": "[Lvl 1] Tarantula", - "display_name": "Tarantula", - "xpMaxLevel": 18608500, - "level": 1, - "xpCurrent": 0, - "xpForNext": 440, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Chance: §a0", - "§7Crit Damage: §a0", - "§7Strength: §a0", - " ", - "§6Webbed Cells", - "§7Anti-healing is §a0.3% §7less effective against you", - " ", - "§6Eight Legs", - "§7Decreases the mana cost of Spider, Tarantula and Thorn's boots by §a0.5%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e440", - "", - "§7Total XP: §e0 §6/ §e18.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "HORSE", - "exp": 9673.888333333345, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "rare", - "stats": { - "intelligence": 8, - "speed": 4 - }, - "texture_path": "/head/36fcd3ec3bc84bafb4123ea479471f9d2f42d8fb9c5f11cf5f4e0d93226", - "name": "[Lvl 16] Horse", - "display_name": "Horse", - "xpMaxLevel": 12626665, - "level": 16, - "xpCurrent": 858, - "xpForNext": 1150, - "progress": 0.7460869565217392, - "lore": [ - "§8Combat Mount", - "", - "§7Intelligence: §a+8", - "§7Speed: §a+4", - " ", - "§6Ridable", - "§7Right-click your summoned pet to ride it!", - " ", - "§6Run", - "§7Increase the speed of your mount by §a17.6%", - " ", - "§7Progress to Level 17: §e74.6%", - "§2---------------§f----- §e858 §6/ §e1.2K", - "", - "§7Total XP: §e9.6K §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 4000, - "modified": { - "name": "[Lvl 1] Rare Enderman", - "isPet": true - }, - "rarity": "rare", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.2% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 500000, - "modified": { - "name": "[Lvl 1] Rare Rock", - "isPet": true - }, - "rarity": "rare", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§6Fortify", - "§7While sitting on your rock, gain +§a0.2% §7defense", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 500000, - "modified": { - "name": "[Lvl 1] Rare Dolphin", - "isPet": true - }, - "rarity": "rare", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", - " ", - "§6Echolocation", - "§7Increases sea creatures catch chance by §a0.1%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ENDERMAN", - "exp": 0, - "active": false, - "tier": "RARE", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 4000, - "modified": { - "name": "[Lvl 1] Rare Enderman", - "isPet": true - }, - "rarity": "rare", - "stats": { - "crit_damage": 0.75 - }, - "texture_path": "/head/6eab75eaa5c9f2c43a0d23cfdce35f4df632e9815001850377385f7b2f039ce1", - "name": "[Lvl 1] Enderman", - "display_name": "Enderman", - "xpMaxLevel": 12626665, - "level": 1, - "xpCurrent": 0, - "xpForNext": 275, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Crit Damage: §a0", - " ", - "§6Enderian", - "§7Take §a0.2% §7less damage from end monsters", - " ", - "§6Teleport Savvy", - "§7Buffs the Aspect of the End ability granting §a0.5 §7weapon damage for 5s on use.", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e275", - "", - "§7Total XP: §e0 §6/ §e12.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 119000, - "modified": { - "name": "[Lvl 1] Uncommon Dolphin", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a20%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MAGMA_CUBE", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "uncommon", - "stats": { - "health": 0.5, - "defense": 0.33, - "strength": 0.2 - }, - "texture_path": "/head/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429", - "name": "[Lvl 1] Magma Cube", - "display_name": "Magma Cube", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a0", - "§7Defense: §a0", - "§7Strength: §a0", - " ", - "§6Slimy Minions", - "§7Slime minions work §a0.2% §7faster while on your island", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 50000, - "modified": { - "name": "[Lvl 1] Uncommon Rock", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "JERRY", - "exp": 1354.1999999999996, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "intelligence": -10 - }, - "texture_path": "/head/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b", - "name": "[Lvl 10] Jerry", - "display_name": "Jerry", - "xpMaxLevel": 5624785, - "level": 10, - "xpCurrent": 14, - "xpForNext": 230, - "progress": 0.06086956521739131, - "lore": [ - "§8Combat Pet", - "", - "§7Intelligence: §a-10", - " ", - "§6Jerry", - "§7Gain §a50% §7chance to deal your regular damage", - " ", - "§6Jerry", - "§7Gain §a100% §7chance to receive a normal amount of drops from mobs", - " ", - "§7Progress to Level 11: §e6.1%", - "§2--§f------------------ §e14 §6/ §e230", - "", - "§7Total XP: §e1.3K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GUARDIAN", - "exp": 4260.302499999998, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 98683.18928723499, - "modified": { - "name": "[Lvl 18] Common Guardian", - "isPet": true - }, - "rarity": "common", - "stats": { - "intelligence": 18, - "defense": 9 - }, - "texture_path": "/head/221025434045bda7025b3e514b316a4b770c6faa4ba9adb4be3809526db77f9d", - "name": "[Lvl 18] Guardian", - "display_name": "Guardian", - "xpMaxLevel": 5624785, - "level": 18, - "xpCurrent": 335, - "xpForNext": 490, - "progress": 0.6836734693877551, - "lore": [ - "§8Enchanting Pet", - "", - "§7Intelligence: §a+18", - "§7Defense: §a+9", - " ", - "§6Lazerbeam", - "§7Zap your enemies for §b0.4x §7your §b✎ Intelligence §7every §a3s", - " ", - "§7Progress to Level 19: §e68.4%", - "§2--------------§f------ §e335 §6/ §e490", - "", - "§7Total XP: §e4.2K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GRIFFIN", - "exp": 37257.960816000086, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 109283.82139107553, - "modified": { - "name": "[Lvl 40] Common Griffin", - "isPet": true - }, - "rarity": "common", - "stats": { - "strength": 10, - "crit_chance": 4, - "crit_damage": 20, - "intelligence": 4, - "magic_find": 4 - }, - "ignoresTierBoost": true, - "texture_path": "/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", - "name": "[Lvl 40] Griffin", - "display_name": "Griffin", - "xpMaxLevel": 5624785, - "level": 40, - "xpCurrent": 192, - "xpForNext": 3420, - "progress": 0.056140350877192984, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+10", - "§7Crit Chance: §a+4", - "§7Crit Damage: §a+20", - "§7Intelligence: §a+4", - "§7Magic Find: §a+4", - " ", - "§6Odyssey", - "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", - " ", - "§7Progress to Level 41: §e5.6%", - "§2--§f------------------ §e192 §6/ §e3.5K", - "", - "§7Total XP: §e37K §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 20000, - "modified": { - "name": "[Lvl 1] Common Dolphin", - "isPet": true - }, - "rarity": "common", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 5628208.409586144, - "active": false, - "tier": "COMMON", - "heldItem": "PET_ITEM_MINING_SKILL_BOOST_RARE", - "candyUsed": 10, - "skin": null, - "rarity": "common", - "stats": { - "defense": 200, - "true_defense": 10 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 100] Rock", - "display_name": "Rock", - "xpMaxLevel": 5624785, - "level": 100, - "xpCurrent": null, - "xpForNext": 0, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+200", - "§7True Defense: §a+10", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - "", - "§6Held Item: §9Mining Exp Boost", - "§7Gives +§a40% §7pet exp for Mining", - " ", - "§bMAX LEVEL", - "", - "§7Total XP: §e5.6M §6/ §e5.6M §6(100%)", - "§7Candy Used: §e10 §6/ §e10", - "" - ] - }, - { - "type": "KUUDRA", - "exp": 341344.2917178187, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "health": 256, - "strength": 25.6 - }, - "texture_path": "/head/1f0239fb498e5907ede12ab32629ee95f0064574a9ffdff9fc3a1c8e2ec17587", - "name": "[Lvl 64] Kuudra", - "display_name": "Kuudra", - "xpMaxLevel": 5624785, - "level": 64, - "xpCurrent": 2459, - "xpForNext": 32400, - "progress": 0.07589506172839507, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+256", - "§7Strength: §a+25", - " ", - "§6Crimson", - "§7Grants §a6.4% §7extra crimson essence", - " ", - "§6Wither Bait", - "§7Increases the odds of finding a vanquisher by §a6.4%", - " ", - "§8This pet's perks are active even when the pet is not summoned!", - "", - "§8This pet gains XP even when not summoned!", - "", - "§8This pet only gains XP on the §cCrimson Isle§8!", - "", - "§7Progress to Level 65: §e7.6%", - "§2--§f------------------ §e2,459 §6/ §e33K", - "", - "§7Total XP: §e341K §6/ §e5.6M §6(6%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - } - ], "talismans": { "common": [ { @@ -12160,7 +13001,9 @@ "enrichment": "None" } ], - "very": [] + "very": [ + + ] }, "collections": [ { @@ -12337,11 +13180,11 @@ "category": "FARMING", "maxTiers": 9, "tier": 9, - "amount": 155633680, + "amount": 262395543, "contributions": [ { "user": "ea805d40e8284d8d8e64e9fc8ac301ca", - "amount": 155633680 + "amount": 262395543 } ] }, @@ -12547,11 +13390,11 @@ "category": "MINING", "maxTiers": 9, "tier": 9, - "amount": 51812743, + "amount": 62489689, "contributions": [ { "user": "ea805d40e8284d8d8e64e9fc8ac301ca", - "amount": 51812743 + "amount": 62489689 } ] }, @@ -12730,7 +13573,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Slimeball", @@ -13483,9 +14328,47 @@ ] }, "cakebag": [ - 17, 18, 30, 35, 36, 37, 41, 42, 43, 46, 47, 48, 49, 53, 54, 55, 59, 64, - 78, 69, 84, 90, 97, 101, 112, 119, 121, 124, 125, 126, 132, 136, 137, - 138, 139, 143, 149, 150, 173, 180, 185 + 17, + 18, + 30, + 35, + 36, + 37, + 41, + 42, + 43, + 46, + 47, + 48, + 49, + 53, + 54, + 55, + 59, + 64, + 78, + 69, + 84, + 90, + 97, + 101, + 112, + 119, + 121, + 124, + 125, + 126, + 132, + 136, + 137, + 138, + 139, + 143, + 149, + 150, + 173, + 180, + 185 ] }, { @@ -13494,7 +14377,7 @@ "name": "Peach", "id": "7f6f479b7eb6467fa7281a1861aed508", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": true, "gamemode": "ironman", @@ -13791,14 +14674,14 @@ } }, "lily": { - "total": 12305.857726656186, + "total": 9787.789085731169, "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 }, "slayer": { - "total": 1048.2839363756852 + "total": 1047.8763143104497 }, "catacombs": { "total": 448.2215690473853, @@ -14665,8 +15548,12 @@ "progress": 0 }, "highest_tier_completed": null, - "floors": {}, - "master_mode_floors": {} + "floors": { + + }, + "master_mode_floors": { + + } } }, "crimson": { @@ -14699,7 +15586,9 @@ } }, "trophy_fish": { - "rewards": [], + "rewards": [ + + ], "fish": { "BLOBFISH": 57, "BLOBFISH_BRONZE": 39, @@ -14793,6 +15682,32 @@ "VOLCANIC_STONEFISH_DIAMOND": 0 } }, + "enchanting": { + "enchanting": 0, + "experimentation": { + "simon": { + + }, + "pairings": { + + }, + "numbers": { + + }, + "claims_resets": 0, + "claims_resets_timestamp": "None" + } + }, + "farming": { + "farming": 0, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 0 + }, + "jacob": { + "talked": false + } + }, "mining": { "mining": 0, "mithril_powder": { @@ -14809,8 +15724,12 @@ "total": 0 }, "level": 0, - "perks": [], - "disabled_perks": [], + "perks": [ + + ], + "disabled_perks": [ + + ], "last_reset": null, "pickaxe_ability": null }, @@ -14821,7 +15740,9 @@ "name": "Jade Crystal", "id": "jade_crystal", "total_placed": 0, - "statues_placed": [], + "statues_placed": [ + + ], "state": "Not Found" }, { @@ -14833,7 +15754,9 @@ { "name": "Sapphire Crystal", "total_placed": 0, - "parts_delivered": [], + "parts_delivered": [ + + ], "state": "Not Found" }, { @@ -14858,7 +15781,9 @@ } ] }, - "forge": [] + "forge": [ + + ] }, "slayer": { "zombie": { @@ -14866,35 +15791,45 @@ "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "spider": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "wolf": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "enderman": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } }, "blaze": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } } }, "milestones": { @@ -14913,31 +15848,70 @@ }, "missing": null, "kills": { - "types": [] + "types": [ + + ] }, "deaths": { - "types": [] + "types": [ + + ] }, "armor": { - "helmet": {}, - "chestplate": {}, - "leggings": {}, - "boots": {} + "helmet": { + + }, + "chestplate": { + + }, + "leggings": { + + }, + "boots": { + + } }, "equipment": { - "necklace": [], - "cloak": [], - "belt": [], - "gloves": [] + "necklace": [ + + ], + "cloak": [ + + ], + "belt": [ + + ], + "gloves": [ + + ] + }, + "pets": { + "auto_pet": { + + }, + "pets": [ + + ] }, - "pets": [], "talismans": { - "common": [], - "uncommon": [], - "rare": [], - "epic": [], - "legendary": [], - "mythic": [] + "common": [ + + ], + "uncommon": [ + + ], + "rare": [ + + ], + "epic": [ + + ], + "legendary": [ + + ], + "mythic": [ + + ] }, "collections": [ { @@ -14947,7 +15921,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Carrot", @@ -14956,7 +15932,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cactus", @@ -14965,7 +15943,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Chicken", @@ -14974,7 +15954,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sugar Cane", @@ -14983,7 +15965,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pumpkin", @@ -14992,7 +15976,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Wheat", @@ -15001,7 +15987,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Seeds", @@ -15010,7 +15998,9 @@ "maxTiers": 6, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mushroom", @@ -15019,7 +16009,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Rabbit", @@ -15028,7 +16020,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Wart", @@ -15037,7 +16031,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mutton", @@ -15046,7 +16042,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Melon", @@ -15055,7 +16053,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Potato", @@ -15064,7 +16064,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Leather", @@ -15073,7 +16075,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Porkchop", @@ -15082,7 +16086,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Feather", @@ -15091,7 +16097,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lapis Lazuli", @@ -15100,7 +16108,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Redstone", @@ -15109,7 +16119,9 @@ "maxTiers": 16, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Coal", @@ -15118,7 +16130,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mycelium", @@ -15127,7 +16141,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "End Stone", @@ -15136,7 +16152,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Quartz", @@ -15145,7 +16163,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sand", @@ -15154,7 +16174,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Iron Ingot", @@ -15163,7 +16185,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gemstone", @@ -15172,7 +16196,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Obsidian", @@ -15181,7 +16207,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Diamond", @@ -15190,7 +16218,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cobblestone", @@ -15199,7 +16229,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Glowstone Dust", @@ -15208,7 +16240,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gold Ingot", @@ -15217,7 +16251,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gravel", @@ -15226,7 +16262,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Hard Stone", @@ -15235,7 +16273,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mithril", @@ -15244,7 +16284,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Emerald", @@ -15253,7 +16295,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Red Sand", @@ -15262,7 +16306,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ice", @@ -15271,7 +16317,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sulphur", @@ -15280,7 +16328,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Netherrack", @@ -15289,7 +16339,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ender Pearl", @@ -15298,7 +16350,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Chili Pepper", @@ -15307,7 +16361,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Slimeball", @@ -15316,7 +16372,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magma Cream", @@ -15325,7 +16383,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ghast Tear", @@ -15334,7 +16394,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gunpowder", @@ -15343,7 +16405,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Rotten Flesh", @@ -15352,7 +16416,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spider Eye", @@ -15361,7 +16427,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Bone", @@ -15370,7 +16438,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Blaze Rod", @@ -15379,7 +16449,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "String", @@ -15388,7 +16460,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Acacia Wood", @@ -15397,7 +16471,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spruce Wood", @@ -15406,7 +16482,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Jungle Wood", @@ -15415,7 +16493,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Birch Wood", @@ -15424,7 +16504,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Oak Wood", @@ -15433,7 +16515,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Dark Oak Wood", @@ -15442,7 +16526,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lily Pad", @@ -15451,7 +16537,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Shard", @@ -15460,7 +16548,9 @@ "maxTiers": 6, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ink Sac", @@ -15469,7 +16559,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Fish", @@ -15478,7 +16570,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pufferfish", @@ -15487,7 +16581,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clownfish", @@ -15496,7 +16592,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Salmon", @@ -15505,7 +16603,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magmafish", @@ -15514,7 +16614,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Crystals", @@ -15523,7 +16625,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clay", @@ -15532,7 +16636,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sponge", @@ -15541,7 +16647,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] } ], "minions": { @@ -15549,9 +16657,13 @@ "minionSlots": 5, "bonusSlots": 0, "nextSlot": 0, - "unlockedMinions": [] + "unlockedMinions": [ + + ] }, - "cakebag": [] + "cakebag": [ + + ] }, { "username": "Altpapier", @@ -15559,7 +16671,7 @@ "name": "Apple", "id": "e0f44fe475c9461aa9d9b0dc45088e71", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": false, "gamemode": "normal", @@ -15664,19 +16776,21 @@ } }, "networth": { - "total_networth": 39292.25, + "total_networth": 76481.25, "purse": 20690.25, "bank": 0, "types": { "inventory": { - "total": 18602, + "total": 55791, "top_items": [ { "id": "potion", "name": "Water Bottle", - "price": 13000, - "base": 13000, - "calculation": [], + "price": 50097, + "base": 50097, + "calculation": [ + + ], "count": 1 }, { @@ -15684,63 +16798,69 @@ "name": "Rogue Sword", "price": 5000, "base": 5000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, - { - "id": "wood", - "name": "Oak Wood Plank", - "price": 130, - "base": 130, - "calculation": [], - "count": 13 - }, { "id": "cobblestone", "name": "Cobblestone", - "price": 256, - "base": 128, - "calculation": [], + "price": 512, + "base": 256, + "calculation": [ + + ], "count": 128 }, - { - "id": "sapling", - "name": "Oak Sapling", - "price": 80, - "base": 80, - "calculation": [], - "count": 1 - }, { "id": "rotten_flesh", "name": "Rotten Flesh", - "price": 60, - "base": 60, - "calculation": [], + "price": 75, + "base": 75, + "calculation": [ + + ], "count": 15 }, { "id": "glowstone_dust", "name": "Glowstone Dust", - "price": 60, - "base": 60, - "calculation": [], + "price": 57, + "base": 57, + "calculation": [ + + ], "count": 3 }, { - "id": "stone_pickaxe", - "name": "Stone Pickaxe", - "price": 10, - "base": 10, - "calculation": [], - "count": 1 + "id": "wood", + "name": "Oak Wood Plank", + "price": 39, + "base": 39, + "calculation": [ + + ], + "count": 13 }, { "id": "cobblestone", "name": "Cobblestone", + "price": 4, + "base": 4, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "stone_pickaxe", + "name": "Stone Pickaxe", "price": 2, "base": 2, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -15748,7 +16868,9 @@ "name": "Glass Bottle", "price": 2, "base": 2, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -15756,8 +16878,20 @@ "name": "Stick", "price": 2, "base": 2, - "calculation": [], + "calculation": [ + + ], "count": 2 + }, + { + "id": "sapling", + "name": "Oak Sapling", + "price": 1, + "base": 1, + "calculation": [ + + ], + "count": 1 } ] } @@ -15958,14 +17092,14 @@ } }, "lily": { - "total": 12305.857726656186, + "total": 9787.789085731169, "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 }, "slayer": { - "total": 1048.2839363756852 + "total": 1047.8763143104497 }, "catacombs": { "total": 448.2215690473853, @@ -16846,7 +17980,9 @@ "mobs_killed": 0 } }, - "master_mode_floors": {} + "master_mode_floors": { + + } } }, "crimson": { @@ -16879,7 +18015,9 @@ } }, "trophy_fish": { - "rewards": [], + "rewards": [ + + ], "total_caught": 0, "fish": { "BLOBFISH": 57, @@ -16974,6 +18112,32 @@ "VOLCANIC_STONEFISH_DIAMOND": 0 } }, + "enchanting": { + "enchanting": 0, + "experimentation": { + "simon": { + + }, + "pairings": { + + }, + "numbers": { + + }, + "claims_resets": 0, + "claims_resets_timestamp": "None" + } + }, + "farming": { + "farming": 0, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 0 + }, + "jacob": { + "talked": false + } + }, "mining": { "mining": 1, "mithril_powder": { @@ -16990,8 +18154,12 @@ "total": 0 }, "level": 0, - "perks": [], - "disabled_perks": [], + "perks": [ + + ], + "disabled_perks": [ + + ], "last_reset": null, "pickaxe_ability": null }, @@ -17002,7 +18170,9 @@ "name": "Jade Crystal", "id": "jade_crystal", "total_placed": 0, - "statues_placed": [], + "statues_placed": [ + + ], "state": "Not Found" }, { @@ -17014,7 +18184,9 @@ { "name": "Sapphire Crystal", "total_placed": 0, - "parts_delivered": [], + "parts_delivered": [ + + ], "state": "Not Found" }, { @@ -17039,7 +18211,9 @@ } ] }, - "forge": [] + "forge": [ + + ] }, "slayer": { "zombie": { @@ -17047,35 +18221,45 @@ "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "spider": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "wolf": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "enderman": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } }, "blaze": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } } }, "milestones": { @@ -17138,27 +18322,62 @@ } ] }, - "armor": { - "helmet": {}, - "chestplate": {}, - "leggings": {}, - "boots": {} - }, - "equipment": { - "necklace": [], - "cloak": [], - "belt": [], - "gloves": [] - }, - "pets": [], - "talismans": { - "common": [], - "uncommon": [], - "rare": [], - "epic": [], - "legendary": [], - "mythic": [] - }, + "armor": { + "helmet": { + + }, + "chestplate": { + + }, + "leggings": { + + }, + "boots": { + + } + }, + "equipment": { + "necklace": [ + + ], + "cloak": [ + + ], + "belt": [ + + ], + "gloves": [ + + ] + }, + "pets": { + "auto_pet": { + + }, + "pets": [ + + ] + }, + "talismans": { + "common": [ + + ], + "uncommon": [ + + ], + "rare": [ + + ], + "epic": [ + + ], + "legendary": [ + + ], + "mythic": [ + + ] + }, "collections": [ { "name": "Cocoa Beans", @@ -17167,7 +18386,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Carrot", @@ -17176,7 +18397,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cactus", @@ -17185,7 +18408,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Chicken", @@ -17194,7 +18419,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sugar Cane", @@ -17203,7 +18430,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pumpkin", @@ -17212,7 +18441,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Wheat", @@ -17221,7 +18452,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Seeds", @@ -17244,7 +18477,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Rabbit", @@ -17253,7 +18488,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Wart", @@ -17262,7 +18499,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mutton", @@ -17271,7 +18510,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Melon", @@ -17280,7 +18521,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Potato", @@ -17289,7 +18532,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Leather", @@ -17298,7 +18543,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Porkchop", @@ -17307,7 +18554,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Feather", @@ -17316,7 +18565,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lapis Lazuli", @@ -17325,7 +18576,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Redstone", @@ -17334,7 +18587,9 @@ "maxTiers": 16, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Coal", @@ -17343,7 +18598,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mycelium", @@ -17352,7 +18609,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "End Stone", @@ -17361,7 +18620,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Quartz", @@ -17370,7 +18631,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sand", @@ -17379,7 +18642,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Iron Ingot", @@ -17388,7 +18653,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gemstone", @@ -17397,7 +18664,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Obsidian", @@ -17406,7 +18675,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Diamond", @@ -17415,7 +18686,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cobblestone", @@ -17438,7 +18711,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gold Ingot", @@ -17447,7 +18722,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gravel", @@ -17456,7 +18733,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Hard Stone", @@ -17465,7 +18744,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mithril", @@ -17474,7 +18755,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Emerald", @@ -17483,7 +18766,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Red Sand", @@ -17492,7 +18777,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ice", @@ -17501,7 +18788,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sulphur", @@ -17510,7 +18799,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Netherrack", @@ -17519,7 +18810,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ender Pearl", @@ -17528,7 +18821,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Chili Pepper", @@ -17537,7 +18832,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Slimeball", @@ -17546,7 +18843,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magma Cream", @@ -17555,7 +18854,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ghast Tear", @@ -17564,7 +18865,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gunpowder", @@ -17573,7 +18876,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Rotten Flesh", @@ -17596,7 +18901,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Bone", @@ -17605,7 +18912,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Blaze Rod", @@ -17614,7 +18923,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "String", @@ -17623,7 +18934,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Acacia Wood", @@ -17632,7 +18945,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spruce Wood", @@ -17641,7 +18956,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Jungle Wood", @@ -17650,7 +18967,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Birch Wood", @@ -17659,7 +18978,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Oak Wood", @@ -17682,7 +19003,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lily Pad", @@ -17691,7 +19014,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Shard", @@ -17700,7 +19025,9 @@ "maxTiers": 6, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ink Sac", @@ -17709,7 +19036,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Fish", @@ -17718,7 +19047,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pufferfish", @@ -17727,7 +19058,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clownfish", @@ -17736,7 +19069,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Salmon", @@ -17745,7 +19080,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magmafish", @@ -17754,7 +19091,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Crystals", @@ -17763,7 +19102,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clay", @@ -17772,7 +19113,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sponge", @@ -17781,7 +19124,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] } ], "minions": { @@ -17789,9 +19134,13 @@ "minionSlots": 5, "bonusSlots": 0, "nextSlot": 0, - "unlockedMinions": [] + "unlockedMinions": [ + + ] }, - "cakebag": [] + "cakebag": [ + + ] }, { "username": "Altpapier", @@ -17799,7 +19148,7 @@ "name": "Banana", "id": "f53645184dbc47c0a822a49cef146190", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": false, "gamemode": "island", @@ -18096,14 +19445,14 @@ } }, "lily": { - "total": 12305.857726656186, + "total": 9787.789085731169, "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 }, "slayer": { - "total": 1048.2839363756852 + "total": 1047.8763143104497 }, "catacombs": { "total": 448.2215690473853, @@ -18970,8 +20319,12 @@ "progress": 0 }, "highest_tier_completed": null, - "floors": {}, - "master_mode_floors": {} + "floors": { + + }, + "master_mode_floors": { + + } } }, "crimson": { @@ -19004,7 +20357,9 @@ } }, "trophy_fish": { - "rewards": [], + "rewards": [ + + ], "total_caught": 0, "fish": { "BLOBFISH": 57, @@ -19099,6 +20454,32 @@ "VOLCANIC_STONEFISH_DIAMOND": 0 } }, + "enchanting": { + "enchanting": 0, + "experimentation": { + "simon": { + + }, + "pairings": { + + }, + "numbers": { + + }, + "claims_resets": 0, + "claims_resets_timestamp": "None" + } + }, + "farming": { + "farming": 0, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 0 + }, + "jacob": { + "talked": false + } + }, "mining": { "mining": 0, "mithril_powder": { @@ -19115,8 +20496,12 @@ "total": 0 }, "level": 0, - "perks": [], - "disabled_perks": [], + "perks": [ + + ], + "disabled_perks": [ + + ], "last_reset": null, "pickaxe_ability": null }, @@ -19127,7 +20512,9 @@ "name": "Jade Crystal", "id": "jade_crystal", "total_placed": 0, - "statues_placed": [], + "statues_placed": [ + + ], "state": "Not Found" }, { @@ -19139,7 +20526,9 @@ { "name": "Sapphire Crystal", "total_placed": 0, - "parts_delivered": [], + "parts_delivered": [ + + ], "state": "Not Found" }, { @@ -19164,7 +20553,9 @@ } ] }, - "forge": [] + "forge": [ + + ] }, "slayer": { "zombie": { @@ -19172,35 +20563,45 @@ "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "spider": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "wolf": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "enderman": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } }, "blaze": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } } }, "milestones": { @@ -19219,31 +20620,70 @@ }, "missing": null, "kills": { - "types": [] + "types": [ + + ] }, "deaths": { - "types": [] + "types": [ + + ] }, "armor": { - "helmet": {}, - "chestplate": {}, - "leggings": {}, - "boots": {} + "helmet": { + + }, + "chestplate": { + + }, + "leggings": { + + }, + "boots": { + + } }, "equipment": { - "necklace": [], - "cloak": [], - "belt": [], - "gloves": [] + "necklace": [ + + ], + "cloak": [ + + ], + "belt": [ + + ], + "gloves": [ + + ] + }, + "pets": { + "auto_pet": { + + }, + "pets": [ + + ] }, - "pets": [], "talismans": { - "common": [], - "uncommon": [], - "rare": [], - "epic": [], - "legendary": [], - "mythic": [] + "common": [ + + ], + "uncommon": [ + + ], + "rare": [ + + ], + "epic": [ + + ], + "legendary": [ + + ], + "mythic": [ + + ] }, "collections": [ { @@ -19253,7 +20693,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Carrot", @@ -19262,7 +20704,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cactus", @@ -19271,7 +20715,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Chicken", @@ -19280,7 +20726,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sugar Cane", @@ -19289,7 +20737,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pumpkin", @@ -19298,7 +20748,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Wheat", @@ -19307,7 +20759,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Seeds", @@ -19316,7 +20770,9 @@ "maxTiers": 6, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mushroom", @@ -19325,7 +20781,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Rabbit", @@ -19334,7 +20792,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Wart", @@ -19343,7 +20803,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mutton", @@ -19352,7 +20814,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Melon", @@ -19361,7 +20825,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Potato", @@ -19370,7 +20836,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Leather", @@ -19379,7 +20847,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Porkchop", @@ -19388,7 +20858,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Feather", @@ -19397,7 +20869,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lapis Lazuli", @@ -19406,7 +20880,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Redstone", @@ -19415,7 +20891,9 @@ "maxTiers": 16, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Coal", @@ -19424,7 +20902,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mycelium", @@ -19433,7 +20913,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "End Stone", @@ -19442,7 +20924,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Quartz", @@ -19451,7 +20935,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sand", @@ -19460,7 +20946,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Iron Ingot", @@ -19469,7 +20957,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gemstone", @@ -19478,7 +20968,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Obsidian", @@ -19487,7 +20979,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Diamond", @@ -19496,7 +20990,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Cobblestone", @@ -19505,7 +21001,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Glowstone Dust", @@ -19514,7 +21012,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gold Ingot", @@ -19523,7 +21023,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gravel", @@ -19532,7 +21034,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Hard Stone", @@ -19541,7 +21045,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mithril", @@ -19550,7 +21056,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Emerald", @@ -19559,7 +21067,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Red Sand", @@ -19568,7 +21078,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ice", @@ -19577,7 +21089,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sulphur", @@ -19586,7 +21100,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Netherrack", @@ -19595,7 +21111,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ender Pearl", @@ -19604,7 +21122,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Chili Pepper", @@ -19613,7 +21133,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Slimeball", @@ -19622,7 +21144,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magma Cream", @@ -19631,7 +21155,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ghast Tear", @@ -19640,7 +21166,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gunpowder", @@ -19649,7 +21177,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Rotten Flesh", @@ -19658,7 +21188,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spider Eye", @@ -19667,7 +21199,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Bone", @@ -19676,7 +21210,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Blaze Rod", @@ -19685,7 +21221,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "String", @@ -19694,7 +21232,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Acacia Wood", @@ -19703,7 +21243,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spruce Wood", @@ -19712,7 +21254,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Jungle Wood", @@ -19721,7 +21265,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Birch Wood", @@ -19730,7 +21276,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Oak Wood", @@ -19739,7 +21287,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Dark Oak Wood", @@ -19748,7 +21298,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lily Pad", @@ -19757,7 +21309,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Shard", @@ -19766,7 +21320,9 @@ "maxTiers": 6, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ink Sac", @@ -19775,7 +21331,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Fish", @@ -19784,7 +21342,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Pufferfish", @@ -19793,7 +21353,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clownfish", @@ -19802,7 +21364,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Salmon", @@ -19811,7 +21375,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Magmafish", @@ -19820,7 +21386,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Crystals", @@ -19829,7 +21397,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Clay", @@ -19838,7 +21408,9 @@ "maxTiers": 5, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sponge", @@ -19847,7 +21419,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] } ], "minions": { @@ -19855,9 +21429,13 @@ "minionSlots": 5, "bonusSlots": 0, "nextSlot": 0, - "unlockedMinions": [] + "unlockedMinions": [ + + ] }, - "cakebag": [] + "cakebag": [ + + ] }, { "username": "Altpapier", @@ -19865,7 +21443,7 @@ "name": "Coconut", "id": "d2996eb20dd5497893a350634d18f3b8", "rank": "§b[MVP§9+§b]", - "hypixelLevel": 147.35752567021785, + "hypixelLevel": 147.3630614928175, "karma": 25393155, "isIronman": false, "gamemode": "bingo", @@ -19976,26 +21554,28 @@ } }, "networth": { - "total_networth": 2228314.8193359375, + "total_networth": 2712524.8193359375, "purse": 58893.81933593748, "bank": 0, "types": { "armor": { - "total": 124999, + "total": 132303, "top_items": [ { "id": "glacite_helmet", "name": "Fierce Glacite Helmet", - "price": 39999, - "base": 39999, - "calculation": [], + "price": 42299, + "base": 42299, + "calculation": [ + + ], "count": 1 }, { "id": "glacite_boots", "name": "Fierce Glacite Boots", - "price": 35000, - "base": 35000, + "price": 37400, + "base": 37400, "calculation": [ { "type": "protection_5", @@ -20011,16 +21591,18 @@ { "id": "glacite_chestplate", "name": "Fierce Glacite Chestplate", - "price": 30000, - "base": 30000, - "calculation": [], + "price": 34999, + "base": 34999, + "calculation": [ + + ], "count": 1 }, { "id": "glacite_leggings", "name": "Fierce Glacite Leggings", - "price": 20000, - "base": 20000, + "price": 17605, + "base": 17605, "calculation": [ { "type": "protection_5", @@ -20036,151 +21618,342 @@ ] }, "inventory": { - "total": 486537, + "total": 392092, + "top_items": [ + { + "id": "enchanted_rabbit_hide", + "name": "Enchanted Rabbit Hide", + "price": 208782, + "base": 208782, + "calculation": [ + + ], + "count": 14 + }, + { + "id": "enchanted_rabbit_foot", + "name": "Enchanted Rabbit Foot", + "price": 79509, + "base": 79509, + "calculation": [ + + ], + "count": 51 + }, + { + "id": "enchanted_rabbit", + "name": "Enchanted Raw Rabbit", + "price": 91872, + "base": 40832, + "calculation": [ + + ], + "count": 144 + }, + { + "id": "rabbit_hide", + "name": "Rabbit Hide", + "price": 8096, + "base": 1472, + "calculation": [ + + ], + "count": 352 + }, + { + "id": "rabbit_foot", + "name": "Rabbit's Foot", + "price": 2048, + "base": 512, + "calculation": [ + + ], + "count": 256 + }, + { + "id": "rabbit", + "name": "Raw Rabbit", + "price": 1617, + "base": 448, + "calculation": [ + + ], + "count": 231 + }, + { + "id": "rabbit_foot", + "name": "Rabbit's Foot", + "price": 128, + "base": 128, + "calculation": [ + + ], + "count": 16 + }, + { + "id": "cleaver", + "name": "Cleaver", + "price": 40, + "base": 40, + "calculation": [ + { + "type": "ender_slayer_5", + "value": 0 + }, + { + "type": "giant_killer_5", + "value": 0 + }, + { + "type": "first_strike_4", + "value": 0 + }, + { + "type": "sharpness_5", + "value": 0 + }, + { + "type": "cubism_5", + "value": 0 + } + ], + "count": 1 + } + ] + }, + "enderchest": { + "total": 1676941, "top_items": [ { - "id": "enchanted_rabbit_hide", - "name": "Enchanted Rabbit Hide", - "price": 217084, - "base": 217084, - "calculation": [], - "count": 14 + "id": "ember_boots", + "name": "Ember Boots", + "price": 290000, + "base": 290000, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "glacite_jewel", + "name": "Glacite Jewel", + "price": 283728, + "base": 283728, + "calculation": [ + + ], + "count": 2 + }, + { + "id": "rune", + "name": "◆ Blood Rune I", + "price": 142500, + "base": 142500, + "calculation": [ + + ], + "count": 3 + }, + { + "id": "pet_item_combat_skill_boost_uncommon", + "name": "Combat Exp Boost", + "price": 99499, + "base": 99499, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Snow Rune I", + "price": 95000, + "base": 95000, + "calculation": [ + + ], + "count": 2 + }, + { + "id": "raw_chicken", + "name": "Raw Chicken", + "price": 126336, + "base": 63168, + "calculation": [ + + ], + "count": 128 + }, + { + "id": "enchanted_magma_cream", + "name": "Enchanted Magma Cream", + "price": 50544, + "base": 50544, + "calculation": [ + + ], + "count": 39 + }, + { + "id": "rune", + "name": "◆ Rainbow Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Hot Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Hearts Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Sparkling Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rune", + "name": "◆ Lava Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_rabbit_foot", - "name": "Enchanted Rabbit Foot", - "price": 85629, - "base": 85629, - "calculation": [], - "count": 51 + "id": "rune", + "name": "◆ Zap Rune I", + "price": 47500, + "base": 47500, + "calculation": [ + + ], + "count": 1 }, { - "id": "enchanted_rabbit", - "name": "Enchanted Raw Rabbit", - "price": 170496, - "base": 75776, - "calculation": [], - "count": 144 + "id": "mithril_coat", + "name": "Mithril Coat", + "price": 45000, + "base": 45000, + "calculation": [ + + ], + "count": 1 }, { - "id": "rabbit_hide", - "name": "Rabbit Hide", - "price": 8448, - "base": 1536, - "calculation": [], - "count": 352 + "id": "glacite_helmet", + "name": "Glacite Helmet", + "price": 84598, + "base": 42299, + "calculation": [ + + ], + "count": 2 }, { - "id": "rabbit_foot", - "name": "Rabbit's Foot", - "price": 2816, - "base": 704, - "calculation": [], - "count": 256 + "id": "glacite_chestplate", + "name": "Glacite Chestplate", + "price": 69998, + "base": 34999, + "calculation": [ + + ], + "count": 2 }, { - "id": "rabbit", - "name": "Raw Rabbit", - "price": 1848, - "base": 512, - "calculation": [], - "count": 231 + "id": "raw_chicken", + "name": "Raw Chicken", + "price": 27636, + "base": 27636, + "calculation": [ + + ], + "count": 28 }, { - "id": "rabbit_foot", - "name": "Rabbit's Foot", - "price": 176, - "base": 176, - "calculation": [], - "count": 16 + "id": "glacite_leggings", + "name": "Glacite Leggings", + "price": 17605, + "base": 17605, + "calculation": [ + + ], + "count": 1 }, { - "id": "cleaver", - "name": "Cleaver", - "price": 40, - "base": 40, + "id": "crypt_dreadlord_sword", + "name": "Sharp Dreadlord Sword", + "price": 9238, + "base": 9238, "calculation": [ { - "type": "ender_slayer_5", - "value": 0 - }, - { - "type": "giant_killer_5", + "type": "first_strike_4", "value": 0 }, { - "type": "first_strike_4", + "type": "sharpness_5", "value": 0 }, { - "type": "sharpness_5", + "type": "scavenger_5", "value": 0 }, { - "type": "cubism_5", + "type": "giant_killer_5", "value": 0 } ], "count": 1 - } - ] - }, - "enderchest": { - "total": 973112, - "top_items": [ - { - "id": "ember_boots", - "name": "Ember Boots", - "price": 500000, - "base": 500000, - "calculation": [], - "count": 1 - }, - { - "id": "pet_item_combat_skill_boost_uncommon", - "name": "Combat Exp Boost", - "price": 90000, - "base": 90000, - "calculation": [], - "count": 1 - }, - { - "id": "enchanted_magma_cream", - "name": "Enchanted Magma Cream", - "price": 56277, - "base": 56277, - "calculation": [], - "count": 39 }, { - "id": "mithril_coat", - "name": "Mithril Coat", - "price": 55000, - "base": 55000, - "calculation": [], + "id": "undead_catalyst", + "name": "Undead Catalyst", + "price": 7000, + "base": 7000, + "calculation": [ + + ], "count": 1 }, { - "id": "glacite_helmet", - "name": "Glacite Helmet", - "price": 79998, - "base": 39999, - "calculation": [], - "count": 2 - }, - { - "id": "glacite_chestplate", - "name": "Glacite Chestplate", - "price": 60000, - "base": 30000, - "calculation": [], - "count": 2 + "id": "pork", + "name": "Raw Porkchop", + "price": 8832, + "base": 4416, + "calculation": [ + + ], + "count": 128 }, { "id": "squire_chestplate", "name": "Squire Chestplate", - "price": 20000, - "base": 20000, + "price": 4000, + "base": 4000, "calculation": [ { "type": "growth_5", @@ -20190,18 +21963,20 @@ "count": 1 }, { - "id": "glacite_leggings", - "name": "Glacite Leggings", - "price": 20000, - "base": 20000, - "calculation": [], - "count": 1 + "id": "pork", + "name": "Raw Porkchop", + "price": 3588, + "base": 3588, + "calculation": [ + + ], + "count": 52 }, { "id": "squire_leggings", "name": "Squire Leggings", - "price": 12000, - "base": 12000, + "price": 3500, + "base": 3500, "calculation": [ { "type": "growth_5", @@ -20211,14 +21986,28 @@ "count": 1 }, { - "id": "squire_boots", - "name": "Squire Boots", - "price": 10000, - "base": 10000, + "id": "goblin_boots", + "name": "Goblin Boots", + "price": 3500, + "base": 3500, + "calculation": [ + + ], + "count": 1 + }, + { + "id": "rosetta_helmet", + "name": "Mythic Rosetta's Helmet", + "price": 2630, + "base": 2630, "calculation": [ { "type": "growth_5", "value": 0 + }, + { + "type": "protection_5", + "value": 0 } ], "count": 1 @@ -20226,8 +22015,8 @@ { "id": "squire_helmet", "name": "Squire Helmet", - "price": 10000, - "base": 10000, + "price": 2500, + "base": 2500, "calculation": [ { "type": "growth_5", @@ -20237,99 +22026,43 @@ "count": 1 }, { - "id": "molten_cube", - "name": "Molten Cube", - "price": 26997, - "base": 8999, - "calculation": [], - "count": 3 - }, - { - "id": "glacite_jewel", - "name": "Glacite Jewel", - "price": 8000, - "base": 8000, - "calculation": [], - "count": 2 - }, - { - "id": "crypt_dreadlord_sword", - "name": "Sharp Dreadlord Sword", - "price": 5284, - "base": 5284, + "id": "squire_boots", + "name": "Squire Boots", + "price": 2000, + "base": 2000, "calculation": [ { - "type": "first_strike_4", - "value": 0 - }, - { - "type": "sharpness_5", - "value": 0 - }, - { - "type": "scavenger_5", - "value": 0 - }, - { - "type": "giant_killer_5", + "type": "growth_5", "value": 0 } ], "count": 1 }, - { - "id": "goblin_boots", - "name": "Goblin Boots", - "price": 4000, - "base": 4000, - "calculation": [], - "count": 1 - }, - { - "id": "undead_catalyst", - "name": "Undead Catalyst", - "price": 3000, - "base": 3000, - "calculation": [], - "count": 1 - }, { "id": "enchanted_magma_cream", "name": "Enchanted Magma Cream", - "price": 1443, - "base": 1443, - "calculation": [], + "price": 1296, + "base": 1296, + "calculation": [ + + ], "count": 1 }, { "id": "ink_sack", "name": "Ink Sack", - "price": 1336, - "base": 1336, - "calculation": [], + "price": 1260, + "base": 1260, + "calculation": [ + + ], "count": 2 }, - { - "id": "revenant_flesh", - "name": "Revenant Flesh", - "price": 896, - "base": 896, - "calculation": [], - "count": 64 - }, - { - "id": "pork", - "name": "Raw Porkchop", - "price": 1408, - "base": 704, - "calculation": [], - "count": 128 - }, { "id": "rosetta_chestplate", "name": "Pure Rosetta's Chestplate", - "price": 700, - "base": 700, + "price": 1060, + "base": 1060, "calculation": [ { "type": "growth_5", @@ -20343,85 +22076,97 @@ "count": 1 }, { - "id": "pork", - "name": "Raw Porkchop", - "price": 572, - "base": 572, - "calculation": [], - "count": 52 + "id": "magma_cream", + "name": "Magma Cream", + "price": 3040, + "base": 1024, + "calculation": [ + + ], + "count": 190 }, { - "id": "revenant_flesh", - "name": "Revenant Flesh", - "price": 546, - "base": 546, - "calculation": [], - "count": 39 + "id": "molten_cube", + "name": "Molten Cube", + "price": 2376, + "base": 792, + "calculation": [ + + ], + "count": 3 }, { - "id": "rosetta_helmet", - "name": "Mythic Rosetta's Helmet", - "price": 526, - "base": 526, + "id": "raw_beef", + "name": "Raw Beef", + "price": 448, + "base": 448, "calculation": [ - { - "type": "growth_5", - "value": 0 - }, - { - "type": "protection_5", - "value": 0 - } + ], - "count": 1 + "count": 64 }, { - "id": "magma_cream", - "name": "Magma Cream", - "price": 1520, - "base": 512, - "calculation": [], - "count": 190 + "id": "feather", + "name": "Feather", + "price": 448, + "base": 448, + "calculation": [ + + ], + "count": 64 + }, + { + "id": "raw_beef", + "name": "Raw Beef", + "price": 350, + "base": 350, + "calculation": [ + + ], + "count": 50 }, { - "id": "raw_chicken", - "name": "Raw Chicken", - "price": 896, - "base": 448, - "calculation": [], - "count": 128 + "id": "feather", + "name": "Feather", + "price": 343, + "base": 343, + "calculation": [ + + ], + "count": 49 }, { "id": "water_lily", "name": "Lily Pad", - "price": 339, - "base": 339, - "calculation": [], + "price": 324, + "base": 324, + "calculation": [ + + ], "count": 3 }, { - "id": "raw_beef", - "name": "Raw Beef", - "price": 570, - "base": 320, - "calculation": [], - "count": 114 - }, - { - "id": "raw_fish", - "name": "Raw Fish", - "price": 216, - "base": 216, - "calculation": [], - "count": 9 + "id": "cobblestone", + "name": "Cobblestone", + "price": 256, + "base": 256, + "calculation": [ + + ], + "count": 64 }, { - "id": "raw_chicken", - "name": "Raw Chicken", - "price": 196, - "base": 196, - "calculation": [], - "count": 28 + "id": "sweet_axe", + "name": "Sweet Axe", + "price": 200, + "base": 200, + "calculation": [ + { + "type": "efficiency_5", + "value": 0 + } + ], + "count": 1 }, { "id": "gold_hoe", @@ -20436,84 +22181,94 @@ ], "count": 1 }, - { - "id": "wood", - "name": "Oak Wood Plank", - "price": 180, - "base": 180, - "calculation": [], - "count": 18 - }, { "id": "cobblestone", "name": "Cobblestone", - "price": 128, - "base": 128, - "calculation": [], - "count": 64 + "price": 164, + "base": 164, + "calculation": [ + + ], + "count": 41 }, { - "id": "feather", - "name": "Feather", - "price": 128, - "base": 128, - "calculation": [], - "count": 64 + "id": "raw_fish", + "name": "Raw Fish", + "price": 153, + "base": 153, + "calculation": [ + + ], + "count": 9 }, { "id": "rotten_flesh", "name": "Rotten Flesh", - "price": 108, - "base": 108, - "calculation": [], + "price": 135, + "base": 135, + "calculation": [ + + ], "count": 27 }, - { - "id": "feather", - "name": "Feather", - "price": 98, - "base": 98, - "calculation": [], - "count": 49 - }, - { - "id": "cobblestone", - "name": "Cobblestone", - "price": 82, - "base": 82, - "calculation": [], - "count": 41 - }, { "id": "bone", "name": "Bone", - "price": 72, - "base": 72, - "calculation": [], + "price": 96, + "base": 96, + "calculation": [ + + ], "count": 24 }, { - "id": "ghast_tear", - "name": "Ghast Tear", - "price": 136, - "base": 68, - "calculation": [], - "count": 2 + "id": "feather", + "name": "Feather", + "price": 70, + "base": 70, + "calculation": [ + + ], + "count": 10 + }, + { + "id": "revenant_flesh", + "name": "Revenant Flesh", + "price": 64, + "base": 64, + "calculation": [ + + ], + "count": 64 }, { "id": "wheat", "name": "Wheat", - "price": 40, - "base": 40, - "calculation": [], + "price": 60, + "base": 60, + "calculation": [ + + ], "count": 20 }, { - "id": "raw_fish:2", - "name": "Clownfish", - "price": 40, - "base": 40, - "calculation": [], + "id": "wood", + "name": "Oak Wood Plank", + "price": 54, + "base": 54, + "calculation": [ + + ], + "count": 18 + }, + { + "id": "ghast_tear", + "name": "Ghast Tear", + "price": 84, + "base": 42, + "calculation": [ + + ], "count": 2 }, { @@ -20521,35 +22276,46 @@ "name": "Gold Ingot", "price": 40, "base": 40, - "calculation": [], + "calculation": [ + + ], "count": 10 }, { "id": "ink_sack:4", "name": "Lapis Lazuli", - "price": 30, - "base": 30, - "calculation": [], + "price": 40, + "base": 40, + "calculation": [ + + ], "count": 10 }, { - "id": "sweet_axe", - "name": "Sweet Axe", - "price": 25, - "base": 25, + "id": "revenant_flesh", + "name": "Revenant Flesh", + "price": 39, + "base": 39, "calculation": [ - { - "type": "efficiency_5", - "value": 0 - } + ], - "count": 1 + "count": 39 + }, + { + "id": "raw_fish:2", + "name": "Clownfish", + "price": 38, + "base": 38, + "calculation": [ + + ], + "count": 2 }, { "id": "gold_pickaxe", "name": "Golden Pickaxe", - "price": 22, - "base": 22, + "price": 35, + "base": 35, "calculation": [ { "type": "efficiency_5", @@ -20561,8 +22327,8 @@ { "id": "iron_pickaxe", "name": "Iron Pickaxe", - "price": 20, - "base": 20, + "price": 25, + "base": 25, "calculation": [ { "type": "efficiency_5", @@ -20576,23 +22342,19 @@ "name": "Raw Salmon", "price": 20, "base": 20, - "calculation": [], + "calculation": [ + + ], "count": 2 }, - { - "id": "feather", - "name": "Feather", - "price": 20, - "base": 20, - "calculation": [], - "count": 10 - }, { "id": "rabbit", "name": "Raw Rabbit", - "price": 8, - "base": 8, - "calculation": [], + "price": 7, + "base": 7, + "calculation": [ + + ], "count": 1 }, { @@ -20600,89 +22362,29 @@ "name": "Clay", "price": 3, "base": 3, - "calculation": [], + "calculation": [ + + ], "count": 1 }, - { - "id": "rune", - "name": "◆ Blood Rune I", - "price": 3, - "base": 3, - "calculation": [], - "count": 3 - }, - { - "id": "rune", - "name": "◆ Snow Rune I", - "price": 2, - "base": 2, - "calculation": [], - "count": 2 - }, { "id": "stick", "name": "Stick", "price": 1, "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Rainbow Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Hot Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Hearts Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Sparkling Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Lava Rune I", - "price": 1, - "base": 1, - "calculation": [], - "count": 1 - }, - { - "id": "rune", - "name": "◆ Zap Rune I", - "price": 1, - "base": 1, - "calculation": [], + "calculation": [ + + ], "count": 1 } ] }, "pets": { - "total": 579273, + "total": 446495, "top_items": [ { "name": "[Lvl 58] Common Griffin", - "price": 359273, + "price": 186495, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -20690,7 +22392,7 @@ }, { "name": "[Lvl 1] Uncommon Monkey", - "price": 150000, + "price": 180000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -20698,7 +22400,7 @@ }, { "name": "[Lvl 1] Uncommon Rock", - "price": 50000, + "price": 55000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -20706,7 +22408,7 @@ }, { "name": "[Lvl 1] Common Dolphin", - "price": 20000, + "price": 25000, "heldItem": null, "candyUsed": 0, "isPet": true, @@ -20715,14 +22417,16 @@ ] }, "talismans": { - "total": 5500, + "total": 5800, "top_items": [ { "id": "magnetic_talisman", "name": "Magnetic Talisman", "price": 2000, "base": 2000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -20730,15 +22434,19 @@ "name": "Hurtful Mine Affinity Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { - "id": "intimidation_talisman", - "name": "Intimidation Talisman", + "id": "village_talisman", + "name": "Hurtful Village Affinity Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -20746,7 +22454,19 @@ "name": "Scavenger Talisman", "price": 1000, "base": 1000, - "calculation": [], + "calculation": [ + + ], + "count": 1 + }, + { + "id": "intimidation_talisman", + "name": "Intimidation Talisman", + "price": 500, + "base": 500, + "calculation": [ + + ], "count": 1 }, { @@ -20754,15 +22474,9 @@ "name": "Hurtful Skeleton Talisman", "price": 250, "base": 250, - "calculation": [], - "count": 1 - }, - { - "id": "village_talisman", - "name": "Hurtful Village Affinity Talisman", - "price": 200, - "base": 200, - "calculation": [], + "calculation": [ + + ], "count": 1 }, { @@ -20770,7 +22484,9 @@ "name": "Hurtful Zombie Talisman", "price": 50, "base": 50, - "calculation": [], + "calculation": [ + + ], "count": 1 } ] @@ -20972,14 +22688,14 @@ } }, "lily": { - "total": 12305.857726656186, + "total": 9787.789085731169, "skills": { - "total": 10809.352221233115, - "base": 10667.89799008205, - "overflow": 141.4542311510656 + "total": 8291.691202373333, + "base": 8253.723447000028, + "overflow": 37.96775537330602 }, "slayer": { - "total": 1048.2839363756852 + "total": 1047.8763143104497 }, "catacombs": { "total": 448.2215690473853, @@ -21887,7 +23603,9 @@ "mobs_killed": 0 } }, - "master_mode_floors": {} + "master_mode_floors": { + + } } }, "crimson": { @@ -21920,7 +23638,9 @@ } }, "trophy_fish": { - "rewards": [], + "rewards": [ + + ], "total_caught": 0, "fish": { "BLOBFISH": 57, @@ -22015,6 +23735,212 @@ "VOLCANIC_STONEFISH_DIAMOND": 0 } }, + "enchanting": { + "enchanting": 21, + "experimentation": { + "simon": { + "last_attempt": 1638886720921, + "attempts_0": 3, + "bonus_clicks": 0, + "last_claimed": 1638886723122, + "claims_0": 3, + "best_score_0": 12 + }, + "pairings": { + "last_claimed": 1638886725690, + "claims_0": 2, + "best_score_0": 3, + "claims_1": 3, + "best_score_1": 3 + }, + "numbers": { + + } + } + }, + "farming": { + "farming": 16, + "trapper_quest": { + "last_task_time": "None", + "pelt_count": 0 + }, + "jacob": { + "talked": true, + "medals": { + "bronze": 0, + "silver": 1, + "gold": 0 + }, + "total_badges": { + "bronze": 0, + "silver": 1, + "gold": 0 + }, + "perks": { + "double_drops": 0, + "farming_level_cap": 0 + }, + "unique_golds": 0, + "crops": { + "CARROT_ITEM": { + "name": "Carrot", + "participated": true, + "unique_gold": false, + "contests": 13, + "personal_best": 261318, + "badges": { + "gold": 0, + "silver": 5, + "bronze": 2 + } + }, + "CACTUS": { + "name": "Cactus", + "participated": true, + "unique_gold": false, + "contests": 3, + "personal_best": 2759, + "badges": { + "gold": 0, + "silver": 1, + "bronze": 0 + } + }, + "INK_SACK:3": { + "name": "Cocoa Beans", + "participated": false, + "unique_gold": false, + "contests": 0, + "personal_best": 0, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } + }, + "MELON": { + "name": "Melon", + "participated": true, + "unique_gold": false, + "contests": 1, + "personal_best": 49, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } + }, + "MUSHROOM_COLLECTION": { + "name": "Mushroom", + "participated": true, + "unique_gold": false, + "contests": 6, + "personal_best": 28, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } + }, + "NETHER_STALK": { + "name": "Nether Wart", + "participated": true, + "unique_gold": false, + "contests": 9, + "personal_best": 157777, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 4 + } + }, + "POTATO_ITEM": { + "name": "Potato", + "participated": true, + "unique_gold": false, + "contests": 4, + "personal_best": 280, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 0 + } + }, + "PUMPKIN": { + "name": "Pumpkin", + "participated": true, + "unique_gold": false, + "contests": 2, + "personal_best": 10380, + "badges": { + "gold": 0, + "silver": 0, + "bronze": 1 + } + }, + "SUGAR_CANE": { + "name": "Sugar Cane", + "participated": true, + "unique_gold": true, + "contests": 23, + "personal_best": 260821, + "badges": { + "gold": 4, + "silver": 7, + "bronze": 3 + } + }, + "WHEAT": { + "name": "Wheat", + "participated": true, + "unique_gold": false, + "contests": 7, + "personal_best": 62011, + "badges": { + "gold": 0, + "silver": 3, + "bronze": 3 + } + } + }, + "contests": { + "attended_contests": 3, + "all_contests": [ + { + "date": "12_18_174", + "crop": "WHEAT", + "collected": 8525, + "claimed": true, + "medal": "silver", + "placing": { + "position": 236, + "percentage": 11.20607787274454 + } + }, + { + "date": "7_5_175", + "crop": "SUGAR_CANE", + "collected": 1, + "claimed": false, + "medal": null, + "placing": { + + } + }, + { + "date": "7_17_175", + "crop": "WHEAT", + "collected": 20, + "claimed": false, + "medal": null, + "placing": { + + } + } + ] + } + } + }, "mining": { "mining": 23, "mithril_powder": { @@ -22063,7 +23989,9 @@ "maxLevel": 45 } ], - "disabled_perks": [], + "disabled_perks": [ + + ], "last_reset": null, "pickaxe_ability": "Mining Speed Boost" }, @@ -22074,7 +24002,9 @@ "name": "Jade Crystal", "id": "jade_crystal", "total_placed": 0, - "statues_placed": [], + "statues_placed": [ + + ], "state": "Found" }, { @@ -22086,7 +24016,9 @@ { "name": "Sapphire Crystal", "total_placed": 0, - "parts_delivered": [], + "parts_delivered": [ + + ], "state": "Not Found" }, { @@ -22111,7 +24043,9 @@ } ] }, - "forge": [] + "forge": [ + + ] }, "slayer": { "zombie": { @@ -22132,28 +24066,36 @@ "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "wolf": { "xp": 0, "level": 0, "xpForNext": 5, "progress": 0, - "kills": {} + "kills": { + + } }, "enderman": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } }, "blaze": { "xp": 0, "level": 0, "xpForNext": 10, "progress": 0, - "kills": {} + "kills": { + + } } }, "milestones": { @@ -22354,28 +24296,16 @@ "price": null }, { - "name": "Wolf Talisman", - "rarity": "common", - "id": "WOLF_TALISMAN", - "price": 50 - }, - { - "name": "Talisman of Coins", - "rarity": "common", - "id": "COIN_TALISMAN", - "price": 70 - }, - { - "name": "Vaccine Talisman", + "name": "Farming Talisman", "rarity": "common", - "id": "VACCINE_TALISMAN", - "price": 110 + "id": "FARMING_TALISMAN", + "price": 25 }, { - "name": "Speed Talisman", - "rarity": "common", - "id": "SPEED_TALISMAN", - "price": 110 + "name": "Spider Talisman", + "rarity": "uncommon", + "id": "SPIDER_TALISMAN", + "price": 50 }, { "name": "Dante Talisman", @@ -22384,16 +24314,22 @@ "price": 110 }, { - "name": "Farming Talisman", + "name": "Feather Talisman", "rarity": "common", - "id": "FARMING_TALISMAN", - "price": 125 + "id": "FEATHER_TALISMAN", + "price": 160 }, { - "name": "Spider Talisman", + "name": "Soulflow Pile", "rarity": "uncommon", - "id": "SPIDER_TALISMAN", - "price": 250 + "id": "SOULFLOW_PILE", + "price": 160 + }, + { + "name": "Speed Talisman", + "rarity": "common", + "id": "SPEED_TALISMAN", + "price": 550 }, { "name": "Wood Affinity Talisman", @@ -22402,16 +24338,10 @@ "price": 800 }, { - "name": "Feather Talisman", - "rarity": "common", - "id": "FEATHER_TALISMAN", - "price": 800 - }, - { - "name": "Soulflow Pile", + "name": "Gravity Talisman", "rarity": "uncommon", - "id": "SOULFLOW_PILE", - "price": 800 + "id": "GRAVITY_TALISMAN", + "price": 864 }, { "name": "Sea Creature Talisman", @@ -22426,10 +24356,16 @@ "price": 960 }, { - "name": "Gravity Talisman", - "rarity": "uncommon", - "id": "GRAVITY_TALISMAN", - "price": 4320 + "name": "Night Vision Charm", + "rarity": "common", + "id": "NIGHT_VISION_CHARM", + "price": 2500 + }, + { + "name": "Talisman of Coins", + "rarity": "common", + "id": "COIN_TALISMAN", + "price": 2578 }, { "name": "Frozen Chicken", @@ -22453,7 +24389,13 @@ "name": "Feather Ring", "rarity": "uncommon", "id": "FEATHER_RING", - "price": 8000 + "price": 9000 + }, + { + "name": "Raggedy Shark Tooth Necklace", + "rarity": "common", + "id": "RAGGEDY_SHARK_TOOTH_NECKLACE", + "price": 9000 }, { "name": "Farmer Orb", @@ -22461,6 +24403,12 @@ "id": "FARMER_ORB", "price": 9500 }, + { + "name": "Dull Shark Tooth Necklace", + "rarity": "uncommon", + "id": "DULL_SHARK_TOOTH_NECKLACE", + "price": 10000 + }, { "name": "Potion Affinity Ring", "rarity": "uncommon", @@ -22468,34 +24416,22 @@ "price": 10500 }, { - "name": "Night Vision Charm", - "rarity": "common", - "id": "NIGHT_VISION_CHARM", - "price": 12000 - }, - { - "name": "Dull Shark Tooth Necklace", + "name": "Zombie Ring", "rarity": "uncommon", - "id": "DULL_SHARK_TOOTH_NECKLACE", - "price": 14999 - }, - { - "name": "Raggedy Shark Tooth Necklace", - "rarity": "common", - "id": "RAGGEDY_SHARK_TOOTH_NECKLACE", - "price": 15000 + "id": "ZOMBIE_RING", + "price": 13500 }, { "name": "Red Claw Talisman", "rarity": "uncommon", "id": "RED_CLAW_TALISMAN", - "price": 20000 + "price": 19750 }, { - "name": "Zombie Ring", - "rarity": "uncommon", - "id": "ZOMBIE_RING", - "price": 27000 + "name": "Vaccine Talisman", + "rarity": "common", + "id": "VACCINE_TALISMAN", + "price": 25012 }, { "name": "Lava Talisman", @@ -22503,34 +24439,22 @@ "id": "LAVA_TALISMAN", "price": 29000 }, - { - "name": "Candy Talisman", - "rarity": "uncommon", - "id": "CANDY_TALISMAN", - "price": 30000 - }, - { - "name": "Fire Talisman", - "rarity": "common", - "id": "FIRE_TALISMAN", - "price": 32400 - }, { "name": "Emerald Ring", "rarity": "uncommon", "id": "EMERALD_RING", - "price": 38000 + "price": 35000 }, { - "name": "Pig's Foot", + "name": "Fish Affinity Talisman", "rarity": "rare", - "id": "PIGS_FOOT", - "price": 40000 + "id": "FISH_AFFINITY_TALISMAN", + "price": 35315 }, { - "name": "Honed Shark Tooth Necklace", + "name": "Pig's Foot", "rarity": "rare", - "id": "HONED_SHARK_TOOTH_NECKLACE", + "id": "PIGS_FOOT", "price": 40000 }, { @@ -22540,88 +24464,82 @@ "price": 40000 }, { - "name": "Fish Affinity Talisman", + "name": "Honed Shark Tooth Necklace", "rarity": "rare", - "id": "FISH_AFFINITY_TALISMAN", - "price": 50000 + "id": "HONED_SHARK_TOOTH_NECKLACE", + "price": 49375 }, { - "name": "Bat Talisman", - "rarity": "rare", - "id": "BAT_TALISMAN", - "price": 54000 + "name": "Fire Talisman", + "rarity": "common", + "id": "FIRE_TALISMAN", + "price": 52900 + }, + { + "name": "Candy Talisman", + "rarity": "uncommon", + "id": "CANDY_TALISMAN", + "price": 60000 }, { "name": "Speed Ring", "rarity": "uncommon", "id": "SPEED_RING", - "price": 55000 + "price": 66277 }, { - "name": "Spider Ring", + "name": "Bat Talisman", "rarity": "rare", - "id": "SPIDER_RING", - "price": 72500 + "id": "BAT_TALISMAN", + "price": 68942 }, { "name": "Piggy Bank", "rarity": "uncommon", "id": "PIGGY_BANK", - "price": 75000 + "price": 80000 }, { "name": "Healing Ring", "rarity": "uncommon", "id": "HEALING_RING", - "price": 85000 - }, - { - "name": "Candy Ring", - "rarity": "rare", - "id": "CANDY_RING", - "price": 90000 + "price": 84000 }, { - "name": "Feather Artifact", + "name": "Spider Ring", "rarity": "rare", - "id": "FEATHER_ARTIFACT", - "price": 114000 + "id": "SPIDER_RING", + "price": 98000 }, { "name": "Haste Ring", "rarity": "rare", "id": "HASTE_RING", - "price": 137000 - }, - { - "name": "Intimidation Ring", - "rarity": "uncommon", - "id": "INTIMIDATION_RING", - "price": 150000 + "price": 122500 }, { - "name": "Potion Affinity Artifact", + "name": "Feather Artifact", "rarity": "rare", - "id": "ARTIFACT_POTION_AFFINITY", - "price": 160000 + "id": "FEATHER_ARTIFACT", + "price": 129000 }, { - "name": "Bat Person Talisman", - "rarity": "common", - "id": "BAT_PERSON_TALISMAN", - "price": 199999 + "name": "Candy Ring", + "rarity": "rare", + "id": "CANDY_RING", + "price": 152500 }, { - "name": "Sea Creature Artifact", + "name": "Potion Affinity Artifact", "rarity": "rare", - "id": "SEA_CREATURE_ARTIFACT", - "price": 200000 + "id": "ARTIFACT_POTION_AFFINITY", + "price": 179000 }, { - "name": "Bat Ring", + "name": "Sharp Shark Tooth Necklace", "rarity": "epic", - "id": "BAT_RING", - "price": 240000 + "id": "SHARP_SHARK_TOOTH_NECKLACE", + "price": 209999 }, { "name": "Titanium Talisman", @@ -22630,58 +24548,58 @@ "price": 256000 }, { - "name": "Sharp Shark Tooth Necklace", - "rarity": "epic", - "id": "SHARP_SHARK_TOOTH_NECKLACE", - "price": 270000 + "name": "Bat Person Talisman", + "rarity": "common", + "id": "BAT_PERSON_TALISMAN", + "price": 275000 }, { - "name": "Treasure Talisman", - "rarity": "rare", - "id": "TREASURE_TALISMAN", - "price": 284999 + "name": "Intimidation Ring", + "rarity": "uncommon", + "id": "INTIMIDATION_RING", + "price": 280000 }, { "name": "Beastmaster Crest", "rarity": "common", "id": "BEASTMASTER_CREST_COMMON", - "price": 299000 + "price": 290000 }, { - "name": "Lucky Hoof", - "rarity": "uncommon", - "id": "LUCKY_HOOF", - "price": 333000 + "name": "Treasure Talisman", + "rarity": "rare", + "id": "TREASURE_TALISMAN", + "price": 311571 }, { - "name": "Pocket Espresso Machine", - "rarity": "common", - "id": "POCKET_ESPRESSO_MACHINE", - "price": 397000 + "name": "Sea Creature Artifact", + "rarity": "rare", + "id": "SEA_CREATURE_ARTIFACT", + "price": 318000 }, { - "name": "Experience Artifact", + "name": "Bat Ring", "rarity": "epic", - "id": "EXPERIENCE_ARTIFACT", - "price": 400000 + "id": "BAT_RING", + "price": 398999 }, { "name": "New Year Cake Bag", "rarity": "uncommon", "id": "NEW_YEAR_CAKE_BAG", - "price": 400000 + "price": 419000 }, { "name": "Mineral Talisman", "rarity": "rare", "id": "MINERAL_TALISMAN", - "price": 466000 + "price": 474999 }, { - "name": "Candy Artifact", + "name": "Experience Artifact", "rarity": "epic", - "id": "CANDY_ARTIFACT", - "price": 487000 + "id": "EXPERIENCE_ARTIFACT", + "price": 475000 }, { "name": "King Talisman", @@ -22693,13 +24611,25 @@ "name": "Scarf's Studies", "rarity": "rare", "id": "SCARF_STUDIES", - "price": 550000 + "price": 532500 + }, + { + "name": "Personal Compactor 4000", + "rarity": "uncommon", + "id": "PERSONAL_COMPACTOR_4000", + "price": 569999 + }, + { + "name": "Pocket Espresso Machine", + "rarity": "common", + "id": "POCKET_ESPRESSO_MACHINE", + "price": 575000 }, { - "name": "Personal Compactor 4000", + "name": "Lucky Hoof", "rarity": "uncommon", - "id": "PERSONAL_COMPACTOR_4000", - "price": 650000 + "id": "LUCKY_HOOF", + "price": 600000 }, { "name": "Master Skull - Tier 1", @@ -22707,34 +24637,40 @@ "id": "MASTER_SKULL_TIER_1", "price": 699000 }, + { + "name": "Green Jerry Talisman", + "rarity": "uncommon", + "id": "JERRY_TALISMAN_GREEN", + "price": 790000 + }, { "name": "Red Claw Ring", "rarity": "rare", "id": "RED_CLAW_RING", - "price": 833333 + "price": 899000 }, { - "name": "Bat Artifact", - "rarity": "Legendary", - "id": "BAT_ARTIFACT", - "price": 890000 + "name": "Candy Artifact", + "rarity": "epic", + "id": "CANDY_ARTIFACT", + "price": 900000 }, { - "name": "Green Jerry Talisman", + "name": "Beastmaster Crest", "rarity": "uncommon", - "id": "JERRY_TALISMAN_GREEN", - "price": 990000 + "id": "BEASTMASTER_CREST_UNCOMMON", + "price": 900000 }, { - "name": "Wolf Paw", - "rarity": "uncommon", - "id": "WOLF_PAW", - "price": 1000000 + "name": "Bat Artifact", + "rarity": "Legendary", + "id": "BAT_ARTIFACT", + "price": 909000 }, { - "name": "Beastmaster Crest", + "name": "Wolf Paw", "rarity": "uncommon", - "id": "BEASTMASTER_CREST_UNCOMMON", + "id": "WOLF_PAW", "price": 1000000 }, { @@ -22749,125 +24685,137 @@ "id": "PERSONAL_COMPACTOR_5000", "price": 1100000 }, - { - "name": "Jungle Amulet", - "rarity": "uncommon", - "id": "JUNGLE_AMULET", - "price": 1190000 - }, { "name": "Intimidation Artifact", "rarity": "rare", "id": "INTIMIDATION_ARTIFACT", - "price": 1395000 + "price": 1450000 }, { - "name": "Handy Blood Chalice", + "name": "Wolf Talisman", "rarity": "common", - "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 + "id": "WOLF_TALISMAN", + "price": 1484349 }, { - "name": "Soulflow Battery", - "rarity": "rare", - "id": "SOULFLOW_BATTERY", - "price": 1600000 + "name": "Jungle Amulet", + "rarity": "uncommon", + "id": "JUNGLE_AMULET", + "price": 1650000 }, { - "name": "Wolf Ring", - "rarity": "rare", - "id": "WOLF_RING", - "price": 1950000 + "name": "Handy Blood Chalice", + "rarity": "common", + "id": "HANDY_BLOOD_CHALICE", + "price": 1890000 }, { "name": "Master Skull - Tier 3", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_3", - "price": 2000000 + "price": 1974000 }, { "name": "Devour Ring", "rarity": "rare", "id": "DEVOUR_RING", - "price": 2080000 + "price": 2000000 }, { - "name": "Titanium Ring", + "name": "Wolf Ring", "rarity": "rare", - "id": "TITANIUM_RING", - "price": 2399999 - }, - { - "name": "Bat Person Ring", - "rarity": "uncommon", - "id": "BAT_PERSON_RING", - "price": 2490000 + "id": "WOLF_RING", + "price": 2100000 }, { "name": "Crab Hat of Celebration - 2022", "rarity": "special", "id": "PARTY_HAT_CRAB_ANIMATED", - "price": 2499000 + "price": 2300000 }, { - "name": "Tarantula Talisman", + "name": "Bat Person Ring", + "rarity": "uncommon", + "id": "BAT_PERSON_RING", + "price": 2450000 + }, + { + "name": "Scarf's Thesis", "rarity": "epic", - "id": "TARANTULA_TALISMAN", - "price": 2800000 + "id": "SCARF_THESIS", + "price": 2460000 }, { "name": "Personal Compactor 6000", "rarity": "epic", "id": "PERSONAL_COMPACTOR_6000", - "price": 2840000 + "price": 2599000 }, { - "name": "Beastmaster Crest", + "name": "Zombie Artifact", "rarity": "rare", - "id": "BEASTMASTER_CREST_RARE", - "price": 3000000 - }, - { - "name": "Treasure Ring", - "rarity": "epic", - "id": "TREASURE_RING", - "price": 3050000 + "id": "ZOMBIE_ARTIFACT", + "price": 2700000 }, { "name": "Blood God Crest", "rarity": "common", "id": "BLOOD_GOD_CREST", - "price": 3099000 + "price": 2750000 }, { - "name": "Scarf's Thesis", + "name": "Tarantula Talisman", "rarity": "epic", - "id": "SCARF_THESIS", - "price": 3200000 + "id": "TARANTULA_TALISMAN", + "price": 2790000 }, { - "name": "Zombie Artifact", + "name": "Speed Artifact", "rarity": "rare", - "id": "ZOMBIE_ARTIFACT", - "price": 3500000 + "id": "SPEED_ARTIFACT", + "price": 3000000 }, { - "name": "Speed Artifact", + "name": "Treasure Ring", + "rarity": "epic", + "id": "TREASURE_RING", + "price": 3300000 + }, + { + "name": "Titanium Ring", "rarity": "rare", - "id": "SPEED_ARTIFACT", - "price": 3800000 + "id": "TITANIUM_RING", + "price": 3574000 + }, + { + "name": "Beastmaster Crest", + "rarity": "rare", + "id": "BEASTMASTER_CREST_RARE", + "price": 3890000 }, { "name": "Razor Sharp Shark Tooth Necklace", "rarity": "legendary", "id": "RAZOR_SHARP_SHARK_TOOTH_NECKLACE", - "price": 3800000 + "price": 3950000 }, { - "name": "Hunter Talisman", - "rarity": "uncommon", - "id": "HUNTER_TALISMAN", - "price": 4200000 + "name": "Red Claw Artifact", + "rarity": "epic", + "id": "RED_CLAW_ARTIFACT", + "price": 4500000 + }, + { + "name": "Blue Jerry Talisman", + "rarity": "rare", + "id": "JERRY_TALISMAN_BLUE", + "price": 4500000 + }, + { + "name": "Spider Artifact", + "rarity": "epic", + "id": "SPIDER_ARTIFACT", + "price": 4700000 }, { "name": "Survivor Cube", @@ -22876,118 +24824,112 @@ "price": 5000000 }, { - "name": "Red Claw Artifact", - "rarity": "epic", - "id": "RED_CLAW_ARTIFACT", - "price": 5200000 + "name": "Soulflow Battery", + "rarity": "rare", + "id": "SOULFLOW_BATTERY", + "price": 5000000 }, { "name": "Personal Compactor 7000", "rarity": "legendary", "id": "PERSONAL_COMPACTOR_7000", - "price": 5290000 + "price": 5195000 }, { - "name": "Blue Jerry Talisman", - "rarity": "rare", - "id": "JERRY_TALISMAN_BLUE", + "name": "Hunter Talisman", + "rarity": "uncommon", + "id": "HUNTER_TALISMAN", "price": 5500000 }, { "name": "Bits Talisman", "rarity": "rare", "id": "BITS_TALISMAN", - "price": 5599000 + "price": 5699000 }, { "name": "Titanium Artifact", "rarity": "epic", "id": "TITANIUM_ARTIFACT", - "price": 6700000 - }, - { - "name": "Spider Artifact", - "rarity": "epic", - "id": "SPIDER_ARTIFACT", - "price": 7999999 + "price": 6889000 }, { "name": "Master Skull - Tier 4", "rarity": "uncommon", "id": "MASTER_SKULL_TIER_4", - "price": 8290000 - }, - { - "name": "Potato Talisman", - "rarity": "common", - "id": "POTATO_TALISMAN", - "price": 9500000 - }, - { - "name": "Bat Person Artifact", - "rarity": "rare", - "id": "BAT_PERSON_ARTIFACT", - "price": 9900000 + "price": 8148999 }, { "name": "Scarf's Grimoire", "rarity": "legendary", "id": "SCARF_GRIMOIRE", - "price": 10800000 + "price": 8999000 }, { "name": "Eternal Hoof", "rarity": "rare", "id": "ETERNAL_HOOF", - "price": 11000000 + "price": 8999980 }, { - "name": "Candy Relic", - "rarity": "legendary", - "id": "CANDY_RELIC", - "price": 11449000 + "name": "Potato Talisman", + "rarity": "common", + "id": "POTATO_TALISMAN", + "price": 8999999 }, { - "name": "Auto Recombobulator", + "name": "Bat Person Artifact", + "rarity": "rare", + "id": "BAT_PERSON_ARTIFACT", + "price": 10999900 + }, + { + "name": "Candy Relic", "rarity": "legendary", - "id": "AUTO_RECOMBOBULATOR", - "price": 11490000 + "id": "CANDY_RELIC", + "price": 11000000 }, { "name": "Beastmaster Crest", "rarity": "epic", "id": "BEASTMASTER_CREST_EPIC", - "price": 11500000 - }, - { - "name": "Shady Ring", - "rarity": "uncommon", - "id": "SHADY_RING", - "price": 13200000 + "price": 11199000 }, { - "name": "Crab Hat of Celebration - 2020", - "rarity": "special", - "id": "PARTY_HAT_CRAB", - "price": 14900000 + "name": "Auto Recombobulator", + "rarity": "legendary", + "id": "AUTO_RECOMBOBULATOR", + "price": 11900000 }, { "name": "Titanium Relic", "rarity": "legendary", "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 15000000 }, { "name": "Bait Ring", "rarity": "rare", "id": "BAIT_RING", + "price": 16999000 + }, + { + "name": "Crab Hat of Celebration - 2020", + "rarity": "special", + "id": "PARTY_HAT_CRAB", "price": 17000000 }, + { + "name": "Shady Ring", + "rarity": "uncommon", + "id": "SHADY_RING", + "price": 19000000 + }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -22999,127 +24941,127 @@ "name": "Purple Jerry Talisman", "rarity": "epic", "id": "JERRY_TALISMAN_PURPLE", - "price": 23400000 - }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 + "price": 21900000 }, { "name": "Beastmaster Crest", "rarity": "legendary", "id": "BEASTMASTER_CREST_LEGENDARY", - "price": 26000000 + "price": 24900000 }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 - }, - { - "name": "Bingo Talisman", - "rarity": "common", - "id": "BINGO_TALISMAN", - "price": 32000000 + "price": 29350000 }, { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Master Skull - Tier 5", "rarity": "rare", "id": "MASTER_SKULL_TIER_5", - "price": 33499999 + "price": 32000000 + }, + { + "name": "Bingo Talisman", + "rarity": "common", + "id": "BINGO_TALISMAN", + "price": 32750000 }, { "name": "Crooked Artifact", "rarity": "rare", "id": "CROOKED_ARTIFACT", - "price": 39000000 + "price": 37000000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 }, { - "name": "Artifact of Power", - "rarity": "rare", - "id": "POWER_ARTIFACT", - "price": 46400000 + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Wither Artifact", "rarity": "epic", "id": "WITHER_ARTIFACT", - "price": 50298000 + "price": 44995000 + }, + { + "name": "Artifact of Power", + "rarity": "rare", + "id": "POWER_ARTIFACT", + "price": 46400000 }, { "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 + "price": 69499900 }, { "name": "Ender Artifact", "rarity": "epic", "id": "ENDER_ARTIFACT", - "price": 73400000 - }, - { - "name": "Burststopper Talisman", - "rarity": "rare", - "id": "BURSTSTOPPER_TALISMAN", - "price": 75000000 + "price": 70000000 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 + }, + { + "name": "Burststopper Talisman", + "rarity": "rare", + "id": "BURSTSTOPPER_TALISMAN", + "price": 106000000 }, { "name": "Master Skull - Tier 6", "rarity": "epic", "id": "MASTER_SKULL_TIER_6", - "price": 140000000 + "price": 146000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -23131,13 +25073,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ], "maxTalismans": [ @@ -23202,16 +25144,10 @@ "price": null }, { - "name": "Talisman of Coins", - "rarity": "common", - "id": "COIN_TALISMAN", - "price": 70 - }, - { - "name": "Vaccine Talisman", + "name": "Farming Talisman", "rarity": "common", - "id": "VACCINE_TALISMAN", - "price": 110 + "id": "FARMING_TALISMAN", + "price": 25 }, { "name": "Dante Talisman", @@ -23219,12 +25155,6 @@ "id": "DANTE_TALISMAN", "price": 110 }, - { - "name": "Farming Talisman", - "rarity": "common", - "id": "FARMING_TALISMAN", - "price": 125 - }, { "name": "Wood Affinity Talisman", "rarity": "uncommon", @@ -23235,7 +25165,19 @@ "name": "Gravity Talisman", "rarity": "uncommon", "id": "GRAVITY_TALISMAN", - "price": 4320 + "price": 864 + }, + { + "name": "Night Vision Charm", + "rarity": "common", + "id": "NIGHT_VISION_CHARM", + "price": 2500 + }, + { + "name": "Talisman of Coins", + "rarity": "common", + "id": "COIN_TALISMAN", + "price": 2578 }, { "name": "Frozen Chicken", @@ -23250,10 +25192,10 @@ "price": 9500 }, { - "name": "Night Vision Charm", + "name": "Vaccine Talisman", "rarity": "common", - "id": "NIGHT_VISION_CHARM", - "price": 12000 + "id": "VACCINE_TALISMAN", + "price": 25012 }, { "name": "Lava Talisman", @@ -23265,7 +25207,13 @@ "name": "Emerald Ring", "rarity": "uncommon", "id": "EMERALD_RING", - "price": 38000 + "price": 35000 + }, + { + "name": "Fish Affinity Talisman", + "rarity": "rare", + "id": "FISH_AFFINITY_TALISMAN", + "price": 35315 }, { "name": "Pig's Foot", @@ -23279,71 +25227,59 @@ "id": "PULSE_RING", "price": 40000 }, - { - "name": "Fish Affinity Talisman", - "rarity": "rare", - "id": "FISH_AFFINITY_TALISMAN", - "price": 50000 - }, { "name": "Piggy Bank", "rarity": "uncommon", "id": "PIGGY_BANK", - "price": 75000 + "price": 80000 }, { "name": "Healing Ring", "rarity": "uncommon", "id": "HEALING_RING", - "price": 85000 + "price": 84000 }, { - "name": "Feather Artifact", + "name": "Haste Ring", "rarity": "rare", - "id": "FEATHER_ARTIFACT", - "price": 114000 + "id": "HASTE_RING", + "price": 122500 }, { - "name": "Haste Ring", + "name": "Feather Artifact", "rarity": "rare", - "id": "HASTE_RING", - "price": 137000 + "id": "FEATHER_ARTIFACT", + "price": 129000 }, { "name": "Potion Affinity Artifact", "rarity": "rare", "id": "ARTIFACT_POTION_AFFINITY", - "price": 160000 + "price": 179000 }, { "name": "Sea Creature Artifact", "rarity": "rare", "id": "SEA_CREATURE_ARTIFACT", - "price": 200000 - }, - { - "name": "Pocket Espresso Machine", - "rarity": "common", - "id": "POCKET_ESPRESSO_MACHINE", - "price": 397000 - }, - { - "name": "Experience Artifact", - "rarity": "epic", - "id": "EXPERIENCE_ARTIFACT", - "price": 400000 + "price": 318000 }, { "name": "New Year Cake Bag", "rarity": "uncommon", "id": "NEW_YEAR_CAKE_BAG", - "price": 400000 + "price": 419000 }, { "name": "Mineral Talisman", "rarity": "rare", "id": "MINERAL_TALISMAN", - "price": 466000 + "price": 474999 + }, + { + "name": "Experience Artifact", + "rarity": "epic", + "id": "EXPERIENCE_ARTIFACT", + "price": 475000 }, { "name": "King Talisman", @@ -23351,11 +25287,17 @@ "id": "KING_TALISMAN", "price": 500000 }, + { + "name": "Pocket Espresso Machine", + "rarity": "common", + "id": "POCKET_ESPRESSO_MACHINE", + "price": 575000 + }, { "name": "Bat Artifact", "rarity": "Legendary", "id": "BAT_ARTIFACT", - "price": 890000 + "price": 909000 }, { "name": "Wolf Paw", @@ -23363,71 +25305,83 @@ "id": "WOLF_PAW", "price": 1000000 }, - { - "name": "Jungle Amulet", - "rarity": "uncommon", - "id": "JUNGLE_AMULET", - "price": 1190000 - }, { "name": "Intimidation Artifact", "rarity": "rare", "id": "INTIMIDATION_ARTIFACT", - "price": 1395000 + "price": 1450000 + }, + { + "name": "Jungle Amulet", + "rarity": "uncommon", + "id": "JUNGLE_AMULET", + "price": 1650000 }, { "name": "Handy Blood Chalice", "rarity": "common", "id": "HANDY_BLOOD_CHALICE", - "price": 1500000 + "price": 1890000 }, { - "name": "Wolf Ring", + "name": "Devour Ring", "rarity": "rare", - "id": "WOLF_RING", - "price": 1950000 + "id": "DEVOUR_RING", + "price": 2000000 }, { - "name": "Devour Ring", + "name": "Wolf Ring", "rarity": "rare", - "id": "DEVOUR_RING", - "price": 2080000 + "id": "WOLF_RING", + "price": 2100000 }, { "name": "Crab Hat of Celebration - 2022", "rarity": "special", "id": "PARTY_HAT_CRAB_ANIMATED", - "price": 2499000 + "price": 2300000 }, { - "name": "Tarantula Talisman", - "rarity": "epic", - "id": "TARANTULA_TALISMAN", - "price": 2800000 + "name": "Zombie Artifact", + "rarity": "rare", + "id": "ZOMBIE_ARTIFACT", + "price": 2700000 }, { "name": "Blood God Crest", "rarity": "common", "id": "BLOOD_GOD_CREST", - "price": 3099000 + "price": 2750000 }, { - "name": "Zombie Artifact", - "rarity": "rare", - "id": "ZOMBIE_ARTIFACT", - "price": 3500000 + "name": "Tarantula Talisman", + "rarity": "epic", + "id": "TARANTULA_TALISMAN", + "price": 2790000 }, { "name": "Speed Artifact", "rarity": "rare", "id": "SPEED_ARTIFACT", - "price": 3800000 + "price": 3000000 }, { "name": "Razor Sharp Shark Tooth Necklace", "rarity": "legendary", "id": "RAZOR_SHARP_SHARK_TOOTH_NECKLACE", - "price": 3800000 + "price": 3950000 + }, + { + "name": "Red Claw Artifact", + "rarity": "epic", + "id": "RED_CLAW_ARTIFACT", + "price": 4500000 + }, + { + "name": "Spider Artifact", + "rarity": "epic", + "id": "SPIDER_ARTIFACT", + "price": 4700000 }, { "name": "Survivor Cube", @@ -23435,83 +25389,71 @@ "id": "SURVIVOR_CUBE", "price": 5000000 }, - { - "name": "Red Claw Artifact", - "rarity": "epic", - "id": "RED_CLAW_ARTIFACT", - "price": 5200000 - }, { "name": "Personal Compactor 7000", "rarity": "legendary", "id": "PERSONAL_COMPACTOR_7000", - "price": 5290000 + "price": 5195000 }, { "name": "Bits Talisman", "rarity": "rare", "id": "BITS_TALISMAN", - "price": 5599000 + "price": 5699000 }, { - "name": "Spider Artifact", - "rarity": "epic", - "id": "SPIDER_ARTIFACT", - "price": 7999999 + "name": "Scarf's Grimoire", + "rarity": "legendary", + "id": "SCARF_GRIMOIRE", + "price": 8999000 + }, + { + "name": "Eternal Hoof", + "rarity": "rare", + "id": "ETERNAL_HOOF", + "price": 8999980 }, { "name": "Potato Talisman", "rarity": "common", "id": "POTATO_TALISMAN", - "price": 9500000 + "price": 8999999 }, { "name": "Bat Person Artifact", "rarity": "rare", "id": "BAT_PERSON_ARTIFACT", - "price": 9900000 - }, - { - "name": "Scarf's Grimoire", - "rarity": "legendary", - "id": "SCARF_GRIMOIRE", - "price": 10800000 - }, - { - "name": "Eternal Hoof", - "rarity": "rare", - "id": "ETERNAL_HOOF", - "price": 11000000 + "price": 10999900 }, { "name": "Candy Relic", "rarity": "legendary", "id": "CANDY_RELIC", - "price": 11449000 + "price": 11000000 }, { "name": "Auto Recombobulator", "rarity": "legendary", "id": "AUTO_RECOMBOBULATOR", - "price": 11490000 - }, - { - "name": "Crab Hat of Celebration - 2020", - "rarity": "special", - "id": "PARTY_HAT_CRAB", - "price": 14900000 + "price": 11900000 }, { "name": "Titanium Relic", "rarity": "legendary", "id": "TITANIUM_RELIC", - "price": 15299000 + "price": 15000000 + }, + { + "name": "Crab Hat of Celebration - 2020", + "rarity": "special", + "id": "PARTY_HAT_CRAB", + "price": 17000000 }, { "name": "Hunter Ring", "rarity": "rare", "id": "HUNTER_RING", - "price": 17900000 + "price": 20500000 }, { "name": "Jacobus Register", @@ -23519,47 +25461,47 @@ "id": "JACOBUS_REGISTER", "price": 21500000 }, - { - "name": "Spiked Atrocity", - "rarity": "epic", - "id": "SPIKED_ATROCITY", - "price": 25900000 - }, { "name": "Beastmaster Crest", "rarity": "legendary", "id": "BEASTMASTER_CREST_LEGENDARY", - "price": 26000000 + "price": 24900000 }, { "name": "Treasure Artifact", "rarity": "legendary", "id": "TREASURE_ARTIFACT", - "price": 26750000 + "price": 27400000 }, { - "name": "Catacombs Expert Ring", + "name": "Spiked Atrocity", "rarity": "epic", - "id": "CATACOMBS_EXPERT_RING", - "price": 28000000 + "id": "SPIKED_ATROCITY", + "price": 27989999 }, { "name": "Reaper Orb", "rarity": "legendary", "id": "REAPER_ORB", - "price": 29799000 + "price": 29350000 }, { - "name": "Soulflow Supercell", + "name": "Catacombs Expert Ring", "rarity": "epic", - "id": "SOULFLOW_SUPERCELL", - "price": 32999000 + "id": "CATACOMBS_EXPERT_RING", + "price": 29890000 }, { "name": "Nether Artifact", "rarity": "epic", "id": "NETHER_ARTIFACT", - "price": 40000000 + "price": 38750000 + }, + { + "name": "Soulflow Supercell", + "rarity": "epic", + "id": "SOULFLOW_SUPERCELL", + "price": 39999999 }, { "name": "Artifact of Power", @@ -23571,31 +25513,31 @@ "name": "Wither Relic", "rarity": "legendary", "id": "WITHER_RELIC", - "price": 61111111 + "price": 56250000 }, { "name": "Seal of the Family", "rarity": "epic", "id": "SEAL_OF_THE_FAMILY", - "price": 66000000 + "price": 69499900 }, { "name": "Golden Jerry Artifact", "rarity": "legendary", "id": "JERRY_TALISMAN_GOLDEN", - "price": 94999999 + "price": 89000000 }, { "name": "Ender Relic", "rarity": "legendary", "id": "ENDER_RELIC", - "price": 95000000 + "price": 101000000 }, { "name": "Bingo Ring", "rarity": "uncommon", "id": "BINGO_RING", - "price": 163800000 + "price": 160000000 }, { "name": "Burststopper Artifact", @@ -23607,13 +25549,13 @@ "name": "Hegemony Artifact", "rarity": "legendary", "id": "HEGEMONY_ARTIFACT", - "price": 306989800 + "price": 306000000 }, { "name": "Master Skull - Tier 7", "rarity": "legendary", "id": "MASTER_SKULL_TIER_7", - "price": 572000000 + "price": 569999000 } ] }, @@ -24063,7 +26005,9 @@ "id": 300, "Count": 1, "tag": { - "ench": [], + "ench": [ + + ], "Unbreakable": 1, "HideFlags": 254, "display": { @@ -24189,289 +26133,302 @@ } }, "equipment": { - "necklace": [], - "cloak": [], - "belt": [], - "gloves": [] + "necklace": [ + + ], + "cloak": [ + + ], + "belt": [ + + ], + "gloves": [ + + ] + }, + "pets": { + "auto_pet": { + + }, + "pets": [ + { + "type": "GRIFFIN", + "exp": 194368.44624278016, + "active": true, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 186495.05939497805, + "modified": { + "name": "[Lvl 58] Common Griffin", + "isPet": true + }, + "rarity": "common", + "stats": { + "strength": 14.5, + "crit_chance": 5.800000000000001, + "crit_damage": 29, + "intelligence": 5.800000000000001, + "magic_find": 5.800000000000001 + }, + "ignoresTierBoost": true, + "texture_path": "https://sky.shiiyu.moe/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", + "name": "[Lvl 58] Griffin", + "display_name": "Griffin", + "xpMaxLevel": 5624785, + "level": 58, + "xpCurrent": 1883, + "xpForNext": 19500, + "progress": 0.09656410256410257, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §a+14", + "§7Crit Chance: §a+5", + "§7Crit Damage: §a+29", + "§7Intelligence: §a+5", + "§7Magic Find: §a+5", + " ", + "§6Odyssey", + "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", + " ", + "§7Progress to Level 59: §e9.7%", + "§2--§f------------------ §e1,883 §6/ §e20K", + "", + "§7Total XP: §e194K §6/ §e5.6M §6(3%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "ROCK", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 55000, + "modified": { + "name": "[Lvl 1] Uncommon Rock", + "isPet": true + }, + "rarity": "uncommon", + "stats": { + "defense": 2, + "true_defense": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", + "name": "[Lvl 1] Rock", + "display_name": "Rock", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Mining Mount", + "", + "§7Defense: §a+2", + "§7True Defense: §a0", + " ", + "§6Ridable", + "§7Right-click on your summoned pet to ride it!", + " ", + "§6Sailing Stone", + "§7Sneak to move your rock to your location (15s cooldown)", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "GRANDMA_WOLF", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "uncommon", + "stats": { + "health": 1, + "strength": 0.25 + }, + "texture_path": "https://sky.shiiyu.moe/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", + "name": "[Lvl 1] Grandma Wolf", + "display_name": "Grandma Wolf", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Combat Pet", + "", + "§7Health: §a+1", + "§7Strength: §a0", + " ", + "§6Kill Combo", + "§7Gain buffs for combo kills. Effects stack as you increase your combo.", + "", + "§a5 Combo §8(lasts §a8s§8)", + "§8+§b3% §b✯ Magic Find", + "§a10 Combo §8(lasts §a6s§8)", + "§8+§610 §7coins per kill", + "§a15 Combo §8(lasts §a4s§8)", + "§8+§b3% §b✯ Magic Find", + "§a20 Combo §8(lasts §a3s§8)", + "§8+§315% §7Combat Exp", + "§a25 Combo §8(lasts §a3s§8)", + "§8+§b3% §b✯ Magic Find", + "§a30 Combo §8(lasts §a2s§8)", + "§8+§610 §7coins per kill", + " ", + "§8This pet's perks are active even when the pet is not summoned!", + "", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "MONKEY", + "exp": 0, + "active": false, + "tier": "UNCOMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 180000, + "modified": { + "name": "[Lvl 1] Uncommon Monkey", + "isPet": true + }, + "rarity": "uncommon", + "stats": { + "speed": 0.2, + "intelligence": 0.5 + }, + "texture_path": "https://sky.shiiyu.moe/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", + "name": "[Lvl 1] Monkey", + "display_name": "Monkey", + "xpMaxLevel": 8644220, + "level": 1, + "xpCurrent": 0, + "xpForNext": 175, + "progress": 0, + "lore": [ + "§8Foraging Pet", + "", + "§7Speed: §a0", + "§7Intelligence: §a0", + " ", + "§6Treeborn", + "§7Grants §a+0.5 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e175", + "", + "§7Total XP: §e0 §6/ §e8.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "BEE", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "rarity": "common", + "stats": { + "strength": 5.25, + "intelligence": 0.5, + "speed": 0.1 + }, + "texture_path": "https://sky.shiiyu.moe/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", + "name": "[Lvl 1] Bee", + "display_name": "Bee", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Farming Pet", + "", + "§7Strength: §a+5", + "§7Intelligence: §a0", + "§7Speed: §a0", + " ", + "§6Hive", + "§7Gain §b+1 ✎ Intelligence §7and §c+1 ❁ Strength §7for each nearby bee.", + "§8Max 15 bees", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + }, + { + "type": "DOLPHIN", + "exp": 0, + "active": false, + "tier": "COMMON", + "heldItem": null, + "candyUsed": 0, + "skin": null, + "price": 25000, + "modified": { + "name": "[Lvl 1] Common Dolphin", + "isPet": true + }, + "rarity": "common", + "stats": { + "sea_creature_chance": 0.05, + "intelligence": 1 + }, + "texture_path": "https://sky.shiiyu.moe/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", + "name": "[Lvl 1] Dolphin", + "display_name": "Dolphin", + "xpMaxLevel": 5624785, + "level": 1, + "xpCurrent": 0, + "xpForNext": 100, + "progress": 0, + "lore": [ + "§8Fishing Pet", + "", + "§7Sea Creature Chance: §a0%", + "§7Intelligence: §a+1", + " ", + "§6Pod Tactics", + "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", + " ", + "§7Progress to Level 2: §e0.0%", + "§2§f-------------------- §e0 §6/ §e100", + "", + "§7Total XP: §e0 §6/ §e5.6M §6(0%)", + "§7Candy Used: §e0 §6/ §e10", + "" + ] + } + ] }, - "pets": [ - { - "type": "GRIFFIN", - "exp": 194368.44624278016, - "active": true, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 359273.6155911528, - "modified": { - "name": "[Lvl 58] Common Griffin", - "isPet": true - }, - "rarity": "common", - "stats": { - "strength": 14.5, - "crit_chance": 5.800000000000001, - "crit_damage": 29, - "intelligence": 5.800000000000001, - "magic_find": 5.800000000000001 - }, - "ignoresTierBoost": true, - "texture_path": "/head/4c27e3cb52a64968e60c861ef1ab84e0a0cb5f07be103ac78da67761731f00c8", - "name": "[Lvl 58] Griffin", - "display_name": "Griffin", - "xpMaxLevel": 5624785, - "level": 58, - "xpCurrent": 1883, - "xpForNext": 19500, - "progress": 0.09656410256410257, - "lore": [ - "§8Combat Pet", - "", - "§7Strength: §a+14", - "§7Crit Chance: §a+5", - "§7Crit Damage: §a+29", - "§7Intelligence: §a+5", - "§7Magic Find: §a+5", - " ", - "§6Odyssey", - "§2Mythological creatures §7you find and burrows you dig scale in §cdifficulty §7and §6rewards §7based on your equipped Griffin's rarity.", - " ", - "§7Progress to Level 59: §e9.7%", - "§2--§f------------------ §e1,883 §6/ §e20K", - "", - "§7Total XP: §e194K §6/ §e5.6M §6(3%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "ROCK", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 50000, - "modified": { - "name": "[Lvl 1] Uncommon Rock", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "defense": 2, - "true_defense": 0.1 - }, - "texture_path": "/head/cb2b5d48e57577563aca31735519cb622219bc058b1f34648b67b8e71bc0fa", - "name": "[Lvl 1] Rock", - "display_name": "Rock", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Mining Mount", - "", - "§7Defense: §a+2", - "§7True Defense: §a0", - " ", - "§6Ridable", - "§7Right-click on your summoned pet to ride it!", - " ", - "§6Sailing Stone", - "§7Sneak to move your rock to your location (15s cooldown)", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "GRANDMA_WOLF", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "uncommon", - "stats": { - "health": 1, - "strength": 0.25 - }, - "texture_path": "/head/4e794274c1bb197ad306540286a7aa952974f5661bccf2b725424f6ed79c7884", - "name": "[Lvl 1] Grandma Wolf", - "display_name": "Grandma Wolf", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Combat Pet", - "", - "§7Health: §a+1", - "§7Strength: §a0", - " ", - "§6Kill Combo", - "§7Gain buffs for combo kills. Effects stack as you increase your combo.", - "", - "§a5 Combo §8(lasts §a8s§8)", - "§8+§b3% §b✯ Magic Find", - "§a10 Combo §8(lasts §a6s§8)", - "§8+§610 §7coins per kill", - "§a15 Combo §8(lasts §a4s§8)", - "§8+§b3% §b✯ Magic Find", - "§a20 Combo §8(lasts §a3s§8)", - "§8+§315% §7Combat Exp", - "§a25 Combo §8(lasts §a3s§8)", - "§8+§b3% §b✯ Magic Find", - "§a30 Combo §8(lasts §a2s§8)", - "§8+§610 §7coins per kill", - " ", - "§8This pet's perks are active even when the pet is not summoned!", - "", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "MONKEY", - "exp": 0, - "active": false, - "tier": "UNCOMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 150000, - "modified": { - "name": "[Lvl 1] Uncommon Monkey", - "isPet": true - }, - "rarity": "uncommon", - "stats": { - "speed": 0.2, - "intelligence": 0.5 - }, - "texture_path": "/head/13cf8db84807c471d7c6922302261ac1b5a179f96d1191156ecf3e1b1d3ca", - "name": "[Lvl 1] Monkey", - "display_name": "Monkey", - "xpMaxLevel": 8644220, - "level": 1, - "xpCurrent": 0, - "xpForNext": 175, - "progress": 0, - "lore": [ - "§8Foraging Pet", - "", - "§7Speed: §a0", - "§7Intelligence: §a0", - " ", - "§6Treeborn", - "§7Grants §a+0.5 §6[object Object] Foraging Fortune§7, which increases your chance at double logs", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e175", - "", - "§7Total XP: §e0 §6/ §e8.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "BEE", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "rarity": "common", - "stats": { - "strength": 5.25, - "intelligence": 0.5, - "speed": 0.1 - }, - "texture_path": "/head/7e941987e825a24ea7baafab9819344b6c247c75c54a691987cd296bc163c263", - "name": "[Lvl 1] Bee", - "display_name": "Bee", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Farming Pet", - "", - "§7Strength: §a+5", - "§7Intelligence: §a0", - "§7Speed: §a0", - " ", - "§6Hive", - "§7Gain §b+1 ✎ Intelligence §7and §c+1 ❁ Strength §7for each nearby bee.", - "§8Max 15 bees", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - }, - { - "type": "DOLPHIN", - "exp": 0, - "active": false, - "tier": "COMMON", - "heldItem": null, - "candyUsed": 0, - "skin": null, - "price": 20000, - "modified": { - "name": "[Lvl 1] Common Dolphin", - "isPet": true - }, - "rarity": "common", - "stats": { - "sea_creature_chance": 0.05, - "intelligence": 1 - }, - "texture_path": "/head/cefe7d803a45aa2af1993df2544a28df849a762663719bfefc58bf389ab7f5", - "name": "[Lvl 1] Dolphin", - "display_name": "Dolphin", - "xpMaxLevel": 5624785, - "level": 1, - "xpCurrent": 0, - "xpForNext": 100, - "progress": 0, - "lore": [ - "§8Fishing Pet", - "", - "§7Sea Creature Chance: §a0%", - "§7Intelligence: §a+1", - " ", - "§6Pod Tactics", - "§7Increases your fishing speed by §a0% §7for each nearby player within 10 blocks up to §a15%", - " ", - "§7Progress to Level 2: §e0.0%", - "§2§f-------------------- §e0 §6/ §e100", - "", - "§7Total XP: §e0 §6/ §e5.6M §6(0%)", - "§7Candy Used: §e0 §6/ §e10", - "" - ] - } - ], "talismans": { "common": [ { @@ -24526,7 +26483,9 @@ "recombobulated": false } ], - "rare": [], + "rare": [ + + ], "epic": [ { "name": "Melody's Hair", @@ -24536,10 +26495,18 @@ "recombobulated": false } ], - "legendary": [], - "mythic": [], - "special": [], - "very": [] + "legendary": [ + + ], + "mythic": [ + + ], + "special": [ + + ], + "very": [ + + ] }, "collections": [ { @@ -24619,7 +26586,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Wheat", @@ -24656,7 +26625,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Raw Rabbit", @@ -24707,7 +26678,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Potato", @@ -24814,7 +26787,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "End Stone", @@ -24823,7 +26798,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Nether Quartz", @@ -24832,7 +26809,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sand", @@ -24869,7 +26848,9 @@ "maxTiers": 11, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Obsidian", @@ -24878,7 +26859,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Diamond", @@ -24915,7 +26898,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Gold Ingot", @@ -24952,7 +26937,9 @@ "maxTiers": 7, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Mithril", @@ -24989,7 +26976,9 @@ "maxTiers": 8, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Ice", @@ -24998,7 +26987,9 @@ "maxTiers": 10, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Sulphur", @@ -25007,7 +26998,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Netherrack", @@ -25044,7 +27037,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Slimeball", @@ -25179,7 +27174,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Spruce Wood", @@ -25188,7 +27185,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Jungle Wood", @@ -25239,7 +27238,9 @@ "maxTiers": 9, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Lily Pad", @@ -25346,7 +27347,9 @@ "maxTiers": 12, "tier": 0, "amount": 0, - "contributions": [] + "contributions": [ + + ] }, { "name": "Prismarine Crystals", @@ -25496,7 +27499,9 @@ } ] }, - "cakebag": [] + "cakebag": [ + + ] } ] -} +} \ No newline at end of file diff --git a/index.js b/index.js index 696cc41..a6efe49 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,7 @@ //CREDIT: https://github.com/Senither/hypixel-skyblock-facade (Modified) +const auctionsRoute = require('./routes/v1/auctions') +const bingoRoute = require('./routes/v1/bingo'); +const calendarRoute = require('./routes/v1/calendar') const FetchurRoute = require('./routes/v1/fetchur'); const ProfileRoute = require('./routes/v1/profile'); const ProfilesRoute = require('./routes/v1/profiles'); @@ -41,6 +44,9 @@ app.get('/v1/profile/:uuid/:profileid', ProfileRoute); app.get('/v1/profiles/:uuid', ProfilesRoute); app.get('/v1/items/:uuid/:profileid', ProfileItemsRoute); app.get('/v1/items/:uuid', ProfilesItemsRoute); +app.get('/v1/bingo/:uuid', bingoRoute) +app.get('/v1/calendar', calendarRoute) +app.get('/v1/auctions/:uuid', auctionsRoute) app.use(NotFound); app.use(ErrorHandler); diff --git a/json/items.json b/json/items.json index f65ace5..2481520 100644 --- a/json/items.json +++ b/json/items.json @@ -169,6 +169,23 @@ "npc_sell_price": 1, "id": "VITAMIN_DEATH" }, + { + "material": "DIAMOND_SWORD", + "name": "Sword of Live Reloading", + "stats": { + "DAMAGE": 69, + "ferocity": 600 + }, + "id": "SWORD_OF_LIVE_RELOADING" + }, + { + "material": "DIAMOND_HELMET", + "name": "Helmet of Live Reloading", + "stats": { + "HEALTH": 200 + }, + "id": "HELMET_OF_LIVE_RELOADING" + }, { "material": "GOLD_AXE", "name": "Coco Chopper", @@ -2267,13 +2284,13 @@ "generator": "RED_SAND", "generator_tier": 12, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 12000, - "coop_total": true + "reputation": 12000 } - }, + ], "id": "RED_SAND_GENERATOR_12" }, { @@ -2284,13 +2301,13 @@ "generator": "RED_SAND", "generator_tier": 3, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 1500, - "coop_total": true + "reputation": 1500 } - }, + ], "id": "RED_SAND_GENERATOR_3" }, { @@ -2301,13 +2318,13 @@ "generator": "RED_SAND", "generator_tier": 2, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 1000, - "coop_total": true + "reputation": 1000 } - }, + ], "id": "RED_SAND_GENERATOR_2" }, { @@ -2318,13 +2335,13 @@ "generator": "RED_SAND", "generator_tier": 11, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 10000, - "coop_total": true + "reputation": 10000 } - }, + ], "id": "RED_SAND_GENERATOR_11" }, { @@ -2335,13 +2352,13 @@ "generator": "RED_SAND", "generator_tier": 9, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 7500, - "coop_total": true + "reputation": 7500 } - }, + ], "id": "RED_SAND_GENERATOR_9" }, { @@ -2352,13 +2369,13 @@ "generator": "RED_SAND", "generator_tier": 5, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 3000, - "coop_total": true + "reputation": 3000 } - }, + ], "id": "RED_SAND_GENERATOR_5" }, { @@ -2369,13 +2386,13 @@ "generator": "RED_SAND", "generator_tier": 4, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 2000, - "coop_total": true + "reputation": 2000 } - }, + ], "id": "RED_SAND_GENERATOR_4" }, { @@ -2386,13 +2403,13 @@ "generator": "RED_SAND", "generator_tier": 8, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 6500, - "coop_total": true + "reputation": 6500 } - }, + ], "id": "RED_SAND_GENERATOR_8" }, { @@ -2403,13 +2420,13 @@ "generator": "RED_SAND", "generator_tier": 7, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 5500, - "coop_total": true + "reputation": 5500 } - }, + ], "id": "RED_SAND_GENERATOR_7" }, { @@ -2420,13 +2437,13 @@ "generator": "RED_SAND", "generator_tier": 1, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 500, - "coop_total": true + "reputation": 500 } - }, + ], "id": "RED_SAND_GENERATOR_1" }, { @@ -2437,13 +2454,13 @@ "generator": "RED_SAND", "generator_tier": 10, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 9000, - "coop_total": true + "reputation": 9000 } - }, + ], "id": "RED_SAND_GENERATOR_10" }, { @@ -2454,13 +2471,13 @@ "generator": "RED_SAND", "generator_tier": 6, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "BARBARIANS", - "reputation": 4000, - "coop_total": true + "reputation": 4000 } - }, + ], "id": "RED_SAND_GENERATOR_6" }, { @@ -4101,13 +4118,13 @@ "generator": "MYCELIUM", "generator_tier": 12, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 12000, - "coop_total": true + "reputation": 12000 } - }, + ], "id": "MYCELIUM_GENERATOR_12" }, { @@ -4118,13 +4135,13 @@ "generator": "MYCELIUM", "generator_tier": 3, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 1500, - "coop_total": true + "reputation": 1500 } - }, + ], "id": "MYCELIUM_GENERATOR_3" }, { @@ -4135,13 +4152,13 @@ "generator": "MYCELIUM", "generator_tier": 1, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 500, - "coop_total": true + "reputation": 500 } - }, + ], "id": "MYCELIUM_GENERATOR_1" }, { @@ -4152,13 +4169,13 @@ "generator": "MYCELIUM", "generator_tier": 6, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 4000, - "coop_total": true + "reputation": 4000 } - }, + ], "id": "MYCELIUM_GENERATOR_6" }, { @@ -4169,13 +4186,13 @@ "generator": "MYCELIUM", "generator_tier": 4, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 2000, - "coop_total": true + "reputation": 2000 } - }, + ], "id": "MYCELIUM_GENERATOR_4" }, { @@ -4186,13 +4203,13 @@ "generator": "MYCELIUM", "generator_tier": 10, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 9000, - "coop_total": true + "reputation": 9000 } - }, + ], "id": "MYCELIUM_GENERATOR_10" }, { @@ -4203,13 +4220,13 @@ "generator": "MYCELIUM", "generator_tier": 7, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 5500, - "coop_total": true + "reputation": 5500 } - }, + ], "id": "MYCELIUM_GENERATOR_7" }, { @@ -4220,13 +4237,13 @@ "generator": "MYCELIUM", "generator_tier": 11, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 10000, - "coop_total": true + "reputation": 10000 } - }, + ], "id": "MYCELIUM_GENERATOR_11" }, { @@ -4237,13 +4254,13 @@ "generator": "MYCELIUM", "generator_tier": 9, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 7500, - "coop_total": true + "reputation": 7500 } - }, + ], "id": "MYCELIUM_GENERATOR_9" }, { @@ -4254,13 +4271,13 @@ "generator": "MYCELIUM", "generator_tier": 8, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 6500, - "coop_total": true + "reputation": 6500 } - }, + ], "id": "MYCELIUM_GENERATOR_8" }, { @@ -4271,13 +4288,13 @@ "generator": "MYCELIUM", "generator_tier": 2, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 1000, - "coop_total": true + "reputation": 1000 } - }, + ], "id": "MYCELIUM_GENERATOR_2" }, { @@ -4288,13 +4305,13 @@ "generator": "MYCELIUM", "generator_tier": 5, "tier": "RARE", - "requirements": { - "nether_reputation": { + "requirements": [ + { + "type": "CRIMSON_ISLE_REPUTATION", "faction": "MAGES", - "reputation": 3000, - "coop_total": true + "reputation": 3000 } - }, + ], "id": "MYCELIUM_GENERATOR_5" }, { @@ -5925,12 +5942,13 @@ "generator": "REVENANT", "generator_tier": 12, "tier": "RARE", - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "zombie", "level": 9 } - }, + ], "id": "REVENANT_GENERATOR_12" }, { @@ -7536,1290 +7554,1577 @@ { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzVhMzViNWNhMTUyNjg2ODVjNDY2MDUzNWU1ODgzZDIxYTVlYzU3YzU1ZDM5NzIzNDI2OWFjYjVkYzI5NTRmIn19fQ==", - "name": "Bird House", - "furniture": "BIRD_HOUSE", - "tier": "EPIC", - "id": "BIRD_HOUSE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDg0YTg2OWFlMjdjMmUyZjBiMWZiODBhOTM0YTBjMGY0MDYzNWNlNzVmNjM5YjlhMDJlOGM3NGM0MThlNzlkZSJ9fX0=", - "name": "Floral Lamppost", - "furniture": "FLORAL_LAMPPOST", - "tier": "EPIC", - "id": "FLORAL_LAMPPOST" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTQzNjMzOTg5MSwKICAicHJvZmlsZUlkIiA6ICJmZTYxY2RiMjUyMTA0ODYzYTljY2E2ODAwZDRiMzgzZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNeVNoYWRvd3MiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODgxNTdjNzJkN2Q0ZmI5NTE2MTdmYzZhOGEzMDFmN2NkMGVlNmEzNzg2ZDZlYTIyNzk0OTk0NjIxMjRmMzM1YiIKICAgIH0KICB9Cn0=", - "name": "White Tiger Minion Skin", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1NTc2MjM1NzU4NiwKICAicHJvZmlsZUlkIiA6ICI1ZmI5NjkwZGEyNzI0OWQxYjgxNGE4MDk2NGU1ZGY1MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMZWV2aWFoIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzViMjAyNmM1NzY3NmJjOTU3N2JjN2QxZWQ2YTNmOGFiYThjM2NjYWRhZTg5NmE1NDE0ZDAzMTVlN2VlMTAzZmYiCiAgICB9CiAgfQp9", + "name": "Pufferfish Minion Skin", "category": "COSMETIC", "museum": true, - "id": "WHITE_TIGER_PERSONALITY" - }, - { - "material": "INK_SACK", - "durability": 6, - "name": "Livid Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_LIVID" - }, - { - "material": "INK_SACK", - "durability": 12, - "name": "Tentacle Dye", - "tier": "EPIC", - "unstackable": true, - "id": "TENTACLE_DYE" - }, - { - "material": "INK_SACK", - "durability": 1, - "name": "Brick Red Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_BRICK_RED" - }, - { - "material": "INK_SACK", - "durability": 13, - "name": "Wild Strawberry Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_WILD_STRAWBERRY" - }, - { - "material": "INK_SACK", - "durability": 15, - "name": "Pure White Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_PURE_WHITE" - }, - { - "material": "INK_SACK", - "durability": 12, - "name": "Celeste Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_CELESTE" - }, - { - "material": "INK_SACK", - "durability": 12, - "name": "Aquamarine Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_AQUAMARINE" - }, - { - "material": "INK_SACK", - "durability": 5, - "name": "Midnight Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_MIDNIGHT" - }, - { - "material": "INK_SACK", - "durability": 10, - "name": "Celadon Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_CELADON" - }, - { - "material": "INK_SACK", - "durability": 9, - "name": "Cyclamen Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_CYCLAMEN" - }, - { - "material": "INK_SACK", - "durability": 1, - "name": "Carmine Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_CARMINE" - }, - { - "material": "INK_SACK", - "durability": 13, - "name": "Byzantium Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_BYZANTIUM" - }, - { - "material": "ICE", - "name": "Iceberg Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_ICEBERG" - }, - { - "material": "INK_SACK", - "durability": 14, - "name": "Mango Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_MANGO" - }, - { - "material": "INK_SACK", - "durability": 5, - "name": "Dark Purple Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_DARK_PURPLE" - }, - { - "material": "INK_SACK", - "name": "Pure Black Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_PURE_BLACK" - }, - { - "material": "INK_SACK", - "durability": 9, - "name": "Nadeshiko Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_NADESHIKO" - }, - { - "material": "INK_SACK", - "durability": 2, - "name": "Emerald Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_EMERALD" - }, - { - "material": "INK_SACK", - "durability": 10, - "name": "Nyanza Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_NYANZA" - }, - { - "material": "INK_SACK", - "durability": 11, - "name": "Pure Yellow Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_PURE_YELLOW" - }, - { - "material": "INK_SACK", - "durability": 4, - "name": "Pure Blue Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_PURE_BLUE" - }, - { - "material": "INK_SACK", - "durability": 1, - "name": "Flame Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_FLAME" - }, - { - "material": "INK_SACK", - "durability": 14, - "name": "Necron Dye", - "tier": "LEGENDARY", - "unstackable": true, - "id": "DYE_NECRON" - }, - { - "material": "INK_SACK", - "durability": 15, - "name": "Bone Dye", - "tier": "EPIC", - "unstackable": true, - "id": "DYE_BONE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2Y1MGFhM2U3MjI5MjQ3YWE1OTgyNDljODNhZWM0NjJhYjE2NTQ4NjVlMjAxZTY5MjVmNTVmNWRkMzY0M2VjYSJ9fX0=", - "name": "Barry Century Cake", - "furniture": "EPOCH_CAKE_AQUA", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_AQUA" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzAxNjEwOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE3YmZhODBhODVlNzA3ZWVkZjk0NWI4ODkwNTk0MmY1Zjc3OTVlYTUyNjRkNjkyYTIyZTcwN2ZjNTc3YTg4YiIKICAgIH0KICB9Cn0=", - "name": "Pet Rock Century Cake", - "furniture": "EPOCH_CAKE_GREEN", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_GREEN" + "id": "PUFFERFISH_PERSONALITY" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2Mjk0MTc3MCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjQ1OTI3NDZjYzM1NjcyZWUyOWJiM2ExNTNkNzRmN2E1ZDBlNWZlODYxMjcyOWEzNGZhZDI1MmZlNzkwNDI4MyIKICAgIH0KICB9Cn0=", - "name": "Century Cake of the Next Dungeon Floor", - "furniture": "EPOCH_CAKE_BLACK", - "tier": "UNCOMMON", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTU5MjEwMDAzMzMzNywKICAicHJvZmlsZUlkIiA6ICI2MTI4MTA4MjU5M2Q0OGQ2OWIzMmI3YjlkMzIxMGUxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJuaWNyb25pYzcyMTk2IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UxMDMwZjYzYzBlMGQwN2VjMjEyOGQyNThiNTFhZWE5ZWUyYmUwZThjZjhjY2ExYTU5MzA1MzIxMmNmNWRlOSIKICAgIH0KICB9Cn0=", + "name": "Fish Minion Skin", + "category": "COSMETIC", "museum": true, - "id": "EPOCH_CAKE_BLACK" + "id": "FISH_PERSONALITY" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzE4Mzk3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjVkOTI0M2M2MWUyYzNlMWUwZjk5MzE4NDNjYWRiZDBkZmY0YTY0NjIyNWVmNTRjNTU3OTc5Y2YzOWJiMjA1NyIKICAgIH0KICB9Cn0=", - "name": "Streamer's Century Cake", - "furniture": "EPOCH_CAKE_PURPLE", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTI0Mjc1NzEwMCwKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU3YTZkMzVlOWQ0MzU0MmQyNzUwYzQ4MzZiNDAzN2Y3NTE0NmViMjc4NzUzMmI0YzRjNWMzYjI2YmI2M2RjMTAiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "Empty Thunder Bottle", "tier": "EPIC", - "museum": true, - "id": "EPOCH_CAKE_PURPLE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzljMjhkYTAxZTAxMjg4MGVhY2MzYWIxZDM0ZDkxNDUzNTdkMmUyZDQ2ZDQyYWEzYjU5ZWRiOTFiMWY3YmQ2ZCJ9fX0=", - "name": "Crab-Colored Century Cake", - "furniture": "EPOCH_CAKE_PINK", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_PINK" + "unstackable": true, + "npc_sell_price": 5000, + "id": "THUNDER_IN_A_BOTTLE_EMPTY" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY2NDEyNywKICAicHJvZmlsZUlkIiA6ICI1MTY4ZjZlMjIyM2E0Y2FjYjdiN2QyZjYyZWMxZGFhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZWZfbm90X2FzaCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mYjdjZmJiNmFmNzAwZTQ5YmZkYjYwMjM2OTIwYzUyMjA4NGJiODA4YWI2MTI0NzRmYjFmODNlYTQxMGQ1NDg0IgogICAgfQogIH0KfQ", - "name": "Century Cake of Hype", - "furniture": "EPOCH_CAKE_CYAN", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODY0NTEyOCwKICAicHJvZmlsZUlkIiA6ICIwMGZiNTRiOWI4NDA0YTA0YTViMmJhMzBlYzBlYTAxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrbGxveWQ3MCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lNWViZjZmMTQzMDFkM2ViZDE0NTMzNTg3ZDJhMmQ0ODIzNDQzM2IxN2M5ZDJmMTM5MzRiN2NhYjQ1OGVlMjY3IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Pulse Ring", + "category": "ACCESSORY", "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_CYAN" + "npc_sell_price": 8000, + "id": "PULSE_RING" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzA0MzI2NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjU4Y2QyNzUwODg0NDcxYzA4MzYzNDMzNDNlYzZlMTg4MjI5ZGEwNTRlZjM2NzEwMTNhZThkNDNkNmIwMjU0OCIKICAgIH0KICB9Cn0=", - "name": "Latest Update Century Cake", - "furniture": "EPOCH_CAKE_ORANGE", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_ORANGE" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODc0MzQ2NywKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzI0Mzc4Yjk4NmUzNTg1NTVlZTczZjA5YjIxMGQ0OWVjMTM3MTlkZTVlYTg4ZDc1NTIzNzcwZDMxMTYzZjNhZWYiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "Thunder in a Bottle", + "tier": "EPIC", + "unstackable": true, + "npc_sell_price": 5000, + "id": "THUNDER_IN_A_BOTTLE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTQwOWJkOTYwN2Y0YzFkNjk0ZjYyNTNjOGI2NzFkMDkyZjhiMTZjYTdmNjZlYmZkNjdlZjlkODY0MDI0Nzc0YiJ9fX0=", - "name": "aPunch Century Cake", - "furniture": "EPOCH_CAKE_RED", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_RED" + "material": "LEATHER_CHESTPLATE", + "color": "36,221,229", + "name": "Thunder Chestplate", + "category": "CHESTPLATE", + "tier": "EPIC", + "stats": { + "HEALTH": 230, + "DEFENSE": 230, + "STRENGTH": 25, + "SEA_CREATURE_CHANCE": 4 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 36 + } + ], + "npc_sell_price": 200000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 40 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 6 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 120 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 8 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 10 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 15 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 20 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 25 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 500 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 600 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 5 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 800 + } + ] + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "THUNDER_CHESTPLATE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MjkxNzQ0MCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTEyYTI4ZTY5ZGE1ZTQzY2U4ZmRlY2M2YTgyM2M5MmZmZjg0NzE5ZTAxNDdjYWFjNzFjNWM4ZDk5ZGE1NzgxYyIKICAgIH0KICB9Cn0=", - "name": "Sea Emperor Century Cake", - "furniture": "EPOCH_CAKE_BLUE", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_BLUE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzA2OTkwNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTI1NTg4OTk5YjY3NGIzOTlhMTk4MGEyNWQ5Y2EzMjM2MzlkMDMzZTNmODUwNDBjMWRlN2ZmYjQyOGJjYTA5NSIKICAgIH0KICB9Cn0=", - "name": "Potato-Style Century Cake", - "furniture": "EPOCH_CAKE_YELLOW", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_YELLOW" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODc5NDUzNSwKICAicHJvZmlsZUlkIiA6ICI5ZDIyZGRhOTVmZGI0MjFmOGZhNjAzNTI1YThkZmE4ZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJTYWZlRHJpZnQ0OCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS80YTkzZDJiZjk5OWE3ZmUwNTJiZjY3OTVlMGEwYmM3NTU1Y2MxZTAxNGM2NjdmYTg2ZGM0MjFjYjE4NmQ1YjY3IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Thunder Helmet", + "category": "HELMET", + "tier": "EPIC", + "stats": { + "HEALTH": 200, + "DEFENSE": 170, + "STRENGTH": 25, + "SEA_CREATURE_CHANCE": 4 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 36 + } + ], + "npc_sell_price": 125000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 40 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 6 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 120 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 8 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 10 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 15 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 20 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 25 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 500 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 600 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 5 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 800 + } + ] + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "THUNDER_HELMET" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY0ODIwMCwKICAicHJvZmlsZUlkIiA6ICI4Zjk3NzhmNWVhMTY0MDVmOWEwMDM0YjU4YjljMWM2MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJ1bm5hbWVkYXV0aG9yIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JhMGE1YjUxMGE4ZDgyNGZmNDkxMGNhNWIyNjk4YWEzZDAzMGY4Mzc4MTBlOGQ3ZjBiYmNhOGNmMDZjZTIwMjMiCiAgICB9CiAgfQp9", - "name": "Cloudy Century Cake", - "furniture": "EPOCH_CAKE_WHITE", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_WHITE" + "material": "LEATHER_LEGGINGS", + "color": "36,221,229", + "name": "Thunder Leggings", + "category": "LEGGINGS", + "tier": "EPIC", + "stats": { + "HEALTH": 220, + "DEFENSE": 200, + "STRENGTH": 25, + "SEA_CREATURE_CHANCE": 4 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 36 + } + ], + "npc_sell_price": 175000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 40 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 6 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 120 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 8 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 10 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 15 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 20 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 25 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 500 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 600 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 5 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 800 + } + ] + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "THUNDER_LEGGINGS" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY4MzMwMCwKICAicHJvZmlsZUlkIiA6ICJlMmVkYTM1YjMzZGU0M2UxOTVhZmRkNDgxNzQ4ZDlhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJDaGFsa19SaWNlR0kiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjIzN2NkZmQ3ZDNmMjBlMGY1YjY5N2EyMGM4NTMyNGZiYjdiY2Q0MDllNjUzMzM3Y2NkNWE5Y2U4Y2NhZmMxZCIKICAgIH0KICB9Cn0", - "name": "Chocolate Century Cake", - "furniture": "EPOCH_CAKE_BROWN", - "tier": "UNCOMMON", - "museum": true, - "id": "EPOCH_CAKE_BROWN" + "material": "LEATHER_BOOTS", + "color": "36,221,229", + "name": "Thunder Boots", + "category": "BOOTS", + "tier": "EPIC", + "stats": { + "HEALTH": 170, + "DEFENSE": 150, + "STRENGTH": 25, + "SEA_CREATURE_CHANCE": 4 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 36 + } + ], + "npc_sell_price": 100000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 40 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 6 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 120 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 8 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 10 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 15 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 20 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 25 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 500 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 600 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 5 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 800 + } + ] + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "THUNDER_BOOTS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDUyNzI3OSwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDM1MDAyOGZkOTZhOThkNWIzM2QwODRkMjUyNGI3NmVkMGZjNmIyMWNjYzQwMDY0YTZkMmU3YmY5OTcxODYwZSIKICAgIH0KICB9Cn0", - "name": "Medium Gemstone Sack", - "tier": "RARE", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODY5MjYyMywKICAicHJvZmlsZUlkIiA6ICIzNmMxODk4ZjlhZGE0NjZlYjk0ZDFmZWFmMjQ0MTkxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJMdW5haWFuIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZjZWVkM2IwOGZhMzQ5ODJiYzNmYWFhOTkzNjk0MWI2Y2QwMGFiZDM3MTczZWU2N2IzY2UzYjllMThiZmNhNmMiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "Thunderbolt Necklace", + "tier": "EPIC", + "category": "NECKLACE", + "npc_sell_price": 75000, + "stats": { + "HEALTH": 40, + "DEFENSE": 30, + "SEA_CREATURE_CHANCE": 1.5 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 36 + } + ], "unstackable": true, - "id": "MEDIUM_GEMSTONE_SACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg4ODc3MSwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FhYzE1ZjZmY2YyY2U5NjNlZjRjYTcxZjFhODY4NWFkYjk3ZWI3NjllMWQxMTE5NGNiYmQyZTk2NGE4ODk3OGMiCiAgICB9CiAgfQp9", - "name": "Fine Jasper Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_JASPER_GEM" + "can_have_attributes": true, + "id": "THUNDERBOLT_NECKLACE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAxODU1MCwKICAicHJvZmlsZUlkIiA6ICIwNWQ0NTNiZWE0N2Y0MThiOWI2ZDUzODg0MWQxMDY2MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJFY2hvcnJhIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIzZDA2NGVjMTUwMTcyZDA1ODQ0YzExYTE4NjE5YzE0MjFiYmZiMmRkZDFkYmI4N2NkYzEwZTIyMjUyYjc3M2IiCiAgICB9CiAgfQp9", - "name": "Rough Jasper Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_JASPER_GEM" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzVhMzViNWNhMTUyNjg2ODVjNDY2MDUzNWU1ODgzZDIxYTVlYzU3YzU1ZDM5NzIzNDI2OWFjYjVkYzI5NTRmIn19fQ==", + "name": "Bird House", + "furniture": "BIRD_HOUSE", + "tier": "EPIC", + "id": "BIRD_HOUSE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAwMzU1NywKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E3MzUxMWU1MDRjMzE2YjEzOWVkYjM1ZmViZTczZWY1OTFjMGY0NTVlOGNhZjllZTM1M2JjMTJiNmMxNGE5MjIiCiAgICB9CiAgfQp9", - "name": "Flawed Jasper Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_JASPER_GEM" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDg0YTg2OWFlMjdjMmUyZjBiMWZiODBhOTM0YTBjMGY0MDYzNWNlNzVmNjM5YjlhMDJlOGM3NGM0MThlNzlkZSJ9fX0=", + "name": "Floral Lamppost", + "furniture": "FLORAL_LAMPPOST", + "tier": "EPIC", + "id": "FLORAL_LAMPPOST" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTIzNzA3NywKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzI2M2Y5OTFiOGUwMzhlNDZiOGVkNzYzMmY0NGNhMmUzMGMxNWY0Mjk3NzA3MGE4YzhkODcyOGUzZmMwNGZjN2MiCiAgICB9CiAgfQp9", - "name": "Perfect Jasper Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_JASPER_GEM" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTQzNjMzOTg5MSwKICAicHJvZmlsZUlkIiA6ICJmZTYxY2RiMjUyMTA0ODYzYTljY2E2ODAwZDRiMzgzZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNeVNoYWRvd3MiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODgxNTdjNzJkN2Q0ZmI5NTE2MTdmYzZhOGEzMDFmN2NkMGVlNmEzNzg2ZDZlYTIyNzk0OTk0NjIxMjRmMzM1YiIKICAgIH0KICB9Cn0=", + "name": "White Tiger Minion Skin", + "category": "COSMETIC", + "museum": true, + "id": "WHITE_TIGER_PERSONALITY" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAzNDI0NywKICAicHJvZmlsZUlkIiA6ICJiMGQ3MzJmZTAwZjc0MDdlOWU3Zjc0NjMwMWNkOThjYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJPUHBscyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mZjk5M2QzYTQzZDQwNTk3YjQ3NDQ4NTk3NjE2MGQwY2Y1MmFjNjRkMTU3MzA3ZDNiMWM5NDFkYjIyNGQwYWM2IgogICAgfQogIH0KfQ", - "name": "Flawless Jasper Gemstone", + "material": "INK_SACK", + "durability": 6, + "name": "Livid Dye", "tier": "EPIC", - "id": "FLAWLESS_JASPER_GEM" + "unstackable": true, + "id": "DYE_LIVID" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg2Mjc2NCwKICAicHJvZmlsZUlkIiA6ICJmMGIzYmRkMjEwNDg0Y2VlYjZhNTQyYmZiOGEyNTdiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJBbm9uaW1ZVFQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2ExZWU1ZmZjZTA0ZWI3ZGE1OTJkNDI0MTRmZjM1ZTFiZjM4MTk0ZDZiODJlMzEwZGJjNjI2MWI0N2ZiOWM5MSIKICAgIH0KICB9Cn0", - "name": "Fine Amethyst Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_AMETHYST_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQzNDMwMSwKICAicHJvZmlsZUlkIiA6ICIyMWUzNjdkNzI1Y2Y0ZTNiYjI2OTJjNGEzMDBhNGRlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJHZXlzZXJNQyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83MWRiNTkyNjA4OTU1NzhkMzdlNTk1MDU4ODA2MDJkZTk0MGIwODhlNWZmZjhkYTNlNjUyMDFkNzM5Yzg2ZTg0IgogICAgfQogIH0KfQ", - "name": "Flawed Amethyst Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_AMETHYST_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQ2NjY1MiwKICAicHJvZmlsZUlkIiA6ICI2MWVhMDkyM2FhNDQ0OTEwYmNlZjViZmQ2ZDNjMGQ1NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGVEYXJ0aEZhdGhlciIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kMzYyMzUyMWM4MTExYWQyOWU5ZGNmN2FjYzU2MDg1YTlhYjA3ZGE3MzJkMTUxODk3NmFlZTYxZDBiM2UzYmQ2IgogICAgfQogIH0KfQ", - "name": "Flawless Amethyst Gemstone", + "material": "INK_SACK", + "durability": 12, + "name": "Tentacle Dye", "tier": "EPIC", - "id": "FLAWLESS_AMETHYST_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQ0OTk5NCwKICAicHJvZmlsZUlkIiA6ICIxYTc1ZTNiYmI1NTk0MTc2OTVjMmY4NTY1YzNlMDAzZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZXJvZmFyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U0OTNjNmY1NDBjNzAwMWZlZDk3YjA3ZjZiNGM4OTEyOGUzYTdjMzc1NjNhYTIyM2YwYWNjYTMxNGYxNzU1MTUiCiAgICB9CiAgfQp9", - "name": "Rough Amethyst Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_AMETHYST_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI3NDk3OSwKICAicHJvZmlsZUlkIiA6ICJiNjM2OWQ0MzMwNTU0NGIzOWE5OTBhODYyNWY5MmEwNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJCb2JpbmhvXyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kODg2ZTBmNDExODViMThhM2FmZDg5NDg4ZDJlZTRjYWEwNzM1MDA5MjQ3Y2NjZjAzOWNlZDZhZWQ3NTJmZjFhIgogICAgfQogIH0KfQ", - "name": "Perfect Amethyst Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_AMETHYST_GEM" + "unstackable": true, + "id": "TENTACLE_DYE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDUxMDA5NCwKICAicHJvZmlsZUlkIiA6ICI1N2IzZGZiNWY4YTY0OWUyOGI1NDRlNGZmYzYzMjU2ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJYaWthcm8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTViYTgwNGI3YWU5MmM2NWIyZjQxZDE4YmU4OTlhM2JkMTM5NzcyZTNlM2M4MWMyZmM4YWRkYmIyNzUzNjk1MiIKICAgIH0KICB9Cn0=", - "name": "Large Gemstone Sack", + "material": "INK_SACK", + "durability": 1, + "name": "Brick Red Dye", "tier": "EPIC", "unstackable": true, - "id": "LARGE_GEMSTONE_SACK" + "id": "DYE_BRICK_RED" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDU0MTI2OCwKICAicHJvZmlsZUlkIiA6ICI4MmM2MDZjNWM2NTI0Yjc5OGI5MWExMmQzYTYxNjk3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb3ROb3RvcmlvdXNOZW1vIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY2NjI0YTdiZGVlNjI0MGRkZGJlZDgyNjgwOTBlMjM0ZDBiYTQ3MGVhODk2ZTg5MjlmNGVmYjIxM2YyMjY5NDQiCiAgICB9CiAgfQp9", - "name": "Small Gemstone Sack", - "tier": "RARE", + "material": "INK_SACK", + "durability": 13, + "name": "Wild Strawberry Dye", + "tier": "EPIC", "unstackable": true, - "id": "SMALL_GEMSTONE_SACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTIxNzI5OCwKICAicHJvZmlsZUlkIiA6ICI5MThhMDI5NTU5ZGQ0Y2U2YjE2ZjdhNWQ1M2VmYjQxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJCZWV2ZWxvcGVyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM5YjZlMDQ3ZDNiMmJjYTg1ZThjYzQ5ZTU0ODBmOTc3NGQ4YTBlYWZlNmRmYTk1NTk1MzA1OTAyODM3MTUxNDIiCiAgICB9CiAgfQp9", - "name": "Perfect Ruby Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_RUBY_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU0NDYyMywKICAicHJvZmlsZUlkIiA6ICIxZDUyMzNkMzg4NjI0YmFmYjAwZTMxNTBhN2FhM2E4OSIsCiAgInByb2ZpbGVOYW1lIiA6ICIwMDAwMDAwMDAwMDAwMDBKIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ2ZDgxMDY4Y2JkZjRhMzY0MjMxYTI2NDUzZDZjZDY2MGEwMDk1ZjljZDg3OTUzMDdjNWJlNjY3NDI3NzEyZSIKICAgIH0KICB9Cn0", - "name": "Flawed Ruby Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_RUBY_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzUyMzU5MywKICAicHJvZmlsZUlkIiA6ICJhNzdkNmQ2YmFjOWE0NzY3YTFhNzU1NjYxOTllYmY5MiIsCiAgInByb2ZpbGVOYW1lIiA6ICIwOEJFRDUiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTY3Mjk1OTAyOGYyNzRiMzc5ZDQzMGYwNjhmMGYxNWE0Zjc5M2VhYzEyYWZiOTRhZTBiNGU1MGNmODk1ZGYwZiIKICAgIH0KICB9Cn0", - "name": "Fine Ruby Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_RUBY_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU1ODUzNCwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QxNTliMDMyNDNiZTE4YTE0ZjNlYWU3NjNjNDU2NWM3OGYxZjMzOWE4NzQyZDI2ZmRlNTQxYmU1OWI3ZGUwNyIKICAgIH0KICB9Cn0", - "name": "Rough Ruby Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_RUBY_GEM" + "id": "DYE_WILD_STRAWBERRY" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU3MzU0NywKICAicHJvZmlsZUlkIiA6ICJmZDQ3Y2I4YjgzNjQ0YmY3YWIyYmUxODZkYjI1ZmMwZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkyNmEyNDhmYmJjMDZjZjA2ZTJjOTIwZWNhMWNhYzhhMmM5NjE2NGQzMjYwNDk0YmVkMTQyZDU1MzAyNmNjNiIKICAgIH0KICB9Cn0", - "name": "Flawless Ruby Gemstone", + "material": "INK_SACK", + "durability": 15, + "name": "Pure White Dye", "tier": "EPIC", - "id": "FLAWLESS_RUBY_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE1OTk2OSwKICAicHJvZmlsZUlkIiA6ICI4MmM2MDZjNWM2NTI0Yjc5OGI5MWExMmQzYTYxNjk3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb3ROb3RvcmlvdXNOZW1vIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RhMTk0MzZmNjE1MWE3YjY2ZDY1ZWQ3NjI0YWRkNDMyNWNmYmJjMmVlZTgxNWZjZjc2ZjRjMjlkZGYwOGY3NWIiCiAgICB9CiAgfQp9", - "name": "Rough Amber Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_AMBER_GEM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg0Njc1MCwKICAicHJvZmlsZUlkIiA6ICIyNzc1MmQ2ZTUyYmM0MzVjYmNhOWQ5NzY1MjQ2YWNhNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZW1pbWVkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRiMWNjZTIyZGUxOWVkNjcyN2FiYzVlNmMyZDU3ODY0Yzg3MWE0NGM5NTZiYmUyZWIzOTYwMjY5YjY4NmI4YjMiCiAgICB9CiAgfQp9", - "name": "Fine Amber Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_AMBER_GEM" + "unstackable": true, + "id": "DYE_PURE_WHITE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI5MzQ4MCwKICAicHJvZmlsZUlkIiA6ICI5OTdjZjFlMmY1NGQ0YzEyOWY2ZjU5ZTVlNjU1YjZmNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJpbzEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM3YWUyMzZjZGVjM2YyYTZmNTFlYWUxNWUyYzhmNjIyOGIzNGYxMzdkYTE1NjlmZWM5ZTgwM2Y5Y2Q4MTc1OWQiCiAgICB9CiAgfQp9", - "name": "Perfect Amber Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_AMBER_GEM" + "material": "INK_SACK", + "durability": 12, + "name": "Celeste Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_CELESTE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE0NTE4MywKICAicHJvZmlsZUlkIiA6ICIwYTUzMDU0MTM4YWI0YjIyOTVhMGNlZmJiMGU4MmFkYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJQX0hpc2lybyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8xNzNiY2ZjMzllYjg1ZGYxODQ4NTM1OTg1MjE0MDYwYTFiZDFiM2JiNDdkZWZlNDIwMTQ3NmVkYzMxNjcxNzQ0IgogICAgfQogIH0KfQ", - "name": "Flawed Amber Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_AMBER_GEM" + "material": "INK_SACK", + "durability": 12, + "name": "Aquamarine Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_AQUAMARINE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE3NjQ5NiwKICAicHJvZmlsZUlkIiA6ICJiNWRkZTVmODJlYjM0OTkzYmMwN2Q0MGFiNWY2ODYyMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJsdXhlbWFuIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzlkY2U2MmY3MGFjMDQ2Yjg4MTExM2M2Y2Y4NjI5ODc3Mjc3NzRlMjY1ODg1NTAxYzlhMjQ1YjE4MGRiMDhjMGQiCiAgICB9CiAgfQp9", - "name": "Flawless Amber Gemstone", + "material": "INK_SACK", + "durability": 5, + "name": "Midnight Dye", "tier": "EPIC", - "id": "FLAWLESS_AMBER_GEM" + "unstackable": true, + "id": "DYE_MIDNIGHT" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDMzOTEyNzEwNSwKICAicHJvZmlsZUlkIiA6ICJjOTAzOGQzZjRiMTg0M2JiYjUwNTU5ZGE3MWFjMTk2MiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUQk5SY29vbGNhdCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS84YTg5ZGUxODExMTE1ZTFhZWUzNzNmNmE3ODQ1YmQzZjgxYzdkYmUzMDJlNGFmYzdlOGQ2YjhhMTIwMGM3MjEzIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", - "name": "Extra Large Gemstone Sack", + "material": "INK_SACK", + "durability": 4, + "name": "Bingo Blue Dye", "tier": "EPIC", "unstackable": true, - "id": "EXTRA_LARGE_GEMSTONE_SACK" + "id": "DYE_BINGO_BLUE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTYyMTA0NSwKICAicHJvZmlsZUlkIiA6ICI0ZWQ4MjMzNzFhMmU0YmI3YTVlYWJmY2ZmZGE4NDk1NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJGaXJlYnlyZDg4IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgyMjgyYzZiYjgzNDNlMGYwZDYxZWUwNzQ3ZGFkYTc1MzQ0ZjMzMmU5ZmYwYWNhYTNhZGNkZjA5MzIxZDNkZCIKICAgIH0KICB9Cn0", - "name": "Flawed Jade Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_JADE_GEM" + "material": "INK_SACK", + "durability": 10, + "name": "Celadon Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_CELADON" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTYzODM3OCwKICAicHJvZmlsZUlkIiA6ICIyYzEwNjRmY2Q5MTc0MjgyODRlM2JmN2ZhYTdlM2UxYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJOYWVtZSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zYjRjMmFmZDU0NGQwYTYxMzllNmFlOGVmOGYwYmZjMDlhOWZkODM3ZDBjYWQ0ZjVjZDBmZTdmNjA3YjdkMWEwIgogICAgfQogIH0KfQ", - "name": "Rough Jade Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_JADE_GEM" + "material": "INK_SACK", + "durability": 9, + "name": "Cyclamen Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_CYCLAMEN" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTY1NzA0NywKICAicHJvZmlsZUlkIiA6ICIxYWZhZjc2NWI1ZGY0NjA3YmY3ZjY1ZGYzYWIwODhhOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMb3lfQmxvb2RBbmdlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mODlmNzVlMGIwMDM3OGE1ODNkYmJhNzI4ZGNkYzZlOTM0NmYzMWRkNjAxZDQ0OGYzZDYwNjE1Yzc0NjVjYzNlIgogICAgfQogIH0KfQ", - "name": "Flawless Jade Gemstone", + "material": "INK_SACK", + "durability": 1, + "name": "Carmine Dye", "tier": "EPIC", - "id": "FLAWLESS_JADE_GEM" + "unstackable": true, + "id": "DYE_CARMINE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI1NjAxMiwKICAicHJvZmlsZUlkIiA6ICJmZDQ3Y2I4YjgzNjQ0YmY3YWIyYmUxODZkYjI1ZmMwZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNmY2VkNzk3NzM4MmJmNzFkNGVlMTdmZjViOTE5ZTBlYjc5NzIwODNjNGNjY2ZhMTc1Yzg3NTNhZTQwYmEwMDYiCiAgICB9CiAgfQp9", - "name": "Perfect Jade Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_JADE_GEM" + "material": "INK_SACK", + "durability": 13, + "name": "Byzantium Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_BYZANTIUM" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg3NjAxNywKICAicHJvZmlsZUlkIiA6ICI0ZTMwZjUwZTdiYWU0M2YzYWZkMmE3NDUyY2ViZTI5YyIsCiAgInByb2ZpbGVOYW1lIiA6ICJfdG9tYXRvel8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjI4ZjFjMGM1MDkyZTEyZDMzNzcwZGY0NWM1ODQ1YTk2MTA4ODYwMzliMzRhYmU5M2ExNmM1ZTk0MmRmYzhlNCIKICAgIH0KICB9Cn0", - "name": "Fine Jade Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_JADE_GEM" + "material": "ICE", + "name": "Iceberg Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_ICEBERG" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIzMjc2OSwKICAicHJvZmlsZUlkIiA6ICI5MWZlMTk2ODdjOTA0NjU2YWExZmMwNTk4NmRkM2ZlNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJoaGphYnJpcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS85NTdjZmE5Yzc1YmE1ODQ2NDVlZTJhZjZkOTg2N2Q3NjdkZGVhNDY2N2NkZmM3MmRjMTA2MWRkMTk3NWNhN2QwIgogICAgfQogIH0KfQ", - "name": "Flawless Sapphire Gemstone", + "material": "INK_SACK", + "durability": 14, + "name": "Mango Dye", "tier": "EPIC", - "id": "FLAWLESS_SAPPHIRE_GEM" + "unstackable": true, + "id": "DYE_MANGO" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIwMzYzNiwKICAicHJvZmlsZUlkIiA6ICI4OGU0YWNiYTQwOTc0YWZkYmE0ZDM1YjdlYzdmNmJmYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJKb2FvMDkxNSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS84YTBhZjk5ZThkODcwMzE5NGE4NDdhNTUyNjhjZjVlZjRhYzRlYjNiMjRjMGVkODY1NTEzMzlkMTBiNjQ2NTI5IgogICAgfQogIH0KfQ", - "name": "Flawed Sapphire Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_SAPPHIRE_GEM" + "material": "INK_SACK", + "durability": 5, + "name": "Dark Purple Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_DARK_PURPLE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzkwNDYxNSwKICAicHJvZmlsZUlkIiA6ICJmMjU5MTFiOTZkZDU0MjJhYTcwNzNiOTBmOGI4MTUyMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJmYXJsb3VjaDEwMCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zNjE2MWRhYTM1ODllYzljODE4NzQ1OWFjMzZmZDRkZDI2NDZjMDQwNjc4ZDNiZmFjYjcyYTIyMTBjNmM4MDFjIgogICAgfQogIH0KfQ", - "name": "Fine Sapphire Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_SAPPHIRE_GEM" + "material": "INK_SACK", + "name": "Pure Black Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_PURE_BLACK" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTE5NzMwNSwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhlOTNlYmFjYjYwYjcxNzkzMzU1ZmRlMGQ0YmJhNDNhOWM1ZWMwOWMzZjM4ODk3YzQ4YzFmODU3NTIzYTBhMjkiCiAgICB9CiAgfQp9", - "name": "Perfect Sapphire Gemstone", - "tier": "LEGENDARY", - "id": "PERFECT_SAPPHIRE_GEM" + "material": "INK_SACK", + "durability": 9, + "name": "Nadeshiko Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_NADESHIKO" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIxNDY1MiwKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NmY2ViZTU0ZGJjMzQ1ZWE3ZTIyMjA2ZjcwM2U2YjMzYmVmYmU5NWI2YTkxOGJkMTc1NGI3NjE4OGJjNjViYjUiCiAgICB9CiAgfQp9", - "name": "Rough Sapphire Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_SAPPHIRE_GEM" + "material": "INK_SACK", + "durability": 2, + "name": "Emerald Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_EMERALD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjQxMjI5MSwKICAicHJvZmlsZUlkIiA6ICI1N2IzZGZiNWY4YTY0OWUyOGI1NDRlNGZmYzYzMjU2ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJYaWthcm8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDEwOTY0ZjNjNDc5YWQ3ZDlhZmFmNjhhNDJjYWI3YzEwN2QyZDg4NGY1NzVjYWUyZjA3MGVjNmY5MzViM2JlIgogICAgfQogIH0KfQ", - "name": "Flawless Topaz Gemstone", + "material": "INK_SACK", + "durability": 10, + "name": "Nyanza Dye", "tier": "EPIC", - "id": "FLAWLESS_TOPAZ_GEM" + "unstackable": true, + "id": "DYE_NYANZA" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjM4MDM3MywKICAicHJvZmlsZUlkIiA6ICJmMGIzYmRkMjEwNDg0Y2VlYjZhNTQyYmZiOGEyNTdiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJBbm9uaW1ZVFQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjYzOTI3NzNkMTE0YmUzMGFlYjNjMDljOTBjYmU2OTFmZmVhY2ViMzk5YjUzMGZlNmZiNTNkZGMwY2VkMzcxNCIKICAgIH0KICB9Cn0", - "name": "Flawed Topaz Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_TOPAZ_GEM" + "material": "INK_SACK", + "durability": 11, + "name": "Pure Yellow Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_PURE_YELLOW" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjM5ODMwNiwKICAicHJvZmlsZUlkIiA6ICJkODAwZDI4MDlmNTE0ZjkxODk4YTU4MWYzODE0Yzc5OSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ0aGVCTFJ4eCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zZmQ5NjA3MjJlYzI5YzY2NzE2YWU1Y2E5N2I5YjZiMjYyODk4NGUxZDZmOWQyNTkyY2QwODk5MTQyMDZhMWIiCiAgICB9CiAgfQp9", - "name": "Rough Topaz Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_TOPAZ_GEM" + "material": "INK_SACK", + "durability": 4, + "name": "Pure Blue Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_PURE_BLUE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzkxOTUyNywKICAicHJvZmlsZUlkIiA6ICJjMGYzYjI3YTUwMDE0YzVhYjIxZDc5ZGRlMTAxZGZlMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkyY2I2ZTUxYzQ2MWU3MzU5NTI2YmVhNWUwNjIwOWNkZGRlN2M2NDY5YTgxOWYzNDA1Y2YwYTAzOGMxNTk1MDIiCiAgICB9CiAgfQp9", - "name": "Fine Topaz Gemstone", - "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_TOPAZ_GEM" + "material": "INK_SACK", + "durability": 1, + "name": "Flame Dye", + "tier": "EPIC", + "unstackable": true, + "id": "DYE_FLAME" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTE3ODQ1MywKICAicHJvZmlsZUlkIiA6ICJiYzRlZGZiNWYzNmM0OGE3YWM5ZjFhMzlkYzIzZjRmOCIsCiAgInByb2ZpbGVOYW1lIiA6ICI4YWNhNjgwYjIyNDYxMzQwIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNkYTZlY2RjYmMzZmUzNTVjYTA2MTExOTJhM2ZiZDM1ZGQ1NjM1ZDVmY2RmM2ZiYzc5ZWQyYmMxZjRhMDE3ZmUiCiAgICB9CiAgfQp9", - "name": "Perfect Topaz Gemstone", + "material": "INK_SACK", + "durability": 14, + "name": "Necron Dye", "tier": "LEGENDARY", - "id": "PERFECT_TOPAZ_GEM" + "unstackable": true, + "id": "DYE_NECRON" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdlYTZhOGY1MjRiZTk4OWYyMzRhZGM5MDg3NzllZTM2YTAwMjA5ZjEyNjM5ZjFmZDAzYTljZmYxYzA5YjMzOWEifX19", - "name": "Greater Backpack", + "material": "INK_SACK", + "durability": 15, + "name": "Bone Dye", "tier": "EPIC", - "id": "WHITE_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YwZDkzMWI3ZjE1MzM1NDFjYTNiOGM0MDFmZTk4NWNiZWUzZmZhYmI2Y2Y2MTQ1NTM1ODhmNjZmMmUwM2MwN2MifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "PINK_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzJkOWE4ZDJhOTQ1N2UzNWJhNmEzOWExNDFjMGNkNmZkOTA2NWUyZDM3YzYzMzJlZWFhMDgxMGIxYTc0OGQ4ZWIifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "LIGHT_BLUE_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4N2I0MWNhODk2ZmU3NGNiODcwNzhhMWQwOTc2ZmY5MzUxNjY0YjJmZGE1YWJiNDhjNTU4YWNkYmVkMjcxYmEifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "BLUE_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QxNjk5ZmE0YTE1MTk2OTY4NzA1MzlmNWU1NGY1NDgzNzJmYmIzNGNlMDRjOGVlNGVmYjhjZTdmMjk0OTFiNTYifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "LIGHT_GREY_SMALL_BACKPACK" + "unstackable": true, + "id": "DYE_BONE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YyMzA0MGE0YmM0NTM5ZTk0YzRiZTRhMDQxNDgwZTk2Y2M4NzU0NDY0MDEyYWY5ZjNiYTdmZjE4ZjY0NmRkYjAifX19", - "name": "Large Backpack", + "material": "LEATHER_BOOTS", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Boots", + "category": "BOOTS", "tier": "EPIC", - "id": "PINK_LARGE_BACKPACK" + "stats": { + "DEFENSE": 55, + "HEALTH": 100, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 150 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "STARRED_ADAPTIVE_BOOTS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NlMTc2ZTk4MmI1YTI4Y2RiNWEwZTJlNWE2ZGE2YmU5YzFmYmUyZTMwYTMzMzgyOTczMjc3YTk2ZmZkZTRkODQifX19", - "name": "Large Backpack", + "item_durability": -1, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTZmMGQzNGFhYTcxNDM3Nzk4MzcwMWMxYmJlOWIzZjZlN2IzMGNiMzg1NzFiYzBhMmZkNzU0MWQ3ZWRiMTYzNyJ9fX0K", + "name": "Adaptive Helmet", + "category": "HELMET", "tier": "EPIC", - "id": "YELLOW_LARGE_BACKPACK" + "stats": { + "DEFENSE": 60, + "HEALTH": 120, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 150 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "STARRED_ADAPTIVE_HELMET" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZkZTY1NGM5MGVlYjRhODFlNmFhZTdkODBkZDU2ZDFkNWQwOTkxOTlkNjEwZTA5YzhlYzUwYjYxYTAxMjI0OGMifX19", - "name": "Large Backpack", + "item_durability": -1, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTZmMGQzNGFhYTcxNDM3Nzk4MzcwMWMxYmJlOWIzZjZlN2IzMGNiMzg1NzFiYzBhMmZkNzU0MWQ3ZWRiMTYzNyJ9fX0K", + "name": "Adaptive Helmet", + "category": "HELMET", "tier": "EPIC", - "id": "LIGHT_BLUE_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNlNzY5OTkzZjA0ZGIwMTBhNDUxMGM4YTM5NzRjMThlMzcyMDliMzVjZTg1OWMxYjU4ZDQ5YTM4MmFmYjJhMWQifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "GREEN_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyNDk2NjgsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYyZjNiM2EwNTQ4MWNkZTc3MjQwMDA1YzBkZGNlZTFjMDY5ZTU1MDRhNjJjZTA5Nzc4NzlmNTVhMzkzOTYxNDYifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU0OGE5MThhMDJmZWIxYjM5ZDBjYjZjM2NkNDVkYTNjYmQwYTc1NTEyMjgxYjI4NTk2YWFmMGJlYWMzYWZjMzAifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "BLACK_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MyZTMxNDRmNDNhYzhiN2FhNjdhNjJlYzk2OWFlOTdjYjI4ZjNhZjc1ZmEwODcyZDM1NDRkOGZiYjBhYzUwMDUifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "WHITE_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UxYjg1YzVkNmRmZDIyMjlkZTkwNGQ1MzFhNDFjMDcyMjMyMGE0ODQ4ZmY3YTdmYmVjNTY1NTUxYzU2NDRkZDAifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "RED_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyMTY1MzUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIxZDgzN2NhMjIyY2JjMGJjMTI0MjZmNWRhMDE4YzNhOTMxYjQwNjAwODgwMDk2MGE5ZGYxMTJhNTk2ZTdkNjIifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I0N2QwODdlZDc1YmExZWY4NGVmNzAxZGRhMDg0N2IyOGUxYjc4N2NkYzI2YjdjOGQ2ODc5MGNkYWM3MjA3NTgifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "CYAN_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczMmFjNTFjYjI5MjFjNWNhYTlhNjkwY2FjOWUxMzcyMzc5NTJiMmRkODA2ZjRmNDBmMzIyNjA0MjIxOTQxMjgifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "YELLOW_GREATER_BACKPACK" + "stats": { + "DEFENSE": 50, + "HEALTH": 110, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 150 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "DEFENSIVE" + } + ], + "id": "ADAPTIVE_HELMET" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Y3NDBlODA5ODc3NjRmMmUxYzc0NTA0OWY0OTY1ZDFkODI1Mjk3OWY1NDZiNGQ1OWQ3MzZkZTJiZTI5YjU0NzAifX19", - "name": "Greater Backpack", + "material": "LEATHER_CHESTPLATE", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Chestplate", + "category": "CHESTPLATE", "tier": "EPIC", - "id": "LIGHT_GREY_GREATER_BACKPACK" + "stats": { + "DEFENSE": 85, + "HEALTH": 170, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 20 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 300 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "DEFENSIVE" + } + ], + "id": "ADAPTIVE_CHESTPLATE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkxZDE3N2Q5N2RiZmViZTI1OTY5NTc2NzI2NjNkYWUzZjFhZjJjMTM0MjNlMWUyNDJkMjI5ODMyODM2MjM4MmMifX19", - "name": "Large Backpack", + "material": "LEATHER_LEGGINGS", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Leggings", + "category": "LEGGINGS", "tier": "EPIC", - "id": "GREY_LARGE_BACKPACK" + "stats": { + "DEFENSE": 75, + "HEALTH": 155, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 200 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "STARRED_ADAPTIVE_LEGGINGS" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyODAwNzAsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRkMDViYWE1ZGRhYTcwYmY0NTJmNTM1NDQ3MTFjYTUxMTZiOGFiYmQ2MjE4YjllMWFlZDk0YjFlNmIwOTQwMjIifX19", - "name": "Large Backpack", + "material": "LEATHER_CHESTPLATE", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Chestplate", + "category": "CHESTPLATE", "tier": "EPIC", - "id": "LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgwNTZkY2EyOGE5MTI5OWMyOWM3MTg5YWYyMjE3OTNkYTg4NThjZmUwNzkzMmE2ZDE0ODc5YjhhMmRmM2QyZiJ9fX0", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "GREY_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU4ZWMzMTA5MGM1MjBkY2E1MDAxMTJhZjgzZDZkYjhiNWU3MDM3YTc0ODIyOWY0OWY1ZGY3ZjBmY2U2YmZjOWIifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "ORANGE_SMALL_BACKPACK" + "stats": { + "DEFENSE": 95, + "HEALTH": 180, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 20 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 300 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "STARRED_ADAPTIVE_CHESTPLATE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmY2Q1ZmNlZDcwNmY3Njk0NTAxMjQ1NzUwM2FkZGFmNzY1YzNiYWUzOWM4Zjk2MjJmM2Y0Y2VmZGVlOWI1MjkifX19", - "name": "Greater Backpack", + "material": "LEATHER_LEGGINGS", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Leggings", + "category": "LEGGINGS", "tier": "EPIC", - "id": "PURPLE_GREATER_BACKPACK" + "stats": { + "DEFENSE": 65, + "HEALTH": 145, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 200 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "DEFENSIVE" + } + ], + "id": "ADAPTIVE_LEGGINGS" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVkNWMzYjE0MDY3NzhlYTZhYjA4MWQwMDQ3ODI2ZmY0ZGNhMWVhMGJlMmY3NmU5YjllMDdjMTgxZjYzMzIwNDAifX19", - "name": "Greater Backpack", + "material": "LEATHER_BOOTS", + "item_durability": -1, + "color": "191,188,178", + "name": "Adaptive Boots", + "category": "BOOTS", "tier": "EPIC", - "id": "GREEN_GREATER_BACKPACK" + "stats": { + "DEFENSE": 45, + "HEALTH": 90, + "STRENGTH": 15, + "INTELLIGENCE": 15 + }, + "npc_sell_price": 20000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 150 + } + ] + ], + "gear_score": 50, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 3 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "DEFENSIVE" + } + ], + "id": "ADAPTIVE_BOOTS" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRmOTc2YzlhNGQyMzc2MzE4ZTdhNjc2YWQ4MWY2ZTExZjMyMGFiZWYzY2QzNTM2OGEwYTliYTI3ZTMyMDM0MGEifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "BLUE_SMALL_BACKPACK" + "material": "DIAMOND_CHESTPLATE", + "name": "Perfect Chestplate - Tier III", + "category": "CHESTPLATE", + "tier": "RARE", + "stats": { + "DEFENSE": 200 + }, + "npc_sell_price": 1638400, + "dungeon_item_conversion_cost": { + "essence_type": "DIAMOND", + "amount": 70 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 30 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 80 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 120 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 180 + } + ] + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 9 + } + ], + "gemstone_slots": [ + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + } + ], + "id": "PERFECT_CHESTPLATE_3" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg0OTczZjkwZDg2OTc3MmVlMWNmNDRkNGYyMmY1NTJiMzIwODQ1OTBkNTdmZDkxZDY4M2VlMTY4MzlhZGM3ZWEifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "BROWN_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ3NDQ0NDExOWJhNzM1N2EyZGExYzQyMmRmMjQ0ZjMwNTY4MTQ0MTM1MTcyY2RjNDNiNjA2ZjBmOGY2NDNkNTgifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "GREEN_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzEyNWU2NjY3NzYzNDliNTk1NDkyMDI5Y2YwZWNiOWE3MjQ3Y2ZhNWZlNGMwNDhmYjE0YWUyY2EyN2Y0ZjlkM2UifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "BROWN_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdlYWY4NWE4MGE2NmZjMTQyMmRjYWU3YmNjYzgxZDllZWNkYTg4OGM4NTE4ZDMwZTQ0NTVhMzE1OTJkOWEyYjEifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "RED_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmNThlMjk3YjllZTAzMzYwNzEwZTVhMTY4OTFiNTE4MjllNTg2NTFmODJmZWM0NDFhM2Y5YWY0ZTc0NmIxMmUifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "LIME_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E4YzM4MDM1NThkYjI3OWViZTQwOWNlMjYxOTM3YzFjOWI1MzcxYWExNzg2NTU1ZjY5YjU1YmIyMjNmOTMyNCJ9fX0", - "name": "Large Backpack", - "tier": "EPIC", - "id": "BLUE_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyMTU3ZjUyMDNhNmQ1ODQyMTA0ZjdjNGExODZjMWYyOGYyM2I3OGUwMjU0NzUxNWFmNjA3NzgwYjA1NWMxNDgifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "BROWN_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyMTY1MzUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIxZDgzN2NhMjIyY2JjMGJjMTI0MjZmNWRhMDE4YzNhOTMxYjQwNjAwODgwMDk2MGE5ZGYxMTJhNTk2ZTdkNjIifX19", - "name": "Jumbo Backpack", - "tier": "LEGENDARY", - "id": "JUMBO_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZiMGI5OWFjMzI3MGYwNTgxNTk5NGIxOWI0N2VlN2UxZGIyNTk1NGJjMjFkMjJkYzQzMGFmOWFlNTVjMDQ1YjgifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "MAGENTA_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3YTAxNWJmYmQ2NTA3NTBiMmY1MjIzNTQ2ODdlMDUzNTQ0M2RmZTY3Y2U4MzIwMmE4Yjc2ZWRjZTQyZTYxMTQifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "LIGHT_GREY_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZiM2UwMmI5NThmZGRlOTRlYjlhY2NlNGVlMGNiMzcwMTljMzc2MjFhODg2MmM0MjM0NzAyNzM5Y2NmOWY4NWIifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "PURPLE_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNlZWU2NzgwN2YxYmFlYjU2NWFkMTRjYjQ5MzdlZjQzMzA2MjM0MDlhNTA1ZGI3Mjg0ZjM0YzI1NzdlZDU1NmYifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "CYAN_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NkYTJhNWIyNDdjMWQwYjJhMWU3MGE4OTQxN2YwMDNiYjZjNDRmZjczODhhYzJmY2MzZjQ3MDBlNTZiMjI5NWYifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "ORANGE_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUzMmNlMzQwZDJmMmI1MGY0OWM3NjAyYmYwYTQyMGUzOTczMzc0YjNmY2Y4MTM3OWQyMDZmMmJmMzU4YWVkMCJ9fX0", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "BROWN_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzk5ODVmN2ExZWU5NmIwMGViMTVjMmZkZDFlM2RkOWE0OWJmMjMzZmMyOGYxNDM0MzAzNDUyNjgyNzM2Y2M0ZmIifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "RED_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QzYWFiNTg1YWZlNDdhZjk5NTA0YzE2OWJhZGY0ZTg5MzczMjA0MDM0MzMxYWNmZjNlY2M1OWE3OWZiN2Q0N2QifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "MAGENTA_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUzOTRhOTg1ZmFiOWZmMGFmNGExZTZmNmZmYjQxYThhM2YxMTQ1NTQ4ODcxMGZmZjc0OWE5NWU4NDc5ZDUxYjYifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "ORANGE_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzM2NlZmFiOGI1Y2IzYjc3NDU2ZjZiMDc3MDMyYTJjZTA2NjJkODNhYmQ4OGQ1OTU3YzI3ZmJlOTQ5NTk0ZTYifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "GREY_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzllZmE1MTBmNGE5MTIyYTY4NjVkYTBiMzZlZWZlYjc3ZDdhOTc1NWVmMWM1Mjk0M2MyODQxMGRhMGIxMDIyMjUifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "WHITE_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzliZjdhNDg3NTA2ZTU3YTdkNTkyMzYwNmVmNjRlOWYxZmJjMmZkYTVkN2JkZThkMWViYzc0NzM0MDA5ZTc2OWEifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "LIGHT_BLUE_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JiZDdkYjAzMTNmZTgwZDkyN2JiM2FiYTA0MDc1YzY5ZjUyMDBmNTU2Mzc0NTllMjJiOGQ5MzNmNmFlNjczM2YifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "RED_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JhMDU4OTMxYTkzMTBkODU3NTE0YmQzOGEzM2NkZTBmM2NlYTVhYmIxYTQwZGM1NmEzNWFjZjUyMGViNjE0ZDQifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "MAGENTA_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgwYmU3NGQzNjdiNzYxZGY5ZjI5NjY2N2MyNTg5ZDcwZTIwYzU1NTMxODk1MDQ1MTAxNWIwZWQxYTFlMGZhY2UifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "YELLOW_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyZTdhZTExOTE3ZGMxZTAyZTU4YTE2YTFhMDMwYTVmZDZkYTgwYTZiMjEwNjM2NmMwOThkMDcxNzU2Mzk5ZmUifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "LIME_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhN2RhOGE1Yzc3ZTM3NjZiY2U5ZTkwNmFiYjAxMDg5Nzc4NjFkNjEwYThmNjA3Y2UwNmRjMmRmY2U4NzhiMmMifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "LIGHT_GREY_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYwNWJkOGRkOTBlMWY0YTU2MzNkYjY5YzVmZGE2MzdjMzA3Yzg4YTZjMTQzNjcyNTJmODMzYzBhZjRjMjFhOGQifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "LIME_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RlY2RhMmI5ZmM4MjAyZmZhZDExMDA4N2NkYTU2ZDVhMWQ3ZmNmYzBlMzA3YzhhZGI3OWVjYTBhN2EyN2NjMTMifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "CYAN_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNjNjg5Yzk3YTQ5MTU5M2MyOGMwMTQ2N2JkYTdhYzdkNmM2OGE3NDJmM2FmMWM2NjYwYjkzMDVkMzkzNzgxODcifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "YELLOW_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4MTNkZTFhZTg0ODdiOGJkMzY5ZjczMjFmYWQ0M2RkMjlmYWQ0Nzg2MjAwNjQxM2I1ZGU2NjM2MGU0MmZiZDgifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "MAGENTA_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JiZGQ5M2RmYjJkODU3Y2MwNmExODQzNTMwMjY0MGY5ZWMwNmE3MTkzOTM0M2EyMGFmMGI3OWJiMzhkMTQyNTkifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "BLACK_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U4NTJiM2JlOTc4YzdkZDcyOGNhZGVmMTAyMzc0MjAwODlhM2UzOWI4MDI2MTMwM2U4YjlhMzZiN2I3ZTAxZGIifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "ORANGE_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU2Y2E5M2VjMzFiZDYxOTNhZGEyZTU5ZGVjNjM2MzM0MWZhYTUxYWM0MTM2NGIyMTQ3NWFjMmZiYjU1YjZlNDQifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "PINK_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIzYzM5YzRjOTdmMzRmZTM5Zjg3ZWM1NmZmYzc3MTY1MjRiYjk2NmI0MzdhZDQ1NjA5YmUwY2FkZWE0MjcwYzMifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "PURPLE_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FlNTU4OGQwNDg0YjI2ZTJjMmFjNjBkZmU2NTk2MDM4Y2M4ZmQyODgyZjZlZDEzNWYyY2M5MDk3ZWI0MjBhZGEifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "CYAN_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UwZDczNDk0OGFhNWJhN2ExYmZmYzE2ZDMyMDU2MGYyN2IyZDQzNzc3NTRmMjIyOGJhZGIwMDhhODE3ZjNiYTUifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "GREY_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkxYTcwZjUyM2UzYjk3Mjg0M2I2MzhjN2I0NTk3Yjk4NzAyODQ5ODM0NzU3MzAyOWM3NDc1MTY3YTMyNDdhNzUifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "PINK_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM1NmYzMTk1YjI4OWJkMjRhNWNjZGFiN2ZhYTU2NWYxNzFlZjA0Y2FjOTE2OTFhYTNlZTg5NTY5YzgwNDVhZWIifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "LIME_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YxYTIyYzllYjg2YjEzY2UzNDNkNWRkNWM2NTlmMDAwYzVhNzVhZTkxZTI5YTQwYmRkNDNhNjk2NDk2N2MwZSJ9fX0", - "name": "Medium Backpack", - "tier": "RARE", - "id": "LIGHT_BLUE_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QzMGRlNmE1N2Q2OTY4M2ZjZjVlM2MzMTQ4MjRmNTExNDdhMDI4NTY5NDZkYjEwMmEwZjkyZDA3MWVhMTkwZDAifX19", - "name": "Small Backpack", - "tier": "UNCOMMON", - "id": "PURPLE_SMALL_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzMzMTljZjRhNzdlZDhiNTEyNjBkZmUwNmE1NmUxNWY3NjJmMDhmYTFjMGY5MTAxZmVhMjc1MTQ1NDBkZmRhYTkifX19", - "name": "Medium Backpack", - "tier": "RARE", - "id": "GREEN_MEDIUM_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUxOWZiZjBlNTk1NDQ0YjZjZGI5MDIwNzQ4MWVmMjcwY2RkMzc5NmYwN2JlYTQzOWM1OTllYzk1MjgxOTFiZjAifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "BLACK_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIzMzAwNzksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZTE4NzE0NWVlNzMyZTdjMDA5MDVhOWMxNmVkMWU0M2JhODhkNTYyNGE2ZjRhZjgyOWYxMDQ1M2ZjYzkxNjUifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFmM2U2NDQyODgxMGU5M2VjZWJjZGVlMjZkNDhhZmExNzA1NjUyMDI4Y2YyNTY5NGMzNjljZDIwNDQyYmE1MTcifX19", - "name": "Large Backpack", - "tier": "EPIC", - "id": "WHITE_LARGE_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyYTc5M2U1ZTAxNzRmYzYzZGRmY2JhM2M1NDMzOGE5NWYyN2Y4NDY2YjA5Y2UzNWNmMGNlZDIzNmU1MWJmMDcifX19", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "BLACK_GREATER_BACKPACK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MzZmUxZTczZWIzZjI4N2Y2NzQ4YmU4YTQ0MWM4NTM0NThmN2ZlYjNhNDljMWE2YzY4NjFjMmUyYWZjZTY1MSJ9fX0", - "name": "Greater Backpack", - "tier": "EPIC", - "id": "BLUE_GREATER_BACKPACK" - }, - { - "material": "DIAMOND_CHESTPLATE", - "name": "Perfect Chestplate - Tier III", - "category": "CHESTPLATE", - "tier": "RARE", - "stats": { - "DEFENSE": 200 - }, - "npc_sell_price": 1638400, - "dungeon_item_conversion_cost": { - "essence_type": "DIAMOND", - "amount": 70 - }, - "upgrade_costs": [ - [ - { - "essence_type": "DIAMOND", - "amount": 30 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 50 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 80 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 120 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 180 - } - ] - ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 9 - } - }, - "gemstone_slots": [ - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - } - ], - "id": "PERFECT_CHESTPLATE_3" - }, - { - "material": "DIAMOND_HELMET", - "name": "Perfect Helmet - Tier V", - "category": "HELMET", + "material": "DIAMOND_HELMET", + "name": "Perfect Helmet - Tier V", + "category": "HELMET", "tier": "EPIC", "stats": { "DEFENSE": 190 @@ -8832,41 +9137,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 11 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -8896,41 +9207,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 10 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -8960,41 +9277,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9024,41 +9347,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9088,41 +9417,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 10 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9152,41 +9487,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 17 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9216,41 +9557,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9280,41 +9627,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9344,41 +9697,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9408,41 +9767,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 10 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9472,41 +9837,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9536,41 +9907,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9600,41 +9977,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 11 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9664,41 +10047,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9728,41 +10117,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 7 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9792,41 +10187,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9856,41 +10257,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 17 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9920,41 +10327,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -9984,41 +10397,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 11 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10048,41 +10467,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10112,41 +10537,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10176,41 +10607,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10240,41 +10677,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10304,41 +10747,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10368,41 +10817,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 17 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10432,41 +10887,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 11 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10496,41 +10957,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10560,41 +11027,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10624,41 +11097,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 7 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10688,41 +11167,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10752,41 +11237,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 140 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 21 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10816,41 +11307,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 7 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10880,41 +11377,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -10944,41 +11447,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11008,41 +11517,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11072,41 +11587,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11136,41 +11657,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11200,41 +11727,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11264,41 +11797,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11328,41 +11867,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 21 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11392,41 +11937,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 150 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 21 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11456,41 +12007,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 160 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11520,41 +12077,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 180 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 21 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -11569,260 +12132,1286 @@ "id": "PERFECT_CHESTPLATE_12" }, { - "material": "DIAMOND_LEGGINGS", - "name": "Perfect Leggings - Tier IX", - "category": "LEGGINGS", - "tier": "LEGENDARY", - "stats": { - "DEFENSE": 300 - }, - "npc_sell_price": 3993600, - "dungeon_item_conversion_cost": { - "essence_type": "DIAMOND", - "amount": 60 - }, - "upgrade_costs": [ - [ - { - "essence_type": "DIAMOND", - "amount": 25 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 40 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 65 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 110 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 160 - } - ] - ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 17 - } - }, - "gemstone_slots": [ - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - } - ], - "id": "PERFECT_LEGGINGS_9" + "material": "DIAMOND_LEGGINGS", + "name": "Perfect Leggings - Tier IX", + "category": "LEGGINGS", + "tier": "LEGENDARY", + "stats": { + "DEFENSE": 300 + }, + "npc_sell_price": 3993600, + "dungeon_item_conversion_cost": { + "essence_type": "DIAMOND", + "amount": 60 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 40 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 65 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 110 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 160 + } + ] + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 17 + } + ], + "gemstone_slots": [ + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + } + ], + "id": "PERFECT_LEGGINGS_9" + }, + { + "material": "DIAMOND_CHESTPLATE", + "name": "Perfect Chestplate - Tier VI", + "category": "CHESTPLATE", + "tier": "EPIC", + "stats": { + "DEFENSE": 260 + }, + "npc_sell_price": 2867200, + "dungeon_item_conversion_cost": { + "essence_type": "DIAMOND", + "amount": 70 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 30 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 80 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 120 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 180 + } + ] + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 12 + } + ], + "gemstone_slots": [ + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + } + ], + "id": "PERFECT_CHESTPLATE_6" + }, + { + "material": "DIAMOND_CHESTPLATE", + "name": "Perfect Chestplate - Tier I", + "category": "CHESTPLATE", + "tier": "RARE", + "stats": { + "DEFENSE": 160 + }, + "npc_sell_price": 819200, + "dungeon_item_conversion_cost": { + "essence_type": "DIAMOND", + "amount": 70 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 30 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 80 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 120 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 180 + } + ] + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 7 + } + ], + "gemstone_slots": [ + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + } + ], + "id": "PERFECT_CHESTPLATE_1" + }, + { + "material": "DIAMOND_CHESTPLATE", + "name": "Perfect Chestplate - Tier IV", + "category": "CHESTPLATE", + "tier": "EPIC", + "stats": { + "DEFENSE": 220 + }, + "npc_sell_price": 2048000, + "dungeon_item_conversion_cost": { + "essence_type": "DIAMOND", + "amount": 70 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 30 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 80 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 120 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DIAMOND", + "amount": 180 + } + ] + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 10 + } + ], + "gemstone_slots": [ + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + }, + { + "slot_type": "AMETHYST" + } + ], + "id": "PERFECT_CHESTPLATE_4" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2Y1MGFhM2U3MjI5MjQ3YWE1OTgyNDljODNhZWM0NjJhYjE2NTQ4NjVlMjAxZTY5MjVmNTVmNWRkMzY0M2VjYSJ9fX0=", + "name": "Barry Century Cake", + "furniture": "EPOCH_CAKE_AQUA", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_AQUA" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzAxNjEwOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmE3YmZhODBhODVlNzA3ZWVkZjk0NWI4ODkwNTk0MmY1Zjc3OTVlYTUyNjRkNjkyYTIyZTcwN2ZjNTc3YTg4YiIKICAgIH0KICB9Cn0=", + "name": "Pet Rock Century Cake", + "furniture": "EPOCH_CAKE_GREEN", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_GREEN" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2Mjk0MTc3MCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjQ1OTI3NDZjYzM1NjcyZWUyOWJiM2ExNTNkNzRmN2E1ZDBlNWZlODYxMjcyOWEzNGZhZDI1MmZlNzkwNDI4MyIKICAgIH0KICB9Cn0=", + "name": "Century Cake of the Next Dungeon Floor", + "furniture": "EPOCH_CAKE_BLACK", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_BLACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzE4Mzk3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjVkOTI0M2M2MWUyYzNlMWUwZjk5MzE4NDNjYWRiZDBkZmY0YTY0NjIyNWVmNTRjNTU3OTc5Y2YzOWJiMjA1NyIKICAgIH0KICB9Cn0=", + "name": "Streamer's Century Cake", + "furniture": "EPOCH_CAKE_PURPLE", + "tier": "EPIC", + "museum": true, + "id": "EPOCH_CAKE_PURPLE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzljMjhkYTAxZTAxMjg4MGVhY2MzYWIxZDM0ZDkxNDUzNTdkMmUyZDQ2ZDQyYWEzYjU5ZWRiOTFiMWY3YmQ2ZCJ9fX0=", + "name": "Crab-Colored Century Cake", + "furniture": "EPOCH_CAKE_PINK", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_PINK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY2NDEyNywKICAicHJvZmlsZUlkIiA6ICI1MTY4ZjZlMjIyM2E0Y2FjYjdiN2QyZjYyZWMxZGFhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZWZfbm90X2FzaCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mYjdjZmJiNmFmNzAwZTQ5YmZkYjYwMjM2OTIwYzUyMjA4NGJiODA4YWI2MTI0NzRmYjFmODNlYTQxMGQ1NDg0IgogICAgfQogIH0KfQ", + "name": "Century Cake of Hype", + "furniture": "EPOCH_CAKE_CYAN", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_CYAN" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzA0MzI2NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjU4Y2QyNzUwODg0NDcxYzA4MzYzNDMzNDNlYzZlMTg4MjI5ZGEwNTRlZjM2NzEwMTNhZThkNDNkNmIwMjU0OCIKICAgIH0KICB9Cn0=", + "name": "Latest Update Century Cake", + "furniture": "EPOCH_CAKE_ORANGE", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_ORANGE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTQwOWJkOTYwN2Y0YzFkNjk0ZjYyNTNjOGI2NzFkMDkyZjhiMTZjYTdmNjZlYmZkNjdlZjlkODY0MDI0Nzc0YiJ9fX0=", + "name": "aPunch Century Cake", + "furniture": "EPOCH_CAKE_RED", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_RED" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MjkxNzQ0MCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTEyYTI4ZTY5ZGE1ZTQzY2U4ZmRlY2M2YTgyM2M5MmZmZjg0NzE5ZTAxNDdjYWFjNzFjNWM4ZDk5ZGE1NzgxYyIKICAgIH0KICB9Cn0=", + "name": "Sea Emperor Century Cake", + "furniture": "EPOCH_CAKE_BLUE", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_BLUE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYwNDQ2MzA2OTkwNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTI1NTg4OTk5YjY3NGIzOTlhMTk4MGEyNWQ5Y2EzMjM2MzlkMDMzZTNmODUwNDBjMWRlN2ZmYjQyOGJjYTA5NSIKICAgIH0KICB9Cn0=", + "name": "Potato-Style Century Cake", + "furniture": "EPOCH_CAKE_YELLOW", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_YELLOW" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY0ODIwMCwKICAicHJvZmlsZUlkIiA6ICI4Zjk3NzhmNWVhMTY0MDVmOWEwMDM0YjU4YjljMWM2MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJ1bm5hbWVkYXV0aG9yIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JhMGE1YjUxMGE4ZDgyNGZmNDkxMGNhNWIyNjk4YWEzZDAzMGY4Mzc4MTBlOGQ3ZjBiYmNhOGNmMDZjZTIwMjMiCiAgICB9CiAgfQp9", + "name": "Cloudy Century Cake", + "furniture": "EPOCH_CAKE_WHITE", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_WHITE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzk1NDY4MzMwMCwKICAicHJvZmlsZUlkIiA6ICJlMmVkYTM1YjMzZGU0M2UxOTVhZmRkNDgxNzQ4ZDlhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJDaGFsa19SaWNlR0kiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjIzN2NkZmQ3ZDNmMjBlMGY1YjY5N2EyMGM4NTMyNGZiYjdiY2Q0MDllNjUzMzM3Y2NkNWE5Y2U4Y2NhZmMxZCIKICAgIH0KICB9Cn0", + "name": "Chocolate Century Cake", + "furniture": "EPOCH_CAKE_BROWN", + "tier": "UNCOMMON", + "museum": true, + "id": "EPOCH_CAKE_BROWN" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDUyNzI3OSwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDM1MDAyOGZkOTZhOThkNWIzM2QwODRkMjUyNGI3NmVkMGZjNmIyMWNjYzQwMDY0YTZkMmU3YmY5OTcxODYwZSIKICAgIH0KICB9Cn0", + "name": "Medium Gemstone Sack", + "tier": "RARE", + "unstackable": true, + "id": "MEDIUM_GEMSTONE_SACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg4ODc3MSwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FhYzE1ZjZmY2YyY2U5NjNlZjRjYTcxZjFhODY4NWFkYjk3ZWI3NjllMWQxMTE5NGNiYmQyZTk2NGE4ODk3OGMiCiAgICB9CiAgfQp9", + "name": "Fine Jasper Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_JASPER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAxODU1MCwKICAicHJvZmlsZUlkIiA6ICIwNWQ0NTNiZWE0N2Y0MThiOWI2ZDUzODg0MWQxMDY2MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJFY2hvcnJhIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIzZDA2NGVjMTUwMTcyZDA1ODQ0YzExYTE4NjE5YzE0MjFiYmZiMmRkZDFkYmI4N2NkYzEwZTIyMjUyYjc3M2IiCiAgICB9CiAgfQp9", + "name": "Rough Jasper Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_JASPER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAwMzU1NywKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E3MzUxMWU1MDRjMzE2YjEzOWVkYjM1ZmViZTczZWY1OTFjMGY0NTVlOGNhZjllZTM1M2JjMTJiNmMxNGE5MjIiCiAgICB9CiAgfQp9", + "name": "Flawed Jasper Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_JASPER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTIzNzA3NywKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzI2M2Y5OTFiOGUwMzhlNDZiOGVkNzYzMmY0NGNhMmUzMGMxNWY0Mjk3NzA3MGE4YzhkODcyOGUzZmMwNGZjN2MiCiAgICB9CiAgfQp9", + "name": "Perfect Jasper Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_JASPER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjAzNDI0NywKICAicHJvZmlsZUlkIiA6ICJiMGQ3MzJmZTAwZjc0MDdlOWU3Zjc0NjMwMWNkOThjYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJPUHBscyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mZjk5M2QzYTQzZDQwNTk3YjQ3NDQ4NTk3NjE2MGQwY2Y1MmFjNjRkMTU3MzA3ZDNiMWM5NDFkYjIyNGQwYWM2IgogICAgfQogIH0KfQ", + "name": "Flawless Jasper Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_JASPER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg2Mjc2NCwKICAicHJvZmlsZUlkIiA6ICJmMGIzYmRkMjEwNDg0Y2VlYjZhNTQyYmZiOGEyNTdiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJBbm9uaW1ZVFQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2ExZWU1ZmZjZTA0ZWI3ZGE1OTJkNDI0MTRmZjM1ZTFiZjM4MTk0ZDZiODJlMzEwZGJjNjI2MWI0N2ZiOWM5MSIKICAgIH0KICB9Cn0", + "name": "Fine Amethyst Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_AMETHYST_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQzNDMwMSwKICAicHJvZmlsZUlkIiA6ICIyMWUzNjdkNzI1Y2Y0ZTNiYjI2OTJjNGEzMDBhNGRlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJHZXlzZXJNQyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83MWRiNTkyNjA4OTU1NzhkMzdlNTk1MDU4ODA2MDJkZTk0MGIwODhlNWZmZjhkYTNlNjUyMDFkNzM5Yzg2ZTg0IgogICAgfQogIH0KfQ", + "name": "Flawed Amethyst Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_AMETHYST_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQ2NjY1MiwKICAicHJvZmlsZUlkIiA6ICI2MWVhMDkyM2FhNDQ0OTEwYmNlZjViZmQ2ZDNjMGQ1NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGVEYXJ0aEZhdGhlciIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kMzYyMzUyMWM4MTExYWQyOWU5ZGNmN2FjYzU2MDg1YTlhYjA3ZGE3MzJkMTUxODk3NmFlZTYxZDBiM2UzYmQ2IgogICAgfQogIH0KfQ", + "name": "Flawless Amethyst Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_AMETHYST_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTQ0OTk5NCwKICAicHJvZmlsZUlkIiA6ICIxYTc1ZTNiYmI1NTk0MTc2OTVjMmY4NTY1YzNlMDAzZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZXJvZmFyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U0OTNjNmY1NDBjNzAwMWZlZDk3YjA3ZjZiNGM4OTEyOGUzYTdjMzc1NjNhYTIyM2YwYWNjYTMxNGYxNzU1MTUiCiAgICB9CiAgfQp9", + "name": "Rough Amethyst Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_AMETHYST_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI3NDk3OSwKICAicHJvZmlsZUlkIiA6ICJiNjM2OWQ0MzMwNTU0NGIzOWE5OTBhODYyNWY5MmEwNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJCb2JpbmhvXyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kODg2ZTBmNDExODViMThhM2FmZDg5NDg4ZDJlZTRjYWEwNzM1MDA5MjQ3Y2NjZjAzOWNlZDZhZWQ3NTJmZjFhIgogICAgfQogIH0KfQ", + "name": "Perfect Amethyst Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_AMETHYST_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDUxMDA5NCwKICAicHJvZmlsZUlkIiA6ICI1N2IzZGZiNWY4YTY0OWUyOGI1NDRlNGZmYzYzMjU2ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJYaWthcm8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTViYTgwNGI3YWU5MmM2NWIyZjQxZDE4YmU4OTlhM2JkMTM5NzcyZTNlM2M4MWMyZmM4YWRkYmIyNzUzNjk1MiIKICAgIH0KICB9Cn0=", + "name": "Large Gemstone Sack", + "tier": "EPIC", + "unstackable": true, + "id": "LARGE_GEMSTONE_SACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDA3MDU0MTI2OCwKICAicHJvZmlsZUlkIiA6ICI4MmM2MDZjNWM2NTI0Yjc5OGI5MWExMmQzYTYxNjk3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb3ROb3RvcmlvdXNOZW1vIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY2NjI0YTdiZGVlNjI0MGRkZGJlZDgyNjgwOTBlMjM0ZDBiYTQ3MGVhODk2ZTg5MjlmNGVmYjIxM2YyMjY5NDQiCiAgICB9CiAgfQp9", + "name": "Small Gemstone Sack", + "tier": "RARE", + "unstackable": true, + "id": "SMALL_GEMSTONE_SACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTIxNzI5OCwKICAicHJvZmlsZUlkIiA6ICI5MThhMDI5NTU5ZGQ0Y2U2YjE2ZjdhNWQ1M2VmYjQxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJCZWV2ZWxvcGVyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM5YjZlMDQ3ZDNiMmJjYTg1ZThjYzQ5ZTU0ODBmOTc3NGQ4YTBlYWZlNmRmYTk1NTk1MzA1OTAyODM3MTUxNDIiCiAgICB9CiAgfQp9", + "name": "Perfect Ruby Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_RUBY_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU0NDYyMywKICAicHJvZmlsZUlkIiA6ICIxZDUyMzNkMzg4NjI0YmFmYjAwZTMxNTBhN2FhM2E4OSIsCiAgInByb2ZpbGVOYW1lIiA6ICIwMDAwMDAwMDAwMDAwMDBKIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ2ZDgxMDY4Y2JkZjRhMzY0MjMxYTI2NDUzZDZjZDY2MGEwMDk1ZjljZDg3OTUzMDdjNWJlNjY3NDI3NzEyZSIKICAgIH0KICB9Cn0", + "name": "Flawed Ruby Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_RUBY_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzUyMzU5MywKICAicHJvZmlsZUlkIiA6ICJhNzdkNmQ2YmFjOWE0NzY3YTFhNzU1NjYxOTllYmY5MiIsCiAgInByb2ZpbGVOYW1lIiA6ICIwOEJFRDUiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTY3Mjk1OTAyOGYyNzRiMzc5ZDQzMGYwNjhmMGYxNWE0Zjc5M2VhYzEyYWZiOTRhZTBiNGU1MGNmODk1ZGYwZiIKICAgIH0KICB9Cn0", + "name": "Fine Ruby Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_RUBY_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU1ODUzNCwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QxNTliMDMyNDNiZTE4YTE0ZjNlYWU3NjNjNDU2NWM3OGYxZjMzOWE4NzQyZDI2ZmRlNTQxYmU1OWI3ZGUwNyIKICAgIH0KICB9Cn0", + "name": "Rough Ruby Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_RUBY_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzU3MzU0NywKICAicHJvZmlsZUlkIiA6ICJmZDQ3Y2I4YjgzNjQ0YmY3YWIyYmUxODZkYjI1ZmMwZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkyNmEyNDhmYmJjMDZjZjA2ZTJjOTIwZWNhMWNhYzhhMmM5NjE2NGQzMjYwNDk0YmVkMTQyZDU1MzAyNmNjNiIKICAgIH0KICB9Cn0", + "name": "Flawless Ruby Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_RUBY_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE1OTk2OSwKICAicHJvZmlsZUlkIiA6ICI4MmM2MDZjNWM2NTI0Yjc5OGI5MWExMmQzYTYxNjk3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb3ROb3RvcmlvdXNOZW1vIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RhMTk0MzZmNjE1MWE3YjY2ZDY1ZWQ3NjI0YWRkNDMyNWNmYmJjMmVlZTgxNWZjZjc2ZjRjMjlkZGYwOGY3NWIiCiAgICB9CiAgfQp9", + "name": "Rough Amber Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_AMBER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg0Njc1MCwKICAicHJvZmlsZUlkIiA6ICIyNzc1MmQ2ZTUyYmM0MzVjYmNhOWQ5NzY1MjQ2YWNhNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZW1pbWVkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRiMWNjZTIyZGUxOWVkNjcyN2FiYzVlNmMyZDU3ODY0Yzg3MWE0NGM5NTZiYmUyZWIzOTYwMjY5YjY4NmI4YjMiCiAgICB9CiAgfQp9", + "name": "Fine Amber Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_AMBER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI5MzQ4MCwKICAicHJvZmlsZUlkIiA6ICI5OTdjZjFlMmY1NGQ0YzEyOWY2ZjU5ZTVlNjU1YjZmNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJpbzEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM3YWUyMzZjZGVjM2YyYTZmNTFlYWUxNWUyYzhmNjIyOGIzNGYxMzdkYTE1NjlmZWM5ZTgwM2Y5Y2Q4MTc1OWQiCiAgICB9CiAgfQp9", + "name": "Perfect Amber Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_AMBER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE0NTE4MywKICAicHJvZmlsZUlkIiA6ICIwYTUzMDU0MTM4YWI0YjIyOTVhMGNlZmJiMGU4MmFkYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJQX0hpc2lybyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8xNzNiY2ZjMzllYjg1ZGYxODQ4NTM1OTg1MjE0MDYwYTFiZDFiM2JiNDdkZWZlNDIwMTQ3NmVkYzMxNjcxNzQ0IgogICAgfQogIH0KfQ", + "name": "Flawed Amber Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_AMBER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTE3NjQ5NiwKICAicHJvZmlsZUlkIiA6ICJiNWRkZTVmODJlYjM0OTkzYmMwN2Q0MGFiNWY2ODYyMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJsdXhlbWFuIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzlkY2U2MmY3MGFjMDQ2Yjg4MTExM2M2Y2Y4NjI5ODc3Mjc3NzRlMjY1ODg1NTAxYzlhMjQ1YjE4MGRiMDhjMGQiCiAgICB9CiAgfQp9", + "name": "Flawless Amber Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_AMBER_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMDMzOTEyNzEwNSwKICAicHJvZmlsZUlkIiA6ICJjOTAzOGQzZjRiMTg0M2JiYjUwNTU5ZGE3MWFjMTk2MiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUQk5SY29vbGNhdCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS84YTg5ZGUxODExMTE1ZTFhZWUzNzNmNmE3ODQ1YmQzZjgxYzdkYmUzMDJlNGFmYzdlOGQ2YjhhMTIwMGM3MjEzIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Extra Large Gemstone Sack", + "tier": "EPIC", + "unstackable": true, + "id": "EXTRA_LARGE_GEMSTONE_SACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTYyMTA0NSwKICAicHJvZmlsZUlkIiA6ICI0ZWQ4MjMzNzFhMmU0YmI3YTVlYWJmY2ZmZGE4NDk1NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJGaXJlYnlyZDg4IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgyMjgyYzZiYjgzNDNlMGYwZDYxZWUwNzQ3ZGFkYTc1MzQ0ZjMzMmU5ZmYwYWNhYTNhZGNkZjA5MzIxZDNkZCIKICAgIH0KICB9Cn0", + "name": "Flawed Jade Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_JADE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTYzODM3OCwKICAicHJvZmlsZUlkIiA6ICIyYzEwNjRmY2Q5MTc0MjgyODRlM2JmN2ZhYTdlM2UxYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJOYWVtZSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zYjRjMmFmZDU0NGQwYTYxMzllNmFlOGVmOGYwYmZjMDlhOWZkODM3ZDBjYWQ0ZjVjZDBmZTdmNjA3YjdkMWEwIgogICAgfQogIH0KfQ", + "name": "Rough Jade Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_JADE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NTY1NzA0NywKICAicHJvZmlsZUlkIiA6ICIxYWZhZjc2NWI1ZGY0NjA3YmY3ZjY1ZGYzYWIwODhhOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMb3lfQmxvb2RBbmdlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mODlmNzVlMGIwMDM3OGE1ODNkYmJhNzI4ZGNkYzZlOTM0NmYzMWRkNjAxZDQ0OGYzZDYwNjE1Yzc0NjVjYzNlIgogICAgfQogIH0KfQ", + "name": "Flawless Jade Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_JADE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTI1NjAxMiwKICAicHJvZmlsZUlkIiA6ICJmZDQ3Y2I4YjgzNjQ0YmY3YWIyYmUxODZkYjI1ZmMwZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNmY2VkNzk3NzM4MmJmNzFkNGVlMTdmZjViOTE5ZTBlYjc5NzIwODNjNGNjY2ZhMTc1Yzg3NTNhZTQwYmEwMDYiCiAgICB9CiAgfQp9", + "name": "Perfect Jade Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_JADE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4Mzg3NjAxNywKICAicHJvZmlsZUlkIiA6ICI0ZTMwZjUwZTdiYWU0M2YzYWZkMmE3NDUyY2ViZTI5YyIsCiAgInByb2ZpbGVOYW1lIiA6ICJfdG9tYXRvel8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjI4ZjFjMGM1MDkyZTEyZDMzNzcwZGY0NWM1ODQ1YTk2MTA4ODYwMzliMzRhYmU5M2ExNmM1ZTk0MmRmYzhlNCIKICAgIH0KICB9Cn0", + "name": "Fine Jade Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_JADE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIzMjc2OSwKICAicHJvZmlsZUlkIiA6ICI5MWZlMTk2ODdjOTA0NjU2YWExZmMwNTk4NmRkM2ZlNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJoaGphYnJpcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS85NTdjZmE5Yzc1YmE1ODQ2NDVlZTJhZjZkOTg2N2Q3NjdkZGVhNDY2N2NkZmM3MmRjMTA2MWRkMTk3NWNhN2QwIgogICAgfQogIH0KfQ", + "name": "Flawless Sapphire Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_SAPPHIRE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIwMzYzNiwKICAicHJvZmlsZUlkIiA6ICI4OGU0YWNiYTQwOTc0YWZkYmE0ZDM1YjdlYzdmNmJmYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJKb2FvMDkxNSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS84YTBhZjk5ZThkODcwMzE5NGE4NDdhNTUyNjhjZjVlZjRhYzRlYjNiMjRjMGVkODY1NTEzMzlkMTBiNjQ2NTI5IgogICAgfQogIH0KfQ", + "name": "Flawed Sapphire Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_SAPPHIRE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzkwNDYxNSwKICAicHJvZmlsZUlkIiA6ICJmMjU5MTFiOTZkZDU0MjJhYTcwNzNiOTBmOGI4MTUyMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJmYXJsb3VjaDEwMCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zNjE2MWRhYTM1ODllYzljODE4NzQ1OWFjMzZmZDRkZDI2NDZjMDQwNjc4ZDNiZmFjYjcyYTIyMTBjNmM4MDFjIgogICAgfQogIH0KfQ", + "name": "Fine Sapphire Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_SAPPHIRE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTE5NzMwNSwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhlOTNlYmFjYjYwYjcxNzkzMzU1ZmRlMGQ0YmJhNDNhOWM1ZWMwOWMzZjM4ODk3YzQ4YzFmODU3NTIzYTBhMjkiCiAgICB9CiAgfQp9", + "name": "Perfect Sapphire Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_SAPPHIRE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjIxNDY1MiwKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NmY2ViZTU0ZGJjMzQ1ZWE3ZTIyMjA2ZjcwM2U2YjMzYmVmYmU5NWI2YTkxOGJkMTc1NGI3NjE4OGJjNjViYjUiCiAgICB9CiAgfQp9", + "name": "Rough Sapphire Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_SAPPHIRE_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjQxMjI5MSwKICAicHJvZmlsZUlkIiA6ICI1N2IzZGZiNWY4YTY0OWUyOGI1NDRlNGZmYzYzMjU2ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJYaWthcm8iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDEwOTY0ZjNjNDc5YWQ3ZDlhZmFmNjhhNDJjYWI3YzEwN2QyZDg4NGY1NzVjYWUyZjA3MGVjNmY5MzViM2JlIgogICAgfQogIH0KfQ", + "name": "Flawless Topaz Gemstone", + "tier": "EPIC", + "id": "FLAWLESS_TOPAZ_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjM4MDM3MywKICAicHJvZmlsZUlkIiA6ICJmMGIzYmRkMjEwNDg0Y2VlYjZhNTQyYmZiOGEyNTdiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJBbm9uaW1ZVFQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjYzOTI3NzNkMTE0YmUzMGFlYjNjMDljOTBjYmU2OTFmZmVhY2ViMzk5YjUzMGZlNmZiNTNkZGMwY2VkMzcxNCIKICAgIH0KICB9Cn0", + "name": "Flawed Topaz Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_TOPAZ_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4NjM5ODMwNiwKICAicHJvZmlsZUlkIiA6ICJkODAwZDI4MDlmNTE0ZjkxODk4YTU4MWYzODE0Yzc5OSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ0aGVCTFJ4eCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zZmQ5NjA3MjJlYzI5YzY2NzE2YWU1Y2E5N2I5YjZiMjYyODk4NGUxZDZmOWQyNTkyY2QwODk5MTQyMDZhMWIiCiAgICB9CiAgfQp9", + "name": "Rough Topaz Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_TOPAZ_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxODA4MzkxOTUyNywKICAicHJvZmlsZUlkIiA6ICJjMGYzYjI3YTUwMDE0YzVhYjIxZDc5ZGRlMTAxZGZlMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJDVUNGTDEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkyY2I2ZTUxYzQ2MWU3MzU5NTI2YmVhNWUwNjIwOWNkZGRlN2M2NDY5YTgxOWYzNDA1Y2YwYTAzOGMxNTk1MDIiCiAgICB9CiAgfQp9", + "name": "Fine Topaz Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_TOPAZ_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNDk3OTE3ODQ1MywKICAicHJvZmlsZUlkIiA6ICJiYzRlZGZiNWYzNmM0OGE3YWM5ZjFhMzlkYzIzZjRmOCIsCiAgInByb2ZpbGVOYW1lIiA6ICI4YWNhNjgwYjIyNDYxMzQwIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNkYTZlY2RjYmMzZmUzNTVjYTA2MTExOTJhM2ZiZDM1ZGQ1NjM1ZDVmY2RmM2ZiYzc5ZWQyYmMxZjRhMDE3ZmUiCiAgICB9CiAgfQp9", + "name": "Perfect Topaz Gemstone", + "tier": "LEGENDARY", + "id": "PERFECT_TOPAZ_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdlYTZhOGY1MjRiZTk4OWYyMzRhZGM5MDg3NzllZTM2YTAwMjA5ZjEyNjM5ZjFmZDAzYTljZmYxYzA5YjMzOWEifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "WHITE_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YwZDkzMWI3ZjE1MzM1NDFjYTNiOGM0MDFmZTk4NWNiZWUzZmZhYmI2Y2Y2MTQ1NTM1ODhmNjZmMmUwM2MwN2MifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "PINK_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzJkOWE4ZDJhOTQ1N2UzNWJhNmEzOWExNDFjMGNkNmZkOTA2NWUyZDM3YzYzMzJlZWFhMDgxMGIxYTc0OGQ4ZWIifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "LIGHT_BLUE_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4N2I0MWNhODk2ZmU3NGNiODcwNzhhMWQwOTc2ZmY5MzUxNjY0YjJmZGE1YWJiNDhjNTU4YWNkYmVkMjcxYmEifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "BLUE_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QxNjk5ZmE0YTE1MTk2OTY4NzA1MzlmNWU1NGY1NDgzNzJmYmIzNGNlMDRjOGVlNGVmYjhjZTdmMjk0OTFiNTYifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "LIGHT_GREY_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YyMzA0MGE0YmM0NTM5ZTk0YzRiZTRhMDQxNDgwZTk2Y2M4NzU0NDY0MDEyYWY5ZjNiYTdmZjE4ZjY0NmRkYjAifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "PINK_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NlMTc2ZTk4MmI1YTI4Y2RiNWEwZTJlNWE2ZGE2YmU5YzFmYmUyZTMwYTMzMzgyOTczMjc3YTk2ZmZkZTRkODQifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "YELLOW_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZkZTY1NGM5MGVlYjRhODFlNmFhZTdkODBkZDU2ZDFkNWQwOTkxOTlkNjEwZTA5YzhlYzUwYjYxYTAxMjI0OGMifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "LIGHT_BLUE_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNlNzY5OTkzZjA0ZGIwMTBhNDUxMGM4YTM5NzRjMThlMzcyMDliMzVjZTg1OWMxYjU4ZDQ5YTM4MmFmYjJhMWQifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "GREEN_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyNDk2NjgsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYyZjNiM2EwNTQ4MWNkZTc3MjQwMDA1YzBkZGNlZTFjMDY5ZTU1MDRhNjJjZTA5Nzc4NzlmNTVhMzkzOTYxNDYifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU0OGE5MThhMDJmZWIxYjM5ZDBjYjZjM2NkNDVkYTNjYmQwYTc1NTEyMjgxYjI4NTk2YWFmMGJlYWMzYWZjMzAifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "BLACK_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MyZTMxNDRmNDNhYzhiN2FhNjdhNjJlYzk2OWFlOTdjYjI4ZjNhZjc1ZmEwODcyZDM1NDRkOGZiYjBhYzUwMDUifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "WHITE_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UxYjg1YzVkNmRmZDIyMjlkZTkwNGQ1MzFhNDFjMDcyMjMyMGE0ODQ4ZmY3YTdmYmVjNTY1NTUxYzU2NDRkZDAifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "RED_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyMTY1MzUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIxZDgzN2NhMjIyY2JjMGJjMTI0MjZmNWRhMDE4YzNhOTMxYjQwNjAwODgwMDk2MGE5ZGYxMTJhNTk2ZTdkNjIifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I0N2QwODdlZDc1YmExZWY4NGVmNzAxZGRhMDg0N2IyOGUxYjc4N2NkYzI2YjdjOGQ2ODc5MGNkYWM3MjA3NTgifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "CYAN_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczMmFjNTFjYjI5MjFjNWNhYTlhNjkwY2FjOWUxMzcyMzc5NTJiMmRkODA2ZjRmNDBmMzIyNjA0MjIxOTQxMjgifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "YELLOW_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Y3NDBlODA5ODc3NjRmMmUxYzc0NTA0OWY0OTY1ZDFkODI1Mjk3OWY1NDZiNGQ1OWQ3MzZkZTJiZTI5YjU0NzAifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "LIGHT_GREY_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkxZDE3N2Q5N2RiZmViZTI1OTY5NTc2NzI2NjNkYWUzZjFhZjJjMTM0MjNlMWUyNDJkMjI5ODMyODM2MjM4MmMifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "GREY_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyODAwNzAsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRkMDViYWE1ZGRhYTcwYmY0NTJmNTM1NDQ3MTFjYTUxMTZiOGFiYmQ2MjE4YjllMWFlZDk0YjFlNmIwOTQwMjIifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgwNTZkY2EyOGE5MTI5OWMyOWM3MTg5YWYyMjE3OTNkYTg4NThjZmUwNzkzMmE2ZDE0ODc5YjhhMmRmM2QyZiJ9fX0", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "GREY_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU4ZWMzMTA5MGM1MjBkY2E1MDAxMTJhZjgzZDZkYjhiNWU3MDM3YTc0ODIyOWY0OWY1ZGY3ZjBmY2U2YmZjOWIifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "ORANGE_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmY2Q1ZmNlZDcwNmY3Njk0NTAxMjQ1NzUwM2FkZGFmNzY1YzNiYWUzOWM4Zjk2MjJmM2Y0Y2VmZGVlOWI1MjkifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "PURPLE_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVkNWMzYjE0MDY3NzhlYTZhYjA4MWQwMDQ3ODI2ZmY0ZGNhMWVhMGJlMmY3NmU5YjllMDdjMTgxZjYzMzIwNDAifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "GREEN_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRmOTc2YzlhNGQyMzc2MzE4ZTdhNjc2YWQ4MWY2ZTExZjMyMGFiZWYzY2QzNTM2OGEwYTliYTI3ZTMyMDM0MGEifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "BLUE_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg0OTczZjkwZDg2OTc3MmVlMWNmNDRkNGYyMmY1NTJiMzIwODQ1OTBkNTdmZDkxZDY4M2VlMTY4MzlhZGM3ZWEifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "BROWN_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ3NDQ0NDExOWJhNzM1N2EyZGExYzQyMmRmMjQ0ZjMwNTY4MTQ0MTM1MTcyY2RjNDNiNjA2ZjBmOGY2NDNkNTgifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "GREEN_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzEyNWU2NjY3NzYzNDliNTk1NDkyMDI5Y2YwZWNiOWE3MjQ3Y2ZhNWZlNGMwNDhmYjE0YWUyY2EyN2Y0ZjlkM2UifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "BROWN_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdlYWY4NWE4MGE2NmZjMTQyMmRjYWU3YmNjYzgxZDllZWNkYTg4OGM4NTE4ZDMwZTQ0NTVhMzE1OTJkOWEyYjEifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "RED_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmNThlMjk3YjllZTAzMzYwNzEwZTVhMTY4OTFiNTE4MjllNTg2NTFmODJmZWM0NDFhM2Y5YWY0ZTc0NmIxMmUifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "LIME_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E4YzM4MDM1NThkYjI3OWViZTQwOWNlMjYxOTM3YzFjOWI1MzcxYWExNzg2NTU1ZjY5YjU1YmIyMjNmOTMyNCJ9fX0", + "name": "Large Backpack", + "tier": "EPIC", + "id": "BLUE_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyMTU3ZjUyMDNhNmQ1ODQyMTA0ZjdjNGExODZjMWYyOGYyM2I3OGUwMjU0NzUxNWFmNjA3NzgwYjA1NWMxNDgifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "BROWN_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIyMTY1MzUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIxZDgzN2NhMjIyY2JjMGJjMTI0MjZmNWRhMDE4YzNhOTMxYjQwNjAwODgwMDk2MGE5ZGYxMTJhNTk2ZTdkNjIifX19", + "name": "Jumbo Backpack", + "tier": "LEGENDARY", + "id": "JUMBO_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZiMGI5OWFjMzI3MGYwNTgxNTk5NGIxOWI0N2VlN2UxZGIyNTk1NGJjMjFkMjJkYzQzMGFmOWFlNTVjMDQ1YjgifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "MAGENTA_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3YTAxNWJmYmQ2NTA3NTBiMmY1MjIzNTQ2ODdlMDUzNTQ0M2RmZTY3Y2U4MzIwMmE4Yjc2ZWRjZTQyZTYxMTQifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "LIGHT_GREY_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZiM2UwMmI5NThmZGRlOTRlYjlhY2NlNGVlMGNiMzcwMTljMzc2MjFhODg2MmM0MjM0NzAyNzM5Y2NmOWY4NWIifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "PURPLE_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNlZWU2NzgwN2YxYmFlYjU2NWFkMTRjYjQ5MzdlZjQzMzA2MjM0MDlhNTA1ZGI3Mjg0ZjM0YzI1NzdlZDU1NmYifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "CYAN_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NkYTJhNWIyNDdjMWQwYjJhMWU3MGE4OTQxN2YwMDNiYjZjNDRmZjczODhhYzJmY2MzZjQ3MDBlNTZiMjI5NWYifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "ORANGE_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUzMmNlMzQwZDJmMmI1MGY0OWM3NjAyYmYwYTQyMGUzOTczMzc0YjNmY2Y4MTM3OWQyMDZmMmJmMzU4YWVkMCJ9fX0", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "BROWN_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzk5ODVmN2ExZWU5NmIwMGViMTVjMmZkZDFlM2RkOWE0OWJmMjMzZmMyOGYxNDM0MzAzNDUyNjgyNzM2Y2M0ZmIifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "RED_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QzYWFiNTg1YWZlNDdhZjk5NTA0YzE2OWJhZGY0ZTg5MzczMjA0MDM0MzMxYWNmZjNlY2M1OWE3OWZiN2Q0N2QifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "MAGENTA_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUzOTRhOTg1ZmFiOWZmMGFmNGExZTZmNmZmYjQxYThhM2YxMTQ1NTQ4ODcxMGZmZjc0OWE5NWU4NDc5ZDUxYjYifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "ORANGE_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzM2NlZmFiOGI1Y2IzYjc3NDU2ZjZiMDc3MDMyYTJjZTA2NjJkODNhYmQ4OGQ1OTU3YzI3ZmJlOTQ5NTk0ZTYifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "GREY_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzllZmE1MTBmNGE5MTIyYTY4NjVkYTBiMzZlZWZlYjc3ZDdhOTc1NWVmMWM1Mjk0M2MyODQxMGRhMGIxMDIyMjUifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "WHITE_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzliZjdhNDg3NTA2ZTU3YTdkNTkyMzYwNmVmNjRlOWYxZmJjMmZkYTVkN2JkZThkMWViYzc0NzM0MDA5ZTc2OWEifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "LIGHT_BLUE_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JiZDdkYjAzMTNmZTgwZDkyN2JiM2FiYTA0MDc1YzY5ZjUyMDBmNTU2Mzc0NTllMjJiOGQ5MzNmNmFlNjczM2YifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "RED_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JhMDU4OTMxYTkzMTBkODU3NTE0YmQzOGEzM2NkZTBmM2NlYTVhYmIxYTQwZGM1NmEzNWFjZjUyMGViNjE0ZDQifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "MAGENTA_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgwYmU3NGQzNjdiNzYxZGY5ZjI5NjY2N2MyNTg5ZDcwZTIwYzU1NTMxODk1MDQ1MTAxNWIwZWQxYTFlMGZhY2UifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "YELLOW_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyZTdhZTExOTE3ZGMxZTAyZTU4YTE2YTFhMDMwYTVmZDZkYTgwYTZiMjEwNjM2NmMwOThkMDcxNzU2Mzk5ZmUifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "LIME_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhN2RhOGE1Yzc3ZTM3NjZiY2U5ZTkwNmFiYjAxMDg5Nzc4NjFkNjEwYThmNjA3Y2UwNmRjMmRmY2U4NzhiMmMifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "LIGHT_GREY_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYwNWJkOGRkOTBlMWY0YTU2MzNkYjY5YzVmZGE2MzdjMzA3Yzg4YTZjMTQzNjcyNTJmODMzYzBhZjRjMjFhOGQifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "LIME_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RlY2RhMmI5ZmM4MjAyZmZhZDExMDA4N2NkYTU2ZDVhMWQ3ZmNmYzBlMzA3YzhhZGI3OWVjYTBhN2EyN2NjMTMifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "CYAN_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzNjNjg5Yzk3YTQ5MTU5M2MyOGMwMTQ2N2JkYTdhYzdkNmM2OGE3NDJmM2FmMWM2NjYwYjkzMDVkMzkzNzgxODcifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "YELLOW_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4MTNkZTFhZTg0ODdiOGJkMzY5ZjczMjFmYWQ0M2RkMjlmYWQ0Nzg2MjAwNjQxM2I1ZGU2NjM2MGU0MmZiZDgifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "MAGENTA_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JiZGQ5M2RmYjJkODU3Y2MwNmExODQzNTMwMjY0MGY5ZWMwNmE3MTkzOTM0M2EyMGFmMGI3OWJiMzhkMTQyNTkifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "BLACK_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U4NTJiM2JlOTc4YzdkZDcyOGNhZGVmMTAyMzc0MjAwODlhM2UzOWI4MDI2MTMwM2U4YjlhMzZiN2I3ZTAxZGIifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "ORANGE_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU2Y2E5M2VjMzFiZDYxOTNhZGEyZTU5ZGVjNjM2MzM0MWZhYTUxYWM0MTM2NGIyMTQ3NWFjMmZiYjU1YjZlNDQifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "PINK_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIzYzM5YzRjOTdmMzRmZTM5Zjg3ZWM1NmZmYzc3MTY1MjRiYjk2NmI0MzdhZDQ1NjA5YmUwY2FkZWE0MjcwYzMifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "PURPLE_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FlNTU4OGQwNDg0YjI2ZTJjMmFjNjBkZmU2NTk2MDM4Y2M4ZmQyODgyZjZlZDEzNWYyY2M5MDk3ZWI0MjBhZGEifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "CYAN_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UwZDczNDk0OGFhNWJhN2ExYmZmYzE2ZDMyMDU2MGYyN2IyZDQzNzc3NTRmMjIyOGJhZGIwMDhhODE3ZjNiYTUifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "GREY_MEDIUM_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkxYTcwZjUyM2UzYjk3Mjg0M2I2MzhjN2I0NTk3Yjk4NzAyODQ5ODM0NzU3MzAyOWM3NDc1MTY3YTMyNDdhNzUifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "PINK_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM1NmYzMTk1YjI4OWJkMjRhNWNjZGFiN2ZhYTU2NWYxNzFlZjA0Y2FjOTE2OTFhYTNlZTg5NTY5YzgwNDVhZWIifX19", + "name": "Medium Backpack", + "tier": "RARE", + "id": "LIME_MEDIUM_BACKPACK" }, { - "material": "DIAMOND_CHESTPLATE", - "name": "Perfect Chestplate - Tier VI", - "category": "CHESTPLATE", - "tier": "EPIC", - "stats": { - "DEFENSE": 260 - }, - "npc_sell_price": 2867200, - "dungeon_item_conversion_cost": { - "essence_type": "DIAMOND", - "amount": 70 - }, - "upgrade_costs": [ - [ - { - "essence_type": "DIAMOND", - "amount": 30 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 50 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 80 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 120 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 180 - } - ] - ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 12 - } - }, - "gemstone_slots": [ - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - } - ], - "id": "PERFECT_CHESTPLATE_6" + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YxYTIyYzllYjg2YjEzY2UzNDNkNWRkNWM2NTlmMDAwYzVhNzVhZTkxZTI5YTQwYmRkNDNhNjk2NDk2N2MwZSJ9fX0", + "name": "Medium Backpack", + "tier": "RARE", + "id": "LIGHT_BLUE_MEDIUM_BACKPACK" }, { - "material": "DIAMOND_CHESTPLATE", - "name": "Perfect Chestplate - Tier I", - "category": "CHESTPLATE", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QzMGRlNmE1N2Q2OTY4M2ZjZjVlM2MzMTQ4MjRmNTExNDdhMDI4NTY5NDZkYjEwMmEwZjkyZDA3MWVhMTkwZDAifX19", + "name": "Small Backpack", + "tier": "UNCOMMON", + "id": "PURPLE_SMALL_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzMzMTljZjRhNzdlZDhiNTEyNjBkZmUwNmE1NmUxNWY3NjJmMDhmYTFjMGY5MTAxZmVhMjc1MTQ1NDBkZmRhYTkifX19", + "name": "Medium Backpack", "tier": "RARE", - "stats": { - "DEFENSE": 160 - }, - "npc_sell_price": 819200, - "dungeon_item_conversion_cost": { - "essence_type": "DIAMOND", - "amount": 70 - }, - "upgrade_costs": [ - [ - { - "essence_type": "DIAMOND", - "amount": 30 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 50 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 80 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 120 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 180 - } - ] - ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 7 - } - }, - "gemstone_slots": [ - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - } - ], - "id": "PERFECT_CHESTPLATE_1" + "id": "GREEN_MEDIUM_BACKPACK" }, { - "material": "DIAMOND_CHESTPLATE", - "name": "Perfect Chestplate - Tier IV", - "category": "CHESTPLATE", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUxOWZiZjBlNTk1NDQ0YjZjZGI5MDIwNzQ4MWVmMjcwY2RkMzc5NmYwN2JlYTQzOWM1OTllYzk1MjgxOTFiZjAifX19", + "name": "Large Backpack", "tier": "EPIC", - "stats": { - "DEFENSE": 220 - }, - "npc_sell_price": 2048000, - "dungeon_item_conversion_cost": { - "essence_type": "DIAMOND", - "amount": 70 - }, - "upgrade_costs": [ - [ - { - "essence_type": "DIAMOND", - "amount": 30 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 50 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 80 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 120 - } - ], - [ - { - "essence_type": "DIAMOND", - "amount": 180 - } - ] - ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 10 - } - }, - "gemstone_slots": [ - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - }, - { - "slot_type": "AMETHYST" - } - ], - "id": "PERFECT_CHESTPLATE_4" + "id": "BLACK_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgyMjIzMzAwNzksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZTE4NzE0NWVlNzMyZTdjMDA5MDVhOWMxNmVkMWU0M2JhODhkNTYyNGE2ZjRhZjgyOWYxMDQ1M2ZjYzkxNjUifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFmM2U2NDQyODgxMGU5M2VjZWJjZGVlMjZkNDhhZmExNzA1NjUyMDI4Y2YyNTY5NGMzNjljZDIwNDQyYmE1MTcifX19", + "name": "Large Backpack", + "tier": "EPIC", + "id": "WHITE_LARGE_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcyYTc5M2U1ZTAxNzRmYzYzZGRmY2JhM2M1NDMzOGE5NWYyN2Y4NDY2YjA5Y2UzNWNmMGNlZDIzNmU1MWJmMDcifX19", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "BLACK_GREATER_BACKPACK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MzZmUxZTczZWIzZjI4N2Y2NzQ4YmU4YTQ0MWM4NTM0NThmN2ZlYjNhNDljMWE2YzY4NjFjMmUyYWZjZTY1MSJ9fX0", + "name": "Greater Backpack", + "tier": "EPIC", + "id": "BLUE_GREATER_BACKPACK" }, { "material": "SKULL_ITEM", @@ -12193,27 +13782,33 @@ "material": "GOLD_AXE", "name": "Daedalus Axe", "category": "SWORD", + "sword_type": "AXE", "tier": "LEGENDARY", "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 } @@ -12223,21 +13818,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 40 } @@ -12548,30 +14148,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } @@ -12598,41 +14203,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "id": "MIDAS_STAFF" }, { @@ -12668,16 +14279,19 @@ "category": "FISHING_ROD", "tier": "LEGENDARY", "stats": { - "DAMAGE": 150, - "STRENGTH": 150 + "damage": 150, + "strength": 150, + "sea_creature_chance": 7, + "fishing_speed": 110 }, "npc_sell_price": 111000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 24 } - }, + ], "id": "ROD_OF_THE_SEA" }, { @@ -12706,12 +14320,13 @@ "HEALTH": 120 }, "npc_sell_price": 40000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 24 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -12733,12 +14348,13 @@ "HEALTH": 100 }, "npc_sell_price": 32000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 24 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -12760,12 +14376,13 @@ "HEALTH": 150 }, "npc_sell_price": 56000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 24 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -12787,12 +14404,13 @@ "HEALTH": 175 }, "npc_sell_price": 64000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 24 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST" @@ -12882,6 +14500,194 @@ "tier": "RARE", "id": "BLUE_SHARK_TOOTH" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWU2ZGYxYzJiZjViOTE4ZjZjODg3OWFmNGM0ZWNjMWRhYmJlMzcyMjkyODRlMWY4ZjZiY2NkYjFlYTNkMGFjIn19fQ==", + "name": "Volleyball Court", + "furniture": "VOLLEYBALL", + "tier": "EPIC", + "id": "VOLLEYBALL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzZkZjljMjEyYThhZDgyNTQ1ZjBlNTk0MTBiZmE5OTBmZjNlN2FhYmU4YmE4YzlmZGMzZDRhNWVhMjcyMjY0OCJ9fX0=", + "name": "Ice Cream Cart", + "furniture": "ICE_CREAM_CART", + "tier": "EPIC", + "id": "ICE_CREAM_CART" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjc5N2ZlNTQ5OTE5MWRkZWM5NGY1MGZhNmFiOWNiYzE4YzljZDZmYTFiOTdlMzZiNGQ1MTliNjIzMTkzZDUifX19", + "name": "Crab", + "furniture": "CRAB", + "tier": "RARE", + "id": "CRAB" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTYzZTY2NDZmMWMwZDQxZmQzYmY1NTg0YTFjZTA0NGY1YzQ2ZDU5ODI1OGRiNDYyMTYxMTc4NTlmNTdhZjE5NyJ9fX0=", + "name": "Hammock", + "furniture": "HAMMOCK", + "tier": "RARE", + "id": "HAMMOCK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTQ0MjE3ODJmYTllMDQxY2E4Y2NlNmFhYzNhMGIzMzdlY2MxYjk3MWIxNjhlY2JlZWY2OGI4ODEzZWUzOTZkYiJ9fX0=", + "name": "Small Pool", + "furniture": "SMALL_POOL", + "tier": "RARE", + "id": "SMALL_POOL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzUxNWFjZjRhNmFjNjk4NzM2ZTU0ZGVmMGJjNzgxNDNjMTQ0NDk5NzhlNzUwYWZiYjhkN2FkZTBhZGYwZWYwMCJ9fX0=", + "name": "Bingo Relic", + "category": "ACCESSORY", + "tier": "EPIC", + "museum": true, + "id": "BINGO_RELIC" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "name": "Golden Dante Statue", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxNzQ4NTk1NTUwNSwKICAicHJvZmlsZUlkIiA6ICJkZGVkNTZlMWVmOGI0MGZlOGFkMTYyOTIwZjdhZWNkYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJEaXNjb3JkQXBwIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3ODZhNGMxOTRhODFmMWQ5NTc5ZjBhYTBmZjU5ZjQ1ZDlmMjU5YzRiNTA2NzRkNjc2ZmQ0ZjM0ZWFjMTBiZTIiCiAgICB9CiAgfQp9", + "category": "COSMETIC", + "tier": "EPIC", + "unstackable": true, + "museum": true, + "id": "GOLDEN_DANTE_STATUE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGIzYTA1YjE4MDI2MGRkMDc0Nzk5ZDA1YjkwZjY3OTBiOTYwZDZlNWNiYTNkZDEyNWJhM2JmZDljYzE1NDA4OSJ9fX0=", + "name": "Bingo Heirloom", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "museum": true, + "id": "BINGO_HEIRLOOM" + }, + { + "material": "PAPER", + "name": "Bingo Card", + "tier": "SPECIAL", + "museum": true, + "soulbound": "COOP", + "id": "BINGO_CARD" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmYyNTk0NGI3NDY1ZmY0NTg2YTM0MWY4ODFmNDg4YjZmOWQ0YjNmZmMxMDBmNTBhNzcwODcwNzViM2NlYjFiIn19fQ==", + "name": "Bingo Talisman", + "category": "ACCESSORY", + "tier": "COMMON", + "museum": true, + "id": "BINGO_TALISMAN" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjJmMjQ5OWFiNGNmYzk3ZTY1ZjBmYTlmZTYzY2M2MDY3MDdhNGFlOTZhZjQwNzg0NmIxYjUzNTRmM2ZhZDk5In19fQ==", + "name": "Bingo Ring", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "museum": true, + "id": "BINGO_RING" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDJkYWQ4NjhmOGQ4NjViYWEzMmQ2MTU4NjcyZDFiMTM0ZGI2MWVhNTZkMzNlZmEwYzA5ZjZiYTZmMjc2ZmYyIn19fQ==", + "name": "Bingo Artifact", + "category": "ACCESSORY", + "tier": "RARE", + "museum": true, + "id": "BINGO_ARTIFACT" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "name": "Ditto Skin", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYzODE5NzI2OTE2NywKICAicHJvZmlsZUlkIiA6ICIxNzU1N2FjNTEzMWE0YTUzODAwODg3Y2E4ZTQ4YWQyNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJQZW50YXRpbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83NWFhODU5ZWMzZjU2NWViMDA2ZWQ3ZGYyNjQxOWRlYWM5YTE1NDIwZDA5Y2ZkM2JkZWVjNDBlYTA3ZDEzNjZhIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "category": "COSMETIC", + "tier": "EPIC", + "unstackable": true, + "museum": true, + "id": "DITTO_SKIN" + }, + { + "material": "COAL_BLOCK", + "name": "Bingo Display", + "category": "COSMETIC", + "tier": "COMMON", + "unstackable": true, + "description": "%%gray%%Show off your total %%gold%%Bingo Points%%gray%%!", + "museum": true, + "id": "BINGO_DISPLAY" + }, + { + "material": "CHAINMAIL_BOOTS", + "name": "Spring Boots", + "category": "BOOTS", + "tier": "RARE", + "enchantments": { + "feather_falling": 20 + }, + "unstackable": true, + "museum": true, + "id": "SPRING_BOOTS" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "name": "Ditto Skull", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYzODE5NzI2OTE2NywKICAicHJvZmlsZUlkIiA6ICIxNzU1N2FjNTEzMWE0YTUzODAwODg3Y2E4ZTQ4YWQyNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJQZW50YXRpbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83NWFhODU5ZWMzZjU2NWViMDA2ZWQ3ZGYyNjQxOWRlYWM5YTE1NDIwZDA5Y2ZkM2JkZWVjNDBlYTA3ZDEzNjZhIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "category": "COSMETIC", + "tier": "EPIC", + "unstackable": true, + "museum": true, + "id": "DITTO_SKULL" + }, + { + "material": "BOOK", + "name": "Book of Stats", + "category": "COSMETIC", + "tier": "EPIC", + "unstackable": true, + "museum": true, + "id": "BOOK_OF_STATS" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "name": "Bonzo Statue", + "skin": "ewogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2I1MzQxNjhjNTI2MThlNDc3MDE1ZGY3ZWVkNzlkMmQ1ZmU0ZDdmNzJmMDBkNGI3MTM2ZmNmYjkyNjFmNDAyYyIKICAgIH0KICB9Cn0=", + "category": "COSMETIC", + "tier": "UNCOMMON", + "unstackable": true, + "museum": true, + "id": "BONZO_STATUE" + }, + { + "material": "HAY_BLOCK", + "name": "Collection Display", + "category": "COSMETIC", + "tier": "UNCOMMON", + "unstackable": true, + "description": "%%gray%%Show off your collection progress!", + "museum": true, + "id": "COLLECTION_DISPLAY" + }, { "material": "IRON_SWORD", "name": "Combat Exp Boost", @@ -12904,82 +14710,96 @@ "CRITICAL_DAMAGE": 13, "INTELLIGENCE": 107 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -12989,10 +14809,12 @@ "item_id": "BURNING_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -13003,21 +14825,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -13027,21 +14854,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -13119,12 +14951,13 @@ ] }, "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "CRYPT_WITHERLORD_HELMET" }, @@ -13206,16 +15039,6 @@ "npc_sell_price": 50000, "id": "PLASMA_BUCKET" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzUxNWFjZjRhNmFjNjk4NzM2ZTU0ZGVmMGJjNzgxNDNjMTQ0NDk5NzhlNzUwYWZiYjhkN2FkZTBhZGYwZWYwMCJ9fX0=", - "name": "Bingo Relic", - "category": "ACCESSORY", - "tier": "EPIC", - "museum": true, - "id": "BINGO_RELIC" - }, { "material": "COMPASS", "name": "Hostage Compass", @@ -13273,12 +15096,13 @@ "HEALTH": 15 }, "npc_sell_price": 3500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "CELESTE_LEGGINGS" }, { @@ -13405,6 +15229,7 @@ "material": "IRON_HOE", "name": "Frozen Scythe", "category": "SWORD", + "sword_type": "SCYTHE", "tier": "RARE", "stats": { "DAMAGE": 80, @@ -13419,41 +15244,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 30 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 10 } - }, + ], "id": "FROZEN_SCYTHE" }, { @@ -13491,6 +15322,7 @@ "DAMAGE": 30 }, "npc_sell_price": 9, + "motes_sell_price": 105, "id": "BOW" }, { @@ -13528,14 +15360,16 @@ }, "npc_sell_price": 5000, "can_have_attributes": true, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 27 } - }, + ], "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15 } @@ -13543,112 +15377,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -13705,41 +15562,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 800 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 1200 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "id": "WEREWOLF_CHESTPLATE" }, { @@ -13777,188 +15640,229 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 100 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 120 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 150 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 180 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 300 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 350 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 400 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 500 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 600 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 700 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 800 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 900 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 1200 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 1300 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 1500 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 1700 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 2000 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 2200 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 17000 } @@ -13984,51 +15888,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -14053,42 +15965,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1000 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "id": "WITHER_CHESTPLATE" }, @@ -14213,11 +16131,12 @@ "category": "ACCESSORY", "tier": "COMMON", "soulbound": "SOLO", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "BRONZE" } - }, + ], "description": "%%gray%%%%italic%%A perfectly fine tooth, besides some wear and tear...", "id": "ODGERS_BRONZE_TOOTH" }, @@ -14281,42 +16200,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "SKELETON_LORD_CHESTPLATE" }, @@ -14377,54 +16302,63 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 2 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 2 } @@ -14434,21 +16368,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -14466,12 +16405,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 15 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "museum": true, "id": "FLAMEBREAKER_CHESTPLATE" }, @@ -14576,51 +16516,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 800 } ] ], "gear_score": 100, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 } @@ -14630,21 +16578,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 40 } @@ -14720,55 +16673,51 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "SKELETON_MASTER_CHESTPLATE" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTI0Mjc1NzEwMCwKICAicHJvZmlsZUlkIiA6ICJiNzVjZDRmMThkZjg0MmNlYjJhY2MxNTU5MTNiMjA0YiIsCiAgInByb2ZpbGVOYW1lIiA6ICJLcmlzdGlqb25hczEzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU3YTZkMzVlOWQ0MzU0MmQyNzUwYzQ4MzZiNDAzN2Y3NTE0NmViMjc4NzUzMmI0YzRjNWMzYjI2YmI2M2RjMTAiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", - "name": "Empty Thunder Bottle", - "tier": "EPIC", - "unstackable": true, - "npc_sell_price": 5000, - "id": "THUNDER_IN_A_BOTTLE_EMPTY" - }, { "material": "HOPPER_MINECART", "name": "Minecart with Hopper", @@ -14882,12 +16831,13 @@ "DAMAGE": 50 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "SQUIRE_SWORD" }, { @@ -14905,82 +16855,96 @@ "CRITICAL_DAMAGE": 20, "INTELLIGENCE": 170 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -14990,10 +16954,12 @@ "item_id": "INFERNAL_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -15004,21 +16970,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -15028,21 +16999,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -15076,12 +17052,13 @@ "tier": "EPIC", "category": "NONE", "npc_sell_price": 250000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "id": "ATOMINIZER" }, @@ -15105,247 +17082,302 @@ "INTELLIGENCE": 60 }, "npc_sell_price": 129000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 5 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "Z", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "Z", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "Z", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 4 }, { + "type": "ITEM", "item_id": "X", "amount": 30 }, { + "type": "ITEM", "item_id": "Y", "amount": 30 }, { + "type": "ITEM", "item_id": "Z", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -15382,59 +17414,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 10 } @@ -15488,42 +17530,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 2 } - }, + ], "dungeon_item": true, "id": "HEAVY_HELMET" }, @@ -15535,12 +17583,13 @@ "category": "CLOAK", "tier": "EPIC", "npc_sell_price": 275340, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 10, "DEFENSE": 10 @@ -15549,112 +17598,135 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 130 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 180 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 310 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 390 } @@ -15673,17 +17745,19 @@ "WEAPON_ABILITY_DAMAGE": 24000, "INTELLIGENCE": 150 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "ability_damage_scaling": 0.3, "npc_sell_price": 5000, "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -15691,112 +17765,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 35 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 40 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 50 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "PYROCLASTIC_SCALE", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -15884,59 +17981,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "OFFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 10 } @@ -16015,42 +18122,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "SKELETON_MASTER_BOOTS" }, @@ -16063,11 +18176,12 @@ "name": "Silver Hunter Helmet", "category": "HELMET", "tier": "RARE", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "SILVER" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -16078,72 +18192,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -16208,15 +18335,17 @@ "DAMAGE": 15 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 13 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "I" } - }, + ], "id": "REDSTONE_TIPPED_ARROW" }, { @@ -16236,12 +18365,13 @@ "HEALTH": 20 }, "npc_sell_price": 2000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "SQUIRE_BOOTS" }, { @@ -16250,11 +18380,12 @@ "glowing": true, "tier": "RARE", "npc_sell_price": 7100, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 2 } - }, + ], "id": "BEACON_2" }, { @@ -16280,30 +18411,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -16341,12 +18477,13 @@ "HEALTH": 60 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 20 } - }, + ], "id": "DIVER_BOOTS" }, { @@ -16366,84 +18503,102 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 100 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 120 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 150 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 180 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 300 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 350 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } @@ -16489,11 +18644,12 @@ "name": "Diamond Hunter Leggings", "category": "LEGGINGS", "tier": "LEGENDARY", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "DIAMOND" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -16504,6 +18660,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -16512,72 +18669,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -16604,55 +18774,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -16714,16 +18893,18 @@ "category": "FISHING_ROD", "tier": "RARE", "stats": { - "DAMAGE": 50, - "STRENGTH": 50 + "damage": 50, + "strength": 50, + "fishing_speed": 75 }, "npc_sell_price": 20000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 10 } - }, + ], "museum": true, "id": "WINTER_ROD" }, @@ -16782,59 +18963,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "OFFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 10 } @@ -16857,12 +19048,13 @@ "tier": "EPIC", "category": "NECKLACE", "npc_sell_price": 9280, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "id": "SYNTHESIZER_V2" }, @@ -16893,42 +19085,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 30, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 4 } - }, + ], "dungeon_item": true, "id": "THORNS_BOOTS" }, @@ -16950,51 +19148,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 2 } @@ -17004,21 +19210,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -17042,6 +19253,9 @@ "category": "ACCESSORY", "tier": "RARE", "npc_sell_price": 1000, + "stats": { + "fishing_speed": 10 + }, "id": "FISH_AFFINITY_TALISMAN" }, { @@ -17189,11 +19403,12 @@ "name": "Bronze Hunter Leggings", "category": "LEGGINGS", "tier": "UNCOMMON", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "BRONZE" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -17204,72 +19419,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -17288,16 +19516,18 @@ "MINING_FORTUNE": 30, "MINING_SPEED": 80 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -17307,6 +19537,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -17316,6 +19547,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -17325,6 +19557,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -17334,6 +19567,7 @@ "slot_type": "TOPAZ", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -17359,42 +19593,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "id": "WITHER_HELMET" }, @@ -17417,55 +19657,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 } @@ -17503,42 +19752,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_COMMANDER_WHIP" }, @@ -17625,24 +19880,6 @@ "tier": "RARE", "id": "EGG_STACK" }, - { - "material": "FISHING_ROD", - "name": "Rod of Champions", - "category": "FISHING_ROD", - "tier": "RARE", - "stats": { - "DAMAGE": 90, - "STRENGTH": 80 - }, - "npc_sell_price": 17800, - "requirements": { - "skill": { - "type": "FISHING", - "level": 15 - } - }, - "id": "CHAMP_ROD" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -17653,24 +19890,6 @@ "npc_sell_price": 32000, "id": "FEATHER_ARTIFACT" }, - { - "material": "FISHING_ROD", - "name": "Yeti Rod", - "category": "FISHING_ROD", - "tier": "EPIC", - "stats": { - "DAMAGE": 150, - "STRENGTH": 130 - }, - "npc_sell_price": 150000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 25 - } - }, - "id": "YETI_ROD" - }, { "material": "GOLD_LEGGINGS", "name": "Starlight Leggings", @@ -17682,12 +19901,13 @@ "HEALTH": 30 }, "npc_sell_price": 22500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "STARLIGHT_LEGGINGS" }, { @@ -17766,55 +19986,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 400 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 18 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 17 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -17849,12 +20078,13 @@ "HEALTH": 5 }, "npc_sell_price": 2000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "CELESTE_BOOTS" }, { @@ -17886,41 +20116,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "id": "WEREWOLF_HELMET" }, { @@ -18012,41 +20248,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "id": "ZOMBIE_BOOTS" }, { @@ -18062,24 +20304,6 @@ "npc_sell_price": 0.75, "id": "STAINED_GLASS_PANE:13" }, - { - "material": "FISHING_ROD", - "name": "Starter Lava Rod", - "category": "FISHING_ROD", - "tier": "UNCOMMON", - "stats": { - "DAMAGE": 50, - "STRENGTH": 50 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 10 - } - }, - "soulbound": "COOP", - "id": "STARTER_LAVA_ROD" - }, { "material": "GOLD_INGOT", "name": "Gold Ingot", @@ -18164,30 +20388,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 800 } @@ -18199,9 +20428,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -18296,42 +20527,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "SKELETON_GRUNT_BOOTS" }, @@ -18395,42 +20632,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "SKELETON_SOLDIER_LEGGINGS" }, @@ -18448,12 +20691,13 @@ "tier": "LEGENDARY", "category": "DEPLOYABLE", "unstackable": true, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "wolf", "level": 7 } - }, + ], "id": "PLASMAFLUX_POWER_ORB" }, { @@ -18504,51 +20748,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 300 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -18567,24 +20819,6 @@ "npc_sell_price": 770, "id": "CANDY_CORN" }, - { - "material": "FISHING_ROD", - "name": "Rod of Legends", - "category": "FISHING_ROD", - "tier": "EPIC", - "stats": { - "DAMAGE": 130, - "STRENGTH": 120 - }, - "npc_sell_price": 111000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 20 - } - }, - "id": "LEGEND_ROD" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -18646,30 +20880,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } @@ -18736,12 +20975,13 @@ "HEALTH": 30 }, "npc_sell_price": 17500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "STARLIGHT_HELMET" }, { @@ -18800,42 +21040,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SUPER_HEAVY_BOOTS" }, @@ -18894,12 +21140,13 @@ "name": "Blaze Helmet", "category": "HELMET", "tier": "EPIC", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 90, @@ -18911,9 +21158,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -18942,12 +21191,13 @@ { "material": "IRON_PLATE", "name": "Parkour Checkpoint", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 1 } - }, + ], "id": "PARKOUR_POINT" }, { @@ -18986,42 +21236,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "BOUNCY_CHESTPLATE" }, @@ -19085,56 +21341,51 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "SKELETON_MASTER_LEGGINGS" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "name": "Golden Dante Statue", - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxNzQ4NTk1NTUwNSwKICAicHJvZmlsZUlkIiA6ICJkZGVkNTZlMWVmOGI0MGZlOGFkMTYyOTIwZjdhZWNkYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJEaXNjb3JkQXBwIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3ODZhNGMxOTRhODFmMWQ5NTc5ZjBhYTBmZjU5ZjQ1ZDlmMjU5YzRiNTA2NzRkNjc2ZmQ0ZjM0ZWFjMTBiZTIiCiAgICB9CiAgfQp9", - "category": "COSMETIC", - "tier": "EPIC", - "unstackable": true, - "museum": true, - "id": "GOLDEN_DANTE_STATUE" - }, { "material": "BAKED_POTATO", "name": "Enchanted Baked Potato", @@ -19158,55 +21409,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1000 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 2 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 2 } @@ -19216,21 +21476,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -19239,181 +21504,6 @@ ], "id": "TANK_WITHER_CHESTPLATE" }, - { - "material": "FISHING_ROD", - "name": "Hellfire Rod", - "category": "FISHING_ROD", - "tier": "LEGENDARY", - "stats": { - "DAMAGE": 180, - "STRENGTH": 180, - "SEA_CREATURE_CHANCE": 7 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 35 - } - }, - "npc_sell_price": 5634000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "LUMP_OF_MAGMA", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 1 - }, - { - "essence_type": "CRIMSON", - "amount": 50 - } - ], - [ - { - "item_id": "MOOGMA_PELT", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "PYROCLASTIC_SCALE", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 100 - } - ], - [ - { - "item_id": "CUP_OF_BLOOD", - "amount": 50 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 40 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "FLAMING_HEART", - "amount": 70 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 50 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "ORB_OF_ENERGY", - "amount": 80 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 60 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 90 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 70 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 30 - }, - { - "item_id": "MAGMA_FISH_GOLD", - "amount": 30 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 1000 - } - ], - [ - { - "item_id": "MAGMA_LORD_FRAGMENT", - "amount": 25 - }, - { - "item_id": "MAGMA_FISH_GOLD", - "amount": 40 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 1200 - } - ], - [ - { - "item_id": "MAGMA_LORD_FRAGMENT", - "amount": 30 - }, - { - "item_id": "MAGMA_FISH_GOLD", - "amount": 50 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 5 - }, - { - "essence_type": "CRIMSON", - "amount": 1600 - } - ] - ], - "id": "HELLFIRE_ROD" - }, { "material": "NETHER_STAR", "name": "Saving Grace", @@ -19476,42 +21566,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "SKELETON_GRUNT_CHESTPLATE" }, @@ -19533,12 +21629,13 @@ "DEFENSE": 80 }, "npc_sell_price": 40000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 17 } - }, + ], "id": "SPONGE_HELMET" }, { @@ -19579,67 +21676,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -19755,42 +21864,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 13 } - }, + ], "dungeon_item": true, "id": "CONJURING_SWORD" }, @@ -19808,12 +21923,13 @@ "name": "Zombie Brain Mixin", "tier": "RARE", "unstackable": true, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "zombie", "level": 8 } - }, + ], "id": "ZOMBIE_BRAIN_MIXIN" }, { @@ -19849,14 +21965,22 @@ "HEALTH": 35 }, "npc_sell_price": 125, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "id": "SALMON_HELMET_NEW" }, + { + "material": "BOOK", + "name": "The Art of Peace", + "tier": "LEGENDARY", + "museum": true, + "id": "THE_ART_OF_PEACE" + }, { "material": "GOLD_AXE", "name": "Golden Axe", @@ -19886,67 +22010,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -20027,16 +22163,18 @@ "STRENGTH": 25, "SEA_CREATURE_CHANCE": 3 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 33 } - }, + ], "npc_sell_price": 25000, "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25 } @@ -20044,112 +22182,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 35 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 40 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 45 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "FLAMING_HEART", "amount": 50 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -20217,59 +22378,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "OFFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 10 } @@ -20324,12 +22495,13 @@ "HEALTH": 75 }, "npc_sell_price": 100, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "museum": true, "id": "SALMON_BOOTS" }, @@ -20423,42 +22595,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "dungeon_item": true, "id": "SILENT_DEATH" }, @@ -20473,12 +22651,13 @@ "HEALTH": 50 }, "npc_sell_price": 38000, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "UNIVERSAL" @@ -20487,9 +22666,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -20499,9 +22680,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -20549,12 +22732,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 10 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 2 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 2 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -20570,6 +22754,9 @@ "category": "ACCESSORY", "tier": "UNCOMMON", "npc_sell_price": 17000, + "stats": { + "vitality": 10 + }, "id": "HEALING_RING" }, { @@ -20641,42 +22828,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SKELETOR_CHESTPLATE" }, @@ -20694,12 +22887,13 @@ "category": "GLOVES", "tier": "EPIC", "npc_sell_price": 118720, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "INTELLIGENCE": 15, "MINING_FORTUNE": 7 @@ -20708,100 +22902,120 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 16 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 32 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 64 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 4 } @@ -20855,12 +23069,13 @@ "HEALTH": 65 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 20 } - }, + ], "id": "DIVER_HELMET" }, { @@ -20895,11 +23110,12 @@ "glowing": true, "tier": "EPIC", "npc_sell_price": 68000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "id": "BEACON_5" }, { @@ -20913,67 +23129,6 @@ "npc_sell_price": 50, "id": "SPECTRE_DUST" }, - { - "material": "LEATHER_BOOTS", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Boots", - "category": "BOOTS", - "tier": "EPIC", - "stats": { - "DEFENSE": 55, - "HEALTH": 100, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 150 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "STARRED_ADAPTIVE_BOOTS" - }, { "material": "RAW_FISH", "durability": 1, @@ -21049,149 +23204,6 @@ "tier": "EPIC", "id": "PROTECTOR_FRAGMENT" }, - { - "material": "LEATHER_CHESTPLATE", - "color": "36,221,229", - "name": "Thunder Chestplate", - "category": "CHESTPLATE", - "tier": "EPIC", - "soulbound": "COOP", - "stats": { - "HEALTH": 230, - "DEFENSE": 230, - "STRENGTH": 25, - "SEA_CREATURE_CHANCE": 4 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 36 - } - }, - "npc_sell_price": 200000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 40 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 6 - }, - { - "essence_type": "CRIMSON", - "amount": 120 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 8 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 10 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 15 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 20 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 25 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 500 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 30 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 600 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 40 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 5 - }, - { - "essence_type": "CRIMSON", - "amount": 800 - } - ] - ], - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "THUNDER_CHESTPLATE" - }, { "material": "RABBIT", "name": "Enchanted Raw Rabbit", @@ -21251,12 +23263,13 @@ "category": "NECKLACE", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 30, "DEFENSE": 20, @@ -21266,72 +23279,85 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } @@ -21354,30 +23380,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -21552,12 +23583,13 @@ "tier": "EPIC", "category": "NECKLACE", "npc_sell_price": 17440, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "id": "SYNTHESIZER_V3" }, @@ -21587,42 +23619,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1200 } ] ], "gear_score": 50, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 7 } - }, + ], "dungeon_item": true, "id": "WITHER_CLOAK" }, @@ -21645,12 +23683,13 @@ "durability": 3, "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmM3MDQwNmU3NTM5NDIxMzU0MjRiYjk5NjkyYjc0NGM5YTAzNDVkM2YzYzgxOTNlOWQ4ZTMwZDU0NDEyMThlMyJ9fX0", "name": "Egg Hunt", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 3 } - }, + ], "id": "EGG_HUNT" }, { @@ -21683,33 +23722,39 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 214 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -21719,21 +23764,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -21743,122 +23793,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -21884,55 +23957,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 } @@ -22042,42 +24124,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 320 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_KNIGHT_BOOTS" }, @@ -22138,67 +24226,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 360 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -22254,42 +24354,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 320 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_KNIGHT_HELMET" }, @@ -22304,11 +24410,12 @@ "category": "ACCESSORY", "tier": "RARE", "soulbound": "SOLO", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "GOLD" } - }, + ], "description": "%%gray%%%%italic%%A perfectly fine tooth, besides its weight...", "id": "ODGERS_GOLD_TOOTH" }, @@ -22366,30 +24473,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 90 } @@ -22445,11 +24557,12 @@ "MINING_SPEED": 60 }, "npc_sell_price": 10000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "id": "TITANIUM_RELIC" }, { @@ -22512,42 +24625,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "SKELETON_SOLDIER_HELMET" }, @@ -22576,24 +24695,6 @@ "tier": "RARE", "id": "CARROT_PATCH" }, - { - "material": "FISHING_ROD", - "name": "Ice Rod", - "category": "FISHING_ROD", - "tier": "RARE", - "stats": { - "DAMAGE": 30 - }, - "npc_sell_price": 20000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 3 - } - }, - "museum": true, - "id": "ICE_ROD" - }, { "material": "ENDER_STONE", "name": "Enchanted End Stone", @@ -22649,12 +24750,13 @@ "HEALTH": 15 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 12 } - }, + ], "id": "END_BOOTS" }, { @@ -22678,11 +24780,12 @@ "MINING_SPEED": 45 }, "npc_sell_price": 5000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "TITANIUM_ARTIFACT" }, { @@ -22817,12 +24920,13 @@ 26 ] }, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 30 } - }, + ], "dungeon_item": true, "id": "SKELETON_LORD_BOW" }, @@ -22836,12 +24940,13 @@ "HEALTH": 25 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 12 } - }, + ], "id": "END_LEGGINGS" }, { @@ -22870,30 +24975,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } @@ -22933,67 +25043,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 300 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -23045,82 +25167,96 @@ "CRITICAL_DAMAGE": 13, "INTELLIGENCE": 107 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -23130,10 +25266,12 @@ "item_id": "BURNING_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -23144,21 +25282,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -23168,21 +25311,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -23355,68 +25503,6 @@ "npc_sell_price": 50, "id": "LAPIS_CRYSTAL" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "item_durability": -1, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTZmMGQzNGFhYTcxNDM3Nzk4MzcwMWMxYmJlOWIzZjZlN2IzMGNiMzg1NzFiYzBhMmZkNzU0MWQ3ZWRiMTYzNyJ9fX0K", - "name": "Adaptive Helmet", - "category": "HELMET", - "tier": "EPIC", - "stats": { - "DEFENSE": 60, - "HEALTH": 120, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 150 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "STARRED_ADAPTIVE_HELMET" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -23435,63 +25521,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -23501,21 +25598,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -23571,41 +25673,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 2 } - }, + ], "dungeon_item": true, "id": "MACHINE_GUN_BOW" }, @@ -23690,6 +25798,9 @@ "tier": "RARE", "soulbound": "COOP", "npc_sell_price": 1, + "stats": { + "WALK_SPEED": 1 + }, "id": "FROZEN_CHICKEN" }, { @@ -23701,11 +25812,12 @@ "name": "Diamond Hunter Helmet", "category": "HELMET", "tier": "LEGENDARY", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "DIAMOND" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -23716,6 +25828,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -23724,72 +25837,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -23823,41 +25949,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "id": "WEREWOLF_BOOTS" }, { @@ -24084,12 +26216,13 @@ "category": "CLOAK", "tier": "RARE", "npc_sell_price": 8680, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 7, "DEFENSE": 7 @@ -24098,112 +26231,135 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 130 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 180 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 310 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 390 } @@ -24215,6 +26371,7 @@ "material": "STICK", "name": "Stick", "npc_sell_price": 0.25, + "motes_sell_price": 15, "id": "STICK" }, { @@ -24265,11 +26422,12 @@ "name": "Gold Hunter Leggings", "category": "LEGGINGS", "tier": "EPIC", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "GOLD" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -24280,6 +26438,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -24288,72 +26447,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -24440,42 +26612,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SKELETOR_LEGGINGS" }, @@ -24521,11 +26699,12 @@ "MINING_SPEED": 300 }, "npc_sell_price": 253000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "GEMSTONE_DRILL_2" }, { @@ -24565,30 +26744,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } @@ -24644,11 +26828,12 @@ "MINING_SPEED": 30 }, "npc_sell_price": 2000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "TITANIUM_RING" }, { @@ -24737,42 +26922,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_SOLDIER_LEGGINGS" }, @@ -24800,15 +26991,17 @@ "DAMAGE": 10 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "I" } - }, + ], "id": "GOLD_TIPPED_ARROW" }, { @@ -24860,70 +27053,6 @@ "npc_sell_price": 1, "id": "JUNGLE_DOOR_ITEM" }, - { - "material": "FISHING_ROD", - "name": "Phantom Rod", - "category": "FISHING_WEAPON", - "tier": "LEGENDARY", - "stats": { - "DAMAGE": 200, - "STRENGTH": 125 - }, - "npc_sell_price": 1000, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 500 - }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 300 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 500 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ] - ], - "requirements": { - "skill": { - "type": "FISHING", - "level": 21 - } - }, - "id": "PHANTOM_ROD" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGIzYTA1YjE4MDI2MGRkMDc0Nzk5ZDA1YjkwZjY3OTBiOTYwZDZlNWNiYTNkZDEyNWJhM2JmZDljYzE1NDA4OSJ9fX0=", - "name": "Bingo Heirloom", - "category": "ACCESSORY", - "tier": "LEGENDARY", - "museum": true, - "id": "BINGO_HEIRLOOM" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -24997,42 +27126,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 4 } - }, + ], "dungeon_item": true, "id": "BONE_BOOMERANG" }, @@ -25122,56 +27257,68 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 100 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 120 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } @@ -25179,13 +27326,6 @@ ], "id": "DOJO_YELLOW_BELT" }, - { - "material": "PAPER", - "name": "Bingo Card", - "tier": "SPECIAL", - "museum": true, - "id": "BINGO_CARD" - }, { "material": "DIAMOND_BOOTS", "name": "Hardened Diamond Boots", @@ -25202,30 +27342,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } @@ -25261,124 +27406,148 @@ "CRITICAL_DAMAGE": 35, "SEA_CREATURE_CHANCE": 4.5 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 45 } - }, + ], "npc_sell_price": 350000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 160 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 320 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 400 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 12 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 15 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1600 } @@ -25426,55 +27595,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 70 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 230 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 27 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 } @@ -25639,11 +27817,12 @@ "glowing": true, "tier": "EPIC", "npc_sell_price": 16300, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "BEACON_3" }, { @@ -25671,11 +27850,12 @@ "name": "Gold Hunter Chestplate", "category": "CHESTPLATE", "tier": "EPIC", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "GOLD" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -25686,6 +27866,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -25694,72 +27875,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -25842,42 +28036,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_LORD_LEGGINGS" }, @@ -26088,42 +28288,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 28 } - }, + ], "dungeon_item": true, "id": "STEEL_CHESTPLATE" }, @@ -26167,15 +28373,17 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } @@ -26183,180 +28391,220 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 7 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 7 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 9 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 9 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 9 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 12 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 12 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 15 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 15 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 25 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 25 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -26388,51 +28636,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1000 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 2 } @@ -26442,21 +28698,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -26485,15 +28746,17 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } @@ -26501,180 +28764,220 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 7 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 7 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 9 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 9 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 9 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 12 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 12 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 15 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 15 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 25 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 25 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -26715,11 +29018,12 @@ "MINING_SPEED": 450 }, "npc_sell_price": 7000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "MITHRIL_DRILL_1" }, { @@ -26757,11 +29061,12 @@ "MINING_SPEED": 150 }, "npc_sell_price": 253000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "GEMSTONE_DRILL_1" }, { @@ -26783,11 +29088,12 @@ "MINING_SPEED": 310 }, "npc_sell_price": 5000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "TITANIUM_PICKAXE" }, { @@ -26799,32 +29105,16 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 15 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "museum": true, "id": "FLAMEBREAKER_HELMET" }, - { - "material": "FISHING_ROD", - "name": "Auger Rod", - "category": "FISHING_ROD", - "tier": "LEGENDARY", - "stats": { - "DAMAGE": 135, - "STRENGTH": 90 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 25 - } - }, - "id": "AUGER_ROD" - }, { "material": "PRISMARINE_SHARD", "name": "Prismarine Blade", @@ -26978,42 +29268,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 70 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 450 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 750 } ] ], "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "id": "NECROMANCER_SWORD" }, @@ -27035,12 +29331,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 15 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "museum": true, "id": "FLAMEBREAKER_BOOTS" }, @@ -27065,30 +29362,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -27109,12 +29411,13 @@ "MINING_FORTUNE": 10, "MINING_SPEED": 25 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -27123,9 +29426,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -27135,9 +29440,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -27175,6 +29482,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 } ] @@ -27227,51 +29535,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 4 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -27291,11 +29607,12 @@ "MINING_SPEED": 15 }, "npc_sell_price": 51200, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 2 } - }, + ], "id": "TITANIUM_TALISMAN" }, { @@ -27330,11 +29647,12 @@ "name": "Gold Hunter Helmet", "category": "HELMET", "tier": "EPIC", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "GOLD" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -27345,6 +29663,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -27353,72 +29672,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -27460,12 +29792,13 @@ "INTELLIGENCE": 300, "WEAPON_ABILITY_DAMAGE": 42000 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 250000, "ability_damage_scaling": 0.3, "can_have_attributes": true, @@ -27473,152 +29806,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 12 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 14 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 14 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 16 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 18 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 18 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 20 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -27634,12 +30000,13 @@ { "material": "IRON_BLOCK", "name": "Parkour Times", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 1 } - }, + ], "id": "PARKOUR_TIMES" }, { @@ -27659,123 +30026,147 @@ "DAMAGE": 270, "STRENGTH": 150 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 25 } - }, + ], "npc_sell_price": 100000, "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 160 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 320 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 640 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 160 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 320 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 640 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -27825,12 +30216,13 @@ "HEALTH": 105 }, "npc_sell_price": 175, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "id": "SALMON_LEGGINGS_NEW" }, { @@ -27858,55 +30250,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 27 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 } @@ -27967,59 +30368,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 10 } @@ -28105,42 +30516,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "SKELETON_LORD_LEGGINGS" }, @@ -28180,82 +30597,96 @@ "CRITICAL_DAMAGE": 16, "INTELLIGENCE": 206 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -28265,10 +30696,12 @@ "item_id": "FIERY_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -28279,21 +30712,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -28303,21 +30741,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -28416,42 +30859,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_COMMANDER_CHESTPLATE" }, @@ -28527,12 +30976,13 @@ "INTELLIGENCE": 50 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "museum": true, "id": "EMBER_ROD" }, @@ -28574,12 +31024,13 @@ "HEALTH": 30 }, "npc_sell_price": 35000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "STARLIGHT_CHESTPLATE" }, { @@ -28605,11 +31056,12 @@ "MINING_SPEED": 600 }, "npc_sell_price": 29000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "MITHRIL_DRILL_2" }, { @@ -28661,9 +31113,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 1 } @@ -28711,55 +31165,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 700 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 2 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 2 } @@ -28769,21 +31232,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -28792,16 +31260,6 @@ ], "id": "TANK_WITHER_LEGGINGS" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmYyNTk0NGI3NDY1ZmY0NTg2YTM0MWY4ODFmNDg4YjZmOWQ0YjNmZmMxMDBmNTBhNzcwODcwNzViM2NlYjFiIn19fQ==", - "name": "Bingo Talisman", - "category": "ACCESSORY", - "tier": "COMMON", - "museum": true, - "id": "BINGO_TALISMAN" - }, { "material": "LEATHER_BOOTS", "item_durability": -1, @@ -28818,42 +31276,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "id": "WITHER_BOOTS" }, @@ -28946,6 +31410,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 } ] @@ -29028,164 +31493,198 @@ "DAMAGE": 200, "STRENGTH": 100 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 185700, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 40 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 50 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 60 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 70 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 80 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 90 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 32 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "TENTACLE_MEAT", "amount": 100 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 64 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -29234,11 +31733,12 @@ "category": "ACCESSORY", "tier": "EPIC", "soulbound": "SOLO", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "DIAMOND" } - }, + ], "description": "%%gray%%%%italic%%A perfectly fine tooth, besides its radiant brightness...", "id": "ODGERS_DIAMOND_TOOTH" }, @@ -29254,12 +31754,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 10 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 2 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 2 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -29314,11 +31815,12 @@ "name": "Diamond Hunter Boots", "category": "BOOTS", "tier": "LEGENDARY", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "DIAMOND" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -29329,6 +31831,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -29337,72 +31840,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -29425,30 +31941,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } @@ -29553,51 +32074,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 800 } ] ], "gear_score": 100, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 } @@ -29634,12 +32163,13 @@ "HEALTH": 30 }, "npc_sell_price": 5000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "MERCENARY_BOOTS" }, { @@ -29684,124 +32214,148 @@ "CRITICAL_DAMAGE": 35, "SEA_CREATURE_CHANCE": 4.5 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 45 } - }, + ], "npc_sell_price": 250000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 160 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 320 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 400 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 12 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 15 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1600 } @@ -29852,164 +32406,198 @@ "MAGIC_FIND": 1, "SEA_CREATURE_CHANCE": 1 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 15 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 20 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 25 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 30 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 40 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 14 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 50 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 60 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 18 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 80 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -30017,71 +32605,6 @@ ], "id": "DELIRIUM_NECKLACE" }, - { - "material": "FISHING_ROD", - "name": "Magma Rod", - "category": "FISHING_ROD", - "tier": "RARE", - "stats": { - "DAMAGE": 150, - "STRENGTH": 150, - "SEA_CREATURE_CHANCE": 3 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 27 - } - }, - "npc_sell_price": 8000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "LUMP_OF_MAGMA", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 1 - }, - { - "essence_type": "CRIMSON", - "amount": 50 - } - ], - [ - { - "item_id": "MOOGMA_PELT", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "PYROCLASTIC_SCALE", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 100 - } - ] - ], - "id": "MAGMA_ROD" - }, { "material": "SPECKLED_MELON", "name": "Glistering Melon", @@ -30106,12 +32629,13 @@ "name": "Frozen Blaze Helmet", "category": "HELMET", "tier": "LEGENDARY", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 105, @@ -30125,49 +32649,57 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 60 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -30177,21 +32709,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -30241,30 +32778,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -30289,30 +32831,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -30339,16 +32886,6 @@ "npc_sell_price": 640, "id": "ENCHANTED_QUARTZ" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjJmMjQ5OWFiNGNmYzk3ZTY1ZjBmYTlmZTYzY2M2MDY3MDdhNGFlOTZhZjQwNzg0NmIxYjUzNTRmM2ZhZDk5In19fQ==", - "name": "Bingo Ring", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "museum": true, - "id": "BINGO_RING" - }, { "material": "IRON_HOE", "name": "Wand of Recall", @@ -30376,30 +32913,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 90 } @@ -30443,42 +32985,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "BOUNCY_LEGGINGS" }, @@ -30536,33 +33084,16 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 15 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "museum": true, "id": "FLAMEBREAKER_LEGGINGS" }, - { - "material": "FISHING_ROD", - "name": "Challenging Rod", - "category": "FISHING_ROD", - "tier": "RARE", - "stats": { - "DAMAGE": 60, - "STRENGTH": 60 - }, - "npc_sell_price": 5000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 10 - } - }, - "id": "CHALLENGE_ROD" - }, { "material": "LEATHER_HELMET", "color": "158,112,3", @@ -30599,42 +33130,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "ROTTEN_HELMET" }, @@ -30707,41 +33244,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 25 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "id": "LEAPING_SWORD" }, { @@ -30779,11 +33322,12 @@ "MINING_SPEED": 280 }, "npc_sell_price": 400, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 2 } - }, + ], "id": "MITHRIL_PICKAXE" }, { @@ -30866,55 +33410,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -30953,42 +33506,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 2 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { @@ -31033,12 +33592,13 @@ "stats": { "DEFENSE": 70 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "npc_sell_price": 512640, "salvageable_from_recipe": true, @@ -31046,152 +33606,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 40 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 80 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 160 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 320 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 640 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 1280 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 2560 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 32 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 5120 }, { + "type": "ITEM", "item_id": "ENCHANTED_SULPHUR_CUBE", "amount": 64 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -31212,15 +33805,17 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } @@ -31228,180 +33823,220 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 7 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 7 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 9 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 9 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 9 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 12 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 12 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 15 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 15 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 25 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 25 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -31473,247 +34108,302 @@ "INTELLIGENCE": 100 }, "npc_sell_price": 256950, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 5 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "Z", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "Z", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "Z", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 4 }, { + "type": "ITEM", "item_id": "X", "amount": 30 }, { + "type": "ITEM", "item_id": "Y", "amount": 30 }, { + "type": "ITEM", "item_id": "Z", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -31764,55 +34454,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 2 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 2 } @@ -31822,21 +34521,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -31849,169 +34553,204 @@ "material": "GOLD_AXE", "name": "Ragnarock Axe", "category": "SWORD", + "sword_type": "AXE", "tier": "RARE", "stats": { "DAMAGE": 250, "STRENGTH": 70 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 5000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 4 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 6 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 8 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 10 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 12 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 14 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 16 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 18 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 20 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -32024,16 +34763,6 @@ ], "id": "RAGNAROCK_AXE" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDJkYWQ4NjhmOGQ4NjViYWEzMmQ2MTU4NjcyZDFiMTM0ZGI2MWVhNTZkMzNlZmEwYzA5ZjZiYTZmMjc2ZmYyIn19fQ==", - "name": "Bingo Artifact", - "category": "ACCESSORY", - "tier": "RARE", - "museum": true, - "id": "BINGO_ARTIFACT" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -32070,42 +34799,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "SUPER_UNDEAD_BOW" }, @@ -32126,63 +34861,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -32192,21 +34938,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -32230,6 +34981,14 @@ "npc_sell_price": 3, "id": "RED_SANDSTONE:2" }, + { + "material": "BLAZE_ROD", + "name": "Wizard Wand", + "glowing": true, + "category": "WAND", + "tier": "EPIC", + "id": "WIZARD_WAND" + }, { "material": "SKULL_ITEM", "durability": 3, @@ -32255,63 +35014,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -32365,124 +35135,148 @@ "CRITICAL_DAMAGE": 35, "SEA_CREATURE_CHANCE": 4.5 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 45 } - }, + ], "npc_sell_price": 350000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 160 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 320 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 400 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 12 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 15 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1600 } @@ -32544,42 +35338,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 4 } - }, + ], "dungeon_item": true, "id": "SPIRIT_SWORD" }, @@ -32595,163 +35395,197 @@ }, "ability_damage_scaling": 0.3, "npc_sell_price": 5000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 4 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 6 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 8 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 10 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 12 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 14 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 16 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 18 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 20 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -32808,12 +35642,13 @@ "MINING_FORTUNE": 10, "MINING_SPEED": 25 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -32822,9 +35657,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -32834,9 +35671,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -32868,11 +35707,12 @@ "MINING_FORTUNE": 150, "MINING_SPEED": 1800 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 7 } - }, + ], "museum": true, "gemstone_slots": [ { @@ -32885,9 +35725,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -32897,9 +35739,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 40 } @@ -32909,17 +35753,21 @@ "slot_type": "MINING", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JADE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMBER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_TOPAZ_GEM", "amount": 1 } @@ -32934,6 +35782,7 @@ "glowing": true, "tier": "SPECIAL", "museum": true, + "soulbound": "COOP", "id": "SPOOKY_PIE" }, { @@ -33039,82 +35888,96 @@ "CRITICAL_DAMAGE": 13, "INTELLIGENCE": 107 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -33124,10 +35987,12 @@ "item_id": "BURNING_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -33138,21 +36003,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -33162,21 +36032,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -33215,42 +36090,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], "gear_score": 50, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "dungeon_item": true, "id": "FEL_SWORD" }, @@ -33279,162 +36160,196 @@ }, "npc_sell_price": 40000, "can_have_attributes": true, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 4 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 5 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 6 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 7 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 8 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 9 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -33478,67 +36393,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 130 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 220 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 320 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -33591,12 +36518,13 @@ "HEALTH": 20 }, "npc_sell_price": 4000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "CELESTE_CHESTPLATE" }, { @@ -33621,6 +36549,7 @@ "material": "IRON_AXE", "name": "Raider Axe", "category": "SWORD", + "sword_type": "AXE", "tier": "RARE", "stats": { "DAMAGE": 80, @@ -33668,67 +36597,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -33794,12 +36735,13 @@ "DEFENSE": 40 }, "npc_sell_price": 2000, - "requirements": { - "skill": { - "type": "MINING", + "requirements": [ + { + "type": "SKILL", + "skill": "MINING", "level": 5 } - }, + ], "id": "LAPIS_ARMOR_CHESTPLATE" }, { @@ -33825,152 +36767,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 100 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 120 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 150 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 180 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 300 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 350 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 400 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 500 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 600 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 700 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 800 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 900 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 1200 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 1300 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -34082,42 +37057,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_COMMANDER_BOOTS" }, @@ -34173,30 +37154,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -34328,12 +37314,13 @@ "material": "SHEARS", "name": "Rock Paper Shears", "tier": "UNCOMMON", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 8 } - }, + ], "id": "ROCK_PAPER_SHEARS" }, { @@ -34403,42 +37390,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SKELETOR_BOOTS" }, @@ -34478,15 +37471,17 @@ "INTELLIGENCE": 15 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } @@ -34494,180 +37489,220 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 7 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 7 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 9 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 9 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 9 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 12 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 12 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 15 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 15 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 25 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 25 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -34753,30 +37788,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } @@ -34807,51 +37847,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 4 } @@ -34861,21 +37909,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -34919,51 +37972,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -35088,42 +38149,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 320 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_KNIGHT_CHESTPLATE" }, @@ -35163,12 +38230,13 @@ "name": "Lesser Orb of Healing", "tier": "EPIC", "gear_score": 60, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "LESSER_ORB_OF_HEALING" }, @@ -35188,12 +38256,13 @@ "category": "BRACELET", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 30, "DEFENSE": 20, @@ -35203,72 +38272,85 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } @@ -35348,63 +38430,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1000 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -35414,21 +38507,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -35461,55 +38559,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 } @@ -35546,12 +38653,13 @@ "category": "GLOVES", "tier": "EPIC", "npc_sell_price": 201000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 20, "DEFENSE": 10, @@ -35562,152 +38670,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 5 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 40 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 50 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 60 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 70 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 32 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 80 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 64 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -35758,82 +38899,96 @@ "CRITICAL_DAMAGE": 10, "INTELLIGENCE": 85 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -35843,10 +38998,12 @@ "item_id": "HOT_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -35857,21 +39014,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -35881,21 +39043,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -35931,30 +39098,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } @@ -35973,12 +39145,13 @@ "HEALTH": 25 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "SQUIRE_HELMET" }, { @@ -35996,12 +39169,13 @@ "category": "BELT", "tier": "EPIC", "npc_sell_price": 250000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "DEFENSE": 20, "STRENGTH": 5 @@ -36010,192 +39184,235 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 10 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 80 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 120 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 180 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 260 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 12 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 360 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 60 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 480 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 70 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 620 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 80 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 780 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 90 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 30 } @@ -36226,42 +39443,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ] ], "gear_score": 30, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "MENDER_FEDORA" }, @@ -36309,12 +39532,13 @@ "category": "CLOAK", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 15, "MINING_FORTUNE": 10 @@ -36356,12 +39580,13 @@ }, "npc_sell_price": 1, "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "CRYPT_WITHERLORD_LEGGINGS" }, @@ -36416,42 +39641,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "ROTTEN_LEGGINGS" }, @@ -36484,33 +39715,39 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 214 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -36520,21 +39757,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -36544,122 +39786,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -36736,42 +40001,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "SKELETON_SOLDIER_BOOTS" }, @@ -36848,42 +40119,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_SOLDIER_HELMET" }, @@ -36905,51 +40182,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -37069,12 +40354,13 @@ "INTELLIGENCE": 10 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "EMBER_CHESTPLATE" }, { @@ -37109,24 +40395,6 @@ "npc_sell_price": 0.5, "id": "WOOD_STEP" }, - { - "material": "FISHING_ROD", - "name": "Shredder", - "category": "FISHING_WEAPON", - "tier": "LEGENDARY", - "stats": { - "DAMAGE": 120, - "FEROCITY": 50 - }, - "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 20 - } - }, - "id": "THE_SHREDDER" - }, { "material": "IRON_CHESTPLATE", "name": "Mercenary Chestplate", @@ -37137,12 +40405,13 @@ "HEALTH": 70 }, "npc_sell_price": 20000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "MERCENARY_CHESTPLATE" }, { @@ -37313,18 +40582,20 @@ "DEFENSE": 60 }, "npc_sell_price": 32000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 17 } - }, + ], "id": "SPONGE_BOOTS" }, { "material": "STRING", "name": "String", "npc_sell_price": 3, + "motes_sell_price": 30, "id": "STRING" }, { @@ -37366,6 +40637,9 @@ "category": "ACCESSORY", "tier": "UNCOMMON", "npc_sell_price": 18000, + "stats": { + "WALK_SPEED": 3 + }, "id": "SPEED_RING" }, { @@ -37449,7 +40723,7 @@ "stats": { "MAGIC_FIND": 5, "MINING_FORTUNE": 20, - "TRUE_DEFENSE": 75, + "TRUE_DEFENSE": 40, "MINING_SPEED": 50 }, "npc_sell_price": 60000, @@ -37461,9 +40735,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -37473,33 +40749,41 @@ "slot_type": "UNIVERSAL", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_TOPAZ_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -37545,51 +40829,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -37668,51 +40960,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 700 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 4 } @@ -37722,21 +41022,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -37860,12 +41165,13 @@ "name": "Frozen Blaze Chestplate", "category": "CHESTPLATE", "tier": "LEGENDARY", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 180, @@ -37879,49 +41185,57 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 70 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -37931,21 +41245,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -38051,42 +41370,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "METAL_CHESTPLATE" }, @@ -38105,33 +41430,39 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 214 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -38141,21 +41472,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -38165,122 +41501,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -38326,124 +41685,148 @@ "CRITICAL_DAMAGE": 35, "SEA_CREATURE_CHANCE": 4.5 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 45 } - }, + ], "npc_sell_price": 350000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 160 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 320 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 400 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 12 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 15 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_LORD_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1600 } @@ -38511,42 +41894,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_SOLDIER_BOOTS" }, @@ -38558,6 +41947,9 @@ "category": "ACCESSORY", "tier": "RARE", "npc_sell_price": 1400000, + "stats": { + "WALK_SPEED": 5 + }, "id": "SPEED_ARTIFACT" }, { @@ -38595,12 +41987,13 @@ "DEFENSE": 20 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "MINING", + "requirements": [ + { + "type": "SKILL", + "skill": "MINING", "level": 5 } - }, + ], "id": "LAPIS_ARMOR_BOOTS" }, { @@ -38712,42 +42105,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "SKELETON_SOLDIER_CHESTPLATE" }, @@ -38819,16 +42218,6 @@ "tier": "EPIC", "id": "SOLVED_PRISM" }, - { - "material": "COAL_BLOCK", - "name": "Bingo Display", - "category": "COSMETIC", - "tier": "COMMON", - "unstackable": true, - "description": "%%gray%%Show off your total %%gold%%Bingo Points%%gray%%!", - "museum": true, - "id": "BINGO_DISPLAY" - }, { "material": "WEB", "name": "Web", @@ -38933,42 +42322,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 28 } - }, + ], "dungeon_item": true, "id": "DEATH_BOW" }, @@ -39045,55 +42440,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 27 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 } @@ -39142,41 +42546,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "dungeon_item": true, "id": "SNIPER_HELMET" }, @@ -39199,55 +42609,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -39264,12 +42683,13 @@ "category": "CLOAK", "tier": "EPIC", "npc_sell_price": 57000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 25, "CRITICAL_DAMAGE": 20 @@ -39279,152 +42699,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 60 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 80 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 120 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 150 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 180 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 14 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 220 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 300 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 18 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 400 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -39481,55 +42934,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -39618,42 +43080,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "SKELETON_MASTER_HELMET" }, @@ -39712,63 +43180,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 70 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 450 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 750 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -39789,12 +43268,13 @@ "HEALTH": 130 }, "npc_sell_price": 200, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "id": "SALMON_CHESTPLATE_NEW" }, { @@ -39897,42 +43377,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "ROTTEN_BOOTS" }, @@ -39979,11 +43465,12 @@ "name": "Silver Hunter Leggings", "category": "LEGGINGS", "tier": "RARE", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "SILVER" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -39994,72 +43481,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -40171,42 +43671,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ] ], "gear_score": 50, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 28 } - }, + ], "dungeon_item": true, "id": "GIANT_CLEAVER" }, @@ -40320,11 +43826,12 @@ "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyNTQ5MjcxMjIxMiwKICAicHJvZmlsZUlkIiA6ICI5ZDIyZGRhOTVmZGI0MjFmOGZhNjAzNTI1YThkZmE4ZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJTYWZlRHJpZnQ0OCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mN2U1NDFkZmI0YmExZjdkYzI4YjU0OGUzNDdhYmJkYzk4N2ViZTBlNjFjNDlmYTg3MTExZWYxYjJkY2IyMjE4IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0", "name": "Perfectly-Cut Fuel Tank", "tier": "RARE", - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 7 } - }, + ], "id": "PERFECTLY_CUT_FUEL_TANK" }, { @@ -40333,11 +43840,12 @@ "glowing": true, "tier": "EPIC", "npc_sell_price": 33700, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "BEACON_4" }, { @@ -40348,12 +43856,13 @@ "category": "BELT", "tier": "RARE", "npc_sell_price": 9265, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "DEFENSE": 7, "STRENGTH": 7 @@ -40362,192 +43871,235 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 5 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 10 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 80 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 20 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 120 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 30 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 180 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 40 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 260 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 50 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 12 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 360 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 60 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 480 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 70 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 620 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 80 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "BLAZE_ASHES", "amount": 780 }, { + "type": "ITEM", "item_id": "MUTATED_BLAZE_ASHES", "amount": 90 }, { + "type": "ITEM", "item_id": "BEZOS", "amount": 30 } @@ -40645,42 +44197,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "id": "LAST_BREATH" }, @@ -40691,11 +44249,12 @@ "name": "Amber-polished Drill Engine", "tier": "RARE", "npc_sell_price": 103000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 7 } - }, + ], "id": "AMBER_POLISHED_DRILL_ENGINE" }, { @@ -40749,30 +44308,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 3 } @@ -40822,30 +44386,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -40906,12 +44475,13 @@ "name": "Blaze Boots", "category": "BOOTS", "tier": "EPIC", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 80, @@ -40923,9 +44493,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -40941,7 +44513,7 @@ "name": "Refined Mithril", "glowing": true, "tier": "EPIC", - "npc_sell_price": 256000, + "npc_sell_price": 204800, "id": "REFINED_MITHRIL" }, { @@ -40967,164 +44539,198 @@ }, "category": "BELT", "unstackable": true, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 55000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 40 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 60 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 80 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 120 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 150 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 180 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 14 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 220 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 300 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 18 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 400 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 20 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -41161,19 +44767,22 @@ "DAMAGE": 5 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 }, - "collection": { - "collection_id": "SLIME_BALL", - "required_tier": 7 + { + "type": "COLLECTION", + "collection": "SLIME_BALL", + "tier": 7 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "II" } - }, + ], "id": "BOUNCY_ARROW" }, { @@ -41199,41 +44808,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "id": "ZOMBIE_CHESTPLATE" }, { @@ -41254,6 +44869,7 @@ "tier": "SPECIAL", "npc_sell_price": 1337, "museum": true, + "soulbound": "SOLO", "id": "THE_CAKE" }, { @@ -41277,12 +44893,13 @@ { "material": "GOLD_PLATE", "name": "Parkour Start/End", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 1 } - }, + ], "id": "PARKOUR_CONTROLLER" }, { @@ -41339,12 +44956,13 @@ "name": "Berserker Chestplate", "category": "CHESTPLATE", "npc_sell_price": 322250, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "tier": "EPIC", "stats": { "STRENGTH": 60, @@ -41355,152 +44973,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 2 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 4 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -41546,55 +45197,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -41613,12 +45273,13 @@ "DEFENSE": 100 }, "npc_sell_price": 56000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 17 } - }, + ], "id": "SPONGE_LEGGINGS" }, { @@ -41630,12 +45291,13 @@ "DAMAGE": 140 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 15 } - }, + ], "id": "END_STONE_BOW" }, { @@ -41700,30 +45362,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 25 } @@ -41843,63 +45510,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 700 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -41909,21 +45587,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -42044,68 +45727,6 @@ "npc_sell_price": 13800, "id": "SHINY_PRISM" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "item_durability": -1, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTZmMGQzNGFhYTcxNDM3Nzk4MzcwMWMxYmJlOWIzZjZlN2IzMGNiMzg1NzFiYzBhMmZkNzU0MWQ3ZWRiMTYzNyJ9fX0K", - "name": "Adaptive Helmet", - "category": "HELMET", - "tier": "EPIC", - "stats": { - "DEFENSE": 50, - "HEALTH": 110, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 150 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "DEFENSIVE" - } - ], - "id": "ADAPTIVE_HELMET" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -42128,12 +45749,13 @@ "HEALTH": 60 }, "npc_sell_price": 100, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "id": "SALMON_BOOTS_NEW" }, { @@ -42223,7 +45845,7 @@ }, { "material": "INK_SACK", - "name": "Enchanted Ink Sack", + "name": "Enchanted Ink Sac", "glowing": true, "tier": "UNCOMMON", "npc_sell_price": 160, @@ -42283,11 +45905,12 @@ "MINING_SPEED": 450 }, "npc_sell_price": 253000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER" @@ -42322,59 +45945,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "OFFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 10 } @@ -42447,41 +46080,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 5 } - }, + ], "dungeon_item": true, "id": "CRYPT_DREADLORD_SWORD" }, @@ -42615,11 +46254,12 @@ "name": "Silver Hunter Chestplate", "category": "CHESTPLATE", "tier": "RARE", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "SILVER" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -42630,72 +46270,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -42753,42 +46406,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 2 } - }, + ], "dungeon_item": true, "id": "HEAVY_CHESTPLATE" }, @@ -42831,18 +46490,6 @@ "npc_sell_price": 12, "id": "LEATHER_CHESTPLATE" }, - { - "material": "CHAINMAIL_BOOTS", - "name": "Spring Boots", - "category": "BOOTS", - "tier": "RARE", - "enchantments": { - "feather_falling": 20 - }, - "unstackable": true, - "museum": true, - "id": "SPRING_BOOTS" - }, { "material": "WOOD_HOE", "name": "Wooden Hoe", @@ -42879,19 +46526,22 @@ "DAMAGE": 24 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 21 }, - "collection": { - "collection_id": "ICE", - "required_tier": 7 + { + "type": "COLLECTION", + "collection": "ICE", + "tier": 7 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "II" } - }, + ], "id": "ICY_ARROW" }, { @@ -42981,12 +46631,13 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "EMBER_BOOTS" }, { @@ -43012,12 +46663,13 @@ "name": "Wolf Fur Mixin", "tier": "RARE", "unstackable": true, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "wolf", "level": 8 } - }, + ], "id": "WOLF_FUR_MIXIN" }, { @@ -43071,12 +46723,13 @@ "name": "Blaze Chestplate", "category": "CHESTPLATE", "tier": "EPIC", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 165, @@ -43088,9 +46741,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -43172,12 +46827,13 @@ "name": "End Portal Fumes", "tier": "RARE", "unstackable": true, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "enderman", "level": 8 } - }, + ], "id": "END_PORTAL_FUMES_MIXIN" }, { @@ -43207,19 +46863,22 @@ "DAMAGE": 3 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 23 }, - "collection": { - "collection_id": "COAL", - "required_tier": 7 + { + "type": "COLLECTION", + "collection": "COAL", + "tier": 7 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "III" } - }, + ], "id": "EXPLOSIVE_ARROW" }, { @@ -43364,12 +47023,13 @@ "MINING_FORTUNE": 10, "MINING_SPEED": 25 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -43378,9 +47038,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -43390,9 +47052,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -43463,12 +47127,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 10 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 2 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 2 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -43494,82 +47159,96 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ] ], - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "BRONZE" } - }, + ], "soulbound": "SOLO", "id": "BRONZE_HUNTER_BOOTS" }, @@ -43603,41 +47282,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 25 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 13 } - }, + ], "id": "SILK_EDGE_SWORD" }, { @@ -43649,6 +47334,7 @@ "STRENGTH": 5 }, "npc_sell_price": 2, + "motes_sell_price": 105, "id": "FISHING_ROD" }, { @@ -43700,150 +47386,6 @@ "npc_sell_price": 1, "id": "TOIL_LOG" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODc5NDUzNSwKICAicHJvZmlsZUlkIiA6ICI5ZDIyZGRhOTVmZGI0MjFmOGZhNjAzNTI1YThkZmE4ZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJTYWZlRHJpZnQ0OCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS80YTkzZDJiZjk5OWE3ZmUwNTJiZjY3OTVlMGEwYmM3NTU1Y2MxZTAxNGM2NjdmYTg2ZGM0MjFjYjE4NmQ1YjY3IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", - "name": "Thunder Helmet", - "category": "HELMET", - "tier": "EPIC", - "soulbound": "COOP", - "stats": { - "HEALTH": 200, - "DEFENSE": 170, - "STRENGTH": 25, - "SEA_CREATURE_CHANCE": 4 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 36 - } - }, - "npc_sell_price": 125000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 40 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 6 - }, - { - "essence_type": "CRIMSON", - "amount": 120 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 8 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 10 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 15 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 20 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 25 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 500 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 30 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 600 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 40 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 5 - }, - { - "essence_type": "CRIMSON", - "amount": 800 - } - ] - ], - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "THUNDER_HELMET" - }, { "material": "CHAINMAIL_LEGGINGS", "name": "Ember Leggings", @@ -43855,12 +47397,13 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "EMBER_LEGGINGS" }, { @@ -43894,51 +47437,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1200 } ] ], "gear_score": 100, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -43948,9 +47499,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 } @@ -43963,12 +47516,13 @@ "material": "GOLD_BLOCK", "name": "Social Display", "tier": "UNCOMMON", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 2 } - }, + ], "id": "SOCIAL_DISPLAY" }, { @@ -44068,51 +47622,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -44208,30 +47770,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -44342,44 +47909,58 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 5 } - }, + ], "dungeon_item": true, "id": "CRYPT_BOW" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODE4NTUwMjg3NywKICAicHJvZmlsZUlkIiA6ICJlM2I0NDVjODQ3ZjU0OGZiOGM4ZmEzZjFmN2VmYmE4ZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNaW5pRGlnZ2VyVGVzdCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8yNTBkZTcwOTdkOTM5ZTQ0N2NhMmQzOTg0NDFjYmExZDJhNWUxYTY5MDUyYWM5OWMxOWZmMjBhZDVhM2YwMWFiIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Rat Jetpack", + "tier": "EPIC", + "id": "RAT_JETPACK" + }, { "material": "WOOL", "durability": 9, @@ -44395,7 +47976,7 @@ "stats": { "MAGIC_FIND": 5, "MINING_FORTUNE": 20, - "TRUE_DEFENSE": 150, + "TRUE_DEFENSE": 70, "MINING_SPEED": 50 }, "npc_sell_price": 105000, @@ -44407,9 +47988,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -44419,33 +48002,41 @@ "slot_type": "UNIVERSAL", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_TOPAZ_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -44477,50 +48068,58 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 4 } @@ -44530,21 +48129,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -44604,59 +48208,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 10 } @@ -44695,163 +48309,197 @@ "CRITICAL_DAMAGE": 20 }, "npc_sell_price": 70000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 4 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 5 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 6 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 7 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 8 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 9 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -44898,12 +48546,13 @@ "DAMAGE": 40 }, "npc_sell_price": 200, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "ARTISANAL_SHORTBOW" }, { @@ -45001,42 +48650,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SKELETOR_HELMET" }, @@ -45060,9 +48715,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 1 } @@ -45132,12 +48789,13 @@ "MINING_FORTUNE": 5, "MINING_SPEED": 10 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 2 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 2 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -45243,42 +48901,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "BOUNCY_HELMET" }, @@ -45346,41 +49010,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "CRYPT_WITHERLORD_SWORD" }, @@ -45447,19 +49117,22 @@ "DAMAGE": 5 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 22 }, - "collection": { - "collection_id": "SAND", - "required_tier": 7 + { + "type": "COLLECTION", + "collection": "SAND", + "tier": 7 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "III" } - }, + ], "id": "ARMORSHRED_ARROW" }, { @@ -45540,41 +49213,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 90 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE" @@ -45583,9 +49262,11 @@ "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 } @@ -45610,50 +49291,58 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 2 } @@ -45663,21 +49352,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -45705,7 +49399,7 @@ { "material": "PRISMARINE_CRYSTALS", "name": "Mithril", - "npc_sell_price": 10, + "npc_sell_price": 8, "description": "%%gray%%%%italic%%\"The Man called it \"true-silver\" while the Dwarves, who loved it above all things, had their own, secret name for it.\"", "id": "MITHRIL_ORE" }, @@ -45764,18 +49458,20 @@ "material": "IRON_AXE", "name": "Mercenary Axe", "category": "SWORD", + "sword_type": "AXE", "tier": "RARE", "stats": { "STRENGTH": 20, "DAMAGE": 70 }, "npc_sell_price": 15000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "MERCENARY_AXE" }, { @@ -45829,25 +49525,6 @@ "npc_sell_price": 1, "id": "INK_SACK:13" }, - { - "material": "FISHING_ROD", - "name": "Speedster Rod", - "category": "FISHING_ROD", - "tier": "UNCOMMON", - "stats": { - "DAMAGE": 30, - "STRENGTH": 15 - }, - "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "FISHING", - "level": 6 - } - }, - "museum": true, - "id": "SPEEDSTER_ROD" - }, { "material": "ROTTEN_FLESH", "name": "Mysterious Meat", @@ -45866,11 +49543,12 @@ "MINING_SPEED": 400 }, "npc_sell_price": 14500, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "REFINED_TITANIUM_PICKAXE" }, { @@ -45888,30 +49566,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -45930,11 +49613,12 @@ "name": "Silver Hunter Boots", "category": "BOOTS", "tier": "RARE", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "SILVER" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -45945,72 +49629,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_SILVER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -46025,160 +49722,18 @@ "dungeon_item": true, "id": "GIANT_FRAGMENT_LASER" }, - { - "material": "LEATHER_LEGGINGS", - "color": "36,221,229", - "name": "Thunder Leggings", - "category": "LEGGINGS", - "tier": "EPIC", - "soulbound": "COOP", - "stats": { - "HEALTH": 220, - "DEFENSE": 200, - "STRENGTH": 25, - "SEA_CREATURE_CHANCE": 4 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 36 - } - }, - "npc_sell_price": 175000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 40 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 6 - }, - { - "essence_type": "CRIMSON", - "amount": 120 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 8 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 10 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 15 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 20 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 25 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 500 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 30 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 600 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 40 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 5 - }, - { - "essence_type": "CRIMSON", - "amount": 800 - } - ] - ], - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "THUNDER_LEGGINGS" - }, { "material": "BEACON", "name": "Beacon I", "glowing": true, "tier": "RARE", "npc_sell_price": 1540, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 1 } - }, + ], "id": "BEACON_1" }, { @@ -46199,164 +49754,198 @@ "DAMAGE": 50, "STRENGTH": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 1750, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 10 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 20 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 30 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 40 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 50 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 75 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 100 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 150 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 200 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 250 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -46392,30 +49981,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 25 } @@ -46451,42 +50045,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 2 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { @@ -46571,162 +50171,196 @@ }, "npc_sell_price": 80000, "can_have_attributes": true, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 4 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 5 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 6 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 7 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 8 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 9 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -46779,16 +50413,6 @@ "npc_sell_price": 16000, "id": "PIGGY_BANK" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODY0NTEyOCwKICAicHJvZmlsZUlkIiA6ICIwMGZiNTRiOWI4NDA0YTA0YTViMmJhMzBlYzBlYTAxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrbGxveWQ3MCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lNWViZjZmMTQzMDFkM2ViZDE0NTMzNTg3ZDJhMmQ0ODIzNDQzM2IxN2M5ZDJmMTM5MzRiN2NhYjQ1OGVlMjY3IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", - "name": "Pulse Ring", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "npc_sell_price": 8000, - "id": "PULSE_RING" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -46926,42 +50550,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 320 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_KNIGHT_SWORD" }, @@ -47006,17 +50636,6 @@ "npc_sell_price": 3, "id": "SANDSTONE:2" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODc0MzQ2NywKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzI0Mzc4Yjk4NmUzNTg1NTVlZTczZjA5YjIxMGQ0OWVjMTM3MTlkZTVlYTg4ZDc1NTIzNzcwZDMxMTYzZjNhZWYiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", - "name": "Thunder in a Bottle", - "tier": "EPIC", - "description": "%%gray%%What happens if you open it? The answer may shock you.", - "unstackable": true, - "npc_sell_price": 5000, - "id": "THUNDER_IN_A_BOTTLE" - }, { "material": "RED_ROSE", "durability": 2, @@ -47029,123 +50648,148 @@ "WEAPON_ABILITY_DAMAGE": 10000, "INTELLIGENCE": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "ability_damage_scaling": 0.3, "npc_sell_price": 2000, + "soulbound": "SOLO", "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "WITHER_SOUL", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -47157,12 +50801,13 @@ "material": "MONSTER_EGG", "name": "Island NPC", "tier": "RARE", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 5 } - }, + ], "id": "ISLAND_NPC" }, { @@ -47259,16 +50904,18 @@ "MINING_FORTUNE": 30, "MINING_SPEED": 80 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47278,6 +50925,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47287,6 +50935,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47296,6 +50945,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47305,6 +50955,7 @@ "slot_type": "TOPAZ", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47319,12 +50970,13 @@ "name": "Frozen Blaze Leggings", "category": "LEGGINGS", "tier": "LEGENDARY", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 140, @@ -47338,49 +50990,57 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 65 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -47390,21 +51050,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -47445,6 +51110,15 @@ "tier": "RARE", "id": "JAR_OF_PICKLES" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1NTk0NjQ0NDIxOCwKICAicHJvZmlsZUlkIiA6ICIyMWUzNjdkNzI1Y2Y0ZTNiYjI2OTJjNGEzMDBhNGRlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJHZXlzZXJNQyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81OTg5NDlmNGQ1NDZiZDUwNDM3NmY3OWY4NDI1YjU3ZWNmNzdiZTY3Mjk3NmVlODJhZWY1Yzg2ZWMwZGI1ZDQ5IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Clover Helmet", + "tier": "LEGENDARY", + "category": "HELMET", + "id": "CLOVER_HELMET" + }, { "material": "GREEN_RECORD", "name": "Music Disc - Revenge", @@ -47453,67 +51127,6 @@ "museum": true, "id": "REVENGE" }, - { - "material": "LEATHER_CHESTPLATE", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Chestplate", - "category": "CHESTPLATE", - "tier": "EPIC", - "stats": { - "DEFENSE": 85, - "HEALTH": 170, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 20 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 200 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 300 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "DEFENSIVE" - } - ], - "id": "ADAPTIVE_CHESTPLATE" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -47571,12 +51184,13 @@ "HEALTH": 50 }, "npc_sell_price": 125, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "museum": true, "id": "SALMON_HELMET" }, @@ -47713,51 +51327,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -47777,16 +51399,18 @@ "MINING_FORTUNE": 30, "MINING_SPEED": 80 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47796,6 +51420,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47805,6 +51430,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47814,6 +51440,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47823,6 +51450,7 @@ "slot_type": "TOPAZ", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -47876,55 +51504,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 65 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 110 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 160 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "AMETHYST", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 } @@ -47969,55 +51606,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -48056,12 +51702,13 @@ "HEALTH": 75 }, "npc_sell_price": 15000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 20 } - }, + ], "id": "DIVER_LEGGINGS" }, { @@ -48087,6 +51734,16 @@ "npc_sell_price": 10, "id": "BRIDGE_EGG" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODg3MTEwMDgzMywKICAicHJvZmlsZUlkIiA6ICI4YmM3MjdlYThjZjA0YWUzYTI4MDVhY2YzNjRjMmQyNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJub3RpbnZlbnRpdmUiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWM3ZmI2ZjQxNGZmMGViNmJmNTc5N2FjYjNiM2FmMzU0Y2EzYWY5NWNlYjhmMzQxODEyNWY2YjgwNTQxOWYzOSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9", + "name": "Shen's Regalia", + "unstackable": true, + "category": "ACCESSORY", + "tier": "LEGENDARY", + "id": "SHENS_REGALIA" + }, { "material": "BANNER", "durability": 2, @@ -48112,14 +51769,28 @@ "HEALTH": 100 }, "npc_sell_price": 20000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 20 } - }, + ], "id": "DIVER_CHESTPLATE" }, + { + "material": "FISHING_ROD", + "name": "Giant Fishing Rod", + "category": "FISHING_ROD", + "tier": "LEGENDARY", + "stats": { + "DAMAGE": 20, + "STRENGTH": 10, + "fishing_speed": 20 + }, + "museum": true, + "id": "GIANT_FISHING_ROD" + }, { "material": "WATER_LILY", "name": "Lily Pad", @@ -48160,28 +51831,34 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } @@ -48235,41 +51912,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "id": "ZOMBIE_LEGGINGS" }, { @@ -48291,42 +51974,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 4 } - }, + ], "dungeon_item": true, "id": "ITEM_SPIRIT_BOW" }, @@ -48345,12 +52034,13 @@ "material": "SKULL_ITEM", "durability": 3, "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWI2YzYyOGE0OGY2NDE2MDk5MTU0NGQyYTc4NGVjMmNhMDk1NjNlOGQ2ZGE0OTE5MTU4MjczYWJhYmI5MSJ9fX0=", - "name": "Crab Hat", + "name": "Crab Hat of Celebration", "category": "ACCESSORY", "stats": { "MAGIC_FIND": 1 }, "museum": true, + "tier": "SPECIAL", "id": "PARTY_HAT_CRAB" }, { @@ -48394,47 +52084,54 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 450 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 750 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 900 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "id": "WEREWOLF_LEGGINGS" }, { "material": "SLIME_BALL", "name": "Slimeball", "npc_sell_price": 5, + "motes_sell_price": 30, "id": "SLIME_BALL" }, { @@ -48484,67 +52181,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -48565,12 +52274,13 @@ }, "npc_sell_price": 1, "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "CRYPT_WITHERLORD_BOOTS" }, @@ -48622,63 +52332,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -48833,6 +52554,9 @@ "name": "Speed Talisman", "category": "ACCESSORY", "npc_sell_price": 110, + "stats": { + "WALK_SPEED": 1 + }, "id": "SPEED_TALISMAN" }, { @@ -48843,12 +52567,13 @@ "category": "GLOVES", "tier": "EPIC", "npc_sell_price": 12750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "STRENGTH": 10, "HEALTH": 30, @@ -48859,10 +52584,12 @@ "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 } @@ -48870,152 +52597,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 5 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 10 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 8 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 15 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 12 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 20 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 16 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 30 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 40 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 24 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 50 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 28 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 60 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 32 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 70 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 36 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ITEM", "item_id": "BEZOS", "amount": 80 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 40 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 12000 } @@ -49104,42 +52864,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SUPER_HEAVY_CHESTPLATE" }, @@ -49151,12 +52917,13 @@ "category": "BOOTS", "tier": "EPIC", "npc_sell_price": 129000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "STRENGTH": 25, "CRITICAL_DAMAGE": 25 @@ -49166,152 +52933,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 2 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "LUMINO_FIBER", "amount": 4 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -49392,30 +53192,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -49443,12 +53248,13 @@ "DEFENSE": 250 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 14 } - }, + ], "id": "OBSIDIAN_CHESTPLATE" }, { @@ -49503,17 +53309,6 @@ "npc_sell_price": 320, "id": "ENCHANTED_CHARCOAL" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "name": "Ditto Skull", - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYzODE5NzI2OTE2NywKICAicHJvZmlsZUlkIiA6ICIxNzU1N2FjNTEzMWE0YTUzODAwODg3Y2E4ZTQ4YWQyNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJQZW50YXRpbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83NWFhODU5ZWMzZjU2NWViMDA2ZWQ3ZGYyNjQxOWRlYWM5YTE1NDIwZDA5Y2ZkM2JkZWVjNDBlYTA3ZDEzNjZhIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", - "category": "COSMETIC", - "tier": "EPIC", - "unstackable": true, - "museum": true, - "id": "DITTO_SKULL" - }, { "material": "IRON_BOOTS", "name": "Spider's Boots", @@ -49532,41 +53327,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 30 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "id": "SPIDER_BOOTS" }, { @@ -49623,42 +53424,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "BOUNCY_BOOTS" }, @@ -49696,41 +53503,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 550 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 750 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 23 } - }, + ], "id": "SOUL_WHIP" }, { @@ -49799,12 +53612,13 @@ "category": "LEGGINGS", "tier": "EPIC", "npc_sell_price": 258250, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "STRENGTH": 50, "CRITICAL_DAMAGE": 50 @@ -49814,152 +53628,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 2 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "COMPACT_OOZE", "amount": 4 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -50000,82 +53847,96 @@ "CRITICAL_DAMAGE": 16, "INTELLIGENCE": 135 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -50085,10 +53946,12 @@ "item_id": "FIERY_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -50099,21 +53962,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -50123,21 +53991,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -50177,30 +54050,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -50210,6 +54088,15 @@ "museum": true, "id": "DIAMOND_LIVID_HEAD" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1NTg2NzUwNTEzOSwKICAicHJvZmlsZUlkIiA6ICIxOTQzY2VmYzM4NWM0YTJjYWJiZGViODBjZTIwM2RjZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJzb29vb29vb29vb29vb29wIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzE5YWY5NWJlM2RkYTlmNmEwZTY1MTU1OGNmZTMyMzIwYjA1NjQ2MzlkN2NlZTIyYTlmZTMzMWEyNGJhNWIyYjQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "Worm the Fish", + "tier": "SPECIAL", + "museum": true, + "id": "WORM_THE_FISH" + }, { "material": "IRON_AXE", "name": "Foraging Exp Boost", @@ -50232,6 +54119,9 @@ "name": "Healing Talisman", "category": "ACCESSORY", "npc_sell_price": 1440, + "stats": { + "vitality": 5 + }, "id": "HEALING_TALISMAN" }, { @@ -50317,16 +54207,6 @@ "museum": true, "id": "PET_SKIN_SHEEP_PURPLE" }, - { - "material": "BOOK", - "name": "Book of Stats", - "category": "COSMETIC", - "tier": "EPIC", - "unstackable": true, - "description": "%%gray%%Combine with any weapon in an Anvil to start tracking its kills.", - "museum": true, - "id": "BOOK_OF_STATS" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -50341,42 +54221,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 60, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 28 } - }, + ], "dungeon_item": true, "id": "WITHER_GOGGLES" }, @@ -50433,12 +54319,13 @@ "HEALTH": 150 }, "npc_sell_price": 200, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "museum": true, "id": "SALMON_CHESTPLATE" }, @@ -50503,82 +54390,96 @@ "CRITICAL_DAMAGE": 20, "INTELLIGENCE": 170 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -50588,10 +54489,12 @@ "item_id": "INFERNAL_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -50602,21 +54505,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -50626,21 +54534,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -50751,11 +54664,12 @@ "name": "Diamond Hunter Chestplate", "category": "CHESTPLATE", "tier": "LEGENDARY", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "DIAMOND" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -50766,6 +54680,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -50774,72 +54689,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_DIAMOND", "amount": 1 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -50886,12 +54814,13 @@ 100 ] }, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 12 } - }, + ], "dungeon_item": true, "id": "STINGER_BOW" }, @@ -50973,67 +54902,79 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 280 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -51060,6 +55001,15 @@ "npc_sell_price": 4000, "id": "MINION_EXPANDER" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1NTg2ODcxMjQwMCwKICAicHJvZmlsZUlkIiA6ICJmZTYxY2RiMjUyMTA0ODYzYTljY2E2ODAwZDRiMzgzZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNeVNoYWRvd3MiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmNlMDc0NmIxMmVlNDA1Mzk1OGUxNDBiYTI5NTkzMjcyYmQ4NGNhMzRiYWY1MGQwZDgwYjViYzNjNjE1ZTljNiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9", + "name": "Racing Helmet", + "tier": "LEGENDARY", + "category": "HELMET", + "id": "RACING_HELMET" + }, { "material": "SKULL_ITEM", "durability": 3, @@ -51092,82 +55042,96 @@ "CRITICAL_DAMAGE": 10, "INTELLIGENCE": 85 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -51177,10 +55141,12 @@ "item_id": "HOT_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -51191,21 +55157,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -51215,21 +55186,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -51263,11 +55239,12 @@ "MINING_SPEED": 600 }, "npc_sell_price": 253000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER" @@ -51276,9 +55253,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -51308,17 +55287,6 @@ "npc_sell_price": 12, "id": "DIAMOND_PICKAXE" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "name": "Bonzo Statue", - "skin": "ewogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2I1MzQxNjhjNTI2MThlNDc3MDE1ZGY3ZWVkNzlkMmQ1ZmU0ZDdmNzJmMDBkNGI3MTM2ZmNmYjkyNjFmNDAyYyIKICAgIH0KICB9Cn0=", - "category": "COSMETIC", - "tier": "UNCOMMON", - "unstackable": true, - "museum": true, - "id": "BONZO_STATUE" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -51327,12 +55295,13 @@ "category": "HELMET", "tier": "EPIC", "npc_sell_price": 130250, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "STRENGTH": 35, "CRITICAL_DAMAGE": 35 @@ -51342,152 +55311,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 2 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 4 }, { + "type": "ITEM", "item_id": "ENCHANTED_RED_SAND_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -51512,25 +55514,6 @@ }, "id": "GRIZZLY_PAW" }, - { - "material": "FISHING_ROD", - "name": "Farmer's Rod", - "category": "FISHING_ROD", - "tier": "UNCOMMON", - "stats": { - "DAMAGE": 50, - "STRENGTH": 20 - }, - "npc_sell_price": 1050, - "requirements": { - "skill": { - "type": "FISHING", - "level": 8 - } - }, - "museum": true, - "id": "FARMER_ROD" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -51579,30 +55562,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -51627,82 +55615,96 @@ "CRITICAL_DAMAGE": 16, "INTELLIGENCE": 135 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -51712,10 +55714,12 @@ "item_id": "FIERY_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -51726,21 +55730,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -51750,21 +55759,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -51783,16 +55797,18 @@ "STRENGTH": 50, "CRITICAL_DAMAGE": 50 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 4000, "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5 } @@ -51800,112 +55816,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "SPECTRE_DUST", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -51950,41 +55989,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 1 } - }, + ], "dungeon_item": true, "id": "STARRED_BONZO_MASK" }, @@ -52006,42 +56051,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SPIRIT_MASK" }, @@ -52105,42 +56156,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "SKELETON_LORD_BOOTS" }, @@ -52155,11 +56212,12 @@ "category": "ACCESSORY", "tier": "UNCOMMON", "soulbound": "SOLO", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "SILVER" } - }, + ], "description": "%%gray%%%%italic%%A perfectly fine tooth, besides a broken chunk...", "id": "ODGERS_SILVER_TOOTH" }, @@ -52179,11 +56237,12 @@ "name": "Sapphire-polished Drill Engine", "tier": "RARE", "npc_sell_price": 103000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "id": "SAPPHIRE_POLISHED_DRILL_ENGINE" }, { @@ -52235,41 +56294,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 10 } - }, + ], "dungeon_item": true, "id": "SNIPER_BOW" }, @@ -52325,49 +56390,57 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 300 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 22 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -52377,9 +56450,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 } @@ -52443,41 +56518,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 1 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { @@ -52497,12 +56578,13 @@ "INTELLIGENCE": 30 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "CELESTE_HELMET" }, { @@ -52527,16 +56609,18 @@ "CRITICAL_DAMAGE": 20, "SEA_CREATURE_CHANCE": 3 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 35 } - }, + ], "npc_sell_price": 50000, "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } @@ -52544,112 +56628,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 15 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 25 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 35 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 40 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 45 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "HORN_OF_TAURUS", "amount": 50 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -52721,82 +56828,96 @@ "CRITICAL_DAMAGE": 16, "INTELLIGENCE": 135 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -52806,10 +56927,12 @@ "item_id": "INFERNAL_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -52820,21 +56943,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -52844,21 +56972,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -52916,42 +57049,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "ROTTEN_CHESTPLATE" }, @@ -52980,12 +57119,13 @@ "tier": "EPIC", "category": "NECKLACE", "npc_sell_price": 3200, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "id": "SYNTHESIZER_V1" }, @@ -53039,12 +57179,13 @@ "name": "Spider Egg Mixin", "tier": "RARE", "unstackable": true, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "spider", "level": 8 } - }, + ], "id": "SPIDER_EGG_MIXIN" }, { @@ -53161,7 +57302,7 @@ "stats": { "MAGIC_FIND": 5, "MINING_FORTUNE": 20, - "TRUE_DEFENSE": 200, + "TRUE_DEFENSE": 80, "MINING_SPEED": 50 }, "npc_sell_price": 120000, @@ -53173,9 +57314,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -53185,33 +57328,41 @@ "slot_type": "UNIVERSAL", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_TOPAZ_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -53255,12 +57406,13 @@ "INTELLIGENCE": 5 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "EMBER_HELMET" }, { @@ -53322,11 +57474,12 @@ "MINING_SPEED": 1200 }, "npc_sell_price": 253000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER" @@ -53335,9 +57488,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -53378,6 +57533,15 @@ "dungeon_item": true, "id": "MASTER_SKULL_TIER_2" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1NTk0NTY2NDAxMiwKICAicHJvZmlsZUlkIiA6ICJmMTA0NzMxZjljYTU0NmI0OTkzNjM4NTlkZWY5N2NjNiIsCiAgInByb2ZpbGVOYW1lIiA6ICJ6aWFkODciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2FiZTg3ODM0OTRkMTEzZmQ3MTk4OGMyMGVjMTQxYzVhYjhkZjdhMzY4YTRiNzQ5NTBkZjkxZjZlZTI0MzE1ZSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9", + "name": "Priceless the Fish", + "tier": "SPECIAL", + "museum": true, + "id": "PRICELESS_THE_FISH" + }, { "material": "SKULL_ITEM", "durability": 3, @@ -53408,42 +57572,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 30, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "id": "PIGMAN_SWORD" }, { @@ -53480,12 +57650,13 @@ "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDJlNzhmYjIyNDI0MjMyZGMyN2I4MWZiY2I0N2ZkMjRjMWFjZjc2MDk4NzUzZjJkOWMyODU5ODI4N2RiNSJ9fX0=", "name": "Four in a Row", "tier": "UNCOMMON", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 7 } - }, + ], "id": "CONNECT_FOUR" }, { @@ -53545,6 +57716,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 } ] @@ -53627,11 +57799,12 @@ "MINING_SPEED": 250 }, "npc_sell_price": 500, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 2 } - }, + ], "id": "BANDAGED_MITHRIL_PICKAXE" }, { @@ -53710,6 +57883,7 @@ "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -53718,6 +57892,7 @@ "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -53768,55 +57943,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 200 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 20 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 17 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -53826,21 +58010,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 40 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 40 } @@ -53859,12 +58048,13 @@ "HEALTH": 30 }, "npc_sell_price": 3500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "SQUIRE_LEGGINGS" }, { @@ -53874,6 +58064,16 @@ "category": "PET_ITEM", "id": "PET_ITEM_ALL_SKILLS_BOOST_COMMON" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODg3MTI2MTcwNiwKICAicHJvZmlsZUlkIiA6ICJiMjdjMjlkZWZiNWU0OTEyYjFlYmQ5NDVkMmI2NzE0YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJIRUtUMCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mZTI0NjkyNWNiZDRjMDUyNzliOWM4ZGNmN2MyZmRmYzliYWY5YjE0MjRhYTM1ZTUwMTUzM2ViYjk4ZTAwNTIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Pandora's Box", + "unstackable": true, + "category": "ACCESSORY", + "tier": "COMMON", + "id": "PANDORAS_BOX" + }, { "material": "NETHER_FENCE", "name": "Nether Brick Fence", @@ -53909,41 +58109,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 1 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { @@ -53953,9 +58159,11 @@ "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 } @@ -54020,42 +58228,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 700 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "id": "WITHER_LEGGINGS" }, @@ -54075,41 +58289,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "id": "NECRON_BLADE" }, @@ -54173,67 +58393,6 @@ "npc_sell_price": 480, "id": "ENCHANTED_FEATHER" }, - { - "material": "LEATHER_LEGGINGS", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Leggings", - "category": "LEGGINGS", - "tier": "EPIC", - "stats": { - "DEFENSE": 75, - "HEALTH": 155, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 200 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "STARRED_ADAPTIVE_LEGGINGS" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -54355,116 +58514,141 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 100 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 120 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 150 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 180 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 300 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 350 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 400 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 500 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ], [ { + "type": "ITEM", "item_id": "KADA_LEAD", "amount": 600 }, { + "type": "ITEM", "item_id": "MAGMAG", "amount": 700 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } @@ -54532,42 +58716,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SUPER_HEAVY_HELMET" }, @@ -54685,12 +58875,13 @@ "HEALTH": 60 }, "npc_sell_price": 15000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "MERCENARY_LEGGINGS" }, { @@ -54726,12 +58917,13 @@ "category": "NECKLACE", "tier": "EPIC", "npc_sell_price": 243965, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 20 }, @@ -54739,112 +58931,135 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 180 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 260 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 360 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 480 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 620 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 780 } @@ -54908,15 +59123,17 @@ "CRITICAL_DAMAGE": 20 }, "npc_sell_price": 5000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 } @@ -54924,152 +59141,185 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 5 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 10 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 15 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 20 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 25 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 30 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 35 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 40 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 45 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "LUMP_OF_MAGMA", "amount": 50 }, { + "type": "ITEM", "item_id": "CUP_OF_BLOOD", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -55161,6 +59411,7 @@ "material": "WOOD", "name": "Oak Wood Plank", "npc_sell_price": 0.5, + "motes_sell_price": 30, "id": "WOOD" }, { @@ -55181,12 +59432,13 @@ "DEFENSE": 145 }, "npc_sell_price": 64000, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 17 } - }, + ], "id": "SPONGE_CHESTPLATE" }, { @@ -55211,67 +59463,6 @@ "npc_sell_price": 1000, "id": "SNOW_SUIT_HELMET" }, - { - "material": "LEATHER_CHESTPLATE", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Chestplate", - "category": "CHESTPLATE", - "tier": "EPIC", - "stats": { - "DEFENSE": 95, - "HEALTH": 180, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 20 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 200 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 300 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "STARRED_ADAPTIVE_CHESTPLATE" - }, { "material": "LEATHER_LEGGINGS", "color": "0,255,0", @@ -55428,42 +59619,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 2 } - }, + ], "dungeon_item": true, "id": "HEAVY_LEGGINGS" }, @@ -55482,127 +59679,6 @@ "npc_sell_price": 1, "id": "DOUBLE_PLANT:4" }, - { - "material": "FISHING_ROD", - "name": "Inferno Rod", - "category": "FISHING_ROD", - "tier": "EPIC", - "stats": { - "DAMAGE": 170, - "STRENGTH": 170, - "SEA_CREATURE_CHANCE": 5 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 30 - } - }, - "npc_sell_price": 1028000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "LUMP_OF_MAGMA", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 1 - }, - { - "essence_type": "CRIMSON", - "amount": 50 - } - ], - [ - { - "item_id": "MOOGMA_PELT", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "PYROCLASTIC_SCALE", - "amount": 20 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 100 - } - ], - [ - { - "item_id": "CUP_OF_BLOOD", - "amount": 50 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 40 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "FLAMING_HEART", - "amount": 70 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 50 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "ORB_OF_ENERGY", - "amount": 80 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 60 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 90 - }, - { - "item_id": "MAGMA_FISH_SILVER", - "amount": 70 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ] - ], - "id": "INFERNO_ROD" - }, { "material": "PRISMARINE_SHARD", "name": "Titanium Drill DR-X355", @@ -55616,11 +59692,12 @@ "MINING_SPEED": 700 }, "npc_sell_price": 36000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "id": "TITANIUM_DRILL_1" }, { @@ -55669,6 +59746,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 } ] @@ -55724,12 +59802,13 @@ "MINING_FORTUNE": 10, "MINING_SPEED": 25 }, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" @@ -55738,9 +59817,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -55750,9 +59831,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -55789,42 +59872,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 30, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 28 } - }, + ], "dungeon_item": true, "id": "MENDER_CROWN" }, @@ -55842,42 +59931,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ] ], "gear_score": 40, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "id": "STARRED_LAST_BREATH" }, @@ -55906,12 +60001,13 @@ "HEALTH": 50 }, "npc_sell_price": 38000, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "UNIVERSAL" @@ -55920,9 +60016,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -55932,9 +60030,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -55975,12 +60075,13 @@ "category": "BELT", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 30, "DEFENSE": 20, @@ -55990,72 +60091,85 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } @@ -56103,12 +60217,13 @@ "name": "Blaze Leggings", "category": "LEGGINGS", "tier": "EPIC", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 130, @@ -56120,9 +60235,11 @@ "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -56143,11 +60260,12 @@ "DAMAGE": 200, "MINING_SPEED": 1600 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "JADE" @@ -56195,41 +60313,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "SPIDER", "amount": 25 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 8 } - }, + ], "id": "RUNAANS_BOW" }, { @@ -56250,12 +60374,13 @@ "HEALTH": 50 }, "npc_sell_price": 38000, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "UNIVERSAL" @@ -56264,9 +60389,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -56276,9 +60403,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -56335,42 +60464,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "SKELETON_GRUNT_HELMET" }, @@ -56442,6 +60577,16 @@ "npc_sell_price": 2800, "id": "GHAST_LEGGINGS" }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODg3MTIxMDY1MywKICAicHJvZmlsZUlkIiA6ICJmNThkZWJkNTlmNTA0MjIyOGY2MDIyMjExZDRjMTQwYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJ1bnZlbnRpdmV0YWxlbnQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzFmNzQ4YTQzZjNiM2FkYTA0ZjQ0ZDVkMjkwYThiOWJmNTgzZDkzZTFjODNhYjkzYzYwYzRkZWMxZmRlMWM1YyIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9", + "name": "Artifact of Control", + "unstackable": true, + "category": "ACCESSORY", + "tier": "LEGENDARY", + "id": "ARTIFACT_OF_CONTROL" + }, { "material": "IRON_AXE", "name": "Foraging Exp Boost", @@ -56525,42 +60670,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_COMMANDER_LEGGINGS" }, @@ -56589,12 +60740,13 @@ "category": "GLOVES", "tier": "RARE", "npc_sell_price": 20180, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "INTELLIGENCE": 10, "MINING_FORTUNE": 5 @@ -56603,100 +60755,120 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 16 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 32 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE_DUST", "amount": 64 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "ENCHANTED_GLOWSTONE", "amount": 4 } @@ -56728,30 +60900,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 1 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 5 } @@ -56764,7 +60941,7 @@ "name": "Enchanted Mithril", "glowing": true, "tier": "RARE", - "npc_sell_price": 1600, + "npc_sell_price": 1280, "id": "ENCHANTED_MITHRIL" }, { @@ -56804,12 +60981,13 @@ "skin": "eyJ0aW1lc3RhbXAiOjE0NjQzNjk2ODQ0NTgsInByb2ZpbGVJZCI6ImI0MDA3MmM4Y2RmOTQ1OGFhZmM0NDZmNWU1N2U2ZjcwIiwicHJvZmlsZU5hbWUiOiJTaGVyb20iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzViNzgzNjcwYWQ5MTc5MTNmZDY5NDRmZDc2MGY5YzgzOThkYWY3NzI4NWI1MWMyNzU3Y2UzY2JmOWIxZmZiIn19fQ==", "name": "Tic Tac Toe", "tier": "UNCOMMON", - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 6 } - }, + ], "id": "TIC_TAC_TOE" }, { @@ -56822,12 +61000,13 @@ "HEALTH": 40 }, "npc_sell_price": 4000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "SQUIRE_CHESTPLATE" }, { @@ -56921,65 +61100,15 @@ "id": "DUNGEON_HAMMER" }, { - "material": "LEATHER_LEGGINGS", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Leggings", - "category": "LEGGINGS", - "tier": "EPIC", + "material": "FISHING_ROD", + "name": "Dirt Rod", + "category": "FISHING_ROD", + "tier": "UNCOMMON", + "museum": true, "stats": { - "DEFENSE": 65, - "HEALTH": 145, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 200 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } + "fishing_speed": 15 }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "DEFENSIVE" - } - ], - "id": "ADAPTIVE_LEGGINGS" + "id": "DIRT_ROD" }, { "material": "CLAY_BALL", @@ -56999,12 +61128,13 @@ "HEALTH": 30 }, "npc_sell_price": 15000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "STARLIGHT_BOOTS" }, { @@ -57037,30 +61167,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "DIAMOND", "amount": 500 } @@ -57135,12 +61270,13 @@ "tier": "EPIC", "category": "NONE", "npc_sell_price": 60000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "id": "CHARMINIZER" }, @@ -57149,12 +61285,13 @@ "name": "Showcase Block", "tier": "UNCOMMON", "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "SOCIAL", + "requirements": [ + { + "type": "SKILL", + "skill": "SOCIAL", "level": 10 } - }, + ], "id": "SHOWCASE_BLOCK" }, { @@ -57245,82 +61382,96 @@ "CRITICAL_DAMAGE": 20, "INTELLIGENCE": 260 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -57330,10 +61481,12 @@ "item_id": "INFERNAL_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -57344,21 +61497,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -57368,21 +61526,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -57427,15 +61590,17 @@ "DAMAGE": 20 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 18 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "II" } - }, + ], "id": "EMERALD_TIPPED_ARROW" }, { @@ -57529,9 +61694,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 1 } @@ -57583,62 +61750,73 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -57648,21 +61826,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -57710,51 +61893,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 700 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 2 } @@ -57764,21 +61955,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -57940,42 +62136,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_LORD_HELMET" }, @@ -58015,12 +62217,13 @@ "DEFENSE": 35 }, "npc_sell_price": 1750, - "requirements": { - "skill": { - "type": "MINING", + "requirements": [ + { + "type": "SKILL", + "skill": "MINING", "level": 5 } - }, + ], "id": "LAPIS_ARMOR_LEGGINGS" }, { @@ -58033,12 +62236,13 @@ "HEALTH": 30 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 12 } - }, + ], "id": "END_CHESTPLATE" }, { @@ -58092,82 +62296,96 @@ "CRITICAL_DAMAGE": 20, "INTELLIGENCE": 170 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -58177,10 +62395,12 @@ "item_id": "INFERNAL_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -58191,21 +62411,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -58215,21 +62440,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -58286,6 +62516,7 @@ "item_durability": -1, "name": "Livid Dagger", "category": "SWORD", + "sword_type": "DAGGER", "tier": "LEGENDARY", "stats": { "DAMAGE": 210, @@ -58298,51 +62529,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ] ], "gear_score": 75, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -58373,30 +62612,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } @@ -58457,42 +62701,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 25 } ] ], "gear_score": 20, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "HYPER_CLEAVER" }, @@ -58549,12 +62799,13 @@ "category": "REFORGE_STONE", "tier": "EPIC", "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "MINING", + "requirements": [ + { + "type": "SKILL", + "skill": "MINING", "level": 30 } - }, + ], "id": "AMBER_MATERIAL" }, { @@ -58571,82 +62822,96 @@ "CRITICAL_DAMAGE": 10, "INTELLIGENCE": 85 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -58656,10 +62921,12 @@ "item_id": "HOT_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -58670,21 +62937,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -58694,21 +62966,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -58732,7 +63009,7 @@ "stats": { "MAGIC_FIND": 5, "MINING_FORTUNE": 20, - "TRUE_DEFENSE": 100, + "TRUE_DEFENSE": 50, "MINING_SPEED": 50 }, "npc_sell_price": 75000, @@ -58744,9 +63021,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -58756,33 +63035,41 @@ "slot_type": "UNIVERSAL", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_TOPAZ_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 20 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -59003,42 +63290,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 5 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_SOLDIER_CUTLASS" }, @@ -59054,7 +63347,7 @@ "material": "SKULL_ITEM", "durability": 3, "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzhiZThhYmQ2NmQwOWE1OGNlMTJkMzc3NTQ0ZDcyNmQyNWNhZDdlOTc5ZThjMjQ4MTg2NmJlOTRkM2IzMmYifX19", - "name": "Tesselated Ender Pearl", + "name": "Tessellated Ender Pearl", "tier": "LEGENDARY", "npc_sell_price": 96000, "id": "TESSELLATED_ENDER_PEARL" @@ -59088,16 +63381,6 @@ "tier": "RARE", "id": "MOON_CHUNK" }, - { - "material": "HAY_BLOCK", - "name": "Collection Display", - "category": "COSMETIC", - "tier": "UNCOMMON", - "unstackable": true, - "description": "%%gray%%Show off your collection progress!", - "museum": true, - "id": "COLLECTION_DISPLAY" - }, { "material": "PRISMARINE_CRYSTALS", "name": "Reinforced Scales", @@ -59130,30 +63413,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } @@ -59181,55 +63469,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 90 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 140 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -59280,42 +63577,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "dungeon_item": true, "id": "SUPER_HEAVY_LEGGINGS" }, @@ -59373,164 +63676,198 @@ "INTELLIGENCE": 50, "DEFENSE": 30 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "unstackable": true, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 6 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 9 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 12 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 160 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 15 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 18 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 21 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 400 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 24 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 27 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "GAZING_PEARL", "amount": 30 }, { + "type": "ITEM", "item_id": "LAVA_SHELL", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 } @@ -59675,42 +64012,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 600 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 19 } - }, + ], "dungeon_item": true, "id": "EARTH_SHARD" }, @@ -59811,42 +64154,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 1 } - }, + ], "dungeon_item": true, "id": "SKELETON_GRUNT_LEGGINGS" }, @@ -59893,12 +64242,13 @@ "name": "Frozen Blaze Boots", "category": "BOOTS", "tier": "LEGENDARY", - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "WALK_SPEED": 2, "DEFENSE": 95, @@ -59912,49 +64262,57 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "ICE", "amount": 55 } ] ], - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 20 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -59964,21 +64322,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -60058,149 +64421,6 @@ "tier": "LEGENDARY", "id": "PET_ITEM_TIER_BOOST_DROP" }, - { - "material": "LEATHER_BOOTS", - "color": "36,221,229", - "name": "Thunder Boots", - "category": "BOOTS", - "tier": "EPIC", - "soulbound": "COOP", - "stats": { - "HEALTH": 170, - "DEFENSE": 150, - "STRENGTH": 25, - "SEA_CREATURE_CHANCE": 4 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 36 - } - }, - "npc_sell_price": 100000, - "can_have_attributes": true, - "salvageable_from_recipe": true, - "upgrade_costs": [ - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 2 - }, - { - "essence_type": "CRIMSON", - "amount": 40 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 80 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 6 - }, - { - "essence_type": "CRIMSON", - "amount": 120 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 8 - }, - { - "essence_type": "CRIMSON", - "amount": 160 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 10 - }, - { - "essence_type": "CRIMSON", - "amount": 200 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 15 - }, - { - "essence_type": "CRIMSON", - "amount": 300 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 20 - }, - { - "essence_type": "CRIMSON", - "amount": 400 - } - ], - [ - { - "item_id": "THUNDER_SHARDS", - "amount": 25 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 3 - }, - { - "essence_type": "CRIMSON", - "amount": 500 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 30 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 4 - }, - { - "essence_type": "CRIMSON", - "amount": 600 - } - ], - [ - { - "item_id": "HORN_OF_TAURUS", - "amount": 40 - }, - { - "item_id": "HEAVY_PEARL", - "amount": 5 - }, - { - "essence_type": "CRIMSON", - "amount": 800 - } - ] - ], - "gemstone_slots": [ - { - "slot_type": "COMBAT" - } - ], - "id": "THUNDER_BOOTS" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -60330,42 +64550,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 320 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 14 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_KNIGHT_LEGGINGS" }, @@ -60388,51 +64614,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 2 } @@ -60442,21 +64676,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -60510,11 +64749,12 @@ "MINING_FORTUNE": 120, "MINING_SPEED": 1600 }, - "requirements": { - "heart_of_the_mountain": { - "tier": 7 + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", + "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER" @@ -60523,9 +64763,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 20 } @@ -60535,17 +64777,21 @@ "slot_type": "MINING", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JADE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMBER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_TOPAZ_GEM", "amount": 1 } @@ -60617,11 +64863,12 @@ "MINING_SPEED": 900 }, "npc_sell_price": 103200, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER" @@ -60658,11 +64905,12 @@ "DAMAGE": 50, "MINING_SPEED": 330 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "museum": true, "id": "JUNGLE_PICKAXE" }, @@ -60696,9 +64944,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 1 } @@ -60803,12 +65053,13 @@ "HEALTH": 125 }, "npc_sell_price": 175, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 13 } - }, + ], "museum": true, "id": "SALMON_LEGGINGS" }, @@ -60888,42 +65139,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_LORD_CHESTPLATE" }, @@ -60979,16 +65236,18 @@ "MINING_FORTUNE": 30, "MINING_SPEED": 80 }, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "gemstone_slots": [ { "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -60998,6 +65257,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -61007,6 +65267,7 @@ "slot_type": "AMBER", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -61016,6 +65277,7 @@ "slot_type": "JADE", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -61025,6 +65287,7 @@ "slot_type": "TOPAZ", "costs": [ { + "type": "ITEM", "item_id": "GEMSTONE_CHAMBER", "amount": 1 } @@ -61048,55 +65311,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 2 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 2 } @@ -61106,21 +65378,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -61268,41 +65545,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ] ], - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 1 } - }, + ], "dungeon_item": true, "id": "BONZO_MASK" }, @@ -61396,41 +65679,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1500 } ] ], - "requirements": { - "dungeon_completion": { - "type": "MASTER_CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "MASTER_CATACOMBS", "tier": 7 } - }, + ], "item_durability": -1, "dungeon_item": true, "id": "DARK_CLAYMORE" @@ -61517,12 +65806,13 @@ "WEAPON_ABILITY_DAMAGE": 40 }, "npc_sell_price": 2500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 } - }, + ], "id": "CELESTE_WAND" }, { @@ -61601,42 +65891,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 40, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_COMMANDER_HELMET" }, @@ -61755,11 +66051,12 @@ "name": "Bronze Hunter Chestplate", "category": "CHESTPLATE", "tier": "UNCOMMON", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "BRONZE" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -61770,72 +66067,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -61853,164 +66163,198 @@ "DAMAGE": 50, "STRENGTH": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "npc_sell_price": 10000, "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 4 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 6 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 8 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 10 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 12 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 14 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 16 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 18 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 20 }, { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } @@ -62089,12 +66433,13 @@ "HEALTH": 50 }, "npc_sell_price": 38000, - "requirements": { - "collection": { - "collection_id": "HARD_STONE", - "required_tier": 5 + "requirements": [ + { + "type": "COLLECTION", + "collection": "HARD_STONE", + "tier": 5 } - }, + ], "gemstone_slots": [ { "slot_type": "UNIVERSAL" @@ -62103,9 +66448,11 @@ "slot_type": "AMBER", "costs": [ { + "type": "COINS", "coins": 5000 }, { + "type": "ITEM", "item_id": "FINE_AMBER_GEM", "amount": 1 } @@ -62115,9 +66462,11 @@ "slot_type": "JADE", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_JADE_GEM", "amount": 4 } @@ -62210,19 +66559,22 @@ "DAMAGE": 15 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 }, - "slayer": { + { + "type": "SLAYER", "slayer_boss_type": "spider", "level": 3 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "III" } - }, + ], "id": "GLUE_ARROW" }, { @@ -62313,42 +66665,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 300 } ] ], "gear_score": 60, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "dungeon_item": true, "id": "SHADOW_GOGGLES" }, @@ -62364,12 +66722,13 @@ "HEALTH": 20 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 12 } - }, + ], "id": "END_HELMET" }, { @@ -62406,11 +66765,12 @@ "name": "Bronze Hunter Helmet", "category": "HELMET", "tier": "UNCOMMON", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "BRONZE" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -62421,72 +66781,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -62533,247 +66906,302 @@ "INTELLIGENCE": 120 }, "npc_sell_price": 321050, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 5 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "Z", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "Z", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "Z", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 4 }, { + "type": "ITEM", "item_id": "X", "amount": 30 }, { + "type": "ITEM", "item_id": "Y", "amount": 30 }, { + "type": "ITEM", "item_id": "Z", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -62877,55 +67305,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 27 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 } @@ -63040,42 +67477,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "SKELETON_LORD_HELMET" }, @@ -63112,12 +67555,13 @@ "category": "GLOVES", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 45 } - }, + ], "stats": { "STRENGTH": 10, "CRITICAL_DAMAGE": 30, @@ -63203,82 +67647,96 @@ "CRITICAL_DAMAGE": 13, "INTELLIGENCE": 164 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -63288,10 +67746,12 @@ "item_id": "BURNING_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -63302,21 +67762,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -63326,21 +67791,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -63403,15 +67873,17 @@ "DAMAGE": 5 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 4 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "I" } - }, + ], "id": "REINFORCED_IRON_ARROW" }, { @@ -63429,30 +67901,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 125 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "GOLD", "amount": 500 } @@ -63486,30 +67963,35 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } @@ -63532,12 +68014,13 @@ "category": "NECKLACE", "tier": "RARE", "npc_sell_price": 8180, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 15 }, @@ -63545,112 +68028,135 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 180 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 260 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 360 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 480 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 620 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ITEM", "item_id": "MAGMA_CHUNK", "amount": 780 } @@ -63694,42 +68200,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 160 } ] ], "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 2 } - }, + ], "dungeon_item": true, "id": "HEAVY_BOOTS" }, @@ -63810,67 +68322,6 @@ "museum": true, "id": "PET_SKIN_WHALE_ORCA" }, - { - "material": "LEATHER_BOOTS", - "item_durability": -1, - "color": "191,188,178", - "name": "Adaptive Boots", - "category": "BOOTS", - "tier": "EPIC", - "stats": { - "DEFENSE": 45, - "HEALTH": 90, - "STRENGTH": 15, - "INTELLIGENCE": 15 - }, - "npc_sell_price": 20000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 10 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 150 - } - ] - ], - "gear_score": 50, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 3 - } - }, - "dungeon_item": true, - "gemstone_slots": [ - { - "slot_type": "DEFENSIVE" - } - ], - "id": "ADAPTIVE_BOOTS" - }, { "material": "LEATHER_LEGGINGS", "color": "96,96,96", @@ -63896,247 +68347,302 @@ "WALK_SPEED": 10 }, "npc_sell_price": 129500, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 5 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 125 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM", "amount": 80 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 750 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 10 }, { + "type": "ITEM", "item_id": "Y", "amount": 10 }, { + "type": "ITEM", "item_id": "Z", "amount": 10 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 15 }, { + "type": "ITEM", "item_id": "Y", "amount": 15 }, { + "type": "ITEM", "item_id": "Z", "amount": 15 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 4 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "X", "amount": 20 }, { + "type": "ITEM", "item_id": "Y", "amount": 20 }, { + "type": "ITEM", "item_id": "Z", "amount": 20 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 4 }, { + "type": "ITEM", "item_id": "X", "amount": 30 }, { + "type": "ITEM", "item_id": "Y", "amount": 30 }, { + "type": "ITEM", "item_id": "Z", "amount": 30 }, { + "type": "ITEM", "item_id": "ENCHANTED_MYCELIUM_CUBE", "amount": 16 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } @@ -64195,59 +68701,69 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 150 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 15 } - }, + ], "gemstone_slots": [ { "slot_type": "DEFENSIVE", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 10 } @@ -64297,82 +68813,96 @@ "CRITICAL_DAMAGE": 10, "INTELLIGENCE": 130 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -64382,10 +68912,12 @@ "item_id": "HOT_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -64396,21 +68928,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -64420,21 +68957,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -64492,6 +69034,11 @@ "INTELLIGENCE": 6 }, "soulbound": "COOP", + "requirements": [ + { + "type": "MELODY_HAIR" + } + ], "id": "MELODY_HAIR" }, { @@ -64540,51 +69087,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1200 } ] ], "gear_score": 100, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 20 } @@ -64594,9 +69149,11 @@ "slot_type": "AMETHYST", "costs": [ { + "type": "COINS", "coins": 100000 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 40 } @@ -64684,42 +69241,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 25 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 25 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_LORD_BOOTS" }, @@ -64769,41 +69332,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 90 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE" @@ -64812,9 +69381,11 @@ "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 10 } @@ -64918,12 +69489,13 @@ "DEFENSE": 25 }, "npc_sell_price": 1000, - "requirements": { - "skill": { - "type": "MINING", + "requirements": [ + { + "type": "SKILL", + "skill": "MINING", "level": 5 } - }, + ], "id": "LAPIS_ARMOR_HELMET" }, { @@ -64968,29 +69540,6 @@ "npc_sell_price": 50, "id": "THORNLEAF_SCYTHE" }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MTA5ODY5MjYyMywKICAicHJvZmlsZUlkIiA6ICIzNmMxODk4ZjlhZGE0NjZlYjk0ZDFmZWFmMjQ0MTkxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJMdW5haWFuIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZjZWVkM2IwOGZhMzQ5ODJiYzNmYWFhOTkzNjk0MWI2Y2QwMGFiZDM3MTczZWU2N2IzY2UzYjllMThiZmNhNmMiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", - "name": "Thunderbolt Necklace", - "tier": "EPIC", - "category": "NECKLACE", - "npc_sell_price": 75000, - "stats": { - "HEALTH": 40, - "DEFENSE": 30, - "SEA_CREATURE_CHANCE": 1.5 - }, - "requirements": { - "skill": { - "type": "FISHING", - "level": 36 - } - }, - "unstackable": true, - "can_have_attributes": true, - "id": "THUNDERBOLT_NECKLACE" - }, { "material": "SKULL_ITEM", "durability": 3, @@ -65020,12 +69569,13 @@ }, "npc_sell_price": 1, "gear_score": 10, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "dungeon_item": true, "id": "CRYPT_WITHERLORD_CHESTPLATE" }, @@ -65068,51 +69618,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 1000 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 4 } @@ -65122,21 +69680,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -65218,55 +69781,64 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 80 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "DRAGON", "amount": 180 } ] ], - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 16 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 16 } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -65313,24 +69885,6 @@ "npc_sell_price": 1600, "id": "MAGMA_FISH_SILVER" }, - { - "material": "FISHING_ROD", - "name": "Sponge Rod", - "category": "FISHING_ROD", - "stats": { - "DAMAGE": 20, - "STRENGTH": 15 - }, - "npc_sell_price": 36, - "requirements": { - "skill": { - "type": "FISHING", - "level": 5 - } - }, - "museum": true, - "id": "SPONGE_ROD" - }, { "material": "IRON_SWORD", "name": "Zombie Sword", @@ -65349,41 +69903,47 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 90 } ] ], - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 18 } - }, + ], "gemstone_slots": [ { "slot_type": "SAPPHIRE" @@ -65410,11 +69970,12 @@ "MINING_SPEED": 300 }, "npc_sell_price": 5000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "REFINED_MITHRIL_PICKAXE" }, { @@ -65434,19 +69995,22 @@ "DAMAGE": 5 }, "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 25 }, - "collection": { - "collection_id": "CACTUS", - "required_tier": 7 + { + "type": "COLLECTION", + "collection": "CACTUS", + "tier": 7 }, - "target_practice": { + { + "type": "TARGET_PRACTICE", "mode": "III" } - }, + ], "id": "NANSORB_ARROW" }, { @@ -65510,11 +70074,12 @@ "name": "Ruby-polished Drill Engine", "tier": "RARE", "npc_sell_price": 103000, - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "id": "RUBY_POLISHED_DRILL_ENGINE" }, { @@ -65556,12 +70121,13 @@ "WEAPON_ABILITY_DAMAGE": 50 }, "npc_sell_price": 15000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "STARLIGHT_WAND" }, { @@ -65625,51 +70191,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 75 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 150 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 5 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 20 } @@ -65702,11 +70276,12 @@ "name": "Gold Hunter Boots", "category": "BOOTS", "tier": "EPIC", - "requirements": { - "trophy_fishing_reward": { + "requirements": [ + { + "type": "TROPHY_FISHING", "reward": "GOLD" } - }, + ], "soulbound": "SOLO", "can_have_attributes": true, "gemstone_slots": [ @@ -65717,6 +70292,7 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 } ] @@ -65725,72 +70301,85 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 1 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 2 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 5 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 6 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 7 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ITEM", "item_id": "MAGMA_FISH_GOLD", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -65865,24 +70454,6 @@ "tier": "RARE", "id": "GEMSTONE_POWDER_TIER_1" }, - { - "material": "FISHING_ROD", - "name": "Prismarine Rod", - "category": "FISHING_ROD", - "stats": { - "DAMAGE": 15, - "STRENGTH": 10 - }, - "npc_sell_price": 10, - "requirements": { - "skill": { - "type": "FISHING", - "level": 3 - } - }, - "museum": true, - "id": "PRISMARINE_ROD" - }, { "material": "MILK_BUCKET", "name": "Magical Milk Bucket", @@ -65905,12 +70476,13 @@ "HEALTH": 40 }, "npc_sell_price": 10000, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 8 } - }, + ], "id": "MERCENARY_HELMET" }, { @@ -65990,42 +70562,48 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", "amount": 240 } ] ], "gear_score": 5, - "requirements": { - "dungeon": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", "level": 9 } - }, + ], "dungeon_item": true, "id": "ZOMBIE_SOLDIER_CHESTPLATE" }, @@ -66037,12 +70615,13 @@ "category": "CLOAK", "tier": "EPIC", "npc_sell_price": 93750, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "stats": { "HEALTH": 30, "DEFENSE": 20, @@ -66052,72 +70631,85 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 15000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 6 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 8 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } @@ -66141,33 +70733,39 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 328 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -66177,21 +70775,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -66201,122 +70804,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -66354,16 +70980,18 @@ "CRITICAL_DAMAGE": 15, "SEA_CREATURE_CHANCE": 3 }, - "requirements": { - "skill": { - "type": "FISHING", + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", "level": 28 } - }, + ], "npc_sell_price": 10000, "can_have_attributes": true, "salvages": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } @@ -66371,112 +70999,135 @@ "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 10 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 20 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 20 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 30 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 40 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 50 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 60 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 70 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 200 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "MOOGMA_PELT", "amount": 100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 350 } @@ -66528,51 +71179,59 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 100 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 350 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 500 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 7 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "SAPPHIRE", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 4 } @@ -66582,21 +71241,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -66690,63 +71354,74 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 120 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 250 } ], [ { + "type": "ESSENCE", "essence_type": "WITHER", "amount": 400 } ] ], "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", "tier": 6 } - }, + ], "dungeon_item": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_AMETHYST_GEM", "amount": 5 } @@ -66768,163 +71443,197 @@ "INTELLIGENCE": 100 }, "ability_damage_scaling": 0.3, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 25 } - }, + ], "npc_sell_price": 100000, "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 2 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 4 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 600 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 6 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1200 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 8 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2400 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 10 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3600 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 12 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4800 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 14 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7200 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 16 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 18 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11000 } ], [ { + "type": "ITEM", "item_id": "SPELL_POWDER", "amount": 20 }, { + "type": "ITEM", "item_id": "LEATHER_CLOTH", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 } @@ -66954,4057 +71663,5172 @@ }, "npc_sell_price": 50000, "can_have_attributes": true, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "salvageable_from_recipe": true, "upgrade_costs": [ [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 1 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 1 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 100 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 2 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 2 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 250 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 3 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 4 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 5 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1500 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 6 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 6 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 7 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 7 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 3000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 8 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 8 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 9 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 9 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ITEM", "item_id": "HALLOWED_SKULL", "amount": 10 }, { + "type": "ITEM", "item_id": "REKINDLED_EMBER_FRAGMENT", "amount": 10 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 }, { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6000 } ] ], - "gemstone_slots": [ + "gemstone_slots": [ + { + "slot_type": "COMBAT" + } + ], + "id": "REKINDLED_EMBER_HELMET" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjAsInByb2ZpbGVJZCI6ImRiYTJmMTE1NmNjMjQwMWJhOWU5YjRkMjdmN2M4OTdkIiwicHJvZmlsZU5hbWUiOiJjb2RlbmFtZV9CIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwczovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS80YzNlOGMxOTRjOWYxNGZkOThjMjM0N2E0Y2M0ZmNjM2Q3NTVkOTQ4YmRjNThlNDI5MjZkOWQ2ZjQ1YjYyMGE1In19fQ==", + "name": "Desk", + "furniture": "DESK", + "id": "DESK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzEzYzhiMjkxNmEyNzVkYjRjMTc2MmNmNWYxM2Q3Yjk1YjkxZDYwYmFmNTE2NGE0NDdkNmVmYTc3MDRjZjExYiJ9fX0K", + "name": "SmilingRock", + "category": "COSMETIC", + "tier": "RARE", + "unstackable": true, + "museum": true, + "id": "PET_SKIN_ROCK_SMILE" + }, + { + "material": "CHEST", + "name": "Large Storage", + "tier": "RARE", + "npc_sell_price": 40000, + "id": "LARGE_ENCHANTED_CHEST" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODU1YjcyZjUyOWY5YmQzM2E2ZWMxZGYxNmYxN2YwNTRkZWNlNmI1NTNjMjFkMjg2YWQ0ZTkzZmM2NTgxNDdkMyJ9fX0K", + "name": "Reinforced Skin", + "category": "COSMETIC", + "tier": "LEGENDARY", + "unstackable": true, + "id": "PERFECT_FORGE" + }, + { + "material": "SEEDS", + "name": "Seeds", + "npc_sell_price": 0.5, + "id": "SEEDS" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MjQ4ODAyMTk3MiwKICAicHJvZmlsZUlkIiA6ICI2OTBkMDM2OGM2NTE0OGM5ODZjMzEwN2FjMmRjNjFlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJ5emZyXzciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTliMzkzZWI2YTViZDY1ZDczNWFhYTNiM2NmYTk5M2I1MGY1ZTUzNmQ3YTEzYjUzNTUxNGJkMDc0MGQ2MzM1MCIKICAgIH0KICB9Cn0", + "name": "Diamond Magmafish", + "tier": "MYTHIC", + "unstackable": true, + "id": "MAGMA_FISH_DIAMOND" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "item_durability": -1, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWI4YWY1MmVmMmY3MmMzYmY1ZWNlNmU3MGE4MmYxMzcxOTU5Y2UzZmNiNzM2YzUwMDMwNWNhZGRjNTA1YzVlMiJ9fX0", + "name": "Shadow Assassin Helmet", + "category": "HELMET", + "tier": "EPIC", + "stats": { + "WALK_SPEED": 7, + "DEFENSE": 70, + "HEALTH": 160, + "STRENGTH": 25, + "CRITICAL_DAMAGE": 25 + }, + "npc_sell_price": 5000, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 50 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "WITHER", + "amount": 300 + } + ] + ], + "gear_score": 25, + "requirements": [ + { + "type": "DUNGEON_TIER", + "dungeon_type": "CATACOMBS", + "tier": 5 + } + ], + "dungeon_item": true, + "gemstone_slots": [ + { + "slot_type": "JASPER", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 + } + ] + } + ], + "id": "SHADOW_ASSASSIN_HELMET" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODc1ZGU1OTNiNjdmZTllNzUxZmRhNTk4M2EzMWI4MjdiNDNlYWNkZTQzZDU1YTVhYzUxNGU4OGVkYjY0In19fQ==", + "name": "Happy Snowman", + "furniture": "HAPPY_SNOWMAN", + "tier": "RARE", + "id": "HAPPY_SNOWMAN" + }, + { + "material": "NETHER_BRICK_ITEM", + "name": "Nether Brick", + "npc_sell_price": 1, + "id": "NETHER_BRICK_ITEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjAsInByb2ZpbGVJZCI6ImRiYTJmMTE1NmNjMjQwMWJhOWU5YjRkMjdmN2M4OTdkIiwicHJvZmlsZU5hbWUiOiJjb2RlbmFtZV9CIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwczovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lOTlmY2MyZjdiMDFhOGM0YmFhMjI1YjVjODI1OTE4Y2IwZmMyZWI0NGU3OWZmZDhiNDhkZGIzNDg0YmE1YzNkIn19fQ==", + "name": "Halloween Candles", + "furniture": "HALLOWEEN_CANDLES", + "id": "HALLOWEEN_CANDLES" + }, + { + "material": "BEDROCK", + "name": "Bedrock", + "tier": "LEGENDARY", + "npc_sell_price": 1, + "description": "%%red%%I guess you have this now.", + "museum": true, + "id": "BEDROCK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxNzExMDc2NTU5OCwKICAicHJvZmlsZUlkIiA6ICI3NzI3ZDM1NjY5Zjk0MTUxODAyM2Q2MmM2ODE3NTkxOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJsaWJyYXJ5ZnJlYWsiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDY1Y2JjZTQwZTYwZTdhNTlhODdmYThmNGVjYjZjY2ZjMTUxNDMzOGMyNjI2MTRiZjMzNzM5YTYyNjNmNTQwNSIKICAgIH0KICB9Cn0", + "name": "Master Catacombs Pass VIII", + "category": "DUNGEON_PASS", + "tier": "EPIC", + "dungeon_item": true, + "id": "MASTER_CATACOMBS_PASS_8" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmY2ZDI0ODYzMWY2NzIzNDlkYWZiZjc1ZDUxNDM0NmMzNzE1OTg1ZjUzNDkzYTFiZTJkODYwYTI1MzFmMzM1OSJ9fX0=", + "name": "Light Gray Lamp", + "npc_sell_price": 500, + "id": "LAMP_LIGHT_GRAY" + }, + { + "material": "PAPER", + "name": "Maddox's Phone Number", + "glowing": true, + "tier": "UNCOMMON", + "id": "AATROX_PHONE_NUMBER" + }, + { + "material": "LEATHER_BOOTS", + "color": "128,128,128", + "name": "Ghostly Boots", + "category": "BOOTS", + "tier": "RARE", + "npc_sell_price": 77777, + "description": "%%gray%%%%italic%%Boots made of pure ghost essense", + "museum": true, + "id": "GHOST_BOOTS" + }, + { + "material": "EMPTY_MAP", + "name": "Travel Scroll to the Blaze Farm", + "category": "TRAVEL_SCROLL", + "tier": "EPIC", + "id": "BLAZE_FARM_TRAVEL_SCROLL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc1MzU3NjU0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzUzNWY4M2JkNGUyOTBkNDAwZDVjOGM3MTgzMDhjNzRiZTk5ZjA5YTQ4OWQwYzI1ZWQzZDEyMTkzMmNmZmE4ZSIKICAgIH0KICB9Cn0=", + "name": "Millenia-Old Blaze Ashes", + "npc_sell_price": 1000, + "tier": "RARE", + "description": "%%gray%%%%italic%%Despite being ephemeral creatures, blaze ashes are eternal.", + "soulbound": "COOP", + "id": "MILLENIA_OLD_BLAZE_ASHES" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWRlM2E0MDdkMmJlMzg3YjQ1YmViZGQ1MmQzZDRkNzVhNmExYjQ3OWUyYjhjMDMyNjdkMDIxZDRhZjMxZTA3MiJ9fX0=", + "name": "Blaze Talisman", + "tier": "RARE", + "unstackable": true, + "soulbound": "COOP", + "category": "ACCESSORY", + "stats": { + "TRUE_DEFENSE": 3 + }, + "id": "BLAZE_TALISMAN" + }, + { + "material": "BOOK_AND_QUILL", + "name": "Opal Power Scroll", + "glowing": true, + "tier": "EPIC", + "id": "OPAL_POWER_SCROLL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDM2Nzk3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U1MDlmMDZiOGRjMzg0MzU4ZmYyNDcyYWI2MmNlNmZkYzJmNjQ2ZTMzOGVmZGMzYzlmYjA1ZGRjNDMxZjY0IgogICAgfQogIH0KfQ==", + "name": "Perfect Opal Gemstone", + "tier": "LEGENDARY", + "unstackable": true, + "id": "PERFECT_OPAL_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDMzNzQyOCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWQ3OThlMjBhNDdkMjUxYTllMzNkNDAzMzI5NzNjNzE4OWFjMTU1MDc2MGJhMjVjNGI5NTZjOTE1OTM2NDU2OCIKICAgIH0KICB9Cn0=", + "name": "Fine Opal Gemstone", + "tier": "RARE", + "npc_sell_price": 19200, + "id": "FINE_OPAL_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDM1MzA0NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWQxNWVkNzBlNzIwMDQwYWQ3MzExZTY5MzU5ZGZkZjVlMTE0ZWFkZDJhNGMxZjk3MWE5NTAxMzQxYTQ1MjY0YiIKICAgIH0KICB9Cn0=", + "name": "Flawless Opal Gemstone", + "tier": "EPIC", + "unstackable": true, + "id": "FLAWLESS_OPAL_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDMxNzIzMywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWFkYzNiY2RkN2M3MDFiNjNmOGI4YjRhOTZlNDI5MzE2YTA4Mzg4NjY5ZDlhOThjMWE5ODc5MTcyOWI5NjFkZiIKICAgIH0KICB9Cn0=", + "name": "Flawed Opal Gemstone", + "tier": "UNCOMMON", + "npc_sell_price": 240, + "id": "FLAWED_OPAL_GEM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDI5MjQ5NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTE0ZDNjNTdmODA4MjRiMzgzOWI4YjIyMGYyMTU4YmNhNTA1ZDQ5N2ZkMWM5ZTNmMjlmNDIyYjFlNjIwNmE0NSIKICAgIH0KICB9Cn0=", + "name": "Rough Opal Gemstone", + "npc_sell_price": 3, + "id": "ROUGH_OPAL_GEM" + }, + { + "material": "MONSTER_EGG", + "durability": 67, + "name": "Omega Enchanted Egg", + "glowing": true, + "tier": "EPIC", + "unstackable": true, + "id": "OMEGA_EGG" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc0NzQ4NDE3MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFlODEzYTNhMzgwZTNlYjIwMWMyNGI5NjYxZjZlZGIzOWJkZjQyYTg4OTg5ZjgxYTkwZjc3MTk5N2Q2ZjVjZCIKICAgIH0KICB9Cn0=", + "name": "Gabagoey Mixin", + "tier": "RARE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 8 + } + ], + "id": "GABAGOEY_MIXIN" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjE0NTg4MDQ5NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDJjZmM0MzdjNDI5MWE4MWQ0ZDU2ZWEwM2QyMGIwNThkODk3MzVhNzA5MTEwZWM1ZDEwNzI1ZDRjZWU2ODQyOSIKICAgIH0KICB9Cn0=", + "name": "Destruction Cloak", + "category": "CLOAK", + "tier": "EPIC", + "stats": { + "health": 60, + "strength": 15, + "critical_damage": 15, + "magic_find": 1, + "foraging_wisdom": 1 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 5 + } + ], + "id": "DESTRUCTION_CLOAK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0MjA0MjkyNSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNiZDcyNjI3OTA4ODVlMjMyMWJjNTc3MjllNzRhOWY2OGVhZjI2ZWNjZTM2OWRiYjJmZThmNDNjMjk4MWQyOSIKICAgIH0KICB9Cn0=", + "name": "Demonslayer Gauntlet", + "category": "GLOVES", + "tier": "EPIC", + "stats": { + "DEFENSE": 20, + "HEALTH": 40, + "CRITICAL_DAMAGE": 25, + "TRUE_DEFENSE": 5 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 4 + } + ], + "id": "DEMONLORD_GAUNTLET" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjE0NTkxMjU0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQ0OTI4ZDExNDQxNjU1NTg4MmEzNmIyYmE5ZDRiMjk1YzFkMTZjODJiY2E5NDVkM2M4MTNlM2FhYTk0YWIzZSIKICAgIH0KICB9Cn0=", + "name": "Annihilation Cloak", + "category": "CLOAK", + "tier": "LEGENDARY", + "stats": { + "health": 80, + "strength": 20, + "critical_damage": 20, + "magic_find": 2, + "foraging_wisdom": 2 + }, + "requirements": [ { - "slot_type": "COMBAT" + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 7 } ], - "id": "REKINDLED_EMBER_HELMET" + "id": "ANNIHILATION_CLOAK" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjAsInByb2ZpbGVJZCI6ImRiYTJmMTE1NmNjMjQwMWJhOWU5YjRkMjdmN2M4OTdkIiwicHJvZmlsZU5hbWUiOiJjb2RlbmFtZV9CIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwczovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS80YzNlOGMxOTRjOWYxNGZkOThjMjM0N2E0Y2M0ZmNjM2Q3NTVkOTQ4YmRjNThlNDI5MjZkOWQ2ZjQ1YjYyMGE1In19fQ==", - "name": "Desk", - "furniture": "DESK", - "id": "DESK" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWUyMjFiYjczMzE3MjIwNzMxNWFjZWRjYzVjOTk4MzZhNjM5ODYyYTM3MjdkYTZkNWRmMzZiODUxZmMxOTFjNCJ9fX0=", + "name": "Inferno Vertex", + "tier": "EPIC", + "id": "INFERNO_VERTEX" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzEzYzhiMjkxNmEyNzVkYjRjMTc2MmNmNWYxM2Q3Yjk1YjkxZDYwYmFmNTE2NGE0NDdkNmVmYTc3MDRjZjExYiJ9fX0K", - "name": "SmilingRock", - "category": "COSMETIC", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmIzMWE4MTEyNWI1M2VjOGZmMTFkMDlkYjM3YTJkZDQ0MmM0MjdiNWMzNmQ0YzZiYTVjMTlkY2QwMmU2MzEifX19", + "name": "Reaper Pepper", + "tier": "LEGENDARY", + "id": "REAPER_PEPPER" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI0NTE5MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWZkMjMzM2I1ZWU0OWVjNWUzYWY0YzZmNDU1NTBiYzQ0Zjg4YmZiNGFkMGFiMjdiYWEzMzlhMDRiOTQzOTdhMiIKICAgIH0KICB9Cn0=", + "name": "Gabagool Distillate", "tier": "RARE", - "unstackable": true, - "museum": true, - "id": "PET_SKIN_ROCK_SMILE" + "npc_sell_price": 5000, + "id": "CRUDE_GABAGOOL_DISTILLATE" }, { - "material": "CHEST", - "name": "Large Storage", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc0NjI4MzI4NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmNkZjYzNjg3N2YwYTFlZGIzNWFlZDRjYzFmZDBlOWM5YTA0Y2ZiOGU4ODA5ZDQ1Y2QzNTE0YWUwNWFkMmFmMCIKICAgIH0KICB9Cn0=", + "name": "Nether Wart Distillate", "tier": "RARE", - "npc_sell_price": 40000, - "id": "LARGE_ENCHANTED_CHEST" + "npc_sell_price": 5000, + "id": "NETHER_STALK_DISTILLATE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODU1YjcyZjUyOWY5YmQzM2E2ZWMxZGYxNmYxN2YwNTRkZWNlNmI1NTNjMjFkMjg2YWQ0ZTkzZmM2NTgxNDdkMyJ9fX0K", - "name": "Reinforced Skin", - "category": "COSMETIC", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDE1ODAwMiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFlODEzYTNhMzgwZTNlYjIwMWMyNGI5NjYxZjZlZGIzOWJkZjQyYTg4OTg5ZjgxYTkwZjc3MTk5N2Q2ZjVjZCIKICAgIH0KICB9Cn0=", + "name": "Blaze Rod Distillate", + "tier": "RARE", + "npc_sell_price": 5000, + "id": "BLAZE_ROD_DISTILLATE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI4NzA0MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmNkZjYzNjg3N2YwYTFlZGIzNWFlZDRjYzFmZDBlOWM5YTA0Y2ZiOGU4ODA5ZDQ1Y2QzNTE0YWUwNWFkMmFmMCIKICAgIH0KICB9Cn0=", + "name": "Magma Cream Distillate", + "tier": "RARE", + "npc_sell_price": 5000, + "id": "MAGMA_CREAM_DISTILLATE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI1ODgwMCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTBkMTc0ZTM3MGU0NzI3NTYzOGZlMmQ2Yjg2ZmNkZmU0NDk2ZWI0NTI2NWFkMTEzOTM2ODk0NzBkZjVlZTJiIgogICAgfQogIH0KfQ==", + "name": "Glowstone Distillate", + "tier": "RARE", + "npc_sell_price": 5000, + "id": "GLOWSTONE_DUST_DISTILLATE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDkxMjE0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjhhMTg4NGVlM2Y4YTZlNjY2OTJhOTFlZDc2M2NiNzhkOWYyMDE3NzA2ZDhiNDJhOTI2M2I0MTdiMmQ3MTVkMiIKICAgIH0KICB9Cn0=", + "name": "Inferno Fuel Block", + "tier": "RARE", + "id": "INFERNO_FUEL_BLOCK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE2MzQ5NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzA0ZTBhYzgxZTYwOGM1NjA1YjUwNWQ0ZTljZDZlNzUzOTczMzJjOTEyYzFmZjhmNzlhZmUxNzBmMzhiN2E3OCIKICAgIH0KICB9Cn0=", + "name": "Heavy Gabagool", + "tier": "EPIC", + "npc_sell_price": 1, + "id": "HEAVY_GABAGOOL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE5NDU2OCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjQ0NDg5YzI0MzJlZmE4OWU1NjQxMTE3OGU2MGRkZGU0M2E2NTQ5NzRhZDQ1ZDEzOTk2ZDQ4NTk0ZGVlYTM5OSIKICAgIH0KICB9Cn0=", + "name": "Hypergolic Gabagool", "tier": "LEGENDARY", - "unstackable": true, - "id": "PERFECT_FORGE" + "npc_sell_price": 1, + "id": "HYPERGOLIC_GABAGOOL" }, { - "material": "SEEDS", - "name": "Seeds", - "npc_sell_price": 0.5, - "id": "SEEDS" + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzEzMzkyNSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U2NTY0YmJmYTc0OWM5ZTBlZjNhYzJhM2YyMTEwMTM5YTU1OTQ0ODQxZDEwNzM1Y2Y5MDBkMWUyOTAzOTQxOCIKICAgIH0KICB9Cn0=", + "name": "Crude Gabagool", + "tier": "UNCOMMON", + "npc_sell_price": 1, + "id": "CRUDE_GABAGOOL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0MjQ4ODAyMTk3MiwKICAicHJvZmlsZUlkIiA6ICI2OTBkMDM2OGM2NTE0OGM5ODZjMzEwN2FjMmRjNjFlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJ5emZyXzciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTliMzkzZWI2YTViZDY1ZDczNWFhYTNiM2NmYTk5M2I1MGY1ZTUzNmQ3YTEzYjUzNTUxNGJkMDc0MGQ2MzM1MCIKICAgIH0KICB9Cn0", - "name": "Diamond Magmafish", - "tier": "MYTHIC", - "unstackable": true, - "id": "MAGMA_FISH_DIAMOND" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE0OTYzOCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjAwMGFhZDYzODhjYTQ3Y2I2ZjZjZmM4OGQ3ODU2NzFiZDQ3ODBhODUwMTA2ZWY0N2YyYThhMmMzZjM1YjNiMSIKICAgIH0KICB9Cn0=", + "name": "Fuel Gabagool", + "tier": "RARE", + "npc_sell_price": 1, + "id": "FUEL_GABAGOOL" }, { "material": "SKULL_ITEM", "durability": 3, - "item_durability": -1, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWI4YWY1MmVmMmY3MmMzYmY1ZWNlNmU3MGE4MmYxMzcxOTU5Y2UzZmNiNzM2YzUwMDMwNWNhZGRjNTA1YzVlMiJ9fX0", - "name": "Shadow Assassin Helmet", - "category": "HELMET", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjMzYWZkNTdlYTE2YmM2NmVlYjQ1NmE4YTdjMTIzNDY3OGQ1OTVhOTYwNDZjYWQzMzZjNGZkYzgxZjBkZmRmNSJ9fX0=", + "name": "Sulphuric Coal", + "tier": "RARE", + "npc_sell_price": 2880, + "id": "SULPHURIC_COAL" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgzNTc3OSwKICAicHJvZmlsZUlkIiA6ICJmMjc0YzRkNjI1MDQ0ZTQxOGVmYmYwNmM3NWIyMDIxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJIeXBpZ3NlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8yYzAxYmE2NTJhMjNiMTlkYmIxZDU5ZWJhYjBiMzA4ZWI3Mjg2MWQ1YmNkN2Q0MjYzMDMxNmMzZTY1NDJlMDFhIgogICAgfQogIH0KfQ", + "name": "Inferno Minion III", + "generator": "INFERNO", + "generator_tier": 3, + "tier": "RARE", + "id": "INFERNO_GENERATOR_3" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkwMTE3OSwKICAicHJvZmlsZUlkIiA6ICIxYTc1ZTNiYmI1NTk0MTc2OTVjMmY4NTY1YzNlMDAzZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZXJvZmFyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZiZGE5NjdmNDFlMGVhNDIyODlhYmZiNjYxYzdjNzFiMjgwNDVkNDg4YTBmMTBlMTNkNzhiNjUzYzI1ZjhmMGQiCiAgICB9CiAgfQp9", + "name": "Inferno Minion VII", + "generator": "INFERNO", + "generator_tier": 7, + "tier": "RARE", + "id": "INFERNO_GENERATOR_7" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg1MDU4MywKICAicHJvZmlsZUlkIiA6ICI4ODBiZWMwYTE0MmM0YzRlYTJlZjliMTFiMTBkNWNiNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJmZ2FiIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgzYWJlYzE0YWNiYzQ5Mzg5NTJmYjU5ODZjYjE0NTgzNDg0Y2NiN2RlNjJkMWI5YzJiNDExOTZhOTg3NmMzY2UiCiAgICB9CiAgfQp9", + "name": "Inferno Minion IV", + "generator": "INFERNO", + "generator_tier": 4, + "tier": "RARE", + "id": "INFERNO_GENERATOR_4" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkxNzIyNCwKICAicHJvZmlsZUlkIiA6ICI0NGNlMmMwZTFjNTM0ZDhmYmExNmNkNDhlYjkyYTUxZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ4WGlyYW56dThYeCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81MTNmOGVkNDRmYjJmODJhZGU5MmJiNTZhNjA2YmUzYjU5NWNkNzE2YjFiYmYwOTUwZjA4NjZjYzYzOTNkMjViIgogICAgfQogIH0KfQ", + "name": "Inferno Minion VIII", + "generator": "INFERNO", + "generator_tier": 8, + "tier": "RARE", + "id": "INFERNO_GENERATOR_8" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg2NzAwNCwKICAicHJvZmlsZUlkIiA6ICI0OWIzODUyNDdhMWY0NTM3YjBmN2MwZTFmMTVjMTc2NCIsCiAgInByb2ZpbGVOYW1lIiA6ICJiY2QyMDMzYzYzZWM0YmY4IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzJhNmU4MTg0YzMyOTliMjkzYWY3NTc3NDkxOGM0ODcyMmFmYWYzMzA5ZGE1MjkwZTBmMjU4MDQ4ZjJhYWRmNjYiCiAgICB9CiAgfQp9", + "name": "Inferno Minion V", + "generator": "INFERNO", + "generator_tier": 5, + "tier": "RARE", + "id": "INFERNO_GENERATOR_5" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg4MzAyMiwKICAicHJvZmlsZUlkIiA6ICI2MzMyMDgwZTY3YTI0Y2MxYjE3ZGJhNzZmM2MwMGYxZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZWFtSHlkcmEiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWI2NjY1ZjViZTU4MzMyOGQxMDIxZjBhZTZmOTczYzdkOWU3MjhiMWFjNDY1YzQwYzg3YTc3OWFmMDY1ODdiZiIKICAgIH0KICB9Cn0", + "name": "Inferno Minion VI", + "generator": "INFERNO", + "generator_tier": 6, + "tier": "RARE", + "id": "INFERNO_GENERATOR_6" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTk3NzY3NywKICAicHJvZmlsZUlkIiA6ICI4ZGU4ZWU3MTMyMTY0NGNhYTllZjJlNTVjODRjNGU4ZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJIdW5kZXNjaG9uVE0iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM3Y2M1ZDhkZWExZWFjNmFhMzA3YjlhZDMyYjc5ZGEwYWY3ZDE2YmFkMGZkOGUzNGNjNTczNTczOWRiOTc1MyIKICAgIH0KICB9Cn0", + "name": "Inferno Minion XI", + "generator": "INFERNO", + "generator_tier": 11, + "tier": "RARE", + "id": "INFERNO_GENERATOR_11" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTk0NTg5MiwKICAicHJvZmlsZUlkIiA6ICI0M2NmNWJkNjUyMDM0YzU5ODVjMDIwYWI3NDE0OGQxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrYW1pbDQ0NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82NWM3MGY5MGExMWMyZDQ3ZmVlZDdkMTMxN2IxYzFiN2ZlOTM3MDZhMTkyYTk4M2FmOWE4MWE1MTcwZGJlNzFiIgogICAgfQogIH0KfQ", + "name": "Inferno Minion X", + "generator": "INFERNO", + "generator_tier": 10, + "tier": "RARE", + "id": "INFERNO_GENERATOR_10" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkyOTY3NSwKICAicHJvZmlsZUlkIiA6ICIwZWQ2MDFlMDhjZTM0YjRkYWUxZmI4MDljZmEwNTM5NiIsCiAgInByb2ZpbGVOYW1lIiA6ICJOZWVkTW9yZUFjY291bnRzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2ZDQ2NzA5MmVmYjE1NjcwN2MyNTRmMTY4ZmYwM2IwYjc2M2E3NGZlOWY4YWMxNTYxNmVhNGM5N2FkZmFmNjkiCiAgICB9CiAgfQp9", + "name": "Inferno Minion IX", + "generator": "INFERNO", + "generator_tier": 9, + "tier": "RARE", + "id": "INFERNO_GENERATOR_9" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgxOTk5MywKICAicHJvZmlsZUlkIiA6ICIzYjA1NTdlYmVmYjc0MDdmYmFmMjVhN2IyNzYwZTZlMCIsCiAgInByb2ZpbGVOYW1lIiA6ICJNcl9JY2VTcGlrZXMiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjIxMDQwMzQ5MDk2MjNkNjA5NGE1MDYwZTA1YWY2ZGE1Y2JmNzUyYTE4NTgwOTExMzY4ZmEzNmQ2OTQ5MmFmMyIKICAgIH0KICB9Cn0", + "name": "Inferno Minion II", + "generator": "INFERNO", + "generator_tier": 2, + "tier": "RARE", + "id": "INFERNO_GENERATOR_2" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgwMzkyNSwKICAicHJvZmlsZUlkIiA6ICI0NGNlMmMwZTFjNTM0ZDhmYmExNmNkNDhlYjkyYTUxZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ4WGlyYW56dThYeCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82NjVjNTQzNjZmODhmYjMyODBiMWMzZmM1MDBjZTJiNzk5YzhkZDMyN2FiNmQ0MWM5YmM5NTk0ODhmNWNmZDkyIgogICAgfQogIH0KfQ", + "name": "Inferno Minion I", + "generator": "INFERNO", + "generator_tier": 1, + "tier": "RARE", + "id": "INFERNO_GENERATOR_1" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWQ3OGNjMzkxYWZmYjgwYjJiMzVlYjczNjRmZjc2MmQzODQyNGMwN2U3MjRiOTkzOTZkZWU5MjFmYmJjOWNmIn19fQ==", + "name": "Inferno Apex", + "tier": "LEGENDARY", + "id": "INFERNO_APEX" + }, + { + "material": "RAW_FISH", + "durability": 1, + "name": "Gabagool the Fish", + "glowing": true, + "tier": "SPECIAL", + "museum": true, + "id": "GABAGOOL_THE_FISH" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODczMDU4NDQ2OCwKICAicHJvZmlsZUlkIiA6ICJjOWRlZTM4MDUzYjg0YzI5YjZlZjA5YjJlMDM5OTc0ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJTQVJfRGVjZW1iZXI1IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Y1OTlmOTU5ZjBlYmNiMWViMGYyZTU4NTJkMTIyY2E1NWJmNTI1OGZkNDYxM2FiNTBkNzJhZDhjZjVlMTI2MDMiCiAgICB9CiAgfQp9", + "name": "Stuffed Chili Pepper", + "tier": "RARE", + "description": "It's red hot, but green and stuffed!", + "npc_sell_price": 200000, + "id": "STUFFED_CHILI_PEPPER" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjg1OWM4ZGYxMTA5YzA4YTc1NjI3NWYxZDI4ODdjMjc0ODA0OWZlMzM4Nzc3NjlhN2I0MTVkNTZlZGE0NjlkOCJ9fX0=", + "name": "Chili Pepper", + "tier": "UNCOMMON", + "description": "It's red hot, but green!", + "npc_sell_price": 5000, + "id": "CHILI_PEPPER" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1ODQ3MzIwNTEwMiwKICAicHJvZmlsZUlkIiA6ICIwMGZiNTRiOWI4NDA0YTA0YTViMmJhMzBlYzBlYTAxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrbGxveWQ3MCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81NWQ1ZWJlZjk5ODY4YTliNmFjZTk0ODljOTM5N2U5NzlmZTBmMmI1NmNhZmIyZjY5Yjk0YThjNTlhODU2ODYwIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0", + "name": "Hypergolic Ionized Ceramics", + "tier": "EPIC", + "description": "Obtained from expired hypergolic fuel.\n\n%%dark_gray%%First the gabagool fuel is vitrified through calcination, then stabilized using a phosphate-based crystalline ceramic host through an ion exchange, or something...", + "id": "HYPERGOLIC_IONIZED_CERAMICS" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDM0MzYyNCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjRkZmFmZTdhYjhlODY5NWE1NmQzMWNjODY2NjcwNWQ2MWVkOTNiMWM1MTkxMGMyMmY0YTk1MGViNTVmMDRkZCIKICAgIH0KICB9Cn0=", + "name": "Bundle of Magma Arrows", + "tier": "EPIC", + "npc_sell_price": 50000, + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", + "level": 25 + } + ], + "id": "ARROW_BUNDLE_MAGMA" + }, + { + "material": "ARROW", + "name": "Magma Arrow", + "category": "ARROW", "tier": "EPIC", "stats": { - "WALK_SPEED": 7, - "DEFENSE": 70, - "HEALTH": 160, - "STRENGTH": 25, - "CRITICAL_DAMAGE": 25 + "DAMAGE": 40, + "CRITICAL_CHANCE": 10 }, - "npc_sell_price": 5000, - "upgrade_costs": [ - [ - { - "essence_type": "WITHER", - "amount": 25 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 50 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 100 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 200 - } - ], - [ - { - "essence_type": "WITHER", - "amount": 300 - } - ] + "npc_sell_price": 1, + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", + "level": 25 + } ], - "gear_score": 25, - "requirements": { - "dungeon_completion": { - "type": "CATACOMBS", - "tier": 5 + "id": "MAGMA_ARROW" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDY2MjYyOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjE1NjVjMWMyNjVmNTAzOThjMDY0NmE5YjdkNjQyODk1MjJjMGIwODkwOTFiYTVhMDRmMWQxOGJhYTg2MGQ4NSIKICAgIH0KICB9Cn0=", + "name": "Mana Disintegrator", + "tier": "RARE", + "unstackable": true, + "id": "MANA_DISINTEGRATOR" + }, + { + "material": "STONE_SWORD", + "name": "Kindlebane Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "EPIC", + "stats": { + "DAMAGE": 130, + "STRENGTH": 55, + "CRITICAL_DAMAGE": 20, + "ATTACK_SPEED": 10 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 4 + } + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 250000 + } + ] + }, + { + "slot_type": "OPAL", + "costs": [ + { + "type": "COINS", + "coins": 500000 + } + ] + } + ], + "id": "BURSTFIRE_DAGGER" + }, + { + "material": "IRON_SWORD", + "name": "Mawdredge Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "EPIC", + "stats": { + "DAMAGE": 130, + "STRENGTH": 55, + "CRITICAL_DAMAGE": 20, + "ATTACK_SPEED": 10 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 4 + } + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 250000 + } + ] + }, + { + "slot_type": "OPAL", + "costs": [ + { + "type": "COINS", + "coins": 500000 + } + ] + } + ], + "id": "BURSTMAW_DAGGER" + }, + { + "material": "IRON_SWORD", + "name": "Twilight Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "RARE", + "stats": { + "DAMAGE": 90, + "STRENGTH": 45, + "CRITICAL_DAMAGE": 15 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 2 + } + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 250000 + } + ] + } + ], + "id": "MAWDUST_DAGGER" + }, + { + "material": "STONE_SWORD", + "name": "Firedust Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "RARE", + "stats": { + "DAMAGE": 90, + "STRENGTH": 45, + "CRITICAL_DAMAGE": 15 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 2 + } + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 250000 + } + ] + } + ], + "id": "FIREDUST_DAGGER" + }, + { + "material": "IRON_SWORD", + "name": "Deathripper Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "LEGENDARY", + "stats": { + "DAMAGE": 160, + "STRENGTH": 75, + "CRITICAL_DAMAGE": 25, + "CRITICAL_CHANCE": 10, + "ATTACK_SPEED": 20 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 6 + } + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 250000 + } + ] + }, + { + "slot_type": "OPAL", + "costs": [ + { + "type": "COINS", + "coins": 500000 + } + ] } + ], + "id": "HEARTMAW_DAGGER" + }, + { + "material": "STONE_SWORD", + "name": "Pyrochaos Dagger", + "category": "SWORD", + "sword_type": "DAGGER", + "tier": "LEGENDARY", + "stats": { + "DAMAGE": 160, + "STRENGTH": 75, + "CRITICAL_DAMAGE": 25, + "CRITICAL_CHANCE": 10, + "ATTACK_SPEED": 20 }, - "dungeon_item": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 6 + } + ], "gemstone_slots": [ { - "slot_type": "JASPER", + "slot_type": "COMBAT", "costs": [ { - "coins": 50000 - }, + "type": "COINS", + "coins": 250000 + } + ] + }, + { + "slot_type": "OPAL", + "costs": [ { - "item_id": "FINE_JASPER_GEM", - "amount": 20 + "type": "COINS", + "coins": 500000 } ] } ], - "id": "SHADOW_ASSASSIN_HELMET" + "id": "HEARTFIRE_DAGGER" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODc1ZGU1OTNiNjdmZTllNzUxZmRhNTk4M2EzMWI4MjdiNDNlYWNkZTQzZDU1YTVhYzUxNGU4OGVkYjY0In19fQ==", - "name": "Happy Snowman", - "furniture": "HAPPY_SNOWMAN", - "tier": "RARE", - "id": "HAPPY_SNOWMAN" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMwNjU4N2VjMzhjMjQ0NmQzODlhNTgxZTA2OTE1NTZmYTU4ZmNlMGEwMmQwODQ2ZDIzZmQ2OGUzNjU2YTI0OSJ9fX0=", + "name": "Re-heated Gummy Polar Bear", + "tier": "UNCOMMON", + "id": "REHEATED_GUMMY_POLAR_BEAR" }, { - "material": "NETHER_BRICK_ITEM", - "name": "Nether Brick", - "npc_sell_price": 1, - "id": "NETHER_BRICK_ITEM" + "material": "BOOK", + "name": "Jalapeno Book", + "glowing": true, + "tier": "EPIC", + "npc_sell_price": 56000, + "unstackable": true, + "id": "JALAPENO_BOOK" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjAsInByb2ZpbGVJZCI6ImRiYTJmMTE1NmNjMjQwMWJhOWU5YjRkMjdmN2M4OTdkIiwicHJvZmlsZU5hbWUiOiJjb2RlbmFtZV9CIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwczovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lOTlmY2MyZjdiMDFhOGM0YmFhMjI1YjVjODI1OTE4Y2IwZmMyZWI0NGU3OWZmZDhiNDhkZGIzNDg0YmE1YzNkIn19fQ==", - "name": "Halloween Candles", - "furniture": "HALLOWEEN_CANDLES", - "id": "HALLOWEEN_CANDLES" - }, - { - "material": "BEDROCK", - "name": "Bedrock", - "tier": "LEGENDARY", - "npc_sell_price": 1, - "description": "%%red%%I guess you have this now.", - "museum": true, - "id": "BEDROCK" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzU5MjhjMjc4NTAyN2U3YmM0OWZiOTZmZjQ4MDFhNjczZDJhNTllZjMwYjU2MWY5ZjI0NTIxNDZiNDVkZTg5OSJ9fX0=", + "name": "Capsaicin Eyedrops", + "tier": "RARE", + "unstackable": true, + "id": "CAPSAICIN_EYEDROPS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYxNzExMDc2NTU5OCwKICAicHJvZmlsZUlkIiA6ICI3NzI3ZDM1NjY5Zjk0MTUxODAyM2Q2MmM2ODE3NTkxOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJsaWJyYXJ5ZnJlYWsiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDY1Y2JjZTQwZTYwZTdhNTlhODdmYThmNGVjYjZjY2ZjMTUxNDMzOGMyNjI2MTRiZjMzNzM5YTYyNjNmNTQwNSIKICAgIH0KICB9Cn0", - "name": "Master Catacombs Pass VIII", - "category": "DUNGEON_PASS", - "tier": "EPIC", - "dungeon_item": true, - "id": "MASTER_CATACOMBS_PASS_8" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM4NTgyZTM3ZmJmZWMzMTdmMzkzMzVjYTU4MTYwMTRmMzIyNjJlMjZhYWEyY2I2YjcwYzllOThjM2MyMzk5MSJ9fX0=", + "name": "Entropy Suppressor", + "category": "REFORGE_STONE", + "tier": "RARE", + "id": "ENTROPY_SUPPRESSOR" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmY2ZDI0ODYzMWY2NzIzNDlkYWZiZjc1ZDUxNDM0NmMzNzE1OTg1ZjUzNDkzYTFiZTJkODYwYTI1MzFmMzM1OSJ9fX0=", - "name": "Light Gray Lamp", - "npc_sell_price": 500, - "id": "LAMP_LIGHT_GRAY" + "material": "BLAZE_POWDER", + "name": "Molten Powder", + "tier": "RARE", + "glowing": true, + "id": "MOLTEN_POWDER" }, { - "material": "PAPER", - "name": "Maddox's Phone Number", - "glowing": true, + "material": "SULPHUR", + "name": "Derelict Ashe", "tier": "UNCOMMON", - "id": "AATROX_PHONE_NUMBER" + "glowing": true, + "id": "DERELICT_ASHE" }, { - "material": "LEATHER_BOOTS", - "color": "128,128,128", - "name": "Ghostly Boots", - "category": "BOOTS", + "material": "MONSTER_EGG", + "durability": 52, + "name": "Amalgamated Crimsonite", "tier": "RARE", - "npc_sell_price": 77777, - "description": "%%gray%%%%italic%%Boots made of pure ghost essense", - "museum": true, - "id": "GHOST_BOOTS" + "glowing": true, + "id": "AMALGAMATED_CRIMSONITE_NEW" }, { - "material": "EMPTY_MAP", - "name": "Travel Scroll to the Blaze Farm", - "category": "TRAVEL_SCROLL", - "tier": "EPIC", - "id": "BLAZE_FARM_TRAVEL_SCROLL" + "material": "MONSTER_EGG", + "durability": 52, + "name": "Amalgamated Crimsonite (Old)", + "tier": "RARE", + "glowing": true, + "id": "AMALGAMATED_CRIMSONITE" }, { + "name": "Burststopper Artifact", "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc1MzU3NjU0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzUzNWY4M2JkNGUyOTBkNDAwZDVjOGM3MTgzMDhjNzRiZTk5ZjA5YTQ4OWQwYzI1ZWQzZDEyMTkzMmNmZmE4ZSIKICAgIH0KICB9Cn0=", - "name": "Millenia-Old Blaze Ashes", - "npc_sell_price": 1000, - "tier": "RARE", - "description": "%%gray%%%%italic%%Despite being ephemeral creatures, blaze ashes are eternal.", - "soulbound": "COOP", - "id": "MILLENIA_OLD_BLAZE_ASHES" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTYzOTQ4NzcwMSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODljYmJiZTdlZDAzNTZkNTg0NjU5NmM0YWQxY2ZhOWZhNzE5ZGIxYzQ1NjhmM2Y3ZjBjNzk3OWU3YTQwMTIwOCIKICAgIH0KICB9Cn0=", + "category": "ACCESSORY", + "tier": "EPIC", + "stats": { + "TRUE_DEFENSE": 3, + "STRENGTH": 2 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 7 + } + ], + "id": "BURSTSTOPPER_ARTIFACT" }, { + "name": "Burststopper Talisman", "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWRlM2E0MDdkMmJlMzg3YjQ1YmViZGQ1MmQzZDRkNzVhNmExYjQ3OWUyYjhjMDMyNjdkMDIxZDRhZjMxZTA3MiJ9fX0=", - "name": "Blaze Talisman", - "tier": "RARE", - "unstackable": true, - "soulbound": "SOLO", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTYzOTQzMzM1NCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWI2OGFkMWEzYWMyNDQ0ZDdiZGRjMjJlZWZlY2Q1ZDYxYjRkMzI2ODcxMTc5MTE5YzUyYTc3NDBiNGQ4M2NjNyIKICAgIH0KICB9Cn0=", "category": "ACCESSORY", + "tier": "RARE", "stats": { - "TRUE_DEFENSE": 3 + "TRUE_DEFENSE": 2, + "STRENGTH": 1 }, - "id": "BLAZE_TALISMAN" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 3 + } + ], + "id": "BURSTSTOPPER_TALISMAN" }, { - "material": "BOOK_AND_QUILL", - "name": "Opal Power Scroll", - "glowing": true, + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1MTI3MTAxNzY5MCwKICAicHJvZmlsZUlkIiA6ICJjNzQ1Mzc4MDY5MzY0ODg2ODkwNzRkOTQ3ZjBlOTlmNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJjdWN1bWkwNyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83ZGE1MzBhZDA5ZTY5ZTQ2NzhjNjljZjViOGUwZjA3NTFlNDYzMDM1NWZjN2YwYzIyNmM5NTViYWFjZTMwZmIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Whipped Magma Cream", + "tier": "RARE", + "npc_sell_price": 204800, + "id": "WHIPPED_MAGMA_CREAM" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", + "name": "Wisp Upgrade Stone", "tier": "EPIC", - "id": "OPAL_POWER_SCROLL" + "unstackable": true, + "id": "UPGRADE_STONE_GLACIAL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDM2Nzk3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U1MDlmMDZiOGRjMzg0MzU4ZmYyNDcyYWI2MmNlNmZkYzJmNjQ2ZTMzOGVmZGMzYzlmYjA1ZGRjNDMxZjY0IgogICAgfQogIH0KfQ==", - "name": "Perfect Opal Gemstone", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYzMTE3MTAyOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOThmODA5OTA5YTRkNGNkZTdmMmE3OWQ5OTgyMDVlNDgxNGJjYmI3ZDRiYzYwMmExZDU4MjYyMjRhZTAyMTc4NiIKICAgIH0KICB9Cn0=", + "name": "Subzero Inverter", "tier": "LEGENDARY", - "unstackable": true, - "id": "PERFECT_OPAL_GEM" + "id": "SUBZERO_INVERTER" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDMzNzQyOCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWQ3OThlMjBhNDdkMjUxYTllMzNkNDAzMzI5NzNjNzE4OWFjMTU1MDc2MGJhMjVjNGI5NTZjOTE1OTM2NDU2OCIKICAgIH0KICB9Cn0=", - "name": "Fine Opal Gemstone", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYzMDQ3OTg5NSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDQ1YmE0YjEwZWQ3NmMzZjEzZDQ2YmM5OWYyNGI1NzQzZTkyZGRiZDZmNjcxNmMzODVjMDgzMDVmZGJjOTk5ZSIKICAgIH0KICB9Cn0=", + "name": "Kelvin Inverter", "tier": "RARE", - "npc_sell_price": 19200, - "id": "FINE_OPAL_GEM" + "npc_sell_price": 100000, + "id": "KELVIN_INVERTER" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDM1MzA0NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWQxNWVkNzBlNzIwMDQwYWQ3MzExZTY5MzU5ZGZkZjVlMTE0ZWFkZDJhNGMxZjk3MWE5NTAxMzQxYTQ1MjY0YiIKICAgIH0KICB9Cn0=", - "name": "Flawless Opal Gemstone", - "tier": "EPIC", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", + "name": "Wisp Upgrade Stone", + "tier": "LEGENDARY", "unstackable": true, - "id": "FLAWLESS_OPAL_GEM" + "id": "UPGRADE_STONE_SUBZERO" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDMxNzIzMywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWFkYzNiY2RkN2M3MDFiNjNmOGI4YjRhOTZlNDI5MzE2YTA4Mzg4NjY5ZDlhOThjMWE5ODc5MTcyOWI5NjFkZiIKICAgIH0KICB9Cn0=", - "name": "Flawed Opal Gemstone", - "tier": "UNCOMMON", - "npc_sell_price": 240, - "id": "FLAWED_OPAL_GEM" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", + "name": "Wisp Upgrade Stone", + "tier": "RARE", + "unstackable": true, + "id": "UPGRADE_STONE_FROST" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjY1MDI5MjQ5NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTE0ZDNjNTdmODA4MjRiMzgzOWI4YjIyMGYyMTU4YmNhNTA1ZDQ5N2ZkMWM5ZTNmMjlmNDIyYjFlNjIwNmE0NSIKICAgIH0KICB9Cn0=", - "name": "Rough Opal Gemstone", - "npc_sell_price": 3, - "id": "ROUGH_OPAL_GEM" - }, - { - "material": "MONSTER_EGG", - "durability": 67, - "name": "Omega Enchanted Egg", - "glowing": true, - "tier": "EPIC", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDg1OTU1MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGZmN2M0MTBhNGE4YjRiNTE4Yjk0ZDIxNDAyZDI4OTJmY2M4ZmE2OGMzMDI4NDE3ZGQ0ZWFhOGI3ZTM1YzU2OCIKICAgIH0KICB9Cn0=", + "name": "High Class Archfiend Dice", + "tier": "LEGENDARY", "unstackable": true, - "id": "OMEGA_EGG" + "id": "HIGH_CLASS_ARCHFIEND_DICE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc0NzQ4NDE3MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFlODEzYTNhMzgwZTNlYjIwMWMyNGI5NjYxZjZlZGIzOWJkZjQyYTg4OTg5ZjgxYTkwZjc3MTk5N2Q2ZjVjZCIKICAgIH0KICB9Cn0=", - "name": "Gabagoey Mixin", - "tier": "RARE", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDg1OTU1MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGZmN2M0MTBhNGE4YjRiNTE4Yjk0ZDIxNDAyZDI4OTJmY2M4ZmE2OGMzMDI4NDE3ZGQ0ZWFhOGI3ZTM1YzU2OCIKICAgIH0KICB9Cn0=", + "name": "Archfiend Dice", + "tier": "EPIC", "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 8 - } - }, - "id": "GABAGOEY_MIXIN" + "id": "ARCHFIEND_DICE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjE0NTg4MDQ5NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDJjZmM0MzdjNDI5MWE4MWQ0ZDU2ZWEwM2QyMGIwNThkODk3MzVhNzA5MTEwZWM1ZDEwNzI1ZDRjZWU2ODQyOSIKICAgIH0KICB9Cn0=", - "name": "Destruction Cloak", - "category": "CLOAK", + "material": "BLAZE_ROD", + "glowing": true, + "name": "Tactical Insertion", "tier": "EPIC", - "stats": { - "HEALTH": 60, - "STRENGTH": 15, - "CRITICAL_DAMAGE": 15, - "MAGIC_FIND": 1 - }, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "blaze", "level": 5 } - }, - "id": "DESTRUCTION_CLOAK" + ], + "id": "TACTICAL_INSERTION" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0MjA0MjkyNSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNiZDcyNjI3OTA4ODVlMjMyMWJjNTc3MjllNzRhOWY2OGVhZjI2ZWNjZTM2OWRiYjJmZThmNDNjMjk4MWQyOSIKICAgIH0KICB9Cn0=", - "name": "Demonslayer Gauntlet", - "category": "GLOVES", - "tier": "EPIC", - "stats": { - "DEFENSE": 20, - "HEALTH": 40, - "CRITICAL_DAMAGE": 25, - "TRUE_DEFENSE": 5 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 4 - } - }, - "id": "DEMONLORD_GAUNTLET" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0MDI4NzI0NCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjA5OWQ0ZTI1YTU2OWUyZDAxOGJkOGQ3ZTFhNDBhZDJjY2JjOWJkMWZkMmVkNDg2ODhiY2MzZjYyYTk2MjEzYSIKICAgIH0KICB9Cn0=", + "name": "Scorched Power Crystal", + "tier": "LEGENDARY", + "npc_sell_price": 350000, + "id": "SCORCHED_POWER_CRYSTAL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjE0NTkxMjU0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzQ0OTI4ZDExNDQxNjU1NTg4MmEzNmIyYmE5ZDRiMjk1YzFkMTZjODJiY2E5NDVkM2M4MTNlM2FhYTk0YWIzZSIKICAgIH0KICB9Cn0=", - "name": "Annihilation Cloak", - "category": "CLOAK", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDMyNTY4MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTEzOTgzMDBkMDI1MTJhN2JlYmMwZjlkN2ExMmQ2N2NkZjg4NWM5MTQ0YjM4OTQ2OTQ0ZDllZjQyMDJjMzgzNiIKICAgIH0KICB9Cn0=", + "name": "Blazetekk™ Ham Radio", "tier": "LEGENDARY", - "stats": { - "HEALTH": 80, - "STRENGTH": 20, - "CRITICAL_DAMAGE": 20, - "MAGIC_FIND": 2 - }, - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "blaze", - "level": 7 + "level": 6 } - }, - "id": "ANNIHILATION_CLOAK" + ], + "id": "BLAZETEKK_HAM_RADIO" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWUyMjFiYjczMzE3MjIwNzMxNWFjZWRjYzVjOTk4MzZhNjM5ODYyYTM3MjdkYTZkNWRmMzZiODUxZmMxOTFjNCJ9fX0=", - "name": "Inferno Vertex", + "material": "TRIPWIRE_HOOK", + "name": "Moody Grappleshot", "tier": "EPIC", - "id": "INFERNO_VERTEX" + "unstackable": true, + "id": "MOODY_GRAPPLESHOT" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjVmNzgxMDQxNGEyY2VlMmJjMWRlMTJlY2VmN2E0Yzg5ZmM5YjM4ZTlkMDQxNGE5MDk5MTI0MWE1ODYzNzA1ZiJ9fX0=", - "name": "Reaper Pepper", - "tier": "LEGENDARY", - "id": "REAPER_PEPPER" + "material": "EMPTY_MAP", + "name": "Travel Scroll to the Smoldering Tomb", + "category": "TRAVEL_SCROLL", + "tier": "EPIC", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 4 + } + ], + "id": "SMOLDERING_CHAMBERS_TRAVEL_SCROLL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI0NTE5MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWZkMjMzM2I1ZWU0OWVjNWUzYWY0YzZmNDU1NTBiYzQ0Zjg4YmZiNGFkMGFiMjdiYWEzMzlhMDRiOTQzOTdhMiIKICAgIH0KICB9Cn0=", - "name": "Gabagool Distillate", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDQyNjY3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzIyMDU4YzdjYzg1MjFlZTE1OTllODllM2UyYTEzYWM2ZTBmYWMyY2UwYjM2NjdmOWI3OTU1MTcwZjFjYWUzZSIKICAgIH0KICB9Cn0=", + "name": "Teleporter Pill", "tier": "RARE", - "npc_sell_price": 5000, - "id": "CRUDE_GABAGOOL_DISTILLATE" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 4 + } + ], + "id": "TELEPORTER_PILL" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Njc0NjI4MzI4NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmNkZjYzNjg3N2YwYTFlZGIzNWFlZDRjYzFmZDBlOWM5YTA0Y2ZiOGU4ODA5ZDQ1Y2QzNTE0YWUwNWFkMmFmMCIKICAgIH0KICB9Cn0=", - "name": "Nether Wart Distillate", - "tier": "RARE", - "npc_sell_price": 5000, - "id": "NETHER_STALK_DISTILLATE" + "name": "Warning Flare", + "material": "FIREWORK", + "glowing": true, + "tier": "UNCOMMON", + "category": "DEPLOYABLE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 3 + } + ], + "id": "WARNING_FLARE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDE1ODAwMiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFlODEzYTNhMzgwZTNlYjIwMWMyNGI5NjYxZjZlZGIzOWJkZjQyYTg4OTg5ZjgxYTkwZjc3MTk5N2Q2ZjVjZCIKICAgIH0KICB9Cn0=", - "name": "Blaze Rod Distillate", + "name": "Alert Flare", + "material": "FIREWORK", + "glowing": true, "tier": "RARE", - "npc_sell_price": 5000, - "id": "BLAZE_ROD_DISTILLATE" + "category": "DEPLOYABLE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 6 + } + ], + "id": "ALERT_FLARE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI4NzA0MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmNkZjYzNjg3N2YwYTFlZGIzNWFlZDRjYzFmZDBlOWM5YTA0Y2ZiOGU4ODA5ZDQ1Y2QzNTE0YWUwNWFkMmFmMCIKICAgIH0KICB9Cn0=", - "name": "Magma Cream Distillate", - "tier": "RARE", - "npc_sell_price": 5000, - "id": "MAGMA_CREAM_DISTILLATE" + "name": "SOS Flare", + "material": "FIREWORK", + "glowing": true, + "tier": "EPIC", + "category": "DEPLOYABLE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "blaze", + "level": 7 + } + ], + "id": "SOS_FLARE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDI1ODgwMCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTBkMTc0ZTM3MGU0NzI3NTYzOGZlMmQ2Yjg2ZmNkZmU0NDk2ZWI0NTI2NWFkMTEzOTM2ODk0NzBkZjVlZTJiIgogICAgfQogIH0KfQ==", - "name": "Glowstone Distillate", - "tier": "RARE", - "npc_sell_price": 5000, - "id": "GLOWSTONE_DUST_DISTILLATE" + "name": "Wilson's Engineering Plans", + "material": "PAPER", + "glowing": true, + "tier": "LEGENDARY", + "id": "WILSON_ENGINEERING_PLANS" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIxMDkxMjE0MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjhhMTg4NGVlM2Y4YTZlNjY2OTJhOTFlZDc2M2NiNzhkOWYyMDE3NzA2ZDhiNDJhOTI2M2I0MTdiMmQ3MTVkMiIKICAgIH0KICB9Cn0=", - "name": "Inferno Fuel Block", + "material": "WOOD_SPADE", + "name": "Autowand Sleeve", "tier": "RARE", - "id": "INFERNO_FUEL_BLOCK" + "id": "AUTOWAND_SLEEVE" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE2MzQ5NywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzA0ZTBhYzgxZTYwOGM1NjA1YjUwNWQ0ZTljZDZlNzUzOTczMzJjOTEyYzFmZjhmNzlhZmUxNzBmMzhiN2E3OCIKICAgIH0KICB9Cn0=", - "name": "Heavy Gabagool", + "material": "EMPTY_MAP", + "name": "Travel Scroll to the Void Sepulture", + "category": "TRAVEL_SCROLL", "tier": "EPIC", - "npc_sell_price": 1, - "id": "HEAVY_GABAGOOL" + "id": "VOID_SEPULTURE_TRAVEL_SCROLL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE5NDU2OCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjQ0NDg5YzI0MzJlZmE4OWU1NjQxMTE3OGU2MGRkZGU0M2E2NTQ5NzRhZDQ1ZDEzOTk2ZDQ4NTk0ZGVlYTM5OSIKICAgIH0KICB9Cn0=", - "name": "Hypergolic Gabagool", - "tier": "LEGENDARY", - "npc_sell_price": 1, - "id": "HYPERGOLIC_GABAGOOL" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkxOTQ1MTM2OCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2IwNDMzZjFjMjI3OTYwOGY3YmQyY2VjZWI5OGNkMTc1Y2JhYWRjM2Y2Mjk5YWUzY2NhZTI1N2RjMjJhNTViMiIKICAgIH0KICB9Cn0=", + "name": "Soulflow Engine", + "tier": "EPIC", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 5 + } + ], + "id": "SOULFLOW_ENGINE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzEzMzkyNSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U2NTY0YmJmYTc0OWM5ZTBlZjNhYzJhM2YyMTEwMTM5YTU1OTQ0ODQxZDEwNzM1Y2Y5MDBkMWUyOTAzOTQxOCIKICAgIH0KICB9Cn0=", - "name": "Crude Gabagool", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkxOTU5NTc5MCwKICAicHJvZmlsZUlkIiA6ICIwOGQ4Nzg3ZDFiYzY0MWE2YWNlNzdjMzliNzVmODZiOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJNYWdpa2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2QwNDVjYTNlOGEyOWUxOTkzMTY1NjM2MmUxMjQ3NzYzM2E2ODljNDgwMWQ4ZTIxZjdkYTBmODBjYzU5ZTU2YiIKICAgIH0KICB9Cn0=", + "name": "Lesser Soulflow Engine", + "tier": "RARE", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 2 + } + ], + "id": "LESSER_SOULFLOW_ENGINE" + }, + { + "material": "INK_SACK", + "durability": 5, + "name": "Twilight Arrow Poison", + "category": "ARROW_POISON", "tier": "UNCOMMON", - "npc_sell_price": 1, - "id": "CRUDE_GABAGOOL" + "npc_sell_price": 650, + "id": "TWILIGHT_ARROW_POISON" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjIwNzE0OTYzOCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjAwMGFhZDYzODhjYTQ3Y2I2ZjZjZmM4OGQ3ODU2NzFiZDQ3ODBhODUwMTA2ZWY0N2YyYThhMmMzZjM1YjNiMSIKICAgIH0KICB9Cn0=", - "name": "Fuel Gabagool", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmM4NWUyZmRmOWIxYjAyMGFjMjgyN2QxMWFlMDBkOTBmODFjNWM2YmQzNjFjYmQxYzhiOGU5MDg3NzU3ZTRiMCJ9fX0=", + "name": "Soulflow", "tier": "RARE", "npc_sell_price": 1, - "id": "FUEL_GABAGOOL" + "id": "SOULFLOW" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjMzYWZkNTdlYTE2YmM2NmVlYjQ1NmE4YTdjMTIzNDY3OGQ1OTVhOTYwNDZjYWQzMzZjNGZkYzgxZjBkZmRmNSJ9fX0=", - "name": "Sulphuric Coal", + "material": "SAPLING", + "durability": 2, + "name": "Soul Esoward", + "glowing": true, "tier": "RARE", - "npc_sell_price": 2880, - "id": "SULPHURIC_COAL" + "unstackable": true, + "id": "SOUL_ESOWARD" + }, + { + "material": "BOOK", + "name": "Gloomlock Grimoire", + "glowing": true, + "tier": "EPIC", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 5 + } + ], + "id": "GLOOMLOCK_GRIMOIRE" + }, + { + "material": "BLAZE_ROD", + "name": "Gyrokinetic Wand", + "glowing": true, + "category": "WAND", + "tier": "EPIC", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 6 + } + ], + "id": "GYROKINETIC_WAND" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgzNTc3OSwKICAicHJvZmlsZUlkIiA6ICJmMjc0YzRkNjI1MDQ0ZTQxOGVmYmYwNmM3NWIyMDIxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJIeXBpZ3NlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8yYzAxYmE2NTJhMjNiMTlkYmIxZDU5ZWJhYjBiMzA4ZWI3Mjg2MWQ1YmNkN2Q0MjYzMDMxNmMzZTY1NDJlMDFhIgogICAgfQogIH0KfQ", - "name": "Inferno Minion III", - "generator": "INFERNO", - "generator_tier": 3, - "tier": "RARE", - "id": "INFERNO_GENERATOR_3" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTI1OTIzMWE5NDY5ODdlYTUzMTQxNzg5YTA5NDk2ZjA5OGQ2ZWNhYzQxMmEwMWUwYTI0YzkwNmE5OWZkYmQ5YSJ9fX0=", + "name": "Exceedingly Rare Ender Artifact Upgrader", + "tier": "LEGENDARY", + "id": "EXCEEDINGLY_RARE_ENDER_ARTIFACT_UPGRADER" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkwMTE3OSwKICAicHJvZmlsZUlkIiA6ICIxYTc1ZTNiYmI1NTk0MTc2OTVjMmY4NTY1YzNlMDAzZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZXJvZmFyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZiZGE5NjdmNDFlMGVhNDIyODlhYmZiNjYxYzdjNzFiMjgwNDVkNDg4YTBmMTBlMTNkNzhiNjUzYzI1ZjhmMGQiCiAgICB9CiAgfQp9", - "name": "Inferno Minion VII", - "generator": "INFERNO", - "generator_tier": 7, - "tier": "RARE", - "id": "INFERNO_GENERATOR_7" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFhMmMwODg2MzdmZWU5YWUzYTM2ZGQ0OTZlODc2ZTY1N2Y1MDlkZTU1OTcyZGQxN2MxODc2N2VhZTFmM2U5In19fQ==", + "name": "Sinful Dice", + "tier": "EPIC", + "unstackable": true, + "id": "SINFUL_DICE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg1MDU4MywKICAicHJvZmlsZUlkIiA6ICI4ODBiZWMwYTE0MmM0YzRlYTJlZjliMTFiMTBkNWNiNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJmZ2FiIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgzYWJlYzE0YWNiYzQ5Mzg5NTJmYjU5ODZjYjE0NTgzNDg0Y2NiN2RlNjJkMWI5YzJiNDExOTZhOTg3NmMzY2UiCiAgICB9CiAgfQp9", - "name": "Inferno Minion IV", - "generator": "INFERNO", - "generator_tier": 4, - "tier": "RARE", - "id": "INFERNO_GENERATOR_4" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmYzZGRkN2Y4MTA4OWM4NWIyNmVkNTk3Njc1NTE5ZjAzYTFkY2Q2ZDE3MTNlMGNmYzY2YWZiODc0M2NiZTAifX19", + "name": "Judgement Core", + "tier": "LEGENDARY", + "unstackable": true, + "id": "JUDGEMENT_CORE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkxNzIyNCwKICAicHJvZmlsZUlkIiA6ICI0NGNlMmMwZTFjNTM0ZDhmYmExNmNkNDhlYjkyYTUxZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ4WGlyYW56dThYeCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81MTNmOGVkNDRmYjJmODJhZGU5MmJiNTZhNjA2YmUzYjU5NWNkNzE2YjFiYmYwOTUwZjA4NjZjYzYzOTNkMjViIgogICAgfQogIH0KfQ", - "name": "Inferno Minion VIII", - "generator": "INFERNO", - "generator_tier": 8, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNDk1MDE2MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI2MjYxNzhiODRkYmQzOTRjZjI0MDk0NjcyMTAyODJlNTIxMDMyMTc2ZGIyMWIyODFmZGM4YWU5Y2JlMmIyZiIKICAgIH0KICB9Cn0=", + "name": "Transmission Tuner", + "tier": "EPIC", + "npc_sell_price": 45000, + "unstackable": true, + "rift_transferrable": true, + "id": "TRANSMISSION_TUNER" + }, + { + "material": "MONSTER_EGG", + "durability": 58, + "name": "Null Ovoid", + "glowing": true, "tier": "RARE", - "id": "INFERNO_GENERATOR_8" + "id": "NULL_OVOID" + }, + { + "material": "DIAMOND_SPADE", + "name": "Aspect of the Void", + "category": "SWORD", + "tier": "EPIC", + "stats": { + "DAMAGE": 120, + "STRENGTH": 100 + }, + "npc_sell_price": 56000, + "gemstone_slots": [ + { + "slot_type": "SAPPHIRE" + } + ], + "id": "ASPECT_OF_THE_VOID" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg2NzAwNCwKICAicHJvZmlsZUlkIiA6ICI0OWIzODUyNDdhMWY0NTM3YjBmN2MwZTFmMTVjMTc2NCIsCiAgInByb2ZpbGVOYW1lIiA6ICJiY2QyMDMzYzYzZWM0YmY4IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzJhNmU4MTg0YzMyOTliMjkzYWY3NTc3NDkxOGM0ODcyMmFmYWYzMzA5ZGE1MjkwZTBmMjU4MDQ4ZjJhYWRmNjYiCiAgICB9CiAgfQp9", - "name": "Inferno Minion V", - "generator": "INFERNO", - "generator_tier": 5, - "tier": "RARE", - "id": "INFERNO_GENERATOR_5" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", + "name": "Soulflow Supercell", + "category": "ACCESSORY", + "tier": "EPIC", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 7 + } + ], + "id": "SOULFLOW_SUPERCELL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTg4MzAyMiwKICAicHJvZmlsZUlkIiA6ICI2MzMyMDgwZTY3YTI0Y2MxYjE3ZGJhNzZmM2MwMGYxZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUZWFtSHlkcmEiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWI2NjY1ZjViZTU4MzMyOGQxMDIxZjBhZTZmOTczYzdkOWU3MjhiMWFjNDY1YzQwYzg3YTc3OWFmMDY1ODdiZiIKICAgIH0KICB9Cn0", - "name": "Inferno Minion VI", - "generator": "INFERNO", - "generator_tier": 6, - "tier": "RARE", - "id": "INFERNO_GENERATOR_6" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTY5ZGE0ZTdiOGQ1NThhZjAyZTgwZTJlMTY2OWNlYjYwODQ4OThkYjU1OTA3ZWYzZTY2ZDlhMzI5MzI5ZTk0MSJ9fX0=", + "name": "Ender Relic", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 7 + } + ], + "id": "ENDER_RELIC" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTk3NzY3NywKICAicHJvZmlsZUlkIiA6ICI4ZGU4ZWU3MTMyMTY0NGNhYTllZjJlNTVjODRjNGU4ZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJIdW5kZXNjaG9uVE0iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM3Y2M1ZDhkZWExZWFjNmFhMzA3YjlhZDMyYjc5ZGEwYWY3ZDE2YmFkMGZkOGUzNGNjNTczNTczOWRiOTc1MyIKICAgIH0KICB9Cn0", - "name": "Inferno Minion XI", - "generator": "INFERNO", - "generator_tier": 11, - "tier": "RARE", - "id": "INFERNO_GENERATOR_11" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMxY2Q3ZWQ0ZTRiZjA3YzNkZmQ5YmE0OTg3MDhlNzMwZTY5ZDgwNzMzNWFmZmFiYzEyZDg3ZmY1NDJmNmE4OCJ9fX0=", + "name": "Handy Blood Chalice", + "category": "ACCESSORY", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 5 + } + ], + "id": "HANDY_BLOOD_CHALICE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTk0NTg5MiwKICAicHJvZmlsZUlkIiA6ICI0M2NmNWJkNjUyMDM0YzU5ODVjMDIwYWI3NDE0OGQxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrYW1pbDQ0NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82NWM3MGY5MGExMWMyZDQ3ZmVlZDdkMTMxN2IxYzFiN2ZlOTM3MDZhMTkyYTk4M2FmOWE4MWE1MTcwZGJlNzFiIgogICAgfQogIH0KfQ", - "name": "Inferno Minion X", - "generator": "INFERNO", - "generator_tier": 10, - "tier": "RARE", - "id": "INFERNO_GENERATOR_10" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjY2MDcwY2UwM2E1NDVlZTRkMjYzYmNmMjdmMzYzMzhkMjQ5ZDdjYjdhMjM3NmY5MmMxNjczYWUxMzRlMDRiNiJ9fX0=", + "name": "Pocket Espresso Machine", + "category": "ACCESSORY", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 4 + } + ], + "id": "POCKET_ESPRESSO_MACHINE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTkyOTY3NSwKICAicHJvZmlsZUlkIiA6ICIwZWQ2MDFlMDhjZTM0YjRkYWUxZmI4MDljZmEwNTM5NiIsCiAgInByb2ZpbGVOYW1lIiA6ICJOZWVkTW9yZUFjY291bnRzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2ZDQ2NzA5MmVmYjE1NjcwN2MyNTRmMTY4ZmYwM2IwYjc2M2E3NGZlOWY4YWMxNTYxNmVhNGM5N2FkZmFmNjkiCiAgICB9CiAgfQp9", - "name": "Inferno Minion IX", - "generator": "INFERNO", - "generator_tier": 9, - "tier": "RARE", - "id": "INFERNO_GENERATOR_9" + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", + "name": "Soulflow Pile", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "npc_sell_price": 160, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 2 + } + ], + "id": "SOULFLOW_PILE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgxOTk5MywKICAicHJvZmlsZUlkIiA6ICIzYjA1NTdlYmVmYjc0MDdmYmFmMjVhN2IyNzYwZTZlMCIsCiAgInByb2ZpbGVOYW1lIiA6ICJNcl9JY2VTcGlrZXMiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjIxMDQwMzQ5MDk2MjNkNjA5NGE1MDYwZTA1YWY2ZGE1Y2JmNzUyYTE4NTgwOTExMzY4ZmEzNmQ2OTQ5MmFmMyIKICAgIH0KICB9Cn0", - "name": "Inferno Minion II", - "generator": "INFERNO", - "generator_tier": 2, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", + "name": "Soulflow Battery", + "category": "ACCESSORY", "tier": "RARE", - "id": "INFERNO_GENERATOR_2" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 5 + } + ], + "id": "SOULFLOW_BATTERY" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NTgwMzkyNSwKICAicHJvZmlsZUlkIiA6ICI0NGNlMmMwZTFjNTM0ZDhmYmExNmNkNDhlYjkyYTUxZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJ4WGlyYW56dThYeCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82NjVjNTQzNjZmODhmYjMyODBiMWMzZmM1MDBjZTJiNzk5YzhkZDMyN2FiNmQ0MWM5YmM5NTk0ODhmNWNmZDkyIgogICAgfQogIH0KfQ", - "name": "Inferno Minion I", - "generator": "INFERNO", - "generator_tier": 1, + "material": "WOOD_BUTTON", + "name": "Null Atom", + "glowing": true, "tier": "RARE", - "id": "INFERNO_GENERATOR_1" + "npc_sell_price": 33333, + "id": "NULL_ATOM" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWQ3OGNjMzkxYWZmYjgwYjJiMzVlYjczNjRmZjc2MmQzODQyNGMwN2U3MjRiOTkzOTZkZWU5MjFmYmJjOWNmIn19fQ==", - "name": "Inferno Apex", + "material": "SHEARS", + "name": "Null Blade", + "glowing": true, "tier": "LEGENDARY", - "id": "INFERNO_APEX" + "id": "NULL_BLADE" }, { - "material": "RAW_FISH", - "durability": 1, - "name": "Gabagool the Fish", + "material": "STICK", + "name": "Null Edge", "glowing": true, - "tier": "SPECIAL", - "museum": true, - "id": "GABAGOOL_THE_FISH" + "tier": "EPIC", + "id": "NULL_EDGE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDM0MzYyNCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjRkZmFmZTdhYjhlODY5NWE1NmQzMWNjODY2NjcwNWQ2MWVkOTNiMWM1MTkxMGMyMmY0YTk1MGViNTVmMDRkZCIKICAgIH0KICB9Cn0=", - "name": "Bundle of Magma Arrows", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxMjg3NTY4MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2E3MGUwMjA2ZjYxNjYwNDg0NDFkZmUwOGUwNTNhNjAxN2Q5MTRmMzVjNmIxZmIwZjU1OGM1MDU3NGY5NzBkMCIKICAgIH0KICB9Cn0=", + "name": "Etherwarp Conduit", "tier": "EPIC", - "npc_sell_price": 50000, - "requirements": { - "skill": { - "type": "COMBAT", - "level": 25 + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 7 } - }, - "id": "ARROW_BUNDLE_MAGMA" + ], + "id": "ETHERWARP_CONDUIT" }, { - "material": "ARROW", - "name": "Magma Arrow", - "category": "ARROW", - "tier": "EPIC", - "stats": { - "DAMAGE": 40, - "CRITICAL_CHANCE": 10 - }, - "npc_sell_price": 1, - "requirements": { - "skill": { - "type": "COMBAT", - "level": 25 - } - }, - "id": "MAGMA_ARROW" + "material": "FIREWORK_CHARGE", + "name": "Null Sphere", + "glowing": true, + "tier": "UNCOMMON", + "id": "NULL_SPHERE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDY2MjYyOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjE1NjVjMWMyNjVmNTAzOThjMDY0NmE5YjdkNjQyODk1MjJjMGIwODkwOTFiYTVhMDRmMWQxOGJhYTg2MGQ4NSIKICAgIH0KICB9Cn0=", - "name": "Mana Disintegrator", - "tier": "RARE", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNzYxOTExMywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2U1MzE0ZjQ5MTk2OTFjY2JmODA3NzQzZGFlNDdhZTQ1YWMyZTNmZjA4Zjc5ZWVjZGQ0NTJmZTYwMmVmZjdmNiIKICAgIH0KICB9Cn0=", + "name": "Etherwarp Merger", + "tier": "EPIC", + "npc_sell_price": 100000, "unstackable": true, - "id": "MANA_DISINTEGRATOR" + "id": "ETHERWARP_MERGER" }, { - "material": "STONE_SWORD", - "name": "Kindlebane Dagger", - "category": "SWORD", - "tier": "EPIC", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkyMjk4ODY5MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjIxN2M1NmJiZDc3ZjY0N2I4NDAzODAzZWQ3ZWQ5ODJkZDdhZmNmOGEyY2E0MTMzZDJjMzU3ZWUwODk2ZWZlMiIKICAgIH0KICB9Cn0=", + "name": "Final Destination Helmet", + "category": "HELMET", + "tier": "LEGENDARY", "stats": { - "DAMAGE": 130, - "STRENGTH": 55, - "CRITICAL_DAMAGE": 20, - "ATTACK_SPEED": 10 + "DEFENSE": 100, + "HEALTH": 140, + "INTELLIGENCE": 100 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", "level": 4 } + ], + "id": "FINAL_DESTINATION_HELMET" + }, + { + "material": "LEATHER_CHESTPLATE", + "color": "10,0,17", + "name": "Final Destination Chestplate", + "category": "CHESTPLATE", + "tier": "LEGENDARY", + "stats": { + "DEFENSE": 100, + "HEALTH": 200, + "INTELLIGENCE": 100 }, - "gemstone_slots": [ + "requirements": [ { - "slot_type": "COMBAT", - "costs": [ - { - "coins": 250000 - } - ] - }, + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 4 + } + ], + "id": "FINAL_DESTINATION_CHESTPLATE" + }, + { + "material": "LEATHER_LEGGINGS", + "color": "255,117,255", + "name": "Final Destination Leggings", + "category": "LEGGINGS", + "tier": "LEGENDARY", + "stats": { + "DEFENSE": 100, + "HEALTH": 160, + "INTELLIGENCE": 100 + }, + "requirements": [ { - "slot_type": "OPAL", - "costs": [ - { - "coins": 500000 - } - ] + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 4 } ], - "id": "BURSTFIRE_DAGGER" + "id": "FINAL_DESTINATION_LEGGINGS" }, { - "material": "IRON_SWORD", - "name": "Mawdredge Dagger", - "category": "SWORD", - "tier": "EPIC", + "material": "LEATHER_BOOTS", + "color": "10,0,17", + "name": "Final Destination Boots", + "category": "BOOTS", + "tier": "LEGENDARY", "stats": { - "DAMAGE": 130, - "STRENGTH": 55, - "CRITICAL_DAMAGE": 20, - "ATTACK_SPEED": 10 + "DEFENSE": 100, + "HEALTH": 100, + "INTELLIGENCE": 100 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", "level": 4 } + ], + "id": "FINAL_DESTINATION_BOOTS" + }, + { + "material": "BOW", + "name": "Terminator", + "glowing": true, + "category": "BOW", + "tier": "LEGENDARY", + "stats": { + "DAMAGE": 310, + "STRENGTH": 50, + "ATTACK_SPEED": 40, + "CRITICAL_DAMAGE": 250 }, - "gemstone_slots": [ + "dungeon_item_conversion_cost": { + "essence_type": "DRAGON", + "amount": 300 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 100 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 300 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 500 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 750 + } + ] + ], + "requirements": [ { - "slot_type": "COMBAT", - "costs": [ - { - "coins": 250000 - } - ] - }, + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 7 + } + ], + "catacombs_requirements": [ { - "slot_type": "OPAL", - "costs": [ - { - "coins": 500000 - } - ] + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 27 } ], - "id": "BURSTMAW_DAGGER" + "id": "TERMINATOR" }, { - "material": "IRON_SWORD", - "name": "Twilight Dagger", + "material": "GOLD_HOE", + "name": "§4Sin§5seeker Scythe", "category": "SWORD", - "tier": "RARE", + "tier": "EPIC", "stats": { - "DAMAGE": 90, - "STRENGTH": 45, - "CRITICAL_DAMAGE": 15 + "DAMAGE": 100, + "STRENGTH": 100 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 2 + "dungeon_item_conversion_cost": { + "essence_type": "DRAGON", + "amount": 250 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 70 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 140 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 210 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 350 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 600 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 6 + } + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 23 } + ], + "id": "SINSEEKER_SCYTHE" + }, + { + "material": "BOW", + "name": "Juju Shortbow", + "category": "BOW", + "tier": "EPIC", + "stats": { + "DAMAGE": 310, + "STRENGTH": 40, + "CRITICAL_DAMAGE": 110, + "CRITICAL_CHANCE": 10 }, - "gemstone_slots": [ + "dungeon_item_conversion_cost": { + "essence_type": "DRAGON", + "amount": 150 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 30 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 60 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 120 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "DRAGON", + "amount": 300 + } + ] + ], + "requirements": [ { - "slot_type": "COMBAT", - "costs": [ - { - "coins": 250000 - } - ] + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 3 } ], - "id": "MAWDUST_DAGGER" + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 15 + } + ], + "id": "JUJU_SHORTBOW" }, { - "material": "STONE_SWORD", - "name": "Firedust Dagger", + "material": "DIAMOND_SWORD", + "name": "Voidedge Katana", "category": "SWORD", + "sword_type": "KATANA", "tier": "RARE", "stats": { - "DAMAGE": 90, - "STRENGTH": 45, - "CRITICAL_DAMAGE": 15 + "DAMAGE": 125, + "STRENGTH": 60, + "CRITICAL_DAMAGE": 20, + "INTELLIGENCE": 50 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 2 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 3 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "JASPER", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 + } + ] + }, + { + "slot_type": "SAPPHIRE", "costs": [ { - "coins": 250000 + "type": "COINS", + "coins": 100000 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 40 } ] } ], - "id": "FIREDUST_DAGGER" + "id": "VOIDEDGE_KATANA" }, { - "material": "IRON_SWORD", - "name": "Deathripper Dagger", + "material": "DIAMOND_SWORD", + "name": "Vorpal Katana", "category": "SWORD", - "tier": "LEGENDARY", + "sword_type": "KATANA", + "tier": "EPIC", "stats": { - "DAMAGE": 160, - "STRENGTH": 75, + "DAMAGE": 155, + "STRENGTH": 80, "CRITICAL_DAMAGE": 25, - "CRITICAL_CHANCE": 10, - "ATTACK_SPEED": 20 + "INTELLIGENCE": 200 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 6 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", + "level": 5 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "JASPER", "costs": [ { - "coins": 250000 + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 } ] }, { - "slot_type": "OPAL", + "slot_type": "SAPPHIRE", "costs": [ { - "coins": 500000 + "type": "COINS", + "coins": 100000 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 40 } ] } ], - "id": "HEARTMAW_DAGGER" + "id": "VORPAL_KATANA" }, { - "material": "STONE_SWORD", - "name": "Pyrochaos Dagger", + "material": "IRON_SWORD", + "name": "Voidwalker Katana", + "category": "SWORD", + "sword_type": "KATANA", + "tier": "UNCOMMON", + "stats": { + "DAMAGE": 80, + "STRENGTH": 40, + "CRITICAL_DAMAGE": 10 + }, + "id": "VOIDWALKER_KATANA" + }, + { + "material": "DIAMOND_SWORD", + "name": "Atomsplit Katana", + "glowing": true, "category": "SWORD", + "sword_type": "KATANA", "tier": "LEGENDARY", "stats": { - "DAMAGE": 160, - "STRENGTH": 75, - "CRITICAL_DAMAGE": 25, - "CRITICAL_CHANCE": 10, - "ATTACK_SPEED": 20 + "DAMAGE": 245, + "STRENGTH": 100, + "CRITICAL_DAMAGE": 30, + "INTELLIGENCE": 300 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "enderman", "level": 6 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "JASPER", "costs": [ { - "coins": 250000 + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 } ] }, { - "slot_type": "OPAL", + "slot_type": "SAPPHIRE", "costs": [ { - "coins": 500000 + "type": "COINS", + "coins": 100000 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 40 + } + ] + }, + { + "slot_type": "SAPPHIRE", + "costs": [ + { + "type": "COINS", + "coins": 250000 + }, + { + "type": "ITEM", + "item_id": "FLAWLESS_SAPPHIRE_GEM", + "amount": 2 } ] } ], - "id": "HEARTFIRE_DAGGER" - }, - { - "material": "BLAZE_POWDER", - "name": "Molten Powder", - "tier": "RARE", - "glowing": true, - "id": "MOLTEN_POWDER" - }, - { - "material": "SULPHUR", - "name": "Derelict Ashe", - "tier": "UNCOMMON", - "glowing": true, - "id": "DERELICT_ASHE" - }, - { - "material": "MONSTER_EGG", - "durability": 52, - "name": "Amalgamated Crimsonite", - "tier": "RARE", - "glowing": true, - "id": "AMALGAMATED_CRIMSONITE_NEW" - }, - { - "material": "MONSTER_EGG", - "durability": 52, - "name": "Amalgamated Crimsonite", - "tier": "RARE", - "glowing": true, - "id": "AMALGAMATED_CRIMSONITE" + "id": "ATOMSPLIT_KATANA" }, { - "name": "Burststopper Artifact", - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTYzOTQ4NzcwMSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODljYmJiZTdlZDAzNTZkNTg0NjU5NmM0YWQxY2ZhOWZhNzE5ZGIxYzQ1NjhmM2Y3ZjBjNzk3OWU3YTQwMTIwOCIKICAgIH0KICB9Cn0=", - "category": "ACCESSORY", + "material": "LEATHER_CHESTPLATE", + "color": "0,0,0", + "name": "Tarantula Chestplate", + "category": "CHESTPLATE", "tier": "EPIC", "stats": { - "TRUE_DEFENSE": 3, - "STRENGTH": 2 + "DEFENSE": 100, + "HEALTH": 120, + "INTELLIGENCE": 100 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 7 - } + "dungeon_item_conversion_cost": { + "essence_type": "SPIDER", + "amount": 30 }, - "id": "BURSTSTOPPER_ARTIFACT" + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 35 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 45 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 65 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 4 + } + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 16 + } + ], + "id": "TARANTULA_CHESTPLATE" }, { - "name": "Burststopper Talisman", - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTYzOTQzMzM1NCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWI2OGFkMWEzYWMyNDQ0ZDdiZGRjMjJlZWZlY2Q1ZDYxYjRkMzI2ODcxMTc5MTE5YzUyYTc3NDBiNGQ4M2NjNyIKICAgIH0KICB9Cn0=", - "category": "ACCESSORY", - "tier": "RARE", + "material": "LEATHER_BOOTS", + "color": "0,0,0", + "name": "Tarantula Boots", + "category": "BOOTS", + "tier": "EPIC", "stats": { - "TRUE_DEFENSE": 2, - "STRENGTH": 1 + "WALK_SPEED": 5, + "DEFENSE": 100, + "HEALTH": 70, + "INTELLIGENCE": 50 }, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 3 - } + "dungeon_item_conversion_cost": { + "essence_type": "SPIDER", + "amount": 20 }, - "id": "BURSTSTOPPER_TALISMAN" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY1MTI3MTAxNzY5MCwKICAicHJvZmlsZUlkIiA6ICJjNzQ1Mzc4MDY5MzY0ODg2ODkwNzRkOTQ3ZjBlOTlmNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJjdWN1bWkwNyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83ZGE1MzBhZDA5ZTY5ZTQ2NzhjNjljZjViOGUwZjA3NTFlNDYzMDM1NWZjN2YwYzIyNmM5NTViYWFjZTMwZmIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", - "name": "Whipped Magma Cream", - "tier": "RARE", - "npc_sell_price": 204800, - "id": "WHIPPED_MAGMA_CREAM" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", - "name": "Wisp Upgrade Stone", - "tier": "EPIC", - "unstackable": true, - "id": "UPGRADE_STONE_GLACIAL" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYzMTE3MTAyOSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOThmODA5OTA5YTRkNGNkZTdmMmE3OWQ5OTgyMDVlNDgxNGJjYmI3ZDRiYzYwMmExZDU4MjYyMjRhZTAyMTc4NiIKICAgIH0KICB9Cn0=", - "name": "Subzero Inverter", - "tier": "LEGENDARY", - "id": "SUBZERO_INVERTER" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYzMDQ3OTg5NSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDQ1YmE0YjEwZWQ3NmMzZjEzZDQ2YmM5OWYyNGI1NzQzZTkyZGRiZDZmNjcxNmMzODVjMDgzMDVmZGJjOTk5ZSIKICAgIH0KICB9Cn0=", - "name": "Kelvin Inverter", - "tier": "RARE", - "id": "KELVIN_INVERTER" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", - "name": "Wisp Upgrade Stone", - "tier": "LEGENDARY", - "unstackable": true, - "id": "UPGRADE_STONE_SUBZERO" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NjYyODg3NTg1MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTRlYTBkZmI3OTRmZTliMzcyZjVlYzUyOWZjOGI4YTBmMDc3ZmViZjRiNzRmNzg5NzJmMGM4MmMzYzE4NjI0OCIKICAgIH0KICB9Cn0=", - "name": "Wisp Upgrade Stone", - "tier": "RARE", - "unstackable": true, - "id": "UPGRADE_STONE_FROST" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDg1OTU1MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGZmN2M0MTBhNGE4YjRiNTE4Yjk0ZDIxNDAyZDI4OTJmY2M4ZmE2OGMzMDI4NDE3ZGQ0ZWFhOGI3ZTM1YzU2OCIKICAgIH0KICB9Cn0=", - "name": "High Class Archfiend Dice", - "tier": "LEGENDARY", - "unstackable": true, - "id": "HIGH_CLASS_ARCHFIEND_DICE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDg1OTU1MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGZmN2M0MTBhNGE4YjRiNTE4Yjk0ZDIxNDAyZDI4OTJmY2M4ZmE2OGMzMDI4NDE3ZGQ0ZWFhOGI3ZTM1YzU2OCIKICAgIH0KICB9Cn0=", - "name": "Archfiend Dice", - "tier": "EPIC", - "unstackable": true, - "id": "ARCHFIEND_DICE" - }, - { - "material": "BLAZE_ROD", - "glowing": true, - "name": "Tactical Insertion", - "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 5 + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 20 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 30 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 4 } - }, - "id": "TACTICAL_INSERTION" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0MDI4NzI0NCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjA5OWQ0ZTI1YTU2OWUyZDAxOGJkOGQ3ZTFhNDBhZDJjY2JjOWJkMWZkMmVkNDg2ODhiY2MzZjYyYTk2MjEzYSIKICAgIH0KICB9Cn0=", - "name": "Scorched Power Crystal", - "tier": "LEGENDARY", - "npc_sell_price": 350000, - "id": "SCORCHED_POWER_CRYSTAL" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTcwMDMyNTY4MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTEzOTgzMDBkMDI1MTJhN2JlYmMwZjlkN2ExMmQ2N2NkZjg4NWM5MTQ0YjM4OTQ2OTQ0ZDllZjQyMDJjMzgzNiIKICAgIH0KICB9Cn0=", - "name": "Blazetekk™ Ham Radio", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 6 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 16 } - }, - "id": "BLAZETEKK_HAM_RADIO" - }, - { - "material": "TRIPWIRE_HOOK", - "name": "Moody Grappleshot", - "tier": "EPIC", - "unstackable": true, - "id": "MOODY_GRAPPLESHOT" + ], + "id": "TARANTULA_BOOTS" }, { - "material": "EMPTY_MAP", - "name": "Travel Scroll to the Smoldering Tomb", - "category": "TRAVEL_SCROLL", + "material": "LEATHER_HELMET", + "color": "0,0,0", + "name": "Tarantula Helmet", + "category": "HELMET", "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 4 - } + "stats": { + "DEFENSE": 80, + "HEALTH": 100, + "INTELLIGENCE": 100 }, - "id": "SMOLDERING_CHAMBERS_TRAVEL_SCROLL" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NTY0NDQyNjY3NiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzIyMDU4YzdjYzg1MjFlZTE1OTllODllM2UyYTEzYWM2ZTBmYWMyY2UwYjM2NjdmOWI3OTU1MTcwZjFjYWUzZSIKICAgIH0KICB9Cn0=", - "name": "Teleporter Pill", - "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", + "dungeon_item_conversion_cost": { + "essence_type": "SPIDER", + "amount": 30 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 35 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 45 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 65 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", "level": 4 } - }, - "id": "TELEPORTER_PILL" - }, - { - "name": "Warning Flare", - "material": "FIREWORK", - "glowing": true, - "tier": "UNCOMMON", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 3 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 16 } - }, - "id": "WARNING_FLARE" + ], + "id": "TARANTULA_HELMET" }, { - "name": "Alert Flare", - "material": "FIREWORK", - "glowing": true, - "tier": "RARE", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 6 + "material": "LEATHER_LEGGINGS", + "color": "0,0,0", + "name": "Tarantula Leggings", + "category": "LEGGINGS", + "tier": "EPIC", + "stats": { + "DEFENSE": 20, + "HEALTH": 60 + }, + "dungeon_item_conversion_cost": { + "essence_type": "SPIDER", + "amount": 20 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 10 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 20 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 30 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 4 } - }, - "id": "ALERT_FLARE" + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 16 + } + ], + "id": "TARANTULA_LEGGINGS" }, { - "name": "SOS Flare", - "material": "FIREWORK", + "material": "STRING", + "name": "Tarantula Web", "glowing": true, - "tier": "EPIC", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "blaze", - "level": 7 - } - }, - "id": "SOS_FLARE" + "tier": "UNCOMMON", + "npc_sell_price": 1, + "id": "TARANTULA_WEB" }, { - "name": "Wilson's Engineering Plans", - "material": "PAPER", - "glowing": true, + "material": "ROTTEN_FLESH", + "name": "Digested Mosquito", "tier": "LEGENDARY", - "id": "WILSON_ENGINEERING_PLANS" + "id": "DIGESTED_MOSQUITO" }, { - "material": "WOOD_SPADE", - "name": "Autowand Sleeve", + "material": "WEB", + "name": "Tarantula Silk", + "glowing": true, "tier": "RARE", - "id": "AUTOWAND_SLEEVE" - }, - { - "material": "EMPTY_MAP", - "name": "Travel Scroll to the Void Sepulture", - "category": "TRAVEL_SCROLL", - "tier": "EPIC", - "id": "VOID_SEPULTURE_TRAVEL_SCROLL" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkxOTQ1MTM2OCwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2IwNDMzZjFjMjI3OTYwOGY3YmQyY2VjZWI5OGNkMTc1Y2JhYWRjM2Y2Mjk5YWUzY2NhZTI1N2RjMjJhNTViMiIKICAgIH0KICB9Cn0=", - "name": "Soulflow Engine", - "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 5 - } - }, - "id": "SOULFLOW_ENGINE" + "npc_sell_price": 128, + "id": "TARANTULA_SILK" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkxOTU5NTc5MCwKICAicHJvZmlsZUlkIiA6ICIwOGQ4Nzg3ZDFiYzY0MWE2YWNlNzdjMzliNzVmODZiOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJNYWdpa2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2QwNDVjYTNlOGEyOWUxOTkzMTY1NjM2MmUxMjQ3NzYzM2E2ODljNDgwMWQ4ZTIxZjdkYTBmODBjYzU5ZTU2YiIKICAgIH0KICB9Cn0=", - "name": "Lesser Soulflow Engine", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTgzYjMwZTlkMTM1YjA1MTkwZWVhMmMzYWM2MWUyYWI1NWEyZDgxZTFhNThkYmIyNjk4M2ExNDA4MjY2NCJ9fX0=", + "name": "Spider Catalyst", "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 2 - } - }, - "id": "LESSER_SOULFLOW_ENGINE" + "npc_sell_price": 2000, + "id": "SPIDER_CATALYST" }, { "material": "INK_SACK", - "durability": 5, - "name": "Twilight Arrow Poison", + "durability": 10, + "name": "Toxic Arrow Poison", "category": "ARROW_POISON", "tier": "UNCOMMON", - "npc_sell_price": 650, - "id": "TWILIGHT_ARROW_POISON" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmM4NWUyZmRmOWIxYjAyMGFjMjgyN2QxMWFlMDBkOTBmODFjNWM2YmQzNjFjYmQxYzhiOGU5MDg3NzU3ZTRiMCJ9fX0=", - "name": "Soulflow", - "tier": "RARE", - "npc_sell_price": 1, - "id": "SOULFLOW" - }, - { - "material": "SAPLING", - "durability": 2, - "name": "Soul Esoward", - "glowing": true, - "tier": "RARE", - "unstackable": true, - "id": "SOUL_ESOWARD" + "npc_sell_price": 2000, + "id": "TOXIC_ARROW_POISON" }, { - "material": "BOOK", - "name": "Gloomlock Grimoire", + "material": "GOLD_SPADE", + "name": "Fly Swatter", "glowing": true, "tier": "EPIC", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 5 - } - }, - "id": "GLOOMLOCK_GRIMOIRE" + "npc_sell_price": 500000, + "id": "FLY_SWATTER" }, { - "material": "BLAZE_ROD", - "name": "Gyrokinetic Wand", + "material": "WEB", + "name": "Flycatcher", "glowing": true, - "category": "WAND", "tier": "EPIC", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", "level": 6 } - }, - "id": "GYROKINETIC_WAND" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTI1OTIzMWE5NDY5ODdlYTUzMTQxNzg5YTA5NDk2ZjA5OGQ2ZWNhYzQxMmEwMWUwYTI0YzkwNmE5OWZkYmQ5YSJ9fX0=", - "name": "Exceedingly Rare Ender Artifact Upgrader", - "tier": "LEGENDARY", - "id": "EXCEEDINGLY_RARE_ENDER_ARTIFACT_UPGRADER" + ], + "id": "FLYCATCHER_UPGRADE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDFhMmMwODg2MzdmZWU5YWUzYTM2ZGQ0OTZlODc2ZTY1N2Y1MDlkZTU1OTcyZGQxN2MxODc2N2VhZTFmM2U5In19fQ==", - "name": "Sinful Dice", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDQyY2Y4Y2U0ODdiNzhmYTIwM2Q1NmNmMDE0OTE0MzRiNGMzM2U1ZDIzNjgwMmM2ZDY5MTQ2YTUxNDM1YjAzZCJ9fX0=", + "name": "Tarantula Talisman", + "category": "ACCESSORY", "tier": "EPIC", - "unstackable": true, - "id": "SINFUL_DICE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmYzZGRkN2Y4MTA4OWM4NWIyNmVkNTk3Njc1NTE5ZjAzYTFkY2Q2ZDE3MTNlMGNmYzY2YWZiODc0M2NiZTAifX19", - "name": "Judgement Core", - "tier": "LEGENDARY", - "unstackable": true, - "id": "JUDGEMENT_CORE" + "id": "TARANTULA_TALISMAN" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNDk1MDE2MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI2MjYxNzhiODRkYmQzOTRjZjI0MDk0NjcyMTAyODJlNTIxMDMyMTc2ZGIyMWIyODFmZGM4YWU5Y2JlMmIyZiIKICAgIH0KICB9Cn0=", - "name": "Transmission Tuner", - "tier": "EPIC", - "npc_sell_price": 45000, - "unstackable": true, - "id": "TRANSMISSION_TUNER" - }, - { - "material": "MONSTER_EGG", - "durability": 58, - "name": "Null Ovoid", - "glowing": true, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGE4MTI4NTJjZjA3NDU5Y2Y4MmExNDAwMmZiNTY5NzgyZTZkNzU0MGY4ODg0YzAyYmY3ZDY3NzQzYTY0OWI3MCJ9fX0=", + "name": "Survivor Cube", + "category": "ACCESSORY", "tier": "RARE", - "id": "NULL_OVOID" - }, - { - "material": "DIAMOND_SPADE", - "name": "Aspect of the Void", - "category": "SWORD", - "tier": "EPIC", + "soulbound": "COOP", "stats": { - "DAMAGE": 120, - "STRENGTH": 100 + "vitality": 5 }, - "npc_sell_price": 56000, - "gemstone_slots": [ + "requirements": [ { - "slot_type": "SAPPHIRE" + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 7 } ], - "id": "ASPECT_OF_THE_VOID" + "id": "SURVIVOR_CUBE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", - "name": "Soulflow Supercell", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMwMDk4NmVkMGEwNGVhNzk5MDRmNmFlNTNmNDllZDNhMGZmNWIxZGY2MmJiYTYyMmVjYmQzNzc3ZjE1NmRmOCJ9fX0=", + "name": "Spider Artifact", "category": "ACCESSORY", "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 7 - } - }, - "id": "SOULFLOW_SUPERCELL" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTY5ZGE0ZTdiOGQ1NThhZjAyZTgwZTJlMTY2OWNlYjYwODQ4OThkYjU1OTA3ZWYzZTY2ZDlhMzI5MzI5ZTk0MSJ9fX0=", - "name": "Ender Relic", - "category": "ACCESSORY", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", "level": 7 } - }, - "id": "ENDER_RELIC" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMxY2Q3ZWQ0ZTRiZjA3YzNkZmQ5YmE0OTg3MDhlNzMwZTY5ZDgwNzMzNWFmZmFiYzEyZDg3ZmY1NDJmNmE4OCJ9fX0=", - "name": "Handy Blood Chalice", - "category": "ACCESSORY", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 5 - } - }, - "id": "HANDY_BLOOD_CHALICE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjY2MDcwY2UwM2E1NDVlZTRkMjYzYmNmMjdmMzYzMzhkMjQ5ZDdjYjdhMjM3NmY5MmMxNjczYWUxMzRlMDRiNiJ9fX0=", - "name": "Pocket Espresso Machine", - "category": "ACCESSORY", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 4 - } - }, - "id": "POCKET_ESPRESSO_MACHINE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", - "name": "Soulflow Pile", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "npc_sell_price": 160, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 2 - } - }, - "id": "SOULFLOW_PILE" + ], + "id": "SPIDER_ARTIFACT" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkwNjA2NjAzNywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDY4YzFmYTRhMjFiYTRmMjdkY2IzMGFiM2JmYWIwZGMyMmExZTRmY2Y5ZWQxMmMxZDdhNzBmZWIwN2Y4ZDdhZSIKICAgIH0KICB9Cn0=", - "name": "Soulflow Battery", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzY1MmJkNzYxN2U1NmM3NTY1MTRmODNjMjhkZDFkOTZhN2U1ZTE2N2JmN2ZiNTkzNjkzZmM2NTA0NmY3OTkifX19", + "name": "Spider Ring", "category": "ACCESSORY", "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 5 - } - }, - "id": "SOULFLOW_BATTERY" - }, - { - "material": "WOOD_BUTTON", - "name": "Null Atom", - "glowing": true, - "tier": "RARE", - "npc_sell_price": 33333, - "id": "NULL_ATOM" - }, - { - "material": "SHEARS", - "name": "Null Blade", - "glowing": true, - "tier": "LEGENDARY", - "id": "NULL_BLADE" - }, - { - "material": "STICK", - "name": "Null Edge", - "glowing": true, - "tier": "EPIC", - "id": "NULL_EDGE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxMjg3NTY4MSwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2E3MGUwMjA2ZjYxNjYwNDg0NDFkZmUwOGUwNTNhNjAxN2Q5MTRmMzVjNmIxZmIwZjU1OGM1MDU3NGY5NzBkMCIKICAgIH0KICB9Cn0=", - "name": "Etherwarp Conduit", - "tier": "EPIC", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 1 } - }, - "id": "ETHERWARP_CONDUIT" - }, - { - "material": "FIREWORK_CHARGE", - "name": "Null Sphere", - "glowing": true, - "tier": "UNCOMMON", - "id": "NULL_SPHERE" + ], + "id": "SPIDER_RING" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNzYxOTExMywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2U1MzE0ZjQ5MTk2OTFjY2JmODA3NzQzZGFlNDdhZTQ1YWMyZTNmZjA4Zjc5ZWVjZGQ0NTJmZTYwMmVmZjdmNiIKICAgIH0KICB9Cn0=", - "name": "Etherwarp Merger", + "material": "WOOD_SWORD", + "name": "Scorpion Foil", + "category": "SWORD", "tier": "EPIC", - "npc_sell_price": 100000, - "unstackable": true, - "id": "ETHERWARP_MERGER" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTYyMTkyMjk4ODY5MywKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjIxN2M1NmJiZDc3ZjY0N2I4NDAzODAzZWQ3ZWQ5ODJkZDdhZmNmOGEyY2E0MTMzZDJjMzU3ZWUwODk2ZWZlMiIKICAgIH0KICB9Cn0=", - "name": "Final Destination Helmet", - "category": "HELMET", - "tier": "LEGENDARY", "stats": { - "DEFENSE": 100, - "HEALTH": 140, - "INTELLIGENCE": 100 + "DAMAGE": 100, + "STRENGTH": 100 }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 4 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 6 } - }, - "id": "FINAL_DESTINATION_HELMET" + ], + "id": "SCORPION_FOIL" }, { - "material": "LEATHER_CHESTPLATE", - "color": "10,0,17", - "name": "Final Destination Chestplate", - "category": "CHESTPLATE", + "material": "BOW", + "name": "Mosquito Bow", + "category": "BOW", "tier": "LEGENDARY", "stats": { - "DEFENSE": 100, - "HEALTH": 200, - "INTELLIGENCE": 100 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 4 - } + "DAMAGE": 251, + "STRENGTH": 151, + "CRITICAL_DAMAGE": 39, + "vitality": 20 }, - "id": "FINAL_DESTINATION_CHESTPLATE" - }, - { - "material": "LEATHER_LEGGINGS", - "color": "255,117,255", - "name": "Final Destination Leggings", - "category": "LEGGINGS", - "tier": "LEGENDARY", - "stats": { - "DEFENSE": 100, - "HEALTH": 160, - "INTELLIGENCE": 100 + "dungeon_item_conversion_cost": { + "essence_type": "SPIDER", + "amount": 30 }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 4 + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 35 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 45 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 65 + } + ] + ], + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 7 } - }, - "id": "FINAL_DESTINATION_LEGGINGS" - }, - { - "material": "LEATHER_BOOTS", - "color": "10,0,17", - "name": "Final Destination Boots", - "category": "BOOTS", - "tier": "LEGENDARY", - "stats": { - "DEFENSE": 100, - "HEALTH": 100, - "INTELLIGENCE": 100 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 4 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 13 } - }, - "id": "FINAL_DESTINATION_BOOTS" + ], + "id": "MOSQUITO_BOW" }, { "material": "BOW", - "name": "Terminator", - "glowing": true, + "name": "Scorpion Bow", "category": "BOW", - "tier": "LEGENDARY", + "tier": "EPIC", "stats": { - "DAMAGE": 310, - "STRENGTH": 50, - "ATTACK_SPEED": 40, - "CRITICAL_DAMAGE": 250 + "DAMAGE": 110, + "STRENGTH": 10 }, "dungeon_item_conversion_cost": { - "essence_type": "DRAGON", - "amount": 300 + "essence_type": "SPIDER", + "amount": 20 }, "upgrade_costs": [ [ { - "essence_type": "DRAGON", - "amount": 100 + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 10 } ], [ { - "essence_type": "DRAGON", - "amount": 200 + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 15 } ], [ { - "essence_type": "DRAGON", - "amount": 300 + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 20 } ], [ { - "essence_type": "DRAGON", - "amount": 500 + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 25 } ], [ { - "essence_type": "DRAGON", - "amount": 750 + "type": "ESSENCE", + "essence_type": "SPIDER", + "amount": 30 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 3 + } + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 10 } + ], + "id": "SCORPION_BOW" + }, + { + "material": "IRON_SWORD", + "name": "Recluse Fang", + "category": "SWORD", + "tier": "RARE", + "stats": { + "DAMAGE": 120, + "STRENGTH": 30, + "CRITICAL_DAMAGE": 20 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 27 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "spider", + "level": 2 } + ], + "id": "RECLUSE_FANG" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTVlYjBiZDg1YWFkZGYwZDI5ZWQwODJlYWMwM2ZjYWRlNDNkMGVlODAzYjBlODE2MmFkZDI4YTYzNzlmYjU0ZSJ9fX0=", + "name": "Warden Helmet", + "category": "HELMET", + "tier": "LEGENDARY", + "stats": { + "DEFENSE": 100, + "HEALTH": 300 }, - "id": "TERMINATOR" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 8 + } + ], + "id": "WARDEN_HELMET" }, { - "material": "GOLD_HOE", - "name": "§4Sin§5seeker Scythe", - "category": "SWORD", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNjYyODI2NDIsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRhNjFiNGY4YjA3MGU0YmMzMGE4NmIyMjkwZGI2ZTU3ZTI2ODFjNDRlMDI1MGQxOTA2YTg5YWRiOGZjNDU1YjEifX19", + "name": "Revived Heart", + "category": "HELMET", "tier": "EPIC", "stats": { - "DAMAGE": 100, - "STRENGTH": 100 + "DEFENSE": 35, + "HEALTH": 100, + "INTELLIGENCE": 100 }, "dungeon_item_conversion_cost": { - "essence_type": "DRAGON", - "amount": 250 + "essence_type": "UNDEAD", + "amount": 100 }, "upgrade_costs": [ [ { - "essence_type": "DRAGON", - "amount": 70 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 30 } ], [ { - "essence_type": "DRAGON", - "amount": 140 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 45 } ], [ { - "essence_type": "DRAGON", - "amount": 210 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 60 } ], [ { - "essence_type": "DRAGON", - "amount": 350 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 75 } ], [ { - "essence_type": "DRAGON", - "amount": 600 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 90 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", "level": 6 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 23 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 15 } - }, - "id": "SINSEEKER_SCYTHE" + ], + "gemstone_slots": [ + { + "slot_type": "RUBY" + } + ], + "id": "REVIVED_HEART" }, { - "material": "BOW", - "name": "Juju Shortbow", - "category": "BOW", - "tier": "EPIC", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNTg1OTU4OTEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg3ZGZiN2MxZWU0ZGUzMWY1NDkzMWVhYzVjNjU3YzE0NWU0ZmE3ZmEwOWUzZjUyYjE3ODhhNjgyYjY1YWM3NSJ9fX0=", + "name": "Crystallized Heart", + "category": "HELMET", + "tier": "RARE", "stats": { - "DAMAGE": 310, - "STRENGTH": 40, - "CRITICAL_DAMAGE": 110, - "CRITICAL_CHANCE": 10 + "DEFENSE": 10, + "HEALTH": 50, + "INTELLIGENCE": 50 }, "dungeon_item_conversion_cost": { - "essence_type": "DRAGON", - "amount": 150 + "essence_type": "UNDEAD", + "amount": 100 }, "upgrade_costs": [ [ { - "essence_type": "DRAGON", + "type": "ESSENCE", + "essence_type": "UNDEAD", "amount": 30 } ], [ { - "essence_type": "DRAGON", - "amount": 60 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 45 } ], [ { - "essence_type": "DRAGON", - "amount": 120 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 60 } ], [ { - "essence_type": "DRAGON", - "amount": 200 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 75 } ], [ { - "essence_type": "DRAGON", - "amount": 300 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 90 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", "level": 3 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 15 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 8 } - }, - "id": "JUJU_SHORTBOW" + ], + "id": "CRYSTALLIZED_HEART" }, { - "material": "DIAMOND_SWORD", - "name": "Voidedge Katana", - "category": "SWORD", - "tier": "RARE", - "stats": { - "DAMAGE": 125, - "STRENGTH": 60, - "CRITICAL_DAMAGE": 20, - "INTELLIGENCE": 50 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 3 + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2E3Y2RhOTAwNGZjMTk3ZDY2YWZiYzJiMDAzYTViOWVmMTNjZjQ2MDBiMWZjNzQ5MDA2NzU5MGYwNDcxODFlIn19fQ==", + "name": "Reaper Orb", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 8 } - }, - "gemstone_slots": [ + ], + "id": "REAPER_ORB" + }, + { + "material": "ROTTEN_FLESH", + "name": "Revenant Flesh", + "glowing": true, + "tier": "UNCOMMON", + "npc_sell_price": 1, + "id": "REVENANT_FLESH" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzBjNWNjNzI4Yzg2OWVjZjNjNmUwOTc5ZThhYTA5YzEwMTQ3ZWQ3NzA0MTdlNGJhNTQxYWFjMzgyZjAifX19", + "name": "Shard of the Shredded", + "tier": "LEGENDARY", + "requirements": [ { - "slot_type": "JASPER", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - }, + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 8 + } + ], + "id": "SHARD_OF_THE_SHREDDED" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDQ1ZjRkMTM5YzllODkyNjJlYzA2YjI3YWFhZDczZmE0ODhhYjQ5MjkwZDJjY2Q2ODVhMjU1NDcyNTM3M2M5YiJ9fX0=", + "name": "Warden Heart", + "tier": "LEGENDARY", + "requirements": [ { - "slot_type": "SAPPHIRE", - "costs": [ - { - "coins": 100000 - }, - { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 40 - } - ] + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 8 } ], - "id": "VOIDEDGE_KATANA" + "id": "WARDEN_HEART" }, { - "material": "DIAMOND_SWORD", - "name": "Vorpal Katana", - "category": "SWORD", + "material": "DIAMOND", + "name": "Scythe Blade", + "glowing": true, + "tier": "LEGENDARY", + "unstackable": true, + "id": "SCYTHE_BLADE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1Njg0NTc0MjAxMzcsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiYWQ5OWVkM2M4MjBiNzk3ODE5MGFkMDhhOTM0YTY4ZGZhOTBkOTk4NjgyNWRhMWM5N2Y2ZjIxZjQ5YWQ2MjYifX19", + "name": "Beheaded Horror", + "tier": "EPIC", + "npc_sell_price": 15000, + "unstackable": true, + "id": "BEHEADED_HORROR" + }, + { + "material": "DIAMOND_CHESTPLATE", + "name": "Revenant Chestplate", + "category": "CHESTPLATE", "tier": "EPIC", "stats": { - "DAMAGE": 155, - "STRENGTH": 80, - "CRITICAL_DAMAGE": 25, - "INTELLIGENCE": 200 + "DEFENSE": 70, + "HEALTH": 180 }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 5 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 4 } + ], + "id": "REVENANT_CHESTPLATE" + }, + { + "material": "DIAMOND_BOOTS", + "name": "Revenant Boots", + "category": "BOOTS", + "tier": "EPIC", + "stats": { + "DEFENSE": 30, + "HEALTH": 100 }, - "gemstone_slots": [ - { - "slot_type": "JASPER", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - }, + "requirements": [ { - "slot_type": "SAPPHIRE", - "costs": [ - { - "coins": 100000 - }, - { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 40 - } - ] + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 4 } ], - "id": "VORPAL_KATANA" + "id": "REVENANT_BOOTS" }, { - "material": "IRON_SWORD", - "name": "Voidwalker Katana", - "category": "SWORD", - "tier": "UNCOMMON", + "material": "DIAMOND_LEGGINGS", + "name": "Revenant Leggings", + "category": "LEGGINGS", + "tier": "EPIC", "stats": { - "DAMAGE": 80, - "STRENGTH": 40, - "CRITICAL_DAMAGE": 10 + "DEFENSE": 50, + "HEALTH": 120 }, - "id": "VOIDWALKER_KATANA" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 4 + } + ], + "id": "REVENANT_LEGGINGS" }, { - "material": "DIAMOND_SWORD", - "name": "Atomsplit Katana", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmIwNTVjODEwYmRkZmQxNjI2NGVjOGQ0MzljNDMyODNlMzViY2E3MWE1MDk4M2UxNWUzNjRjZDhhYjdjNjY4ZiJ9fX0", + "name": "Reaper Gem", "glowing": true, - "category": "SWORD", + "category": "PET_ITEM", "tier": "LEGENDARY", + "soulbound": "COOP", + "id": "REAPER_GEM" + }, + { + "material": "EMPTY_MAP", + "name": "Travel Scroll to Hub Crypts", + "category": "TRAVEL_SCROLL", + "tier": "EPIC", + "id": "HUB_CRYPTS_TRAVEL_SCROLL" + }, + { + "material": "GRILLED_PORK", + "name": "Revenant Viscera", + "glowing": true, + "tier": "RARE", + "npc_sell_price": 128, + "id": "REVENANT_VISCERA" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk3MDgwMzMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU1ZDk5NmNiNWE4ZTVhNzFhMjc0Mjc1ZjQ2OTQ0Yjk0NGVlZWFjZDJlMWNhZGVmOTE4YjA1Yjg3OWEwMzMzNmYifX19", + "name": "Zombie Ring", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 2 + } + ], + "id": "ZOMBIE_RING" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzNmYjRlNWRiOTdmNDc5YzY2YTQyYmJkOGE3ZDc4MWRhZjIwMWE4ZGRhZjc3YWZjZjRhZWY4Nzc3OWFhOGI0In19fQ==", + "name": "Zombie Artifact", + "category": "ACCESSORY", + "tier": "RARE", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 + } + ], + "id": "ZOMBIE_ARTIFACT" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNDkwODM1MTksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhN2QxYTUyZThjOGRkYWFmMGM0MjhlMWZlNDkwMWVmMzNlZmYyNTFmMjg5ZGUyNzE2Mzk1Y2FkMjBiZjMwOWIifX19", + "name": "Devour Ring", + "category": "ACCESSORY", + "tier": "RARE", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 5 + } + ], + "id": "DEVOUR_RING" + }, + { + "material": "RAW_FISH", + "durability": 3, + "name": "Voodoo Doll", + "glowing": true, + "tier": "RARE", "stats": { - "DAMAGE": 245, - "STRENGTH": 100, - "CRITICAL_DAMAGE": 30, - "INTELLIGENCE": 300 + "WEAPON_ABILITY_DAMAGE": 1500 }, - "requirements": { - "slayer": { - "slayer_boss_type": "enderman", - "level": 6 + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 5 } + ], + "id": "VOODOO_DOLL" + }, + { + "material": "LEATHER_BOOTS", + "color": "27,27,27", + "name": "Reaper Boots", + "category": "BOOTS", + "tier": "LEGENDARY", + "stats": { + "DEFENSE": 30, + "HEALTH": 100, + "STRENGTH": 25, + "INTELLIGENCE": 250 }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 + } + ], "gemstone_slots": [ { - "slot_type": "JASPER", + "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - }, - { - "slot_type": "SAPPHIRE", - "costs": [ - { - "coins": 100000 + "amount": 5 }, { + "type": "ITEM", "item_id": "FINE_SAPPHIRE_GEM", - "amount": 40 - } - ] - }, - { - "slot_type": "SAPPHIRE", - "costs": [ + "amount": 5 + }, { - "coins": 250000 + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 5 }, { - "item_id": "FLAWLESS_SAPPHIRE_GEM", - "amount": 2 + "type": "ITEM", + "item_id": "FINE_AMETHYST_GEM", + "amount": 5 } ] } ], - "id": "ATOMSPLIT_KATANA" + "id": "REAPER_BOOTS" }, { "material": "LEATHER_CHESTPLATE", - "color": "0,0,0", - "name": "Tarantula Chestplate", + "color": "27,27,27", + "name": "Reaper Chestplate", "category": "CHESTPLATE", - "tier": "EPIC", + "tier": "LEGENDARY", "stats": { - "DEFENSE": 100, - "HEALTH": 120, - "INTELLIGENCE": 100 - }, - "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 30 - }, - "upgrade_costs": [ - [ - { - "essence_type": "SPIDER", - "amount": 15 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 25 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 35 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 45 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 65 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 4 - } + "DEFENSE": 70, + "HEALTH": 180, + "STRENGTH": 25, + "INTELLIGENCE": 250 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 16 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 } - }, - "id": "TARANTULA_CHESTPLATE" - }, - { - "material": "LEATHER_BOOTS", - "color": "0,0,0", - "name": "Tarantula Boots", - "category": "BOOTS", - "tier": "EPIC", - "stats": { - "WALK_SPEED": 5, - "DEFENSE": 100, - "HEALTH": 70, - "INTELLIGENCE": 50 - }, - "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 20 - }, - "upgrade_costs": [ - [ - { - "essence_type": "SPIDER", - "amount": 10 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 15 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 20 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 25 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 30 - } - ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 4 - } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 16 + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_AMETHYST_GEM", + "amount": 5 + } + ] } - }, - "id": "TARANTULA_BOOTS" + ], + "id": "REAPER_CHESTPLATE" }, { - "material": "LEATHER_HELMET", - "color": "0,0,0", - "name": "Tarantula Helmet", - "category": "HELMET", - "tier": "EPIC", + "material": "LEATHER_LEGGINGS", + "color": "27,27,27", + "name": "Reaper Leggings", + "category": "LEGGINGS", + "tier": "LEGENDARY", "stats": { - "DEFENSE": 80, - "HEALTH": 100, - "INTELLIGENCE": 100 - }, - "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 30 + "DEFENSE": 50, + "HEALTH": 120, + "STRENGTH": 25, + "INTELLIGENCE": 250 }, - "upgrade_costs": [ - [ - { - "essence_type": "SPIDER", - "amount": 15 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 25 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 35 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 45 - } - ], - [ - { - "essence_type": "SPIDER", - "amount": 65 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 4 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 16 + ], + "gemstone_slots": [ + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 5 + }, + { + "type": "ITEM", + "item_id": "FINE_AMETHYST_GEM", + "amount": 5 + } + ] } - }, - "id": "TARANTULA_HELMET" + ], + "id": "REAPER_LEGGINGS" }, { - "material": "LEATHER_LEGGINGS", - "color": "0,0,0", - "name": "Tarantula Leggings", - "category": "LEGGINGS", - "tier": "EPIC", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgwMzY3MjYwNjYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFmYzAxODQ0NzNmZTg4MmQyODk1Y2U3Y2JjODE5N2JkNDBmZjcwYmYxMGQzNzQ1ZGU5N2I2YzJhOWM1ZmM3OGYifX19", + "name": "Reaper Mask", + "category": "HELMET", + "tier": "LEGENDARY", "stats": { - "DEFENSE": 20, - "HEALTH": 60 + "DEFENSE": 100, + "HEALTH": 150, + "INTELLIGENCE": 100 }, "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 20 + "essence_type": "UNDEAD", + "amount": 500 }, "upgrade_costs": [ [ { - "essence_type": "SPIDER", - "amount": 10 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 200 } ], [ { - "essence_type": "SPIDER", - "amount": 15 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 400 } ], [ { - "essence_type": "SPIDER", - "amount": 20 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 600 } ], [ { - "essence_type": "SPIDER", - "amount": 25 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 800 } ], [ { - "essence_type": "SPIDER", - "amount": 30 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 1000 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 4 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 16 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 24 } - }, - "id": "TARANTULA_LEGGINGS" + ], + "gemstone_slots": [ + { + "slot_type": "RUBY" + }, + { + "slot_type": "SAPPHIRE", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 20 + } + ] + } + ], + "id": "REAPER_MASK" }, { - "material": "STRING", - "name": "Tarantula Web", + "material": "STICK", + "name": "Wand of Restoration", "glowing": true, - "tier": "UNCOMMON", - "npc_sell_price": 1, - "id": "TARANTULA_WEB" + "category": "WAND", + "tier": "EPIC", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 6 + } + ], + "id": "WAND_OF_RESTORATION" }, { - "material": "ROTTEN_FLESH", - "name": "Digested Mosquito", + "material": "STICK", + "name": "Wand of Atonement", + "glowing": true, + "category": "WAND", "tier": "LEGENDARY", - "id": "DIGESTED_MOSQUITO" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 7 + } + ], + "id": "WAND_OF_ATONEMENT" }, { - "material": "WEB", - "name": "Tarantula Silk", + "material": "STICK", + "name": "Wand of Healing", "glowing": true, - "tier": "RARE", - "npc_sell_price": 128, - "id": "TARANTULA_SILK" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTgzYjMwZTlkMTM1YjA1MTkwZWVhMmMzYWM2MWUyYWI1NWEyZDgxZTFhNThkYmIyNjk4M2ExNDA4MjY2NCJ9fX0=", - "name": "Spider Catalyst", - "tier": "RARE", - "npc_sell_price": 2000, - "id": "SPIDER_CATALYST" - }, - { - "material": "INK_SACK", - "durability": 10, - "name": "Toxic Arrow Poison", - "category": "ARROW_POISON", + "category": "WAND", "tier": "UNCOMMON", - "npc_sell_price": 2000, - "id": "TOXIC_ARROW_POISON" - }, - { - "material": "GOLD_SPADE", - "name": "Fly Swatter", - "glowing": true, - "tier": "EPIC", - "npc_sell_price": 500000, - "id": "FLY_SWATTER" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 1 + } + ], + "id": "WAND_OF_HEALING" }, { - "material": "WEB", - "name": "Flycatcher", + "material": "STICK", + "name": "Wand of Mending", "glowing": true, - "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 6 + "category": "WAND", + "tier": "RARE", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 3 } - }, - "id": "FLYCATCHER_UPGRADE" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDQyY2Y4Y2U0ODdiNzhmYTIwM2Q1NmNmMDE0OTE0MzRiNGMzM2U1ZDIzNjgwMmM2ZDY5MTQ2YTUxNDM1YjAzZCJ9fX0=", - "name": "Tarantula Talisman", - "category": "ACCESSORY", - "tier": "EPIC", - "id": "TARANTULA_TALISMAN" + ], + "id": "WAND_OF_MENDING" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGE4MTI4NTJjZjA3NDU5Y2Y4MmExNDAwMmZiNTY5NzgyZTZkNzU0MGY4ODg0YzAyYmY3ZDY3NzQzYTY0OWI3MCJ9fX0=", - "name": "Survivor Cube", - "category": "ACCESSORY", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODA2MjUzNjliMGE3YjA1MjYzMmRiNmI5MjZhODc2NzAyMTk1Mzk5MjI4MzZhYzU5NDBiZTI2ZDM0YmYxNGUxMCJ9fX0=", + "name": "Undead Catalyst", "tier": "RARE", - "soulbound": "COOP", - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 7 - } - }, - "id": "SURVIVOR_CUBE" + "npc_sell_price": 2000, + "id": "UNDEAD_CATALYST" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMwMDk4NmVkMGEwNGVhNzk5MDRmNmFlNTNmNDllZDNhMGZmNWIxZGY2MmJiYTYyMmVjYmQzNzc3ZjE1NmRmOCJ9fX0=", - "name": "Spider Artifact", - "category": "ACCESSORY", + "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNjYzMjYwNzEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4OGNmYWZhNWYwM2Y4YWVmMDQyYTE0Mzc5OWU5NjQzNDJkZjc2YjdjMWViNDYxZjYxOGUzOThmODRhOTlhNjMifX19", + "name": "Revenant Catalyst", "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 7 - } - }, - "id": "SPIDER_ARTIFACT" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzY1MmJkNzYxN2U1NmM3NTY1MTRmODNjMjhkZDFkOTZhN2U1ZTE2N2JmN2ZiNTkzNjkzZmM2NTA0NmY3OTkifX19", - "name": "Spider Ring", - "category": "ACCESSORY", - "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 1 - } - }, - "id": "SPIDER_RING" + "npc_sell_price": 8000, + "id": "REVENANT_CATALYST" }, { - "material": "WOOD_SWORD", - "name": "Scorpion Foil", + "material": "DIAMOND_AXE", + "name": "Axe of the Shredded", "category": "SWORD", - "tier": "EPIC", - "stats": { - "DAMAGE": 100, - "STRENGTH": 100 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 6 - } - }, - "id": "SCORPION_FOIL" - }, - { - "material": "BOW", - "name": "Mosquito Bow", - "category": "BOW", + "sword_type": "AXE", "tier": "LEGENDARY", "stats": { - "DAMAGE": 251, - "STRENGTH": 151, - "CRITICAL_DAMAGE": 39 + "DAMAGE": 140, + "STRENGTH": 115 }, "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 30 + "essence_type": "UNDEAD", + "amount": 500 }, "upgrade_costs": [ [ { - "essence_type": "SPIDER", - "amount": 15 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 200 } ], [ { - "essence_type": "SPIDER", - "amount": 25 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 400 } ], [ { - "essence_type": "SPIDER", - "amount": 35 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 600 } ], [ { - "essence_type": "SPIDER", - "amount": 45 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 800 } ], [ { - "essence_type": "SPIDER", - "amount": 65 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 1000 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", + "level": 8 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 13 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 25 } - }, - "id": "MOSQUITO_BOW" + ], + "gemstone_slots": [ + { + "slot_type": "JASPER", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 + } + ] + }, + { + "slot_type": "COMBAT", + "costs": [ + { + "type": "COINS", + "coins": 100000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "FINE_SAPPHIRE_GEM", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "FINE_AMETHYST_GEM", + "amount": 40 + } + ] + } + ], + "id": "AXE_OF_THE_SHREDDED" }, { - "material": "BOW", - "name": "Scorpion Bow", - "category": "BOW", - "tier": "EPIC", + "material": "DIAMOND_SWORD", + "name": "Revenant Falchion", + "category": "SWORD", + "tier": "RARE", "stats": { - "DAMAGE": 110, - "STRENGTH": 10 + "DAMAGE": 90, + "STRENGTH": 50, + "INTELLIGENCE": 100 }, "dungeon_item_conversion_cost": { - "essence_type": "SPIDER", - "amount": 20 + "essence_type": "UNDEAD", + "amount": 500 }, "upgrade_costs": [ [ { - "essence_type": "SPIDER", - "amount": 10 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 200 } ], [ { - "essence_type": "SPIDER", - "amount": 15 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 400 } ], [ { - "essence_type": "SPIDER", - "amount": 20 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 600 } ], [ { - "essence_type": "SPIDER", - "amount": 25 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 800 } ], [ { - "essence_type": "SPIDER", - "amount": 30 + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 1000 } ] ], - "requirements": { - "slayer": { - "slayer_boss_type": "spider", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "zombie", "level": 3 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 10 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 15 } - }, - "id": "SCORPION_BOW" + ], + "id": "REVENANT_SWORD" }, { - "material": "IRON_SWORD", - "name": "Recluse Fang", + "material": "DIAMOND_SWORD", + "name": "Reaper Falchion", "category": "SWORD", - "tier": "RARE", - "stats": { - "DAMAGE": 120, - "STRENGTH": 30, - "CRITICAL_DAMAGE": 20 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "spider", - "level": 2 - } - }, - "id": "RECLUSE_FANG" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTVlYjBiZDg1YWFkZGYwZDI5ZWQwODJlYWMwM2ZjYWRlNDNkMGVlODAzYjBlODE2MmFkZDI4YTYzNzlmYjU0ZSJ9fX0=", - "name": "Warden Helmet", - "category": "HELMET", - "tier": "LEGENDARY", - "stats": { - "DEFENSE": 100, - "HEALTH": 300 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 8 - } - }, - "id": "WARDEN_HELMET" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNjYyODI2NDIsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzRhNjFiNGY4YjA3MGU0YmMzMGE4NmIyMjkwZGI2ZTU3ZTI2ODFjNDRlMDI1MGQxOTA2YTg5YWRiOGZjNDU1YjEifX19", - "name": "Revived Heart", - "category": "HELMET", "tier": "EPIC", "stats": { - "DEFENSE": 35, - "HEALTH": 100, - "INTELLIGENCE": 100 + "DAMAGE": 120, + "STRENGTH": 100, + "INTELLIGENCE": 200 }, "dungeon_item_conversion_cost": { "essence_type": "UNDEAD", - "amount": 100 + "amount": 500 }, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 30 + "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 45 + "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 60 + "amount": 600 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 75 + "amount": 800 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 90 + "amount": 1000 } ] ], - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "zombie", "level": 6 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 15 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 22 } - }, + ], "gemstone_slots": [ { - "slot_type": "RUBY" + "slot_type": "JASPER", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_JASPER_GEM", + "amount": 20 + } + ] } ], - "id": "REVIVED_HEART" + "id": "REAPER_SWORD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNTg1OTU4OTEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg3ZGZiN2MxZWU0ZGUzMWY1NDkzMWVhYzVjNjU3YzE0NWU0ZmE3ZmEwOWUzZjUyYjE3ODhhNjgyYjY1YWM3NSJ9fX0=", - "name": "Crystallized Heart", - "category": "HELMET", - "tier": "RARE", + "material": "DIAMOND_HOE", + "name": "Reaper Scythe", + "category": "SWORD", + "sword_type": "SCYTHE", + "tier": "LEGENDARY", "stats": { - "DEFENSE": 10, - "HEALTH": 50, - "INTELLIGENCE": 50 + "WALK_SPEED": 10, + "DAMAGE": 333 }, "dungeon_item_conversion_cost": { "essence_type": "UNDEAD", - "amount": 100 + "amount": 200 }, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 30 + "amount": 200 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 45 + "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 60 + "amount": 400 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 75 + "amount": 500 } ], [ { + "type": "ESSENCE", "essence_type": "UNDEAD", - "amount": 90 + "amount": 600 } ] ], - "requirements": { - "slayer": { + "requirements": [ + { + "type": "SLAYER", "slayer_boss_type": "zombie", - "level": 3 - } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 8 + "level": 7 } - }, - "id": "CRYSTALLIZED_HEART" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2E3Y2RhOTAwNGZjMTk3ZDY2YWZiYzJiMDAzYTViOWVmMTNjZjQ2MDBiMWZjNzQ5MDA2NzU5MGYwNDcxODFlIn19fQ==", - "name": "Reaper Orb", - "category": "ACCESSORY", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 8 + ], + "catacombs_requirements": [ + { + "type": "DUNGEON_SKILL", + "dungeon_type": "CATACOMBS", + "level": 20 } - }, - "id": "REAPER_ORB" + ], + "id": "REAPER_SCYTHE" }, { - "material": "ROTTEN_FLESH", - "name": "Revenant Flesh", - "glowing": true, - "tier": "UNCOMMON", - "npc_sell_price": 1, - "id": "REVENANT_FLESH" + "material": "COAL", + "durability": 1, + "name": "Foul Flesh", + "tier": "RARE", + "npc_sell_price": 25000, + "id": "FOUL_FLESH" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzBjNWNjNzI4Yzg2OWVjZjNjNmUwOTc5ZThhYTA5YzEwMTQ3ZWQ3NzA0MTdlNGJhNTQxYWFjMzgyZjAifX19", - "name": "Shard of the Shredded", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 8 + "material": "HOPPER", + "name": "Weird Tuba", + "tier": "RARE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 5 } - }, - "id": "SHARD_OF_THE_SHREDDED" + ], + "id": "WEIRD_TUBA" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDQ1ZjRkMTM5YzllODkyNjJlYzA2YjI3YWFhZDczZmE0ODhhYjQ5MjkwZDJjY2Q2ODVhMjU1NDcyNTM3M2M5YiJ9fX0=", - "name": "Warden Heart", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 8 - } - }, - "id": "WARDEN_HEART" - }, - { - "material": "DIAMOND", - "name": "Scythe Blade", - "glowing": true, - "tier": "LEGENDARY", + "skin": "eyJ0aW1lc3RhbXAiOjE1Njc5OTg1NDE4MDYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzMzZkN2NjOTVjYmY2Njg5ZjVlOGM5NTQyOTRlYzhkMWVmYzQ5NGE0MDMxMzI1YmI0MjdiYzgxZDU2YTQ4NGQifX19", + "name": "Maddox Batphone", + "tier": "UNCOMMON", "unstackable": true, - "id": "SCYTHE_BLADE" + "soulbound": "COOP", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 3 + } + ], + "museum": true, + "id": "AATROX_BATPHONE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1Njg0NTc0MjAxMzcsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiYWQ5OWVkM2M4MjBiNzk3ODE5MGFkMDhhOTM0YTY4ZGZhOTBkOTk4NjgyNWRhMWM5N2Y2ZjIxZjQ5YWQ2MjYifX19", - "name": "Beheaded Horror", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjU2MTU5NWQ5Yzc0NTc3OTZjNzE5ZmFlNDYzYTIyMjcxY2JjMDFjZjEwODA5ZjVhNjRjY2IzZDZhZTdmOGY2In19fQ==", + "name": "Overflux Power Orb", "tier": "EPIC", - "npc_sell_price": 15000, + "category": "DEPLOYABLE", "unstackable": true, - "id": "BEHEADED_HORROR" - }, - { - "material": "DIAMOND_CHESTPLATE", - "name": "Revenant Chestplate", - "category": "CHESTPLATE", - "tier": "EPIC", - "stats": { - "DEFENSE": 70, - "HEALTH": 180 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 4 - } - }, - "id": "REVENANT_CHESTPLATE" - }, - { - "material": "DIAMOND_BOOTS", - "name": "Revenant Boots", - "category": "BOOTS", - "tier": "EPIC", - "stats": { - "DEFENSE": 30, - "HEALTH": 100 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 4 - } - }, - "id": "REVENANT_BOOTS" - }, - { - "material": "DIAMOND_LEGGINGS", - "name": "Revenant Leggings", - "category": "LEGGINGS", - "tier": "EPIC", - "stats": { - "DEFENSE": 50, - "HEALTH": 120 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 4 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 7 } - }, - "id": "REVENANT_LEGGINGS" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmIwNTVjODEwYmRkZmQxNjI2NGVjOGQ0MzljNDMyODNlMzViY2E3MWE1MDk4M2UxNWUzNjRjZDhhYjdjNjY4ZiJ9fX0", - "name": "Reaper Gem", - "glowing": true, - "category": "PET_ITEM", - "tier": "LEGENDARY", - "soulbound": "COOP", - "id": "REAPER_GEM" - }, - { - "material": "EMPTY_MAP", - "name": "Travel Scroll to Hub Crypts", - "category": "TRAVEL_SCROLL", - "tier": "EPIC", - "id": "HUB_CRYPTS_TRAVEL_SCROLL" - }, - { - "material": "GRILLED_PORK", - "name": "Revenant Viscera", - "glowing": true, - "tier": "RARE", - "npc_sell_price": 128, - "id": "REVENANT_VISCERA" + ], + "id": "OVERFLUX_POWER_ORB" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk3MDgwMzMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU1ZDk5NmNiNWE4ZTVhNzFhMjc0Mjc1ZjQ2OTQ0Yjk0NGVlZWFjZDJlMWNhZGVmOTE4YjA1Yjg3OWEwMzMzNmYifX19", - "name": "Zombie Ring", - "category": "ACCESSORY", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2FiNGM0ZDZlZTY5YmMyNGJiYTJiOGZhZjY3YjlmNzA0YTA2YjAxYWE5M2YzZWZhNmFlZjdhOTY5NmM0ZmVlZiJ9fX0=", + "name": "Radiant Power Orb", "tier": "UNCOMMON", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", + "category": "DEPLOYABLE", + "unstackable": true, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", "level": 2 } - }, - "id": "ZOMBIE_RING" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzNmYjRlNWRiOTdmNDc5YzY2YTQyYmJkOGE3ZDc4MWRhZjIwMWE4ZGRhZjc3YWZjZjRhZWY4Nzc3OWFhOGI0In19fQ==", - "name": "Zombie Artifact", - "category": "ACCESSORY", - "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 - } - }, - "id": "ZOMBIE_ARTIFACT" + ], + "id": "RADIANT_POWER_ORB" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNDkwODM1MTksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhN2QxYTUyZThjOGRkYWFmMGM0MjhlMWZlNDkwMWVmMzNlZmYyNTFmMjg5ZGUyNzE2Mzk1Y2FkMjBiZjMwOWIifX19", - "name": "Devour Ring", - "category": "ACCESSORY", - "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 5 - } - }, - "id": "DEVOUR_RING" - }, - { - "material": "RAW_FISH", - "durability": 3, - "name": "Voodoo Doll", - "glowing": true, + "skin": "eyJ0aW1lc3RhbXAiOjE1Njk1ODM2NDYxMTksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgyYWRhMWM3ZmNjOGNmMzVkZWZlYjk0NGE0ZjhmZmE5YTlkMjYwNTYwZmM3ZjVmNTgyNmRlODA4NTQzNTk2N2MifX19", + "name": "Mana Flux Power Orb", "tier": "RARE", - "stats": { - "WEAPON_ABILITY_DAMAGE": 1500 - }, + "category": "DEPLOYABLE", "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 5 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 6 } - }, - "id": "VOODOO_DOLL" + ], + "id": "MANA_FLUX_POWER_ORB" }, { - "material": "LEATHER_BOOTS", - "color": "27,27,27", - "name": "Reaper Boots", - "category": "BOOTS", - "tier": "LEGENDARY", + "material": "DIAMOND_LEGGINGS", + "name": "Mastiff Leggings", + "category": "LEGGINGS", + "tier": "EPIC", "stats": { - "DEFENSE": 30, - "HEALTH": 100, - "STRENGTH": 25, - "INTELLIGENCE": 250 + "DEFENSE": -1000000, + "HEALTH": 500 }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 4 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY", "costs": [ { - "coins": 50000 + "type": "COINS", + "coins": 5000 }, { - "item_id": "FINE_JASPER_GEM", - "amount": 5 - }, + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 1 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 5 + "type": "COINS", + "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", - "amount": 5 + "amount": 4 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ + { + "type": "COINS", + "coins": 50000 }, { - "item_id": "FINE_AMETHYST_GEM", - "amount": 5 + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 16 } ] } ], - "id": "REAPER_BOOTS" + "id": "MASTIFF_LEGGINGS" }, { - "material": "LEATHER_CHESTPLATE", - "color": "27,27,27", - "name": "Reaper Chestplate", - "category": "CHESTPLATE", - "tier": "LEGENDARY", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzI4NTk1MGZkNjc4NThlNzZjNDM5YjBiNWI4N2M2OWE2YzUyYTRkZjkzNmUyMjRkODQzYjE0YzIyNTY1OTQ5ZSJ9fX0=", + "name": "Mastiff Crown", + "category": "HELMET", + "tier": "EPIC", "stats": { - "DEFENSE": 70, - "HEALTH": 180, - "STRENGTH": 25, - "INTELLIGENCE": 250 + "DEFENSE": -1000000, + "HEALTH": 500, + "INTELLIGENCE": 125 }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 4 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY", "costs": [ { - "coins": 50000 + "type": "COINS", + "coins": 5000 }, { - "item_id": "FINE_JASPER_GEM", - "amount": 5 - }, + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 1 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 5 + "type": "COINS", + "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", - "amount": 5 + "amount": 4 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ + { + "type": "COINS", + "coins": 50000 }, { - "item_id": "FINE_AMETHYST_GEM", - "amount": 5 + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 16 } ] } ], - "id": "REAPER_CHESTPLATE" + "id": "MASTIFF_HELMET" }, { - "material": "LEATHER_LEGGINGS", - "color": "27,27,27", - "name": "Reaper Leggings", - "category": "LEGGINGS", - "tier": "LEGENDARY", + "material": "DIAMOND_BOOTS", + "name": "Mastiff Boots", + "category": "BOOTS", + "tier": "EPIC", "stats": { - "DEFENSE": 50, - "HEALTH": 120, - "STRENGTH": 25, - "INTELLIGENCE": 250 + "DEFENSE": -1000000, + "HEALTH": 500, + "INTELLIGENCE": 25 }, - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 4 } - }, + ], "gemstone_slots": [ { - "slot_type": "COMBAT", + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY", "costs": [ { - "coins": 50000 + "type": "COINS", + "coins": 5000 }, { - "item_id": "FINE_JASPER_GEM", - "amount": 5 - }, + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 1 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 5 + "type": "COINS", + "coins": 20000 }, { + "type": "ITEM", "item_id": "FINE_RUBY_GEM", - "amount": 5 - }, - { - "item_id": "FINE_AMETHYST_GEM", - "amount": 5 + "amount": 4 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ + { + "type": "COINS", + "coins": 50000 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 16 } ] } - ], - "id": "REAPER_LEGGINGS" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgwMzY3MjYwNjYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFmYzAxODQ0NzNmZTg4MmQyODk1Y2U3Y2JjODE5N2JkNDBmZjcwYmYxMGQzNzQ1ZGU5N2I2YzJhOWM1ZmM3OGYifX19", - "name": "Reaper Mask", - "category": "HELMET", - "tier": "LEGENDARY", - "stats": { - "DEFENSE": 100, - "HEALTH": 150, - "INTELLIGENCE": 100 - }, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 500 - }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 800 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 1000 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 - } + ], + "id": "MASTIFF_BOOTS" + }, + { + "material": "GOLD_CHESTPLATE", + "name": "Mastiff Chestplate", + "category": "CHESTPLATE", + "tier": "EPIC", + "stats": { + "DEFENSE": -1000000, + "HEALTH": 500 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 24 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 4 } - }, + ], "gemstone_slots": [ { "slot_type": "RUBY" }, { - "slot_type": "SAPPHIRE", + "slot_type": "RUBY" + }, + { + "slot_type": "RUBY", + "costs": [ + { + "type": "COINS", + "coins": 5000 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 1 + } + ] + }, + { + "slot_type": "RUBY", + "costs": [ + { + "type": "COINS", + "coins": 20000 + }, + { + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 4 + } + ] + }, + { + "slot_type": "RUBY", "costs": [ { + "type": "COINS", "coins": 50000 }, { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 20 + "type": "ITEM", + "item_id": "FINE_RUBY_GEM", + "amount": 16 } ] } ], - "id": "REAPER_MASK" + "id": "MASTIFF_CHESTPLATE" }, { - "material": "STICK", - "name": "Wand of Restoration", + "material": "RAW_FISH", + "durability": 1, + "name": "Grizzly Bait", + "tier": "RARE", + "unstackable": true, + "id": "GRIZZLY_BAIT" + }, + { + "material": "MONSTER_EGG", + "durability": 96, + "name": "Red Claw Egg", + "tier": "EPIC", + "unstackable": true, + "id": "RED_CLAW_EGG" + }, + { + "material": "QUARTZ", + "name": "Overflux Capacitor", "glowing": true, - "category": "WAND", "tier": "EPIC", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", + "id": "OVERFLUX_CAPACITOR" + }, + { + "material": "TRAP_DOOR", + "name": "Hamster Wheel", + "glowing": true, + "tier": "RARE", + "npc_sell_price": 20000, + "id": "HAMSTER_WHEEL" + }, + { + "material": "GOLD_NUGGET", + "name": "Golden Tooth", + "glowing": true, + "tier": "RARE", + "npc_sell_price": 128, + "id": "GOLDEN_TOOTH" + }, + { + "material": "LEATHER_CHESTPLATE", + "color": "255,0,0", + "name": "Chestplate of the Pack", + "category": "CHESTPLATE", + "tier": "EPIC", + "stats": { + "DEFENSE": 95, + "HEALTH": 100 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", "level": 6 } + ], + "id": "CHESTPLATE_OF_THE_PACK" + }, + { + "material": "IRON_BOOTS", + "name": "Boots of the Pack", + "category": "BOOTS", + "tier": "EPIC", + "stats": { + "DEFENSE": 45, + "HEALTH": 50 }, - "id": "WAND_OF_RESTORATION" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 6 + } + ], + "id": "BOOTS_OF_THE_PACK" }, { - "material": "STICK", - "name": "Wand of Atonement", - "glowing": true, - "category": "WAND", - "tier": "LEGENDARY", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 + "material": "IRON_LEGGINGS", + "name": "Leggings of the Pack", + "category": "LEGGINGS", + "tier": "EPIC", + "stats": { + "DEFENSE": 75, + "HEALTH": 80 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 6 } + ], + "id": "LEGGINGS_OF_THE_PACK" + }, + { + "material": "LEATHER_HELMET", + "color": "255,255,255", + "name": "Helmet of the Pack", + "category": "HELMET", + "tier": "EPIC", + "stats": { + "DEFENSE": 65, + "HEALTH": 70 }, - "id": "WAND_OF_ATONEMENT" + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 6 + } + ], + "id": "HELMET_OF_THE_PACK" }, { - "material": "STICK", - "name": "Wand of Healing", - "glowing": true, - "category": "WAND", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1Njk2MDc1Mzc1MTUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVjNTc3ZTdkMzFlNWUwNGMyY2U3MWUxM2UzOTYyMTkyZDgwYmQ1NGI1NWVmYWFjYWFlYTEyOTY2ZmUyN2JmOSJ9fX0=", + "name": "Hunter Talisman", + "category": "ACCESSORY", "tier": "UNCOMMON", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 1 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 7 } + ], + "stats": { + "combat_wisdom": 2 }, - "id": "WAND_OF_HEALING" + "id": "HUNTER_TALISMAN" }, { - "material": "STICK", - "name": "Wand of Mending", - "glowing": true, - "category": "WAND", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1Njk2MDc1Mzc1MTUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVjNTc3ZTdkMzFlNWUwNGMyY2U3MWUxM2UzOTYyMTkyZDgwYmQ1NGI1NWVmYWFjYWFlYTEyOTY2ZmUyN2JmOSJ9fX0=", + "name": "Hunter Ring", + "category": "ACCESSORY", "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 3 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 7 } + ], + "stats": { + "combat_wisdom": 5 }, - "id": "WAND_OF_MENDING" + "id": "HUNTER_RING" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODA2MjUzNjliMGE3YjA1MjYzMmRiNmI5MjZhODc2NzAyMTk1Mzk5MjI4MzZhYzU5NDBiZTI2ZDM0YmYxNGUxMCJ9fX0=", - "name": "Undead Catalyst", + "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk5OTYyODEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU5ZDliMzI3ZmY4MmY2ZTEwOWI4NzQ2YzQ4YmZiN2Y2NDFlMTU1Mjg1NTQ5M2RkNDExOGJlMjRkNWIwMmJjMGEifX19", + "name": "Red Claw Ring", + "category": "ACCESSORY", "tier": "RARE", - "npc_sell_price": 2000, - "id": "UNDEAD_CATALYST" + "stats": { + "CRITICAL_DAMAGE": 3 + }, + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 5 + } + ], + "id": "RED_CLAW_RING" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NjgzNjYzMjYwNzEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I4OGNmYWZhNWYwM2Y4YWVmMDQyYTE0Mzc5OWU5NjQzNDJkZjc2YjdjMWViNDYxZjYxOGUzOThmODRhOTlhNjMifX19", - "name": "Revenant Catalyst", + "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NTAwMzc2MTYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NhZjU5YjhhYTBmODM1NDZlZjBkMTc4Y2NmODdlN2VkODhjZjc4NThjYWFlNzliMzYzM2NiZDc1YjY1MDUyNWYifX19", + "name": "Red Claw Artifact", + "category": "ACCESSORY", "tier": "EPIC", - "npc_sell_price": 8000, - "id": "REVENANT_CATALYST" - }, - { - "material": "DIAMOND_AXE", - "name": "Axe of the Shredded", - "category": "SWORD", - "tier": "LEGENDARY", "stats": { - "DAMAGE": 140, - "STRENGTH": 115 - }, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 500 - }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 800 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 1000 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 8 - } + "CRITICAL_DAMAGE": 5 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 25 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 5 } + ], + "id": "RED_CLAW_ARTIFACT" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk5NDY3MTIsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzMxN2I1MWUwODZmMjAxNDQ4YTRiNDViMGI5MWU5N2ZhZjRkMTczOTA3MTQ4MGJlNmQ1Y2FiMGEwNTQ1MTIxNjQifX19", + "name": "Red Claw Talisman", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "stats": { + "CRITICAL_DAMAGE": 1 }, - "gemstone_slots": [ - { - "slot_type": "JASPER", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - }, + "requirements": [ { - "slot_type": "COMBAT", - "costs": [ - { - "coins": 100000 - }, - { - "item_id": "FINE_JASPER_GEM", - "amount": 40 - }, - { - "item_id": "FINE_SAPPHIRE_GEM", - "amount": 40 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 40 - }, - { - "item_id": "FINE_AMETHYST_GEM", - "amount": 40 - } - ] + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 1 } ], - "id": "AXE_OF_THE_SHREDDED" + "id": "RED_CLAW_TALISMAN" }, { - "material": "DIAMOND_SWORD", - "name": "Revenant Falchion", + "material": "IRON_SWORD", + "name": "Shaman Sword", "category": "SWORD", - "tier": "RARE", + "tier": "EPIC", "stats": { - "DAMAGE": 90, - "STRENGTH": 50, - "INTELLIGENCE": 100 - }, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 500 + "WALK_SPEED": 5, + "DAMAGE": 100, + "STRENGTH": 20 }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 800 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 1000 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", "level": 3 } + ], + "id": "SHAMAN_SWORD" + }, + { + "material": "MUTTON", + "name": "Edible Mace", + "category": "SWORD", + "tier": "RARE", + "stats": { + "DAMAGE": 125, + "STRENGTH": 25 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 15 + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", + "level": 5 } - }, - "id": "REVENANT_SWORD" + ], + "id": "EDIBLE_MACE" }, { - "material": "DIAMOND_SWORD", - "name": "Reaper Falchion", + "material": "GOLD_SWORD", + "name": "Pooch Sword", "category": "SWORD", - "tier": "EPIC", + "tier": "LEGENDARY", "stats": { + "WALK_SPEED": 5, "DAMAGE": 120, - "STRENGTH": 100, - "INTELLIGENCE": 200 - }, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 500 + "STRENGTH": 20 }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 800 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 1000 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", + "requirements": [ + { + "type": "SLAYER", + "slayer_boss_type": "wolf", "level": 6 } - }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 22 - } - }, + ], "gemstone_slots": [ { "slot_type": "JASPER", "costs": [ { + "type": "COINS", "coins": 50000 }, { + "type": "ITEM", "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - } - ], - "id": "REAPER_SWORD" - }, - { - "material": "DIAMOND_HOE", - "name": "Reaper Scythe", - "category": "SWORD", - "tier": "LEGENDARY", - "stats": { - "WALK_SPEED": 10, - "DAMAGE": 333 - }, - "dungeon_item_conversion_cost": { - "essence_type": "UNDEAD", - "amount": 200 - }, - "upgrade_costs": [ - [ - { - "essence_type": "UNDEAD", - "amount": 200 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 300 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 400 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 500 - } - ], - [ - { - "essence_type": "UNDEAD", - "amount": 600 - } - ] - ], - "requirements": { - "slayer": { - "slayer_boss_type": "zombie", - "level": 7 + "amount": 20 + } + ] } + ], + "id": "POOCH_SWORD" + }, + { + "material": "GHAST_TEAR", + "name": "Wolf Tooth", + "glowing": true, + "tier": "UNCOMMON", + "npc_sell_price": 1, + "id": "WOLF_TOOTH" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTMwZmU3NzFmY2MzZWNjMDUzMGVlOTU0NWFiMDc3OTc0MzdmOTVlMDlhMGVhYTliNTEyNDk3ZmU4OTJmNTJmYiJ9fX0=", + "name": "Enigma Cloak", + "category": "CLOAK", + "tier": "EPIC", + "id": "ENIGMA_CLOAK" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "%%light_purple%%Rift Necklace", + "category": "NECKLACE", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 10 }, - "catacombs_requirements": { - "dungeon": { - "type": "CATACOMBS", - "level": 20 + "id": "RIFT_NECKLACE_INSIDE_1" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "%%light_purple%%Rift Necklace", + "category": "NECKLACE", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 180, + "RIFT_DAMAGE": 2 + }, + "id": "RIFT_NECKLACE_INSIDE_3" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "%%light_purple%%Rift Necklace", + "category": "NECKLACE", + "tier": "LEGENDARY", + "soulbound": "SOLO", + "item_specific": { + "tiers": { + "1": { + "stats": { + "HEALTH": 50, + "STRENGTH": 5 + } + }, + "2": { + "stats": { + "HEALTH": 100, + "STRENGTH": 8 + } + }, + "3": { + "stats": { + "HEALTH": 150, + "STRENGTH": 10, + "CRITICAL_DAMAGE": 3 + } + } } }, - "id": "REAPER_SCYTHE" + "id": "RIFT_NECKLACE_OUTSIDE" }, { - "material": "COAL", - "durability": 1, - "name": "Foul Flesh", - "tier": "RARE", - "npc_sell_price": 25000, - "id": "FOUL_FLESH" + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==", + "name": "%%light_purple%%Rift Necklace", + "category": "NECKLACE", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 60, + "RIFT_DAMAGE": 2 + }, + "id": "RIFT_NECKLACE_INSIDE_2" }, { - "material": "HOPPER", - "name": "Weird Tuba", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0NzcxNTE3OTkyNCwKICAicHJvZmlsZUlkIiA6ICIxYWZhZjc2NWI1ZGY0NjA3YmY3ZjY1ZGYzYWIwODhhOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMb3lfQmxvb2RBbmdlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83MDdiYjRmMDMwODE3YWY3NDFjNTU0MjE1NmJjYmExNTU4YzgyYjAwOTE2ZDkxNTllMmMyOTcyZGE3NWQ5MGIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Silkrider Safety Belt", + "category": "BELT", "tier": "RARE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 5 - } + "stats": { + "RIFT_TIME": 60, + "WALK_SPEED": 2 }, - "id": "WEIRD_TUBA" + "id": "SILKRIDER_SAFETY_BELT" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1Njc5OTg1NDE4MDYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzMzZkN2NjOTVjYmY2Njg5ZjVlOGM5NTQyOTRlYzhkMWVmYzQ5NGE0MDMxMzI1YmI0MjdiYzgxZDU2YTQ4NGQifX19", - "name": "Maddox Batphone", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWIxNWNlODIzNzcwZDlhMjY5YzFlYmY1ODNkM2U0OTMyNzQ3YTEzZWY0MzYxM2NkNGY3NWY4MDRjYTQifX19", + "name": "Harmonious Surgery Toolbelt", + "category": "BELT", "tier": "UNCOMMON", - "unstackable": true, - "soulbound": "COOP", - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 3 - } + "stats": { + "WALK_SPEED": 2 }, - "museum": true, - "id": "AATROX_BATPHONE" + "id": "HARMONIOUS_SURGERY_TOOLBELT" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjU2MTU5NWQ5Yzc0NTc3OTZjNzE5ZmFlNDYzYTIyMjcxY2JjMDFjZjEwODA5ZjVhNjRjY2IzZDZhZTdmOGY2In19fQ==", - "name": "Overflux Power Orb", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTRmNDNmNmE5ZGMyZWVhY2JkZGIzZDYzMjQ5ZjU4MmYxYTc3OTQwNWQxODZlNDEyNThmMzBiY2U4MDMzOTdkZiJ9fX0=", + "name": "Bracelet of the Glyphs", + "category": "GLOVES", "tier": "EPIC", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 7 - } + "stats": { + "RIFT_TIME": 90, + "INTELLIGENCE": 25 }, - "id": "OVERFLUX_POWER_ORB" + "description": "Obtained from Sorcerer Okron.", + "id": "BRACELET_OF_THE_GLYPHS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2FiNGM0ZDZlZTY5YmMyNGJiYTJiOGZhZjY3YjlmNzA0YTA2YjAxYWE5M2YzZWZhNmFlZjdhOTY5NmM0ZmVlZiJ9fX0=", - "name": "Radiant Power Orb", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0ODQ4MDI2MzM0MSwKICAicHJvZmlsZUlkIiA6ICJhOGJhMGY1YTFmNjQ0MTgzODZkZGI3OWExZmY5ZWRlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJDcmVlcGVyOTA3NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kYmE2MzBhNzcwMzU2OTBlNjU1ZTY0ZTRhZDMwMTNkMzJmZTdhNGNiZTQzYzVmY2FiYTY0M2QxZjI2YjdhMDkyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Vermin Belt", + "category": "BELT", + "tier": "EPIC", + "stats": { + "RIFT_TIME": 100, + "WALK_SPEED": 4, + "INTELLIGENCE": 10 + }, + "id": "VERMIN_BELT" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0ODQ4MDI2MzM0MSwKICAicHJvZmlsZUlkIiA6ICJhOGJhMGY1YTFmNjQ0MTgzODZkZGI3OWExZmY5ZWRlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJDcmVlcGVyOTA3NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kYmE2MzBhNzcwMzU2OTBlNjU1ZTY0ZTRhZDMwMTNkMzJmZTdhNGNiZTQzYzVmY2FiYTY0M2QxZjI2YjdhMDkyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Leech Belt", + "category": "BELT", + "tier": "EPIC", + "stats": { + "RIFT_TIME": 80, + "WALK_SPEED": 3, + "INTELLIGENCE": 10 + }, + "id": "LEECH_BELT" + }, + { + "material": "LEATHER_BOOTS", + "color": "21,73,24", + "name": "Wyld Boots", + "category": "BOOTS", "tier": "UNCOMMON", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 2 - } + "stats": { + "RIFT_TIME": 15 }, - "id": "RADIANT_POWER_ORB" + "id": "WYLD_BOOTS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1Njk1ODM2NDYxMTksInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgyYWRhMWM3ZmNjOGNmMzVkZWZlYjk0NGE0ZjhmZmE5YTlkMjYwNTYwZmM3ZjVmNTgyNmRlODA4NTQzNTk2N2MifX19", - "name": "Mana Flux Power Orb", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmM4NTkzYjkxMDU4ZmYyNGEwZjY4NDUxMzBlZDNlNDQ5NTY5Y2U5YzZiMjJmYTljZDFlZDczNjBiNTA0NWVhMyJ9fX0=", + "name": "Wyld Helmet on a Helmet", + "category": "HELMET", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 15, + "RIFT_INTELLIGENCE": 10 + }, + "id": "WYLD_HELMET" + }, + { + "material": "LEATHER_LEGGINGS", + "color": "53,183,59", + "name": "Wyld Leggings", + "category": "LEGGINGS", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 15 + }, + "id": "WYLD_LEGGINGS" + }, + { + "material": "CHAINMAIL_CHESTPLATE", + "name": "Wyld Chain Top", + "category": "CHESTPLATE", + "tier": "UNCOMMON", + "stats": { + "RIFT_TIME": 15 + }, + "id": "WYLD_CHESTPLATE" + }, + { + "material": "LEATHER_CHESTPLATE", + "name": "Disinfestor Chestplate", + "color": "246,255,0", + "category": "CHESTPLATE", "tier": "RARE", - "category": "DEPLOYABLE", - "unstackable": true, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } + "stats": { + "RIFT_TIME": 30 }, - "id": "MANA_FLUX_POWER_ORB" + "glowing": true, + "id": "DISINFESTOR_CHESTPLATE" }, { - "material": "DIAMOND_LEGGINGS", - "name": "Mastiff Leggings", + "material": "IRON_LEGGINGS", + "name": "sgniggeL norI", "category": "LEGGINGS", - "tier": "EPIC", + "tier": "RARE", "stats": { - "DEFENSE": -1000000, - "HEALTH": 500 + "RIFT_TIME": 30 }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 4 - } + "glowing": true, + "id": "SGNIGGEL_NORI" + }, + { + "material": "IRON_CHESTPLATE", + "name": "etalptsehC norI", + "category": "CHESTPLATE", + "tier": "RARE", + "stats": { + "RIFT_TIME": 30 }, - "gemstone_slots": [ - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 5000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 1 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 20000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 4 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 16 - } - ] - } - ], - "id": "MASTIFF_LEGGINGS" + "glowing": true, + "id": "ETALPTSEHC_NORI" + }, + { + "material": "LEATHER_BOOTS", + "color": "79,40,134", + "name": "Gunther's Sneakers", + "category": "BOOTS", + "tier": "RARE", + "stats": { + "RIFT_TIME": 30, + "WALK_SPEED": 4 + }, + "id": "GUNTHER_SNEAKERS" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzI4NTk1MGZkNjc4NThlNzZjNDM5YjBiNWI4N2M2OWE2YzUyYTRkZjkzNmUyMjRkODQzYjE0YzIyNTY1OTQ5ZSJ9fX0=", - "name": "Mastiff Crown", - "category": "HELMET", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGUzZjlkYjdiNDU3MzE3MWEyYjU4MzZlNjliYzZhNjMxNDUxNGZmZjViYzc5NzQzMzE5ZmQxOTFmNTM0NDQifX19", + "name": "Gateway Wand", + "category": "WAND", + "tier": "RARE", + "id": "GATEWAY_WAND" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODc2MWUyMzZkODYxZGI0YzhjNmFjMDc4MzgwN2RkMTlkNDQwYjUwYTIwM2QxYWI3MGZmMTg3YzYxZDRhNTE1OCJ9fX0=", + "name": "Argofay Trinket", + "category": "ACCESSORY", "tier": "EPIC", "stats": { - "DEFENSE": -1000000, - "HEALTH": 500, - "INTELLIGENCE": 125 + "RIFT_INTELLIGENCE": 2 }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 4 - } - }, - "gemstone_slots": [ - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 5000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 1 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 20000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 4 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 16 - } - ] - } - ], - "id": "MASTIFF_HELMET" + "id": "ARGOFAY_TRINKET" }, { - "material": "DIAMOND_BOOTS", - "name": "Mastiff Boots", - "category": "BOOTS", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzAxYTljYTMxMGZiOTZlNmMwYWFhM2VhMWQwNTg1ZjJmNDE3NjVkNmFhOTk3MDNiZjg2MWYyZTc2OWQyNGRjNSJ9fX0=", + "name": "Defective Monitor", + "category": "ACCESSORY", "tier": "EPIC", "stats": { - "DEFENSE": -1000000, - "HEALTH": 500, - "INTELLIGENCE": 25 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 4 - } + "RIFT_INTELLIGENCE": 6, + "RIFT_TIME": 60 }, - "gemstone_slots": [ - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 5000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 1 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 20000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 4 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 16 - } - ] - } - ], - "id": "MASTIFF_BOOTS" + "description": "Obtained from a Kloon who doesn't seem too stable.", + "id": "DEFECTIVE_MONITOR" }, { - "material": "GOLD_CHESTPLATE", - "name": "Mastiff Chestplate", - "category": "CHESTPLATE", + "material": "SHEARS", + "name": "Reinforced Multi-Shears", + "glowing": true, + "tier": "RARE", + "id": "REINFORCED_MULTI_SHEARS" + }, + { + "material": "STICK", + "name": "Wand of Warding", + "category": "WAND", + "tier": "RARE", + "glowing": true, + "id": "WAND_OF_WARDING" + }, + { + "material": "WOOD_SPADE", + "name": "Aspect of the Leech", + "category": "WAND", + "tier": "RARE", + "id": "ASPECT_OF_THE_LEECH_1" + }, + { + "material": "WOOD_SPADE", + "name": "Aspect of the Leech", + "category": "WAND", + "tier": "RARE", + "id": "ASPECT_OF_THE_LEECH_2" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjU1NTM4MTIwOWJmOTg5ZThjYWFjM2FlOGQ2YjdlMTkzMzczZjE3MTgwODhmNWRiZjEyMmY3MWY1ZWFmOTBmMCJ9fX0=", + "name": "Stability Elixir", + "tier": "RARE", + "unstackable": true, + "id": "RIFT_STABILITY_ELIXIR" + }, + { + "material": "GOLD_NUGGET", + "name": "Doubloon of the Family", + "tier": "RARE", + "npc_sell_price": 100000, + "rift_transferrable": true, + "unstackable": true, + "glowing": true, + "id": "FAMILY_DOUBLOON" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGI2OTc1YWY3MDcyNGQ2YTQ0ZmQ1OTQ2ZTYwYjI3MTc3MzdkZmRiNTQ1YjRkYWIxODkzMzUxYTljOWRkMTgzYyJ9fX0=", + "name": "Hocus-Pocus Cipher", "tier": "EPIC", + "category": "ACCESSORY", + "unstackable": true, + "rift_transferrable": true, + "cannot_reforge": true, + "item_specific": { + "rift_time": 180, + "intelligence": 30 + }, + "id": "HOCUS_POCUS_CIPHER" + }, + { + "material": "STICK", + "name": "Thin Woodlet", + "tier": "UNCOMMON", + "id": "THIN_WOODLET" + }, + { + "material": "ARROW", + "name": "Deadgehog Spine", + "tier": "UNCOMMON", + "description": "Contrary to popular belief, Deadgehogs aren't rodents.\n\nThey are in fact mangled wraith remnants of warriors who couldn't find true love.", + "id": "DEADGEHOG_SPINE" + }, + { + "material": "WATER_LILY", + "name": "Lil' Pad", + "tier": "UNCOMMON", + "description": "Can be placed on water, especially if you're scared of said water.", + "id": "LIL_PAD" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0ODQ3NzgxMDAxOCwKICAicHJvZmlsZUlkIiA6ICI0M2NmNWJkNjUyMDM0YzU5ODVjMDIwYWI3NDE0OGQxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrYW1pbDQ0NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9jMzEzMjQzMDM0YmNiMWE1MjhlZmYxYzRiMGFkYjMyMDc0NTVjYWRmZDhjOWNjZDVhNzVhZjk3NTc5MGY3MDUyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Leech Supreme Fragment", + "tier": "RARE", + "id": "LEECH_SUPREME_FRAGMENT" + }, + { + "material": "MAP", + "name": "Very Scientific Paper", + "tier": "RARE", + "description": "Authored, peer-reviewed and published by Kay.", + "id": "VERY_SCIENTIFIC_PAPER" + }, + { + "material": "BOAT", + "name": "Rift Boat", + "tier": "UNCOMMON", + "description": "Built by Reed, who turns out to be a bit of a scammer.", + "id": "REED_BOAT" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTExZjY5M2Y3ZmJhYzU3ZWNhOGEzMTE5MzNiN2RlZDE3NTYxNjk1ZDdmZmI4ZTlhNjJmMDRiOTI0YTRkNTJkZiJ9fX0=", + "name": "Tiny Dancer", + "tier": "UNCOMMON", + "category": "ACCESSORY", + "soulbound": "COOP", + "rift_transferrable": true, "stats": { - "DEFENSE": -1000000, - "HEALTH": 500 + "CRITICAL_DAMAGE": 1 }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 4 - } + "id": "TINY_DANCER" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmZiNGM0NmQyZDM2NjYxMjdkNjIyYWM1MTk4NzE3YmExNjYzYjdjMTQ3YmMxMGZkMzcxNmQ3YWU3Y2NjMjkifX19", + "name": "Test Bucket Please Ignore", + "tier": "UNCOMMON", + "category": "ACCESSORY", + "soulbound": "COOP", + "rift_transferrable": true, + "description": "Was it all a test?", + "stats": { + "TRUE_DEFENSE": 0.5 }, - "gemstone_slots": [ - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY" - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 5000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 1 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 20000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 4 - } - ] - }, - { - "slot_type": "RUBY", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_RUBY_GEM", - "amount": 16 - } - ] - } - ], - "id": "MASTIFF_CHESTPLATE" + "id": "TEST_BUCKET_PLEASE_IGNORE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODJhZTE5MTA3MDg2ZGQzMTRkYWYzMWQ4NjYxOGU1MTk0OGE2ZTNlMjBkOTZkY2ExN2QyMWIyNWQ0MmQyYjI0In19fQ==", + "enchantments": { + "reflection": 2 + }, + "name": "Enchanted Book Bundle", + "tier": "UNCOMMON", + "unstackable": true, + "rift_transferrable": true, + "id": "ENCHANTED_BOOK_BUNDLE_REFLECTION" + }, + { + "material": "SLIME_BALL", + "name": "llabemilS", + "motes_sell_price": 30, + "id": "MIRRORED_SLIME_BALL" + }, + { + "material": "STRING", + "name": "gnirtS", + "motes_sell_price": 30, + "id": "MIRRORED_STRING" + }, + { + "material": "WOOD", + "name": "knalP dooW kaO", + "motes_sell_price": 30, + "id": "MIRRORED_WOOD" + }, + { + "material": "STICK", + "name": "kcitS", + "motes_sell_price": 15, + "id": "MIRRORED_STICK" + }, + { + "material": "FISHING_ROD", + "name": "doR gnihsiF", + "motes_sell_price": 30, + "id": "MIRRORED_FISHING_ROD" + }, + { + "material": "LEASH", + "name": "daeL", + "motes_sell_price": 75, + "id": "MIRRORED_LEASH" + }, + { + "material": "BOW", + "name": "woB", + "category": "BOW", + "id": "MIRRORED_BOW" + }, + { + "material": "IRON_AXE", + "name": "remmaH yniT", + "tier": "UNCOMMON", + "description": ".wohemoS", + "motes_sell_price": 495, + "id": "TINY_HAMMER" }, { - "material": "RAW_FISH", - "durability": 1, - "name": "Grizzly Bait", + "material": "BLAZE_ROD", + "name": "Emmett Pointer", + "tier": "UNCOMMON", + "id": "EMMETT_POINTER" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmRjNzkxMzIyOWNiMmU4OTgwNzFiMGMyYmM4ZjEzYmQ4ZGJhNjlkYmRjY2FmNGQxZGE2NDNhYjcyNmI5MjVhZiJ9fX0=", + "name": "Miniaturized Tubulator", + "tier": "UNCOMMON", + "category": "ACCESSORY", + "soulbound": "COOP", + "rift_transferrable": true, + "description": "Don't hate the player, hate the game. - Ice T", + "stats": { + "HEALTH": 1 + }, + "id": "MINIATURIZED_TUBULATOR" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjJhYzk5MjZkY2ZiNzY0MWExNjIxMjY5MTEyNmUwM2Q5NWQ2NDZhZDM0NWI3NWExOTIwNjFhMWE5MzlkODkwMiJ9fX0=", + "name": "Jump Elixir", "tier": "RARE", "unstackable": true, - "id": "GRIZZLY_BAIT" + "id": "RIFT_JUMP_ELIXIR" }, { - "material": "MONSTER_EGG", - "durability": 96, - "name": "Red Claw Egg", - "tier": "EPIC", + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGEwMGM1M2NmNTdjYWNjN2Y1ZThlM2ZlODRiMmY1ZGIxMjJjZDc2ZmNlZDc4MGE5NTNiOTk2MzlmYjMxOTg4MiJ9fX0=", + "name": "Strength Elixir", + "tier": "RARE", "unstackable": true, - "id": "RED_CLAW_EGG" + "id": "RIFT_STRENGTH_ELIXIR" }, { - "material": "QUARTZ", - "name": "Overflux Capacitor", - "glowing": true, - "tier": "EPIC", - "id": "OVERFLUX_CAPACITOR" + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWFmODE1MWRlYjM5NTUzMjkyYjlhNjk2NzQ4MzJkZGE4MDAxNzgwY2E5ODE4MGEwNmVhZjliMzY4OTMwYjViYiJ9fX0=", + "name": "Speed Elixir", + "tier": "RARE", + "unstackable": true, + "id": "RIFT_SPEED_ELIXIR" }, { - "material": "TRAP_DOOR", - "name": "Hamster Wheel", - "glowing": true, + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjc1N2NmYzdjMTFiMWU2ZjEwMjhiODA0NjJkMWU0MzAyZGNhNWFiODU5MjIyNWVhOGM4Yjc2MzljNzBlNjFmOSJ9fX0=", + "name": "Shy Crux", + "tier": "UNCOMMON", + "description": "Rumors are that Argofays and other creatures really like this.", + "motes_sell_price": 100, + "id": "SHAME_CRUX" + }, + { + "material": "TRIPWIRE_HOOK", + "name": "Larva Hook", "tier": "RARE", - "npc_sell_price": 20000, - "id": "HAMSTER_WHEEL" + "unstackable": true, + "id": "LARVA_HOOK" }, { - "material": "GOLD_NUGGET", - "name": "Golden Tooth", + "material": "STRING", + "name": "Larva Silk", + "tier": "COMMON", "glowing": true, - "tier": "RARE", - "npc_sell_price": 128, - "id": "GOLDEN_TOOTH" + "id": "LARVA_SILK" }, { - "material": "LEATHER_CHESTPLATE", - "color": "255,0,0", - "name": "Chestplate of the Pack", - "category": "CHESTPLATE", - "tier": "EPIC", - "stats": { - "DEFENSE": 95, - "HEALTH": 100 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } - }, - "id": "CHESTPLATE_OF_THE_PACK" + "material": "STICK", + "name": "Silkwire Stick", + "tier": "COMMON", + "glowing": true, + "id": "SILKWIRE_STICK" }, { - "material": "IRON_BOOTS", - "name": "Boots of the Pack", - "category": "BOOTS", - "tier": "EPIC", - "stats": { - "DEFENSE": 45, - "HEALTH": 50 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } - }, - "id": "BOOTS_OF_THE_PACK" + "material": "GLASS_BOTTLE", + "name": "Empty Odonata Bottle", + "tier": "UNCOMMON", + "id": "EMPTY_ODONATA_BOTTLE" }, { - "material": "IRON_LEGGINGS", - "name": "Leggings of the Pack", - "category": "LEGGINGS", - "tier": "EPIC", - "stats": { - "DEFENSE": 75, - "HEALTH": 80 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } - }, - "id": "LEGGINGS_OF_THE_PACK" + "material": "EXP_BOTTLE", + "name": "Bottled Odonata", + "tier": "RARE", + "id": "BOTTLED_ODONATA" }, { - "material": "LEATHER_HELMET", - "color": "255,255,255", - "name": "Helmet of the Pack", - "category": "HELMET", - "tier": "EPIC", - "stats": { - "DEFENSE": 65, - "HEALTH": 70 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } - }, - "id": "HELMET_OF_THE_PACK" + "material": "RED_ROSE", + "durability": 7, + "name": "Cat Detector", + "tier": "RARE", + "glowing": true, + "id": "DEAD_CAT_DETECTOR" + }, + { + "material": "HOPPER_MINECART", + "name": "Turbomax Vacuum Cleaner", + "tier": "RARE", + "motes_sell_price": 30, + "id": "TURBOMAX_VACUUM" + }, + { + "material": "CAULDRON", + "name": "Spider Receptacle (Plastic)", + "tier": "RARE", + "motes_sell_price": 30, + "id": "SPIDER_RECEPTACLE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1Njk2MDc1Mzc1MTUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVjNTc3ZTdkMzFlNWUwNGMyY2U3MWUxM2UzOTYyMTkyZDgwYmQ1NGI1NWVmYWFjYWFlYTEyOTY2ZmUyN2JmOSJ9fX0=", - "name": "Hunter Talisman", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 7 - } - }, - "id": "HUNTER_TALISMAN" + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmI5OTYwZWFkZTJkY2I2ZTc0NGM3ZDA4NGRlZjAwNTk5ZmU3MzI3ZTM5NzNjZDJjYTBhZjRhMmExZTZlYWMwOCJ9fX0=", + "name": "Glass Honey Aerosol", + "tier": "RARE", + "motes_sell_price": 30, + "id": "GLASS_HONEY_AEROSOL" + }, + { + "material": "GOLD_NUGGET", + "name": "Key to Infested House Soul", + "tier": "RARE", + "glowing": true, + "motes_sell_price": 5, + "description": "Hold this item in your inventory to use the soul in the infested house.", + "id": "KEY_TO_KAT_SOUL" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1Njk2MDc1Mzc1MTUsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVjNTc3ZTdkMzFlNWUwNGMyY2U3MWUxM2UzOTYyMTkyZDgwYmQ1NGI1NWVmYWFjYWFlYTEyOTY2ZmUyN2JmOSJ9fX0=", - "name": "Hunter Ring", - "category": "ACCESSORY", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTdlZDY2ZjVhNzAyMDlkODIxMTY3ZDE1NmZkYmMwY2EzYmYxMWFkNTRlZDVkODZlNzVjMjY1ZjdlNTAyOWVjMSJ9fX0=", + "name": "Fake Neuroscience Degree", "tier": "RARE", - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 7 - } - }, - "id": "HUNTER_RING" + "rift_transferrable": true, + "soulbound": "COOP", + "id": "FAKE_NEUROSCIENCE_DEGREE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk5OTYyODEsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU5ZDliMzI3ZmY4MmY2ZTEwOWI4NzQ2YzQ4YmZiN2Y2NDFlMTU1Mjg1NTQ5M2RkNDExOGJlMjRkNWIwMmJjMGEifX19", - "name": "Red Claw Ring", - "category": "ACCESSORY", + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjAyMjZkNGMxZDMwZmJlYmVjYWU5MzlkYTkwMDYwM2U0Y2QwZmVkODU5MmExYmIzZTExZjlhYzkyMzkxYTQ1YSJ9fX0=", + "name": "Bottled Inspiration", "tier": "RARE", + "description": "Its inspiration, but in a bottle!", + "id": "BOTTLED_INSPIRATION" + }, + { + "material": "LEATHER_CHESTPLATE", + "name": "Inspired Chestplate", + "color": "66,227,219", + "category": "CHESTPLATE", + "tier": "EPIC", "stats": { - "CRITICAL_DAMAGE": 3 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 5 - } + "RIFT_TIME": 50 }, - "id": "RED_CLAW_RING" + "glowing": true, + "id": "INSPIRED_CHESTPLATE" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NTAwMzc2MTYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NhZjU5YjhhYTBmODM1NDZlZjBkMTc4Y2NmODdlN2VkODhjZjc4NThjYWFlNzliMzYzM2NiZDc1YjY1MDUyNWYifX19", - "name": "Red Claw Artifact", - "category": "ACCESSORY", - "tier": "EPIC", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTMxNDYyOTc2NSwKICAicHJvZmlsZUlkIiA6ICJlZjJlZDE2NDA4YjU0NWQyYjAwMGM5YmE2Y2Y0MTJhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJiYXNlbmVzcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82ZTIxYTMxNTEyMWRmMDE5OWFjODMxNjQyZThhNTQ2YWRiYjVlZDM2MTY1MWZmYTRkNjk0NjZkOTkyNzk2MTI4IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=", + "name": "Retro-Encabulating Visor", + "tier": "MYTHIC", + "category": "HELMET", "stats": { - "CRITICAL_DAMAGE": 5 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 5 - } + "RIFT_INTELLIGENCE": -50 }, - "id": "RED_CLAW_ARTIFACT" + "id": "RETRO_ENCABULATING_VISOR" + }, + { + "material": "INK_SACK", + "durability": 2, + "name": "Gunthesizer Lichen", + "museum": true, + "tier": "RARE", + "id": "GUNTHESIZER_LICHEN" + }, + { + "material": "RAW_FISH", + "durability": 1, + "name": "Zoop the Fish", + "glowing": true, + "tier": "SPECIAL", + "museum": true, + "rift_transferrable": true, + "id": "ZOOP_THE_FISH" }, { "material": "SKULL_ITEM", "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzA1NDk5NDY3MTIsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzMxN2I1MWUwODZmMjAxNDQ4YTRiNDViMGI5MWU5N2ZhZjRkMTczOTA3MTQ4MGJlNmQ1Y2FiMGEwNTQ1MTIxNjQifX19", - "name": "Red Claw Talisman", - "category": "ACCESSORY", + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTIzMzA1NzU4MCwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2NjYzhhNjkwYzg5ZWJmMDFhZGYwNDQwYzBhM2Q1NDBlMmRiODljZmM5N2FkM2I4ZTAxODEwYmYzMjg5ZjY3YSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9", + "name": "Shadow Crux", "tier": "UNCOMMON", - "stats": { - "CRITICAL_DAMAGE": 1 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 1 - } - }, - "id": "RED_CLAW_TALISMAN" + "description": "Trust no one.\nNot even your own shadow.\nIt's always acting shady.", + "motes_sell_price": 100, + "id": "SHADOW_CRUX" + }, + { + "material": "FLINT", + "name": "Dark Pebble", + "museum": true, + "rift_transferrable": true, + "id": "DARK_PEBBLE" }, { "material": "IRON_SWORD", - "name": "Shaman Sword", - "category": "SWORD", - "tier": "EPIC", + "name": "Rift Test Sword", + "tier": "LEGENDARY", "stats": { - "WALK_SPEED": 5, - "DAMAGE": 100, - "STRENGTH": 20 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 3 - } + "RIFT_DAMAGE": 100 }, - "id": "SHAMAN_SWORD" + "id": "RIFT_TEST_SWORD" }, { - "material": "MUTTON", - "name": "Edible Mace", - "category": "SWORD", + "material": "STICK", + "name": "Test Rift Wand", + "category": "WAND", "tier": "RARE", "stats": { - "DAMAGE": 125, - "STRENGTH": 25 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 5 - } + "RIFT_DAMAGE": 20 }, - "id": "EDIBLE_MACE" + "id": "TEST_WAND_WEAPON" }, { - "material": "GOLD_SWORD", - "name": "Pooch Sword", - "category": "SWORD", - "tier": "LEGENDARY", + "id": "LEECH_SWORD", + "material": "WOOD_SWORD", + "name": "Leech Sword", + "tier": "RARE", "stats": { - "WALK_SPEED": 5, - "DAMAGE": 120, - "STRENGTH": 20 - }, - "requirements": { - "slayer": { - "slayer_boss_type": "wolf", - "level": 6 - } + "RIFT_DAMAGE": 3 }, - "gemstone_slots": [ - { - "slot_type": "JASPER", - "costs": [ - { - "coins": 50000 - }, - { - "item_id": "FINE_JASPER_GEM", - "amount": 20 - } - ] - } - ], - "id": "POOCH_SWORD" - }, - { - "material": "GHAST_TEAR", - "name": "Wolf Tooth", - "glowing": true, - "tier": "UNCOMMON", - "npc_sell_price": 1, - "id": "WOLF_TOOTH" + "item_specific": { + "mana_refund": 3 + } }, { "material": "EGG", @@ -71050,11 +76874,12 @@ "tier": "RARE", "npc_sell_price": 20840, "description": "%%gray%%%%italic%%May cause inflammation", - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 4 } - }, + ], "id": "GOBLIN_OMELETTE_SUNNY_SIDE" }, { @@ -71065,11 +76890,12 @@ "tier": "RARE", "npc_sell_price": 20840, "description": "%%gray%%%%italic%%May cause infections", - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 5 } - }, + ], "id": "GOBLIN_OMELETTE_SPICY" }, { @@ -71080,11 +76906,12 @@ "tier": "RARE", "npc_sell_price": 20840, "description": "%%gray%%%%italic%%May cause illness", - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 6 } - }, + ], "id": "GOBLIN_OMELETTE_BLUE_CHEESE" }, { @@ -71095,11 +76922,12 @@ "tier": "RARE", "npc_sell_price": 20840, "description": "%%gray%%%%italic%%May cause nausea", - "requirements": { - "heart_of_the_mountain": { + "requirements": [ + { + "type": "HEART_OF_THE_MOUNTAIN", "tier": 3 } - }, + ], "id": "GOBLIN_OMELETTE_PESTO" }, { @@ -71239,33 +77067,39 @@ "CRITICAL_DAMAGE": 126, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71275,21 +77109,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71299,122 +77138,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -71436,33 +77298,39 @@ "CRITICAL_DAMAGE": 126, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71472,21 +77340,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71496,122 +77369,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -71634,33 +77530,39 @@ "CRITICAL_DAMAGE": 126, "INTELLIGENCE": 38 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71670,21 +77572,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71694,122 +77601,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -71831,33 +77761,39 @@ "CRITICAL_DAMAGE": 126, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71867,21 +77803,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -71891,122 +77832,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -72028,82 +77992,96 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 15 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -72113,10 +78091,12 @@ "item_id": "HOT_TERROR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -72127,21 +78107,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72151,21 +78136,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72187,82 +78177,96 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -72272,10 +78276,12 @@ "item_id": "HOT_TERROR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -72286,21 +78292,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72310,21 +78321,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72346,82 +78362,96 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -72431,10 +78461,12 @@ "item_id": "HOT_TERROR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -72445,21 +78477,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72469,21 +78506,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72505,82 +78547,96 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -72590,10 +78646,12 @@ "item_id": "HOT_TERROR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -72604,21 +78662,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72628,21 +78691,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72665,82 +78733,96 @@ "CRITICAL_DAMAGE": 79, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -72750,10 +78832,12 @@ "item_id": "FIERY_TERROR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -72764,21 +78848,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72788,21 +78877,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72826,82 +78920,96 @@ "CRITICAL_DAMAGE": 79, "INTELLIGENCE": 24 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -72911,10 +79019,12 @@ "item_id": "FIERY_TERROR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -72925,21 +79035,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72949,21 +79064,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -72986,82 +79106,96 @@ "CRITICAL_DAMAGE": 79, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73071,10 +79205,12 @@ "item_id": "FIERY_TERROR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -73085,21 +79221,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73109,21 +79250,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73146,82 +79292,96 @@ "CRITICAL_DAMAGE": 79, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73231,10 +79391,12 @@ "item_id": "FIERY_TERROR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -73245,21 +79407,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73269,21 +79436,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73306,82 +79478,96 @@ "CRITICAL_DAMAGE": 63, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73391,10 +79577,12 @@ "item_id": "BURNING_TERROR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -73405,21 +79593,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73429,21 +79622,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73467,82 +79665,96 @@ "CRITICAL_DAMAGE": 63, "INTELLIGENCE": 19 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73552,10 +79764,12 @@ "item_id": "BURNING_TERROR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -73566,21 +79780,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73590,21 +79809,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73627,82 +79851,96 @@ "CRITICAL_DAMAGE": 63, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73712,10 +79950,12 @@ "item_id": "BURNING_TERROR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -73726,21 +79966,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73750,21 +79995,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73787,82 +80037,96 @@ "CRITICAL_DAMAGE": 63, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -73872,10 +80136,12 @@ "item_id": "BURNING_TERROR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -73886,21 +80152,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73910,21 +80181,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -73947,82 +80223,96 @@ "CRITICAL_DAMAGE": 100, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -74032,10 +80322,12 @@ "item_id": "INFERNAL_TERROR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -74046,21 +80338,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74070,21 +80367,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74107,82 +80409,96 @@ "CRITICAL_DAMAGE": 100, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -74192,10 +80508,12 @@ "item_id": "INFERNAL_TERROR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -74206,21 +80524,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74230,21 +80553,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74268,82 +80596,96 @@ "CRITICAL_DAMAGE": 100, "INTELLIGENCE": 30 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -74353,10 +80695,12 @@ "item_id": "INFERNAL_TERROR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -74367,21 +80711,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74391,21 +80740,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74428,82 +80782,96 @@ "CRITICAL_DAMAGE": 100, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -74513,10 +80881,12 @@ "item_id": "INFERNAL_TERROR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -74527,21 +80897,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74551,21 +80926,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74588,33 +80968,39 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74624,21 +81010,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74648,122 +81039,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -74785,33 +81199,39 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74821,21 +81241,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -74845,122 +81270,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -74982,33 +81430,39 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75018,21 +81472,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75042,122 +81501,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -75180,33 +81662,39 @@ "CRITICAL_DAMAGE": 50, "INTELLIGENCE": 38 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75216,21 +81704,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75240,122 +81733,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -75377,82 +81893,96 @@ "STRENGTH": 30, "CRITICAL_DAMAGE": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -75462,10 +81992,12 @@ "item_id": "HOT_CRIMSON_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -75476,21 +82008,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75500,21 +82037,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75536,82 +82078,96 @@ "STRENGTH": 30, "CRITICAL_DAMAGE": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -75621,10 +82177,12 @@ "item_id": "HOT_CRIMSON_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -75635,21 +82193,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75659,21 +82222,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75695,82 +82263,96 @@ "STRENGTH": 30, "CRITICAL_DAMAGE": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -75780,10 +82362,12 @@ "item_id": "HOT_CRIMSON_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -75794,21 +82378,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75818,21 +82407,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75854,82 +82448,96 @@ "STRENGTH": 30, "CRITICAL_DAMAGE": 20 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -75939,10 +82547,12 @@ "item_id": "HOT_CRIMSON_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -75953,21 +82563,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -75977,21 +82592,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76014,82 +82634,96 @@ "CRITICAL_DAMAGE": 32, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76099,10 +82733,12 @@ "item_id": "FIERY_CRIMSON_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -76113,21 +82749,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76137,21 +82778,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76175,82 +82821,96 @@ "CRITICAL_DAMAGE": 32, "INTELLIGENCE": 24 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76260,10 +82920,12 @@ "item_id": "FIERY_CRIMSON_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -76274,21 +82936,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76298,21 +82965,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76335,82 +83007,96 @@ "CRITICAL_DAMAGE": 32, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76420,10 +83106,12 @@ "item_id": "FIERY_CRIMSON_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -76434,21 +83122,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76458,21 +83151,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76495,82 +83193,96 @@ "CRITICAL_DAMAGE": 32, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76580,10 +83292,12 @@ "item_id": "FIERY_CRIMSON_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -76594,21 +83308,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76618,21 +83337,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76655,82 +83379,96 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76740,10 +83478,12 @@ "item_id": "BURNING_CRIMSON_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -76754,21 +83494,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76778,21 +83523,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76816,82 +83566,96 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 19 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -76901,10 +83665,12 @@ "item_id": "BURNING_CRIMSON_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -76915,21 +83681,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76939,21 +83710,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -76976,82 +83752,96 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77061,10 +83851,12 @@ "item_id": "BURNING_CRIMSON_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -77075,21 +83867,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77099,21 +83896,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77136,82 +83938,96 @@ "CRITICAL_DAMAGE": 25, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77221,10 +84037,12 @@ "item_id": "BURNING_CRIMSON_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -77235,21 +84053,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77259,21 +84082,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77296,82 +84124,96 @@ "CRITICAL_DAMAGE": 40, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77381,10 +84223,12 @@ "item_id": "INFERNAL_CRIMSON_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -77395,21 +84239,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77419,21 +84268,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77457,82 +84311,96 @@ "CRITICAL_DAMAGE": 40, "INTELLIGENCE": 30 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77542,10 +84410,12 @@ "item_id": "INFERNAL_CRIMSON_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -77556,21 +84426,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77580,21 +84455,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77617,82 +84497,96 @@ "CRITICAL_DAMAGE": 40, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77702,10 +84596,12 @@ "item_id": "INFERNAL_CRIMSON_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -77716,21 +84612,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77740,21 +84641,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77777,82 +84683,96 @@ "CRITICAL_DAMAGE": 40, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -77862,10 +84782,12 @@ "item_id": "INFERNAL_CRIMSON_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -77876,21 +84798,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77900,21 +84827,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77936,33 +84868,39 @@ "HEALTH": 403, "INTELLIGENCE": 479 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77972,21 +84910,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -77996,122 +84939,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -78131,33 +85097,39 @@ "HEALTH": 328, "INTELLIGENCE": 315 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78167,21 +85139,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78191,122 +85168,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -78326,33 +85326,39 @@ "HEALTH": 517, "INTELLIGENCE": 315 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78362,21 +85368,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78386,122 +85397,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -78521,33 +85555,39 @@ "HEALTH": 580, "INTELLIGENCE": 315 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78557,21 +85597,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78581,122 +85626,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -78715,82 +85783,96 @@ "HEALTH": 205, "INTELLIGENCE": 125 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -78800,10 +85882,12 @@ "item_id": "HOT_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -78814,21 +85898,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78838,21 +85927,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78872,82 +85966,96 @@ "HEALTH": 130, "INTELLIGENCE": 125 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -78957,10 +86065,12 @@ "item_id": "HOT_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -78971,21 +86081,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -78995,21 +86110,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79030,82 +86150,96 @@ "HEALTH": 160, "INTELLIGENCE": 190 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -79115,10 +86249,12 @@ "item_id": "HOT_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -79129,21 +86265,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79153,21 +86294,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79187,82 +86333,96 @@ "HEALTH": 230, "INTELLIGENCE": 125 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -79272,10 +86432,12 @@ "item_id": "HOT_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -79286,21 +86448,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79310,21 +86477,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79345,82 +86517,96 @@ "HEALTH": 206, "INTELLIGENCE": 198 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -79430,10 +86616,12 @@ "item_id": "FIERY_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -79444,21 +86632,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79468,21 +86661,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79503,82 +86701,96 @@ "HEALTH": 325, "INTELLIGENCE": 198 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -79588,10 +86800,12 @@ "item_id": "FIERY_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -79602,21 +86816,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79626,21 +86845,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79661,82 +86885,96 @@ "HEALTH": 365, "INTELLIGENCE": 198 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -79746,10 +86984,12 @@ "item_id": "FIERY_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -79760,21 +87000,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79784,21 +87029,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79820,82 +87070,96 @@ "HEALTH": 254, "INTELLIGENCE": 302 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -79905,10 +87169,12 @@ "item_id": "FIERY_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -79919,21 +87185,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79943,21 +87214,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -79978,82 +87254,96 @@ "HEALTH": 164, "INTELLIGENCE": 158 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80063,10 +87353,12 @@ "item_id": "BURNING_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -80077,21 +87369,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80101,21 +87398,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80137,82 +87439,96 @@ "HEALTH": 202, "INTELLIGENCE": 239 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80222,10 +87538,12 @@ "item_id": "BURNING_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -80236,21 +87554,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80260,21 +87583,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80295,82 +87623,96 @@ "HEALTH": 290, "INTELLIGENCE": 158 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80380,10 +87722,12 @@ "item_id": "BURNING_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -80394,21 +87738,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80418,21 +87767,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80453,82 +87807,96 @@ "HEALTH": 258, "INTELLIGENCE": 158 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80538,10 +87906,12 @@ "item_id": "BURNING_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -80552,21 +87922,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80576,21 +87951,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80611,82 +87991,96 @@ "HEALTH": 260, "INTELLIGENCE": 250 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80696,10 +88090,12 @@ "item_id": "INFERNAL_AURORA_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -80710,21 +88106,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80734,21 +88135,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80769,82 +88175,96 @@ "HEALTH": 410, "INTELLIGENCE": 250 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -80854,10 +88274,12 @@ "item_id": "INFERNAL_AURORA_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -80868,21 +88290,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80892,21 +88319,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -80927,82 +88359,96 @@ "HEALTH": 460, "INTELLIGENCE": 250 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -81012,10 +88458,12 @@ "item_id": "INFERNAL_AURORA_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -81026,21 +88474,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81050,21 +88503,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81086,82 +88544,96 @@ "HEALTH": 320, "INTELLIGENCE": 380 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -81171,10 +88643,12 @@ "item_id": "INFERNAL_AURORA_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -81185,21 +88659,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81209,21 +88688,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81244,33 +88728,39 @@ "HEALTH": 529, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81280,21 +88770,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81304,122 +88799,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -81440,33 +88958,39 @@ "HEALTH": 454, "INTELLIGENCE": 38 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81476,21 +89000,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81500,122 +89029,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -81635,33 +89187,39 @@ "HEALTH": 668, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81671,21 +89229,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81695,122 +89258,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -81830,33 +89416,39 @@ "HEALTH": 403, "INTELLIGENCE": 13 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "gemstone_slots": [ { "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81866,21 +89458,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -81890,122 +89487,145 @@ "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 41000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 48000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 56000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 65500 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 76000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 89000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 105000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 120000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 140000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 10 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 165000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 15 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 192000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 20 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 225000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 265000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 40 } @@ -82024,82 +89644,96 @@ "HEALTH": 210, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -82109,10 +89743,12 @@ "item_id": "HOT_FERVOR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -82123,21 +89759,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82147,21 +89788,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82182,82 +89828,96 @@ "HEALTH": 180, "INTELLIGENCE": 15 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -82267,10 +89927,12 @@ "item_id": "HOT_FERVOR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -82281,21 +89943,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82305,21 +89972,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82339,82 +90011,96 @@ "HEALTH": 160, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -82424,10 +90110,12 @@ "item_id": "HOT_FERVOR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -82438,21 +90126,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82462,21 +90155,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82496,82 +90194,96 @@ "HEALTH": 265, "INTELLIGENCE": 5 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 30 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 35 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 40 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 45 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 50 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 55 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 60 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 70 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 2 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 80 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 90 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } @@ -82581,10 +90293,12 @@ "item_id": "HOT_FERVOR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 150 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 10 } @@ -82595,21 +90309,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82619,21 +90338,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82655,82 +90379,96 @@ "HEALTH": 286, "INTELLIGENCE": 24 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -82740,10 +90478,12 @@ "item_id": "FIERY_FERVOR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -82754,21 +90494,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82778,21 +90523,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82813,82 +90563,96 @@ "HEALTH": 254, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -82898,10 +90662,12 @@ "item_id": "FIERY_FERVOR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -82912,21 +90678,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82936,21 +90707,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -82971,82 +90747,96 @@ "HEALTH": 421, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83056,10 +90846,12 @@ "item_id": "FIERY_FERVOR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -83070,21 +90862,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83094,21 +90891,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83129,82 +90931,96 @@ "HEALTH": 333, "INTELLIGENCE": 8 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 900 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1125 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1450 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1650 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 1850 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2100 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2350 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 2650 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83214,10 +91030,12 @@ "item_id": "FIERY_FERVOR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 4500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 50 } @@ -83228,21 +91046,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83252,21 +91075,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83287,82 +91115,96 @@ "HEALTH": 265, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83372,10 +91214,12 @@ "item_id": "BURNING_FERVOR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -83386,21 +91230,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83410,21 +91259,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83445,82 +91299,96 @@ "HEALTH": 334, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83530,10 +91398,12 @@ "item_id": "BURNING_FERVOR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -83544,21 +91414,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83568,21 +91443,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83604,82 +91484,96 @@ "HEALTH": 227, "INTELLIGENCE": 19 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83689,10 +91583,12 @@ "item_id": "BURNING_FERVOR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -83703,21 +91599,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83727,21 +91628,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83762,82 +91668,96 @@ "HEALTH": 202, "INTELLIGENCE": 6 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 170 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 190 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 215 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 240 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 270 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 340 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 390 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 440 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -83847,10 +91767,12 @@ "item_id": "BURNING_FERVOR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 800 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 20 } @@ -83861,21 +91783,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83885,21 +91812,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -83920,82 +91852,96 @@ "HEALTH": 420, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -84005,10 +91951,12 @@ "item_id": "INFERNAL_FERVOR_LEGGINGS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -84019,21 +91967,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84043,21 +91996,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84078,82 +92036,96 @@ "HEALTH": 530, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -84163,10 +92135,12 @@ "item_id": "INFERNAL_FERVOR_CHESTPLATE", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -84177,21 +92151,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84201,21 +92180,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84237,82 +92221,96 @@ "HEALTH": 360, "INTELLIGENCE": 30 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -84322,10 +92320,12 @@ "item_id": "INFERNAL_FERVOR_HELMET", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -84336,21 +92336,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84360,21 +92365,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84395,82 +92405,96 @@ "HEALTH": 320, "INTELLIGENCE": 10 }, - "requirements": { - "skill": { - "type": "COMBAT", + "requirements": [ + { + "type": "SKILL", + "skill": "COMBAT", "level": 24 } - }, + ], "can_have_attributes": true, "upgrade_costs": [ [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 5600 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 6300 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 7000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 8000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 9000 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 10200 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 11500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 3 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 13000 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 4 } ], [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 14500 }, { + "type": "ITEM", "item_id": "HEAVY_PEARL", "amount": 5 } @@ -84480,10 +92504,12 @@ "item_id": "INFERNAL_FERVOR_BOOTS", "costs": [ { + "type": "ESSENCE", "essence_type": "CRIMSON", "amount": 25500 }, { + "type": "ITEM", "item_id": "KUUDRA_TEETH", "amount": 80 } @@ -84494,21 +92520,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84518,21 +92549,26 @@ "slot_type": "COMBAT", "costs": [ { + "type": "COINS", "coins": 250000 }, { + "type": "ITEM", "item_id": "FLAWLESS_JASPER_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_SAPPHIRE_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_RUBY_GEM", "amount": 1 }, { + "type": "ITEM", "item_id": "FLAWLESS_AMETHYST_GEM", "amount": 1 } @@ -84730,220 +92766,955 @@ "id": "CAMPFIRE_TALISMAN_18" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", - "name": "Campfire God Badge", - "category": "ACCESSORY", - "tier": "LEGENDARY", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_24" + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", + "name": "Campfire God Badge", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_24" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", + "name": "Campfire God Badge", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_27" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", + "name": "Campfire Adept Badge", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_4" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", + "name": "Campfire Adept Badge", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_7" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", + "name": "Campfire Scion Badge", + "category": "ACCESSORY", + "tier": "EPIC", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_16" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", + "name": "Campfire Initiate Badge", + "category": "ACCESSORY", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_3" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", + "name": "Campfire Scion Badge", + "category": "ACCESSORY", + "tier": "EPIC", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_20" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", + "name": "Campfire Scion Badge", + "category": "ACCESSORY", + "tier": "EPIC", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_17" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", + "name": "Campfire God Badge", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_22" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", + "name": "Campfire Cultist Badge", + "category": "ACCESSORY", + "tier": "RARE", + "soulbound": "COOP", + "id": "CAMPFIRE_TALISMAN_12" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", + "name": "Rubbish Ring of Love", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "id": "WEDDING_RING_3" + }, + { + "material": "GOLD_NUGGET", + "name": "§eYellow Rock of Love", + "glowing": true, + "category": "ACCESSORY", + "soulbound": "COOP", + "id": "WEDDING_RING_1" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", + "name": "Classy Ring of Love", + "category": "ACCESSORY", + "tier": "RARE", + "soulbound": "COOP", + "id": "WEDDING_RING_6" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", + "name": "Exquisite Ring of Love", + "category": "ACCESSORY", + "tier": "EPIC", + "soulbound": "COOP", + "id": "WEDDING_RING_7" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", + "name": "Modest Ring of Love", + "category": "ACCESSORY", + "tier": "RARE", + "soulbound": "COOP", + "id": "WEDDING_RING_4" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", + "name": "Mediocre Ring of Love", + "category": "ACCESSORY", + "tier": "UNCOMMON", + "soulbound": "COOP", + "id": "WEDDING_RING_2" + }, + { + "material": "GOLD_NUGGET", + "name": "§eShiny Yellow Rock", + "glowing": true, + "category": "ACCESSORY", + "soulbound": "COOP", + "id": "WEDDING_RING_0" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", + "name": "Invaluable Ring of Love", + "category": "ACCESSORY", + "tier": "EPIC", + "soulbound": "COOP", + "id": "WEDDING_RING_8" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", + "name": "Refined Ring of Love", + "category": "ACCESSORY", + "tier": "RARE", + "soulbound": "COOP", + "id": "WEDDING_RING_5" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", + "name": "Legendary Ring of Love", + "category": "ACCESSORY", + "tier": "LEGENDARY", + "soulbound": "COOP", + "id": "WEDDING_RING_9" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODI0Zjc2OWM5NDUwZjIyZTQ4NGUwODljYTAyZTMyNGZlMzdiMThmNGMxOGVmMjk2MDIxODcxYmE0YWQwYzM5NiJ9fX0=", + "name": "Eccentric Painting Bundle", + "tier": "LEGENDARY", + "npc_sell_price": 9, + "item_specific": { + "bundled_item_id": "ECCENTRIC_PAINTING", + "bundled_amount": 9 + }, + "id": "ECCENTRIC_PAINTING_BUNDLE" + }, + { + "material": "SKULL_ITEM", + "durability": 3, + "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTQzNjM2MDg1NywKICAicHJvZmlsZUlkIiA6ICIzYTNmNzhkZmExZjQ0OTllYjE5NjlmYzlkOTEwZGYwYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb19jcmVyYXIiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2NlOWVlNmM5NDcyYTFmOThhYjlmNzg0NDc4NTQwNWRmYThiNTZkOGUyMzFjZDMyNjc1YWM1YmFhOTg0OWJlOSIKICAgIH0KICB9Cn0=", + "name": "Tropical Bird 1 Minion Skin", + "category": "COSMETIC", + "museum": true, + "id": "TROPICAL_BIRD_1_PERSONALITY" + }, + { + "material": "FISHING_ROD", + "name": "Rod of Champions", + "category": "FISHING_ROD", + "tier": "RARE", + "stats": { + "damage": 90, + "strength": 80, + "sea_creature_chance": 4, + "fishing_speed": 90 + }, + "npc_sell_price": 17800, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 15 + } + ], + "id": "CHAMP_ROD" + }, + { + "material": "FISHING_ROD", + "name": "Yeti Rod", + "category": "FISHING_ROD", + "tier": "EPIC", + "stats": { + "damage": 150, + "strength": 130, + "fishing_speed": 75 + }, + "npc_sell_price": 150000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 25 + } + ], + "id": "YETI_ROD" + }, + { + "material": "FISHING_ROD", + "name": "Starter Lava Rod", + "category": "FISHING_ROD", + "tier": "UNCOMMON", + "stats": { + "damage": 50, + "strength": 50, + "fishing_speed": 8 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 10 + } + ], + "soulbound": "COOP", + "id": "STARTER_LAVA_ROD" + }, + { + "material": "FISHING_ROD", + "name": "Rod of Legends", + "category": "FISHING_ROD", + "tier": "EPIC", + "stats": { + "damage": 130, + "strength": 120, + "sea_creature_chance": 6, + "fishing_speed": 105 + }, + "npc_sell_price": 111000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 20 + } + ], + "id": "LEGEND_ROD" + }, + { + "material": "FISHING_ROD", + "name": "Hellfire Rod", + "category": "FISHING_ROD", + "tier": "LEGENDARY", + "stats": { + "damage": 180, + "strength": 180, + "sea_creature_chance": 14, + "fishing_speed": 75 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 35 + } + ], + "npc_sell_price": 5634000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "LUMP_OF_MAGMA", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 1 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 50 + } + ], + [ + { + "type": "ITEM", + "item_id": "MOOGMA_PELT", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "PYROCLASTIC_SCALE", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 100 + } + ], + [ + { + "type": "ITEM", + "item_id": "CUP_OF_BLOOD", + "amount": 50 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 40 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "FLAMING_HEART", + "amount": 70 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 50 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "ORB_OF_ENERGY", + "amount": 80 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 60 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 90 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 70 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ], + [ + { + "type": "ITEM", + "item_id": "THUNDER_SHARDS", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_GOLD", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 1000 + } + ], + [ + { + "type": "ITEM", + "item_id": "MAGMA_LORD_FRAGMENT", + "amount": 25 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_GOLD", + "amount": 40 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 4 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 1200 + } + ], + [ + { + "type": "ITEM", + "item_id": "MAGMA_LORD_FRAGMENT", + "amount": 30 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_GOLD", + "amount": 50 + }, + { + "type": "ITEM", + "item_id": "HEAVY_PEARL", + "amount": 5 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 1600 + } + ] + ], + "id": "HELLFIRE_ROD" + }, + { + "material": "FISHING_ROD", + "name": "Ice Rod", + "category": "FISHING_ROD", + "tier": "RARE", + "stats": { + "damage": 30, + "fishing_speed": 15 + }, + "npc_sell_price": 20000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 3 + } + ], + "museum": true, + "id": "ICE_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", - "name": "Campfire God Badge", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Phantom Rod", + "category": "FISHING_WEAPON", "tier": "LEGENDARY", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_27" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", - "name": "Campfire Adept Badge", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_4" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", - "name": "Campfire Adept Badge", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_7" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", - "name": "Campfire Scion Badge", - "category": "ACCESSORY", - "tier": "EPIC", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_16" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWY0MWNjMjI1MGQyZjVjZmNmNDM4NGFhMGNmM2UyM2MxOTc2NzU0OWEyYThhYmQ3NTMyYmQ1MmM1YTFkZSJ9fX0=", - "name": "Campfire Initiate Badge", - "category": "ACCESSORY", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_3" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", - "name": "Campfire Scion Badge", - "category": "ACCESSORY", - "tier": "EPIC", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_20" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", - "name": "Campfire Scion Badge", - "category": "ACCESSORY", - "tier": "EPIC", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_17" + "stats": { + "damage": 200, + "strength": 125, + "fishing_speed": 100 + }, + "npc_sell_price": 1000, + "dungeon_item_conversion_cost": { + "essence_type": "UNDEAD", + "amount": 500 + }, + "upgrade_costs": [ + [ + { + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 200 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 300 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 400 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 500 + } + ], + [ + { + "type": "ESSENCE", + "essence_type": "UNDEAD", + "amount": 600 + } + ] + ], + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 21 + } + ], + "id": "PHANTOM_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDA4MGJiZWZjYTg3ZGMwZjM2NTM2YjY1MDg0MjVjZmM0Yjk1YmE2ZThmNWU2YTQ2ZmY5ZTljYjQ4OGE5ZWQifX19", - "name": "Campfire God Badge", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Auger Rod", + "category": "FISHING_ROD", "tier": "LEGENDARY", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_22" + "stats": { + "damage": 135, + "strength": 90, + "fishing_speed": 110 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 25 + } + ], + "id": "AUGER_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTNjZmQ5NGU5MjVlYWI0MzMwYTc2OGFmY2FlNmMxMjhiMGEyOGUyMzE0OWVlZTQxYzljNmRmODk0YzI0ZjNkZSJ9fX0=", - "name": "Campfire Cultist Badge", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Magma Rod", + "category": "FISHING_ROD", "tier": "RARE", - "soulbound": "COOP", - "id": "CAMPFIRE_TALISMAN_12" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", - "name": "Rubbish Ring of Love", - "category": "ACCESSORY", - "tier": "UNCOMMON", - "id": "WEDDING_RING_3" - }, - { - "material": "GOLD_NUGGET", - "name": "§eYellow Rock of Love", - "glowing": true, - "category": "ACCESSORY", - "soulbound": "COOP", - "id": "WEDDING_RING_1" + "stats": { + "damage": 150, + "strength": 150, + "sea_creature_chance": 6, + "fishing_speed": 40 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 27 + } + ], + "npc_sell_price": 8000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "LUMP_OF_MAGMA", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 1 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 50 + } + ], + [ + { + "type": "ITEM", + "item_id": "MOOGMA_PELT", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "PYROCLASTIC_SCALE", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 100 + } + ] + ], + "id": "MAGMA_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", - "name": "Classy Ring of Love", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Challenging Rod", + "category": "FISHING_ROD", "tier": "RARE", - "soulbound": "COOP", - "id": "WEDDING_RING_6" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", - "name": "Exquisite Ring of Love", - "category": "ACCESSORY", - "tier": "EPIC", - "soulbound": "COOP", - "id": "WEDDING_RING_7" + "stats": { + "damage": 60, + "strength": 60, + "sea_creature_chance": 2, + "fishing_speed": 75 + }, + "npc_sell_price": 5000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 10 + } + ], + "id": "CHALLENGE_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", - "name": "Modest Ring of Love", - "category": "ACCESSORY", - "tier": "RARE", - "soulbound": "COOP", - "id": "WEDDING_RING_4" + "material": "FISHING_ROD", + "name": "Shredder", + "category": "FISHING_WEAPON", + "tier": "LEGENDARY", + "stats": { + "damage": 120, + "ferocity": 50, + "fishing_speed": 115 + }, + "npc_sell_price": 1000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 20 + } + ], + "id": "THE_SHREDDER" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzI5ODA0NDkwNDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg2OTBjMThlMmI4NzgwYzkyN2ZkMTIxZDVhMzYxOTZhNTNhNzJjNjcwYTg5ZDc4NWRlZWRlZTMxNTUwMjRiMmEifX19", - "name": "Mediocre Ring of Love", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Speedster Rod", + "category": "FISHING_ROD", "tier": "UNCOMMON", - "soulbound": "COOP", - "id": "WEDDING_RING_2" + "stats": { + "damage": 30, + "strength": 15, + "fishing_speed": 45 + }, + "npc_sell_price": 1000, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 6 + } + ], + "museum": true, + "id": "SPEEDSTER_ROD" }, { - "material": "GOLD_NUGGET", - "name": "§eShiny Yellow Rock", - "glowing": true, - "category": "ACCESSORY", - "soulbound": "COOP", - "id": "WEDDING_RING_0" + "material": "FISHING_ROD", + "name": "Farmer's Rod", + "category": "FISHING_ROD", + "tier": "UNCOMMON", + "stats": { + "damage": 50, + "strength": 20, + "fishing_speed": 60 + }, + "npc_sell_price": 1050, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 8 + } + ], + "museum": true, + "id": "FARMER_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", - "name": "Invaluable Ring of Love", - "category": "ACCESSORY", + "material": "FISHING_ROD", + "name": "Inferno Rod", + "category": "FISHING_ROD", "tier": "EPIC", - "soulbound": "COOP", - "id": "WEDDING_RING_8" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", - "name": "Refined Ring of Love", - "category": "ACCESSORY", - "tier": "RARE", - "soulbound": "COOP", - "id": "WEDDING_RING_5" - }, - { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0aW1lc3RhbXAiOjE1NzMwNjU2NzkyMDMsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmYjI2NWM4Y2M2MTM2MDYzYjRlYjE1NDUwZmUxZmUxYWI3NzM4YjBiZjU0ZDI2NTQ5MGUxZWY0OWRhNjBiN2MifX19", - "name": "Legendary Ring of Love", - "category": "ACCESSORY", - "tier": "LEGENDARY", - "soulbound": "COOP", - "id": "WEDDING_RING_9" + "stats": { + "damage": 170, + "strength": 170, + "sea_creature_chance": 10, + "fishing_speed": 60 + }, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 30 + } + ], + "npc_sell_price": 1028000, + "can_have_attributes": true, + "salvageable_from_recipe": true, + "upgrade_costs": [ + [ + { + "type": "ITEM", + "item_id": "LUMP_OF_MAGMA", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 1 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 50 + } + ], + [ + { + "type": "ITEM", + "item_id": "MOOGMA_PELT", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 2 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 80 + } + ], + [ + { + "type": "ITEM", + "item_id": "PYROCLASTIC_SCALE", + "amount": 20 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 3 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 100 + } + ], + [ + { + "type": "ITEM", + "item_id": "CUP_OF_BLOOD", + "amount": 50 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 40 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 160 + } + ], + [ + { + "type": "ITEM", + "item_id": "FLAMING_HEART", + "amount": 70 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 50 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 200 + } + ], + [ + { + "type": "ITEM", + "item_id": "ORB_OF_ENERGY", + "amount": 80 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 60 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 300 + } + ], + [ + { + "type": "ITEM", + "item_id": "HORN_OF_TAURUS", + "amount": 90 + }, + { + "type": "ITEM", + "item_id": "MAGMA_FISH_SILVER", + "amount": 70 + }, + { + "type": "ESSENCE", + "essence_type": "CRIMSON", + "amount": 400 + } + ] + ], + "id": "INFERNO_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODI0Zjc2OWM5NDUwZjIyZTQ4NGUwODljYTAyZTMyNGZlMzdiMThmNGMxOGVmMjk2MDIxODcxYmE0YWQwYzM5NiJ9fX0=", - "name": "Eccentric Painting Bundle", - "tier": "LEGENDARY", - "npc_sell_price": 9, - "item_specific": { - "bundled_item_id": "ECCENTRIC_PAINTING", - "bundled_amount": 9 + "material": "FISHING_ROD", + "name": "Sponge Rod", + "category": "FISHING_ROD", + "stats": { + "damage": 20, + "strength": 15, + "fishing_speed": 30 }, - "id": "ECCENTRIC_PAINTING_BUNDLE" + "npc_sell_price": 36, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 5 + } + ], + "museum": true, + "id": "SPONGE_ROD" }, { - "material": "SKULL_ITEM", - "durability": 3, - "skin": "ewogICJ0aW1lc3RhbXAiIDogMTY0OTQzNjM2MDg1NywKICAicHJvZmlsZUlkIiA6ICIzYTNmNzhkZmExZjQ0OTllYjE5NjlmYzlkOTEwZGYwYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb19jcmVyYXIiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2NlOWVlNmM5NDcyYTFmOThhYjlmNzg0NDc4NTQwNWRmYThiNTZkOGUyMzFjZDMyNjc1YWM1YmFhOTg0OWJlOSIKICAgIH0KICB9Cn0=", - "name": "Tropical Bird 1 Minion Skin", - "category": "COSMETIC", + "material": "FISHING_ROD", + "name": "Prismarine Rod", + "category": "FISHING_ROD", + "stats": { + "damage": 15, + "strength": 10, + "fishing_speed": 15 + }, + "npc_sell_price": 10, + "requirements": [ + { + "type": "SKILL", + "skill": "FISHING", + "level": 3 + } + ], "museum": true, - "id": "TROPICAL_BIRD_1_PERSONALITY" + "id": "PRISMARINE_ROD" }, { "material": "EMPTY_MAP", diff --git a/middleware/auth.js b/middleware/auth.js index 7e71a7e..d0cfeb5 100644 --- a/middleware/auth.js +++ b/middleware/auth.js @@ -31,4 +31,4 @@ module.exports = (req, res, next) => { status: 400, reason: 'Missing "key" query parameter, or an "authorization" header with a valid SkyHelper API key', }); -}; +}; \ No newline at end of file diff --git a/middleware/errorhandler.js b/middleware/errorhandler.js index 4602504..ffd19e1 100644 --- a/middleware/errorhandler.js +++ b/middleware/errorhandler.js @@ -1,39 +1,39 @@ //CREDIT: https://github.com/Senither/hypixel-skyblock-facade (Modified) module.exports = (error, _, response, __) => { - if (error.hasOwnProperty('response')) { - switch (error.response.status) { - case 403: - return createJsonResponse(response, 403, 'Invalid Hypixel API token provided'); + if (error.hasOwnProperty('response')) { + switch (error.response.status) { + case 403: + return createJsonResponse(response, 403, 'Invalid Hypixel API token provided'); - case 404: - return createJsonResponse(response, 404, 'The requested resource does not exist'); + case 404: + return createJsonResponse(response, 404, 'The requested resource does not exist'); - case 429: - return createJsonResponse(response, 429, 'You have hit the rate-limit, please slow down your requests'); + case 429: + return createJsonResponse(response, 429, 'You have hit the rate-limit, please slow down your requests'); - case 502: - return createJsonResponse(response, 502, 'Hypixels API is currently experiencing some technical issues, try again later'); + case 502: + return createJsonResponse(response, 502, 'Hypixels API is currently experiencing some technical issues, try again later'); - case 504: - return createJsonResponse(response, 504, 'Hypixels API timed out'); + case 504: + return createJsonResponse(response, 504, 'Hypixels API timed out'); - case 521: - return createJsonResponse(response, 503, 'Hypixels API is currently in maintenance mode, try again later'); - } - } + case 521: + return createJsonResponse(response, 503, 'Hypixels API is currently in maintenance mode, try again later'); + } + } - const jsonResponse = { - status: 500, - reason: error.message, - }; - console.log(error); + const jsonResponse = { + status: 500, + reason: error.message, + }; + console.log(error); - return response.status(500).json(jsonResponse); + return response.status(500).json(jsonResponse); }; function createJsonResponse(response, statusCode, reason) { - return response.status(statusCode).json({ - status: statusCode, - reason: reason, - }); -} + return response.status(statusCode).json({ + status: statusCode, + reason: reason, + }); +} \ No newline at end of file diff --git a/package.json b/package.json index 4fbaeea..5a15457 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "express": "^4.17.1", "express-rate-limit": "^6.3.0", "lilyweight": "^2.7.0", + "moment": "^2.29.4", "prismarine-nbt": "^1.6.0", "util": "^0.12.4" }, diff --git a/public/index.html b/public/index.html index 95636b4..6032f93 100644 --- a/public/index.html +++ b/public/index.html @@ -109,6 +109,9 @@
GET
/v1/profiles/:userGET
/v1/profile/:user/:profileGET
/v1/items/:userGET
/v1/items/:user/:profileGET
/v1/auctions/:userGET
/v1/bingo/:userGET
/v1/calendarGET
/v1/fetchurprofile | This can be the users profile id or name | +
name | +Name of the desired item | +
lore | +Lore of the desired item | +
rarity | +Rarity of the desired item | +
category | +Category of the desired item | +
bin | +Should the auction be BIN or Auction, boolean | +
lowest_price | +Lowest price of the desired item | +
highest_price | +Highest price of the desired item | +
This API has been made possible by Hypixel Skyblock Facade - and SkyCrypt and a lot of the code + , SkyCrypt and MaroAPI and a lot of the code comes from them. Make sure to check them out!
diff --git a/routes/v1/auctions.js b/routes/v1/auctions.js new file mode 100644 index 0000000..c9bb206 --- /dev/null +++ b/routes/v1/auctions.js @@ -0,0 +1,20 @@ +//CREDIT: https://github.com/Senither/hypixel-skyblock-facade (Modified) +const { makeRequest, wrap } = require('../../utils/request'); +const { isUuid } = require('../../utils/uuid'); +const getActiveAuctions = require('../../stats/auctions.js'); + +module.exports = wrap(async function (req, res) { + let uuid = req.params.uuid; + if (!isUuid(uuid)) { + const mojang_response = await makeRequest(res, `https://api.ashcon.app/mojang/v2/user/${uuid}`); + if (mojang_response?.data?.uuid) { + uuid = mojang_response.data.uuid.replace(/-/g, ''); + } + } + + const auctionsRes = (await makeRequest(res, `https://api.hypixel.net/skyblock/auction?key=${process.env.HYPIXEL_API_KEY}&player=${uuid}`)).data; + + const auctions = getActiveAuctions(auctionsRes) + + return res.status(200).json({ status: 200, data: auctions }); +}); diff --git a/routes/v1/bingo.js b/routes/v1/bingo.js new file mode 100644 index 0000000..1b6da22 --- /dev/null +++ b/routes/v1/bingo.js @@ -0,0 +1,23 @@ +//CREDIT: https://github.com/Senither/hypixel-skyblock-facade (Modified) +const { isUuid } = require('../../utils/uuid'); +const { makeRequest, wrap } = require('../../utils/request'); +const { parseBingoProfile } = require('../../utils/hypixel'); + +module.exports = wrap(async function (req, res) { + let uuid = req.params.uuid; + if (!isUuid(uuid)) { + const mojang_response = await makeRequest(res, `https://api.ashcon.app/mojang/v2/user/${uuid}`); + if (mojang_response?.data?.uuid) { + uuid = mojang_response.data.uuid.replace(/-/g, ''); + } + } + + const profileRes = await makeRequest(res, `https://api.hypixel.net/skyblock/bingo?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const bingoRes = await makeRequest(res, `https://api.hypixel.net/resources/skyblock/bingo`); + + if (bingoRes.data.id !== profileRes.data.events[profileRes.data.events.length-1].key) return res.status(200).json({status: 200, data: `Found no Bingo profiles for a user with a UUID of '${uuid}'` }) + + const profile = parseBingoProfile(profileRes, bingoRes, uuid); + + return res.status(200).json({ status: 200, data: profile }); +}); diff --git a/routes/v1/calendar.js b/routes/v1/calendar.js new file mode 100644 index 0000000..73d15e3 --- /dev/null +++ b/routes/v1/calendar.js @@ -0,0 +1,9 @@ +//CREDIT: https://github.com/Senither/hypixel-skyblock-facade (Modified) +const { wrap } = require('../../utils/request'); +const { buildSkyblockCalendar } = require('../../constants/calendar'); + +module.exports = wrap(async function (req, res) { + const calendar = buildSkyblockCalendar(null, Date.now(), (Date.now()+10710000000), 1, false) + + return res.status(200).json({ status: 200, data: calendar }); +}); diff --git a/routes/v1/profile.js b/routes/v1/profile.js index 12a455a..f799bb7 100644 --- a/routes/v1/profile.js +++ b/routes/v1/profile.js @@ -13,10 +13,9 @@ module.exports = wrap(async function (req, res) { } } - const playerRes = await makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const [playerRes, profileRes] = await Promise.all([makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`), makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`)]); const player = parseHypixel(playerRes, uuid, res); - - const profileRes = await makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const profile = await parseProfile(player, profileRes, uuid, profileid, res); return res.status(200).json({ status: 200, data: profile }); diff --git a/routes/v1/profileItems.js b/routes/v1/profileItems.js index 1f2f20a..8dffe92 100644 --- a/routes/v1/profileItems.js +++ b/routes/v1/profileItems.js @@ -13,10 +13,9 @@ module.exports = wrap(async function (req, res) { } } - const playerRes = await makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const [playerRes, profileRes] = await Promise.all([makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`), makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`)]); const player = parseHypixel(playerRes, uuid, res); - - const profileRes = await makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const profile = await parseProfileItems(player, profileRes, uuid, profileid, res); return res.status(200).json({ status: 200, data: profile }); diff --git a/routes/v1/profiles.js b/routes/v1/profiles.js index 3fba21c..c115fcf 100644 --- a/routes/v1/profiles.js +++ b/routes/v1/profiles.js @@ -12,10 +12,9 @@ module.exports = wrap(async function (req, res) { } } - const playerRes = await makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const [playerRes, profileRes] = await Promise.all([makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`), makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`)]); const player = parseHypixel(playerRes, uuid, res); - - const profileRes = await makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const profile = await parseProfiles(player, profileRes, uuid, res); return res.status(200).json({ status: 200, data: profile }); diff --git a/routes/v1/profilesItems.js b/routes/v1/profilesItems.js index 82bcd5e..52e826e 100644 --- a/routes/v1/profilesItems.js +++ b/routes/v1/profilesItems.js @@ -13,10 +13,9 @@ module.exports = wrap(async function (req, res) { } } - const playerRes = await makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const [playerRes, profileRes] = await Promise.all([makeRequest(res, `https://api.hypixel.net/player?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`), makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`)]); const player = parseHypixel(playerRes, uuid, res); - - const profileRes = await makeRequest(res, `https://api.hypixel.net/skyblock/profiles?key=${process.env.HYPIXEL_API_KEY}&uuid=${uuid}`); + const profile = await parseProfilesItems(player, profileRes, uuid, res); return res.status(200).json({ status: 200, data: profile }); diff --git a/stats/auctions.js b/stats/auctions.js new file mode 100644 index 0000000..d91c2ea --- /dev/null +++ b/stats/auctions.js @@ -0,0 +1,44 @@ +module.exports = (auctionsData) => { + const auctions = { + totalAuctions: 0, + activeAuctions: 0, + unclaimedAuctions: 0, + soldAuctions: 0, + coinsToClaim: 0, + valueIfAllSold: 0, + active: [], + ended: [], + }; + + for (const auction of auctionsData.auctions) { + if (auction.end >= Date.now()) { + auctions.totalAuctions++; + auctions.activeAuctions++; + auctions.valueIfAllSold += auction.bin ? auction.starting_bid : auction.highest_bid_amount + + if (auction.item_lore.includes('\n')) auction.item_lore = auction.item_lore.split('\n') + auctions.active.push(auction) + } + else { + if (!auction.claimed) { + auctions.totalAuctions++; + auctions.unclaimedAuctions++; + auctions.coinsToClaim += auction.highest_bid_amount + auctions.valueIfAllSold += auction.highest_bid_amount + + if (auction.item_lore.includes('\n')) auction.item_lore = auction.item_lore.split('\n') + auctions.ended.push(auction) + } + } + } + + return { + total: auctions.totalAuctions, + activeAuctions: auctions.activeAuctions, + unclaimed: auctions.unclaimedAuctions, + coinsToClaim: auctions.coinsToClaim, + valueIfAllSold: auctions.valueIfAllSold, + active: auctions.active, + ended: auctions.ended + }; +}; diff --git a/stats/bingo.js b/stats/bingo.js new file mode 100644 index 0000000..429ae75 --- /dev/null +++ b/stats/bingo.js @@ -0,0 +1,35 @@ +module.exports = (profile, bingo) => { + profile = Object.values(profile.events[Object.values(profile.events).length-1]) + const completedGoals = profile[profile.length-1] + const bingoGoals = bingo.goals + const player = [] + const community = [] + + for (const quest of bingoGoals) { + if (!quest.tiers) { + const questData = { + completed: completedGoals.includes(quest.id), + id: quest.id, + name: quest.name, + lore: quest?.lore, + requiredAmount: quest.requiredAmount, + } + player.push(questData) + } else { + const questData = { + completed: quest.progress > quest.tiers[quest.tiers.length-1], + id: quest.id, + name: quest.name, + tiers: quest.tiers, + progress: quest.progress, + } + community.push(questData) + } + } + return { + points: profile[profile.length-2], + id: bingo.id, + player, + community, + } +}; diff --git a/stats/crimson.js b/stats/crimson.js index b0efc11..46792b6 100644 --- a/stats/crimson.js +++ b/stats/crimson.js @@ -1,12 +1,10 @@ -const crimson = require('../constants/crimson.js'); - -module.exports = async (profile) => { +module.exports = (profile) => { if (profile.nether_island_player_data) { const crimsonIsland = { - factions: crimson.factions, - matriarch: crimson.matriarch, - kuudra_completed_tiers: crimson.kuudra_completed_tiers, - dojo: crimson.dojo, + factions: {}, + matriarch: {}, + kuudra_completed_tiers: {}, + dojo: {}, } crimsonIsland.factions.selected_faction = profile.nether_island_player_data.selected_faction @@ -18,6 +16,7 @@ module.exports = async (profile) => { Object.keys(profile.nether_island_player_data.kuudra_completed_tiers).forEach((key) => { crimsonIsland.kuudra_completed_tiers[key] = profile.nether_island_player_data.kuudra_completed_tiers[key] }) + Object.keys(profile.nether_island_player_data.dojo).forEach((key) => { crimsonIsland.dojo[key.toUpperCase()] = profile.nether_island_player_data.dojo[key] }) @@ -26,10 +25,10 @@ module.exports = async (profile) => { } else { return { - factions: crimson.factions, - matriarch: crimson.matriarch, - kuudra_completed_tiers: crimson.kuudra_completed_tiers, - dojo: crimson.dojo, + factions: {}, + matriarch: {}, + kuudra_completed_tiers: {}, + dojo: {}, }; } }; diff --git a/stats/dungeons.js b/stats/dungeons.js index 7b1be4d..d4a8360 100644 --- a/stats/dungeons.js +++ b/stats/dungeons.js @@ -16,7 +16,10 @@ module.exports = (player, profile) => { floors[floor_name] = { times_played: catacombs?.times_played ? catacombs?.times_played[floor] || 0 : 0, completions: catacombs?.tier_completions ? catacombs?.tier_completions[floor] || 0 : 0, - best_score: { score: catacombs?.best_score ? catacombs?.best_score[floor] || 0 : 0, name: getScoreName(catacombs?.best_score ? catacombs?.best_score[floor] || 0 : 0) }, + best_score: { + score: catacombs?.best_score ? catacombs?.best_score[floor] || 0 : 0, + name: getScoreName(catacombs?.best_score ? catacombs?.best_score[floor] || 0 : 0) + }, fastest: catacombs?.fastest_time ? catacombs?.fastest_time[floor] || 0 : 0, fastest_s: catacombs?.fastest_time_s ? catacombs?.fastest_time_s[floor] || 0 : 0, fastest_s_plus: catacombs?.fastest_time_s_plus ? catacombs?.fastest_time_s_plus[floor] || 0 : 0, @@ -25,26 +28,39 @@ module.exports = (player, profile) => { } const master_mode_floors = {} - const master_available_floors = Object.keys(dungeons?.dungeon_types.master_catacombs.mobs_killed || []) + 1 - for (const floor in master_available_floors) { - if (floor != 0) { - master_mode_floors[`floor_${floor}`] = { - times_played: master_catacombs?.times_played ? master_catacombs?.times_played[floor] || 0 : 0, - completions: master_catacombs?.tier_completions ? master_catacombs?.tier_completions[floor] || 0 : 0, - best_score: { score: master_catacombs?.best_score ? master_catacombs?.best_score[floor] || 0 : 0, name: getScoreName(master_catacombs?.best_score ? master_catacombs?.best_score[floor] || 0 : 0) }, - fastest: master_catacombs?.fastest_time ? master_catacombs?.fastest_time[floor] || 0 : 0, - fastest_s: master_catacombs?.fastest_time_s ? master_catacombs?.fastest_time_s[floor] || 0 : 0, - fastest_s_plus: master_catacombs?.fastest_time_s_plus ? master_catacombs?.fastest_time_s_plus[floor] || 0 : 0, - mobs_killed: master_catacombs?.mobs_killed ? master_catacombs?.mobs_killed[floor] || 0 : 0 - } + for (let i = 1; i <= dungeons?.dungeon_types.master_catacombs.highest_tier_completed; i++) { + master_mode_floors[`floor_${i}`] = { + completions: master_catacombs?.tier_completions[i] ?? 0, + best_score: { + score: master_catacombs?.best_score[i] ?? 0, + name: getScoreName(master_catacombs?.best_score[i] ?? 0) + }, + fastest: master_catacombs?.fastest_time[i] ?? 0, + fastest_s: master_catacombs?.fastest_time_s[i] ?? 0, + fastest_s_plus: master_catacombs?.fastest_time_s_plus[i] ?? 0, + mobs_killed: master_catacombs?.mobs_killed[i] ?? 0 } } - let highest_tier_completed = null - if (catacombs) { - if (master_catacombs?.highest_tier_completed) highest_tier_completed = 'M' + master_catacombs?.highest_tier_completed - else if (catacombs?.highest_tier_completed) highest_tier_completed = 'F' + catacombs?.highest_tier_completed - } + + const highest_tier_completed = master_catacombs?.highest_tier_completed ? `M${master_catacombs?.highest_tier_completed}` : catacombs?.highest_tier_completed ? `F${catacombs?.highest_tier_completed}` : null + + const perks = { + catacombs_boss_luck: profile?.perks.catacombs_boss_luck ?? 0, + catacombs_looting: profile?.perks.catacombs_looting ?? 0, + catacombs_intelligence: profile?.perks.catacombs_intelligence ?? 0, + catacombs_health: profile?.perks.catacombs_health ?? 0, + catacombs_strength: profile?.perks.catacombs_strength ?? 0, + catacombs_crit_damage: profile?.perks.catacombs_crit_damage ?? 0, + catacombs_defense: profile?.perks.catacombs_defense ?? 0, + permanent_speed: profile?.perks.permanent_defense ?? 0, + permanent_intelligence: profile?.perks.permanent_intelligence ?? 0, + permanent_health: profile?.perks.permanent_health ?? 0, + permanent_defense: profile?.perks.permanent_defense ?? 0, + permanent_strength: profile?.perks.permanent_strength ?? 0, + forbidden_blessing: profile?.perks.forbidden_blessing ?? 0, + revive_stone: profile?.perks.revive_stone ?? 0, + } return { selected_class: titleCase(dungeons?.selected_dungeon_class), @@ -58,27 +74,21 @@ module.exports = (player, profile) => { }, catacombs: { skill: calcSkill('dungeoneering', dungeons?.dungeon_types.catacombs.experience || 0), + perks, highest_tier_completed, floors, master_mode_floors } } - } catch (err) { + } catch (error) { return null } } function getScoreName(score) { - //CREDIT: https://github.com/Senither/hypixel-skyblock-facade - let name = 'C' - if (score >= 300) { - name = 'S+' - } else if (score >= 270) { - name = 'S' - } else if (score >= 240) { - name = 'A' - } else if (score >= 175) { - name = 'B' - } - return name + if (score >= 300) return 'S+' + if (score >= 270) return 'S' + if (score >= 240) return 'A' + if (score >= 175) return 'B' + return 'C' } \ No newline at end of file diff --git a/stats/enchanting.js b/stats/enchanting.js new file mode 100644 index 0000000..c0ff841 --- /dev/null +++ b/stats/enchanting.js @@ -0,0 +1,23 @@ +const getSkills = require('./skills'); + +module.exports = (player, profile) => { + const enchanting = { + simon: {}, + pairings: {}, + numbers: {}, + claims_resets: 0, + claims_resets_timestamp: 'None', + }; + if (profile.experimentation) { + enchanting.simon = profile.experimentation.simon; + enchanting.pairings = profile.experimentation.pairings; + enchanting.numbers = profile.experimentation.numbers; + enchanting.claims_resets = profile.experimentation.claims_resets; + enchanting.claims_resets_timestamp = profile.experimentation.claims_resets_timestamp; + } + + return { + enchanting: getSkills(player, profile).enchanting?.level || 0, + experimentation: enchanting, + } +}; diff --git a/stats/farming.js b/stats/farming.js new file mode 100644 index 0000000..e726b4d --- /dev/null +++ b/stats/farming.js @@ -0,0 +1,140 @@ +const getSkills = require('./skills'); + +const crops = { + CARROT_ITEM: { + name: "Carrot", + }, + CACTUS: { + name: "Cactus", + }, + "INK_SACK:3": { + name: "Cocoa Beans", + }, + MELON: { + name: "Melon", + }, + MUSHROOM_COLLECTION: { + name: "Mushroom", + }, + NETHER_STALK: { + name: "Nether Wart", + }, + POTATO_ITEM: { + name: "Potato", + }, + PUMPKIN: { + name: "Pumpkin", + }, + SUGAR_CANE: { + name: "Sugar Cane", + }, + WHEAT: { + name: "Wheat", + } +} + +module.exports = (player, profile) => { + const jacob = { + talked: profile.jacob2?.talked || false, + }; + const trapper_quest = { + last_task_time: 'None', + pelt_count: 0 + }; + + if (profile.trapper_quest) { + trapper_quest.last_task_time = profile.trapper_quest?.last_task_time ? profile.trapper_quest?.last_task_time : 'None' + trapper_quest.pelt_count = profile.trapper_quest.pelt_count ?? 0 + }; + + if (jacob.talked) { + jacob.medals = { + bronze: profile.jacob2.medals_inv.bronze || 0, + silver: profile.jacob2.medals_inv.silver || 0, + gold: profile.jacob2.medals_inv.gold || 0, + }; + jacob.total_badges = { + bronze: 0, + silver: 0, + gold: 0, + }; + jacob.perks = { + double_drops: profile.jacob2.perks?.double_drops || 0, + farming_level_cap: profile.jacob2.perks?.farming_level_cap || 0, + }; + jacob.unique_golds = profile.jacob2.unique_golds2?.length || 0; + jacob.crops = {}; + + for (const crop in crops) { + jacob.crops[crop] = crops[crop]; + + Object.assign(jacob.crops[crop], { + participated: false, + unique_gold: profile.jacob2.unique_golds2?.includes(crop) || false, + contests: 0, + personal_best: 0, + badges: { + gold: 0, + silver: 0, + bronze: 0, + }, + }); + } + + const contests = { + attended_contests: 0, + all_contests: [], + }; + + for (const contest_id in profile.jacob2.contests) { + const data = profile.jacob2.contests[contest_id]; + const contest_name = contest_id.split(":"); + const date = `${contest_name[1]}_${contest_name[0]}`; + const crop = contest_name.slice(2).join(":"); + + jacob.crops[crop].contests++; + jacob.crops[crop].participated = true; + if (data.collected > jacob.crops[crop].personal_best) jacob.crops[crop].personal_best = data.collected; + + const contest = { + date: date, + crop: crop, + collected: data.collected, + claimed: data.claimed_rewards || false, + medal: null, + }; + + const placing = {}; + if (contest.claimed) { + placing.position = data.claimed_position || 0; + placing.percentage = (data.claimed_position / data.claimed_participants) * 100; + + if (placing.percentage <= 5) { + contest.medal = "gold"; + jacob.total_badges.gold++; + jacob.crops[crop].badges.gold++; + } else if (placing.percentage <= 25) { + contest.medal = "silver"; + jacob.total_badges.silver++; + jacob.crops[crop].badges.silver++; + } else if (placing.percentage <= 60) { + contest.medal = "bronze"; + jacob.total_badges.bronze++; + jacob.crops[crop].badges.bronze++; + } + } + + contest.placing = placing; + contests.attended_contests++; + contests.all_contests.push(contest); + } + + jacob.contests = contests; + } + + return { + farming: getSkills(player, profile).farming?.level || 0, + trapper_quest, + jacob, + } +}; diff --git a/stats/items.js b/stats/items.js index bea8d27..3c652e4 100644 --- a/stats/items.js +++ b/stats/items.js @@ -1,4 +1,4 @@ -const { decodeData, decodeArrayBuffer } = require('../utils/nbt'); +const { decodeData } = require('../utils/nbt'); const { toTimestamp } = require('../constants/maro_networth/src/helper'); const { toFixed } = require('../constants/functions'); diff --git a/stats/milestones.js b/stats/milestones.js index f12a902..9e03b08 100644 --- a/stats/milestones.js +++ b/stats/milestones.js @@ -37,7 +37,7 @@ function getCurrentPet(pet, stats) { xpForNext = Math.ceil(milestones[pet][level]) } - let left = xpForNext - stats + let left = xpForNext - stats > 0 ? xpForNext - stats : 0 progress = level >= 5 ? 0 : Math.max(0, Math.min(stats / xpForNext, 1)); return { diff --git a/stats/networth.js b/stats/networth.js index b5d1bca..b7cc9de 100644 --- a/stats/networth.js +++ b/stats/networth.js @@ -20,10 +20,13 @@ module.exports = async (profile, profileData) => { const networth = await networthGenerator.getNetworth(items, profile, bank); if (Object.keys(networth.categories).length < 0) return { no_inventory: true }; + return { total_networth: networth.networth, + unsoulbound_networth: networth.unsoulbound_networth, purse: networth.purse, bank: networth.bank, + personal_bank: networth.personal_bank, types: networth.categories, }; -}; +}; \ No newline at end of file diff --git a/stats/pets.js b/stats/pets.js index a6f6f95..e00b566 100644 --- a/stats/pets.js +++ b/stats/pets.js @@ -1,342 +1,6 @@ -// CREDIT: https://github.com/SkyCryptWebsite/SkyCrypt/ (Modified) -const { titleCase, capitalize, renderLore, formatNumber } = require('../constants/functions') -const { pet_skins } = require('../constants/skins') -const constants = require('../constants/pets') +const xp_tables = require('../constants/xp_tables') +const { titleCase } = require('../constants/functions') - -const rarities = [ - "common", - "uncommon", - "rare", - "epic", - "legendary", - "mythic", - "divine", - "supreme", - "special", - "very_special", - ]; - -async function getPets(profile) { - let output = []; - - if (!("pets" in profile)) return output; - - for (const pet of profile.pets) { - if (!("tier" in pet)) { - continue; - } - - const petData = constants.pet_data[pet.type] || { - head: "/head/bc8ea1f51f253ff5142ca11ae45193a4ad8c3ab5e9c6eec8ba7a4fcb7bac40", - type: "???", - maxTier: "LEGENDARY", - maxLevel: 100, - }; - - petData.typeGroup = petData.typeGroup ?? pet.type; - - pet.rarity = pet.tier.toLowerCase(); - pet.stats = {}; - pet.ignoresTierBoost = petData.ignoresTierBoost; - const lore = []; - const petName = - petData.hatching?.level > pet.level - ? petData.hatching.name - : petData.name - ? petData.name[pet.rarity] ?? petData.name.default - : titleCase(pet.type.replaceAll("_", " ")); - - // Rarity upgrades - if (pet.heldItem == "PET_ITEM_TIER_BOOST" && !pet.ignoresTierBoost) { - pet.rarity = - rarities[ - Math.min(rarities.indexOf(petData.maxTier), rarities.indexOf(pet.rarity) + 1) - ]; - } - - if (pet.heldItem == "PET_ITEM_VAMPIRE_FANG" || pet.heldItem == "PET_ITEM_TOY_JERRY") { - if (rarities.indexOf(pet.rarity) === rarities.indexOf(petData.maxTier) - 1) { - pet.rarity = petData.maxTier; - } - } - - // Get texture - if (typeof petData.head === "object") { - pet.texture_path = petData.head[pet.rarity] ?? petData.head.default; - } else { - pet.texture_path = petData.head; - } - - if (petData.hatching?.level > pet.level) { - pet.texture_path = petData.hatching.head; - } - - let petSkin = null; - if (pet.skin && pet_skins?.[`PET_SKIN_${pet.skin}`]) { - pet.texture_path = pet_skins[`PET_SKIN_${pet.skin}`].texture; - petSkin = pet_skins[`PET_SKIN_${pet.skin}`].name; - } - const levelData = getPetLevel(pet.exp, petData.customLevelExpRarityOffset ?? pet.rarity, petData.maxLevel); - - pet.name = `[Lvl ${levelData[0]}] ${petName}${petSkin ? ' ✦' : ''}` - - pet.display_name = `${petName}${petSkin ? " ✦" : ""}`; - - - pet.xpMaxLevel = levelData[4] - pet.level = levelData[0] - pet.xpCurrent = levelData[1] - pet.xpForNext = levelData[2] - pet.progress = levelData[3] - - - // Get first row of lore - const loreFirstRow = ["§8"]; - - if (petData.type === "all") { - loreFirstRow.push("All Skills"); - } else { - loreFirstRow.push(capitalize(petData.type), " ", petData.category ?? "Pet"); - - if (petData.obtainsExp === "feed") { - loreFirstRow.push(", feed to gain XP"); - } - - if (petSkin) { - loreFirstRow.push(`, ${petSkin} Skin`); - } - } - - lore.push(loreFirstRow.join(""), ""); - - const rarity = rarities.indexOf(pet.rarity); - - - const searchName = pet.type in constants.petStats ? pet.type : "???"; - const petInstance = new constants.petStats[searchName](rarity, pet.level, pet.extra); - pet.stats = Object.assign({}, petInstance.stats); - pet.ref = petInstance; - - - - if (pet.heldItem) { - const { heldItem } = pet; - let heldItemObj = await constants.pet_items[heldItem] - - if (heldItem in constants.pet_items) { - for (const stat in constants.pet_items[heldItem]?.stats) { - pet.stats[stat] = (pet.stats[stat] || 0) + constants.pet_items[heldItem].stats[stat]; - } - for (const stat in constants.pet_items[heldItem]?.statsPerLevel) { - pet.stats[stat] = - (pet.stats[stat] || 0) + constants.pet_items[heldItem].statsPerLevel[stat] * pet.level; - } - for (const stat in constants.pet_items[heldItem]?.multStats) { - if (pet.stats[stat]) { - pet.stats[stat] = (pet.stats[stat] || 0) * constants.pet_items[heldItem].multStats[stat]; - } - } - if ("multAllStats" in constants.pet_items[heldItem]) { - for (const stat in pet.stats) { - pet.stats[stat] *= constants.pet_items[heldItem].multAllStats; - } - } - } - - // push pet lore after held item stats added - const stats = pet.ref.lore(pet.stats); - stats.forEach((line) => { - lore.push(line); - }); - - // then the ability lore - const abilities = pet.ref.abilities; - abilities.forEach((ability) => { - lore.push(" ", ability.name); - ability.desc.forEach((line) => { - lore.push(line); - }); - }); - - // now we push the lore of the held items - if (!heldItemObj) { - heldItemObj = constants.pet_items[heldItem]; - } - lore.push("", `§6Held Item: §${constants.rarityColors[heldItemObj.tier.toLowerCase()]}${heldItemObj.name}`); - - if (heldItem in constants.pet_items) { - lore.push(constants.pet_items[heldItem].description); - } - // extra line - lore.push(" "); - } else { - // no held items so push the new stats - const stats = pet.ref.lore(); - stats.forEach((line) => { - lore.push(line); - }); - - const abilities = pet.ref.abilities; - abilities.forEach((ability) => { - lore.push(" ", ability.name); - ability.desc.forEach((line) => { - lore.push(line); - }); - }); - - // extra line - lore.push(" "); - } - - // passive perks text - if (petData.passivePerks) { - lore.push("§8This pet's perks are active even when the pet is not summoned!", ""); - } - - // always gains exp text - if (petData.alwaysGainsExp) { - lore.push("§8This pet gains XP even when not summoned!", ""); - - if (typeof petData.alwaysGainsExp === "string") { - lore.push(`§8This pet only gains XP on the ${petData.alwaysGainsExp}§8!`, ""); - } - } - - if (pet.level < petData.maxLevel) { - lore.push(`§7Progress to Level ${pet.level + 1}: §e${(pet.progress * 100).toFixed(1)}%`); - - const progress = Math.ceil(pet.progress * 20); - const numerator = pet.xpCurrent.toLocaleString(); - const denominator = formatNumber(pet.xpForNext, false, 10); - - lore.push(`§2${"-".repeat(progress)}§f${"-".repeat(20 - progress)} §e${numerator} §6/ §e${denominator}`); - } else { - lore.push("§bMAX LEVEL"); - } - - lore.push( - "", - `§7Total XP: §e${formatNumber(pet.exp, true, 10)} §6/ §e${formatNumber( - pet.xpMaxLevel, - true, - 10 - )} §6(${Math.floor((pet.exp / pet.xpMaxLevel) * 100)}%)` - ); - - if (petData.obtainsExp !== "feed") { - lore.push(`§7Candy Used: §e${pet.candyUsed || 0} §6/ §e10`); - } - - pet.lore = ""; - - // pet.ref = null - delete(pet.ref) - delete(pet.uuid) - - // eslint-disable-next-line no-unused-vars - for (const [index, line] of lore.entries()) { - pet.lore += '' + renderLore(line) + "\n"; - } - pet.lore = pet.lore.split('\n') - - output.push(pet); - } - - output = output.sort((a, b) => { - if (a.active === b.active) { - if (a.rarity == b.rarity) { - if (a.type == b.type) { - return a.level.level > b.level.level ? -1 : 1; - } else { - let maxPetA = output - .filter((x) => x.type == a.type && x.rarity == a.rarity) - .sort((x, y) => y.level.level - x.level.level); - - maxPetA = maxPetA.length > 0 ? maxPetA[0].level.level : null; - - let maxPetB = output - .filter((x) => x.type == b.type && x.rarity == b.rarity) - .sort((x, y) => y.level.level - x.level.level); - - maxPetB = maxPetB.length > 0 ? maxPetB[0].level.level : null; - - if (maxPetA && maxPetB && maxPetA == maxPetB) { - return a.type < b.type ? -1 : 1; - } else { - return maxPetA > maxPetB ? -1 : 1; - } - } - } else { - return rarities.indexOf(a.rarity) < rarities.indexOf(b.rarity) ? 1 : -1; - } - } - - return a.active ? -1 : 1; - }); - - return output; -} - - - -function getPetLevel(petExp, offsetRarity, maxLevel) { - const rarityOffset = constants.pet_rarity_offset[offsetRarity]; - const levels = constants.pet_levels.slice(rarityOffset, rarityOffset + maxLevel - 1); - - const xpMaxLevel = levels.reduce((a, b) => a + b, 0); - let xpTotal = 0; - let level = 1; - - let xpForNext = Infinity; - - for (let i = 0; i < maxLevel; i++) { - xpTotal += levels[i]; - - if (xpTotal > petExp) { - xpTotal -= levels[i]; - break; - } else { - level++; - } - } - - let xpCurrent = Math.floor(petExp - xpTotal); - let progress; - - if (level < maxLevel) { - xpForNext = Math.ceil(levels[level - 1]); - progress = Math.max(0, Math.min(xpCurrent / xpForNext, 1)); - } else { - level = maxLevel; - xpCurrent = petExp - levels[maxLevel - 1]; - xpForNext = 0; - progress = 0; - } - - return [ level, xpCurrent, xpForNext, progress, xpMaxLevel ] - - } - - async function getBackpackContents(arraybuf) { - const buf = Buffer.from(arraybuf); - - let data = await parseNbt(buf); - data = nbt.simplify(data); - - const items = data.i; - - for (const [index, item] of items.entries()) { - item.isInactive = true; - item.inBackpack = true; - item.item_index = index; - } - - return items; -} - -module.exports = { getPets } -/* module.exports = (profile) => { const pets = profile?.pets if (pets) { @@ -344,7 +8,10 @@ module.exports = (profile) => { for (let pet of pets) { all_pets.push(getPet(pet)) } - return all_pets + return { + auto_pet: profile.autopet, + all_pets, + } } else { return [] } @@ -355,13 +22,10 @@ function getPet(pet) { let pet_rarity_offset = { common: 0, uncommon: 6, rare: 11, epic: 16, legendary: 20, mythic: 20 } const rarityOffset = pet_rarity_offset[rarity] const levels = xp_tables.pets.slice(rarityOffset, rarityOffset + 99) - let xpTotal = 0 let level = 1 let xpForNext = Infinity - let maxLevel = 100 - if (pet.type === 'GOLDEN_DRAGON') maxLevel = 200 - + let maxLevel = pet.type === 'GOLDEN_DRAGON' ? 200 : 100 for (let i = 0; i < maxLevel; i++) { xpTotal += levels[i]; if (xpTotal > pet.exp) { @@ -373,7 +37,6 @@ function getPet(pet) { } let xpCurrent = Math.floor(pet.exp - xpTotal) let progress - if (level < maxLevel) { xpForNext = Math.ceil(levels[level - 1]); progress = Math.max(0, Math.min(xpCurrent / xpForNext, 1)); @@ -385,4 +48,4 @@ function getPet(pet) { } let name = `[Lvl ${level}] ${titleCase(pet.type.replace(/_/g, ' '))}${pet.skin ? ' ✦' : ''}` return { name, level, xpCurrent, xpForNext, progress, tier: pet.tier, type: pet.type, exp: pet.exp, skin: pet.skin } -}*/ \ No newline at end of file +} \ No newline at end of file diff --git a/stats/talismans.js b/stats/talismans.js index cfc5323..e67c0b7 100644 --- a/stats/talismans.js +++ b/stats/talismans.js @@ -5,6 +5,11 @@ const { talismans: allTalismans } = require('../constants/talismans'); module.exports = async (profile) => { if (profile.talisman_bag?.data) { const talismans = { + talismanBagUpgrades: profile?.accessory_bag_storage?.bag_upgrades_purchased, + currentReforge: profile?.accessory_bag_storage?.selected_power, + unlockedReforges: profile?.accessory_bag_storage?.unlocked_powers, + tuningsSlots: profile?.accessory_bag_storage?.tuning?.highest_unlocked_slot, + tunings: profile?.accessory_bag_storage?.tuning, common: [], uncommon: [], rare: [], @@ -14,6 +19,7 @@ module.exports = async (profile) => { special: [], very: [], }; + delete(talismans.tunings.highest_unlocked_slot) const talisman_bag = (await decodeData(Buffer.from(profile.talisman_bag.data, 'base64'))).i; for (const talisman of talisman_bag) { @@ -46,7 +52,6 @@ module.exports = async (profile) => { else talismans[getRarity(talisman.tag?.display.Lore)] = new_talisman; } } - return talismans; } else { return { diff --git a/stats/trophyFishing.js b/stats/trophyFishing.js index ce09641..e923003 100644 --- a/stats/trophyFishing.js +++ b/stats/trophyFishing.js @@ -1,11 +1,9 @@ -const { allTrophyFish } = require('../constants/trophyFishing.js'); - -module.exports = async (profile) => { +module.exports = (profile) => { if (profile.trophy_fish) { const trophyFish = { total_caught: 0, rewards: [], - fish: allTrophyFish, + fish: {}, }; trophyFish.rewards = profile.trophy_fish.rewards trophyFish.total_caught = profile.trophy_fish.total_caught @@ -20,7 +18,7 @@ module.exports = async (profile) => { return { rewards: [], total_caught: 0, - fish: allTrophyFish, + fish: {}, }; } }; diff --git a/utils/hypixel.js b/utils/hypixel.js index 8ed5151..6b30a9e 100644 --- a/utils/hypixel.js +++ b/utils/hypixel.js @@ -8,11 +8,14 @@ const getMinions = require('../stats/minions'); const getSlayer = require('../stats/slayer'); const getKills = require('../stats/kills'); const getDeaths = require('../stats/deaths'); -const { getPets } = require('../stats/pets'); +const getPets = require('../stats/pets'); +const getBingo = require('../stats/bingo') const getEquipment = require('../stats/equipment') const getArmor = require('../stats/armor') const getTalismans = require('../stats/talismans'); const getCollections = require('../stats/collections'); +const getEnchanting = require('../stats/enchanting') +const getFarming = require('../stats/farming') const getMining = require('../stats/mining'); const getDungeons = require('../stats/dungeons.js'); const getTrophyFish = require('../stats/trophyFishing') @@ -21,16 +24,13 @@ const getWeight = require('../stats/weight'); const getMissing = require('../stats/missing'); const getNetworth = require('../stats/networth'); const getBestiary = require('../stats/bestiary'); -const { isUuid } = require('./uuid'); - const getContent = require('../stats/items') - +const { isUuid } = require('./uuid'); module.exports = { parseHypixel: function parseHypixel(playerRes, uuid, res) { if (playerRes.data.hasOwnProperty('player') && playerRes.data.player == null) { - res.status(404).json({ status: 404, reason: `Found no Player data for a user with a UUID of '${uuid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no Player data for a user with a UUID of '${uuid}'` }); } const data = playerRes.data.player; const achievements = data.achievements; @@ -57,8 +57,7 @@ module.exports = { }, parseProfile: async function parseProfile(player, profileRes, uuid, profileid, res) { if (profileRes.data.hasOwnProperty('profiles') && profileRes.data.profiles == null) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); } if (!isUuid(profileid)) { for (const profile of profileRes.data?.profiles || []) { @@ -70,17 +69,15 @@ module.exports = { const profileData = profileRes.data.profiles.find((a) => a.profile_id === profileid); if (!profileData) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); } if (!isValidProfile(profileData.members, uuid)) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'` }); } const profile = profileData.members[uuid]; - + const [networth, weight, missing, armor, equipment, talismans, cakebag] = await Promise.all([getNetworth(profile, profileData), getWeight(profile, uuid), getMissing(profile), getArmor(profile), getEquipment(profile), getTalismans(profile), getCakebag(profile)]); return { username: player.name, uuid: uuid, @@ -97,31 +94,32 @@ module.exports = { purse: profile.coin_purse || 0, bank: profileData.banking?.balance || 0, skills: getSkills(player, profile), - networth: await getNetworth(profile, profileData), - weight: await getWeight(profile, uuid), + networth: networth, + weight: weight, bestiary: getBestiary(profile), dungeons: getDungeons(player, profile), - crimson: await getCrimson(profile), - trophy_fish: await getTrophyFish(profile), + crimson: getCrimson(profile), + trophy_fish: getTrophyFish(profile), + enchanting: getEnchanting(player, profile), + farming: getFarming(player, profile), mining: getMining(player, profile), slayer: getSlayer(profile), milestones: getMilestones(profile), - missing: await getMissing(profile), + missing: missing, kills: getKills(profile), deaths: getDeaths(profile), - armor: await getArmor(profile), - equipment: await getEquipment(profile), - pets: await getPets(profile), - talismans: await getTalismans(profile), + armor: armor, + equipment: equipment, + pets: getPets(profile), + talismans: talismans, collections: getCollections(profileData), minions: getMinions(profileData), - cakebag: await getCakebag(profile), + cakebag: cakebag, }; }, parseProfiles: async function parseProfile(player, profileRes, uuid, res) { if (profileRes.data.hasOwnProperty('profiles') && profileRes.data.profiles == null) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); } const result = []; @@ -131,7 +129,8 @@ module.exports = { continue; } const profile = profileData.members[uuid]; - + const [networth, weight, missing, armor, equipment, talismans, cakebag] = await Promise.all([getNetworth(profile, profileData), getWeight(profile, uuid), getMissing(profile), getArmor(profile), getEquipment(profile), getTalismans(profile), getCakebag(profile)]); + result.push({ username: player.name, uuid: uuid, @@ -148,25 +147,27 @@ module.exports = { purse: profile.coin_purse || 0, bank: profileData.banking?.balance || 0, skills: getSkills(player, profile), - networth: await getNetworth(profile, profileData), - weight: await getWeight(profile, uuid), + networth: networth, + weight: weight, bestiary: getBestiary(profile), dungeons: getDungeons(player, profile), - crimson: await getCrimson(profile), - trophy_fish: await getTrophyFish(profile), + crimson: getCrimson(profile), + trophy_fish: getTrophyFish(profile), + enchanting: getEnchanting(player, profile), + farming: getFarming(player, profile), mining: getMining(player, profile), slayer: getSlayer(profile), milestones: getMilestones(profile), - missing: await getMissing(profile), + missing: missing, kills: getKills(profile), deaths: getDeaths(profile), - armor: await getArmor(profile), - equipment: await getEquipment(profile), - pets: await getPets(profile), - talismans: await getTalismans(profile), + armor: armor, + equipment: equipment, + pets: getPets(profile), + talismans: talismans, collections: getCollections(profileData), minions: getMinions(profileData), - cakebag: await getCakebag(profile), + cakebag: cakebag, }); } if (result.length == 0) res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); @@ -174,8 +175,7 @@ module.exports = { }, parseProfileItems: async function parseProfileItems(player, profileRes, uuid, profileid, res) { if (profileRes.data.hasOwnProperty('profiles') && profileRes.data.profiles == null) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); } if (!isUuid(profileid)) { @@ -188,13 +188,11 @@ module.exports = { const profileData = profileRes.data.profiles.find((a) => a.profile_id === profileid); if (!profileData) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}' and profile of '${profileid}'` }); } if (!isValidProfile(profileData.members, uuid)) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'` }); } const profile = profileData.members[uuid]; @@ -211,8 +209,7 @@ module.exports = { parseProfilesItems: async function parseProfileItems(player, profileRes, uuid, res) { if (profileRes.data.hasOwnProperty('profiles') && profileRes.data.profiles == null) { - res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); - return; + return res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); } const result = []; @@ -234,9 +231,13 @@ module.exports = { } if (result.length == 0) res.status(404).json({ status: 404, reason: `Found no SkyBlock profiles for a user with a UUID of '${uuid}'.` }); return result.sort((a, b) => b.last_save - a.last_save); - } - - + }, + parseBingoProfile: function parseBingoProfile(profile, bingo, uuid) { + return { + uuid: uuid, + profile: getBingo(profile.data, bingo.data) + } + }, }; function isValidProfile(profileMembers, uuid) {