minecraft-data 3.77.0 → 3.79.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 +82 -1
- package/doc/history.md +8 -0
- package/index.d.ts +6 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/dataPaths.json +82 -1
- package/minecraft-data/data/pc/1.20.3/proto.yml +7 -2
- package/minecraft-data/data/pc/1.20.3/protocol.json +29 -5
- package/minecraft-data/data/pc/1.20.5/enchantments.json +28 -28
- package/minecraft-data/data/pc/1.20.5/items.json +67 -67
- package/minecraft-data/data/pc/1.20.5/proto.yml +3417 -0
- package/minecraft-data/data/pc/1.20.5/protocol.json +73 -138
- package/minecraft-data/data/pc/1.21/version.json +6 -0
- package/minecraft-data/data/pc/1.21.1/attributes.json +219 -0
- package/minecraft-data/data/pc/1.21.1/blocks.json +39811 -0
- package/minecraft-data/data/pc/1.21.1/enchantments.json +959 -0
- package/minecraft-data/data/pc/1.21.1/foods.json +412 -0
- package/minecraft-data/data/pc/1.21.1/items.json +8780 -0
- package/minecraft-data/data/pc/1.21.1/language.json +6883 -0
- package/minecraft-data/data/pc/1.21.1/materials.json +134 -0
- package/minecraft-data/data/pc/1.21.1/proto.yml +3534 -0
- package/minecraft-data/data/pc/1.21.1/protocol.json +9228 -0
- package/minecraft-data/data/pc/1.21.1/recipes.json +28095 -0
- package/minecraft-data/data/pc/1.21.1/sounds.json +6446 -0
- package/minecraft-data/data/pc/1.21.1/tints.json +447 -0
- package/minecraft-data/data/pc/1.21.1/version.json +6 -0
- package/minecraft-data/data/pc/1.21.3/attributes.json +226 -0
- package/minecraft-data/data/pc/1.21.3/biomes.json +652 -0
- package/minecraft-data/data/pc/1.21.3/blockCollisionShapes.json +137701 -0
- package/minecraft-data/data/pc/1.21.3/blocks.json +40773 -0
- package/minecraft-data/data/pc/1.21.3/entities.json +4158 -0
- package/minecraft-data/data/pc/1.21.3/foods.json +402 -0
- package/minecraft-data/data/pc/1.21.3/items.json +9038 -0
- package/minecraft-data/data/pc/1.21.3/language.json +6974 -0
- package/minecraft-data/data/pc/1.21.3/materials.json +134 -0
- package/minecraft-data/data/pc/1.21.3/particles.json +446 -0
- package/minecraft-data/data/pc/1.21.3/protocol.json +9518 -0
- package/minecraft-data/data/pc/1.21.3/recipes.json +29693 -0
- package/minecraft-data/data/pc/1.21.3/sounds.json +6546 -0
- package/minecraft-data/data/pc/1.21.3/tints.json +465 -0
- package/minecraft-data/data/pc/1.21.3/version.json +6 -0
- package/minecraft-data/data/pc/common/features.json +10 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +80 -0
- package/minecraft-data/data/pc/common/versions.json +4 -2
- package/minecraft-data/data/pc/latest/proto.yml +534 -605
- package/minecraft-data/doc/add-data-new-version.md +1 -0
- package/minecraft-data/doc/history.md +18 -0
- package/minecraft-data/tools/js/extractPcEntityMetadata.js +32 -10
- package/minecraft-data/tools/js/extractSlotComponents.js +23 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1422,7 +1422,7 @@ module.exports =
|
|
|
1422
1422
|
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1423
1423
|
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1424
1424
|
get sounds () { return require("./minecraft-data/data/pc/1.20.4/sounds.json") },
|
|
1425
|
-
proto: __dirname + '/minecraft-data/data/pc/
|
|
1425
|
+
proto: __dirname + '/minecraft-data/data/pc/1.20.5/proto.yml'
|
|
1426
1426
|
},
|
|
1427
1427
|
'1.20.6': {
|
|
1428
1428
|
get attributes () { return require("./minecraft-data/data/pc/1.17/attributes.json") },
|
|
@@ -1449,6 +1449,87 @@ module.exports =
|
|
|
1449
1449
|
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1450
1450
|
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1451
1451
|
get sounds () { return require("./minecraft-data/data/pc/1.20.4/sounds.json") },
|
|
1452
|
+
proto: __dirname + '/minecraft-data/data/pc/1.20.5/proto.yml'
|
|
1453
|
+
},
|
|
1454
|
+
'1.21': {
|
|
1455
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.1/attributes.json") },
|
|
1456
|
+
get blocks () { return require("./minecraft-data/data/pc/1.21.1/blocks.json") },
|
|
1457
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.20.5/blockCollisionShapes.json") },
|
|
1458
|
+
get biomes () { return require("./minecraft-data/data/pc/1.20.5/biomes.json") },
|
|
1459
|
+
get effects () { return require("./minecraft-data/data/pc/1.20.5/effects.json") },
|
|
1460
|
+
get items () { return require("./minecraft-data/data/pc/1.21.1/items.json") },
|
|
1461
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.21.1/enchantments.json") },
|
|
1462
|
+
get recipes () { return require("./minecraft-data/data/pc/1.21.1/recipes.json") },
|
|
1463
|
+
get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
|
|
1464
|
+
get materials () { return require("./minecraft-data/data/pc/1.21.1/materials.json") },
|
|
1465
|
+
get language () { return require("./minecraft-data/data/pc/1.21.1/language.json") },
|
|
1466
|
+
get entities () { return require("./minecraft-data/data/pc/1.20.5/entities.json") },
|
|
1467
|
+
get protocol () { return require("./minecraft-data/data/pc/1.21.1/protocol.json") },
|
|
1468
|
+
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1469
|
+
get version () { return require("./minecraft-data/data/pc/1.21/version.json") },
|
|
1470
|
+
get foods () { return require("./minecraft-data/data/pc/1.21.1/foods.json") },
|
|
1471
|
+
get particles () { return require("./minecraft-data/data/pc/1.20.5/particles.json") },
|
|
1472
|
+
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1473
|
+
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1474
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.20.5/loginPacket.json") },
|
|
1475
|
+
get tints () { return require("./minecraft-data/data/pc/1.21.1/tints.json") },
|
|
1476
|
+
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1477
|
+
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1478
|
+
get sounds () { return require("./minecraft-data/data/pc/1.21.1/sounds.json") },
|
|
1479
|
+
proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
|
|
1480
|
+
},
|
|
1481
|
+
'1.21.1': {
|
|
1482
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.1/attributes.json") },
|
|
1483
|
+
get blocks () { return require("./minecraft-data/data/pc/1.21.1/blocks.json") },
|
|
1484
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.20.5/blockCollisionShapes.json") },
|
|
1485
|
+
get biomes () { return require("./minecraft-data/data/pc/1.20.5/biomes.json") },
|
|
1486
|
+
get effects () { return require("./minecraft-data/data/pc/1.20.5/effects.json") },
|
|
1487
|
+
get items () { return require("./minecraft-data/data/pc/1.21.1/items.json") },
|
|
1488
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.21.1/enchantments.json") },
|
|
1489
|
+
get recipes () { return require("./minecraft-data/data/pc/1.21.1/recipes.json") },
|
|
1490
|
+
get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
|
|
1491
|
+
get materials () { return require("./minecraft-data/data/pc/1.21.1/materials.json") },
|
|
1492
|
+
get language () { return require("./minecraft-data/data/pc/1.21.1/language.json") },
|
|
1493
|
+
get entities () { return require("./minecraft-data/data/pc/1.20.5/entities.json") },
|
|
1494
|
+
get protocol () { return require("./minecraft-data/data/pc/1.21.1/protocol.json") },
|
|
1495
|
+
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1496
|
+
get version () { return require("./minecraft-data/data/pc/1.21.1/version.json") },
|
|
1497
|
+
get foods () { return require("./minecraft-data/data/pc/1.21.1/foods.json") },
|
|
1498
|
+
get particles () { return require("./minecraft-data/data/pc/1.20.5/particles.json") },
|
|
1499
|
+
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1500
|
+
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1501
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.20.5/loginPacket.json") },
|
|
1502
|
+
get tints () { return require("./minecraft-data/data/pc/1.21.1/tints.json") },
|
|
1503
|
+
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1504
|
+
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1505
|
+
get sounds () { return require("./minecraft-data/data/pc/1.21.1/sounds.json") },
|
|
1506
|
+
proto: __dirname + '/minecraft-data/data/pc/1.21.1/proto.yml'
|
|
1507
|
+
},
|
|
1508
|
+
'1.21.3': {
|
|
1509
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.3/attributes.json") },
|
|
1510
|
+
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.21.3/blockCollisionShapes.json") },
|
|
1511
|
+
get blocks () { return require("./minecraft-data/data/pc/1.21.3/blocks.json") },
|
|
1512
|
+
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1513
|
+
get biomes () { return require("./minecraft-data/data/pc/1.21.3/biomes.json") },
|
|
1514
|
+
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1515
|
+
get effects () { return require("./minecraft-data/data/pc/1.20.5/effects.json") },
|
|
1516
|
+
get enchantments () { return require("./minecraft-data/data/pc/1.21.1/enchantments.json") },
|
|
1517
|
+
get entities () { return require("./minecraft-data/data/pc/1.21.3/entities.json") },
|
|
1518
|
+
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1519
|
+
get foods () { return require("./minecraft-data/data/pc/1.21.1/foods.json") },
|
|
1520
|
+
get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
|
|
1521
|
+
get items () { return require("./minecraft-data/data/pc/1.21.3/items.json") },
|
|
1522
|
+
get language () { return require("./minecraft-data/data/pc/1.21.3/language.json") },
|
|
1523
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.20.5/loginPacket.json") },
|
|
1524
|
+
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1525
|
+
get materials () { return require("./minecraft-data/data/pc/1.21.3/materials.json") },
|
|
1526
|
+
get particles () { return require("./minecraft-data/data/pc/1.21.3/particles.json") },
|
|
1527
|
+
get protocol () { return require("./minecraft-data/data/pc/1.21.3/protocol.json") },
|
|
1528
|
+
get recipes () { return require("./minecraft-data/data/pc/1.21.3/recipes.json") },
|
|
1529
|
+
get sounds () { return require("./minecraft-data/data/pc/1.21.3/sounds.json") },
|
|
1530
|
+
get tints () { return require("./minecraft-data/data/pc/1.21.3/tints.json") },
|
|
1531
|
+
get version () { return require("./minecraft-data/data/pc/1.21.3/version.json") },
|
|
1532
|
+
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1452
1533
|
proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
|
|
1453
1534
|
}
|
|
1454
1535
|
},
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1354,6 +1354,12 @@ declare namespace MinecraftData {
|
|
|
1354
1354
|
/** `1.14 - latest`
|
|
1355
1355
|
* Support the execute command */
|
|
1356
1356
|
"hasExecuteCommand": boolean;
|
|
1357
|
+
/** `1.21 - latest`
|
|
1358
|
+
* The chat type field in the `player_chat` packet now starts at 1 instead of 0 */
|
|
1359
|
+
"incrementedChatType": boolean;
|
|
1360
|
+
/** `1.21 - latest`
|
|
1361
|
+
* The server needs to send the registry data to the client before sending the finish_configuration packet */
|
|
1362
|
+
"registryDataIsMandatory": boolean;
|
|
1357
1363
|
}
|
|
1358
1364
|
|
|
1359
1365
|
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)
|
|
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)
|
|
13
13
|
* 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
|
|
14
14
|
|
|
15
15
|
|
|
@@ -1421,7 +1421,7 @@
|
|
|
1421
1421
|
"mapIcons": "pc/1.20.2",
|
|
1422
1422
|
"commands": "pc/1.20.3",
|
|
1423
1423
|
"sounds": "pc/1.20.4",
|
|
1424
|
-
"proto": "pc/
|
|
1424
|
+
"proto": "pc/1.20.5"
|
|
1425
1425
|
},
|
|
1426
1426
|
"1.20.6": {
|
|
1427
1427
|
"attributes": "pc/1.17",
|
|
@@ -1448,6 +1448,87 @@
|
|
|
1448
1448
|
"mapIcons": "pc/1.20.2",
|
|
1449
1449
|
"commands": "pc/1.20.3",
|
|
1450
1450
|
"sounds": "pc/1.20.4",
|
|
1451
|
+
"proto": "pc/1.20.5"
|
|
1452
|
+
},
|
|
1453
|
+
"1.21": {
|
|
1454
|
+
"attributes": "pc/1.21.1",
|
|
1455
|
+
"blocks": "pc/1.21.1",
|
|
1456
|
+
"blockCollisionShapes": "pc/1.20.5",
|
|
1457
|
+
"biomes": "pc/1.20.5",
|
|
1458
|
+
"effects": "pc/1.20.5",
|
|
1459
|
+
"items": "pc/1.21.1",
|
|
1460
|
+
"enchantments": "pc/1.21.1",
|
|
1461
|
+
"recipes": "pc/1.21.1",
|
|
1462
|
+
"instruments": "pc/1.20.5",
|
|
1463
|
+
"materials": "pc/1.21.1",
|
|
1464
|
+
"language": "pc/1.21.1",
|
|
1465
|
+
"entities": "pc/1.20.5",
|
|
1466
|
+
"protocol": "pc/1.21.1",
|
|
1467
|
+
"windows": "pc/1.16.1",
|
|
1468
|
+
"version": "pc/1.21",
|
|
1469
|
+
"foods": "pc/1.21.1",
|
|
1470
|
+
"particles": "pc/1.20.5",
|
|
1471
|
+
"blockLoot": "pc/1.20",
|
|
1472
|
+
"entityLoot": "pc/1.20",
|
|
1473
|
+
"loginPacket": "pc/1.20.5",
|
|
1474
|
+
"tints": "pc/1.21.1",
|
|
1475
|
+
"mapIcons": "pc/1.20.2",
|
|
1476
|
+
"commands": "pc/1.20.3",
|
|
1477
|
+
"sounds": "pc/1.21.1",
|
|
1478
|
+
"proto": "pc/latest"
|
|
1479
|
+
},
|
|
1480
|
+
"1.21.1": {
|
|
1481
|
+
"attributes": "pc/1.21.1",
|
|
1482
|
+
"blocks": "pc/1.21.1",
|
|
1483
|
+
"blockCollisionShapes": "pc/1.20.5",
|
|
1484
|
+
"biomes": "pc/1.20.5",
|
|
1485
|
+
"effects": "pc/1.20.5",
|
|
1486
|
+
"items": "pc/1.21.1",
|
|
1487
|
+
"enchantments": "pc/1.21.1",
|
|
1488
|
+
"recipes": "pc/1.21.1",
|
|
1489
|
+
"instruments": "pc/1.20.5",
|
|
1490
|
+
"materials": "pc/1.21.1",
|
|
1491
|
+
"language": "pc/1.21.1",
|
|
1492
|
+
"entities": "pc/1.20.5",
|
|
1493
|
+
"protocol": "pc/1.21.1",
|
|
1494
|
+
"windows": "pc/1.16.1",
|
|
1495
|
+
"version": "pc/1.21.1",
|
|
1496
|
+
"foods": "pc/1.21.1",
|
|
1497
|
+
"particles": "pc/1.20.5",
|
|
1498
|
+
"blockLoot": "pc/1.20",
|
|
1499
|
+
"entityLoot": "pc/1.20",
|
|
1500
|
+
"loginPacket": "pc/1.20.5",
|
|
1501
|
+
"tints": "pc/1.21.1",
|
|
1502
|
+
"mapIcons": "pc/1.20.2",
|
|
1503
|
+
"commands": "pc/1.20.3",
|
|
1504
|
+
"sounds": "pc/1.21.1",
|
|
1505
|
+
"proto": "pc/1.21.1"
|
|
1506
|
+
},
|
|
1507
|
+
"1.21.3": {
|
|
1508
|
+
"attributes": "pc/1.21.3",
|
|
1509
|
+
"blockCollisionShapes": "pc/1.21.3",
|
|
1510
|
+
"blocks": "pc/1.21.3",
|
|
1511
|
+
"blockLoot": "pc/1.20",
|
|
1512
|
+
"biomes": "pc/1.21.3",
|
|
1513
|
+
"commands": "pc/1.20.3",
|
|
1514
|
+
"effects": "pc/1.20.5",
|
|
1515
|
+
"enchantments": "pc/1.21.1",
|
|
1516
|
+
"entities": "pc/1.21.3",
|
|
1517
|
+
"entityLoot": "pc/1.20",
|
|
1518
|
+
"foods": "pc/1.21.1",
|
|
1519
|
+
"instruments": "pc/1.20.5",
|
|
1520
|
+
"items": "pc/1.21.3",
|
|
1521
|
+
"language": "pc/1.21.3",
|
|
1522
|
+
"loginPacket": "pc/1.20.5",
|
|
1523
|
+
"mapIcons": "pc/1.20.2",
|
|
1524
|
+
"materials": "pc/1.21.3",
|
|
1525
|
+
"particles": "pc/1.21.3",
|
|
1526
|
+
"protocol": "pc/1.21.3",
|
|
1527
|
+
"recipes": "pc/1.21.3",
|
|
1528
|
+
"sounds": "pc/1.21.3",
|
|
1529
|
+
"tints": "pc/1.21.3",
|
|
1530
|
+
"version": "pc/1.21.3",
|
|
1531
|
+
"windows": "pc/1.16.1",
|
|
1451
1532
|
"proto": "pc/latest"
|
|
1452
1533
|
}
|
|
1453
1534
|
},
|
|
@@ -1104,8 +1104,13 @@
|
|
|
1104
1104
|
block_interaction_type: varint
|
|
1105
1105
|
small_explosion_particle: particle
|
|
1106
1106
|
large_explosion_particle: particle
|
|
1107
|
-
|
|
1108
|
-
|
|
1107
|
+
soundId: varint
|
|
1108
|
+
_: soundId ?
|
|
1109
|
+
if 0:
|
|
1110
|
+
soundName: string
|
|
1111
|
+
range?: f32
|
|
1112
|
+
default:
|
|
1113
|
+
|
|
1109
1114
|
# MC: ClientboundForgetLevelChunkPacket
|
|
1110
1115
|
packet_unload_chunk:
|
|
1111
1116
|
chunkZ: i32
|
|
@@ -2942,14 +2942,38 @@
|
|
|
2942
2942
|
"type": "particle"
|
|
2943
2943
|
},
|
|
2944
2944
|
{
|
|
2945
|
-
"name": "
|
|
2946
|
-
"type": "
|
|
2945
|
+
"name": "soundId",
|
|
2946
|
+
"type": "varint"
|
|
2947
2947
|
},
|
|
2948
2948
|
{
|
|
2949
|
-
"
|
|
2949
|
+
"anon": true,
|
|
2950
2950
|
"type": [
|
|
2951
|
-
"
|
|
2952
|
-
|
|
2951
|
+
"switch",
|
|
2952
|
+
{
|
|
2953
|
+
"compareTo": "soundId",
|
|
2954
|
+
"fields": {
|
|
2955
|
+
"0": [
|
|
2956
|
+
"container",
|
|
2957
|
+
[
|
|
2958
|
+
{
|
|
2959
|
+
"name": "soundName",
|
|
2960
|
+
"type": "string"
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"name": "range",
|
|
2964
|
+
"type": [
|
|
2965
|
+
"option",
|
|
2966
|
+
"f32"
|
|
2967
|
+
]
|
|
2968
|
+
}
|
|
2969
|
+
]
|
|
2970
|
+
]
|
|
2971
|
+
},
|
|
2972
|
+
"default": [
|
|
2973
|
+
"container",
|
|
2974
|
+
[]
|
|
2975
|
+
]
|
|
2976
|
+
}
|
|
2953
2977
|
]
|
|
2954
2978
|
}
|
|
2955
2979
|
]
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"treasureOnly": false,
|
|
66
66
|
"curse": false,
|
|
67
67
|
"exclude": [],
|
|
68
|
-
"category": "
|
|
68
|
+
"category": "foot_armor",
|
|
69
69
|
"weight": 5,
|
|
70
70
|
"tradeable": true,
|
|
71
71
|
"discoverable": true
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"treasureOnly": false,
|
|
137
137
|
"curse": false,
|
|
138
138
|
"exclude": [],
|
|
139
|
-
"category": "
|
|
139
|
+
"category": "head_armor",
|
|
140
140
|
"weight": 2,
|
|
141
141
|
"tradeable": true,
|
|
142
142
|
"discoverable": true
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"treasureOnly": false,
|
|
158
158
|
"curse": false,
|
|
159
159
|
"exclude": [],
|
|
160
|
-
"category": "
|
|
160
|
+
"category": "head_armor",
|
|
161
161
|
"weight": 2,
|
|
162
162
|
"tradeable": true,
|
|
163
163
|
"discoverable": true
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
"exclude": [
|
|
202
202
|
"frost_walker"
|
|
203
203
|
],
|
|
204
|
-
"category": "
|
|
204
|
+
"category": "foot_armor",
|
|
205
205
|
"weight": 2,
|
|
206
206
|
"tradeable": true,
|
|
207
207
|
"discoverable": true
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
"exclude": [
|
|
225
225
|
"depth_strider"
|
|
226
226
|
],
|
|
227
|
-
"category": "
|
|
227
|
+
"category": "foot_armor",
|
|
228
228
|
"weight": 2,
|
|
229
229
|
"tradeable": true,
|
|
230
230
|
"discoverable": true
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"treasureOnly": true,
|
|
246
246
|
"curse": true,
|
|
247
247
|
"exclude": [],
|
|
248
|
-
"category": "
|
|
248
|
+
"category": "equippable",
|
|
249
249
|
"weight": 1,
|
|
250
250
|
"tradeable": true,
|
|
251
251
|
"discoverable": true
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
"treasureOnly": true,
|
|
267
267
|
"curse": false,
|
|
268
268
|
"exclude": [],
|
|
269
|
-
"category": "
|
|
269
|
+
"category": "foot_armor",
|
|
270
270
|
"weight": 1,
|
|
271
271
|
"tradeable": false,
|
|
272
272
|
"discoverable": false
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
"treasureOnly": true,
|
|
288
288
|
"curse": false,
|
|
289
289
|
"exclude": [],
|
|
290
|
-
"category": "
|
|
290
|
+
"category": "leg_armor",
|
|
291
291
|
"weight": 1,
|
|
292
292
|
"tradeable": false,
|
|
293
293
|
"discoverable": false
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"bane_of_arthropods",
|
|
313
313
|
"impaling"
|
|
314
314
|
],
|
|
315
|
-
"category": "
|
|
315
|
+
"category": "sharp_weapon",
|
|
316
316
|
"weight": 10,
|
|
317
317
|
"tradeable": true,
|
|
318
318
|
"discoverable": true
|
|
@@ -383,7 +383,7 @@
|
|
|
383
383
|
"treasureOnly": false,
|
|
384
384
|
"curse": false,
|
|
385
385
|
"exclude": [],
|
|
386
|
-
"category": "
|
|
386
|
+
"category": "sword",
|
|
387
387
|
"weight": 5,
|
|
388
388
|
"tradeable": true,
|
|
389
389
|
"discoverable": true
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
"treasureOnly": false,
|
|
405
405
|
"curse": false,
|
|
406
406
|
"exclude": [],
|
|
407
|
-
"category": "
|
|
407
|
+
"category": "fire_aspect",
|
|
408
408
|
"weight": 2,
|
|
409
409
|
"tradeable": true,
|
|
410
410
|
"discoverable": true
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
"exclude": [
|
|
428
428
|
"silk_touch"
|
|
429
429
|
],
|
|
430
|
-
"category": "
|
|
430
|
+
"category": "sword",
|
|
431
431
|
"weight": 2,
|
|
432
432
|
"tradeable": true,
|
|
433
433
|
"discoverable": true
|
|
@@ -448,8 +448,8 @@
|
|
|
448
448
|
"treasureOnly": false,
|
|
449
449
|
"curse": false,
|
|
450
450
|
"exclude": [],
|
|
451
|
-
"category": "
|
|
452
|
-
"weight":
|
|
451
|
+
"category": "sword",
|
|
452
|
+
"weight": 2,
|
|
453
453
|
"tradeable": true,
|
|
454
454
|
"discoverable": true
|
|
455
455
|
},
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
"treasureOnly": false,
|
|
470
470
|
"curse": false,
|
|
471
471
|
"exclude": [],
|
|
472
|
-
"category": "
|
|
472
|
+
"category": "mining",
|
|
473
473
|
"weight": 10,
|
|
474
474
|
"tradeable": true,
|
|
475
475
|
"discoverable": true
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
"fortune",
|
|
495
495
|
"luck_of_the_sea"
|
|
496
496
|
],
|
|
497
|
-
"category": "
|
|
497
|
+
"category": "mining_loot",
|
|
498
498
|
"weight": 1,
|
|
499
499
|
"tradeable": true,
|
|
500
500
|
"discoverable": true
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
"treasureOnly": false,
|
|
516
516
|
"curse": false,
|
|
517
517
|
"exclude": [],
|
|
518
|
-
"category": "
|
|
518
|
+
"category": "durability",
|
|
519
519
|
"weight": 5,
|
|
520
520
|
"tradeable": true,
|
|
521
521
|
"discoverable": true
|
|
@@ -538,7 +538,7 @@
|
|
|
538
538
|
"exclude": [
|
|
539
539
|
"silk_touch"
|
|
540
540
|
],
|
|
541
|
-
"category": "
|
|
541
|
+
"category": "mining_loot",
|
|
542
542
|
"weight": 2,
|
|
543
543
|
"tradeable": true,
|
|
544
544
|
"discoverable": true
|
|
@@ -647,7 +647,7 @@
|
|
|
647
647
|
"exclude": [
|
|
648
648
|
"silk_touch"
|
|
649
649
|
],
|
|
650
|
-
"category": "
|
|
650
|
+
"category": "fishing",
|
|
651
651
|
"weight": 2,
|
|
652
652
|
"tradeable": true,
|
|
653
653
|
"discoverable": true
|
|
@@ -668,7 +668,7 @@
|
|
|
668
668
|
"treasureOnly": false,
|
|
669
669
|
"curse": false,
|
|
670
670
|
"exclude": [],
|
|
671
|
-
"category": "
|
|
671
|
+
"category": "fishing",
|
|
672
672
|
"weight": 2,
|
|
673
673
|
"tradeable": true,
|
|
674
674
|
"discoverable": true
|
|
@@ -851,8 +851,8 @@
|
|
|
851
851
|
"treasureOnly": false,
|
|
852
852
|
"curse": false,
|
|
853
853
|
"exclude": [],
|
|
854
|
-
"category": "
|
|
855
|
-
"weight":
|
|
854
|
+
"category": "mace",
|
|
855
|
+
"weight": 10,
|
|
856
856
|
"tradeable": true,
|
|
857
857
|
"discoverable": true
|
|
858
858
|
},
|
|
@@ -872,8 +872,8 @@
|
|
|
872
872
|
"treasureOnly": false,
|
|
873
873
|
"curse": false,
|
|
874
874
|
"exclude": [],
|
|
875
|
-
"category": "
|
|
876
|
-
"weight":
|
|
875
|
+
"category": "mace",
|
|
876
|
+
"weight": 2,
|
|
877
877
|
"tradeable": true,
|
|
878
878
|
"discoverable": true
|
|
879
879
|
},
|
|
@@ -893,8 +893,8 @@
|
|
|
893
893
|
"treasureOnly": false,
|
|
894
894
|
"curse": false,
|
|
895
895
|
"exclude": [],
|
|
896
|
-
"category": "
|
|
897
|
-
"weight":
|
|
896
|
+
"category": "mace",
|
|
897
|
+
"weight": 2,
|
|
898
898
|
"tradeable": false,
|
|
899
899
|
"discoverable": false
|
|
900
900
|
},
|
|
@@ -916,7 +916,7 @@
|
|
|
916
916
|
"exclude": [
|
|
917
917
|
"infinity"
|
|
918
918
|
],
|
|
919
|
-
"category": "
|
|
919
|
+
"category": "durability",
|
|
920
920
|
"weight": 2,
|
|
921
921
|
"tradeable": true,
|
|
922
922
|
"discoverable": true
|
|
@@ -937,7 +937,7 @@
|
|
|
937
937
|
"treasureOnly": true,
|
|
938
938
|
"curse": true,
|
|
939
939
|
"exclude": [],
|
|
940
|
-
"category": "
|
|
940
|
+
"category": "vanishing",
|
|
941
941
|
"weight": 1,
|
|
942
942
|
"tradeable": true,
|
|
943
943
|
"discoverable": true
|