Used for rendering the enchanted glint on items.
Prices for items that cost bits.
{
"ITEM_ID": Number,
...
}
Various constants for the bot.
Prices for items that cost copper.
{
"ITEM_ID": Number,
...
}
Loot items and drop chances for dragons.
{
"dragon": {
"Item Name": {
"unique": Boolean,
"quality": Number,
"drop_chance": String,
"eye": Boolean
},
...
}
...
}
Loot items and drop chances for dungeons.
{
"floor": {
"Chest": [
{
"item": String,
"floor": Number,
"chest": String,
"cost": Number,
"drop_chances": {
"score": String,
...
}
},
...
],
...
},
...
}
Information about all items in the game (credit to NotEnoughUpdates-REPO).
{
"ITEM_ID": {
"name": String,
"recipe": {
"slot": String,
...,
"count": Number
},
"texture": String,
"wiki": String,
"scrollable": Boolean,
"forge": Number,
"base_rarity": String,
"skins": [
String,
...
],
"npc_buy": {
"cost": [
String,
...
],
"count": Number
}
},
...
}
Manual and automatic price overrides for networth calculations.
{
"manual": {
"ITEM_ID": Number,
...
},
"automatic": {
"ITEM_ID": Number,
...
}
}
Various settings for the bot.
{
"mojangApiNum": Number,
"ahApiUrl": String,
"allowMojangApi": Boolean,
"neuBranch": String
}