minecraft-data 2.96.0 → 2.99.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 (44) hide show
  1. package/data.js +42 -0
  2. package/doc/history.md +12 -0
  3. package/index.d.ts +3 -4
  4. package/minecraft-data/README.md +3 -3
  5. package/minecraft-data/data/bedrock/1.16.201/proto.yml +9 -9
  6. package/minecraft-data/data/bedrock/1.16.201/protocol.json +5 -5
  7. package/minecraft-data/data/bedrock/1.16.210/proto.yml +9 -9
  8. package/minecraft-data/data/bedrock/1.16.210/protocol.json +5 -5
  9. package/minecraft-data/data/bedrock/1.16.220/proto.yml +9 -9
  10. package/minecraft-data/data/bedrock/1.16.220/protocol.json +5 -5
  11. package/minecraft-data/data/bedrock/1.17.0/proto.yml +9 -9
  12. package/minecraft-data/data/bedrock/1.17.0/protocol.json +5 -5
  13. package/minecraft-data/data/bedrock/1.17.10/proto.yml +9 -9
  14. package/minecraft-data/data/bedrock/1.17.10/protocol.json +5 -5
  15. package/minecraft-data/data/bedrock/1.17.30/proto.yml +9 -9
  16. package/minecraft-data/data/bedrock/1.17.30/protocol.json +5 -5
  17. package/minecraft-data/data/bedrock/1.17.40/proto.yml +3267 -0
  18. package/minecraft-data/data/bedrock/1.17.40/protocol.json +5 -5
  19. package/minecraft-data/data/bedrock/1.17.40/types.yml +1764 -0
  20. package/minecraft-data/data/bedrock/1.18.0/biomes.json +1064 -0
  21. package/minecraft-data/data/bedrock/1.18.0/blockCollisionShapes.json +862 -0
  22. package/minecraft-data/data/bedrock/1.18.0/blockStates.json +157214 -0
  23. package/minecraft-data/data/bedrock/1.18.0/blocks.json +12506 -0
  24. package/minecraft-data/data/bedrock/1.18.0/blocksB2J.json +6845 -0
  25. package/minecraft-data/data/bedrock/1.18.0/blocksJ2B.json +20344 -0
  26. package/minecraft-data/data/bedrock/1.18.0/items.json +9493 -0
  27. package/minecraft-data/data/bedrock/1.18.0/protocol.json +9515 -0
  28. package/minecraft-data/data/bedrock/1.18.0/recipes.json +16654 -0
  29. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  30. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  31. package/minecraft-data/data/bedrock/latest/proto.yml +16 -10
  32. package/minecraft-data/data/dataPaths.json +42 -0
  33. package/minecraft-data/data/pc/1.16.2/protocol.json +2 -2
  34. package/minecraft-data/data/pc/1.17/protocol.json +18 -21
  35. package/minecraft-data/data/pc/1.17.1/protocol.json +18 -21
  36. package/minecraft-data/data/pc/1.18/protocol.json +5622 -0
  37. package/minecraft-data/data/pc/1.18/version.json +5 -0
  38. package/minecraft-data/data/pc/common/protocolVersions.json +126 -0
  39. package/minecraft-data/data/pc/common/versions.json +2 -1
  40. package/minecraft-data/doc/add-data-new-version.md +2 -0
  41. package/minecraft-data/doc/history.md +13 -0
  42. package/minecraft-data/schemas/recipes_schema.json +2 -3
  43. package/package.json +1 -1
  44. package/typings/index-template.d.ts +1 -1
@@ -187,7 +187,7 @@ packet_text:
187
187
  message: string
188
188
  if translation or popup or jukebox_popup:
189
189
  message: string
190
- paramaters: string[]varint
190
+ parameters: string[]varint
191
191
  # The XUID of the player who sent this message.
192
192
  xuid: string
193
193
  # PlatformChatID is an identifier only set for particular platforms when chatting (presumably only for
@@ -1554,7 +1554,7 @@ packet_show_credits:
1554
1554
  packet_available_commands:
1555
1555
  !id: 0x4c
1556
1556
  !bound: client
1557
- # The length of the enums for all the command paramaters in this packet
1557
+ # The length of the enums for all the command parameters in this packet
1558
1558
  values_len: varint
1559
1559
  # Not read from stream: instead calculated from the `values_len` field
1560
1560
  #
@@ -1564,7 +1564,7 @@ packet_available_commands:
1564
1564
  _enum_type: '["enum_size_based_on_values_len"]'
1565
1565
  # Here all the enum values for all of the possible commands are stored to one array palette
1566
1566
  enum_values: string[]$values_len
1567
- # Integer paramaters may sometimes have a prefix, such as the XP command:
1567
+ # Integer parameters may sometimes have a prefix, such as the XP command:
1568
1568
  # /xp <amount: int> [player: target] <- here, the xp command gives experience points
1569
1569
  # /xp <amount: int>L [player: target] <- here, the xp command gives experience levels
1570
1570
  # This is the palette of suffixes
@@ -1586,12 +1586,12 @@ packet_available_commands:
1586
1586
  flags: lu16
1587
1587
  permission_level: u8
1588
1588
  alias: li32
1589
- # The list of overload paramaters for this command
1589
+ # The list of overload parameters for this command
1590
1590
  overloads: []varint
1591
- # Each of the paramaters gets an array of posible overloads
1591
+ # Each of the parameters gets an array of posible overloads
1592
1592
  _: []varint
1593
- # The name of the paramater shown to the user (the `amount` in `/xp <amount: int>`)
1594
- paramater_name: string
1593
+ # The name of the parameter shown to the user (the `amount` in `/xp <amount: int>`)
1594
+ parameter_name: string
1595
1595
  value_type: lu16 =>
1596
1596
  1: int
1597
1597
  2: float
@@ -1612,7 +1612,7 @@ packet_available_commands:
1612
1612
  0x20: enum
1613
1613
  0x100: suffixed
1614
1614
  0x400: soft_enum
1615
- # Is this paramater required?
1615
+ # Is this parameter required?
1616
1616
  optional: bool
1617
1617
  # Additinal options for this command (thanks macroshaft...)
1618
1618
  options: CommandFlags
@@ -1742,7 +1742,7 @@ packet_command_output:
1742
1742
  # Parameters is a list of parameters that serve to supply the message sent with additional information,
1743
1743
  # such as the position that a player was teleported to or the effect that was applied to an entity.
1744
1744
  # These parameters only apply for the Minecraft built-in command output.
1745
- paramaters: string[]varint
1745
+ parameters: string[]varint
1746
1746
  data_set: output_type ?
1747
1747
  if data_set: string
1748
1748
  default: void
@@ -4078,7 +4078,7 @@
4078
4078
  "type": "string"
4079
4079
  },
4080
4080
  {
4081
- "name": "paramaters",
4081
+ "name": "parameters",
4082
4082
  "type": [
4083
4083
  "array",
4084
4084
  {
@@ -4097,7 +4097,7 @@
4097
4097
  "type": "string"
4098
4098
  },
4099
4099
  {
4100
- "name": "paramaters",
4100
+ "name": "parameters",
4101
4101
  "type": [
4102
4102
  "array",
4103
4103
  {
@@ -4116,7 +4116,7 @@
4116
4116
  "type": "string"
4117
4117
  },
4118
4118
  {
4119
- "name": "paramaters",
4119
+ "name": "parameters",
4120
4120
  "type": [
4121
4121
  "array",
4122
4122
  {
@@ -6361,7 +6361,7 @@
6361
6361
  "container",
6362
6362
  [
6363
6363
  {
6364
- "name": "paramater_name",
6364
+ "name": "parameter_name",
6365
6365
  "type": "string"
6366
6366
  },
6367
6367
  {
@@ -6648,7 +6648,7 @@
6648
6648
  "type": "string"
6649
6649
  },
6650
6650
  {
6651
- "name": "paramaters",
6651
+ "name": "parameters",
6652
6652
  "type": [
6653
6653
  "array",
6654
6654
  {