minecraft-data 3.3.0 → 3.4.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 +3 -0
- package/minecraft-data/.github/workflows/bedrock-ci.yml +1 -1
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.17.30/protocol.json +2 -2
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.17.40/protocol.json +2 -2
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.18.0/protocol.json +204 -194
- package/minecraft-data/data/bedrock/1.18.0/types.yml +107 -97
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +2 -2
- package/minecraft-data/data/bedrock/1.18.11/protocol.json +207 -204
- package/minecraft-data/data/bedrock/1.18.11/types.yml +110 -107
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +3480 -0
- package/minecraft-data/data/bedrock/1.18.30/protocol.json +265 -260
- package/minecraft-data/data/bedrock/1.18.30/types.yml +1860 -0
- package/minecraft-data/data/bedrock/1.19.1/protocol.json +10278 -0
- package/minecraft-data/data/bedrock/1.19.1/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 +120 -23
- package/minecraft-data/data/bedrock/latest/types.yml +148 -118
- package/minecraft-data/data/dataPaths.json +22 -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.
|
|
4
|
+
!version: 1.19.1
|
|
5
5
|
|
|
6
6
|
# Some ProtoDef aliases
|
|
7
7
|
string: ["pstring",{"countType":"varint"}] # String / array types
|
|
@@ -392,8 +392,14 @@ packet_start_game:
|
|
|
392
392
|
server_authoritative_inventory: bool
|
|
393
393
|
# The server's engine version, used for telemetry
|
|
394
394
|
engine: string
|
|
395
|
+
# PropertyData contains properties that should be applied on the player. These properties are the same as the
|
|
396
|
+
# ones that are sent in the SyncActorProperty packet.
|
|
397
|
+
property_data: nbt
|
|
395
398
|
# A checksum to ensure block types between the server and client match
|
|
396
|
-
|
|
399
|
+
block_pallette_checksum: lu64
|
|
400
|
+
# WorldTemplateID is a UUID that identifies the template that was used to generate the world. Servers that do not
|
|
401
|
+
# use a world based off of a template can set this to an empty UUID.
|
|
402
|
+
world_template_id: uuid
|
|
397
403
|
|
|
398
404
|
packet_add_player:
|
|
399
405
|
!id: 0x0c
|
|
@@ -682,6 +688,7 @@ packet_level_event:
|
|
|
682
688
|
2036: sculk_catalyst_bloom
|
|
683
689
|
2037: sculk_charge
|
|
684
690
|
2038: sculk_charge_pop
|
|
691
|
+
2039: sonic_explosion
|
|
685
692
|
|
|
686
693
|
3001: start_rain
|
|
687
694
|
3002: start_thunder
|
|
@@ -965,6 +972,9 @@ packet_player_action:
|
|
|
965
972
|
# BlockPosition is the position of the target block, if the action with the ActionType set concerned a
|
|
966
973
|
# block. If that is not the case, the block position will be zero.
|
|
967
974
|
position: BlockCoordinates
|
|
975
|
+
# ResultPosition is the position of the action's result. When a UseItemOn action is sent, this is the position of
|
|
976
|
+
# the block clicked, but when a block is placed, this is the position at which the block will be placed.
|
|
977
|
+
result_position: BlockCoordinates
|
|
968
978
|
# BlockFace is the face of the target block that was touched. If the action with the ActionType set
|
|
969
979
|
# concerned a block. If not, the face is always 0.
|
|
970
980
|
face: zigzag32
|
|
@@ -1217,11 +1227,7 @@ packet_adventure_settings:
|
|
|
1217
1227
|
action_permissions: ActionPermissions
|
|
1218
1228
|
# PermissionLevel is the permission level of the player as it shows up in the player list built up using
|
|
1219
1229
|
# the PlayerList packet. It is one of the PermissionLevel constants above.
|
|
1220
|
-
permission_level:
|
|
1221
|
-
0: visitor
|
|
1222
|
-
1: member
|
|
1223
|
-
2: operator
|
|
1224
|
-
3: custom
|
|
1230
|
+
permission_level: PermissionLevel
|
|
1225
1231
|
# Custom permissions
|
|
1226
1232
|
custom_stored_permissions: varint
|
|
1227
1233
|
# PlayerUniqueID is a unique identifier of the player. It appears it is not required to fill this field
|
|
@@ -1618,18 +1624,19 @@ packet_available_commands:
|
|
|
1618
1624
|
parameter_name: string
|
|
1619
1625
|
value_type: lu16 =>
|
|
1620
1626
|
1: int
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1627
|
+
3: float
|
|
1628
|
+
4: value
|
|
1629
|
+
5: wildcard_int
|
|
1630
|
+
6: operator
|
|
1631
|
+
8: target
|
|
1632
|
+
17: file_path
|
|
1633
|
+
39: string
|
|
1634
|
+
47: block_position
|
|
1635
|
+
48: position
|
|
1636
|
+
51: message
|
|
1637
|
+
53: raw_text
|
|
1638
|
+
57: json
|
|
1639
|
+
70: command
|
|
1633
1640
|
# In MC, this + prior field are combined to one 32bit bitfield
|
|
1634
1641
|
enum_type: lu16 =>
|
|
1635
1642
|
0x10: valid
|
|
@@ -2143,7 +2150,7 @@ packet_photo_transfer:
|
|
|
2143
2150
|
# SourceType is the source photo type. It is one of the three photo types above.
|
|
2144
2151
|
source_type: u8
|
|
2145
2152
|
# OwnerEntityUniqueID is the entity unique ID of the photo's owner.
|
|
2146
|
-
owner_entity_unique_id:
|
|
2153
|
+
owner_entity_unique_id: li64
|
|
2147
2154
|
# NewPhotoName is the new name of the photo.
|
|
2148
2155
|
new_photo_name: string
|
|
2149
2156
|
|
|
@@ -2840,6 +2847,11 @@ packet_player_auth_input:
|
|
|
2840
2847
|
7: exit_level
|
|
2841
2848
|
8: exit_level_living_room
|
|
2842
2849
|
9: num_modes
|
|
2850
|
+
# InteractionModel is a constant representing the interaction model the player is using.
|
|
2851
|
+
interaction_model: zigzag32 =>
|
|
2852
|
+
- touch
|
|
2853
|
+
- crosshair
|
|
2854
|
+
- classic
|
|
2843
2855
|
# GazeDirection is the direction in which the player is gazing, when the PlayMode is PlayModeReality: In
|
|
2844
2856
|
# other words, when the player is playing in virtual reality.
|
|
2845
2857
|
gaze_direction: play_mode ?
|
|
@@ -3277,7 +3289,7 @@ packet_edu_uri_resource_packet:
|
|
|
3277
3289
|
packet_create_photo:
|
|
3278
3290
|
!id: 0xab
|
|
3279
3291
|
# EntityUniqueID is the unique ID of the entity.
|
|
3280
|
-
entity_unique_id:
|
|
3292
|
+
entity_unique_id: li64
|
|
3281
3293
|
# PhotoName is the name of the photo.
|
|
3282
3294
|
photo_name: string
|
|
3283
3295
|
# ItemName is the name of the photo as an item.
|
|
@@ -3465,7 +3477,7 @@ packet_change_mob_property:
|
|
|
3465
3477
|
!id: 0xb6
|
|
3466
3478
|
!bound: client
|
|
3467
3479
|
# EntityUniqueID is the unique ID of the entity whose property is being changed.
|
|
3468
|
-
entity_unique_id:
|
|
3480
|
+
entity_unique_id: zigzag64
|
|
3469
3481
|
# Property is the name of the property being updated.
|
|
3470
3482
|
property: string
|
|
3471
3483
|
# BoolValue is set if the property value is a bool type. If the type is not a bool, this field is ignored.
|
|
@@ -3475,4 +3487,89 @@ packet_change_mob_property:
|
|
|
3475
3487
|
# IntValue is set if the property value is an int type. If the type is not an int, this field is ignored.
|
|
3476
3488
|
int_value: zigzag32
|
|
3477
3489
|
# FloatValue is set if the property value is a float type. If the type is not a float, this field is ignored.
|
|
3478
|
-
float_value: lf32
|
|
3490
|
+
float_value: lf32
|
|
3491
|
+
|
|
3492
|
+
# LessonProgress is a packet sent by the server to the client to inform the client of updated progress on a lesson.
|
|
3493
|
+
# This packet only functions on the Minecraft: Education Edition version of the game.
|
|
3494
|
+
packet_lesson_progress:
|
|
3495
|
+
!id: 0xb7
|
|
3496
|
+
# Action is the action the client should perform to show progress. This is one of the constants defined above.
|
|
3497
|
+
action: u8
|
|
3498
|
+
# Score is the score the client should use when displaying the progress.
|
|
3499
|
+
score: zigzag32
|
|
3500
|
+
# Identifier is the identifier of the lesson that is being progressed.
|
|
3501
|
+
identifier: string
|
|
3502
|
+
|
|
3503
|
+
# RequestAbility is a packet sent by the client to the server to request permission for a specific ability from the
|
|
3504
|
+
# server.
|
|
3505
|
+
packet_request_ability:
|
|
3506
|
+
!id: 0xb8
|
|
3507
|
+
!bound: server
|
|
3508
|
+
# Ability is the ability that the client is requesting. This is one of the constants defined above.
|
|
3509
|
+
ability: zigzag32 =>
|
|
3510
|
+
- build
|
|
3511
|
+
- mine
|
|
3512
|
+
- doors_and_switches
|
|
3513
|
+
- open_containers
|
|
3514
|
+
- attack_players
|
|
3515
|
+
- attack_mobs
|
|
3516
|
+
- operator_commands
|
|
3517
|
+
- teleport
|
|
3518
|
+
- invulnerable
|
|
3519
|
+
- flying
|
|
3520
|
+
- may_fly
|
|
3521
|
+
- instant_build
|
|
3522
|
+
- lightning
|
|
3523
|
+
- fly_speed
|
|
3524
|
+
- walk_speed
|
|
3525
|
+
- muted
|
|
3526
|
+
- world_builder
|
|
3527
|
+
- no_clip
|
|
3528
|
+
- ability_count
|
|
3529
|
+
# Value type decides which of the fields you should read/write from
|
|
3530
|
+
value_type: u8 =>
|
|
3531
|
+
1: bool
|
|
3532
|
+
2: float
|
|
3533
|
+
# If value type is bool, use this value
|
|
3534
|
+
bool_value: bool
|
|
3535
|
+
# If value type is float, use this value
|
|
3536
|
+
float_val: lf32
|
|
3537
|
+
|
|
3538
|
+
# RequestPermissions is a packet sent from the client to the server to request permissions that the client does not
|
|
3539
|
+
# currently have. It can only be sent by operators and host in vanilla Minecraft.
|
|
3540
|
+
packet_request_permissions:
|
|
3541
|
+
!id: 0xb9
|
|
3542
|
+
!bound: server
|
|
3543
|
+
# EntityUniqueID is the unique ID of the player. The unique ID is unique for the entire world and is
|
|
3544
|
+
# often used in packets. Most servers send an EntityUniqueID equal to the EntityRuntimeID.
|
|
3545
|
+
entity_unique_id: li64
|
|
3546
|
+
# PermissionLevel is the current permission level of the player. Same as constants in AdventureSettings packet.
|
|
3547
|
+
permission_level: PermissionLevel
|
|
3548
|
+
# RequestedPermissions contains the requested permission flags.
|
|
3549
|
+
requested_permissions: RequestPermissions
|
|
3550
|
+
|
|
3551
|
+
RequestPermissions: [ "bitflags",
|
|
3552
|
+
{
|
|
3553
|
+
"type": "lu16",
|
|
3554
|
+
"flags": {
|
|
3555
|
+
"build": 0b1,
|
|
3556
|
+
"mine": 0b10,
|
|
3557
|
+
"doors_and_switches": 0b100,
|
|
3558
|
+
"open_containers": 0b1000,
|
|
3559
|
+
"attack_players": 0b10000,
|
|
3560
|
+
"attack_mobs": 0b100000,
|
|
3561
|
+
"operator": 0b1000000,
|
|
3562
|
+
"teleport": 0b10000000
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
# ToastRequest is a packet sent from the server to the client to display a toast to the top of the screen. These toasts
|
|
3568
|
+
# are the same as the ones seen when, for example, loading a new resource pack or obtaining an achievement.
|
|
3569
|
+
packet_toast_request:
|
|
3570
|
+
!id: 0xba
|
|
3571
|
+
# Title is the title of the toast.
|
|
3572
|
+
title: string
|
|
3573
|
+
# Message is the message that the toast may contain alongside the title.
|
|
3574
|
+
message: string
|
|
3575
|
+
|
|
@@ -779,6 +779,8 @@ Action: zigzag32 =>
|
|
|
779
779
|
25: interact_block
|
|
780
780
|
26: predict_break
|
|
781
781
|
27: continue_break
|
|
782
|
+
28: start_item_use_on
|
|
783
|
+
29: stop_item_use_on
|
|
782
784
|
|
|
783
785
|
# Source and Destination point to the source slot from which Count of the item stack were taken and the
|
|
784
786
|
# destination slot to which this item was moved.
|
|
@@ -1151,6 +1153,12 @@ MaterialReducer:
|
|
|
1151
1153
|
network_id: zigzag32
|
|
1152
1154
|
count: zigzag32
|
|
1153
1155
|
|
|
1156
|
+
PermissionLevel: varint =>
|
|
1157
|
+
0: visitor
|
|
1158
|
+
1: member
|
|
1159
|
+
2: operator
|
|
1160
|
+
3: custom
|
|
1161
|
+
|
|
1154
1162
|
# List of Window IDs. When a new container is opened (container_open), a new sequential Window ID is created.
|
|
1155
1163
|
# Below window IDs are hard-coded and created when the game starts and the server does not
|
|
1156
1164
|
# send a `container_open` for them.
|
|
@@ -1427,9 +1435,9 @@ SoundType: varint =>
|
|
|
1427
1435
|
- RecordWard
|
|
1428
1436
|
- Record11
|
|
1429
1437
|
- RecordWait
|
|
1430
|
-
-
|
|
1438
|
+
- StopRecord
|
|
1431
1439
|
- Flop
|
|
1432
|
-
-
|
|
1440
|
+
- GuardianCurse
|
|
1433
1441
|
- MobWarning
|
|
1434
1442
|
- MobWarningBaby
|
|
1435
1443
|
- Teleport
|
|
@@ -1444,7 +1452,7 @@ SoundType: varint =>
|
|
|
1444
1452
|
- Glass
|
|
1445
1453
|
- PotionBrewed
|
|
1446
1454
|
- CastSpell
|
|
1447
|
-
-
|
|
1455
|
+
- PrepareAttackSpell
|
|
1448
1456
|
- PrepareSummon
|
|
1449
1457
|
- PrepareWololo
|
|
1450
1458
|
- Fang
|
|
@@ -1452,20 +1460,20 @@ SoundType: varint =>
|
|
|
1452
1460
|
- CameraTakePicture
|
|
1453
1461
|
- LeashKnotPlace
|
|
1454
1462
|
- LeashKnotBreak
|
|
1455
|
-
-
|
|
1456
|
-
-
|
|
1457
|
-
-
|
|
1458
|
-
-
|
|
1459
|
-
-
|
|
1463
|
+
- AmbientGrowl
|
|
1464
|
+
- AmbientWhine
|
|
1465
|
+
- AmbientPant
|
|
1466
|
+
- AmbientPurr
|
|
1467
|
+
- AmbientPurreow
|
|
1460
1468
|
- DeathMinVolume
|
|
1461
1469
|
- DeathMidVolume
|
|
1462
|
-
-
|
|
1470
|
+
- ImitateBlaze
|
|
1463
1471
|
- ImitateCaveSpider
|
|
1464
1472
|
- ImitateCreeper
|
|
1465
1473
|
- ImitateElderGuardian
|
|
1466
1474
|
- ImitateEnderDragon
|
|
1467
1475
|
- ImitateEnderman
|
|
1468
|
-
-
|
|
1476
|
+
- ImitateEndermite
|
|
1469
1477
|
- ImitateEvocationIllager
|
|
1470
1478
|
- ImitateGhast
|
|
1471
1479
|
- ImitateHusk
|
|
@@ -1487,58 +1495,62 @@ SoundType: varint =>
|
|
|
1487
1495
|
- ImitateZombie
|
|
1488
1496
|
- ImitateZombiePigman
|
|
1489
1497
|
- ImitateZombieVillager
|
|
1490
|
-
-
|
|
1491
|
-
-
|
|
1492
|
-
-
|
|
1498
|
+
- EnderEyePlaced
|
|
1499
|
+
- EndPortalCreated
|
|
1500
|
+
- AnvilUse
|
|
1493
1501
|
- BottleDragonBreath
|
|
1494
1502
|
- PortalTravel
|
|
1495
|
-
-
|
|
1496
|
-
-
|
|
1497
|
-
-
|
|
1498
|
-
-
|
|
1499
|
-
-
|
|
1500
|
-
-
|
|
1501
|
-
-
|
|
1502
|
-
-
|
|
1503
|
+
- TridentHit
|
|
1504
|
+
- TridentReturn
|
|
1505
|
+
- TridentRiptide1
|
|
1506
|
+
- TridentRiptide2
|
|
1507
|
+
- TridentRiptide3
|
|
1508
|
+
- TridentThrow
|
|
1509
|
+
- TridentThunder
|
|
1510
|
+
- TridentHitGround
|
|
1503
1511
|
- Default
|
|
1504
|
-
-
|
|
1512
|
+
- FletchingTableUse
|
|
1505
1513
|
- ElemConstructOpen
|
|
1506
1514
|
- IceBombHit
|
|
1507
1515
|
- BalloonPop
|
|
1508
1516
|
- LtReactionIceBomb
|
|
1509
1517
|
- LtReactionBleach
|
|
1510
|
-
-
|
|
1511
|
-
-
|
|
1518
|
+
- LtReactionElephantToothpaste
|
|
1519
|
+
- LtReactionElephantToothpaste2
|
|
1520
|
+
- LtReactionGlowStick
|
|
1521
|
+
- LtReactionGlowStick2
|
|
1522
|
+
- LtReactionLuminol
|
|
1523
|
+
- LtReactionSalt
|
|
1512
1524
|
- LtReactionFertilizer
|
|
1513
1525
|
- LtReactionFireball
|
|
1514
|
-
-
|
|
1515
|
-
-
|
|
1526
|
+
- LtReactionMagnesiumSalt
|
|
1527
|
+
- LtReactionMiscFire
|
|
1516
1528
|
- LtReactionFire
|
|
1517
|
-
-
|
|
1518
|
-
-
|
|
1519
|
-
-
|
|
1529
|
+
- LtReactionMiscExplosion
|
|
1530
|
+
- LtReactionMiscMystical
|
|
1531
|
+
- LtReactionMiscMystical2
|
|
1520
1532
|
- LtReactionProduct
|
|
1521
1533
|
- SparklerUse
|
|
1522
|
-
-
|
|
1534
|
+
- GlowStickUse
|
|
1523
1535
|
- SparklerActive
|
|
1524
1536
|
- ConvertToDrowned
|
|
1525
1537
|
- BucketFillFish
|
|
1526
1538
|
- BucketEmptyFish
|
|
1527
|
-
-
|
|
1528
|
-
-
|
|
1539
|
+
- BubbleColumnUpwards
|
|
1540
|
+
- BubbleColumnDownwards
|
|
1529
1541
|
- BubblePop
|
|
1530
1542
|
- BubbleUpInside
|
|
1531
1543
|
- BubbleDownInside
|
|
1532
1544
|
- HurtBaby
|
|
1533
1545
|
- DeathBaby
|
|
1534
1546
|
- StepBaby
|
|
1535
|
-
-
|
|
1547
|
+
- SpawnBaby
|
|
1536
1548
|
- Born
|
|
1537
|
-
-
|
|
1538
|
-
-
|
|
1539
|
-
-
|
|
1540
|
-
-
|
|
1541
|
-
-
|
|
1549
|
+
- TurtleEggBreak
|
|
1550
|
+
- TurtleEggCrack
|
|
1551
|
+
- TurtleEggHatched
|
|
1552
|
+
- LayEgg
|
|
1553
|
+
- TurtleEggAttacked
|
|
1542
1554
|
- BeaconActivate
|
|
1543
1555
|
- BeaconAmbient
|
|
1544
1556
|
- BeaconDeactivate
|
|
@@ -1549,12 +1561,12 @@ SoundType: varint =>
|
|
|
1549
1561
|
- ConduitDeactivate
|
|
1550
1562
|
- ConduitShort
|
|
1551
1563
|
- Swoop
|
|
1552
|
-
-
|
|
1564
|
+
- BambooSaplingPlace
|
|
1553
1565
|
- PreSneeze
|
|
1554
1566
|
- Sneeze
|
|
1555
1567
|
- AmbientTame
|
|
1556
1568
|
- Scared
|
|
1557
|
-
-
|
|
1569
|
+
- ScaffoldingClimb
|
|
1558
1570
|
- CrossbowLoadingStart
|
|
1559
1571
|
- CrossbowLoadingMiddle
|
|
1560
1572
|
- CrossbowLoadingEnd
|
|
@@ -1565,29 +1577,29 @@ SoundType: varint =>
|
|
|
1565
1577
|
- AmbientAggressive
|
|
1566
1578
|
- AmbientWorried
|
|
1567
1579
|
- CantBreed
|
|
1568
|
-
-
|
|
1569
|
-
-
|
|
1570
|
-
-
|
|
1571
|
-
-
|
|
1572
|
-
-
|
|
1580
|
+
- ShieldBlock
|
|
1581
|
+
- LecternBookPlace
|
|
1582
|
+
- GrindstoneUse
|
|
1583
|
+
- Bell
|
|
1584
|
+
- CampfireCrackle
|
|
1573
1585
|
- Roar
|
|
1574
1586
|
- Stun
|
|
1575
|
-
-
|
|
1576
|
-
-
|
|
1577
|
-
-
|
|
1578
|
-
-
|
|
1579
|
-
-
|
|
1580
|
-
-
|
|
1581
|
-
-
|
|
1582
|
-
-
|
|
1583
|
-
-
|
|
1584
|
-
-
|
|
1587
|
+
- SweetBerryBushHurt
|
|
1588
|
+
- SweetBerryBushPick
|
|
1589
|
+
- CartographyTableUse
|
|
1590
|
+
- StonecutterUse
|
|
1591
|
+
- ComposterEmpty
|
|
1592
|
+
- ComposterFill
|
|
1593
|
+
- ComposterFillLayer
|
|
1594
|
+
- ComposterReady
|
|
1595
|
+
- BarrelOpen
|
|
1596
|
+
- BarrelClose
|
|
1585
1597
|
- RaidHorn
|
|
1586
|
-
-
|
|
1587
|
-
-
|
|
1588
|
-
-
|
|
1589
|
-
-
|
|
1590
|
-
-
|
|
1598
|
+
- LoomUse
|
|
1599
|
+
- AmbientInRaid
|
|
1600
|
+
- UicartographyTableUse
|
|
1601
|
+
- UistonecutterUse
|
|
1602
|
+
- UiloomUse
|
|
1591
1603
|
- SmokerUse
|
|
1592
1604
|
- BlastFurnaceUse
|
|
1593
1605
|
- SmithingTableUse
|
|
@@ -1599,12 +1611,12 @@ SoundType: varint =>
|
|
|
1599
1611
|
- Celebrate
|
|
1600
1612
|
- JumpPrevent
|
|
1601
1613
|
- AmbientPollinate
|
|
1602
|
-
-
|
|
1603
|
-
-
|
|
1604
|
-
-
|
|
1605
|
-
-
|
|
1606
|
-
-
|
|
1607
|
-
-
|
|
1614
|
+
- BeehiveDrip
|
|
1615
|
+
- BeehiveEnter
|
|
1616
|
+
- BeehiveExit
|
|
1617
|
+
- BeehiveWork
|
|
1618
|
+
- BeehiveShear
|
|
1619
|
+
- HoneybottleDrink
|
|
1608
1620
|
- AmbientCave
|
|
1609
1621
|
- Retreat
|
|
1610
1622
|
- ConvertToZombified
|
|
@@ -1613,11 +1625,11 @@ SoundType: varint =>
|
|
|
1613
1625
|
- Tempt
|
|
1614
1626
|
- Panic
|
|
1615
1627
|
- Angry
|
|
1616
|
-
-
|
|
1617
|
-
-
|
|
1618
|
-
-
|
|
1619
|
-
-
|
|
1620
|
-
-
|
|
1628
|
+
- AmbientMoodWarpedForest
|
|
1629
|
+
- AmbientMoodSoulsandValley
|
|
1630
|
+
- AmbientMoodNetherWastes
|
|
1631
|
+
- AmbientMoodBasaltDeltas
|
|
1632
|
+
- AmbientMoodCrimsonForest
|
|
1621
1633
|
- RespawnAnchorCharge
|
|
1622
1634
|
- RespawnAnchorDeplete
|
|
1623
1635
|
- RespawnAnchorSetSpawn
|
|
@@ -1626,7 +1638,7 @@ SoundType: varint =>
|
|
|
1626
1638
|
- SoulEscapeLoud
|
|
1627
1639
|
- RecordPigstep
|
|
1628
1640
|
- LinkCompassToLodestone
|
|
1629
|
-
-
|
|
1641
|
+
- UseSmithingTable
|
|
1630
1642
|
- EquipNetherite
|
|
1631
1643
|
- AmbientLoopWarpedForest
|
|
1632
1644
|
- AmbientLoopSoulsandValley
|
|
@@ -1649,51 +1661,50 @@ SoundType: varint =>
|
|
|
1649
1661
|
- CaveVinesPickBerries
|
|
1650
1662
|
- BigDripleafTiltDown
|
|
1651
1663
|
- BigDripleafTiltUp
|
|
1652
|
-
-
|
|
1653
|
-
-
|
|
1654
|
-
-
|
|
1655
|
-
-
|
|
1656
|
-
-
|
|
1657
|
-
-
|
|
1658
|
-
-
|
|
1659
|
-
-
|
|
1660
|
-
-
|
|
1661
|
-
-
|
|
1662
|
-
-
|
|
1663
|
-
-
|
|
1664
|
-
-
|
|
1665
|
-
-
|
|
1666
|
-
-
|
|
1667
|
-
-
|
|
1668
|
-
-
|
|
1669
|
-
-
|
|
1670
|
-
-
|
|
1671
|
-
-
|
|
1672
|
-
-
|
|
1673
|
-
-
|
|
1674
|
-
-
|
|
1675
|
-
-
|
|
1676
|
-
-
|
|
1677
|
-
-
|
|
1678
|
-
-
|
|
1679
|
-
-
|
|
1680
|
-
-
|
|
1681
|
-
-
|
|
1682
|
-
-
|
|
1683
|
-
-
|
|
1684
|
-
-
|
|
1685
|
-
-
|
|
1686
|
-
-
|
|
1687
|
-
-
|
|
1688
|
-
-
|
|
1689
|
-
-
|
|
1690
|
-
-
|
|
1691
|
-
-
|
|
1692
|
-
-
|
|
1693
|
-
-
|
|
1694
|
-
-
|
|
1695
|
-
-
|
|
1696
|
-
- sculk_shrieker_place
|
|
1664
|
+
- CopperWaxOn
|
|
1665
|
+
- CopperWaxOff
|
|
1666
|
+
- Scrape
|
|
1667
|
+
- PlayerHurtDrown
|
|
1668
|
+
- PlayerHurtOnFire
|
|
1669
|
+
- PlayerHurtFreeze
|
|
1670
|
+
- UseSpyglass
|
|
1671
|
+
- StopUsingSpyglass
|
|
1672
|
+
- AmethystBlockChime
|
|
1673
|
+
- AmbientScreamer
|
|
1674
|
+
- HurtScreamer
|
|
1675
|
+
- DeathScreamer
|
|
1676
|
+
- MilkScreamer
|
|
1677
|
+
- JumpToBlock
|
|
1678
|
+
- PreRam
|
|
1679
|
+
- PreRamScreamer
|
|
1680
|
+
- RamImpact
|
|
1681
|
+
- RamImpactScreamer
|
|
1682
|
+
- SquidInkSquirt
|
|
1683
|
+
- GlowSquidInkSquirt
|
|
1684
|
+
- ConvertToStray
|
|
1685
|
+
- CakeAddCandle
|
|
1686
|
+
- ExtinguishCandle
|
|
1687
|
+
- AmbientCandle
|
|
1688
|
+
- BlockClick
|
|
1689
|
+
- BlockClickFail
|
|
1690
|
+
- SculkCatalystBloom
|
|
1691
|
+
- SculkShriekerShriek
|
|
1692
|
+
- WardenNearbyClose
|
|
1693
|
+
- WardenNearbyCloser
|
|
1694
|
+
- WardenNearbyClosest
|
|
1695
|
+
- WardenSlightlyAngry
|
|
1696
|
+
- RecordOtherside
|
|
1697
|
+
- Tongue
|
|
1698
|
+
- CrackIronGolem
|
|
1699
|
+
- RepairIronGolem
|
|
1700
|
+
- Listening
|
|
1701
|
+
- Heartbeat
|
|
1702
|
+
- HornBreak
|
|
1703
|
+
- SculkPlace
|
|
1704
|
+
- SculkSpread
|
|
1705
|
+
- SculkCharge
|
|
1706
|
+
- SculkSensorPlace
|
|
1707
|
+
- SculkShriekerPlace
|
|
1697
1708
|
- goat_call_0
|
|
1698
1709
|
- goat_call_1
|
|
1699
1710
|
- goat_call_2
|
|
@@ -1734,6 +1745,24 @@ SoundType: varint =>
|
|
|
1734
1745
|
- goat_bass_7
|
|
1735
1746
|
- goat_bass_8
|
|
1736
1747
|
- goat_bass_9
|
|
1748
|
+
- _
|
|
1749
|
+
- _
|
|
1750
|
+
- _
|
|
1751
|
+
- ImitateWarden
|
|
1752
|
+
- ListeningAngry
|
|
1753
|
+
- ItemGiven
|
|
1754
|
+
- ItemTaken
|
|
1755
|
+
- Disappeared
|
|
1756
|
+
- Reappeared
|
|
1757
|
+
- _
|
|
1758
|
+
- FrogspawnHatched
|
|
1759
|
+
- LaySpawn
|
|
1760
|
+
- FrogspawnBreak
|
|
1761
|
+
- SonicBoom
|
|
1762
|
+
- SonicCharge
|
|
1763
|
+
- SoundeventItemThrown
|
|
1764
|
+
- Record5
|
|
1765
|
+
- ConvertToFrog
|
|
1737
1766
|
- Undefined
|
|
1738
1767
|
|
|
1739
1768
|
# TODO: remove?
|
|
@@ -1854,4 +1883,5 @@ DeviceOS: li32 =>
|
|
|
1854
1883
|
- Orbis
|
|
1855
1884
|
- NintendoSwitch
|
|
1856
1885
|
- Xbox
|
|
1857
|
-
- WindowsPhone
|
|
1886
|
+
- WindowsPhone
|
|
1887
|
+
- Linux
|
|
@@ -1296,9 +1296,30 @@
|
|
|
1296
1296
|
"steve": "bedrock/1.16.201",
|
|
1297
1297
|
"blocksB2J": "bedrock/1.18.30",
|
|
1298
1298
|
"blocksJ2B": "bedrock/1.18.30",
|
|
1299
|
+
"proto": "bedrock/1.18.30",
|
|
1300
|
+
"types": "bedrock/1.18.30",
|
|
1301
|
+
"version": "bedrock/1.18.30"
|
|
1302
|
+
},
|
|
1303
|
+
"1.19.1": {
|
|
1304
|
+
"blocks": "bedrock/1.18.30",
|
|
1305
|
+
"blockStates": "bedrock/1.18.30",
|
|
1306
|
+
"blockCollisionShapes": "bedrock/1.18.30",
|
|
1307
|
+
"biomes": "bedrock/1.18.0",
|
|
1308
|
+
"entities": "bedrock/1.18.11",
|
|
1309
|
+
"items": "bedrock/1.18.30",
|
|
1310
|
+
"recipes": "bedrock/1.18.30",
|
|
1311
|
+
"instruments": "bedrock/1.17.0",
|
|
1312
|
+
"materials": "pc/1.17",
|
|
1313
|
+
"enchantments": "pc/1.17",
|
|
1314
|
+
"effects": "pc/1.17",
|
|
1315
|
+
"protocol": "bedrock/1.19.1",
|
|
1316
|
+
"windows": "bedrock/1.16.201",
|
|
1317
|
+
"steve": "bedrock/1.16.201",
|
|
1318
|
+
"blocksB2J": "bedrock/1.18.30",
|
|
1319
|
+
"blocksJ2B": "bedrock/1.18.30",
|
|
1299
1320
|
"proto": "bedrock/latest",
|
|
1300
1321
|
"types": "bedrock/latest",
|
|
1301
|
-
"version": "bedrock/1.
|
|
1322
|
+
"version": "bedrock/1.19.1"
|
|
1302
1323
|
}
|
|
1303
1324
|
}
|
|
1304
1325
|
}
|