minecraft-data 3.16.0 → 3.17.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 +22 -1
- package/doc/history.md +4 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.19.30/proto.yml +3794 -0
- package/minecraft-data/data/bedrock/1.19.30/types.yml +2005 -0
- package/minecraft-data/data/bedrock/1.19.40/protocol.json +10930 -0
- package/minecraft-data/data/bedrock/1.19.40/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 +10 -1
- package/minecraft-data/data/bedrock/latest/types.yml +15 -0
- package/minecraft-data/data/dataPaths.json +23 -2
- package/minecraft-data/data/pc/common/protocolVersions.json +8 -1
- 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.19.
|
|
4
|
+
!version: 1.19.40
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -464,6 +464,9 @@ packet_add_player:
|
|
|
464
464
|
# particular the way the player looks. Flags include ones such as 'on fire' and 'sprinting'.
|
|
465
465
|
# The metadata values are indexed by their property key.
|
|
466
466
|
metadata: MetadataDictionary
|
|
467
|
+
# EntityProperties holds lists of entity properties that define specific attributes of an entity. As of v1.19.40, the
|
|
468
|
+
# vanilla server does not use these properties, however they are still supported by the protocol.
|
|
469
|
+
properties: EntityProperties
|
|
467
470
|
# The unique ID of the player. The unique ID is a value that remains consistent
|
|
468
471
|
# across different sessions of the same world, but most unoffical servers simply
|
|
469
472
|
# fill the runtime ID of the player out for this field.
|
|
@@ -520,6 +523,9 @@ packet_add_entity:
|
|
|
520
523
|
# particular the way the entity looks. Flags include ones such as 'on fire' and 'sprinting'.
|
|
521
524
|
# The metadata values are indexed by their property key.
|
|
522
525
|
metadata: MetadataDictionary
|
|
526
|
+
# EntityProperties holds lists of entity properties that define specific attributes of an entity. As of v1.19.40, the
|
|
527
|
+
# vanilla server does not use these properties, however they are still supported by the protocol.
|
|
528
|
+
properties: EntityProperties
|
|
523
529
|
# EntityLinks is a list of entity links that are currently active on the entity. These links alter the
|
|
524
530
|
# way the entity shows up when first spawned in terms of it shown as riding an entity. Setting these
|
|
525
531
|
# links is important for new viewers to see the entity is riding another entity.
|
|
@@ -1062,6 +1068,9 @@ packet_set_entity_data:
|
|
|
1062
1068
|
!bound: both
|
|
1063
1069
|
runtime_entity_id: varint64
|
|
1064
1070
|
metadata: MetadataDictionary
|
|
1071
|
+
# EntityProperties holds lists of entity properties that define specific attributes of an entity. As of v1.19.40, the
|
|
1072
|
+
# vanilla server does not use these properties, however they are still supported by the protocol.
|
|
1073
|
+
properties: EntityProperties
|
|
1065
1074
|
tick: varint64
|
|
1066
1075
|
|
|
1067
1076
|
# SetActorMotion is sent by the server to change the client-side velocity of an entity. It is usually used
|
|
@@ -452,6 +452,14 @@ EntityAttributes: []varint
|
|
|
452
452
|
value: lf32
|
|
453
453
|
max: lf32
|
|
454
454
|
|
|
455
|
+
EntityProperties:
|
|
456
|
+
ints: []varint
|
|
457
|
+
index: varint
|
|
458
|
+
value: zigzag32
|
|
459
|
+
floats: []varint
|
|
460
|
+
index: varint
|
|
461
|
+
value: lf32
|
|
462
|
+
|
|
455
463
|
Rotation:
|
|
456
464
|
yaw: byterot
|
|
457
465
|
pitch: byterot
|
|
@@ -993,6 +1001,7 @@ ItemStackRequest:
|
|
|
993
1001
|
- leave_event_text
|
|
994
1002
|
- slash_command_chat
|
|
995
1003
|
- cartography_text
|
|
1004
|
+
- slash_command_non_chat
|
|
996
1005
|
|
|
997
1006
|
|
|
998
1007
|
# ItemStackResponse is a response to an individual ItemStackRequest.
|
|
@@ -1838,6 +1847,11 @@ SoundType: varint =>
|
|
|
1838
1847
|
- DrinkMilk
|
|
1839
1848
|
- RecordPlaying
|
|
1840
1849
|
- EnchantingTableUse
|
|
1850
|
+
- _
|
|
1851
|
+
- _
|
|
1852
|
+
- BundleDropContents
|
|
1853
|
+
- BundleInsert
|
|
1854
|
+
- BundleRemoveOne
|
|
1841
1855
|
|
|
1842
1856
|
# TODO: remove?
|
|
1843
1857
|
LegacyEntityType: li32 =>
|
|
@@ -1995,6 +2009,7 @@ AbilityLayers:
|
|
|
1995
2009
|
- base
|
|
1996
2010
|
- spectator
|
|
1997
2011
|
- commands
|
|
2012
|
+
- editor
|
|
1998
2013
|
# The abilities that can be toggled between
|
|
1999
2014
|
allowed: AbilitySet
|
|
2000
2015
|
# The abilities that are currently active
|
|
@@ -1425,9 +1425,30 @@
|
|
|
1425
1425
|
"steve": "bedrock/1.16.201",
|
|
1426
1426
|
"blocksB2J": "bedrock/1.19.1",
|
|
1427
1427
|
"blocksJ2B": "bedrock/1.19.1",
|
|
1428
|
+
"proto": "bedrock/1.19.30",
|
|
1429
|
+
"types": "bedrock/1.19.30",
|
|
1430
|
+
"version": "bedrock/1.19.30"
|
|
1431
|
+
},
|
|
1432
|
+
"1.19.40": {
|
|
1433
|
+
"blocks": "bedrock/1.19.1",
|
|
1434
|
+
"blockStates": "bedrock/1.19.1",
|
|
1435
|
+
"blockCollisionShapes": "bedrock/1.19.1",
|
|
1436
|
+
"biomes": "bedrock/1.19.1",
|
|
1437
|
+
"entities": "bedrock/1.19.1",
|
|
1438
|
+
"items": "bedrock/1.19.10",
|
|
1439
|
+
"recipes": "bedrock/1.19.10",
|
|
1440
|
+
"instruments": "bedrock/1.17.0",
|
|
1441
|
+
"materials": "pc/1.17",
|
|
1442
|
+
"enchantments": "pc/1.17",
|
|
1443
|
+
"effects": "pc/1.17",
|
|
1444
|
+
"protocol": "bedrock/1.19.40",
|
|
1445
|
+
"windows": "bedrock/1.16.201",
|
|
1446
|
+
"steve": "bedrock/1.16.201",
|
|
1447
|
+
"blocksB2J": "bedrock/1.19.1",
|
|
1448
|
+
"blocksJ2B": "bedrock/1.19.1",
|
|
1428
1449
|
"proto": "bedrock/latest",
|
|
1429
1450
|
"types": "bedrock/latest",
|
|
1430
|
-
"version": "bedrock/1.19.
|
|
1451
|
+
"version": "bedrock/1.19.40"
|
|
1431
1452
|
}
|
|
1432
1453
|
}
|
|
1433
|
-
}
|
|
1454
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"minecraftVersion": "22w42a",
|
|
4
|
+
"version": 1073741928,
|
|
5
|
+
"dataVersion": 3205,
|
|
6
|
+
"usesNetty": true,
|
|
7
|
+
"majorVersion": "1.19"
|
|
8
|
+
},
|
|
2
9
|
{
|
|
3
10
|
"minecraftVersion": "1.19.2",
|
|
4
11
|
"version": 760,
|
|
@@ -4098,4 +4105,4 @@
|
|
|
4098
4105
|
"usesNetty": false,
|
|
4099
4106
|
"majorVersion": "1.0"
|
|
4100
4107
|
}
|
|
4101
|
-
]
|
|
4108
|
+
]
|