minecraft-data 3.49.1 → 3.50.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 +4 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.20.40/proto.yml +4088 -0
- package/minecraft-data/data/bedrock/1.20.40/types.yml +2275 -0
- package/minecraft-data/data/bedrock/1.20.50/protocol.json +12073 -0
- package/minecraft-data/data/bedrock/1.20.50/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 +44 -2
- package/minecraft-data/data/bedrock/latest/types.yml +17 -0
- package/minecraft-data/data/dataPaths.json +24 -2
- package/minecraft-data/data/pc/common/protocolVersions.json +16 -0
- package/minecraft-data/doc/history.md +3 -0
- package/package.json +1 -1
|
@@ -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.50
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -788,6 +788,7 @@ packet_level_event:
|
|
|
788
788
|
2037: sculk_charge
|
|
789
789
|
2038: sculk_charge_pop
|
|
790
790
|
2039: sonic_explosion
|
|
791
|
+
2040: dust_plume
|
|
791
792
|
|
|
792
793
|
3001: start_rain
|
|
793
794
|
3002: start_thunder
|
|
@@ -815,6 +816,7 @@ packet_level_event:
|
|
|
815
816
|
3606: particle_punch_block_south
|
|
816
817
|
3607: particle_punch_block_west
|
|
817
818
|
3608: particle_punch_block_east
|
|
819
|
+
3609: particle_shoot_white_smoke
|
|
818
820
|
4000: set_data
|
|
819
821
|
9800: players_sleeping
|
|
820
822
|
9801: sleeping_players
|
|
@@ -2171,7 +2173,10 @@ packet_show_store_offer:
|
|
|
2171
2173
|
offer_id: string
|
|
2172
2174
|
# ShowAll specifies if all other offers of the same 'author' as the one of the offer associated with the
|
|
2173
2175
|
# OfferID should also be displayed, alongside the target offer.
|
|
2174
|
-
|
|
2176
|
+
redirect_type: u8 =>
|
|
2177
|
+
0: marketplace
|
|
2178
|
+
1: dressing_room
|
|
2179
|
+
2: third_party_server_page
|
|
2175
2180
|
|
|
2176
2181
|
|
|
2177
2182
|
# PurchaseReceipt is sent by the client to the server to notify the server it purchased an item from the
|
|
@@ -4086,3 +4091,40 @@ packet_agent_animation:
|
|
|
4086
4091
|
packet_refresh_entitlements:
|
|
4087
4092
|
!id: 0x131
|
|
4088
4093
|
!bound: server
|
|
4094
|
+
|
|
4095
|
+
packet_toggle_crafter_slot_request:
|
|
4096
|
+
!id: 0x132
|
|
4097
|
+
position: vec3li
|
|
4098
|
+
slot: u8
|
|
4099
|
+
disabled: bool
|
|
4100
|
+
|
|
4101
|
+
packet_set_player_inventory_options:
|
|
4102
|
+
!id: 0x133
|
|
4103
|
+
left_tab: zigzag32 =>
|
|
4104
|
+
- none
|
|
4105
|
+
- construction
|
|
4106
|
+
- equipment
|
|
4107
|
+
- items
|
|
4108
|
+
- nature
|
|
4109
|
+
- search
|
|
4110
|
+
- survival
|
|
4111
|
+
right_tab: zigzag32 =>
|
|
4112
|
+
- none
|
|
4113
|
+
- fullscreen
|
|
4114
|
+
- crafting
|
|
4115
|
+
- armor
|
|
4116
|
+
filtering: bool
|
|
4117
|
+
layout: zigzag32 =>
|
|
4118
|
+
- none
|
|
4119
|
+
- survival
|
|
4120
|
+
- recipe_book
|
|
4121
|
+
- creative
|
|
4122
|
+
crafting_layout: zigzag32 =>
|
|
4123
|
+
- none
|
|
4124
|
+
- survival
|
|
4125
|
+
- recipe_book
|
|
4126
|
+
- creative
|
|
4127
|
+
|
|
4128
|
+
packet_server_post_move:
|
|
4129
|
+
!id: 0x10
|
|
4130
|
+
position: vec3f
|
|
@@ -150,6 +150,11 @@ vec3i:
|
|
|
150
150
|
y: zigzag32
|
|
151
151
|
z: zigzag32
|
|
152
152
|
|
|
153
|
+
vec3li:
|
|
154
|
+
x: li32
|
|
155
|
+
y: li32
|
|
156
|
+
z: li32
|
|
157
|
+
|
|
153
158
|
vec3u:
|
|
154
159
|
x: varint
|
|
155
160
|
y: varint
|
|
@@ -1455,6 +1460,8 @@ WindowType: i8 =>
|
|
|
1455
1460
|
32: jigsaw_editor
|
|
1456
1461
|
33: smithing_table
|
|
1457
1462
|
34: chest_boat
|
|
1463
|
+
35: decorated_pot
|
|
1464
|
+
36: crafter
|
|
1458
1465
|
|
|
1459
1466
|
# Used in inventory transactions.
|
|
1460
1467
|
ContainerSlotType: u8 =>
|
|
@@ -1520,6 +1527,7 @@ ContainerSlotType: u8 =>
|
|
|
1520
1527
|
- cursor
|
|
1521
1528
|
- creative_output
|
|
1522
1529
|
- smithing_table_template
|
|
1530
|
+
- crafter
|
|
1523
1531
|
|
|
1524
1532
|
SoundType: varint =>
|
|
1525
1533
|
- ItemUseOn
|
|
@@ -2001,6 +2009,15 @@ SoundType: varint =>
|
|
|
2001
2009
|
- HoglinZombified
|
|
2002
2010
|
- AmbientUnderwaterEnter
|
|
2003
2011
|
- AmbientUnderwaterExit
|
|
2012
|
+
- bottle_fill
|
|
2013
|
+
- bottle_empty
|
|
2014
|
+
- crafter_craft
|
|
2015
|
+
- crafter_fail
|
|
2016
|
+
- block_decorated_pot_insert
|
|
2017
|
+
- block_decorated_pot_insert_fail
|
|
2018
|
+
- crafter_disable_slot
|
|
2019
|
+
- block_copper_bulb_turn_on
|
|
2020
|
+
- block_copper_bulb_turn_off
|
|
2004
2021
|
|
|
2005
2022
|
# TODO: remove?
|
|
2006
2023
|
LegacyEntityType: li32 =>
|
|
@@ -1872,10 +1872,32 @@
|
|
|
1872
1872
|
"steve": "bedrock/1.16.201",
|
|
1873
1873
|
"blocksB2J": "bedrock/1.20.0",
|
|
1874
1874
|
"blocksJ2B": "bedrock/1.20.0",
|
|
1875
|
+
"proto": "bedrock/1.20.40",
|
|
1876
|
+
"types": "bedrock/1.20.40",
|
|
1877
|
+
"version": "bedrock/1.20.40",
|
|
1878
|
+
"language": "bedrock/1.20.10"
|
|
1879
|
+
},
|
|
1880
|
+
"1.20.50": {
|
|
1881
|
+
"blocks": "bedrock/1.20.0",
|
|
1882
|
+
"blockStates": "bedrock/1.20.0",
|
|
1883
|
+
"blockCollisionShapes": "bedrock/1.20.0",
|
|
1884
|
+
"biomes": "bedrock/1.20.0",
|
|
1885
|
+
"entities": "bedrock/1.19.1",
|
|
1886
|
+
"items": "bedrock/1.20.0",
|
|
1887
|
+
"recipes": "bedrock/1.19.10",
|
|
1888
|
+
"instruments": "bedrock/1.17.0",
|
|
1889
|
+
"materials": "pc/1.17",
|
|
1890
|
+
"enchantments": "bedrock/1.19.1",
|
|
1891
|
+
"effects": "pc/1.17",
|
|
1892
|
+
"protocol": "bedrock/1.20.50",
|
|
1893
|
+
"windows": "bedrock/1.16.201",
|
|
1894
|
+
"steve": "bedrock/1.16.201",
|
|
1895
|
+
"blocksB2J": "bedrock/1.20.0",
|
|
1896
|
+
"blocksJ2B": "bedrock/1.20.0",
|
|
1875
1897
|
"proto": "bedrock/latest",
|
|
1876
1898
|
"types": "bedrock/latest",
|
|
1877
|
-
"version": "bedrock/1.20.
|
|
1899
|
+
"version": "bedrock/1.20.50",
|
|
1878
1900
|
"language": "bedrock/1.20.10"
|
|
1879
1901
|
}
|
|
1880
1902
|
}
|
|
1881
|
-
}
|
|
1903
|
+
}
|
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "1.20.4-rc1",
|
|
4
|
+
"version": 1073741993,
|
|
5
|
+
"dataVersion": 3699,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "1.20",
|
|
8
|
+
"releaseType": "snapshot"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"minecraftVersion": "1.20.3",
|
|
12
|
+
"version": 765,
|
|
13
|
+
"dataVersion": 3698,
|
|
14
|
+
"usesNetty": true,
|
|
15
|
+
"majorVersion": "1.20",
|
|
16
|
+
"releaseType": "release"
|
|
17
|
+
},
|
|
2
18
|
{
|
|
3
19
|
"minecraftVersion": "1.20.3-rc1",
|
|
4
20
|
"version": 1073741992,
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.50.0
|
|
2
|
+
* [Add bedrock 1.20.50 protocol data (#800)](https://github.com/PrismarineJS/minecraft-data/commit/3dd855a3c0e372daaa210fc698b8040dd693cae8) (thanks @extremeheat)
|
|
3
|
+
|
|
1
4
|
## 3.49.1
|
|
2
5
|
* Fix pc protocol web doc by removing stable-json-stringify
|
|
3
6
|
* [Fixed inconsistency with 'unsignedChatContent' in 'player_chat' packet (#795)](https://github.com/PrismarineJS/minecraft-data/commit/6fc1bb638fb04afefab4ddfa7e736f3727a23004) (thanks @Ynfuien)
|