minecraft-data 3.26.0 → 3.28.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 +43 -1
- package/doc/history.md +8 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.16.201/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.201/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.16.210/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.210/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.16.220/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.16.220/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.0/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.0/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.10/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.10/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.17.40/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.0/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.11/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.18.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.1/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.10/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.10/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.20/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.20/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.21/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.21/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.30/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.30/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.40/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.19.40/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.50/proto.yml +3826 -0
- package/minecraft-data/data/bedrock/1.19.50/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.19.50/types.yml +2038 -0
- package/minecraft-data/data/bedrock/1.19.60/proto.yml +3850 -0
- package/minecraft-data/data/bedrock/1.19.60/protocol.json +11061 -0
- package/minecraft-data/data/bedrock/1.19.60/types.yml +2062 -0
- package/minecraft-data/data/bedrock/1.19.60/version.json +6 -0
- package/minecraft-data/data/bedrock/1.19.62/protocol.json +11065 -0
- package/minecraft-data/data/bedrock/1.19.62/version.json +6 -0
- package/minecraft-data/data/bedrock/common/protocolVersions.json +12 -0
- package/minecraft-data/data/bedrock/common/versions.json +3 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +29 -5
- package/minecraft-data/data/bedrock/latest/types.yml +25 -0
- package/minecraft-data/data/dataPaths.json +43 -1
- package/minecraft-data/data/pc/1.19.3/protocol.json +21 -25
- package/minecraft-data/doc/history.md +7 -0
- package/package.json +1 -1
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"version": 567,
|
|
4
|
+
"minecraftVersion": "1.19.62",
|
|
5
|
+
"majorVersion": "1.19",
|
|
6
|
+
"releaseType": "release"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"version": 567,
|
|
10
|
+
"minecraftVersion": "1.19.60",
|
|
11
|
+
"majorVersion": "1.19",
|
|
12
|
+
"releaseType": "release"
|
|
13
|
+
},
|
|
2
14
|
{
|
|
3
15
|
"version": 560,
|
|
4
16
|
"minecraftVersion": "1.19.50",
|
|
@@ -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.19.
|
|
4
|
+
!version: 1.19.62
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -339,6 +339,8 @@ packet_start_game:
|
|
|
339
339
|
persona_disabled: bool
|
|
340
340
|
# CustomSkinsDisabled is true if custom skins are disabled for the current game session.
|
|
341
341
|
custom_skins_disabled: bool
|
|
342
|
+
# EmoteChatMuted specifies if players will be sent a chat message when using certain emotes.
|
|
343
|
+
emote_chat_muted: bool
|
|
342
344
|
# The version of the game from which Vanilla features will be used.
|
|
343
345
|
# The exact function of this field isn't clear.
|
|
344
346
|
game_version: string
|
|
@@ -1777,7 +1779,9 @@ packet_command_request:
|
|
|
1777
1779
|
origin: CommandOrigin
|
|
1778
1780
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1779
1781
|
# this field is not known.
|
|
1780
|
-
|
|
1782
|
+
internal: bool
|
|
1783
|
+
# Version is the version of the command that is being executed. This field currently has no purpose or functionality.
|
|
1784
|
+
version: varint
|
|
1781
1785
|
|
|
1782
1786
|
|
|
1783
1787
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -2835,7 +2839,9 @@ packet_emote:
|
|
|
2835
2839
|
emote_id: string
|
|
2836
2840
|
# Flags is a combination of flags that change the way the Emote packet operates. When the server sends
|
|
2837
2841
|
# this packet to other players, EmoteFlagServerSide must be present.
|
|
2838
|
-
flags: u8
|
|
2842
|
+
flags: u8 =>
|
|
2843
|
+
1: server_side
|
|
2844
|
+
2: mute_chat
|
|
2839
2845
|
|
|
2840
2846
|
# MultiPlayerSettings is sent by the client to update multi-player related settings server-side and sent back
|
|
2841
2847
|
# to online players by the server.
|
|
@@ -3040,7 +3046,8 @@ InputFlag: [ "bitflags", {
|
|
|
3040
3046
|
"stop_gliding",
|
|
3041
3047
|
"item_interact",
|
|
3042
3048
|
"block_action",
|
|
3043
|
-
"item_stack_request"
|
|
3049
|
+
"item_stack_request",
|
|
3050
|
+
"handled_teleport"
|
|
3044
3051
|
]
|
|
3045
3052
|
}]
|
|
3046
3053
|
|
|
@@ -3823,4 +3830,21 @@ packet_update_client_input_locks:
|
|
|
3823
3830
|
locks: InputLockFlags
|
|
3824
3831
|
# Position is the server's position of the client at the time the packet was sent. It is unclear what the exact
|
|
3825
3832
|
# purpose of this field is.
|
|
3826
|
-
position: vec3f
|
|
3833
|
+
position: vec3f
|
|
3834
|
+
|
|
3835
|
+
packet_client_cheat_ability:
|
|
3836
|
+
!id: 0xc5
|
|
3837
|
+
!bound: client
|
|
3838
|
+
# EntityUniqueID is the unique ID of the player. The unique ID is a value that remains consistent across
|
|
3839
|
+
# different sessions of the same world, but most servers simply fill the runtime ID of the entity out for
|
|
3840
|
+
# this field.
|
|
3841
|
+
entity_unique_id: li64
|
|
3842
|
+
# PlayerPermissions is the permission level of the player. It is a value from 0-3, with 0 being visitor,
|
|
3843
|
+
# 1 being member, 2 being operator and 3 being custom.
|
|
3844
|
+
permission_level: PermissionLevel
|
|
3845
|
+
# CommandPermissions is a permission level that specifies the kind of commands that the player is
|
|
3846
|
+
# allowed to use. It is one of the CommandPermissionLevel constants in the AdventureSettings packet.
|
|
3847
|
+
command_permission: CommandPermissionLevel
|
|
3848
|
+
# Layers contains all ability layers and their potential values. This should at least have one entry, being the
|
|
3849
|
+
# base layer.
|
|
3850
|
+
abilities: AbilityLayers[]u8
|
|
@@ -687,6 +687,9 @@ Recipes: []varint
|
|
|
687
687
|
5: shulker_box #'ENTRY_SHULKER_BOX', //TODO
|
|
688
688
|
6: shapeless_chemistry #'ENTRY_SHAPELESS_CHEMISTRY', //TODO
|
|
689
689
|
7: shaped_chemistry #'ENTRY_SHAPED_CHEMISTRY', //TODO
|
|
690
|
+
# SmithingTransformRecipe is a recipe specifically used for smithing tables. It has two input items and adds them
|
|
691
|
+
# together, resulting in a new item.
|
|
692
|
+
8: smithing_transform
|
|
690
693
|
recipe: type?
|
|
691
694
|
if shapeless or shulker_box or shapeless_chemistry:
|
|
692
695
|
recipe_id: string
|
|
@@ -720,6 +723,22 @@ Recipes: []varint
|
|
|
720
723
|
if multi:
|
|
721
724
|
uuid: uuid
|
|
722
725
|
network_id: varint
|
|
726
|
+
if smithing_transform:
|
|
727
|
+
# RecipeID is a unique ID of the recipe. This ID must be unique amongst all other types of recipes too,
|
|
728
|
+
# but its functionality is not exactly known.
|
|
729
|
+
recipe_id: string
|
|
730
|
+
# Base is the item that the Addition is being applied to in the smithing table.
|
|
731
|
+
base: RecipeIngredient
|
|
732
|
+
# Addition is the item that is being added to the Base item to result in a modified item.
|
|
733
|
+
addition: RecipeIngredient
|
|
734
|
+
# Result is the resulting item from the two items being added together.
|
|
735
|
+
result: ItemLegacy
|
|
736
|
+
# Tag is a serialized compound tag in the network little endian format.
|
|
737
|
+
tag: string
|
|
738
|
+
# RecipeNetworkID is a unique ID used to identify the recipe over network. Each recipe must have a unique
|
|
739
|
+
# network ID. Recommended is to just increment a variable for each unique recipe registered.
|
|
740
|
+
# This field must never be 0.
|
|
741
|
+
network_id: varint
|
|
723
742
|
|
|
724
743
|
SkinImage:
|
|
725
744
|
width: li32
|
|
@@ -760,6 +779,7 @@ Skin:
|
|
|
760
779
|
# on a classic skin.
|
|
761
780
|
cape_on_classic: bool
|
|
762
781
|
primary_user: bool
|
|
782
|
+
overriding_player_appearance: bool
|
|
763
783
|
|
|
764
784
|
PlayerRecords:
|
|
765
785
|
type: u8 =>
|
|
@@ -829,6 +849,7 @@ Action: zigzag32 =>
|
|
|
829
849
|
27: continue_break
|
|
830
850
|
28: start_item_use_on
|
|
831
851
|
29: stop_item_use_on
|
|
852
|
+
30: handled_teleport
|
|
832
853
|
|
|
833
854
|
# Source and Destination point to the source slot from which Count of the item stack were taken and the
|
|
834
855
|
# destination slot to which this item was moved.
|
|
@@ -1870,6 +1891,10 @@ SoundType: varint =>
|
|
|
1870
1891
|
- TrapdoorClose
|
|
1871
1892
|
- FenceGateOpen
|
|
1872
1893
|
- FenceGateClose
|
|
1894
|
+
- Insert
|
|
1895
|
+
- Pickup
|
|
1896
|
+
- InsertEnchanted
|
|
1897
|
+
- PickupEnchanted
|
|
1873
1898
|
|
|
1874
1899
|
# TODO: remove?
|
|
1875
1900
|
LegacyEntityType: li32 =>
|
|
@@ -1516,9 +1516,51 @@
|
|
|
1516
1516
|
"steve": "bedrock/1.16.201",
|
|
1517
1517
|
"blocksB2J": "bedrock/1.19.1",
|
|
1518
1518
|
"blocksJ2B": "bedrock/1.19.1",
|
|
1519
|
+
"proto": "bedrock/1.19.50",
|
|
1520
|
+
"types": "bedrock/1.19.50",
|
|
1521
|
+
"version": "bedrock/1.19.50"
|
|
1522
|
+
},
|
|
1523
|
+
"1.19.60": {
|
|
1524
|
+
"blocks": "bedrock/1.19.1",
|
|
1525
|
+
"blockStates": "bedrock/1.19.1",
|
|
1526
|
+
"blockCollisionShapes": "bedrock/1.19.1",
|
|
1527
|
+
"biomes": "bedrock/1.19.1",
|
|
1528
|
+
"entities": "bedrock/1.19.1",
|
|
1529
|
+
"items": "bedrock/1.19.10",
|
|
1530
|
+
"recipes": "bedrock/1.19.10",
|
|
1531
|
+
"instruments": "bedrock/1.17.0",
|
|
1532
|
+
"materials": "pc/1.17",
|
|
1533
|
+
"enchantments": "pc/1.17",
|
|
1534
|
+
"effects": "pc/1.17",
|
|
1535
|
+
"protocol": "bedrock/1.19.60",
|
|
1536
|
+
"windows": "bedrock/1.16.201",
|
|
1537
|
+
"steve": "bedrock/1.16.201",
|
|
1538
|
+
"blocksB2J": "bedrock/1.19.1",
|
|
1539
|
+
"blocksJ2B": "bedrock/1.19.1",
|
|
1540
|
+
"proto": "bedrock/1.19.60",
|
|
1541
|
+
"types": "bedrock/1.19.60",
|
|
1542
|
+
"version": "bedrock/1.19.60"
|
|
1543
|
+
},
|
|
1544
|
+
"1.19.62": {
|
|
1545
|
+
"blocks": "bedrock/1.19.1",
|
|
1546
|
+
"blockStates": "bedrock/1.19.1",
|
|
1547
|
+
"blockCollisionShapes": "bedrock/1.19.1",
|
|
1548
|
+
"biomes": "bedrock/1.19.1",
|
|
1549
|
+
"entities": "bedrock/1.19.1",
|
|
1550
|
+
"items": "bedrock/1.19.10",
|
|
1551
|
+
"recipes": "bedrock/1.19.10",
|
|
1552
|
+
"instruments": "bedrock/1.17.0",
|
|
1553
|
+
"materials": "pc/1.17",
|
|
1554
|
+
"enchantments": "pc/1.17",
|
|
1555
|
+
"effects": "pc/1.17",
|
|
1556
|
+
"protocol": "bedrock/1.19.62",
|
|
1557
|
+
"windows": "bedrock/1.16.201",
|
|
1558
|
+
"steve": "bedrock/1.16.201",
|
|
1559
|
+
"blocksB2J": "bedrock/1.19.1",
|
|
1560
|
+
"blocksJ2B": "bedrock/1.19.1",
|
|
1519
1561
|
"proto": "bedrock/latest",
|
|
1520
1562
|
"types": "bedrock/latest",
|
|
1521
|
-
"version": "bedrock/1.19.
|
|
1563
|
+
"version": "bedrock/1.19.62"
|
|
1522
1564
|
}
|
|
1523
1565
|
}
|
|
1524
1566
|
}
|
|
@@ -1470,10 +1470,6 @@
|
|
|
1470
1470
|
"name": "messageId",
|
|
1471
1471
|
"type": "varint"
|
|
1472
1472
|
},
|
|
1473
|
-
{
|
|
1474
|
-
"name": "successful",
|
|
1475
|
-
"type": "bool"
|
|
1476
|
-
},
|
|
1477
1473
|
{
|
|
1478
1474
|
"name": "data",
|
|
1479
1475
|
"type": [
|
|
@@ -2395,27 +2391,27 @@
|
|
|
2395
2391
|
],
|
|
2396
2392
|
"packet_profileless_chat": [
|
|
2397
2393
|
"container",
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2394
|
+
[
|
|
2395
|
+
{
|
|
2396
|
+
"name": "message",
|
|
2397
|
+
"type": "string"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"name": "type",
|
|
2401
|
+
"type": "varint"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"name": "name",
|
|
2405
|
+
"type": "string"
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "target",
|
|
2409
|
+
"type": [
|
|
2410
|
+
"option",
|
|
2411
|
+
"string"
|
|
2412
|
+
]
|
|
2413
|
+
}
|
|
2414
|
+
]
|
|
2419
2415
|
],
|
|
2420
2416
|
"packet_entity_status": [
|
|
2421
2417
|
"container",
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 3.28.0
|
|
2
|
+
* Add bedrock 1.19.62 protocol data (@CreeperG16)
|
|
3
|
+
* Update packet_login_plugin_response in pc 1.19.3 (@frej4189)
|
|
4
|
+
|
|
5
|
+
## 3.27.0
|
|
6
|
+
* Add bedrock 1.19.60 protocol data (@CreeperG16)
|
|
7
|
+
|
|
1
8
|
## 3.26.0
|
|
2
9
|
* 1.19.3 fixes
|
|
3
10
|
* Update protocolVersions.json with 1.19.3 snapshots
|