minecraft-data 3.61.2 → 3.63.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.
- package/data.js +23 -1
- package/doc/history.md +8 -0
- package/minecraft-data/.github/helper-bot/index.js +2 -2
- package/minecraft-data/.github/workflows/update-helper.yml +1 -1
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.19.10/protocol.json +1 -3
- package/minecraft-data/data/bedrock/1.19.10/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.20/protocol.json +1 -3
- package/minecraft-data/data/bedrock/1.19.20/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.21/protocol.json +1 -3
- package/minecraft-data/data/bedrock/1.19.21/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.30/protocol.json +1 -3
- package/minecraft-data/data/bedrock/1.19.30/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.40/protocol.json +6 -8
- package/minecraft-data/data/bedrock/1.19.40/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.50/protocol.json +16 -18
- package/minecraft-data/data/bedrock/1.19.50/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.60/protocol.json +20 -22
- package/minecraft-data/data/bedrock/1.19.60/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.62/protocol.json +20 -22
- package/minecraft-data/data/bedrock/1.19.62/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.70/protocol.json +24 -26
- package/minecraft-data/data/bedrock/1.19.70/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.19.80/protocol.json +24 -26
- package/minecraft-data/data/bedrock/1.19.80/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.0/protocol.json +28 -30
- package/minecraft-data/data/bedrock/1.20.0/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.10/protocol.json +28 -30
- package/minecraft-data/data/bedrock/1.20.10/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.30/protocol.json +35 -37
- package/minecraft-data/data/bedrock/1.20.30/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.40/protocol.json +35 -37
- package/minecraft-data/data/bedrock/1.20.40/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.50/protocol.json +44 -46
- package/minecraft-data/data/bedrock/1.20.50/types.yml +0 -2
- package/minecraft-data/data/bedrock/1.20.61/proto.yml +4147 -0
- package/minecraft-data/data/bedrock/1.20.61/protocol.json +44 -46
- package/minecraft-data/data/bedrock/1.20.61/types.yml +2291 -0
- package/minecraft-data/data/bedrock/1.20.71/protocol.json +12171 -0
- package/minecraft-data/data/bedrock/1.20.71/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
- package/minecraft-data/data/bedrock/common/versions.json +2 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +18 -11
- package/minecraft-data/data/bedrock/latest/types.yml +24 -2
- package/minecraft-data/data/dataPaths.json +23 -1
- package/minecraft-data/data/pc/1.20.2/recipes.json +35086 -9367
- package/minecraft-data/data/pc/1.20.3/recipes.json +35098 -9379
- package/minecraft-data/data/pc/common/protocolVersions.json +16 -0
- package/minecraft-data/doc/add-data-new-version.md +3 -1
- package/minecraft-data/doc/history.md +8 -0
- package/minecraft-data/tools/js/test/audit_recipes.js +12 -0
- package/package.json +1 -1
- package/minecraft-data/.github/helper-bot/github-helper.js +0 -59
|
@@ -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.20.
|
|
4
|
+
!version: 1.20.71
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -127,6 +127,9 @@ packet_resource_packs_info:
|
|
|
127
127
|
!bound: client
|
|
128
128
|
# If the resource pack requires the client accept it.
|
|
129
129
|
must_accept: bool
|
|
130
|
+
# HasAddons specifies if any of the resource packs contain addons in them. If set to true, only clients
|
|
131
|
+
# that support addons will be able to download them.
|
|
132
|
+
has_addons: bool
|
|
130
133
|
# If scripting is enabled.
|
|
131
134
|
has_scripts: bool
|
|
132
135
|
# ForcingServerPacks is currently an unclear field.
|
|
@@ -818,14 +821,18 @@ packet_level_event:
|
|
|
818
821
|
3607: particle_punch_block_west
|
|
819
822
|
3608: particle_punch_block_east
|
|
820
823
|
3609: particle_shoot_white_smoke
|
|
821
|
-
3610:
|
|
824
|
+
3610: particle_breeze_wind_explosion
|
|
822
825
|
3611: particle_trial_spawner_detection
|
|
823
826
|
3612: particle_trial_spawner_spawning
|
|
824
827
|
3613: particle_trial_spawner_ejecting
|
|
828
|
+
3614: particle_wind_explosion
|
|
825
829
|
4000: set_data
|
|
826
830
|
9800: players_sleeping
|
|
827
831
|
9801: sleeping_players
|
|
828
832
|
9810: jump_prevented
|
|
833
|
+
9811: animation_vault_activate
|
|
834
|
+
9812: animation_vault_deactivate
|
|
835
|
+
9813: animation_vault_eject_item
|
|
829
836
|
0x4000: add_particle_mask
|
|
830
837
|
# 0x4000 | + particle ID
|
|
831
838
|
16385: add_particle_bubble # 1
|
|
@@ -1004,6 +1011,7 @@ packet_mob_effect:
|
|
|
1004
1011
|
amplifier: zigzag32
|
|
1005
1012
|
particles: bool
|
|
1006
1013
|
duration: zigzag32
|
|
1014
|
+
tick: lu64
|
|
1007
1015
|
|
|
1008
1016
|
packet_update_attributes:
|
|
1009
1017
|
!id: 0x1d
|
|
@@ -1126,6 +1134,7 @@ packet_set_entity_motion:
|
|
|
1126
1134
|
# Velocity is the new velocity the entity gets. This velocity will initiate the client-side movement of
|
|
1127
1135
|
# the entity.
|
|
1128
1136
|
velocity: vec3f
|
|
1137
|
+
tick: varint64
|
|
1129
1138
|
|
|
1130
1139
|
# SetActorLink is sent by the server to initiate an entity link client-side, meaning one entity will start
|
|
1131
1140
|
# riding another.
|
|
@@ -1624,10 +1633,6 @@ packet_chunk_radius_update:
|
|
|
1624
1633
|
# not have to be the same as the requested chunk radius.
|
|
1625
1634
|
chunk_radius: zigzag32
|
|
1626
1635
|
|
|
1627
|
-
packet_item_frame_drop_item:
|
|
1628
|
-
!id: 0x47
|
|
1629
|
-
!bound: both
|
|
1630
|
-
coordinates: BlockCoordinates
|
|
1631
1636
|
|
|
1632
1637
|
packet_game_rules_changed:
|
|
1633
1638
|
!id: 0x48
|
|
@@ -2763,8 +2768,6 @@ packet_lectern_update:
|
|
|
2763
2768
|
# Position is the position of the lectern that was updated. If no lectern is at the block position,
|
|
2764
2769
|
# the packet should be ignored.
|
|
2765
2770
|
position: vec3i
|
|
2766
|
-
# DropBook specifies if the book currently set on display in the lectern should be dropped server-side.
|
|
2767
|
-
drop_book: bool
|
|
2768
2771
|
|
|
2769
2772
|
# This packet was removed.
|
|
2770
2773
|
packet_video_stream_connect:
|
|
@@ -3082,8 +3085,10 @@ packet_player_auth_input:
|
|
|
3082
3085
|
data: TransactionUseItem
|
|
3083
3086
|
item_stack_request: input_data.item_stack_request ?
|
|
3084
3087
|
if true: ItemStackRequest
|
|
3085
|
-
|
|
3086
|
-
if true:
|
|
3088
|
+
_: input_data.client_predicted_vehicle ?
|
|
3089
|
+
if true:
|
|
3090
|
+
vehicle_rotation: vec2f
|
|
3091
|
+
predicted_vehicle: zigzag64
|
|
3087
3092
|
block_action: input_data.block_action ?
|
|
3088
3093
|
if true: []zigzag32
|
|
3089
3094
|
action: Action
|
|
@@ -3148,7 +3153,9 @@ InputFlag: [ "bitflags", {
|
|
|
3148
3153
|
"start_flying",
|
|
3149
3154
|
"stop_flying",
|
|
3150
3155
|
"received_server_data",
|
|
3151
|
-
"client_predicted_vehicle"
|
|
3156
|
+
"client_predicted_vehicle",
|
|
3157
|
+
"paddling_left",
|
|
3158
|
+
"paddling_right"
|
|
3152
3159
|
]
|
|
3153
3160
|
}]
|
|
3154
3161
|
|
|
@@ -1973,8 +1973,6 @@ SoundType: varint =>
|
|
|
1973
1973
|
- Record5
|
|
1974
1974
|
- ConvertToFrog
|
|
1975
1975
|
- RecordPlaying
|
|
1976
|
-
- DrinkMilk
|
|
1977
|
-
- RecordPlaying
|
|
1978
1976
|
- EnchantingTableUse
|
|
1979
1977
|
- StepSand
|
|
1980
1978
|
- DashReady
|
|
@@ -2017,8 +2015,32 @@ SoundType: varint =>
|
|
|
2017
2015
|
- block_decorated_pot_insert
|
|
2018
2016
|
- block_decorated_pot_insert_fail
|
|
2019
2017
|
- crafter_disable_slot
|
|
2018
|
+
- trial_spawner_open_shutter
|
|
2019
|
+
- trial_spawner_eject_item
|
|
2020
|
+
- trial_spawner_detect_player
|
|
2021
|
+
- trial_spawner_spawn_mob
|
|
2022
|
+
- trial_spawner_close_shutter
|
|
2023
|
+
- trial_spawner_ambient
|
|
2020
2024
|
- block_copper_bulb_turn_on
|
|
2021
2025
|
- block_copper_bulb_turn_off
|
|
2026
|
+
- ambient_in_air
|
|
2027
|
+
- breeze_wind_charge_burst
|
|
2028
|
+
- imitate_breeze
|
|
2029
|
+
- mob_armadillo_brush
|
|
2030
|
+
- mob_armadillo_scute_drop
|
|
2031
|
+
- armor_equip_wolf
|
|
2032
|
+
- armor_unequip_wolf
|
|
2033
|
+
- reflect
|
|
2034
|
+
- vault_open_shutter
|
|
2035
|
+
- vault_close_shutter
|
|
2036
|
+
- vault_eject_item
|
|
2037
|
+
- vault_insert_item
|
|
2038
|
+
- vault_insert_item_fail
|
|
2039
|
+
- vault_ambient
|
|
2040
|
+
- vault_activate
|
|
2041
|
+
- vault_deactivate
|
|
2042
|
+
- hurt_reduced
|
|
2043
|
+
- wind_charge_burst
|
|
2022
2044
|
|
|
2023
2045
|
# TODO: remove?
|
|
2024
2046
|
LegacyEntityType: li32 =>
|
|
@@ -1966,9 +1966,31 @@
|
|
|
1966
1966
|
"steve": "bedrock/1.16.201",
|
|
1967
1967
|
"blocksB2J": "bedrock/1.20.0",
|
|
1968
1968
|
"blocksJ2B": "bedrock/1.20.0",
|
|
1969
|
+
"proto": "bedrock/1.20.61",
|
|
1970
|
+
"types": "bedrock/1.20.61",
|
|
1971
|
+
"version": "bedrock/1.20.61",
|
|
1972
|
+
"language": "bedrock/1.20.10"
|
|
1973
|
+
},
|
|
1974
|
+
"1.20.71": {
|
|
1975
|
+
"blocks": "bedrock/1.20.0",
|
|
1976
|
+
"blockStates": "bedrock/1.20.0",
|
|
1977
|
+
"blockCollisionShapes": "bedrock/1.20.0",
|
|
1978
|
+
"biomes": "bedrock/1.20.0",
|
|
1979
|
+
"entities": "bedrock/1.19.1",
|
|
1980
|
+
"items": "bedrock/1.20.0",
|
|
1981
|
+
"recipes": "bedrock/1.19.10",
|
|
1982
|
+
"instruments": "bedrock/1.17.0",
|
|
1983
|
+
"materials": "pc/1.17",
|
|
1984
|
+
"enchantments": "bedrock/1.19.1",
|
|
1985
|
+
"effects": "pc/1.17",
|
|
1986
|
+
"protocol": "bedrock/1.20.71",
|
|
1987
|
+
"windows": "bedrock/1.16.201",
|
|
1988
|
+
"steve": "bedrock/1.16.201",
|
|
1989
|
+
"blocksB2J": "bedrock/1.20.0",
|
|
1990
|
+
"blocksJ2B": "bedrock/1.20.0",
|
|
1969
1991
|
"proto": "bedrock/latest",
|
|
1970
1992
|
"types": "bedrock/latest",
|
|
1971
|
-
"version": "bedrock/1.20.
|
|
1993
|
+
"version": "bedrock/1.20.71",
|
|
1972
1994
|
"language": "bedrock/1.20.10"
|
|
1973
1995
|
}
|
|
1974
1996
|
}
|