minecraft-data 3.81.2 → 3.83.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.
Files changed (36) hide show
  1. package/data.js +29 -2
  2. package/doc/history.md +8 -0
  3. package/index.d.ts +6 -0
  4. package/minecraft-data/data/bedrock/1.21.30/protocol.json +0 -4
  5. package/minecraft-data/data/bedrock/1.21.30/types.yml +0 -1
  6. package/minecraft-data/data/bedrock/1.21.42/protocol.json +0 -4
  7. package/minecraft-data/data/bedrock/1.21.42/types.yml +0 -1
  8. package/minecraft-data/data/bedrock/1.21.50/protocol.json +1 -5
  9. package/minecraft-data/data/bedrock/1.21.50/steve.json +1 -0
  10. package/minecraft-data/data/bedrock/latest/types.yml +0 -1
  11. package/minecraft-data/data/dataPaths.json +30 -3
  12. package/minecraft-data/data/pc/1.21.3/proto.yml +3368 -0
  13. package/minecraft-data/data/pc/1.21.3/protocol.json +1 -4
  14. package/minecraft-data/data/pc/1.21.4/biomes.json +652 -0
  15. package/minecraft-data/data/pc/1.21.4/blockCollisionShapes.json +142311 -0
  16. package/minecraft-data/data/pc/1.21.4/blocks.json +41063 -0
  17. package/minecraft-data/data/pc/1.21.4/effects.json +236 -0
  18. package/minecraft-data/data/pc/1.21.4/enchantments.json +959 -0
  19. package/minecraft-data/data/pc/1.21.4/entities.json +1492 -0
  20. package/minecraft-data/data/pc/1.21.4/foods.json +402 -0
  21. package/minecraft-data/data/pc/1.21.4/instruments.json +94 -0
  22. package/minecraft-data/data/pc/1.21.4/items.json +9098 -0
  23. package/minecraft-data/data/pc/1.21.4/language.json +7002 -0
  24. package/minecraft-data/data/pc/1.21.4/materials.json +134 -0
  25. package/minecraft-data/data/pc/1.21.4/particles.json +450 -0
  26. package/minecraft-data/data/pc/1.21.4/protocol.json +9533 -0
  27. package/minecraft-data/data/pc/1.21.4/recipes.json +29693 -0
  28. package/minecraft-data/data/pc/1.21.4/sounds.json +6606 -0
  29. package/minecraft-data/data/pc/1.21.4/tints.json +422 -0
  30. package/minecraft-data/data/pc/1.21.4/version.json +6 -0
  31. package/minecraft-data/data/pc/common/features.json +10 -0
  32. package/minecraft-data/data/pc/common/protocolVersions.json +8 -0
  33. package/minecraft-data/data/pc/common/versions.json +3 -2
  34. package/minecraft-data/data/pc/latest/proto.yml +27 -8
  35. package/minecraft-data/doc/history.md +8 -0
  36. package/package.json +3 -3
package/data.js CHANGED
@@ -1476,7 +1476,7 @@ module.exports =
1476
1476
  get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
1477
1477
  get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
1478
1478
  get sounds () { return require("./minecraft-data/data/pc/1.21.1/sounds.json") },
1479
- proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
1479
+ proto: __dirname + '/minecraft-data/data/pc/1.21.3/proto.yml'
1480
1480
  },
1481
1481
  '1.21.1': {
1482
1482
  get attributes () { return require("./minecraft-data/data/pc/1.21.1/attributes.json") },
@@ -1530,6 +1530,33 @@ module.exports =
1530
1530
  get tints () { return require("./minecraft-data/data/pc/1.21.3/tints.json") },
1531
1531
  get version () { return require("./minecraft-data/data/pc/1.21.3/version.json") },
1532
1532
  get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
1533
+ proto: __dirname + '/minecraft-data/data/pc/1.21.3/proto.yml'
1534
+ },
1535
+ '1.21.4': {
1536
+ get attributes () { return require("./minecraft-data/data/pc/1.21.3/attributes.json") },
1537
+ get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.21.4/blockCollisionShapes.json") },
1538
+ get blocks () { return require("./minecraft-data/data/pc/1.21.4/blocks.json") },
1539
+ get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
1540
+ get biomes () { return require("./minecraft-data/data/pc/1.21.4/biomes.json") },
1541
+ get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
1542
+ get effects () { return require("./minecraft-data/data/pc/1.21.4/effects.json") },
1543
+ get enchantments () { return require("./minecraft-data/data/pc/1.21.1/enchantments.json") },
1544
+ get entities () { return require("./minecraft-data/data/pc/1.21.4/entities.json") },
1545
+ get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
1546
+ get foods () { return require("./minecraft-data/data/pc/1.21.1/foods.json") },
1547
+ get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
1548
+ get items () { return require("./minecraft-data/data/pc/1.21.4/items.json") },
1549
+ get language () { return require("./minecraft-data/data/pc/1.21.4/language.json") },
1550
+ get loginPacket () { return require("./minecraft-data/data/pc/1.21.3/loginPacket.json") },
1551
+ get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
1552
+ get materials () { return require("./minecraft-data/data/pc/1.21.4/materials.json") },
1553
+ get particles () { return require("./minecraft-data/data/pc/1.21.4/particles.json") },
1554
+ get protocol () { return require("./minecraft-data/data/pc/1.21.4/protocol.json") },
1555
+ get recipes () { return require("./minecraft-data/data/pc/1.21.4/recipes.json") },
1556
+ get sounds () { return require("./minecraft-data/data/pc/1.21.4/sounds.json") },
1557
+ get tints () { return require("./minecraft-data/data/pc/1.21.4/tints.json") },
1558
+ get version () { return require("./minecraft-data/data/pc/1.21.4/version.json") },
1559
+ get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
1533
1560
  proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
1534
1561
  }
1535
1562
  },
@@ -2347,7 +2374,7 @@ module.exports =
2347
2374
  get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
2348
2375
  get protocol () { return require("./minecraft-data/data/bedrock/1.21.50/protocol.json") },
2349
2376
  get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
2350
- get steve () { return require("./minecraft-data/data/bedrock/1.20.80/steve.json") },
2377
+ get steve () { return require("./minecraft-data/data/bedrock/1.21.50/steve.json") },
2351
2378
  get blocksB2J () { return require("./minecraft-data/data/bedrock/1.21.0/blocksB2J.json") },
2352
2379
  get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.21.0/blocksJ2B.json") },
2353
2380
  proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
package/doc/history.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # History
2
2
 
3
+ ## 3.83.0
4
+
5
+ * update `minecraft-data`
6
+
7
+ ## 3.82.0
8
+
9
+ * update `minecraft-data`
10
+
3
11
  ## 3.81.2
4
12
 
5
13
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -1363,6 +1363,12 @@ declare namespace MinecraftData {
1363
1363
  /** `1.21 - latest`
1364
1364
  * The server needs to send the registry data to the client before sending the finish_configuration packet */
1365
1365
  "registryDataIsMandatory": boolean;
1366
+ /** `1.21.3 - latest`
1367
+ * New player_input packet for movements, which replaces steer_vehicle */
1368
+ "newPlayerInputPacket": boolean;
1369
+ /** `1.21.3 - latest`
1370
+ * Server does not send ack on creative_set_slot packets */
1371
+ "noAckOnCreateSetSlotPacket": boolean;
1366
1372
  }
1367
1373
 
1368
1374
  type Object = { [key: string]: any }
@@ -2899,10 +2899,6 @@
2899
2899
  "name": "recipe_network_id",
2900
2900
  "type": "varint"
2901
2901
  },
2902
- {
2903
- "name": "times_crafted",
2904
- "type": "u8"
2905
- },
2906
2902
  {
2907
2903
  "name": "filtered_string_index",
2908
2904
  "type": "li32"
@@ -1074,7 +1074,6 @@ ItemStackRequest:
1074
1074
  if optional:
1075
1075
  # For the cartography table, if a certain MULTI recipe is being called, this points to the network ID that was assigned.
1076
1076
  recipe_network_id: varint
1077
- times_crafted: u8
1078
1077
  # Most likely the index in the request's filter strings that this action is using
1079
1078
  filtered_string_index: li32
1080
1079
  if craft_grindstone_request:
@@ -2904,10 +2904,6 @@
2904
2904
  "name": "recipe_network_id",
2905
2905
  "type": "varint"
2906
2906
  },
2907
- {
2908
- "name": "times_crafted",
2909
- "type": "u8"
2910
- },
2911
2907
  {
2912
2908
  "name": "filtered_string_index",
2913
2909
  "type": "li32"
@@ -1078,7 +1078,6 @@ ItemStackRequest:
1078
1078
  if optional:
1079
1079
  # For the cartography table, if a certain MULTI recipe is being called, this points to the network ID that was assigned.
1080
1080
  recipe_network_id: varint
1081
- times_crafted: u8
1082
1081
  # Most likely the index in the request's filter strings that this action is using
1083
1082
  filtered_string_index: li32
1084
1083
  if craft_grindstone_request:
@@ -2904,10 +2904,6 @@
2904
2904
  "name": "recipe_network_id",
2905
2905
  "type": "varint"
2906
2906
  },
2907
- {
2908
- "name": "times_crafted",
2909
- "type": "u8"
2910
- },
2911
2907
  {
2912
2908
  "name": "filtered_string_index",
2913
2909
  "type": "li32"
@@ -13031,4 +13027,4 @@
13031
13027
  ]
13032
13028
  ]
13033
13029
  }
13034
- }
13030
+ }