minecraft-data 3.5.1 → 3.6.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 +22 -1
- package/doc/history.md +3 -0
- package/index.d.ts +21 -1
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +3575 -0
- package/minecraft-data/data/bedrock/1.19.1/types.yml +1887 -0
- package/minecraft-data/data/bedrock/1.19.10/protocol.json +10458 -0
- package/minecraft-data/data/bedrock/1.19.10/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +127 -21
- package/minecraft-data/data/bedrock/latest/types.yml +71 -3
- package/minecraft-data/data/dataPaths.json +22 -1
- package/minecraft-data/data/pc/1.18/language.json +436 -93
- package/minecraft-data/data/pc/1.19/language.json +2 -2
- package/minecraft-data/data/pc/common/protocolVersions.json +21 -0
- package/minecraft-data/doc/history.md +23 -20
- package/package.json +2 -2
package/data.js
CHANGED
|
@@ -1342,9 +1342,30 @@ module.exports =
|
|
|
1342
1342
|
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1343
1343
|
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.18.30/blocksB2J.json") },
|
|
1344
1344
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.18.30/blocksJ2B.json") },
|
|
1345
|
+
proto: __dirname + '/minecraft-data/data/bedrock/1.19.1/proto.yml',
|
|
1346
|
+
types: __dirname + '/minecraft-data/data/bedrock/1.19.1/types.yml',
|
|
1347
|
+
get version () { return require("./minecraft-data/data/bedrock/1.19.1/version.json") }
|
|
1348
|
+
},
|
|
1349
|
+
'1.19.10': {
|
|
1350
|
+
get blocks () { return require("./minecraft-data/data/bedrock/1.18.30/blocks.json") },
|
|
1351
|
+
get blockStates () { return require("./minecraft-data/data/bedrock/1.18.30/blockStates.json") },
|
|
1352
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.18.30/blockCollisionShapes.json") },
|
|
1353
|
+
get biomes () { return require("./minecraft-data/data/bedrock/1.18.0/biomes.json") },
|
|
1354
|
+
get entities () { return require("./minecraft-data/data/bedrock/1.18.11/entities.json") },
|
|
1355
|
+
get items () { return require("./minecraft-data/data/bedrock/1.18.30/items.json") },
|
|
1356
|
+
get recipes () { return require("./minecraft-data/data/bedrock/1.18.30/recipes.json") },
|
|
1357
|
+
get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
|
|
1358
|
+
get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
|
|
1359
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.17/enchantments.json") },
|
|
1360
|
+
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
1361
|
+
get protocol () { return require("./minecraft-data/data/bedrock/1.19.10/protocol.json") },
|
|
1362
|
+
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
1363
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1364
|
+
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.18.30/blocksB2J.json") },
|
|
1365
|
+
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.18.30/blocksJ2B.json") },
|
|
1345
1366
|
proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
|
|
1346
1367
|
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
1347
|
-
get version () { return require("./minecraft-data/data/bedrock/1.19.
|
|
1368
|
+
get version () { return require("./minecraft-data/data/bedrock/1.19.10/version.json") }
|
|
1348
1369
|
}
|
|
1349
1370
|
}
|
|
1350
1371
|
}
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -244,7 +244,7 @@ declare namespace MinecraftData {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
|
|
247
|
-
interface
|
|
247
|
+
interface HttpsExampleComPersonSchemaJson {
|
|
248
248
|
graph?: RootNode;
|
|
249
249
|
parsers: ParserInfo[];
|
|
250
250
|
[k: string]: unknown;
|
|
@@ -677,9 +677,19 @@ declare namespace MinecraftData {
|
|
|
677
677
|
type Count = number;
|
|
678
678
|
/**
|
|
679
679
|
* A shape is a list of rows, which are lists of items. There must be at least one row with at least one item in it. All rows must have the same length. Empty rows at the beginning or end of a shape may be omitted. Empty colums at the end may also be omitted. When an item can be crafted in a 2x2 grid, the shape may not be larger than 2x2.
|
|
680
|
+
*
|
|
681
|
+
* @minItems 1
|
|
682
|
+
* @maxItems 3
|
|
680
683
|
*/
|
|
681
684
|
type Shape = [ShapeRow] | [ShapeRow, ShapeRow] | [ShapeRow, ShapeRow, ShapeRow];
|
|
685
|
+
/**
|
|
686
|
+
* @minItems 1
|
|
687
|
+
* @maxItems 3
|
|
688
|
+
*/
|
|
682
689
|
type ShapeRow = [RecipeItem] | [RecipeItem, RecipeItem] | [RecipeItem, RecipeItem, RecipeItem];
|
|
690
|
+
/**
|
|
691
|
+
* @minItems 1
|
|
692
|
+
*/
|
|
683
693
|
type Ingredients = [RecipeItem, ...RecipeItem[]];
|
|
684
694
|
|
|
685
695
|
/**
|
|
@@ -739,6 +749,9 @@ declare namespace MinecraftData {
|
|
|
739
749
|
| "soul_campfire"
|
|
740
750
|
| "campfire"
|
|
741
751
|
| "smithing_table";
|
|
752
|
+
/**
|
|
753
|
+
* @minItems 1
|
|
754
|
+
*/
|
|
742
755
|
ingredients: [unknown, ...unknown[]];
|
|
743
756
|
input?: unknown[];
|
|
744
757
|
output: unknown[];
|
|
@@ -799,6 +812,9 @@ declare namespace MinecraftData {
|
|
|
799
812
|
}
|
|
800
813
|
|
|
801
814
|
|
|
815
|
+
/**
|
|
816
|
+
* @minItems 1
|
|
817
|
+
*/
|
|
802
818
|
type Windows = [Window, ...Window[]];
|
|
803
819
|
|
|
804
820
|
interface Window {
|
|
@@ -812,6 +828,8 @@ declare namespace MinecraftData {
|
|
|
812
828
|
name: string;
|
|
813
829
|
/**
|
|
814
830
|
* The slots displayed in the window
|
|
831
|
+
*
|
|
832
|
+
* @minItems 1
|
|
815
833
|
*/
|
|
816
834
|
slots?: [
|
|
817
835
|
{
|
|
@@ -845,6 +863,8 @@ declare namespace MinecraftData {
|
|
|
845
863
|
];
|
|
846
864
|
/**
|
|
847
865
|
* Names of the properties of the window
|
|
866
|
+
*
|
|
867
|
+
* @minItems 1
|
|
848
868
|
*/
|
|
849
869
|
properties?: [string, ...string[]];
|
|
850
870
|
openedWith?: {
|
package/minecraft-data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Language independent module providing minecraft data for minecraft clients, serv
|
|
|
10
10
|
Supports
|
|
11
11
|
* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
|
|
12
12
|
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19
|
|
13
|
-
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1
|
|
13
|
+
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10
|
|
14
14
|
|
|
15
15
|
## Wrappers
|
|
16
16
|
|