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.
Files changed (26) hide show
  1. package/data.js +22 -1
  2. package/doc/history.md +3 -0
  3. package/minecraft-data/.github/workflows/bedrock-ci.yml +1 -1
  4. package/minecraft-data/README.md +1 -1
  5. package/minecraft-data/data/bedrock/1.17.30/proto.yml +2 -2
  6. package/minecraft-data/data/bedrock/1.17.30/protocol.json +2 -2
  7. package/minecraft-data/data/bedrock/1.17.40/proto.yml +2 -2
  8. package/minecraft-data/data/bedrock/1.17.40/protocol.json +2 -2
  9. package/minecraft-data/data/bedrock/1.18.0/proto.yml +2 -2
  10. package/minecraft-data/data/bedrock/1.18.0/protocol.json +204 -194
  11. package/minecraft-data/data/bedrock/1.18.0/types.yml +107 -97
  12. package/minecraft-data/data/bedrock/1.18.11/proto.yml +2 -2
  13. package/minecraft-data/data/bedrock/1.18.11/protocol.json +207 -204
  14. package/minecraft-data/data/bedrock/1.18.11/types.yml +110 -107
  15. package/minecraft-data/data/bedrock/1.18.30/proto.yml +3480 -0
  16. package/minecraft-data/data/bedrock/1.18.30/protocol.json +265 -260
  17. package/minecraft-data/data/bedrock/1.18.30/types.yml +1860 -0
  18. package/minecraft-data/data/bedrock/1.19.1/protocol.json +10278 -0
  19. package/minecraft-data/data/bedrock/1.19.1/version.json +6 -0
  20. package/minecraft-data/data/bedrock/common/protocolVersions.json +6 -0
  21. package/minecraft-data/data/bedrock/common/versions.json +2 -1
  22. package/minecraft-data/data/bedrock/latest/proto.yml +120 -23
  23. package/minecraft-data/data/bedrock/latest/types.yml +148 -118
  24. package/minecraft-data/data/dataPaths.json +22 -1
  25. package/minecraft-data/doc/history.md +3 -0
  26. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 527,
3
+ "minecraftVersion": "1.19.1",
4
+ "majorVersion": "1.19",
5
+ "releaseType": "release"
6
+ }
@@ -1,4 +1,10 @@
1
1
  [
2
+ {
3
+ "version": 527,
4
+ "minecraftVersion": "1.19.1",
5
+ "majorVersion": "1.19",
6
+ "releaseType": "release"
7
+ },
2
8
  {
3
9
  "version": 503,
4
10
  "minecraftVersion": "1.18.30",
@@ -11,5 +11,6 @@
11
11
  "1.17.40",
12
12
  "1.18.0",
13
13
  "1.18.11",
14
- "1.18.30"
14
+ "1.18.30",
15
+ "1.19.1"
15
16
  ]
@@ -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.18.30
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
- block_pallete_checksum: lu64
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: varint =>
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
- 2: float
1622
- 3: value
1623
- 4: wildcard_int
1624
- 5: operator
1625
- 6: target
1626
- 16: file_path
1627
- 32: string
1628
- 40: position
1629
- 44: message
1630
- 46: raw_text
1631
- 50: json
1632
- 63: command
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: i64
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: i64
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: lu64
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
- - unknown1
1438
+ - StopRecord
1431
1439
  - Flop
1432
- - ElderGuardianCurse
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
- - PrepareAttack
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
- - Growl
1456
- - Whine
1457
- - Pant
1458
- - Purr
1459
- - Purreow
1463
+ - AmbientGrowl
1464
+ - AmbientWhine
1465
+ - AmbientPant
1466
+ - AmbientPurr
1467
+ - AmbientPurreow
1460
1468
  - DeathMinVolume
1461
1469
  - DeathMidVolume
1462
- - unknown2
1470
+ - ImitateBlaze
1463
1471
  - ImitateCaveSpider
1464
1472
  - ImitateCreeper
1465
1473
  - ImitateElderGuardian
1466
1474
  - ImitateEnderDragon
1467
1475
  - ImitateEnderman
1468
- - unknown3
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
- - BlockEndPortalFrameFill
1491
- - BlockEndPortalSpawn
1492
- - RandomAnvilUse
1498
+ - EnderEyePlaced
1499
+ - EndPortalCreated
1500
+ - AnvilUse
1493
1501
  - BottleDragonBreath
1494
1502
  - PortalTravel
1495
- - ItemTridentHit
1496
- - ItemTridentReturn
1497
- - ItemTridentRiptide1
1498
- - ItemTridentRiptide2
1499
- - ItemTridentRiptide3
1500
- - ItemTridentThrow
1501
- - ItemTridentThunder
1502
- - ItemTridentHitGround
1503
+ - TridentHit
1504
+ - TridentReturn
1505
+ - TridentRiptide1
1506
+ - TridentRiptide2
1507
+ - TridentRiptide3
1508
+ - TridentThrow
1509
+ - TridentThunder
1510
+ - TridentHitGround
1503
1511
  - Default
1504
- - BlockFletchingTableUse
1512
+ - FletchingTableUse
1505
1513
  - ElemConstructOpen
1506
1514
  - IceBombHit
1507
1515
  - BalloonPop
1508
1516
  - LtReactionIceBomb
1509
1517
  - LtReactionBleach
1510
- - LtReactionEPaste
1511
- - LtReactionEPaste2
1518
+ - LtReactionElephantToothpaste
1519
+ - LtReactionElephantToothpaste2
1520
+ - LtReactionGlowStick
1521
+ - LtReactionGlowStick2
1522
+ - LtReactionLuminol
1523
+ - LtReactionSalt
1512
1524
  - LtReactionFertilizer
1513
1525
  - LtReactionFireball
1514
- - LtReactionMgsalt
1515
- - LtReactionMiscfire
1526
+ - LtReactionMagnesiumSalt
1527
+ - LtReactionMiscFire
1516
1528
  - LtReactionFire
1517
- - LtReactionMiscexplosion
1518
- - LtReactionMiscmystical
1519
- - LtReactionMiscmystical2
1529
+ - LtReactionMiscExplosion
1530
+ - LtReactionMiscMystical
1531
+ - LtReactionMiscMystical2
1520
1532
  - LtReactionProduct
1521
1533
  - SparklerUse
1522
- - GlowstickUse
1534
+ - GlowStickUse
1523
1535
  - SparklerActive
1524
1536
  - ConvertToDrowned
1525
1537
  - BucketFillFish
1526
1538
  - BucketEmptyFish
1527
- - BubbleUp
1528
- - BubbleDown
1539
+ - BubbleColumnUpwards
1540
+ - BubbleColumnDownwards
1529
1541
  - BubblePop
1530
1542
  - BubbleUpInside
1531
1543
  - BubbleDownInside
1532
1544
  - HurtBaby
1533
1545
  - DeathBaby
1534
1546
  - StepBaby
1535
- - BabySpawn
1547
+ - SpawnBaby
1536
1548
  - Born
1537
- - BlockTurtleEggBreak
1538
- - BlockTurtleEggCrack
1539
- - BlockTurtleEggHatch
1540
- - TurtleLayEgg
1541
- - BlockTurtleEggAttack
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
- - BlockBambooSaplingPlace
1564
+ - BambooSaplingPlace
1553
1565
  - PreSneeze
1554
1566
  - Sneeze
1555
1567
  - AmbientTame
1556
1568
  - Scared
1557
- - BlockScaffoldingClimb
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
- - ItemShieldBlock
1569
- - ItemBookPut
1570
- - BlockGrindstoneUse
1571
- - BlockBellHit
1572
- - BlockCampfireCrackle
1580
+ - ShieldBlock
1581
+ - LecternBookPlace
1582
+ - GrindstoneUse
1583
+ - Bell
1584
+ - CampfireCrackle
1573
1585
  - Roar
1574
1586
  - Stun
1575
- - BlockSweetBerryBushHurt
1576
- - BlockSweetBerryBushPick
1577
- - UICartographyTableTakeResult
1578
- - UIStoneCutterTakeResult
1579
- - BlockComposterEmpty
1580
- - BlockComposterFill
1581
- - BlockComposterFillSuccess
1582
- - BlockComposterReady
1583
- - BlockBarrelOpen
1584
- - BlockBarrelClose
1587
+ - SweetBerryBushHurt
1588
+ - SweetBerryBushPick
1589
+ - CartographyTableUse
1590
+ - StonecutterUse
1591
+ - ComposterEmpty
1592
+ - ComposterFill
1593
+ - ComposterFillLayer
1594
+ - ComposterReady
1595
+ - BarrelOpen
1596
+ - BarrelClose
1585
1597
  - RaidHorn
1586
- - BlockLoomUse
1587
- - AmbientRaid
1588
- - UICartographyTableUse
1589
- - UIStoneCutterUse
1590
- - UILoomUse
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
- - BeeHiveDrip
1603
- - BeeHiveEnter
1604
- - BeeHiveExit
1605
- - BeeHiveWork
1606
- - BeeHiveShear
1607
- - HoneyBottleDrink
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
- - AmbientWarpedForest
1617
- - AmbientSoulsandValley
1618
- - AmbientNetherWastes
1619
- - AmbientBasaltDeltas
1620
- - AmbientCrimsonForest
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
- - BlockSmithingTableUse
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
- - unknown335
1653
- - unknown336
1654
- - unknown337
1655
- - unknown338
1656
- - copper_wax_on
1657
- - copper_wax_off
1658
- - scrape
1659
- - player_hurt_drown
1660
- - player_hurt_on_fire
1661
- - player_hurt_freeze
1662
- - use_spyglass
1663
- - stop_using_spyglass
1664
- - amethyst_block_chime
1665
- - ambient_screamer
1666
- - hurt_screamer
1667
- - death_screamer
1668
- - milk_screamer
1669
- - jump_to_block
1670
- - pre_ram
1671
- - pre_ram_screamer
1672
- - ram_impact
1673
- - ram_impact_screamer
1674
- - squid_ink_squirt
1675
- - glow_squid_ink_squirt
1676
- - convert_to_stray
1677
- - extinguish_candle
1678
- - ambient_candle
1679
- - sculk_catalyst_bloom
1680
- - sculk_shrieker_shriek
1681
- - warden_nearby_close
1682
- - warden_nearby_closer
1683
- - warden_nearby_closest
1684
- - warden_slightly_angry
1685
- - record_otherside
1686
- - tongue
1687
- - crack_iron_golem
1688
- - repair_iron_golem
1689
- - listening
1690
- - heartbeat
1691
- - horn_break
1692
- - sculk_place
1693
- - sculk_spread
1694
- - sculk_charge
1695
- - sculk_sensor_place
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.18.11"
1322
+ "version": "bedrock/1.19.1"
1302
1323
  }
1303
1324
  }
1304
1325
  }
@@ -1,3 +1,6 @@
1
+ ## 3.4.0
2
+ * Add bedrock 1.19 protocol data, 1.18 protocol corrections
3
+
1
4
  ## 3.3.0
2
5
  * Update dimension descriptions (#565)
3
6
  * Add 1.19-pre4 to pc/common/protocolVersions.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",