minecraft-data 3.78.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 +55 -1
- package/doc/history.md +4 -0
- package/index.d.ts +3 -0
- package/minecraft-data/README.md +1 -1
- package/minecraft-data/data/dataPaths.json +55 -1
- package/minecraft-data/data/pc/1.20.5/proto.yml +5 -34
- package/minecraft-data/data/pc/1.20.5/protocol.json +26 -129
- 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/proto.yml +3534 -0
- package/minecraft-data/data/pc/1.21.1/protocol.json +55 -51
- 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 +5 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +80 -0
- package/minecraft-data/data/pc/common/versions.json +3 -2
- package/minecraft-data/data/pc/latest/proto.yml +444 -603
- package/minecraft-data/doc/history.md +14 -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
|
@@ -1451,8 +1451,35 @@ module.exports =
|
|
|
1451
1451
|
get sounds () { return require("./minecraft-data/data/pc/1.20.4/sounds.json") },
|
|
1452
1452
|
proto: __dirname + '/minecraft-data/data/pc/1.20.5/proto.yml'
|
|
1453
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
|
+
},
|
|
1454
1481
|
'1.21.1': {
|
|
1455
|
-
get attributes () { return require("./minecraft-data/data/pc/1.
|
|
1482
|
+
get attributes () { return require("./minecraft-data/data/pc/1.21.1/attributes.json") },
|
|
1456
1483
|
get blocks () { return require("./minecraft-data/data/pc/1.21.1/blocks.json") },
|
|
1457
1484
|
get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.20.5/blockCollisionShapes.json") },
|
|
1458
1485
|
get biomes () { return require("./minecraft-data/data/pc/1.20.5/biomes.json") },
|
|
@@ -1476,6 +1503,33 @@ module.exports =
|
|
|
1476
1503
|
get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
|
|
1477
1504
|
get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
|
|
1478
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") },
|
|
1479
1533
|
proto: __dirname + '/minecraft-data/data/pc/latest/proto.yml'
|
|
1480
1534
|
}
|
|
1481
1535
|
},
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1357,6 +1357,9 @@ declare namespace MinecraftData {
|
|
|
1357
1357
|
/** `1.21 - latest`
|
|
1358
1358
|
* The chat type field in the `player_chat` packet now starts at 1 instead of 0 */
|
|
1359
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;
|
|
1360
1363
|
}
|
|
1361
1364
|
|
|
1362
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), 1.21 (1.21.1)
|
|
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
|
|
|
@@ -1450,8 +1450,35 @@
|
|
|
1450
1450
|
"sounds": "pc/1.20.4",
|
|
1451
1451
|
"proto": "pc/1.20.5"
|
|
1452
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
|
+
},
|
|
1453
1480
|
"1.21.1": {
|
|
1454
|
-
"attributes": "pc/1.
|
|
1481
|
+
"attributes": "pc/1.21.1",
|
|
1455
1482
|
"blocks": "pc/1.21.1",
|
|
1456
1483
|
"blockCollisionShapes": "pc/1.20.5",
|
|
1457
1484
|
"biomes": "pc/1.20.5",
|
|
@@ -1475,6 +1502,33 @@
|
|
|
1475
1502
|
"mapIcons": "pc/1.20.2",
|
|
1476
1503
|
"commands": "pc/1.20.3",
|
|
1477
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",
|
|
1478
1532
|
"proto": "pc/latest"
|
|
1479
1533
|
}
|
|
1480
1534
|
},
|
|
@@ -95,7 +95,6 @@
|
|
|
95
95
|
- block_entity_data
|
|
96
96
|
- instrument
|
|
97
97
|
- ominous_bottle_amplifier
|
|
98
|
-
- jukebox_playable
|
|
99
98
|
- recipes
|
|
100
99
|
- lodestone_tracker
|
|
101
100
|
- firework_explosion
|
|
@@ -123,7 +122,11 @@
|
|
|
123
122
|
if custom_name: anonymousNbt
|
|
124
123
|
if item_name: anonymousNbt
|
|
125
124
|
if lore: anonOptionalNbt[]varint
|
|
126
|
-
if rarity: varint
|
|
125
|
+
if rarity: varint =>
|
|
126
|
+
- common
|
|
127
|
+
- uncommon
|
|
128
|
+
- rare
|
|
129
|
+
- epic
|
|
127
130
|
if enchantments:
|
|
128
131
|
enchantments: []varint
|
|
129
132
|
id: varint
|
|
@@ -330,38 +333,6 @@
|
|
|
330
333
|
useDuration: f32
|
|
331
334
|
range: f32
|
|
332
335
|
if ominous_bottle_amplifier: varint
|
|
333
|
-
# Name Type Description
|
|
334
|
-
# Direct Mode Boolean Whether the jukebox song is specified directly, or just referenced by name.
|
|
335
|
-
# Jukebox Song Name Optional Identifier The name of the jukebox song in its respective registry. Only present if Direct Mode is false.
|
|
336
|
-
# Jukebox Song Type Optional VarInt Identifier used to determine the data that follows. It can be either:
|
|
337
|
-
# 0 - Directly represents a jukebox song, with the necessary data following.
|
|
338
|
-
# Anything else - References a jukebox song in its registry, by the ID of Jukebox Song Type - 1.
|
|
339
|
-
# Only present if Direct Mode is true.
|
|
340
|
-
# Sound Event Optional Sound Event The sound to be played. Only present if Direct Mode is true and Jukebox Song Type is 0.
|
|
341
|
-
# Description Optional Text Component The description shown in the item lore. Only present if Direct Mode is true and Jukebox Song Type is 0.
|
|
342
|
-
# Duration Optional Float The duration the songs should play for, in seconds. Only present if Direct Mode is true and Jukebox Song Type is 0.
|
|
343
|
-
# Output Optional VarInt The output strength given by a comparator. Between 0 and 15. Only present if Direct Mode is true and Jukebox Song Type is 0.
|
|
344
|
-
# Show In Tooltip Boolean Whether the song should be shown on the item's tooltip.
|
|
345
|
-
if jukebox_playable:
|
|
346
|
-
directMode: bool
|
|
347
|
-
_: directMode ?
|
|
348
|
-
if true:
|
|
349
|
-
jukeboxSongName: string
|
|
350
|
-
jukeboxSongType: varint
|
|
351
|
-
_: jukeboxSongType ?
|
|
352
|
-
if 0:
|
|
353
|
-
soundEvent:
|
|
354
|
-
soundEventType: varint
|
|
355
|
-
_: soundEventType ?
|
|
356
|
-
if 0:
|
|
357
|
-
soundName: string
|
|
358
|
-
fixedRange?: f32
|
|
359
|
-
description: anonymousNbt
|
|
360
|
-
duration: f32
|
|
361
|
-
output: varint
|
|
362
|
-
if false:
|
|
363
|
-
songLocation: string
|
|
364
|
-
showInTooltip: bool
|
|
365
336
|
if recipes: anonymousNbt
|
|
366
337
|
# Name Type Description
|
|
367
338
|
# Has Global Position Boolean Whether this lodestone points to a position, otherwise it spins randomly.
|
|
@@ -143,21 +143,20 @@
|
|
|
143
143
|
"39": "block_entity_data",
|
|
144
144
|
"40": "instrument",
|
|
145
145
|
"41": "ominous_bottle_amplifier",
|
|
146
|
-
"42": "
|
|
147
|
-
"43": "
|
|
148
|
-
"44": "
|
|
149
|
-
"45": "
|
|
150
|
-
"46": "
|
|
151
|
-
"47": "
|
|
152
|
-
"48": "
|
|
153
|
-
"49": "
|
|
154
|
-
"50": "
|
|
155
|
-
"51": "
|
|
156
|
-
"52": "
|
|
157
|
-
"53": "
|
|
158
|
-
"54": "
|
|
159
|
-
"55": "
|
|
160
|
-
"56": "container_loot"
|
|
146
|
+
"42": "recipes",
|
|
147
|
+
"43": "lodestone_tracker",
|
|
148
|
+
"44": "firework_explosion",
|
|
149
|
+
"45": "fireworks",
|
|
150
|
+
"46": "profile",
|
|
151
|
+
"47": "note_block_sound",
|
|
152
|
+
"48": "banner_patterns",
|
|
153
|
+
"49": "base_color",
|
|
154
|
+
"50": "pot_decorations",
|
|
155
|
+
"51": "container",
|
|
156
|
+
"52": "block_state",
|
|
157
|
+
"53": "bees",
|
|
158
|
+
"54": "lock",
|
|
159
|
+
"55": "container_loot"
|
|
161
160
|
}
|
|
162
161
|
}
|
|
163
162
|
],
|
|
@@ -189,7 +188,18 @@
|
|
|
189
188
|
"type": "anonOptionalNbt"
|
|
190
189
|
}
|
|
191
190
|
],
|
|
192
|
-
"rarity":
|
|
191
|
+
"rarity": [
|
|
192
|
+
"mapper",
|
|
193
|
+
{
|
|
194
|
+
"type": "varint",
|
|
195
|
+
"mappings": {
|
|
196
|
+
"0": "common",
|
|
197
|
+
"1": "uncommon",
|
|
198
|
+
"2": "rare",
|
|
199
|
+
"3": "epic"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
],
|
|
193
203
|
"enchantments": [
|
|
194
204
|
"container",
|
|
195
205
|
[
|
|
@@ -791,119 +801,6 @@
|
|
|
791
801
|
]
|
|
792
802
|
],
|
|
793
803
|
"ominous_bottle_amplifier": "varint",
|
|
794
|
-
"jukebox_playable": [
|
|
795
|
-
"container",
|
|
796
|
-
[
|
|
797
|
-
{
|
|
798
|
-
"name": "directMode",
|
|
799
|
-
"type": "bool"
|
|
800
|
-
},
|
|
801
|
-
{
|
|
802
|
-
"anon": true,
|
|
803
|
-
"type": [
|
|
804
|
-
"switch",
|
|
805
|
-
{
|
|
806
|
-
"compareTo": "directMode",
|
|
807
|
-
"fields": {
|
|
808
|
-
"true": [
|
|
809
|
-
"container",
|
|
810
|
-
[
|
|
811
|
-
{
|
|
812
|
-
"name": "jukeboxSongName",
|
|
813
|
-
"type": "string"
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"name": "jukeboxSongType",
|
|
817
|
-
"type": "varint"
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"anon": true,
|
|
821
|
-
"type": [
|
|
822
|
-
"switch",
|
|
823
|
-
{
|
|
824
|
-
"compareTo": "jukeboxSongType",
|
|
825
|
-
"fields": {
|
|
826
|
-
"0": [
|
|
827
|
-
"container",
|
|
828
|
-
[
|
|
829
|
-
{
|
|
830
|
-
"name": "soundEvent",
|
|
831
|
-
"type": [
|
|
832
|
-
"container",
|
|
833
|
-
[
|
|
834
|
-
{
|
|
835
|
-
"name": "soundEventType",
|
|
836
|
-
"type": "varint"
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
"anon": true,
|
|
840
|
-
"type": [
|
|
841
|
-
"switch",
|
|
842
|
-
{
|
|
843
|
-
"compareTo": "soundEventType",
|
|
844
|
-
"fields": {
|
|
845
|
-
"0": [
|
|
846
|
-
"container",
|
|
847
|
-
[
|
|
848
|
-
{
|
|
849
|
-
"name": "soundName",
|
|
850
|
-
"type": "string"
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"name": "fixedRange",
|
|
854
|
-
"type": [
|
|
855
|
-
"option",
|
|
856
|
-
"f32"
|
|
857
|
-
]
|
|
858
|
-
}
|
|
859
|
-
]
|
|
860
|
-
]
|
|
861
|
-
}
|
|
862
|
-
}
|
|
863
|
-
]
|
|
864
|
-
}
|
|
865
|
-
]
|
|
866
|
-
]
|
|
867
|
-
}
|
|
868
|
-
]
|
|
869
|
-
]
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
]
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"name": "description",
|
|
876
|
-
"type": "anonymousNbt"
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"name": "duration",
|
|
880
|
-
"type": "f32"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"name": "output",
|
|
884
|
-
"type": "varint"
|
|
885
|
-
}
|
|
886
|
-
]
|
|
887
|
-
],
|
|
888
|
-
"false": [
|
|
889
|
-
"container",
|
|
890
|
-
[
|
|
891
|
-
{
|
|
892
|
-
"name": "songLocation",
|
|
893
|
-
"type": "string"
|
|
894
|
-
}
|
|
895
|
-
]
|
|
896
|
-
]
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
]
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
"name": "showInTooltip",
|
|
903
|
-
"type": "bool"
|
|
904
|
-
}
|
|
905
|
-
]
|
|
906
|
-
],
|
|
907
804
|
"recipes": "anonymousNbt",
|
|
908
805
|
"lodestone_tracker": [
|
|
909
806
|
"container",
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "armor",
|
|
4
|
+
"resource": "minecraft:generic.armor",
|
|
5
|
+
"min": 0.0,
|
|
6
|
+
"max": 30.0,
|
|
7
|
+
"default": 0.0
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "armorToughness",
|
|
11
|
+
"resource": "minecraft:generic.armor_toughness",
|
|
12
|
+
"min": 0.0,
|
|
13
|
+
"max": 20.0,
|
|
14
|
+
"default": 0.0
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "attackDamage",
|
|
18
|
+
"resource": "minecraft:generic.attack_damage",
|
|
19
|
+
"min": 0.0,
|
|
20
|
+
"max": 2048.0,
|
|
21
|
+
"default": 2.0
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "attackKnockback",
|
|
25
|
+
"resource": "minecraft:generic.attack_knockback",
|
|
26
|
+
"min": 0.0,
|
|
27
|
+
"max": 5.0,
|
|
28
|
+
"default": 0.0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "attackSpeed",
|
|
32
|
+
"resource": "minecraft:generic.attack_speed",
|
|
33
|
+
"min": 0.0,
|
|
34
|
+
"max": 1024.0,
|
|
35
|
+
"default": 4.0
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "playerBlockBreakSpeed",
|
|
39
|
+
"resource": "minecraft:player.block_break_speed",
|
|
40
|
+
"min": 0.0,
|
|
41
|
+
"max": 1024.0,
|
|
42
|
+
"default": 1.0
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "playerBlockInteractionRange",
|
|
46
|
+
"resource": "minecraft:player.block_interaction_range",
|
|
47
|
+
"min": 0.0,
|
|
48
|
+
"max": 64.0,
|
|
49
|
+
"default": 4.5
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "burningTime",
|
|
53
|
+
"resource": "minecraft:generic.burning_time",
|
|
54
|
+
"min": 0.0,
|
|
55
|
+
"max": 1024.0,
|
|
56
|
+
"default": 1.0
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "explosionKnockbackResistance",
|
|
60
|
+
"resource": "minecraft:generic.explosion_knockback_resistance",
|
|
61
|
+
"min": 0.0,
|
|
62
|
+
"max": 1.0,
|
|
63
|
+
"default": 0.0
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "playerEntityInteractionRange",
|
|
67
|
+
"resource": "minecraft:player.entity_interaction_range",
|
|
68
|
+
"min": 0.0,
|
|
69
|
+
"max": 64.0,
|
|
70
|
+
"default": 3.0
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "fallDamageMultiplier",
|
|
74
|
+
"resource": "minecraft:generic.fall_damage_multiplier",
|
|
75
|
+
"min": 0.0,
|
|
76
|
+
"max": 100.0,
|
|
77
|
+
"default": 1.0
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "flyingSpeed",
|
|
81
|
+
"resource": "minecraft:generic.flying_speed",
|
|
82
|
+
"min": 0.0,
|
|
83
|
+
"max": 1024.0,
|
|
84
|
+
"default": 0.4
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "followRange",
|
|
88
|
+
"resource": "minecraft:generic.follow_range",
|
|
89
|
+
"min": 0.0,
|
|
90
|
+
"max": 2048.0,
|
|
91
|
+
"default": 32.0
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "gravity",
|
|
95
|
+
"resource": "minecraft:generic.gravity",
|
|
96
|
+
"min": -1.0,
|
|
97
|
+
"max": 1.0,
|
|
98
|
+
"default": 0.08
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "jumpStrength",
|
|
102
|
+
"resource": "minecraft:generic.jump_strength",
|
|
103
|
+
"min": 0.0,
|
|
104
|
+
"max": 32.0,
|
|
105
|
+
"default": 0.41999998688697815
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "knockbackResistance",
|
|
109
|
+
"resource": "minecraft:generic.knockback_resistance",
|
|
110
|
+
"min": 0.0,
|
|
111
|
+
"max": 1.0,
|
|
112
|
+
"default": 0.0
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "luck",
|
|
116
|
+
"resource": "minecraft:generic.luck",
|
|
117
|
+
"min": -1024.0,
|
|
118
|
+
"max": 1024.0,
|
|
119
|
+
"default": 0.0
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "maxAbsorption",
|
|
123
|
+
"resource": "minecraft:generic.max_absorption",
|
|
124
|
+
"min": 0.0,
|
|
125
|
+
"max": 2048.0,
|
|
126
|
+
"default": 0.0
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "maxHealth",
|
|
130
|
+
"resource": "minecraft:generic.max_health",
|
|
131
|
+
"min": 1.0,
|
|
132
|
+
"max": 1024.0,
|
|
133
|
+
"default": 20.0
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "playerMiningEfficiency",
|
|
137
|
+
"resource": "minecraft:player.mining_efficiency",
|
|
138
|
+
"min": 0.0,
|
|
139
|
+
"max": 1024.0,
|
|
140
|
+
"default": 0.0
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "movementEfficiency",
|
|
144
|
+
"resource": "minecraft:generic.movement_efficiency",
|
|
145
|
+
"min": 0.0,
|
|
146
|
+
"max": 1.0,
|
|
147
|
+
"default": 0.0
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "movementSpeed",
|
|
151
|
+
"resource": "minecraft:generic.movement_speed",
|
|
152
|
+
"min": 0.0,
|
|
153
|
+
"max": 1024.0,
|
|
154
|
+
"default": 0.7
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "oxygenBonus",
|
|
158
|
+
"resource": "minecraft:generic.oxygen_bonus",
|
|
159
|
+
"min": 0.0,
|
|
160
|
+
"max": 1024.0,
|
|
161
|
+
"default": 0.0
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "safeFallDistance",
|
|
165
|
+
"resource": "minecraft:generic.safe_fall_distance",
|
|
166
|
+
"min": -1024.0,
|
|
167
|
+
"max": 1024.0,
|
|
168
|
+
"default": 3.0
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "scale",
|
|
172
|
+
"resource": "minecraft:generic.scale",
|
|
173
|
+
"min": 0.0625,
|
|
174
|
+
"max": 16.0,
|
|
175
|
+
"default": 1.0
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "playerSneakingSpeed",
|
|
179
|
+
"resource": "minecraft:player.sneaking_speed",
|
|
180
|
+
"min": 0.0,
|
|
181
|
+
"max": 1.0,
|
|
182
|
+
"default": 0.3
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "zombieSpawnReinforcements",
|
|
186
|
+
"resource": "minecraft:zombie.spawn_reinforcements",
|
|
187
|
+
"min": 0.0,
|
|
188
|
+
"max": 1.0,
|
|
189
|
+
"default": 0.0
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "stepHeight",
|
|
193
|
+
"resource": "minecraft:generic.step_height",
|
|
194
|
+
"min": 0.0,
|
|
195
|
+
"max": 10.0,
|
|
196
|
+
"default": 0.6
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "playerSubmergedMiningSpeed",
|
|
200
|
+
"resource": "minecraft:player.submerged_mining_speed",
|
|
201
|
+
"min": 0.0,
|
|
202
|
+
"max": 20.0,
|
|
203
|
+
"default": 0.2
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "playerSweepingDamageRatio",
|
|
207
|
+
"resource": "minecraft:player.sweeping_damage_ratio",
|
|
208
|
+
"min": 0.0,
|
|
209
|
+
"max": 1.0,
|
|
210
|
+
"default": 0.0
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "waterMovementEfficiency",
|
|
214
|
+
"resource": "minecraft:generic.water_movement_efficiency",
|
|
215
|
+
"min": 0.0,
|
|
216
|
+
"max": 1.0,
|
|
217
|
+
"default": 0.0
|
|
218
|
+
}
|
|
219
|
+
]
|