minecraft-data 3.94.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.
@@ -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
@@ -2540,10 +2540,32 @@
2540
2540
  "steve": "bedrock/1.21.50",
2541
2541
  "blocksB2J": "bedrock/1.21.80",
2542
2542
  "blocksJ2B": "bedrock/1.21.80",
2543
- "proto": "bedrock/latest",
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
  }
@@ -645,9 +645,13 @@
645
645
  "name": "nbtNameForEnchant",
646
646
  "description": "what the nbt key for enchants is",
647
647
  "values": [
648
+ {
649
+ "value": "componentEnchantments",
650
+ "versions": ["1.20.5", "latest"]
651
+ },
648
652
  {
649
653
  "value": "Enchantments",
650
- "versions": ["1.13_major", "latest"]
654
+ "versions": ["1.13_major", "1.20.4"]
651
655
  },
652
656
  {
653
657
  "value": "ench",
@@ -664,13 +668,9 @@
664
668
  "name": "typeOfValueForEnchantLevel",
665
669
  "description": "type of value that stores enchant lvl in the nbt",
666
670
  "values": [
667
- {
668
- "value": "string",
669
- "versions": ["1.13_major", "latest"]
670
- },
671
671
  {
672
672
  "value": "short",
673
- "versions": ["1.8_major", "1.12_major"]
673
+ "versions": ["1.8_major", "latest"]
674
674
  }
675
675
  ]
676
676
  },
@@ -1,4 +1,12 @@
1
1
  [
2
+ {
3
+ "minecraftVersion": "25w32a",
4
+ "version": 1073742085,
5
+ "dataVersion": 4536,
6
+ "usesNetty": true,
7
+ "majorVersion": "1.21",
8
+ "releaseType": "snapshot"
9
+ },
2
10
  {
3
11
  "minecraftVersion": "25w31a",
4
12
  "version": 1073742084,
@@ -1,3 +1,9 @@
1
+ ## 3.95.0
2
+ * [Add bedrock 1.21.100 protocol data (#1041)](https://github.com/PrismarineJS/minecraft-data/commit/ae4cf26bd9a73478b6129ea404bef40db5e9f03e) (thanks @extremeheat)
3
+ * [Fix pc "nbtNameForEnchant" feature versions (#986)](https://github.com/PrismarineJS/minecraft-data/commit/79ad67106787847f05faa68aaca3f3faea5cf9a1) (thanks @IKorzI)
4
+ * [Mention minebase wrapper lib in readme (#1040)](https://github.com/PrismarineJS/minecraft-data/commit/24a38bc7746a5c280dad0c18567bd03c4afcec9f) (thanks @ItsDrike)
5
+ * [Add 25w32a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/820cdf0c515422b30805fc91ff292861d5152aae) (thanks @github-actions[bot])
6
+
1
7
  ## 3.94.0
2
8
  * [Add pc 1.21.5 protocol data (#1029)](https://github.com/PrismarineJS/minecraft-data/commit/6d6e431dd22cd9d0fb9e8c5b7029f6f1311f7501) (thanks @extremeheat)
3
9
  * [Add 25w31a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/60bc124b73d6daa12e80179e963aa93a80a40d45) (thanks @github-actions[bot])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.94.0",
3
+ "version": "3.95.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",