minecraft-data 3.100.0 → 3.102.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 (30) hide show
  1. package/data.js +57 -13
  2. package/doc/history.md +8 -0
  3. package/minecraft-data/.github/workflows/bedrock-version-bump.yml +92 -0
  4. package/minecraft-data/README.md +1 -1
  5. package/minecraft-data/data/bedrock/1.21.111/blockCollisionShapes.json +1648 -0
  6. package/minecraft-data/data/bedrock/1.21.111/blockStates.json +308802 -0
  7. package/minecraft-data/data/bedrock/1.21.111/blocks.json +23727 -0
  8. package/minecraft-data/data/bedrock/1.21.111/blocksB2J.json +9913 -0
  9. package/minecraft-data/data/bedrock/1.21.111/blocksJ2B.json +27948 -0
  10. package/minecraft-data/data/bedrock/1.21.111/items.json +12389 -0
  11. package/minecraft-data/data/bedrock/1.21.120/proto.yml +4594 -0
  12. package/minecraft-data/data/bedrock/1.21.120/types.yml +2898 -0
  13. package/minecraft-data/data/bedrock/1.21.124/proto.yml +4594 -0
  14. package/minecraft-data/data/bedrock/1.21.124/protocol.json +14571 -0
  15. package/minecraft-data/data/bedrock/1.21.124/types.yml +2898 -0
  16. package/minecraft-data/data/bedrock/1.21.124/version.json +6 -0
  17. package/minecraft-data/data/bedrock/1.21.130/protocol.json +14874 -0
  18. package/minecraft-data/data/bedrock/1.21.130/version.json +6 -0
  19. package/minecraft-data/data/bedrock/common/protocolVersions.json +12 -0
  20. package/minecraft-data/data/bedrock/common/versions.json +3 -1
  21. package/minecraft-data/data/bedrock/latest/proto.yml +125 -89
  22. package/minecraft-data/data/bedrock/latest/types.yml +29 -1
  23. package/minecraft-data/data/dataPaths.json +57 -13
  24. package/minecraft-data/data/pc/1.20.5/protocol.json +1 -1
  25. package/minecraft-data/data/pc/1.21.3/protocol.json +1 -1
  26. package/minecraft-data/data/pc/1.21.4/protocol.json +1 -1
  27. package/minecraft-data/data/pc/common/protocolVersions.json +88 -0
  28. package/minecraft-data/doc/history.md +11 -0
  29. package/minecraft-data/tools/js/package.json +2 -2
  30. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 898,
3
+ "minecraftVersion": "1.21.130",
4
+ "majorVersion": "1.21",
5
+ "releaseType": "release"
6
+ }
@@ -1,4 +1,16 @@
1
1
  [
2
+ {
3
+ "version": 898,
4
+ "minecraftVersion": "1.21.130",
5
+ "majorVersion": "1.21",
6
+ "releaseType": "release"
7
+ },
8
+ {
9
+ "version": 860,
10
+ "minecraftVersion": "1.21.124",
11
+ "majorVersion": "1.21",
12
+ "releaseType": "release"
13
+ },
2
14
  {
3
15
  "version": 859,
4
16
  "minecraftVersion": "1.21.120",
@@ -46,5 +46,7 @@
46
46
  "1.21.93",
47
47
  "1.21.100",
48
48
  "1.21.111",
49
- "1.21.120"
49
+ "1.21.120",
50
+ "1.21.124",
51
+ "1.21.130"
50
52
  ]
@@ -1,7 +1,7 @@
1
1
  # Created from MiNET and gophertunnel docs
2
2
  # The version below is the latest version this protocol schema was updated for.
3
3
  # The output protocol.json will be in the folder for the version
4
- !version: 1.21.120
4
+ !version: 1.21.130
5
5
 
6
6
  # Some ProtoDef aliases
7
7
  string: ["pstring",{"countType":"varint"}] # String / array types
@@ -165,8 +165,6 @@ packet_resource_pack_stack:
165
165
  # If the resource pack must be accepted for the player to join the server.
166
166
  must_accept: bool
167
167
  # [inline]
168
- behavior_packs: ResourcePackIdVersions
169
- # [inline]
170
168
  resource_packs: ResourcePackIdVersions
171
169
  game_version: string
172
170
  experiments: Experiments # ??? such random fields
@@ -192,8 +190,29 @@ packet_resource_pack_client_response:
192
190
  packet_text:
193
191
  !id: 0x09
194
192
  !bound: both
195
- # TextType is the type of the text sent. When a client sends this to the server, it should always be
196
- # TextTypeChat. If the server sends it, it may be one of the other text types above.
193
+ # NeedsTranslation specifies if any of the messages need to be translated.
194
+ needs_translation: bool
195
+ category: u8 =>
196
+ 0: message_only
197
+ 1: authored
198
+ 2: parameters
199
+ _: category ?
200
+ if message_only:
201
+ raw: string
202
+ tip: string
203
+ system_message: string
204
+ text_object_whisper: string
205
+ text_object_announcement: string
206
+ text_object: string
207
+ if authored:
208
+ chat: string
209
+ whisper: string
210
+ announcement: string
211
+ if parameters:
212
+ translate: string
213
+ popup: string
214
+ jukebox_popup: string
215
+ # TextType is the type of the text sent.
197
216
  type: u8 =>
198
217
  0: raw
199
218
  1: chat
@@ -207,10 +226,6 @@ packet_text:
207
226
  9: json_whisper
208
227
  10: json
209
228
  11: json_announcement
210
- # NeedsTranslation specifies if any of the messages need to be translated. It seems that where % is found
211
- # in translatable text types, these are translated regardless of this bool. Translatable text types
212
- # include TextTypeTip, TextTypePopup and TextTypeJukeboxPopup.
213
- needs_translation: bool
214
229
  _: type?
215
230
  if chat or whisper or announcement:
216
231
  source_name: string
@@ -226,9 +241,10 @@ packet_text:
226
241
  # Nintendo Switch). It is otherwise an empty string, and is used to decide which players are able to
227
242
  # chat with each other.
228
243
  platform_chat_id: string
229
- # FilteredMessage is a filtered version of Message with all the profanity removed. The client will use
230
- # this over Message if this field is not empty and they have the "Filter Profanity" setting enabled.
231
- filtered_message: string
244
+ # FilteredMessage is a filtered version of Message with all the profanity removed.
245
+ has_filtered_message: bool
246
+ filtered_message: has_filtered_message ?
247
+ if true: string
232
248
  # For additional information and examples of all the chat types above, see here: https://imgur.com/a/KhcFscg
233
249
 
234
250
 
@@ -454,7 +470,6 @@ packet_start_game:
454
470
  # its index in the expected block palette. This is useful for servers that wish to support multiple protocol versions
455
471
  # and custom blocks, but it will result in extra bytes being written for every block in a sub chunk palette.
456
472
  block_network_ids_are_hashes: bool
457
- tick_death_systems: bool
458
473
  server_controlled_sound: bool
459
474
 
460
475
  packet_add_player:
@@ -1033,6 +1048,7 @@ packet_mob_effect:
1033
1048
  particles: bool
1034
1049
  duration: zigzag32
1035
1050
  tick: varint64
1051
+ ambient: bool
1036
1052
 
1037
1053
  packet_update_attributes:
1038
1054
  !id: 0x1d
@@ -1084,11 +1100,10 @@ packet_interact:
1084
1100
  # TargetEntityRuntimeID is the runtime ID of the entity that the player interacted with. This is empty
1085
1101
  # for the InteractActionOpenInventory action type.
1086
1102
  target_entity_id: varint64
1087
- # Position associated with the ActionType above. For the InteractActionMouseOverEntity, this is the
1088
- # position relative to the entity moused over over which the player hovered with its mouse/touch. For the
1089
- # InteractActionLeaveVehicle, this is the position that the player spawns at after leaving the vehicle.
1090
- position: action_id ?
1091
- if mouse_over_entity or leave_vehicle: vec3f
1103
+ # Position associated with the ActionType above.
1104
+ has_position: bool
1105
+ position: has_position ?
1106
+ if true: vec3f
1092
1107
 
1093
1108
  packet_block_pick_request:
1094
1109
  !id: 0x22
@@ -1183,7 +1198,7 @@ packet_set_spawn_position:
1183
1198
  packet_animate:
1184
1199
  !id: 0x2c
1185
1200
  !bound: both
1186
- action_id: zigzag32 =>
1201
+ action_id: u8 =>
1187
1202
  # Unused
1188
1203
  0: none
1189
1204
  # Server bound notification to swing the player's arm. Server is expected to rebroadcast to all that should see the arm move.
@@ -1196,18 +1211,12 @@ packet_animate:
1196
1211
  4: critical_hit
1197
1212
  # Unused
1198
1213
  5: magic_critical_hit
1199
- # Sent every tick the client is in a boat exclusively in legacy client authoritative movement.
1200
- # See Player Auth Input for how to compute this in the latest protocol.
1201
- 128: row_right
1202
- # Sent every tick the client is in a boat exclusively in legacy client authoritative movement.
1203
- # See Player Auth Input for how to compute this in the latest protocol.
1204
- 129: row_left
1205
1214
  runtime_entity_id: varint64
1206
1215
  # Data holds an action-specific value whose meaning depends on the animation type.
1207
1216
  data: lf32
1208
- _: action_id ?
1209
- if row_right or row_left:
1210
- rowing_time: lf32
1217
+ has_swing_source: bool
1218
+ swing_source: has_swing_source ?
1219
+ if true: string
1211
1220
 
1212
1221
  packet_respawn:
1213
1222
  !id: 0x2d
@@ -1787,12 +1796,6 @@ packet_available_commands:
1787
1796
  !bound: client
1788
1797
  # The length of the enums for all the command parameters in this packet
1789
1798
  values_len: varint
1790
- # Not read from stream: instead calculated from the `values_len` field
1791
- #
1792
- # If the values_len < 0xff => byte,
1793
- # If the values_len < 0xffff => short,
1794
- # If the values_len < 0xffffff => int
1795
- _enum_type: ["enum_size_based_on_values_len"]
1796
1799
  # Here all the enum values for all of the possible commands are stored to one array palette
1797
1800
  enum_values: string[]$values_len
1798
1801
  # chained_subcommand_values is a slice of all chained subcommand names. chained_subcommand_values generally should
@@ -1807,13 +1810,8 @@ packet_available_commands:
1807
1810
  enums: []varint
1808
1811
  # The name of the enum
1809
1812
  name: string
1810
- # The values in the enum
1811
- values: []varint
1812
- # The indexes to value in the palette
1813
- _: ../_enum_type?
1814
- if byte: u8
1815
- if short: lu16
1816
- if int: lu32
1813
+ # The values in the enum. In 1.21.130 this is always lu32.
1814
+ values: lu32[]varint
1817
1815
  # chained_subcommands is a slice of all subcommands that are followed by a chained command. An example usage of this
1818
1816
  # is /execute which allows you to run another command as another entity or at a different position etc.
1819
1817
  chained_subcommands: []varint
@@ -1822,21 +1820,23 @@ packet_available_commands:
1822
1820
  name: string
1823
1821
  # values contains the index and parameter type of the chained subcommand.
1824
1822
  values: []varint
1825
- # index is the index of the argument in the ChainedSubcommandValues slice from the AvailableCommands packet. This is
1826
- # then used to set the type specified by the Value field below.
1827
- index: lu16
1828
- # value is a combination of the flags above and specified the type of argument. Unlike regular parameter types,
1829
- # this should NOT contain any of the special flags (valid, enum, suffixed or soft enum) but only the basic types.
1830
- value: lu16
1823
+ # index is the index of the argument in the ChainedSubcommandValues slice.
1824
+ # In 1.21.130 this changed from lu16 to varint.
1825
+ index: varint
1826
+ # value is a combination of the flags above.
1827
+ # In 1.21.130 this changed from lu16 to varint.
1828
+ value: varint
1831
1829
  command_data: []varint
1832
1830
  name: string
1833
1831
  description: string
1834
1832
  flags: lu16
1835
- permission_level: u8
1833
+ # Permission level changed from u8 to string in 1.21.130
1834
+ permission_level: string
1836
1835
  alias: li32
1837
1836
  # chained_subcommand_offsets is a slice of offsets that all point to a different chained_subcommand from the
1838
1837
  # chained_subcommands slice in the available_commands packet.
1839
- chained_subcommand_offsets: lu16[]varint
1838
+ # In 1.21.130 this changed from lu16 to lu32.
1839
+ chained_subcommand_offsets: lu32[]varint
1840
1840
  # The list of overload parameters for this command
1841
1841
  overloads: []varint
1842
1842
  # chaining determines if the parameters use chained subcommands or not.
@@ -1921,7 +1921,7 @@ packet_command_request:
1921
1921
  internal: bool
1922
1922
  # Specifies the version of the command to run, relative to the current Minecraft version. Should be set
1923
1923
  # to 52 as of 1.19.62
1924
- version: varint
1924
+ version: string
1925
1925
 
1926
1926
 
1927
1927
  # CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
@@ -1985,33 +1985,26 @@ packet_command_output:
1985
1985
  # messages in this packet to the right origin, depending on what is sent here.
1986
1986
  origin: CommandOrigin
1987
1987
  # OutputType specifies the type of output that is sent.
1988
- output_type: i8 =>
1989
- 1: last
1990
- 2: silent
1991
- 3: all
1992
- 4: data_set
1988
+ # OutputType specifies the type of output that is sent.
1989
+ output_type: string
1993
1990
  # SuccessCount is the amount of times that a command was executed successfully as a result of the command
1994
1991
  # that was requested. For servers, this is usually a rather meaningless fields, but for vanilla, this is
1995
1992
  # applicable for commands created with Functions.
1996
- success_count: varint
1993
+ success_count: lu32
1997
1994
  # OutputMessages is a list of all output messages that should be sent to the player. Whether they are
1998
1995
  # shown or not, depends on the type of the messages.
1999
1996
  output: []varint
2000
- # Success indicates if the output message was one of a successful command execution. If set to true, the
2001
- # output message is by default coloured white, whereas if set to false, the message is by default
2002
- # coloured red.
2003
- success: bool
2004
- # Message is the message that is sent to the client in the chat window. It may either be simply a
2005
- # message or a translated built-in string like 'commands.tp.success.coordinates', combined with specific
2006
- # parameters below.
1997
+ # Message is the message that is sent to the client in the chat window.
2007
1998
  message_id: string
1999
+ # Success indicates if the output message was one of a successful command execution.
2000
+ success: bool
2008
2001
  # Parameters is a list of parameters that serve to supply the message sent with additional information,
2009
2002
  # such as the position that a player was teleported to or the effect that was applied to an entity.
2010
2003
  # These parameters only apply for the Minecraft built-in command output.
2011
2004
  parameters: string[]varint
2012
- data_set: output_type ?
2013
- if data_set: string
2014
- default: void
2005
+ has_data: bool
2006
+ data: has_data ?
2007
+ if true: string
2015
2008
 
2016
2009
 
2017
2010
  # UpdateTrade is sent by the server to update the trades offered by a villager to a player. It is sent at the
@@ -3568,27 +3561,12 @@ packet_filter_text_packet:
3568
3561
  packet_debug_renderer:
3569
3562
  !id: 0xa4
3570
3563
  !bound: client
3571
- # Type is the type of action. It is one of the constants above.
3572
- type: li32 =>
3573
- 1: clear
3574
- 2: add_cube
3575
- _: type ?
3576
- if clear: void
3577
- if add_cube:
3578
- # Text is the text that is displayed above the debug.
3579
- text: string
3580
- # Position is the position to spawn the debug on.
3581
- position: vec3f
3582
- # Red is the red value from the RGBA colour rendered on the debug.
3583
- red: lf32
3584
- # Green is the green value from the RGBA colour rendered on the debug.
3585
- green: lf32
3586
- # Blue is the blue value from the RGBA colour rendered on the debug.
3587
- blue: lf32
3588
- # Alpha is the alpha value from the RGBA colour rendered on the debug.
3589
- alpha: lf32
3590
- # Duration is how long the debug will last in the world for. It is measured in milliseconds.
3591
- duration: li64
3564
+ type: string
3565
+ has_data: bool
3566
+ data: has_data ?
3567
+ if true: DebugMarkerData
3568
+
3569
+
3592
3570
 
3593
3571
  # Sent by the server to synchronize/update entity properties as NBT, an alternative to Set Entity Data.
3594
3572
  packet_sync_entity_property:
@@ -4422,11 +4400,15 @@ packet_camera_aim_assist_presets:
4422
4400
  block_priorities: []varint
4423
4401
  id: string
4424
4402
  priority: li32
4403
+ block_tags: varint[]varint
4425
4404
  entity_default?: li32
4426
4405
  block_default?: li32
4427
4406
  presets: []varint
4428
4407
  id: string
4429
- exclude_blocks: string[]varint
4408
+ exclusion_settings:
4409
+ blocks: string[]varint
4410
+ entities: string[]varint
4411
+ block_tags: string[]varint
4430
4412
  target_liquids: string[]varint
4431
4413
  item_settings: []varint
4432
4414
  # Identifier of the item to apply the settings to.
@@ -4576,7 +4558,7 @@ packet_serverbound_pack_setting_change:
4576
4558
  pack_id: uuid
4577
4559
  pack_setting:
4578
4560
  name: string
4579
- type: u8 =>
4561
+ type: varint =>
4580
4562
  - float
4581
4563
  - bool
4582
4564
  - string
@@ -4585,6 +4567,44 @@ packet_serverbound_pack_setting_change:
4585
4567
  if bool: bool
4586
4568
  if string: string
4587
4569
 
4570
+ packet_clientbound_data_store:
4571
+ !id: 0x14a
4572
+ !bound: client
4573
+ entries: []varint
4574
+ type: varint =>
4575
+ 0: update
4576
+ 1: change
4577
+ 2: removal
4578
+ _: type ?
4579
+ if update:
4580
+ name: string
4581
+ property: string
4582
+ path: string
4583
+ data_type: varint =>
4584
+ 0: double
4585
+ 1: bool
4586
+ 2: string
4587
+ data: data_type ?
4588
+ if double: lf64
4589
+ if bool: bool
4590
+ if string: string
4591
+ update_count: varint
4592
+ if change:
4593
+ name: string
4594
+ property: string
4595
+ update_count: varint
4596
+ # TODO: This packet maybe defined wrong. Needs further investigation
4597
+ data_type: varint =>
4598
+ 0: double
4599
+ 1: bool
4600
+ 2: string
4601
+ data: data_type ?
4602
+ if double: lf64
4603
+ if bool: bool
4604
+ if string: string
4605
+ if removal:
4606
+ name: string
4607
+
4588
4608
  packet_graphics_override_parameter:
4589
4609
  !id: 0x14b
4590
4610
  !bound: client
@@ -4592,3 +4612,19 @@ packet_graphics_override_parameter:
4592
4612
  biome_identifier: string
4593
4613
  parameter_type: GraphicsOverrideParameterType
4594
4614
  reset: bool
4615
+
4616
+ packet_serverbound_data_store:
4617
+ !id: 0x14c
4618
+ !bound: server
4619
+ name: string
4620
+ property: string
4621
+ path: string
4622
+ data_type: varint =>
4623
+ 0: double
4624
+ 1: bool
4625
+ 2: string
4626
+ data: data_type ?
4627
+ if double: lf64
4628
+ if bool: bool
4629
+ if string: string
4630
+ update_count: varint
@@ -489,7 +489,8 @@ MetadataFlags2: [ "bitflags", {
489
489
  "wasd_air_controlled",
490
490
  "does_server_auth_only_dismount",
491
491
  "body_rotation_always_follows_head",
492
- "can_use_vertical_movement_action"
492
+ "can_use_vertical_movement_action",
493
+ "rotation_locked_to_vehicle"
493
494
  ]
494
495
  }]
495
496
 
@@ -2190,6 +2191,18 @@ SoundType: varint =>
2190
2191
  - PlaceItem
2191
2192
  - SingleItemSwap
2192
2193
  - MultiItemSwap
2194
+ - ItemEnchantLunge1
2195
+ - ItemEnchantLunge2
2196
+ - ItemEnchantLunge3
2197
+ - AttackCritical
2198
+ - ItemSpearAttackHit
2199
+ - ItemSpearAttackMiss
2200
+ - ItemWoodenSpearAttackHit
2201
+ - ItemWoodenSpearAttackMiss
2202
+ - ImitateParched
2203
+ - ImitateCamelHusk
2204
+ - ItemSpearUse
2205
+ - ItemWoodenSpearUse
2193
2206
 
2194
2207
  # TODO: remove?
2195
2208
  LegacyEntityType: li32 =>
@@ -2896,3 +2909,18 @@ ParameterKeyframeValue:
2896
2909
 
2897
2910
  GraphicsOverrideParameterType: u8 =>
2898
2911
  - sky_zenith_color
2912
+ - sky_horizon_color
2913
+ - horizon_blend_min
2914
+ - horizon_blend_max
2915
+ - horizon_blend_start
2916
+ - horizon_blend_mie_start
2917
+ - rayleigh_strength
2918
+ - sun_mie_strength
2919
+ - moon_mie_strength
2920
+ - sun_glare_shape
2921
+
2922
+ DebugMarkerData:
2923
+ text: string
2924
+ position: vec3f
2925
+ color: lu32
2926
+ duration: lu64
@@ -2595,12 +2595,12 @@
2595
2595
  "language": "bedrock/1.21.70"
2596
2596
  },
2597
2597
  "1.21.111": {
2598
- "blocks": "bedrock/1.21.100",
2599
- "blockStates": "bedrock/1.21.100",
2600
- "blockCollisionShapes": "bedrock/1.21.100",
2598
+ "blocks": "bedrock/1.21.111",
2599
+ "blockStates": "bedrock/1.21.111",
2600
+ "blockCollisionShapes": "bedrock/1.21.111",
2601
2601
  "biomes": "bedrock/1.21.60",
2602
2602
  "entities": "bedrock/1.21.80",
2603
- "items": "bedrock/1.21.100",
2603
+ "items": "bedrock/1.21.111",
2604
2604
  "recipes": "bedrock/1.19.10",
2605
2605
  "instruments": "bedrock/1.17.0",
2606
2606
  "materials": "pc/1.17",
@@ -2609,20 +2609,20 @@
2609
2609
  "protocol": "bedrock/1.21.111",
2610
2610
  "windows": "bedrock/1.16.201",
2611
2611
  "steve": "bedrock/1.21.70",
2612
- "blocksB2J": "bedrock/1.21.100",
2613
- "blocksJ2B": "bedrock/1.21.100",
2612
+ "blocksB2J": "bedrock/1.21.111",
2613
+ "blocksJ2B": "bedrock/1.21.111",
2614
2614
  "proto": "bedrock/1.21.111",
2615
2615
  "types": "bedrock/latest",
2616
2616
  "version": "bedrock/1.21.111",
2617
2617
  "language": "bedrock/1.21.70"
2618
2618
  },
2619
2619
  "1.21.120": {
2620
- "blocks": "bedrock/1.21.100",
2621
- "blockStates": "bedrock/1.21.100",
2622
- "blockCollisionShapes": "bedrock/1.21.100",
2620
+ "blocks": "bedrock/1.21.111",
2621
+ "blockStates": "bedrock/1.21.111",
2622
+ "blockCollisionShapes": "bedrock/1.21.111",
2623
2623
  "biomes": "bedrock/1.21.60",
2624
2624
  "entities": "bedrock/1.21.80",
2625
- "items": "bedrock/1.21.100",
2625
+ "items": "bedrock/1.21.111",
2626
2626
  "recipes": "bedrock/1.19.10",
2627
2627
  "instruments": "bedrock/1.17.0",
2628
2628
  "materials": "pc/1.17",
@@ -2631,12 +2631,56 @@
2631
2631
  "protocol": "bedrock/1.21.120",
2632
2632
  "windows": "bedrock/1.16.201",
2633
2633
  "steve": "bedrock/1.21.70",
2634
- "blocksB2J": "bedrock/1.21.100",
2635
- "blocksJ2B": "bedrock/1.21.100",
2636
- "proto": "bedrock/latest",
2634
+ "blocksB2J": "bedrock/1.21.111",
2635
+ "blocksJ2B": "bedrock/1.21.111",
2636
+ "proto": "bedrock/1.21.120",
2637
2637
  "types": "bedrock/latest",
2638
2638
  "version": "bedrock/1.21.120",
2639
2639
  "language": "bedrock/1.21.70"
2640
+ },
2641
+ "1.21.124": {
2642
+ "blocks": "bedrock/1.21.111",
2643
+ "blockStates": "bedrock/1.21.111",
2644
+ "blockCollisionShapes": "bedrock/1.21.111",
2645
+ "biomes": "bedrock/1.21.60",
2646
+ "entities": "bedrock/1.21.80",
2647
+ "items": "bedrock/1.21.111",
2648
+ "recipes": "bedrock/1.19.10",
2649
+ "instruments": "bedrock/1.17.0",
2650
+ "materials": "pc/1.17",
2651
+ "enchantments": "bedrock/1.19.1",
2652
+ "effects": "pc/1.17",
2653
+ "protocol": "bedrock/1.21.124",
2654
+ "windows": "bedrock/1.16.201",
2655
+ "steve": "bedrock/1.21.70",
2656
+ "blocksB2J": "bedrock/1.21.111",
2657
+ "blocksJ2B": "bedrock/1.21.111",
2658
+ "proto": "bedrock/1.21.124",
2659
+ "types": "bedrock/latest",
2660
+ "version": "bedrock/1.21.124",
2661
+ "language": "bedrock/1.21.70"
2662
+ },
2663
+ "1.21.130": {
2664
+ "blocks": "bedrock/1.21.111",
2665
+ "blockStates": "bedrock/1.21.111",
2666
+ "blockCollisionShapes": "bedrock/1.21.111",
2667
+ "biomes": "bedrock/1.21.60",
2668
+ "entities": "bedrock/1.21.80",
2669
+ "items": "bedrock/1.21.111",
2670
+ "recipes": "bedrock/1.19.10",
2671
+ "instruments": "bedrock/1.17.0",
2672
+ "materials": "pc/1.17",
2673
+ "enchantments": "bedrock/1.19.1",
2674
+ "effects": "pc/1.17",
2675
+ "protocol": "bedrock/1.21.130",
2676
+ "windows": "bedrock/1.16.201",
2677
+ "steve": "bedrock/1.21.70",
2678
+ "blocksB2J": "bedrock/1.21.111",
2679
+ "blocksJ2B": "bedrock/1.21.111",
2680
+ "proto": "bedrock/latest",
2681
+ "types": "bedrock/latest",
2682
+ "version": "bedrock/1.21.130",
2683
+ "language": "bedrock/1.21.70"
2640
2684
  }
2641
2685
  }
2642
2686
  }
@@ -8564,7 +8564,7 @@
8564
8564
  "arm_animation": "packet_arm_animation",
8565
8565
  "spectate": "packet_spectate",
8566
8566
  "block_place": "packet_block_place",
8567
- "use_item": "packet_use_item"
8567
+ "use_item": "packet_use_item"
8568
8568
  }
8569
8569
  }
8570
8570
  ]
@@ -9316,7 +9316,7 @@
9316
9316
  "arm_animation": "packet_arm_animation",
9317
9317
  "spectate": "packet_spectate",
9318
9318
  "block_place": "packet_block_place",
9319
- "use_item": "packet_use_item"
9319
+ "use_item": "packet_use_item"
9320
9320
  }
9321
9321
  }
9322
9322
  ]
@@ -9367,7 +9367,7 @@
9367
9367
  "arm_animation": "packet_arm_animation",
9368
9368
  "spectate": "packet_spectate",
9369
9369
  "block_place": "packet_block_place",
9370
- "use_item": "packet_use_item"
9370
+ "use_item": "packet_use_item"
9371
9371
  }
9372
9372
  }
9373
9373
  ]
@@ -1,4 +1,92 @@
1
1
  [
2
+ {
3
+ "minecraftVersion": "1.21.11",
4
+ "version": 774,
5
+ "dataVersion": 4671,
6
+ "usesNetty": true,
7
+ "majorVersion": "1.21",
8
+ "releaseType": "release"
9
+ },
10
+ {
11
+ "minecraftVersion": "1.21.11-rc3",
12
+ "version": 1073742110,
13
+ "dataVersion": 4670,
14
+ "usesNetty": true,
15
+ "majorVersion": "1.21",
16
+ "releaseType": "snapshot"
17
+ },
18
+ {
19
+ "minecraftVersion": "1.21.11-rc2",
20
+ "version": 1073742109,
21
+ "dataVersion": 4669,
22
+ "usesNetty": true,
23
+ "majorVersion": "1.21",
24
+ "releaseType": "snapshot"
25
+ },
26
+ {
27
+ "minecraftVersion": "1.21.11-rc1",
28
+ "version": 1073742108,
29
+ "dataVersion": 4668,
30
+ "usesNetty": true,
31
+ "majorVersion": "1.21",
32
+ "releaseType": "snapshot"
33
+ },
34
+ {
35
+ "minecraftVersion": "1.21.11-pre5",
36
+ "version": 1073742107,
37
+ "dataVersion": 4667,
38
+ "usesNetty": true,
39
+ "majorVersion": "1.21",
40
+ "releaseType": "snapshot"
41
+ },
42
+ {
43
+ "minecraftVersion": "1.21.11-pre4",
44
+ "version": 1073742106,
45
+ "dataVersion": 4666,
46
+ "usesNetty": true,
47
+ "majorVersion": "1.21",
48
+ "releaseType": "snapshot"
49
+ },
50
+ {
51
+ "minecraftVersion": "1.21.11-pre3",
52
+ "version": 1073742105,
53
+ "dataVersion": 4665,
54
+ "usesNetty": true,
55
+ "majorVersion": "1.21",
56
+ "releaseType": "snapshot"
57
+ },
58
+ {
59
+ "minecraftVersion": "1.21.11-pre2",
60
+ "version": 1073742104,
61
+ "dataVersion": 4664,
62
+ "usesNetty": true,
63
+ "majorVersion": "1.21",
64
+ "releaseType": "snapshot"
65
+ },
66
+ {
67
+ "minecraftVersion": "1.21.11-pre1",
68
+ "version": 1073742103,
69
+ "dataVersion": 4663,
70
+ "usesNetty": true,
71
+ "majorVersion": "1.21",
72
+ "releaseType": "snapshot"
73
+ },
74
+ {
75
+ "minecraftVersion": "25w46a",
76
+ "version": 1073742102,
77
+ "dataVersion": 4662,
78
+ "usesNetty": true,
79
+ "majorVersion": "1.21",
80
+ "releaseType": "snapshot"
81
+ },
82
+ {
83
+ "minecraftVersion": "25w45a",
84
+ "version": 1073742101,
85
+ "dataVersion": 4660,
86
+ "usesNetty": true,
87
+ "majorVersion": "1.21",
88
+ "releaseType": "snapshot"
89
+ },
2
90
  {
3
91
  "minecraftVersion": "25w44a",
4
92
  "version": 1073742100,