minecraft-data 3.93.0 → 3.95.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 (27) hide show
  1. package/data.js +38 -16
  2. package/doc/history.md +8 -0
  3. package/index.d.ts +5 -2
  4. package/minecraft-data/README.md +2 -2
  5. package/minecraft-data/data/bedrock/1.21.100/protocol.json +14329 -0
  6. package/minecraft-data/data/bedrock/1.21.100/version.json +6 -0
  7. package/minecraft-data/data/bedrock/1.21.80/blocksB2J.json +9913 -0
  8. package/minecraft-data/data/bedrock/1.21.80/blocksJ2B.json +27916 -0
  9. package/minecraft-data/data/bedrock/1.21.90/blockCollisionShapes.json +1588 -0
  10. package/minecraft-data/data/bedrock/1.21.90/blocks.json +22765 -0
  11. package/minecraft-data/data/bedrock/1.21.90/items.json +11957 -0
  12. package/minecraft-data/data/bedrock/1.21.93/proto.yml +4600 -0
  13. package/minecraft-data/data/bedrock/1.21.93/types.yml +2806 -0
  14. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  15. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  16. package/minecraft-data/data/bedrock/latest/proto.yml +11 -38
  17. package/minecraft-data/data/bedrock/latest/types.yml +36 -1
  18. package/minecraft-data/data/dataPaths.json +38 -16
  19. package/minecraft-data/data/pc/1.21.4/proto.yml +3242 -0
  20. package/minecraft-data/data/pc/1.21.4/protocol.json +2 -8
  21. package/minecraft-data/data/pc/1.21.5/entities.json +2816 -176
  22. package/minecraft-data/data/pc/1.21.5/protocol.json +9850 -0
  23. package/minecraft-data/data/pc/common/features.json +11 -6
  24. package/minecraft-data/data/pc/common/protocolVersions.json +32 -0
  25. package/minecraft-data/data/pc/latest/proto.yml +306 -169
  26. package/minecraft-data/doc/history.md +13 -0
  27. package/package.json +2 -2
@@ -1,4 +1,10 @@
1
1
  [
2
+ {
3
+ "version": 827,
4
+ "minecraftVersion": "1.21.100",
5
+ "majorVersion": "1.21",
6
+ "releaseType": "release"
7
+ },
2
8
  {
3
9
  "version": 819,
4
10
  "minecraftVersion": "1.21.93",
@@ -43,5 +43,6 @@
43
43
  "1.21.70",
44
44
  "1.21.80",
45
45
  "1.21.90",
46
- "1.21.93"
46
+ "1.21.93",
47
+ "1.21.100"
47
48
  ]
@@ -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.93
4
+ !version: 1.21.100
5
5
 
6
6
  # Some ProtoDef aliases
7
7
  string: ["pstring",{"countType":"varint"}] # String / array types
@@ -454,6 +454,7 @@ packet_start_game:
454
454
  # its index in the expected block palette. This is useful for servers that wish to support multiple protocol versions
455
455
  # and custom blocks, but it will result in extra bytes being written for every block in a sub chunk palette.
456
456
  block_network_ids_are_hashes: bool
457
+ tick_death_systems: bool
457
458
  server_controlled_sound: bool
458
459
 
459
460
  packet_add_player:
@@ -3542,10 +3543,8 @@ packet_correct_player_move_prediction:
3542
3543
  position: vec3f
3543
3544
  # Delta is the change in position compared to what the client sent as its position at that specific tick.
3544
3545
  delta: vec3f
3545
- vehicle_rotation: prediction_type ?
3546
- if vehicle:
3547
- rotation: vec2f
3548
- angular_velocity?: lf32
3546
+ rotation: vec2f
3547
+ angular_velocity: lf32
3549
3548
  # OnGround specifies if the player was on the ground at the time of the tick below.
3550
3549
  on_ground: bool
3551
3550
  # Tick is the tick of the movement which was corrected by this packet.
@@ -4150,39 +4149,7 @@ packet_camera_instruction:
4150
4149
  runtime_id: li32
4151
4150
  # Ease represents the easing function that is used by the instruction.
4152
4151
  ease_data?:
4153
- type: u8 =>
4154
- - Linear
4155
- - Spring
4156
- - InQuad
4157
- - OutQuad
4158
- - InOutQuad
4159
- - InCubic
4160
- - OutCubic
4161
- - InOutCubic
4162
- - InQuart
4163
- - OutQuart
4164
- - InOutQuart
4165
- - InQuint
4166
- - OutQuint
4167
- - InOutQuint
4168
- - InSine
4169
- - OutSine
4170
- - InOutSine
4171
- - InExpo
4172
- - OutExpo
4173
- - InOutExpo
4174
- - InCirc
4175
- - OutCirc
4176
- - InOutCirc
4177
- - InBounce
4178
- - OutBounce
4179
- - InOutBounce
4180
- - InBack
4181
- - OutBack
4182
- - InOutBack
4183
- - InElastic
4184
- - OutElastic
4185
- - InOutElastic
4152
+ type: EaseType
4186
4153
  duration: lf32
4187
4154
  position?: vec3f
4188
4155
  rotation?: vec2f
@@ -4208,6 +4175,11 @@ packet_camera_instruction:
4208
4175
  entity_unique_id: li64
4209
4176
  # RemoveTarget can be set to true to remove the current aim assist target.
4210
4177
  remove_target?: bool
4178
+ fov?:
4179
+ field_of_view: lf32
4180
+ ease_time: lf32
4181
+ ease_type: EaseType
4182
+ clear: bool
4211
4183
 
4212
4184
  # Removed in 1.21.80
4213
4185
  packet_compressed_biome_definitions:
@@ -4397,6 +4369,7 @@ packet_camera_aim_assist:
4397
4369
  action: u8 =>
4398
4370
  - set
4399
4371
  - clear
4372
+ show_debug_render: bool
4400
4373
 
4401
4374
  # ContainerRegistryCleanup is sent by the server to trigger a client-side cleanup of the dynamic container registry.
4402
4375
  packet_container_registry_cleanup:
@@ -2152,6 +2152,7 @@ SoundType: varint =>
2152
2152
  - lead_unleash
2153
2153
  - lead_break
2154
2154
  - unsaddle
2155
+ - equip_copper
2155
2156
  - armor_crack_wolf
2156
2157
  - armor_break_wolf
2157
2158
  - armor_repair_wolf
@@ -2536,7 +2537,7 @@ BiomeDefinition:
2536
2537
  # NameIndex represents the index of the biome name in the string list from BiomeDefinitionListPacket.
2537
2538
  name_index: li16
2538
2539
  # BiomeID is the biome ID. This is optional and can be empty.
2539
- biome_id?: lu16
2540
+ biome_id: lu16
2540
2541
  # Temperature is the temperature of the biome, used for weather, biome behaviours and sky colour.
2541
2542
  temperature: lf32
2542
2543
  # Downfall is the amount that precipitation affects colours and block changes.
@@ -2804,3 +2805,37 @@ BiomeConditionalTransformation:
2804
2805
  # MinPassingNeighbours is the minimum number of neighbours that must pass the condition for the
2805
2806
  # transformation to be applied.
2806
2807
  min_passing_neighbours: lu32
2808
+
2809
+ EaseType: u8 =>
2810
+ - Linear
2811
+ - Spring
2812
+ - InQuad
2813
+ - OutQuad
2814
+ - InOutQuad
2815
+ - InCubic
2816
+ - OutCubic
2817
+ - InOutCubic
2818
+ - InQuart
2819
+ - OutQuart
2820
+ - InOutQuart
2821
+ - InQuint
2822
+ - OutQuint
2823
+ - InOutQuint
2824
+ - InSine
2825
+ - OutSine
2826
+ - InOutSine
2827
+ - InExpo
2828
+ - OutExpo
2829
+ - InOutExpo
2830
+ - InCirc
2831
+ - OutCirc
2832
+ - InOutCirc
2833
+ - InBounce
2834
+ - OutBounce
2835
+ - InOutBounce
2836
+ - InBack
2837
+ - OutBack
2838
+ - InOutBack
2839
+ - InElastic
2840
+ - OutElastic
2841
+ - InOutElastic
@@ -1556,7 +1556,7 @@
1556
1556
  "tints": "pc/1.21.4",
1557
1557
  "version": "pc/1.21.4",
1558
1558
  "windows": "pc/1.16.1",
1559
- "proto": "pc/latest"
1559
+ "proto": "pc/1.21.4"
1560
1560
  },
1561
1561
  "1.21.5": {
1562
1562
  "attributes": "pc/1.21.5",
@@ -1577,7 +1577,7 @@
1577
1577
  "mapIcons": "pc/1.20.2",
1578
1578
  "materials": "pc/1.21.5",
1579
1579
  "particles": "pc/1.21.5",
1580
- "protocol": "pc/1.21.4",
1580
+ "protocol": "pc/1.21.5",
1581
1581
  "recipes": "pc/1.21.5",
1582
1582
  "sounds": "pc/1.21.5",
1583
1583
  "tints": "pc/1.21.5",
@@ -1604,7 +1604,7 @@
1604
1604
  "mapIcons": "pc/1.20.2",
1605
1605
  "materials": "pc/1.21.6",
1606
1606
  "particles": "pc/1.21.6",
1607
- "protocol": "pc/1.21.4",
1607
+ "protocol": "pc/1.21.5",
1608
1608
  "recipes": "pc/1.21.6",
1609
1609
  "sounds": "pc/1.21.6",
1610
1610
  "tints": "pc/1.21.6",
@@ -2494,20 +2494,20 @@
2494
2494
  "protocol": "bedrock/1.21.80",
2495
2495
  "windows": "bedrock/1.16.201",
2496
2496
  "steve": "bedrock/1.21.50",
2497
- "blocksB2J": "bedrock/1.21.70",
2498
- "blocksJ2B": "bedrock/1.21.70",
2497
+ "blocksB2J": "bedrock/1.21.80",
2498
+ "blocksJ2B": "bedrock/1.21.80",
2499
2499
  "proto": "bedrock/1.21.80",
2500
2500
  "types": "bedrock/1.21.80",
2501
2501
  "version": "bedrock/1.21.80",
2502
2502
  "language": "bedrock/1.21.70"
2503
2503
  },
2504
2504
  "1.21.90": {
2505
- "blocks": "bedrock/1.21.80",
2505
+ "blocks": "bedrock/1.21.90",
2506
2506
  "blockStates": "bedrock/1.21.80",
2507
- "blockCollisionShapes": "bedrock/1.21.80",
2507
+ "blockCollisionShapes": "bedrock/1.21.90",
2508
2508
  "biomes": "bedrock/1.21.60",
2509
2509
  "entities": "bedrock/1.21.80",
2510
- "items": "bedrock/1.21.80",
2510
+ "items": "bedrock/1.21.90",
2511
2511
  "recipes": "bedrock/1.19.10",
2512
2512
  "instruments": "bedrock/1.17.0",
2513
2513
  "materials": "pc/1.17",
@@ -2516,20 +2516,20 @@
2516
2516
  "protocol": "bedrock/1.21.90",
2517
2517
  "windows": "bedrock/1.16.201",
2518
2518
  "steve": "bedrock/1.21.50",
2519
- "blocksB2J": "bedrock/1.21.70",
2520
- "blocksJ2B": "bedrock/1.21.70",
2519
+ "blocksB2J": "bedrock/1.21.80",
2520
+ "blocksJ2B": "bedrock/1.21.80",
2521
2521
  "proto": "bedrock/1.21.90",
2522
2522
  "types": "bedrock/latest",
2523
2523
  "version": "bedrock/1.21.90",
2524
2524
  "language": "bedrock/1.21.70"
2525
2525
  },
2526
2526
  "1.21.93": {
2527
- "blocks": "bedrock/1.21.80",
2527
+ "blocks": "bedrock/1.21.90",
2528
2528
  "blockStates": "bedrock/1.21.80",
2529
- "blockCollisionShapes": "bedrock/1.21.80",
2529
+ "blockCollisionShapes": "bedrock/1.21.90",
2530
2530
  "biomes": "bedrock/1.21.60",
2531
2531
  "entities": "bedrock/1.21.80",
2532
- "items": "bedrock/1.21.80",
2532
+ "items": "bedrock/1.21.90",
2533
2533
  "recipes": "bedrock/1.19.10",
2534
2534
  "instruments": "bedrock/1.17.0",
2535
2535
  "materials": "pc/1.17",
@@ -2538,12 +2538,34 @@
2538
2538
  "protocol": "bedrock/1.21.93",
2539
2539
  "windows": "bedrock/1.16.201",
2540
2540
  "steve": "bedrock/1.21.50",
2541
- "blocksB2J": "bedrock/1.21.70",
2542
- "blocksJ2B": "bedrock/1.21.70",
2543
- "proto": "bedrock/latest",
2541
+ "blocksB2J": "bedrock/1.21.80",
2542
+ "blocksJ2B": "bedrock/1.21.80",
2543
+ "proto": "bedrock/1.21.93",
2544
2544
  "types": "bedrock/latest",
2545
2545
  "version": "bedrock/1.21.93",
2546
2546
  "language": "bedrock/1.21.70"
2547
+ },
2548
+ "1.21.100": {
2549
+ "blocks": "bedrock/1.21.90",
2550
+ "blockStates": "bedrock/1.21.80",
2551
+ "blockCollisionShapes": "bedrock/1.21.90",
2552
+ "biomes": "bedrock/1.21.60",
2553
+ "entities": "bedrock/1.21.80",
2554
+ "items": "bedrock/1.21.90",
2555
+ "recipes": "bedrock/1.19.10",
2556
+ "instruments": "bedrock/1.17.0",
2557
+ "materials": "pc/1.17",
2558
+ "enchantments": "bedrock/1.19.1",
2559
+ "effects": "pc/1.17",
2560
+ "protocol": "bedrock/1.21.100",
2561
+ "windows": "bedrock/1.16.201",
2562
+ "steve": "bedrock/1.21.50",
2563
+ "blocksB2J": "bedrock/1.21.80",
2564
+ "blocksJ2B": "bedrock/1.21.80",
2565
+ "proto": "bedrock/latest",
2566
+ "types": "bedrock/latest",
2567
+ "version": "bedrock/1.21.100",
2568
+ "language": "bedrock/1.21.70"
2547
2569
  }
2548
2570
  }
2549
2571
  }