Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

minecraft-data

Package Overview
Dependencies
Maintainers
1
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minecraft-data - npm Package Compare versions

Comparing version 0.2.1 to 0.3.0

56

bin/generate_enums.js

@@ -1,5 +0,5 @@

var fs = require('fs')
, assert = require('assert')
, Batch = require('batch')
, path = require('path')
var fs = require('fs');
var assert = require('assert');
var Batch = require('batch');
var path = require('path');

@@ -17,3 +17,3 @@ var burgerJsonPath = process.argv[2];

biomes,
recipes,
recipes
];

@@ -48,15 +48,15 @@

var item;
var itemEnum = {};
var itemEnum = [];
for (var id in itemsJson) {
item = itemsJson[id];
itemEnum[item.id] = {
itemEnum.push({
id: item.id,
displayName: item.display_name,
name: item.name,
stackSize: item.stack_size,
};
stackSize: item.stack_size
});
}
cb(null, {
name: 'items',
json: itemEnum,
json: itemEnum
});

@@ -68,22 +68,22 @@ }

var block;
var blockEnum = {
"0": {
var blockEnum = [
{
id: 0,
name: "air",
displayName: "Air",
hardness: 0,
},
};
hardness: 0
}
];
for (var id in blocksJson) {
block = blocksJson[id];
blockEnum[block.id] = {
blockEnum.push({
id: block.id,
displayName: block.display_name,
name: block.name,
hardness: block.hardness,
};
hardness: block.hardness
});
}
cb(null, {
name: 'blocks',
json: blockEnum,
json: blockEnum
});

@@ -95,6 +95,6 @@ }

var biome;
var biomeEnum = {};
var biomeEnum = [];
for (var name in biomesJson) {
biome = biomesJson[name];
biomeEnum[biome.id] = {
biomeEnum.push({
id: biome.id,

@@ -105,8 +105,8 @@ color: biome.color,

rainfall: biome.rainfall,
temperature: biome.temperature,
};
temperature: biome.temperature
});
}
cb(null, {
name: 'biomes',
json: biomeEnum,
json: biomeEnum
});

@@ -129,3 +129,3 @@ }

metadata: recipe.metadata,
inShape: shape = [],
inShape: shape = []
});

@@ -143,3 +143,3 @@ for (j = recipe.shape.length - 1; j >= 0; --j) {

metadata: recipe.metadata,
ingredients: ingredients = [],
ingredients: ingredients = []
});

@@ -149,3 +149,3 @@ for(j = 0; j < recipe.ingredients.length; ++j) {

ingredients.push({
id: ingredient.id,
id: ingredient.id
});

@@ -160,4 +160,4 @@ }

name: "recipes",
json: recipeEnum,
json: recipeEnum
});
}

@@ -40,3 +40,3 @@ var WikiTextParser = require('./lib/wikitext_parser');

]
, indexAndWrite
, write
);

@@ -47,3 +47,3 @@ }

function indexAndWrite(err,fullBlocks)
function write(err,fullBlocks)
{

@@ -55,8 +55,3 @@ if(err)

}
var blocks={};
fullBlocks.forEach(function(fullBlock){
blocks[fullBlock["id"]]=fullBlock;
});
//console.log(blocks);
fs.writeFile("../../enums/blocks.json", JSON.stringify(blocks,null,2));
fs.writeFile("../../enums/blocks.json", JSON.stringify(fullBlocks,null,2));
}

@@ -107,3 +102,3 @@

if(text.indexOf("{")==-1)
return [{"drop":nameIndex.nameToId(replaceName(text.trim())),"minCount":1,"maxCount":1}];
return [{"drop":nameIndex.nameToId(replaceName(text.trim()))}];
var templates=text.split("}{").join("};{").split(";");

@@ -115,6 +110,6 @@ return templates.map(function(template){

var min=data.simpleParts[2].indexOf("%")!=-1 ? parseFloat(data.simpleParts[2].replace("%",""))/100 : parseInt(data.simpleParts[2]);
var max=data.simpleParts.length>3 ? parseInt(data.simpleParts[3]) : min;
var max=data.simpleParts.length>3 ? parseInt(data.simpleParts[3]) : undefined;
return {
"drop":id,
"minCount":min,
"minCount":min==1 ? undefined : min,
"maxCount":max

@@ -163,15 +158,22 @@ };

}
var drops="drops" in values && values["drops"].toLowerCase()!="itself" ? values["drops"] : page;
if(page.indexOf("Slab")!=-1)
drops="Slab";
if(page=="Monster Egg" || page.startsWith("Technical blocks"))
drops="Nothing";
var p=parseDrops(drops);
//if("drops" in values && drops!="None") console.log(page+" ;;;; "+drops);
//console.log(page+" ;;;; "+p);
p.forEach(function(p1){
if(!("drop" in p1) || (typeof p1["drop"] == "undefined"))
console.log("PB with "+drops);
});
var p;
if(!("drops" in values) || values["drops"].toLowerCase()=="itself")
p="Itself";
else
{
var drops=values["drops"];
if(page.indexOf("Slab")!=-1)
drops="Slab";
if(page=="Monster Egg" || page.startsWith("Technical blocks"))
drops="Nothing";
p=parseDrops(drops);
//if("drops" in values && drops!="None") console.log(page+" ;;;; "+drops);
//console.log(page+" ;;;; "+p);
p.forEach(function(p1){
if(!("drop" in p1) || (typeof p1["drop"] == "undefined"))
console.log("PB with "+drops);
});
}
return {

@@ -196,4 +198,4 @@ "id":parseInt(values["data"]),

var items=require("../../enums/items.json");
var itemsByName=Object.keys(items).reduce(function(acc,key){
acc[items[key]["name"]]=key;
var itemsByName=items.reduce(function(acc,item){
acc[item.name]=item.id;
return acc;

@@ -297,3 +299,3 @@ },{});

"variations":vara!=null ? vara : undefined,
"drops":data["drops"]
"drops":data["drops"]=="Itself" ? [{"drop":block["id"]}] : data["drops"]
});

@@ -300,0 +302,0 @@ }

@@ -37,3 +37,3 @@ var WikiTextParser = require('./lib/wikitext_parser');

});
fs.writeFile("../../enums/entities.json", JSON.stringify(entities,null,2));
fs.writeFile("../../enums/entities.json", JSON.stringify(Object.keys(entities).map(function(key){return entities[key];}),null,2));
});

@@ -24,7 +24,7 @@ var WikiTextParser = require('./lib/wikitext_parser');

],
indexWrite
write
);
}
function indexWrite(err,fullItems){
function write(err,fullItems){
if(err)

@@ -35,8 +35,3 @@ {

}
var items={};
for(var i in fullItems)
{
items[fullItems[i]["id"]]=fullItems[i];
}
fs.writeFile("../../enums/items.json", JSON.stringify(items,null,2));
fs.writeFile("../../enums/items.json", JSON.stringify(fullItems,null,2));
}

@@ -43,0 +38,0 @@

@@ -9,9 +9,9 @@ module.exports={nameToId:nameToId};

var items=require("../../../enums/items.json");
var itemsByName=Object.keys(items).reduce(function(acc,key){acc[items[key]["displayName"]]=items[key]["id"];return acc;},{});
var itemsByName=items.reduce(function(acc,item){acc[item["displayName"]]=item["id"];return acc;},{});
var blocks=require("../../../enums/blocks.json");
var blocksByName=Object.keys(blocks).reduce(function(acc,key){acc[blocks[key]["displayName"]]=blocks[key]["id"];return acc;},{});
var itemsVariationsByName=Object.keys(items).reduce(function(acc,key){
if("variations" in items[key])
return items[key]["variations"].reduce(function(acc,variation){
acc[dnt(variation["displayName"])]={"id":items[key]["id"],"metadata":variation["metadata"]};
var blocksByName=blocks.reduce(function(acc,block){acc[block["displayName"]]=block["id"];return acc;},{});
var itemsVariationsByName=items.reduce(function(acc,item){
if("variations" in item)
return item["variations"].reduce(function(acc,variation){
acc[dnt(variation["displayName"])]={"id":item["id"],"metadata":variation["metadata"]};
return acc;

@@ -21,6 +21,6 @@ },acc);

},{});
var blocksVariationsByName=Object.keys(blocks).reduce(function(acc,key){
if("variations" in blocks[key])
return blocks[key]["variations"].reduce(function(acc,variation){
acc[dnt(variation["displayName"])]={"id":blocks[key]["id"],"metadata":variation["metadata"]};
var blocksVariationsByName=blocks.reduce(function(acc,block){
if("variations" in block)
return block["variations"].reduce(function(acc,variation){
acc[dnt(variation["displayName"])]={"id":block["id"],"metadata":variation["metadata"]};
return acc;

@@ -27,0 +27,0 @@ },acc);

@@ -0,1 +1,4 @@

## 0.3.0
* remove id indexing from biomes, blocks, entities, items and instruments : let users (for examples node-minecraft-data) provide their indexing (by id, name,...)
## 0.2.1

@@ -2,0 +5,0 @@ * entities is now in the API

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "biomes",
"type": "object",
"type": "array",
"uniqueItems": true,
"patternProperties" : {
"^[0-9]+$": {
"title": "biome",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a biome",
"type": "integer",
"minimum": 0
},
"color": {
"description": "The color in a biome",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of a biome",
"type": "string",
"pattern": "\\S+"
},
"rainfall": {
"description": "How much rain there is in a biome",
"type": "number",
"minimum": 0,
"maximum": 1
},
"temperature": {
"description": "An indicator for the temperature in a biome",
"type": "number",
"minimum": -1,
"maximum": 2
}
"items" : {
"title": "biome",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a biome",
"type": "integer",
"minimum": 0
},
"required": [
"id",
"color",
"name",
"rainfall",
"temperature"
],
"additionalProperties": false
}
},
"additionalProperties":false
"color": {
"description": "The color in a biome",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of a biome",
"type": "string",
"pattern": "\\S+"
},
"rainfall": {
"description": "How much rain there is in a biome",
"type": "number",
"minimum": 0,
"maximum": 1
},
"temperature": {
"description": "An indicator for the temperature in a biome",
"type": "number",
"minimum": -1,
"maximum": 2
}
},
"required": [
"id",
"color",
"name",
"rainfall",
"temperature"
],
"additionalProperties": false
}
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "blocks",
"type": "object",
"type": "array",
"uniqueItems": true,
"patternProperties": {
"^[0-9]+$": {
"title": "block",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a block",
"type": "integer",
"minimum": 0
},
"displayName": {
"description": "The display name of a block",
"type": "string"
},
"name": {
"description": "The name of a block",
"type": "string",
"pattern": "\\S+"
},
"hardness": {
"description": "Hardness of a block",
"type": [
"number",
"null"
"items": {
"title": "block",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a block",
"type": "integer",
"minimum": 0
},
"displayName": {
"description": "The display name of a block",
"type": "string"
},
"name": {
"description": "The name of a block",
"type": "string",
"pattern": "\\S+"
},
"hardness": {
"description": "Hardness of a block",
"type": [
"number",
"null"
],
"minimum": 0
},
"stackSize": {
"description": "Stack size for a block",
"type": "integer",
"minimum": 0
},
"diggable": {
"description": "true if a block is diggable",
"type": "boolean"
},
"boundingBox": {
"description": "BoundingBox of a block",
"enum": [
"block",
"empty"
]
},
"material": {
"description": "Material of a block",
"type": "string"
},
"harvestTools": {
"description": "Using one of these tools is required to harvest a block, without that you get a 3.33x time penalty.",
"type": "object",
"patternProperties": {
"^[0-9]+$": {"type": "boolean"}
}
},
"variations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"metadata": {
"type": "integer",
"minimum": 0
},
"displayName": {
"type": "string"
}
},
"required": [
"metadata",
"displayName"
],
"minimum": 0
},
"stackSize": {
"description": "Stack size for a block",
"type": "integer",
"minimum": 0
},
"diggable": {
"description": "true if a block is diggable",
"type": "boolean"
},
"boundingBox": {
"description": "BoundingBox of a block",
"enum": [
"block",
"empty"
]
},
"material": {
"description": "Material of a block",
"type": "string"
},
"harvestTools": {
"description": "Using one of these tools is required to harvest a block, without that you get a 3.33x time penalty.",
"additionalProperties": false
}
},
"drops": {
"type": "array",
"items": {
"type": "object",
"patternProperties": {
"^[0-9]+$": {"type": "boolean"}
}
},
"variations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"metadata": {
"type": "integer",
"minimum": 0
},
"displayName": {
"type": "string"
}
"properties": {
"minCount": {
"type": "number",
"minimum": 0,
"description": "minimum number or chance, default : 1"
},
"required": [
"metadata",
"displayName"
],
"additionalProperties": false
}
},
"drops": {
"type": "array",
"items": {
"type": "object",
"properties": {
"minCount": {
"type": "number",
"mininmum": 0,
"description":"minimum number or chance"
},
"maxCount": {
"type": "number",
"minimum": 0,
"description":"maximum number or chance"
},
"drop": {
"oneOf": [
{
"type": "integer",
"minimum": 0
"maxCount": {
"type": "number",
"minimum": 0,
"description": "maximum number or chance, default : minCount"
},
"drop": {
"oneOf": [
{
"type": "integer",
"minimum": 0
},
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"minimum": 0
},
"metadata": {
"type": "integer",
"minimum": 0
}
},
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"minimum": 0
},
"metadata": {
"type": "integer",
"minimum": 0
}
},
"required": [
"id",
"metadata"
],
"additionalProperties": false
}
]
}
},
"required": [
"minCount",
"maxCount",
"drop"
],
"additionalProperties": false
}
"required": [
"id",
"metadata"
],
"additionalProperties": false
}
]
}
},
"required": [
"drop"
],
"additionalProperties": false
}

@@ -143,4 +139,3 @@ }

"additionalProperties": false
},
"additionalProperties": false
}
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "entities",
"type": "object",
"type": "array",
"uniqueItems": true,
"patternProperties" : {
"^[0-9]+$": {
"title": "entity",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an entity",
"type": "integer",
"minimum": 0
},
"displayName": {
"description": "The display name of an entity",
"type": "string"
},
"name": {
"description": "The name of an entity",
"type": "string",
"pattern": "\\S+"
},
"type": {
"description": "The type of an entity",
"type": "string"
}
"items" : {
"title": "entity",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an entity",
"type": "integer",
"minimum": 0
},
"required": [
"id",
"displayName",
"name",
"type"
],
"additionalProperties": false
}
},
"additionalProperties": false
"displayName": {
"description": "The display name of an entity",
"type": "string"
},
"name": {
"description": "The name of an entity",
"type": "string",
"pattern": "\\S+"
},
"type": {
"description": "The type of an entity",
"type": "string"
}
},
"required": [
"id",
"displayName",
"name",
"type"
],
"additionalProperties": false
}
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "instruments",
"type": "object",
"type": "array",
"uniqueItems": true,
"patternProperties" : {
"^[0-9]+$": {
"title": "instrument",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an instrument",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of an instrument",
"type": "string",
"pattern": "\\S+"
}
"items" : {
"title": "instrument",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an instrument",
"type": "integer",
"minimum": 0
},
"required": [
"id",
"name"
],
"additionalProperties": false
}
},
"additionalProperties": false
"name": {
"description": "The name of an instrument",
"type": "string",
"pattern": "\\S+"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
}
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "items",
"type": "object",
"type": "array",
"uniqueItems": true,
"patternProperties" : {
"^[0-9]+$": {
"title": "item",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an item",
"type": "integer",
"minimum": 0
},
"displayName": {
"description": "The display name of an item",
"type": "string"
},
"stackSize": {
"description": "Stack size for an item",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of an item",
"type": "string",
"pattern": "\\S+"
},
"variations" : {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"metadata":{
"type":"integer",
"minimum": 0
},
"displayName":{
"type":"string"
}
"items" : {
"title": "item",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an item",
"type": "integer",
"minimum": 0
},
"displayName": {
"description": "The display name of an item",
"type": "string"
},
"stackSize": {
"description": "Stack size for an item",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of an item",
"type": "string",
"pattern": "\\S+"
},
"variations" : {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"metadata":{
"type":"integer",
"minimum": 0
},
"required": ["metadata", "displayName"],
"additionalProperties":false
}
"displayName":{
"type":"string"
}
},
"required": ["metadata", "displayName"],
"additionalProperties":false
}
},
"required": ["id", "displayName", "stackSize", "name"],
"additionalProperties":false
}
},
"additionalProperties":false
}
},
"required": ["id", "displayName", "stackSize", "name"],
"additionalProperties":false
}
}

@@ -1,3 +0,3 @@

{
"0": {
[
{
"id": 0,

@@ -9,3 +9,3 @@ "color": 112,

},
"1": {
{
"id": 1,

@@ -17,3 +17,3 @@ "color": 9286496,

},
"2": {
{
"id": 2,

@@ -25,3 +25,3 @@ "color": 16421912,

},
"3": {
{
"id": 3,

@@ -33,3 +33,3 @@ "color": 6316128,

},
"4": {
{
"id": 4,

@@ -41,3 +41,3 @@ "color": 353825,

},
"5": {
{
"id": 5,

@@ -49,3 +49,3 @@ "color": 747097,

},
"6": {
{
"id": 6,

@@ -57,3 +57,3 @@ "color": 522674,

},
"7": {
{
"id": 7,

@@ -65,3 +65,3 @@ "color": 255,

},
"8": {
{
"id": 8,

@@ -73,3 +73,3 @@ "color": 16711680,

},
"9": {
{
"id": 9,

@@ -81,3 +81,3 @@ "color": 8421631,

},
"10": {
{
"id": 10,

@@ -89,3 +89,3 @@ "color": 9474208,

},
"11": {
{
"id": 11,

@@ -97,3 +97,3 @@ "color": 10526975,

},
"12": {
{
"id": 12,

@@ -105,3 +105,3 @@ "color": 16777215,

},
"13": {
{
"id": 13,

@@ -113,3 +113,3 @@ "color": 10526880,

},
"14": {
{
"id": 14,

@@ -121,3 +121,3 @@ "color": 16711935,

},
"15": {
{
"id": 15,

@@ -129,3 +129,3 @@ "color": 10486015,

},
"16": {
{
"id": 16,

@@ -137,3 +137,3 @@ "color": 16440917,

},
"17": {
{
"id": 17,

@@ -145,3 +145,3 @@ "color": 13786898,

},
"18": {
{
"id": 18,

@@ -153,3 +153,3 @@ "color": 2250012,

},
"19": {
{
"id": 19,

@@ -161,3 +161,3 @@ "color": 1456435,

},
"20": {
{
"id": 20,

@@ -169,3 +169,3 @@ "color": 7501978,

},
"21": {
{
"id": 21,

@@ -177,3 +177,3 @@ "color": 5470985,

},
"22": {
{
"id": 22,

@@ -185,3 +185,3 @@ "color": 2900485,

},
"23": {
{
"id": 23,

@@ -193,3 +193,3 @@ "color": 6458135,

},
"24": {
{
"id": 24,

@@ -201,3 +201,3 @@ "color": 48,

},
"25": {
{
"id": 25,

@@ -209,3 +209,3 @@ "color": 10658436,

},
"26": {
{
"id": 26,

@@ -217,3 +217,3 @@ "color": 16445632,

},
"27": {
{
"id": 27,

@@ -225,3 +225,3 @@ "color": 3175492,

},
"28": {
{
"id": 28,

@@ -233,3 +233,3 @@ "color": 2055986,

},
"29": {
{
"id": 29,

@@ -241,3 +241,3 @@ "color": 4215066,

},
"30": {
{
"id": 30,

@@ -249,3 +249,3 @@ "color": 3233098,

},
"31": {
{
"id": 31,

@@ -257,3 +257,3 @@ "color": 2375478,

},
"32": {
{
"id": 32,

@@ -265,3 +265,3 @@ "color": 5858897,

},
"33": {
{
"id": 33,

@@ -273,3 +273,3 @@ "color": 4542270,

},
"34": {
{
"id": 34,

@@ -281,3 +281,3 @@ "color": 5271632,

},
"35": {
{
"id": 35,

@@ -289,3 +289,3 @@ "color": 12431967,

},
"36": {
{
"id": 36,

@@ -297,3 +297,3 @@ "color": 10984804,

},
"37": {
{
"id": 37,

@@ -305,3 +305,3 @@ "color": 14238997,

},
"38": {
{
"id": 38,

@@ -313,3 +313,3 @@ "color": 11573093,

},
"39": {
{
"id": 39,

@@ -321,2 +321,2 @@ "color": 13274213,

}
}
]

@@ -1,3 +0,3 @@

{
"1": {
[
{
"id": 1,

@@ -8,3 +8,3 @@ "displayName": "Dropped item",

},
"2": {
{
"id": 2,

@@ -15,3 +15,3 @@ "displayName": "Experience Orb",

},
"8": {
{
"id": 8,

@@ -22,3 +22,3 @@ "displayName": "Lead knot",

},
"9": {
{
"id": 9,

@@ -29,3 +29,3 @@ "displayName": "Painting",

},
"10": {
{
"id": 10,

@@ -36,3 +36,3 @@ "displayName": "Shot arrow",

},
"11": {
{
"id": 11,

@@ -43,3 +43,3 @@ "displayName": "Thrown snowball",

},
"12": {
{
"id": 12,

@@ -50,3 +50,3 @@ "displayName": "Ghast fireball",

},
"13": {
{
"id": 13,

@@ -57,3 +57,3 @@ "displayName": "Blaze fireball",

},
"14": {
{
"id": 14,

@@ -64,3 +64,3 @@ "displayName": "Thrown Ender Pearl",

},
"15": {
{
"id": 15,

@@ -71,3 +71,3 @@ "displayName": "Thrown Eye of Ender",

},
"16": {
{
"id": 16,

@@ -78,3 +78,3 @@ "displayName": "Thrown splash potion",

},
"17": {
{
"id": 17,

@@ -85,3 +85,3 @@ "displayName": "Thrown Bottle o' Enchanting",

},
"18": {
{
"id": 18,

@@ -92,3 +92,3 @@ "displayName": "Item Frame",

},
"19": {
{
"id": 19,

@@ -99,3 +99,3 @@ "displayName": "Wither Skull",

},
"20": {
{
"id": 20,

@@ -106,3 +106,3 @@ "displayName": "Primed TNT",

},
"21": {
{
"id": 21,

@@ -113,3 +113,3 @@ "displayName": "Falling block",

},
"22": {
{
"id": 22,

@@ -120,3 +120,3 @@ "displayName": "Firework Rocket",

},
"30": {
{
"id": 30,

@@ -127,3 +127,3 @@ "displayName": "Armor Stand",

},
"40": {
{
"id": 40,

@@ -134,3 +134,3 @@ "displayName": "Minecart with Command Block",

},
"41": {
{
"id": 41,

@@ -141,3 +141,3 @@ "displayName": "Boat",

},
"42": {
{
"id": 42,

@@ -148,3 +148,3 @@ "displayName": "Minecart",

},
"43": {
{
"id": 43,

@@ -155,3 +155,3 @@ "displayName": "Minecart with Chest",

},
"44": {
{
"id": 44,

@@ -162,3 +162,3 @@ "displayName": "Minecart with Furnace",

},
"45": {
{
"id": 45,

@@ -169,3 +169,3 @@ "displayName": "Minecart with TNT",

},
"46": {
{
"id": 46,

@@ -176,3 +176,3 @@ "displayName": "Minecart with Hopper",

},
"47": {
{
"id": 47,

@@ -183,3 +183,3 @@ "displayName": "Minecart with Spawner",

},
"48": {
{
"id": 48,

@@ -190,3 +190,3 @@ "displayName": "Mob",

},
"49": {
{
"id": 49,

@@ -197,3 +197,3 @@ "displayName": "Monster",

},
"50": {
{
"id": 50,

@@ -204,3 +204,3 @@ "displayName": "Creeper",

},
"51": {
{
"id": 51,

@@ -211,3 +211,3 @@ "displayName": "Skeleton",

},
"52": {
{
"id": 52,

@@ -218,3 +218,3 @@ "displayName": "Spider",

},
"53": {
{
"id": 53,

@@ -225,3 +225,3 @@ "displayName": "Giant",

},
"54": {
{
"id": 54,

@@ -232,3 +232,3 @@ "displayName": "Zombie Villager",

},
"55": {
{
"id": 55,

@@ -239,3 +239,3 @@ "displayName": "Slime",

},
"56": {
{
"id": 56,

@@ -246,3 +246,3 @@ "displayName": "Ghast",

},
"57": {
{
"id": 57,

@@ -253,3 +253,3 @@ "displayName": "Zombie Pigman",

},
"58": {
{
"id": 58,

@@ -260,3 +260,3 @@ "displayName": "Enderman",

},
"59": {
{
"id": 59,

@@ -267,3 +267,3 @@ "displayName": "Cave Spider",

},
"60": {
{
"id": 60,

@@ -274,3 +274,3 @@ "displayName": "Silverfish",

},
"61": {
{
"id": 61,

@@ -281,3 +281,3 @@ "displayName": "Blaze",

},
"62": {
{
"id": 62,

@@ -288,3 +288,3 @@ "displayName": "Magma Cube",

},
"63": {
{
"id": 63,

@@ -295,3 +295,3 @@ "displayName": "Ender Dragon",

},
"64": {
{
"id": 64,

@@ -302,3 +302,3 @@ "displayName": "Wither",

},
"65": {
{
"id": 65,

@@ -309,3 +309,3 @@ "displayName": "Bat",

},
"66": {
{
"id": 66,

@@ -316,3 +316,3 @@ "displayName": "Witch",

},
"67": {
{
"id": 67,

@@ -323,3 +323,3 @@ "displayName": "Endermite",

},
"68": {
{
"id": 68,

@@ -330,3 +330,3 @@ "displayName": "Guardian",

},
"90": {
{
"id": 90,

@@ -337,3 +337,3 @@ "displayName": "Pig",

},
"91": {
{
"id": 91,

@@ -344,3 +344,3 @@ "displayName": "Sheep",

},
"92": {
{
"id": 92,

@@ -351,3 +351,3 @@ "displayName": "Cow",

},
"93": {
{
"id": 93,

@@ -358,3 +358,3 @@ "displayName": "Chicken",

},
"94": {
{
"id": 94,

@@ -365,3 +365,3 @@ "displayName": "Squid",

},
"95": {
{
"id": 95,

@@ -372,3 +372,3 @@ "displayName": "Wolf",

},
"96": {
{
"id": 96,

@@ -379,3 +379,3 @@ "displayName": "Mooshroom",

},
"97": {
{
"id": 97,

@@ -386,3 +386,3 @@ "displayName": "Snow Golem",

},
"98": {
{
"id": 98,

@@ -393,3 +393,3 @@ "displayName": "Ocelot",

},
"99": {
{
"id": 99,

@@ -400,3 +400,3 @@ "displayName": "Iron Golem",

},
"100": {
{
"id": 100,

@@ -407,3 +407,3 @@ "displayName": "Horse",

},
"101": {
{
"id": 101,

@@ -414,3 +414,3 @@ "displayName": "Rabbit",

},
"120": {
{
"id": 120,

@@ -421,3 +421,3 @@ "displayName": "Villager",

},
"200": {
{
"id": 200,

@@ -428,2 +428,2 @@ "displayName": "Ender Crystal",

}
}
]

@@ -1,22 +0,22 @@

{
"0": {
[
{
"id": 0,
"name": "harp"
},
"1": {
{
"id": 1,
"name": "doubleBass"
},
"2": {
{
"id": 2,
"name": "snareDrum"
},
"3": {
{
"id": 3,
"name": "sticks"
},
"4": {
{
"id": 4,
"name": "bassDrum"
}
}
]

@@ -1,3 +0,3 @@

{
"256": {
[
{
"id": 256,

@@ -8,3 +8,3 @@ "displayName": "Iron Shovel",

},
"257": {
{
"id": 257,

@@ -15,3 +15,3 @@ "displayName": "Iron Pickaxe",

},
"258": {
{
"id": 258,

@@ -22,3 +22,3 @@ "displayName": "Iron Axe",

},
"259": {
{
"id": 259,

@@ -29,3 +29,3 @@ "displayName": "Flint and Steel",

},
"260": {
{
"id": 260,

@@ -36,3 +36,3 @@ "displayName": "Apple",

},
"261": {
{
"id": 261,

@@ -43,3 +43,3 @@ "displayName": "Bow",

},
"262": {
{
"id": 262,

@@ -50,3 +50,3 @@ "displayName": "Arrow",

},
"263": {
{
"id": 263,

@@ -67,3 +67,3 @@ "displayName": "Coal",

},
"264": {
{
"id": 264,

@@ -74,3 +74,3 @@ "displayName": "Diamond",

},
"265": {
{
"id": 265,

@@ -81,3 +81,3 @@ "displayName": "Iron Ingot",

},
"266": {
{
"id": 266,

@@ -88,3 +88,3 @@ "displayName": "Gold Ingot",

},
"267": {
{
"id": 267,

@@ -95,3 +95,3 @@ "displayName": "Iron Sword",

},
"268": {
{
"id": 268,

@@ -102,3 +102,3 @@ "displayName": "Wooden Sword",

},
"269": {
{
"id": 269,

@@ -109,3 +109,3 @@ "displayName": "Wooden Shovel",

},
"270": {
{
"id": 270,

@@ -116,3 +116,3 @@ "displayName": "Wooden Pickaxe",

},
"271": {
{
"id": 271,

@@ -123,3 +123,3 @@ "displayName": "Wooden Axe",

},
"272": {
{
"id": 272,

@@ -130,3 +130,3 @@ "displayName": "Stone Sword",

},
"273": {
{
"id": 273,

@@ -137,3 +137,3 @@ "displayName": "Stone Shovel",

},
"274": {
{
"id": 274,

@@ -144,3 +144,3 @@ "displayName": "Stone Pickaxe",

},
"275": {
{
"id": 275,

@@ -151,3 +151,3 @@ "displayName": "Stone Axe",

},
"276": {
{
"id": 276,

@@ -158,3 +158,3 @@ "displayName": "Diamond Sword",

},
"277": {
{
"id": 277,

@@ -165,3 +165,3 @@ "displayName": "Diamond Shovel",

},
"278": {
{
"id": 278,

@@ -172,3 +172,3 @@ "displayName": "Diamond Pickaxe",

},
"279": {
{
"id": 279,

@@ -179,3 +179,3 @@ "displayName": "Diamond Axe",

},
"280": {
{
"id": 280,

@@ -186,3 +186,3 @@ "displayName": "Stick",

},
"281": {
{
"id": 281,

@@ -193,3 +193,3 @@ "displayName": "Bowl",

},
"282": {
{
"id": 282,

@@ -200,3 +200,3 @@ "displayName": "Mushroom Stew",

},
"283": {
{
"id": 283,

@@ -207,3 +207,3 @@ "displayName": "Golden Sword",

},
"284": {
{
"id": 284,

@@ -214,3 +214,3 @@ "displayName": "Golden Shovel",

},
"285": {
{
"id": 285,

@@ -221,3 +221,3 @@ "displayName": "Golden Pickaxe",

},
"286": {
{
"id": 286,

@@ -228,3 +228,3 @@ "displayName": "Golden Axe",

},
"287": {
{
"id": 287,

@@ -235,3 +235,3 @@ "displayName": "String",

},
"288": {
{
"id": 288,

@@ -242,3 +242,3 @@ "displayName": "Feather",

},
"289": {
{
"id": 289,

@@ -249,3 +249,3 @@ "displayName": "Gunpowder",

},
"290": {
{
"id": 290,

@@ -256,3 +256,3 @@ "displayName": "Wooden Hoe",

},
"291": {
{
"id": 291,

@@ -263,3 +263,3 @@ "displayName": "Stone Hoe",

},
"292": {
{
"id": 292,

@@ -270,3 +270,3 @@ "displayName": "Iron Hoe",

},
"293": {
{
"id": 293,

@@ -277,3 +277,3 @@ "displayName": "Diamond Hoe",

},
"294": {
{
"id": 294,

@@ -284,3 +284,3 @@ "displayName": "Golden Hoe",

},
"295": {
{
"id": 295,

@@ -291,3 +291,3 @@ "displayName": "Seeds",

},
"296": {
{
"id": 296,

@@ -298,3 +298,3 @@ "displayName": "Wheat",

},
"297": {
{
"id": 297,

@@ -305,3 +305,3 @@ "displayName": "Bread",

},
"298": {
{
"id": 298,

@@ -312,3 +312,3 @@ "displayName": "Leather Cap",

},
"299": {
{
"id": 299,

@@ -319,3 +319,3 @@ "displayName": "Leather Tunic",

},
"300": {
{
"id": 300,

@@ -326,3 +326,3 @@ "displayName": "Leather Pants",

},
"301": {
{
"id": 301,

@@ -333,3 +333,3 @@ "displayName": "Leather Boots",

},
"302": {
{
"id": 302,

@@ -340,3 +340,3 @@ "displayName": "Chain Helmet",

},
"303": {
{
"id": 303,

@@ -347,3 +347,3 @@ "displayName": "Chain Chestplate",

},
"304": {
{
"id": 304,

@@ -354,3 +354,3 @@ "displayName": "Chain Leggings",

},
"305": {
{
"id": 305,

@@ -361,3 +361,3 @@ "displayName": "Chain Boots",

},
"306": {
{
"id": 306,

@@ -368,3 +368,3 @@ "displayName": "Iron Helmet",

},
"307": {
{
"id": 307,

@@ -375,3 +375,3 @@ "displayName": "Iron Chestplate",

},
"308": {
{
"id": 308,

@@ -382,3 +382,3 @@ "displayName": "Iron Leggings",

},
"309": {
{
"id": 309,

@@ -389,3 +389,3 @@ "displayName": "Iron Boots",

},
"310": {
{
"id": 310,

@@ -396,3 +396,3 @@ "displayName": "Diamond Helmet",

},
"311": {
{
"id": 311,

@@ -403,3 +403,3 @@ "displayName": "Diamond Chestplate",

},
"312": {
{
"id": 312,

@@ -410,3 +410,3 @@ "displayName": "Diamond Leggings",

},
"313": {
{
"id": 313,

@@ -417,3 +417,3 @@ "displayName": "Diamond Boots",

},
"314": {
{
"id": 314,

@@ -424,3 +424,3 @@ "displayName": "Golden Helmet",

},
"315": {
{
"id": 315,

@@ -431,3 +431,3 @@ "displayName": "Golden Chestplate",

},
"316": {
{
"id": 316,

@@ -438,3 +438,3 @@ "displayName": "Golden Leggings",

},
"317": {
{
"id": 317,

@@ -445,3 +445,3 @@ "displayName": "Golden Boots",

},
"318": {
{
"id": 318,

@@ -452,3 +452,3 @@ "displayName": "Flint",

},
"319": {
{
"id": 319,

@@ -459,3 +459,3 @@ "displayName": "Raw Porkchop",

},
"320": {
{
"id": 320,

@@ -466,3 +466,3 @@ "displayName": "Cooked Porkchop",

},
"321": {
{
"id": 321,

@@ -473,3 +473,3 @@ "displayName": "Painting",

},
"322": {
{
"id": 322,

@@ -490,3 +490,3 @@ "displayName": "Golden Apple",

},
"323": {
{
"id": 323,

@@ -497,3 +497,3 @@ "displayName": "Sign",

},
"324": {
{
"id": 324,

@@ -504,3 +504,3 @@ "displayName": "Oak Door",

},
"325": {
{
"id": 325,

@@ -511,3 +511,3 @@ "displayName": "Bucket",

},
"326": {
{
"id": 326,

@@ -518,3 +518,3 @@ "displayName": "Water Bucket",

},
"327": {
{
"id": 327,

@@ -525,3 +525,3 @@ "displayName": "Lava Bucket",

},
"328": {
{
"id": 328,

@@ -532,3 +532,3 @@ "displayName": "Minecart",

},
"329": {
{
"id": 329,

@@ -539,3 +539,3 @@ "displayName": "Saddle",

},
"330": {
{
"id": 330,

@@ -546,3 +546,3 @@ "displayName": "Iron Door",

},
"331": {
{
"id": 331,

@@ -553,3 +553,3 @@ "displayName": "Redstone",

},
"332": {
{
"id": 332,

@@ -560,3 +560,3 @@ "displayName": "Snowball",

},
"333": {
{
"id": 333,

@@ -567,3 +567,3 @@ "displayName": "Boat",

},
"334": {
{
"id": 334,

@@ -574,3 +574,3 @@ "displayName": "Leather",

},
"335": {
{
"id": 335,

@@ -581,3 +581,3 @@ "displayName": "Milk",

},
"336": {
{
"id": 336,

@@ -588,3 +588,3 @@ "displayName": "Brick",

},
"337": {
{
"id": 337,

@@ -595,3 +595,3 @@ "displayName": "Clay",

},
"338": {
{
"id": 338,

@@ -602,3 +602,3 @@ "displayName": "Sugar Cane",

},
"339": {
{
"id": 339,

@@ -609,3 +609,3 @@ "displayName": "Paper",

},
"340": {
{
"id": 340,

@@ -616,3 +616,3 @@ "displayName": "Book",

},
"341": {
{
"id": 341,

@@ -623,3 +623,3 @@ "displayName": "Slimeball",

},
"342": {
{
"id": 342,

@@ -630,3 +630,3 @@ "displayName": "Minecart with Chest",

},
"343": {
{
"id": 343,

@@ -637,3 +637,3 @@ "displayName": "Minecart with Furnace",

},
"344": {
{
"id": 344,

@@ -644,3 +644,3 @@ "displayName": "Egg",

},
"345": {
{
"id": 345,

@@ -651,3 +651,3 @@ "displayName": "Compass",

},
"346": {
{
"id": 346,

@@ -658,3 +658,3 @@ "displayName": "Fishing Rod",

},
"347": {
{
"id": 347,

@@ -665,3 +665,3 @@ "displayName": "Clock",

},
"348": {
{
"id": 348,

@@ -672,3 +672,3 @@ "displayName": "Glowstone Dust",

},
"349": {
{
"id": 349,

@@ -697,3 +697,3 @@ "displayName": "Raw Fish",

},
"350": {
{
"id": 350,

@@ -704,3 +704,3 @@ "displayName": "Cooked Fish",

},
"351": {
{
"id": 351,

@@ -777,3 +777,3 @@ "displayName": "Dye",

},
"352": {
{
"id": 352,

@@ -784,3 +784,3 @@ "displayName": "Bone",

},
"353": {
{
"id": 353,

@@ -791,3 +791,3 @@ "displayName": "Sugar",

},
"354": {
{
"id": 354,

@@ -798,3 +798,3 @@ "displayName": "Cake",

},
"355": {
{
"id": 355,

@@ -805,3 +805,3 @@ "displayName": "Bed",

},
"356": {
{
"id": 356,

@@ -812,3 +812,3 @@ "displayName": "Redstone Repeater",

},
"357": {
{
"id": 357,

@@ -819,3 +819,3 @@ "displayName": "Cookie",

},
"358": {
{
"id": 358,

@@ -826,3 +826,3 @@ "displayName": "Map",

},
"359": {
{
"id": 359,

@@ -833,3 +833,3 @@ "displayName": "Shears",

},
"360": {
{
"id": 360,

@@ -840,3 +840,3 @@ "displayName": "Melon",

},
"361": {
{
"id": 361,

@@ -847,3 +847,3 @@ "displayName": "Pumpkin Seeds",

},
"362": {
{
"id": 362,

@@ -854,3 +854,3 @@ "displayName": "Melon Seeds",

},
"363": {
{
"id": 363,

@@ -861,3 +861,3 @@ "displayName": "Raw Beef",

},
"364": {
{
"id": 364,

@@ -868,3 +868,3 @@ "displayName": "Steak",

},
"365": {
{
"id": 365,

@@ -875,3 +875,3 @@ "displayName": "Raw Chicken",

},
"366": {
{
"id": 366,

@@ -882,3 +882,3 @@ "displayName": "Cooked Chicken",

},
"367": {
{
"id": 367,

@@ -889,3 +889,3 @@ "displayName": "Rotten Flesh",

},
"368": {
{
"id": 368,

@@ -896,3 +896,3 @@ "displayName": "Ender Pearl",

},
"369": {
{
"id": 369,

@@ -903,3 +903,3 @@ "displayName": "Blaze Rod",

},
"370": {
{
"id": 370,

@@ -910,3 +910,3 @@ "displayName": "Ghast Tear",

},
"371": {
{
"id": 371,

@@ -917,3 +917,3 @@ "displayName": "Gold Nugget",

},
"372": {
{
"id": 372,

@@ -924,3 +924,3 @@ "displayName": "Nether Wart",

},
"373": {
{
"id": 373,

@@ -931,3 +931,3 @@ "displayName": "Potion",

},
"374": {
{
"id": 374,

@@ -938,3 +938,3 @@ "displayName": "Glass Bottle",

},
"375": {
{
"id": 375,

@@ -945,3 +945,3 @@ "displayName": "Spider Eye",

},
"376": {
{
"id": 376,

@@ -952,3 +952,3 @@ "displayName": "Fermented Spider Eye",

},
"377": {
{
"id": 377,

@@ -959,3 +959,3 @@ "displayName": "Blaze Powder",

},
"378": {
{
"id": 378,

@@ -966,3 +966,3 @@ "displayName": "Magma Cream",

},
"379": {
{
"id": 379,

@@ -973,3 +973,3 @@ "displayName": "Brewing Stand",

},
"380": {
{
"id": 380,

@@ -980,3 +980,3 @@ "displayName": "Cauldron",

},
"381": {
{
"id": 381,

@@ -987,3 +987,3 @@ "displayName": "Eye of Ender",

},
"382": {
{
"id": 382,

@@ -994,3 +994,3 @@ "displayName": "Glistering Melon",

},
"383": {
{
"id": 383,

@@ -1001,3 +1001,3 @@ "displayName": "Spawn Egg",

},
"384": {
{
"id": 384,

@@ -1008,3 +1008,3 @@ "displayName": "Bottle o' Enchanting",

},
"385": {
{
"id": 385,

@@ -1015,3 +1015,3 @@ "displayName": "Fire Charge",

},
"386": {
{
"id": 386,

@@ -1022,3 +1022,3 @@ "displayName": "Book and Quill",

},
"387": {
{
"id": 387,

@@ -1029,3 +1029,3 @@ "displayName": "Written Book",

},
"388": {
{
"id": 388,

@@ -1036,3 +1036,3 @@ "displayName": "Emerald",

},
"389": {
{
"id": 389,

@@ -1043,3 +1043,3 @@ "displayName": "Item Frame",

},
"390": {
{
"id": 390,

@@ -1108,3 +1108,3 @@ "displayName": "Flower Pot",

},
"391": {
{
"id": 391,

@@ -1115,3 +1115,3 @@ "displayName": "Carrot",

},
"392": {
{
"id": 392,

@@ -1122,3 +1122,3 @@ "displayName": "Potato",

},
"393": {
{
"id": 393,

@@ -1129,3 +1129,3 @@ "displayName": "Baked Potato",

},
"394": {
{
"id": 394,

@@ -1136,3 +1136,3 @@ "displayName": "Poisonous Potato",

},
"395": {
{
"id": 395,

@@ -1143,3 +1143,3 @@ "displayName": "Empty Map",

},
"396": {
{
"id": 396,

@@ -1150,3 +1150,3 @@ "displayName": "Golden Carrot",

},
"397": {
{
"id": 397,

@@ -1179,3 +1179,3 @@ "displayName": "Mob head",

},
"398": {
{
"id": 398,

@@ -1186,3 +1186,3 @@ "displayName": "Carrot on a Stick",

},
"399": {
{
"id": 399,

@@ -1193,3 +1193,3 @@ "displayName": "Nether Star",

},
"400": {
{
"id": 400,

@@ -1200,3 +1200,3 @@ "displayName": "Pumpkin Pie",

},
"401": {
{
"id": 401,

@@ -1207,3 +1207,3 @@ "displayName": "Firework Rocket",

},
"402": {
{
"id": 402,

@@ -1214,3 +1214,3 @@ "displayName": "Firework Star",

},
"403": {
{
"id": 403,

@@ -1221,3 +1221,3 @@ "displayName": "Enchanted Book",

},
"404": {
{
"id": 404,

@@ -1228,3 +1228,3 @@ "displayName": "Redstone Comparator",

},
"405": {
{
"id": 405,

@@ -1235,3 +1235,3 @@ "displayName": "Nether Brick",

},
"406": {
{
"id": 406,

@@ -1242,3 +1242,3 @@ "displayName": "Nether Quartz",

},
"407": {
{
"id": 407,

@@ -1249,3 +1249,3 @@ "displayName": "Minecart with TNT",

},
"408": {
{
"id": 408,

@@ -1256,3 +1256,3 @@ "displayName": "Minecart with Hopper",

},
"409": {
{
"id": 409,

@@ -1263,3 +1263,3 @@ "displayName": "Prismarine Shard",

},
"410": {
{
"id": 410,

@@ -1270,3 +1270,3 @@ "displayName": "Prismarine Crystals",

},
"411": {
{
"id": 411,

@@ -1277,3 +1277,3 @@ "displayName": "Raw Rabbit",

},
"412": {
{
"id": 412,

@@ -1284,3 +1284,3 @@ "displayName": "Cooked Rabbit",

},
"413": {
{
"id": 413,

@@ -1291,3 +1291,3 @@ "displayName": "Rabbit Stew",

},
"414": {
{
"id": 414,

@@ -1298,3 +1298,3 @@ "displayName": "Rabbit's Foot",

},
"415": {
{
"id": 415,

@@ -1305,3 +1305,3 @@ "displayName": "Rabbit Hide",

},
"416": {
{
"id": 416,

@@ -1312,3 +1312,3 @@ "displayName": "Armor Stand",

},
"417": {
{
"id": 417,

@@ -1319,3 +1319,3 @@ "displayName": "Iron Horse Armor",

},
"418": {
{
"id": 418,

@@ -1326,3 +1326,3 @@ "displayName": "Golden Horse Armor",

},
"419": {
{
"id": 419,

@@ -1333,3 +1333,3 @@ "displayName": "Diamond Horse Armor",

},
"420": {
{
"id": 420,

@@ -1340,3 +1340,3 @@ "displayName": "Lead",

},
"421": {
{
"id": 421,

@@ -1347,3 +1347,3 @@ "displayName": "Name Tag",

},
"422": {
{
"id": 422,

@@ -1354,3 +1354,3 @@ "displayName": "Minecart with Command Block",

},
"423": {
{
"id": 423,

@@ -1361,3 +1361,3 @@ "displayName": "Raw Mutton",

},
"424": {
{
"id": 424,

@@ -1368,3 +1368,3 @@ "displayName": "Cooked Mutton",

},
"425": {
{
"id": 425,

@@ -1375,3 +1375,3 @@ "displayName": "Banner",

},
"426": {
{
"id": 426,

@@ -1382,3 +1382,3 @@ "displayName": "Spruce Door",

},
"427": {
{
"id": 427,

@@ -1389,3 +1389,3 @@ "displayName": "Birch Door",

},
"428": {
{
"id": 428,

@@ -1396,3 +1396,3 @@ "displayName": "Jungle Door",

},
"429": {
{
"id": 429,

@@ -1403,3 +1403,3 @@ "displayName": "Acacia Door",

},
"430": {
{
"id": 430,

@@ -1410,3 +1410,3 @@ "displayName": "Dark Oak Door",

},
"2256": {
{
"id": 2256,

@@ -1417,3 +1417,3 @@ "displayName": "13 Disc",

},
"2257": {
{
"id": 2257,

@@ -1424,3 +1424,3 @@ "displayName": "Cat Disc",

},
"2258": {
{
"id": 2258,

@@ -1431,3 +1431,3 @@ "displayName": "Blocks Disc",

},
"2259": {
{
"id": 2259,

@@ -1438,3 +1438,3 @@ "displayName": "Chirp Disc",

},
"2260": {
{
"id": 2260,

@@ -1445,3 +1445,3 @@ "displayName": "Far Disc",

},
"2261": {
{
"id": 2261,

@@ -1452,3 +1452,3 @@ "displayName": "Mall Disc",

},
"2262": {
{
"id": 2262,

@@ -1459,3 +1459,3 @@ "displayName": "Mellohi Disc",

},
"2263": {
{
"id": 2263,

@@ -1466,3 +1466,3 @@ "displayName": "Stal Disc",

},
"2264": {
{
"id": 2264,

@@ -1473,3 +1473,3 @@ "displayName": "Strad Disc",

},
"2265": {
{
"id": 2265,

@@ -1480,3 +1480,3 @@ "displayName": "Ward Disc",

},
"2266": {
{
"id": 2266,

@@ -1487,3 +1487,3 @@ "displayName": "11 Disc",

},
"2267": {
{
"id": 2267,

@@ -1494,2 +1494,2 @@ "displayName": "Wait Disc",

}
}
]
{
"name": "minecraft-data",
"version": "0.2.1",
"version": "0.3.0",
"description": "provide minecraft data for minecraft clients, servers and libraries",

@@ -19,4 +19,5 @@ "main": "index.js",

"underscore" : "~1.8.2",
"async":"~0.9.0"
"async":"~0.9.0",
"batch":"~0.5.2"
}
}
# minecraft-data
[![NPM version](https://badge.fury.io/js/minecraft-data.svg)](http://badge.fury.io/js/minecraft-data) [![Build Status](https://circleci.com/gh/PrismarineJS/minecraft-data.svg?style=shield)](https://circleci.com/gh/PrismarineJS/minecraft-data)
Provide minecraft data for minecraft clients, servers and libraries.
Language independent module providing minecraft data for minecraft clients, servers and libraries.
Support minecraft 1.8.3.
Minecraft-data is language independent, you can use it with these language specific modules :
* [node-minecraft-data](https://github.com/PrismarineJS/node-minecraft-data) provides indexes and look up functions in node.js
## Documentation

@@ -9,0 +13,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc