minecraft-data 3.102.2 → 3.103.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 +54 -0
- package/doc/history.md +8 -0
- package/index.d.ts +6 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/bedrock/1.21.100/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.100/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.111/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.111/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.120/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.120/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.124/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.124/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.130/protocol.json +3 -51
- package/minecraft-data/data/bedrock/1.21.80/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.80/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.90/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.90/protocol.json +1 -1
- package/minecraft-data/data/bedrock/1.21.93/proto.yml +1 -1
- package/minecraft-data/data/bedrock/1.21.93/protocol.json +1 -1
- package/minecraft-data/data/bedrock/latest/proto.yml +1 -1
- package/minecraft-data/data/bedrock/latest/types.yml +2 -20
- package/minecraft-data/data/dataPaths.json +55 -1
- package/minecraft-data/data/pc/1.21.4/proto.yml +1 -1
- package/minecraft-data/data/pc/1.21.4/protocol.json +1 -1
- package/minecraft-data/data/pc/1.21.5/proto.yml +1 -1
- package/minecraft-data/data/pc/1.21.5/protocol.json +1 -1
- package/minecraft-data/data/pc/1.21.6/proto.yml +5 -2
- package/minecraft-data/data/pc/1.21.6/protocol.json +18 -2
- package/minecraft-data/data/pc/1.21.8/proto.yml +3497 -0
- package/minecraft-data/data/pc/1.21.8/protocol.json +20 -7
- package/minecraft-data/data/pc/1.21.9/attributes.json +247 -0
- package/minecraft-data/data/pc/1.21.9/biomes.json +652 -0
- package/minecraft-data/data/pc/1.21.9/blockCollisionShapes.json +146215 -0
- package/minecraft-data/data/pc/1.21.9/blocks.json +44684 -0
- package/minecraft-data/data/pc/1.21.9/effects.json +236 -0
- package/minecraft-data/data/pc/1.21.9/enchantments.json +959 -0
- package/minecraft-data/data/pc/1.21.9/entities.json +4238 -0
- package/minecraft-data/data/pc/1.21.9/foods.json +402 -0
- package/minecraft-data/data/pc/1.21.9/instruments.json +94 -0
- package/minecraft-data/data/pc/1.21.9/items.json +9813 -0
- package/minecraft-data/data/pc/1.21.9/language.json +7585 -0
- package/minecraft-data/data/pc/1.21.9/loginPacket.json +16537 -0
- package/minecraft-data/data/pc/1.21.9/materials.json +233 -0
- package/minecraft-data/data/pc/1.21.9/particles.json +462 -0
- package/minecraft-data/data/pc/1.21.9/proto.yml +3758 -0
- package/minecraft-data/data/pc/1.21.9/protocol.json +11406 -0
- package/minecraft-data/data/pc/1.21.9/recipes.json +31415 -0
- package/minecraft-data/data/pc/1.21.9/sounds.json +7086 -0
- package/minecraft-data/data/pc/1.21.9/tints.json +465 -0
- package/minecraft-data/data/pc/1.21.9/version.json +6 -0
- package/minecraft-data/data/pc/common/features.json +10 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +24 -0
- package/minecraft-data/data/pc/common/versions.json +4 -2
- package/minecraft-data/data/pc/latest/proto.yml +329 -51
- package/minecraft-data/doc/history.md +11 -0
- package/minecraft-data/tools/js/test/audit_datapaths.js +5 -3
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1638,6 +1638,60 @@ module.exports =
|
|
|
1638
1638
|
get tints () { return require("./minecraft-data/data/pc/1.21.8/tints.json") },
|
|
1639
1639
|
get version () { return require("./minecraft-data/data/pc/1.21.8/version.json") },
|
|
1640
1640
|
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1641
|
+
proto: __dirname + '/minecraft-data/data/pc/1.21.8/proto.yml'
|
|
1642
|
+
},
|
|
1643
|
+
'1.21.9': {
|
|
1644
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.9/attributes.json") },
|
|
1645
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.21.9/blockCollisionShapes.json") },
|
|
1646
|
+
get blocks () { return require("./minecraft-data/data/pc/1.21.9/blocks.json") },
|
|
1647
|
+
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1648
|
+
get biomes () { return require("./minecraft-data/data/pc/1.21.9/biomes.json") },
|
|
1649
|
+
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1650
|
+
get effects () { return require("./minecraft-data/data/pc/1.21.9/effects.json") },
|
|
1651
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.21.9/enchantments.json") },
|
|
1652
|
+
get entities () { return require("./minecraft-data/data/pc/1.21.9/entities.json") },
|
|
1653
|
+
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1654
|
+
get foods () { return require("./minecraft-data/data/pc/1.21.9/foods.json") },
|
|
1655
|
+
get instruments () { return require("./minecraft-data/data/pc/1.21.9/instruments.json") },
|
|
1656
|
+
get items () { return require("./minecraft-data/data/pc/1.21.9/items.json") },
|
|
1657
|
+
get language () { return require("./minecraft-data/data/pc/1.21.9/language.json") },
|
|
1658
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.21.9/loginPacket.json") },
|
|
1659
|
+
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1660
|
+
get materials () { return require("./minecraft-data/data/pc/1.21.9/materials.json") },
|
|
1661
|
+
get particles () { return require("./minecraft-data/data/pc/1.21.9/particles.json") },
|
|
1662
|
+
get protocol () { return require("./minecraft-data/data/pc/1.21.9/protocol.json") },
|
|
1663
|
+
get recipes () { return require("./minecraft-data/data/pc/1.21.9/recipes.json") },
|
|
1664
|
+
get sounds () { return require("./minecraft-data/data/pc/1.21.9/sounds.json") },
|
|
1665
|
+
get tints () { return require("./minecraft-data/data/pc/1.21.9/tints.json") },
|
|
1666
|
+
get version () { return require("./minecraft-data/data/pc/1.21.9/version.json") },
|
|
1667
|
+
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1668
|
+
proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
|
|
1669
|
+
},
|
|
1670
|
+
'1.21.10': {
|
|
1671
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.9/attributes.json") },
|
|
1672
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.21.9/blockCollisionShapes.json") },
|
|
1673
|
+
get blocks () { return require("./minecraft-data/data/pc/1.21.9/blocks.json") },
|
|
1674
|
+
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1675
|
+
get biomes () { return require("./minecraft-data/data/pc/1.21.9/biomes.json") },
|
|
1676
|
+
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1677
|
+
get effects () { return require("./minecraft-data/data/pc/1.21.9/effects.json") },
|
|
1678
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.21.9/enchantments.json") },
|
|
1679
|
+
get entities () { return require("./minecraft-data/data/pc/1.21.9/entities.json") },
|
|
1680
|
+
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1681
|
+
get foods () { return require("./minecraft-data/data/pc/1.21.9/foods.json") },
|
|
1682
|
+
get instruments () { return require("./minecraft-data/data/pc/1.21.9/instruments.json") },
|
|
1683
|
+
get items () { return require("./minecraft-data/data/pc/1.21.9/items.json") },
|
|
1684
|
+
get language () { return require("./minecraft-data/data/pc/1.21.9/language.json") },
|
|
1685
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.21.9/loginPacket.json") },
|
|
1686
|
+
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1687
|
+
get materials () { return require("./minecraft-data/data/pc/1.21.9/materials.json") },
|
|
1688
|
+
get particles () { return require("./minecraft-data/data/pc/1.21.9/particles.json") },
|
|
1689
|
+
get protocol () { return require("./minecraft-data/data/pc/1.21.9/protocol.json") },
|
|
1690
|
+
get recipes () { return require("./minecraft-data/data/pc/1.21.9/recipes.json") },
|
|
1691
|
+
get sounds () { return require("./minecraft-data/data/pc/1.21.9/sounds.json") },
|
|
1692
|
+
get tints () { return require("./minecraft-data/data/pc/1.21.9/tints.json") },
|
|
1693
|
+
get version () { return require("./minecraft-data/data/pc/1.21.9/version.json") },
|
|
1694
|
+
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1641
1695
|
proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
|
|
1642
1696
|
}
|
|
1643
1697
|
},
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1486,6 +1486,12 @@ declare namespace MinecraftData {
|
|
|
1486
1486
|
/** `1.21.6 - latest`
|
|
1487
1487
|
* entity_action packet uses string mappings instead of numeric actionId */
|
|
1488
1488
|
"entityActionUsesStringMapper": boolean;
|
|
1489
|
+
/** `1.21.9 - latest`
|
|
1490
|
+
* entity velocity is encoded as a lpVec3 */
|
|
1491
|
+
"entityVelocityIsLpVec3": boolean;
|
|
1492
|
+
/** `1.21.9 - latest`
|
|
1493
|
+
* spawn position includes a dimension component */
|
|
1494
|
+
"spawnPositionIsGlobal": boolean;
|
|
1489
1495
|
}
|
|
1490
1496
|
|
|
1491
1497
|
type Object = { [key: string]: any }
|
package/minecraft-data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Language independent module providing minecraft data for minecraft clients, serv
|
|
|
9
9
|
|
|
10
10
|
Supports
|
|
11
11
|
* Minecraft PC version 0.30c (classic), 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
|
|
12
|
-
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4), 1.20 (1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6), 1.21 (1.21, 1.21.1, 1.21.3), 1.21.8
|
|
12
|
+
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2), 1.14 (1.14, 1.14.1, 1.14.3, 1.14.4), 1.15 (1.15, 1.15.1, 1.15.2), 1.16 (20w13b, 20w14a, 1.16-rc1, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5), 1.17, 1.17.1, 1.18 (1.18, 1.18.1, 1.18.2), 1.19 (1.19, 1.19.2, 1.19.3, 1.19.4), 1.20 (1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4, 1.20.5, 1.20.6), 1.21 (1.21, 1.21.1, 1.21.3), 1.21.8, 1.21.9, 1.21.10
|
|
13
13
|
<!--NEXT PC-->
|
|
14
14
|
* Minecraft bedrock version 0.14, 0.15, 1.0, 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40, 1.20.50, 1.20.61, 1.20.71, 1.20.80, 1.21.0, 1.21.2, 1.21.20, 1.21.30, 1.21.42, 1.21.50, 1.21.60, 1.21.70, 1.21.80, 1.21.90, 1.21.93, 1.21.100, 1.21.111, 1.21.120, 1.21.124, 1.21.130
|
|
15
15
|
<!--NEXT BEDROCK-->
|
|
@@ -14171,7 +14171,7 @@
|
|
|
14171
14171
|
},
|
|
14172
14172
|
{
|
|
14173
14173
|
"name": "entity_unique_id",
|
|
14174
|
-
"type": "
|
|
14174
|
+
"type": "zigzag64"
|
|
14175
14175
|
},
|
|
14176
14176
|
{
|
|
14177
14177
|
"name": "position",
|
|
@@ -14167,7 +14167,7 @@
|
|
|
14167
14167
|
},
|
|
14168
14168
|
{
|
|
14169
14169
|
"name": "entity_unique_id",
|
|
14170
|
-
"type": "
|
|
14170
|
+
"type": "zigzag64"
|
|
14171
14171
|
},
|
|
14172
14172
|
{
|
|
14173
14173
|
"name": "position",
|
|
@@ -14331,7 +14331,7 @@
|
|
|
14331
14331
|
},
|
|
14332
14332
|
{
|
|
14333
14333
|
"name": "entity_unique_id",
|
|
14334
|
-
"type": "
|
|
14334
|
+
"type": "zigzag64"
|
|
14335
14335
|
},
|
|
14336
14336
|
{
|
|
14337
14337
|
"name": "position",
|
|
@@ -14331,7 +14331,7 @@
|
|
|
14331
14331
|
},
|
|
14332
14332
|
{
|
|
14333
14333
|
"name": "entity_unique_id",
|
|
14334
|
-
"type": "
|
|
14334
|
+
"type": "zigzag64"
|
|
14335
14335
|
},
|
|
14336
14336
|
{
|
|
14337
14337
|
"name": "position",
|
|
@@ -3186,30 +3186,7 @@
|
|
|
3186
3186
|
[
|
|
3187
3187
|
{
|
|
3188
3188
|
"name": "type",
|
|
3189
|
-
"type":
|
|
3190
|
-
"mapper",
|
|
3191
|
-
{
|
|
3192
|
-
"type": "varint",
|
|
3193
|
-
"mappings": {
|
|
3194
|
-
"0": "player",
|
|
3195
|
-
"1": "block",
|
|
3196
|
-
"2": "minecart_block",
|
|
3197
|
-
"3": "dev_console",
|
|
3198
|
-
"4": "test",
|
|
3199
|
-
"5": "automation_player",
|
|
3200
|
-
"6": "client_automation",
|
|
3201
|
-
"7": "dedicated_server",
|
|
3202
|
-
"8": "entity",
|
|
3203
|
-
"9": "virtual",
|
|
3204
|
-
"10": "game_argument",
|
|
3205
|
-
"11": "entity_server",
|
|
3206
|
-
"12": "precompiled",
|
|
3207
|
-
"13": "game_director_entity_server",
|
|
3208
|
-
"14": "script",
|
|
3209
|
-
"15": "executor"
|
|
3210
|
-
}
|
|
3211
|
-
}
|
|
3212
|
-
]
|
|
3189
|
+
"type": "string"
|
|
3213
3190
|
},
|
|
3214
3191
|
{
|
|
3215
3192
|
"name": "uuid",
|
|
@@ -3221,32 +3198,7 @@
|
|
|
3221
3198
|
},
|
|
3222
3199
|
{
|
|
3223
3200
|
"name": "player_entity_id",
|
|
3224
|
-
"type":
|
|
3225
|
-
"switch",
|
|
3226
|
-
{
|
|
3227
|
-
"compareTo": "type",
|
|
3228
|
-
"fields": {
|
|
3229
|
-
"dev_console": [
|
|
3230
|
-
"container",
|
|
3231
|
-
[
|
|
3232
|
-
{
|
|
3233
|
-
"name": "player_entity_id",
|
|
3234
|
-
"type": "zigzag64"
|
|
3235
|
-
}
|
|
3236
|
-
]
|
|
3237
|
-
],
|
|
3238
|
-
"test": [
|
|
3239
|
-
"container",
|
|
3240
|
-
[
|
|
3241
|
-
{
|
|
3242
|
-
"name": "player_entity_id",
|
|
3243
|
-
"type": "zigzag64"
|
|
3244
|
-
}
|
|
3245
|
-
]
|
|
3246
|
-
]
|
|
3247
|
-
}
|
|
3248
|
-
}
|
|
3249
|
-
]
|
|
3201
|
+
"type": "li64"
|
|
3250
3202
|
}
|
|
3251
3203
|
]
|
|
3252
3204
|
],
|
|
@@ -14438,7 +14390,7 @@
|
|
|
14438
14390
|
},
|
|
14439
14391
|
{
|
|
14440
14392
|
"name": "entity_unique_id",
|
|
14441
|
-
"type": "
|
|
14393
|
+
"type": "zigzag64"
|
|
14442
14394
|
},
|
|
14443
14395
|
{
|
|
14444
14396
|
"name": "position",
|
|
@@ -14096,7 +14096,7 @@
|
|
|
14096
14096
|
},
|
|
14097
14097
|
{
|
|
14098
14098
|
"name": "entity_unique_id",
|
|
14099
|
-
"type": "
|
|
14099
|
+
"type": "zigzag64"
|
|
14100
14100
|
},
|
|
14101
14101
|
{
|
|
14102
14102
|
"name": "position",
|
|
@@ -14153,7 +14153,7 @@
|
|
|
14153
14153
|
},
|
|
14154
14154
|
{
|
|
14155
14155
|
"name": "entity_unique_id",
|
|
14156
|
-
"type": "
|
|
14156
|
+
"type": "zigzag64"
|
|
14157
14157
|
},
|
|
14158
14158
|
{
|
|
14159
14159
|
"name": "position",
|
|
@@ -14153,7 +14153,7 @@
|
|
|
14153
14153
|
},
|
|
14154
14154
|
{
|
|
14155
14155
|
"name": "entity_unique_id",
|
|
14156
|
-
"type": "
|
|
14156
|
+
"type": "zigzag64"
|
|
14157
14157
|
},
|
|
14158
14158
|
{
|
|
14159
14159
|
"name": "position",
|
|
@@ -1221,23 +1221,7 @@ CommandOrigin:
|
|
|
1221
1221
|
# Origin is one of the values above that specifies the origin of the command. The origin may change,
|
|
1222
1222
|
# depending on what part of the client actually called the command. The command may be issued by a
|
|
1223
1223
|
# websocket server, for example.
|
|
1224
|
-
type:
|
|
1225
|
-
0: player
|
|
1226
|
-
1: block
|
|
1227
|
-
2: minecart_block
|
|
1228
|
-
3: dev_console
|
|
1229
|
-
4: test
|
|
1230
|
-
5: automation_player
|
|
1231
|
-
6: client_automation
|
|
1232
|
-
7: dedicated_server
|
|
1233
|
-
8: entity
|
|
1234
|
-
9: virtual
|
|
1235
|
-
10: game_argument
|
|
1236
|
-
11: entity_server
|
|
1237
|
-
12: precompiled
|
|
1238
|
-
13: game_director_entity_server # ?
|
|
1239
|
-
14: script
|
|
1240
|
-
15: executor
|
|
1224
|
+
type: string
|
|
1241
1225
|
|
|
1242
1226
|
# UUID is the UUID of the command called. This UUID is a bit odd as it is not specified by the server. It
|
|
1243
1227
|
# is not clear what exactly this UUID is meant to identify, but it is unique for each command called.
|
|
@@ -1250,9 +1234,7 @@ CommandOrigin:
|
|
|
1250
1234
|
# PlayerUniqueID is an ID that identifies the player, the same as the one found in the AdventureSettings
|
|
1251
1235
|
# packet. Filling it out with 0 seems to work.
|
|
1252
1236
|
# PlayerUniqueID is only written if Origin is CommandOriginDevConsole or CommandOriginTest.
|
|
1253
|
-
player_entity_id:
|
|
1254
|
-
if dev_console or test:
|
|
1255
|
-
player_entity_id: zigzag64
|
|
1237
|
+
player_entity_id: li64
|
|
1256
1238
|
|
|
1257
1239
|
# MapTrackedObject is an object on a map that is 'tracked' by the client, such as an entity or a block. This
|
|
1258
1240
|
# object may move, which is handled client-side.
|
|
@@ -1637,6 +1637,60 @@
|
|
|
1637
1637
|
"tints": "pc/1.21.8",
|
|
1638
1638
|
"version": "pc/1.21.8",
|
|
1639
1639
|
"windows": "pc/1.16.1",
|
|
1640
|
+
"proto": "pc/1.21.8"
|
|
1641
|
+
},
|
|
1642
|
+
"1.21.9": {
|
|
1643
|
+
"attributes": "pc/1.21.9",
|
|
1644
|
+
"blockCollisionShapes": "pc/1.21.9",
|
|
1645
|
+
"blocks": "pc/1.21.9",
|
|
1646
|
+
"blockLoot": "pc/1.20",
|
|
1647
|
+
"biomes": "pc/1.21.9",
|
|
1648
|
+
"commands": "pc/1.20.3",
|
|
1649
|
+
"effects": "pc/1.21.9",
|
|
1650
|
+
"enchantments": "pc/1.21.9",
|
|
1651
|
+
"entities": "pc/1.21.9",
|
|
1652
|
+
"entityLoot": "pc/1.20",
|
|
1653
|
+
"foods": "pc/1.21.9",
|
|
1654
|
+
"instruments": "pc/1.21.9",
|
|
1655
|
+
"items": "pc/1.21.9",
|
|
1656
|
+
"language": "pc/1.21.9",
|
|
1657
|
+
"loginPacket": "pc/1.21.9",
|
|
1658
|
+
"mapIcons": "pc/1.20.2",
|
|
1659
|
+
"materials": "pc/1.21.9",
|
|
1660
|
+
"particles": "pc/1.21.9",
|
|
1661
|
+
"protocol": "pc/1.21.9",
|
|
1662
|
+
"recipes": "pc/1.21.9",
|
|
1663
|
+
"sounds": "pc/1.21.9",
|
|
1664
|
+
"tints": "pc/1.21.9",
|
|
1665
|
+
"version": "pc/1.21.9",
|
|
1666
|
+
"windows": "pc/1.16.1",
|
|
1667
|
+
"proto": "pc/latest"
|
|
1668
|
+
},
|
|
1669
|
+
"1.21.10": {
|
|
1670
|
+
"attributes": "pc/1.21.9",
|
|
1671
|
+
"blockCollisionShapes": "pc/1.21.9",
|
|
1672
|
+
"blocks": "pc/1.21.9",
|
|
1673
|
+
"blockLoot": "pc/1.20",
|
|
1674
|
+
"biomes": "pc/1.21.9",
|
|
1675
|
+
"commands": "pc/1.20.3",
|
|
1676
|
+
"effects": "pc/1.21.9",
|
|
1677
|
+
"enchantments": "pc/1.21.9",
|
|
1678
|
+
"entities": "pc/1.21.9",
|
|
1679
|
+
"entityLoot": "pc/1.20",
|
|
1680
|
+
"foods": "pc/1.21.9",
|
|
1681
|
+
"instruments": "pc/1.21.9",
|
|
1682
|
+
"items": "pc/1.21.9",
|
|
1683
|
+
"language": "pc/1.21.9",
|
|
1684
|
+
"loginPacket": "pc/1.21.9",
|
|
1685
|
+
"mapIcons": "pc/1.20.2",
|
|
1686
|
+
"materials": "pc/1.21.9",
|
|
1687
|
+
"particles": "pc/1.21.9",
|
|
1688
|
+
"protocol": "pc/1.21.9",
|
|
1689
|
+
"recipes": "pc/1.21.9",
|
|
1690
|
+
"sounds": "pc/1.21.9",
|
|
1691
|
+
"tints": "pc/1.21.9",
|
|
1692
|
+
"version": "pc/1.21.9",
|
|
1693
|
+
"windows": "pc/1.16.1",
|
|
1640
1694
|
"proto": "pc/latest"
|
|
1641
1695
|
}
|
|
1642
1696
|
},
|
|
@@ -2683,4 +2737,4 @@
|
|
|
2683
2737
|
"language": "bedrock/1.21.70"
|
|
2684
2738
|
}
|
|
2685
2739
|
}
|
|
2686
|
-
}
|
|
2740
|
+
}
|
|
@@ -1877,7 +1877,7 @@
|
|
|
1877
1877
|
x: f64
|
|
1878
1878
|
y: f64
|
|
1879
1879
|
z: f64
|
|
1880
|
-
playerKnockback?:
|
|
1880
|
+
playerKnockback?: vec3f64
|
|
1881
1881
|
explosionParticle: Particle
|
|
1882
1882
|
sound: ItemSoundHolder
|
|
1883
1883
|
# MC: ClientboundForgetLevelChunkPacket
|
|
@@ -2689,7 +2689,10 @@
|
|
|
2689
2689
|
id: string
|
|
2690
2690
|
icon:
|
|
2691
2691
|
style: string
|
|
2692
|
-
color?:
|
|
2692
|
+
color?:
|
|
2693
|
+
red: u8
|
|
2694
|
+
green: u8
|
|
2695
|
+
blue: u8
|
|
2693
2696
|
type: varint =>
|
|
2694
2697
|
0: empty
|
|
2695
2698
|
1: vec3i
|
|
@@ -5440,7 +5440,7 @@
|
|
|
5440
5440
|
"name": "playerKnockback",
|
|
5441
5441
|
"type": [
|
|
5442
5442
|
"option",
|
|
5443
|
-
"
|
|
5443
|
+
"vec3f64"
|
|
5444
5444
|
]
|
|
5445
5445
|
},
|
|
5446
5446
|
{
|
|
@@ -8471,7 +8471,23 @@
|
|
|
8471
8471
|
"name": "color",
|
|
8472
8472
|
"type": [
|
|
8473
8473
|
"option",
|
|
8474
|
-
|
|
8474
|
+
[
|
|
8475
|
+
"container",
|
|
8476
|
+
[
|
|
8477
|
+
{
|
|
8478
|
+
"name": "red",
|
|
8479
|
+
"type": "u8"
|
|
8480
|
+
},
|
|
8481
|
+
{
|
|
8482
|
+
"name": "green",
|
|
8483
|
+
"type": "u8"
|
|
8484
|
+
},
|
|
8485
|
+
{
|
|
8486
|
+
"name": "blue",
|
|
8487
|
+
"type": "u8"
|
|
8488
|
+
}
|
|
8489
|
+
]
|
|
8490
|
+
]
|
|
8475
8491
|
]
|
|
8476
8492
|
}
|
|
8477
8493
|
]
|