minecraft-data 3.40.0 → 3.41.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 +20 -0
- package/doc/history.md +4 -0
- package/index.d.ts +12 -0
- package/minecraft-data/data/bedrock/1.16.201/attributes.json +107 -0
- package/minecraft-data/data/bedrock/1.16.201/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.16.201/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.16.210/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.16.210/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.16.220/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.16.220/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.17.0/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.0/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.17.10/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.17.10/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.17.30/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.17.30/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.17.40/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.17.40/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.18.0/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.18.0/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.18.11/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.18.11/protocol.json +62 -54
- package/minecraft-data/data/bedrock/1.18.30/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.18.30/protocol.json +64 -56
- package/minecraft-data/data/bedrock/1.19.1/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.1/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.10/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.10/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.20/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.20/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.21/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.21/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.30/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.30/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.40/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.40/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.50/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.19.50/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.60/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.19.60/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.62/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.19.62/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.70/proto.yml +3 -3
- package/minecraft-data/data/bedrock/1.19.70/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.19.80/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.19.80/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.20.0/proto.yml +4 -4
- package/minecraft-data/data/bedrock/1.20.0/protocol.json +68 -60
- package/minecraft-data/data/bedrock/1.20.10/protocol.json +3 -3
- package/minecraft-data/data/bedrock/common/features.json +5 -0
- package/minecraft-data/data/bedrock/latest/proto.yml +3 -3
- package/minecraft-data/data/dataPaths.json +20 -0
- package/minecraft-data/data/pc/1.10/attributes.json +53 -14
- package/minecraft-data/data/pc/1.11/attributes.json +53 -14
- package/minecraft-data/data/pc/1.12/attributes.json +53 -14
- package/minecraft-data/data/pc/1.13/attributes.json +53 -14
- package/minecraft-data/data/pc/1.14/attributes.json +53 -14
- package/minecraft-data/data/pc/1.15/attributes.json +53 -14
- package/minecraft-data/data/pc/1.16/attributes.json +53 -14
- package/minecraft-data/data/pc/1.17/attributes.json +53 -14
- package/minecraft-data/data/pc/1.19/protocol.json +13 -8
- package/minecraft-data/data/pc/1.19.2/protocol.json +13 -8
- package/minecraft-data/data/pc/1.19.3/protocol.json +14 -8
- package/minecraft-data/data/pc/1.19.4/protocol.json +19 -17
- package/minecraft-data/data/pc/1.20/protocol.json +22 -20
- package/minecraft-data/data/pc/1.7/attributes.json +28 -7
- package/minecraft-data/data/pc/1.8/attributes.json +49 -13
- package/minecraft-data/data/pc/1.9/attributes.json +53 -14
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/doc/history.md +8 -0
- package/minecraft-data/schemas/attributes_schema.json +13 -1
- package/package.json +2 -2
package/data.js
CHANGED
|
@@ -1273,6 +1273,7 @@ module.exports =
|
|
|
1273
1273
|
get version () { return require("./minecraft-data/data/bedrock/1.0/version.json") }
|
|
1274
1274
|
},
|
|
1275
1275
|
'1.16.201': {
|
|
1276
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1276
1277
|
get protocol () { return require("./minecraft-data/data/bedrock/1.16.201/protocol.json") },
|
|
1277
1278
|
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1278
1279
|
proto: __dirname + '/minecraft-data/data/bedrock/1.16.201/proto.yml',
|
|
@@ -1282,6 +1283,7 @@ module.exports =
|
|
|
1282
1283
|
get version () { return require("./minecraft-data/data/bedrock/1.16.201/version.json") }
|
|
1283
1284
|
},
|
|
1284
1285
|
'1.16.210': {
|
|
1286
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1285
1287
|
get protocol () { return require("./minecraft-data/data/bedrock/1.16.210/protocol.json") },
|
|
1286
1288
|
get steve () { return require("./minecraft-data/data/bedrock/1.16.201/steve.json") },
|
|
1287
1289
|
proto: __dirname + '/minecraft-data/data/bedrock/1.16.210/proto.yml',
|
|
@@ -1290,6 +1292,7 @@ module.exports =
|
|
|
1290
1292
|
get version () { return require("./minecraft-data/data/bedrock/1.16.210/version.json") }
|
|
1291
1293
|
},
|
|
1292
1294
|
'1.16.220': {
|
|
1295
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1293
1296
|
get blocks () { return require("./minecraft-data/data/bedrock/1.16.220/blocks.json") },
|
|
1294
1297
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.16.220/blockStates.json") },
|
|
1295
1298
|
get biomes () { return require("./minecraft-data/data/bedrock/1.17.0/biomes.json") },
|
|
@@ -1302,6 +1305,7 @@ module.exports =
|
|
|
1302
1305
|
get version () { return require("./minecraft-data/data/bedrock/1.16.220/version.json") }
|
|
1303
1306
|
},
|
|
1304
1307
|
'1.17.0': {
|
|
1308
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1305
1309
|
get blocks () { return require("./minecraft-data/data/bedrock/1.17.0/blocks.json") },
|
|
1306
1310
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.17.0/blockStates.json") },
|
|
1307
1311
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.17.0/blockCollisionShapes.json") },
|
|
@@ -1321,6 +1325,7 @@ module.exports =
|
|
|
1321
1325
|
get version () { return require("./minecraft-data/data/bedrock/1.17.0/version.json") }
|
|
1322
1326
|
},
|
|
1323
1327
|
'1.17.10': {
|
|
1328
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1324
1329
|
get blocks () { return require("./minecraft-data/data/bedrock/1.17.10/blocks.json") },
|
|
1325
1330
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.17.10/blockStates.json") },
|
|
1326
1331
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.17.10/blockCollisionShapes.json") },
|
|
@@ -1342,6 +1347,7 @@ module.exports =
|
|
|
1342
1347
|
get version () { return require("./minecraft-data/data/bedrock/1.17.10/version.json") }
|
|
1343
1348
|
},
|
|
1344
1349
|
'1.17.30': {
|
|
1350
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1345
1351
|
get blocks () { return require("./minecraft-data/data/bedrock/1.17.10/blocks.json") },
|
|
1346
1352
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.17.10/blockStates.json") },
|
|
1347
1353
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.17.10/blockCollisionShapes.json") },
|
|
@@ -1363,6 +1369,7 @@ module.exports =
|
|
|
1363
1369
|
get version () { return require("./minecraft-data/data/bedrock/1.17.30/version.json") }
|
|
1364
1370
|
},
|
|
1365
1371
|
'1.17.40': {
|
|
1372
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1366
1373
|
get blocks () { return require("./minecraft-data/data/bedrock/1.17.40/blocks.json") },
|
|
1367
1374
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.17.40/blockStates.json") },
|
|
1368
1375
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.17.40/blockCollisionShapes.json") },
|
|
@@ -1384,6 +1391,7 @@ module.exports =
|
|
|
1384
1391
|
get version () { return require("./minecraft-data/data/bedrock/1.17.40/version.json") }
|
|
1385
1392
|
},
|
|
1386
1393
|
'1.18.0': {
|
|
1394
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1387
1395
|
get blocks () { return require("./minecraft-data/data/bedrock/1.17.40/blocks.json") },
|
|
1388
1396
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.17.40/blockStates.json") },
|
|
1389
1397
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.17.40/blockCollisionShapes.json") },
|
|
@@ -1407,6 +1415,7 @@ module.exports =
|
|
|
1407
1415
|
get blockLoot () { return require("./minecraft-data/data/bedrock/1.18.0/blockLoot.json") }
|
|
1408
1416
|
},
|
|
1409
1417
|
'1.18.11': {
|
|
1418
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1410
1419
|
get blocks () { return require("./minecraft-data/data/bedrock/1.18.11/blocks.json") },
|
|
1411
1420
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.18.11/blockStates.json") },
|
|
1412
1421
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.18.11/blockCollisionShapes.json") },
|
|
@@ -1428,6 +1437,7 @@ module.exports =
|
|
|
1428
1437
|
get version () { return require("./minecraft-data/data/bedrock/1.18.11/version.json") }
|
|
1429
1438
|
},
|
|
1430
1439
|
'1.18.30': {
|
|
1440
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1431
1441
|
get blocks () { return require("./minecraft-data/data/bedrock/1.18.30/blocks.json") },
|
|
1432
1442
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.18.30/blockStates.json") },
|
|
1433
1443
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.18.30/blockCollisionShapes.json") },
|
|
@@ -1449,6 +1459,7 @@ module.exports =
|
|
|
1449
1459
|
get version () { return require("./minecraft-data/data/bedrock/1.18.30/version.json") }
|
|
1450
1460
|
},
|
|
1451
1461
|
'1.19.1': {
|
|
1462
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1452
1463
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1453
1464
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1454
1465
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1471,6 +1482,7 @@ module.exports =
|
|
|
1471
1482
|
get version () { return require("./minecraft-data/data/bedrock/1.19.1/version.json") }
|
|
1472
1483
|
},
|
|
1473
1484
|
'1.19.10': {
|
|
1485
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1474
1486
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1475
1487
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1476
1488
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1492,6 +1504,7 @@ module.exports =
|
|
|
1492
1504
|
get version () { return require("./minecraft-data/data/bedrock/1.19.10/version.json") }
|
|
1493
1505
|
},
|
|
1494
1506
|
'1.19.20': {
|
|
1507
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1495
1508
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1496
1509
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1497
1510
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1513,6 +1526,7 @@ module.exports =
|
|
|
1513
1526
|
get version () { return require("./minecraft-data/data/bedrock/1.19.20/version.json") }
|
|
1514
1527
|
},
|
|
1515
1528
|
'1.19.21': {
|
|
1529
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1516
1530
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1517
1531
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1518
1532
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1534,6 +1548,7 @@ module.exports =
|
|
|
1534
1548
|
get version () { return require("./minecraft-data/data/bedrock/1.19.21/version.json") }
|
|
1535
1549
|
},
|
|
1536
1550
|
'1.19.30': {
|
|
1551
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1537
1552
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1538
1553
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1539
1554
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1555,6 +1570,7 @@ module.exports =
|
|
|
1555
1570
|
get version () { return require("./minecraft-data/data/bedrock/1.19.30/version.json") }
|
|
1556
1571
|
},
|
|
1557
1572
|
'1.19.40': {
|
|
1573
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1558
1574
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1559
1575
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1560
1576
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1576,6 +1592,7 @@ module.exports =
|
|
|
1576
1592
|
get version () { return require("./minecraft-data/data/bedrock/1.19.40/version.json") }
|
|
1577
1593
|
},
|
|
1578
1594
|
'1.19.50': {
|
|
1595
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1579
1596
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1580
1597
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1581
1598
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1597,6 +1614,7 @@ module.exports =
|
|
|
1597
1614
|
get version () { return require("./minecraft-data/data/bedrock/1.19.50/version.json") }
|
|
1598
1615
|
},
|
|
1599
1616
|
'1.19.60': {
|
|
1617
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1600
1618
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1601
1619
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1602
1620
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1618,6 +1636,7 @@ module.exports =
|
|
|
1618
1636
|
get version () { return require("./minecraft-data/data/bedrock/1.19.60/version.json") }
|
|
1619
1637
|
},
|
|
1620
1638
|
'1.19.62': {
|
|
1639
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1621
1640
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1622
1641
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1623
1642
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
|
@@ -1639,6 +1658,7 @@ module.exports =
|
|
|
1639
1658
|
get version () { return require("./minecraft-data/data/bedrock/1.19.62/version.json") }
|
|
1640
1659
|
},
|
|
1641
1660
|
'1.19.63': {
|
|
1661
|
+
get attributes () { return require("./minecraft-data/data/bedrock/1.16.201/attributes.json") },
|
|
1642
1662
|
get blocks () { return require("./minecraft-data/data/bedrock/1.19.1/blocks.json") },
|
|
1643
1663
|
get blockStates () { return require("./minecraft-data/data/bedrock/1.19.1/blockStates.json") },
|
|
1644
1664
|
get blockCollisionShapes () { return require("./minecraft-data/data/bedrock/1.19.1/blockCollisionShapes.json") },
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -11,6 +11,18 @@ declare namespace MinecraftData {
|
|
|
11
11
|
* The name of an attribute
|
|
12
12
|
*/
|
|
13
13
|
name: string;
|
|
14
|
+
/**
|
|
15
|
+
* The minimum value of an attribute
|
|
16
|
+
*/
|
|
17
|
+
min: number;
|
|
18
|
+
/**
|
|
19
|
+
* The maximum value of an attribute
|
|
20
|
+
*/
|
|
21
|
+
max: number;
|
|
22
|
+
/**
|
|
23
|
+
* The default value of an attribute
|
|
24
|
+
*/
|
|
25
|
+
default: number;
|
|
14
26
|
}
|
|
15
27
|
|
|
16
28
|
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "followRange",
|
|
4
|
+
"resource": "generic.follow_range",
|
|
5
|
+
"default": 32,
|
|
6
|
+
"min": 0,
|
|
7
|
+
"max": 2048
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "knockbackResistance",
|
|
11
|
+
"resource": "generic.knockback_resistance",
|
|
12
|
+
"default": 0,
|
|
13
|
+
"min": 0,
|
|
14
|
+
"max": 1
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "movementSpeed",
|
|
18
|
+
"resource": "generic.movement_speed",
|
|
19
|
+
"default": 0.7,
|
|
20
|
+
"min": 0,
|
|
21
|
+
"max": 1024
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "attackDamage",
|
|
25
|
+
"resource": "generic.attack_damage",
|
|
26
|
+
"default": 2,
|
|
27
|
+
"min": 0,
|
|
28
|
+
"max": 2048
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "horseJumpStrength",
|
|
32
|
+
"resource": "horse.jump_strength",
|
|
33
|
+
"default": 0.7,
|
|
34
|
+
"min": 0,
|
|
35
|
+
"max": 2
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "zombieSpawnReinforcements",
|
|
39
|
+
"resource": "zombie.spawn_reinforcements",
|
|
40
|
+
"default": 0,
|
|
41
|
+
"min": 0,
|
|
42
|
+
"max": 1
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "flyingSpeed",
|
|
46
|
+
"resource": "generic.flying_speed",
|
|
47
|
+
"default": 0.4,
|
|
48
|
+
"min": 0,
|
|
49
|
+
"max": 1024
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "luck",
|
|
53
|
+
"resource": "generic.luck",
|
|
54
|
+
"default": 0,
|
|
55
|
+
"min": -1024,
|
|
56
|
+
"max": 1024
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "health",
|
|
60
|
+
"resource": "health",
|
|
61
|
+
"default": 20,
|
|
62
|
+
"min": 0,
|
|
63
|
+
"max": 20
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "absorption",
|
|
67
|
+
"resource": "absorption",
|
|
68
|
+
"default": 0,
|
|
69
|
+
"min": 0,
|
|
70
|
+
"max": 1024
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "exhaustion",
|
|
74
|
+
"resource": "player.exhaustion",
|
|
75
|
+
"default": 0,
|
|
76
|
+
"min": 0,
|
|
77
|
+
"max": 5
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "experienceProgress",
|
|
81
|
+
"resource": "player.experience",
|
|
82
|
+
"default": 0,
|
|
83
|
+
"min": 0,
|
|
84
|
+
"max": 1
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "experienceLevel",
|
|
88
|
+
"resource": "player.level",
|
|
89
|
+
"default": 0,
|
|
90
|
+
"min": 0,
|
|
91
|
+
"max": 24791
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "hunger",
|
|
95
|
+
"resource": "player.hunger",
|
|
96
|
+
"default": 20,
|
|
97
|
+
"min": 0,
|
|
98
|
+
"max": 20
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "saturation",
|
|
102
|
+
"resource": "player.saturation",
|
|
103
|
+
"default": 20,
|
|
104
|
+
"min": 0,
|
|
105
|
+
"max": 20
|
|
106
|
+
}
|
|
107
|
+
]
|
|
@@ -1332,7 +1332,7 @@ packet_available_commands:
|
|
|
1332
1332
|
# The list of overload parameters for this command
|
|
1333
1333
|
overloads: []varint
|
|
1334
1334
|
# Each of the parameters gets an array of posible overloads
|
|
1335
|
-
|
|
1335
|
+
parameters: []varint
|
|
1336
1336
|
# The name of the parameter shown to the user (the `amount` in `/xp <amount: int>`)
|
|
1337
1337
|
parameter_name: string
|
|
1338
1338
|
value_type: lu16 =>
|
|
@@ -1352,9 +1352,9 @@ packet_available_commands:
|
|
|
1352
1352
|
# In MC, this + prior field are combined to one 32bit bitfield
|
|
1353
1353
|
enum_type: lu16 =>
|
|
1354
1354
|
0x10: valid
|
|
1355
|
-
|
|
1355
|
+
0x30: enum
|
|
1356
1356
|
0x100: suffixed
|
|
1357
|
-
|
|
1357
|
+
0x410: soft_enum
|
|
1358
1358
|
# Is this parameter required?
|
|
1359
1359
|
optional: bool
|
|
1360
1360
|
# Additinal options for this command (thanks macroshaft...)
|
|
@@ -5376,66 +5376,74 @@
|
|
|
5376
5376
|
{
|
|
5377
5377
|
"countType": "varint",
|
|
5378
5378
|
"type": [
|
|
5379
|
-
"
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
"
|
|
5384
|
-
|
|
5385
|
-
{
|
|
5386
|
-
"name": "parameter_name",
|
|
5387
|
-
"type": "string"
|
|
5388
|
-
},
|
|
5389
|
-
{
|
|
5390
|
-
"name": "value_type",
|
|
5391
|
-
"type": [
|
|
5392
|
-
"mapper",
|
|
5393
|
-
{
|
|
5394
|
-
"type": "lu16",
|
|
5395
|
-
"mappings": {
|
|
5396
|
-
"1": "int",
|
|
5397
|
-
"2": "float",
|
|
5398
|
-
"3": "value",
|
|
5399
|
-
"4": "wildcard_int",
|
|
5400
|
-
"5": "operator",
|
|
5401
|
-
"6": "target",
|
|
5402
|
-
"14": "file_path",
|
|
5403
|
-
"29": "string",
|
|
5404
|
-
"37": "position",
|
|
5405
|
-
"41": "message",
|
|
5406
|
-
"43": "raw_text",
|
|
5407
|
-
"46": "json",
|
|
5408
|
-
"53": "command"
|
|
5409
|
-
}
|
|
5410
|
-
}
|
|
5411
|
-
]
|
|
5412
|
-
},
|
|
5379
|
+
"container",
|
|
5380
|
+
[
|
|
5381
|
+
{
|
|
5382
|
+
"name": "parameters",
|
|
5383
|
+
"type": [
|
|
5384
|
+
"array",
|
|
5413
5385
|
{
|
|
5414
|
-
"
|
|
5386
|
+
"countType": "varint",
|
|
5415
5387
|
"type": [
|
|
5416
|
-
"
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
"
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
"
|
|
5388
|
+
"container",
|
|
5389
|
+
[
|
|
5390
|
+
{
|
|
5391
|
+
"name": "parameter_name",
|
|
5392
|
+
"type": "string"
|
|
5393
|
+
},
|
|
5394
|
+
{
|
|
5395
|
+
"name": "value_type",
|
|
5396
|
+
"type": [
|
|
5397
|
+
"mapper",
|
|
5398
|
+
{
|
|
5399
|
+
"type": "lu16",
|
|
5400
|
+
"mappings": {
|
|
5401
|
+
"1": "int",
|
|
5402
|
+
"2": "float",
|
|
5403
|
+
"3": "value",
|
|
5404
|
+
"4": "wildcard_int",
|
|
5405
|
+
"5": "operator",
|
|
5406
|
+
"6": "target",
|
|
5407
|
+
"14": "file_path",
|
|
5408
|
+
"29": "string",
|
|
5409
|
+
"37": "position",
|
|
5410
|
+
"41": "message",
|
|
5411
|
+
"43": "raw_text",
|
|
5412
|
+
"46": "json",
|
|
5413
|
+
"53": "command"
|
|
5414
|
+
}
|
|
5415
|
+
}
|
|
5416
|
+
]
|
|
5417
|
+
},
|
|
5418
|
+
{
|
|
5419
|
+
"name": "enum_type",
|
|
5420
|
+
"type": [
|
|
5421
|
+
"mapper",
|
|
5422
|
+
{
|
|
5423
|
+
"type": "lu16",
|
|
5424
|
+
"mappings": {
|
|
5425
|
+
"16": "valid",
|
|
5426
|
+
"48": "enum",
|
|
5427
|
+
"256": "suffixed",
|
|
5428
|
+
"1040": "soft_enum"
|
|
5429
|
+
}
|
|
5430
|
+
}
|
|
5431
|
+
]
|
|
5432
|
+
},
|
|
5433
|
+
{
|
|
5434
|
+
"name": "optional",
|
|
5435
|
+
"type": "bool"
|
|
5436
|
+
},
|
|
5437
|
+
{
|
|
5438
|
+
"name": "options",
|
|
5439
|
+
"type": "CommandFlags"
|
|
5424
5440
|
}
|
|
5425
|
-
|
|
5441
|
+
]
|
|
5426
5442
|
]
|
|
5427
|
-
},
|
|
5428
|
-
{
|
|
5429
|
-
"name": "optional",
|
|
5430
|
-
"type": "bool"
|
|
5431
|
-
},
|
|
5432
|
-
{
|
|
5433
|
-
"name": "options",
|
|
5434
|
-
"type": "CommandFlags"
|
|
5435
5443
|
}
|
|
5436
5444
|
]
|
|
5437
|
-
|
|
5438
|
-
|
|
5445
|
+
}
|
|
5446
|
+
]
|
|
5439
5447
|
]
|
|
5440
5448
|
}
|
|
5441
5449
|
]
|
|
@@ -1371,7 +1371,7 @@ packet_available_commands:
|
|
|
1371
1371
|
# The list of overload parameters for this command
|
|
1372
1372
|
overloads: []varint
|
|
1373
1373
|
# Each of the parameters gets an array of posible overloads
|
|
1374
|
-
|
|
1374
|
+
parameters: []varint
|
|
1375
1375
|
# The name of the parameter shown to the user (the `amount` in `/xp <amount: int>`)
|
|
1376
1376
|
parameter_name: string
|
|
1377
1377
|
value_type: lu16 =>
|
|
@@ -1391,9 +1391,9 @@ packet_available_commands:
|
|
|
1391
1391
|
# In MC, this + prior field are combined to one 32bit bitfield
|
|
1392
1392
|
enum_type: lu16 =>
|
|
1393
1393
|
0x10: valid
|
|
1394
|
-
|
|
1394
|
+
0x30: enum
|
|
1395
1395
|
0x100: suffixed
|
|
1396
|
-
|
|
1396
|
+
0x410: soft_enum
|
|
1397
1397
|
# Is this parameter required?
|
|
1398
1398
|
optional: bool
|
|
1399
1399
|
# Additinal options for this command (thanks macroshaft...)
|
|
@@ -2588,4 +2588,4 @@ packet_debug_renderer:
|
|
|
2588
2588
|
# Alpha is the alpha value from the RGBA colour rendered on the debug.
|
|
2589
2589
|
alpha: lf32
|
|
2590
2590
|
# Duration is how long the debug will last in the world for. It is measured in milliseconds.
|
|
2591
|
-
duration: li64
|
|
2591
|
+
duration: li64
|
|
@@ -5547,66 +5547,74 @@
|
|
|
5547
5547
|
{
|
|
5548
5548
|
"countType": "varint",
|
|
5549
5549
|
"type": [
|
|
5550
|
-
"
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
"
|
|
5555
|
-
|
|
5556
|
-
{
|
|
5557
|
-
"name": "parameter_name",
|
|
5558
|
-
"type": "string"
|
|
5559
|
-
},
|
|
5560
|
-
{
|
|
5561
|
-
"name": "value_type",
|
|
5562
|
-
"type": [
|
|
5563
|
-
"mapper",
|
|
5564
|
-
{
|
|
5565
|
-
"type": "lu16",
|
|
5566
|
-
"mappings": {
|
|
5567
|
-
"1": "int",
|
|
5568
|
-
"2": "float",
|
|
5569
|
-
"3": "value",
|
|
5570
|
-
"4": "wildcard_int",
|
|
5571
|
-
"5": "operator",
|
|
5572
|
-
"6": "target",
|
|
5573
|
-
"16": "file_path",
|
|
5574
|
-
"32": "string",
|
|
5575
|
-
"40": "position",
|
|
5576
|
-
"44": "message",
|
|
5577
|
-
"46": "raw_text",
|
|
5578
|
-
"50": "json",
|
|
5579
|
-
"63": "command"
|
|
5580
|
-
}
|
|
5581
|
-
}
|
|
5582
|
-
]
|
|
5583
|
-
},
|
|
5550
|
+
"container",
|
|
5551
|
+
[
|
|
5552
|
+
{
|
|
5553
|
+
"name": "parameters",
|
|
5554
|
+
"type": [
|
|
5555
|
+
"array",
|
|
5584
5556
|
{
|
|
5585
|
-
"
|
|
5557
|
+
"countType": "varint",
|
|
5586
5558
|
"type": [
|
|
5587
|
-
"
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
"
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
"
|
|
5559
|
+
"container",
|
|
5560
|
+
[
|
|
5561
|
+
{
|
|
5562
|
+
"name": "parameter_name",
|
|
5563
|
+
"type": "string"
|
|
5564
|
+
},
|
|
5565
|
+
{
|
|
5566
|
+
"name": "value_type",
|
|
5567
|
+
"type": [
|
|
5568
|
+
"mapper",
|
|
5569
|
+
{
|
|
5570
|
+
"type": "lu16",
|
|
5571
|
+
"mappings": {
|
|
5572
|
+
"1": "int",
|
|
5573
|
+
"2": "float",
|
|
5574
|
+
"3": "value",
|
|
5575
|
+
"4": "wildcard_int",
|
|
5576
|
+
"5": "operator",
|
|
5577
|
+
"6": "target",
|
|
5578
|
+
"16": "file_path",
|
|
5579
|
+
"32": "string",
|
|
5580
|
+
"40": "position",
|
|
5581
|
+
"44": "message",
|
|
5582
|
+
"46": "raw_text",
|
|
5583
|
+
"50": "json",
|
|
5584
|
+
"63": "command"
|
|
5585
|
+
}
|
|
5586
|
+
}
|
|
5587
|
+
]
|
|
5588
|
+
},
|
|
5589
|
+
{
|
|
5590
|
+
"name": "enum_type",
|
|
5591
|
+
"type": [
|
|
5592
|
+
"mapper",
|
|
5593
|
+
{
|
|
5594
|
+
"type": "lu16",
|
|
5595
|
+
"mappings": {
|
|
5596
|
+
"16": "valid",
|
|
5597
|
+
"48": "enum",
|
|
5598
|
+
"256": "suffixed",
|
|
5599
|
+
"1040": "soft_enum"
|
|
5600
|
+
}
|
|
5601
|
+
}
|
|
5602
|
+
]
|
|
5603
|
+
},
|
|
5604
|
+
{
|
|
5605
|
+
"name": "optional",
|
|
5606
|
+
"type": "bool"
|
|
5607
|
+
},
|
|
5608
|
+
{
|
|
5609
|
+
"name": "options",
|
|
5610
|
+
"type": "CommandFlags"
|
|
5595
5611
|
}
|
|
5596
|
-
|
|
5612
|
+
]
|
|
5597
5613
|
]
|
|
5598
|
-
},
|
|
5599
|
-
{
|
|
5600
|
-
"name": "optional",
|
|
5601
|
-
"type": "bool"
|
|
5602
|
-
},
|
|
5603
|
-
{
|
|
5604
|
-
"name": "options",
|
|
5605
|
-
"type": "CommandFlags"
|
|
5606
5614
|
}
|
|
5607
5615
|
]
|
|
5608
|
-
|
|
5609
|
-
|
|
5616
|
+
}
|
|
5617
|
+
]
|
|
5610
5618
|
]
|
|
5611
5619
|
}
|
|
5612
5620
|
]
|
|
@@ -1504,7 +1504,7 @@ packet_available_commands:
|
|
|
1504
1504
|
# The list of overload parameters for this command
|
|
1505
1505
|
overloads: []varint
|
|
1506
1506
|
# Each of the parameters gets an array of posible overloads
|
|
1507
|
-
|
|
1507
|
+
parameters: []varint
|
|
1508
1508
|
# The name of the parameter shown to the user (the `amount` in `/xp <amount: int>`)
|
|
1509
1509
|
parameter_name: string
|
|
1510
1510
|
value_type: lu16 =>
|
|
@@ -1524,9 +1524,9 @@ packet_available_commands:
|
|
|
1524
1524
|
# In MC, this + prior field are combined to one 32bit bitfield
|
|
1525
1525
|
enum_type: lu16 =>
|
|
1526
1526
|
0x10: valid
|
|
1527
|
-
|
|
1527
|
+
0x30: enum
|
|
1528
1528
|
0x100: suffixed
|
|
1529
|
-
|
|
1529
|
+
0x410: soft_enum
|
|
1530
1530
|
# Is this parameter required?
|
|
1531
1531
|
optional: bool
|
|
1532
1532
|
# Additinal options for this command (thanks macroshaft...)
|
|
@@ -3063,4 +3063,4 @@ packet_debug_renderer:
|
|
|
3063
3063
|
# Alpha is the alpha value from the RGBA colour rendered on the debug.
|
|
3064
3064
|
alpha: lf32
|
|
3065
3065
|
# Duration is how long the debug will last in the world for. It is measured in milliseconds.
|
|
3066
|
-
duration: li64
|
|
3066
|
+
duration: li64
|