minecraft-data 3.25.2 → 3.27.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 +8 -0
- 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/protocol.json +11061 -0
- package/minecraft-data/data/bedrock/1.19.60/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 +29 -5
- package/minecraft-data/data/bedrock/latest/types.yml +24 -0
- package/minecraft-data/data/dataPaths.json +22 -1
- package/minecraft-data/data/pc/1.19.3/protocol.json +30 -15
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +78 -1
- package/minecraft-data/doc/history.md +7 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1517,9 +1517,30 @@ module.exports =
|
|
|
1517
1517
|
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1518
1518
|
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.19.1/blocksB2J.json") },
|
|
1519
1519
|
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.19.1/blocksJ2B.json") },
|
|
1520
|
+
proto: __dirname + '/minecraft-data/data/bedrock/1.19.50/proto.yml',
|
|
1521
|
+
types: __dirname + '/minecraft-data/data/bedrock/1.19.50/types.yml',
|
|
1522
|
+
get version () { return require("./minecraft-data/data/bedrock/1.19.50/version.json") }
|
|
1523
|
+
},
|
|
1524
|
+
'1.19.60': {
|
|
1525
|
+
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1526
|
+
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1527
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
1528
|
+
get biomes () { return require("./minecraft-data/data/bedrock/1.19.1/biomes.json") },
|
|
1529
|
+
get entities () { return require("./minecraft-data/data/bedrock/1.19.1/entities.json") },
|
|
1530
|
+
get items () { return require("./minecraft-data/data/bedrock/1.19.10/items.json") },
|
|
1531
|
+
get recipes () { return require("./minecraft-data/data/bedrock/1.19.10/recipes.json") },
|
|
1532
|
+
get instruments () { return require("./minecraft-data/data/bedrock/1.17.0/instruments.json") },
|
|
1533
|
+
get materials () { return require("./minecraft-data/data/pc/1.17/materials.json") },
|
|
1534
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.17/enchantments.json") },
|
|
1535
|
+
get effects () { return require("./minecraft-data/data/pc/1.17/effects.json") },
|
|
1536
|
+
get protocol () { return require("./minecraft-data/data/bedrock/1.19.60/protocol.json") },
|
|
1537
|
+
get windows () { return require("./minecraft-data/data/bedrock/1.16.201/windows.json") },
|
|
1538
|
+
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1539
|
+
get blocksB2J () { return require("./minecraft-data/data/bedrock/1.19.1/blocksB2J.json") },
|
|
1540
|
+
get blocksJ2B () { return require("./minecraft-data/data/bedrock/1.19.1/blocksJ2B.json") },
|
|
1520
1541
|
proto: __dirname + '/minecraft-data/data/bedrock/latest/proto.yml',
|
|
1521
1542
|
types: __dirname + '/minecraft-data/data/bedrock/latest/types.yml',
|
|
1522
|
-
get version () { return require("./minecraft-data/data/bedrock/1.19.
|
|
1543
|
+
get version () { return require("./minecraft-data/data/bedrock/1.19.60/version.json") }
|
|
1523
1544
|
}
|
|
1524
1545
|
}
|
|
1525
1546
|
}
|
package/doc/history.md
CHANGED
|
@@ -1390,7 +1390,7 @@ packet_command_request:
|
|
|
1390
1390
|
origin: CommandOrigin
|
|
1391
1391
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1392
1392
|
# this field is not known.
|
|
1393
|
-
|
|
1393
|
+
internal: bool
|
|
1394
1394
|
|
|
1395
1395
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
1396
1396
|
# block may be either a physical block or an entity.
|
|
@@ -1429,7 +1429,7 @@ packet_command_request:
|
|
|
1429
1429
|
origin: CommandOrigin
|
|
1430
1430
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1431
1431
|
# this field is not known.
|
|
1432
|
-
|
|
1432
|
+
internal: bool
|
|
1433
1433
|
|
|
1434
1434
|
|
|
1435
1435
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1563,7 +1563,7 @@ packet_command_request:
|
|
|
1563
1563
|
origin: CommandOrigin
|
|
1564
1564
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1565
1565
|
# this field is not known.
|
|
1566
|
-
|
|
1566
|
+
internal: bool
|
|
1567
1567
|
|
|
1568
1568
|
|
|
1569
1569
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1565,7 +1565,7 @@ packet_command_request:
|
|
|
1565
1565
|
origin: CommandOrigin
|
|
1566
1566
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1567
1567
|
# this field is not known.
|
|
1568
|
-
|
|
1568
|
+
internal: bool
|
|
1569
1569
|
|
|
1570
1570
|
|
|
1571
1571
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1648,7 +1648,7 @@ packet_command_request:
|
|
|
1648
1648
|
origin: CommandOrigin
|
|
1649
1649
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1650
1650
|
# this field is not known.
|
|
1651
|
-
|
|
1651
|
+
internal: bool
|
|
1652
1652
|
|
|
1653
1653
|
|
|
1654
1654
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1661,7 +1661,7 @@ packet_command_request:
|
|
|
1661
1661
|
origin: CommandOrigin
|
|
1662
1662
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1663
1663
|
# this field is not known.
|
|
1664
|
-
|
|
1664
|
+
internal: bool
|
|
1665
1665
|
|
|
1666
1666
|
|
|
1667
1667
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1661,7 +1661,7 @@ packet_command_request:
|
|
|
1661
1661
|
origin: CommandOrigin
|
|
1662
1662
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1663
1663
|
# this field is not known.
|
|
1664
|
-
|
|
1664
|
+
internal: bool
|
|
1665
1665
|
|
|
1666
1666
|
|
|
1667
1667
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1668,7 +1668,7 @@ packet_command_request:
|
|
|
1668
1668
|
origin: CommandOrigin
|
|
1669
1669
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1670
1670
|
# this field is not known.
|
|
1671
|
-
|
|
1671
|
+
internal: bool
|
|
1672
1672
|
|
|
1673
1673
|
|
|
1674
1674
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1675,7 +1675,7 @@ packet_command_request:
|
|
|
1675
1675
|
origin: CommandOrigin
|
|
1676
1676
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1677
1677
|
# this field is not known.
|
|
1678
|
-
|
|
1678
|
+
internal: bool
|
|
1679
1679
|
|
|
1680
1680
|
|
|
1681
1681
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1685,7 +1685,7 @@ packet_command_request:
|
|
|
1685
1685
|
origin: CommandOrigin
|
|
1686
1686
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1687
1687
|
# this field is not known.
|
|
1688
|
-
|
|
1688
|
+
internal: bool
|
|
1689
1689
|
|
|
1690
1690
|
|
|
1691
1691
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1695,7 +1695,7 @@ packet_command_request:
|
|
|
1695
1695
|
origin: CommandOrigin
|
|
1696
1696
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1697
1697
|
# this field is not known.
|
|
1698
|
-
|
|
1698
|
+
internal: bool
|
|
1699
1699
|
|
|
1700
1700
|
|
|
1701
1701
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1746,7 +1746,7 @@ packet_command_request:
|
|
|
1746
1746
|
origin: CommandOrigin
|
|
1747
1747
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1748
1748
|
# this field is not known.
|
|
1749
|
-
|
|
1749
|
+
internal: bool
|
|
1750
1750
|
|
|
1751
1751
|
|
|
1752
1752
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1767,7 +1767,7 @@ packet_command_request:
|
|
|
1767
1767
|
origin: CommandOrigin
|
|
1768
1768
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1769
1769
|
# this field is not known.
|
|
1770
|
-
|
|
1770
|
+
internal: bool
|
|
1771
1771
|
|
|
1772
1772
|
|
|
1773
1773
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1767,7 +1767,7 @@ packet_command_request:
|
|
|
1767
1767
|
origin: CommandOrigin
|
|
1768
1768
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1769
1769
|
# this field is not known.
|
|
1770
|
-
|
|
1770
|
+
internal: bool
|
|
1771
1771
|
|
|
1772
1772
|
|
|
1773
1773
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1768,7 +1768,7 @@ packet_command_request:
|
|
|
1768
1768
|
origin: CommandOrigin
|
|
1769
1769
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1770
1770
|
# this field is not known.
|
|
1771
|
-
|
|
1771
|
+
internal: bool
|
|
1772
1772
|
|
|
1773
1773
|
|
|
1774
1774
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|
|
@@ -1777,7 +1777,7 @@ packet_command_request:
|
|
|
1777
1777
|
origin: CommandOrigin
|
|
1778
1778
|
# Internal specifies if the command request internal. Setting it to false seems to work and the usage of
|
|
1779
1779
|
# this field is not known.
|
|
1780
|
-
|
|
1780
|
+
internal: bool
|
|
1781
1781
|
|
|
1782
1782
|
|
|
1783
1783
|
# CommandBlockUpdate is sent by the client to update a command block at a specific position. The command
|