minecraft-data 3.1.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data.js +3 -1
- package/doc/history.md +3 -0
- package/index.d.ts +14 -4
- package/minecraft-data/data/bedrock/1.16.220/blockStates.json +6575 -6575
- package/minecraft-data/data/bedrock/1.17.0/instruments.json +1 -1
- package/minecraft-data/data/bedrock/1.17.40/blocks.json +3 -3
- package/minecraft-data/data/bedrock/1.18.0/blockLoot.json +56461 -0
- package/minecraft-data/data/bedrock/1.18.0/blocksJ2B.json +1 -0
- package/minecraft-data/data/bedrock/1.18.0/entityLoot.json +1246 -0
- package/minecraft-data/data/bedrock/1.18.0/recipes.json +1442 -1388
- package/minecraft-data/data/bedrock/1.18.11/blocks.json +3 -3
- package/minecraft-data/data/bedrock/1.18.11/recipes.json +1442 -1388
- package/minecraft-data/data/dataPaths.json +3 -1
- package/minecraft-data/data/pc/1.10/items.json +1 -1
- package/minecraft-data/data/pc/1.11/items.json +18 -18
- package/minecraft-data/data/pc/1.12/instruments.json +1 -1
- package/minecraft-data/data/pc/1.12/items.json +18 -18
- package/minecraft-data/data/pc/1.13/instruments.json +1 -1
- package/minecraft-data/data/pc/1.13/items.json +1 -1
- package/minecraft-data/data/pc/1.13.2/instruments.json +1 -1
- package/minecraft-data/data/pc/1.13.2/items.json +1 -1
- package/minecraft-data/data/pc/1.14/items.json +1 -1
- package/minecraft-data/data/pc/1.14.4/instruments.json +1 -1
- package/minecraft-data/data/pc/1.14.4/items.json +1 -1
- package/minecraft-data/data/pc/1.15.2/instruments.json +1 -1
- package/minecraft-data/data/pc/1.15.2/items.json +1 -1
- package/minecraft-data/data/pc/1.16.1/instruments.json +1 -1
- package/minecraft-data/data/pc/1.16.1/items.json +1 -1
- package/minecraft-data/data/pc/1.16.2/items.json +1 -1
- package/minecraft-data/data/pc/1.17/biomes.json +134 -134
- package/minecraft-data/data/pc/1.17/items.json +1 -1
- package/minecraft-data/data/pc/1.18/biomes.json +62 -62
- package/minecraft-data/data/pc/1.7/items.json +1 -1
- package/minecraft-data/data/pc/1.8/items.json +1 -1
- package/minecraft-data/data/pc/1.9/items.json +1 -2
- package/minecraft-data/data/pc/common/protocolVersions.json +42 -0
- package/minecraft-data/doc/history.md +7 -0
- package/minecraft-data/schemas/biomes_schema.json +0 -4
- package/minecraft-data/schemas/blockLoot_schema.json +10 -0
- package/minecraft-data/schemas/blocks_schema.json +1 -1
- package/minecraft-data/schemas/entityLoot_schema.json +6 -0
- package/package.json +3 -3
package/data.js
CHANGED
|
@@ -1255,7 +1255,9 @@ module.exports =
|
|
|
1255
1255
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.18.0/blocksJ2B.json") },
|
|
1256
1256
|
proto: __dirname + '/minecraft-data/data/bedrock/1.18.0/proto.yml',
|
|
1257
1257
|
types: __dirname + '/minecraft-data/data/bedrock/1.18.0/types.yml',
|
|
1258
|
-
get version () { return require("./minecraft-data/data/bedrock/1.18.0/version.json") }
|
|
1258
|
+
get version () { return require("./minecraft-data/data/bedrock/1.18.0/version.json") },
|
|
1259
|
+
get entityLoot () { return require("./minecraft-data/data/bedrock/1.18.0/entityLoot.json") },
|
|
1260
|
+
get blockLoot () { return require("./minecraft-data/data/bedrock/1.18.0/blockLoot.json") }
|
|
1259
1261
|
},
|
|
1260
1262
|
'1.18.11': {
|
|
1261
1263
|
get blocks () { return require("./minecraft-data/data/bedrock/1.18.11/blocks.json") },
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -37,10 +37,6 @@ declare namespace MinecraftData {
|
|
|
37
37
|
* The type of precipitation: none, rain or snow
|
|
38
38
|
*/
|
|
39
39
|
precipitation: string;
|
|
40
|
-
/**
|
|
41
|
-
* The depth of a biome
|
|
42
|
-
*/
|
|
43
|
-
depth: number;
|
|
44
40
|
/**
|
|
45
41
|
* The dimension of a biome: overworld, nether or end
|
|
46
42
|
*/
|
|
@@ -87,6 +83,12 @@ declare namespace MinecraftData {
|
|
|
87
83
|
* The name of the block
|
|
88
84
|
*/
|
|
89
85
|
block: string;
|
|
86
|
+
/**
|
|
87
|
+
* The states of the block (Bedrock Edition)
|
|
88
|
+
*/
|
|
89
|
+
states?: {
|
|
90
|
+
[k: string]: unknown;
|
|
91
|
+
};
|
|
90
92
|
/**
|
|
91
93
|
* The list of item drops
|
|
92
94
|
*/
|
|
@@ -97,6 +99,10 @@ declare namespace MinecraftData {
|
|
|
97
99
|
* The name of the item being dropped
|
|
98
100
|
*/
|
|
99
101
|
item: string;
|
|
102
|
+
/**
|
|
103
|
+
* The metadata of the item being dropped (Bedrock Edition)
|
|
104
|
+
*/
|
|
105
|
+
metadata?: number;
|
|
100
106
|
/**
|
|
101
107
|
* The percent chance of the item drop to occur
|
|
102
108
|
*/
|
|
@@ -436,6 +442,10 @@ declare namespace MinecraftData {
|
|
|
436
442
|
* The name of the item being dropped
|
|
437
443
|
*/
|
|
438
444
|
item: string;
|
|
445
|
+
/**
|
|
446
|
+
* The metadata of the item being dropped (Bedrock Edition)
|
|
447
|
+
*/
|
|
448
|
+
metadata?: number;
|
|
439
449
|
/**
|
|
440
450
|
* The percent chance of the item drop to occur
|
|
441
451
|
*/
|