minecraft-data 3.56.0 → 3.58.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 +2 -2
- package/doc/history.md +8 -0
- package/index.d.ts +23 -20
- package/minecraft-data/data/dataPaths.json +2 -2
- package/minecraft-data/data/pc/1.20/loginPacket.json +8400 -0
- package/minecraft-data/data/pc/common/features.json +25 -20
- package/minecraft-data/doc/history.md +6 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1222,7 +1222,7 @@ module.exports =
|
|
|
1222
1222
|
get particles () { return require("./minecraft-data/data/pc/1.20/particles.json") },
|
|
1223
1223
|
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1224
1224
|
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1225
|
-
get loginPacket () { return require("./minecraft-data/data/pc/1.
|
|
1225
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.20/loginPacket.json") },
|
|
1226
1226
|
get tints () { return require("./minecraft-data/data/pc/1.20/tints.json") },
|
|
1227
1227
|
get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
|
|
1228
1228
|
},
|
|
@@ -1246,7 +1246,7 @@ module.exports =
|
|
|
1246
1246
|
get particles () { return require("./minecraft-data/data/pc/1.20/particles.json") },
|
|
1247
1247
|
get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
|
|
1248
1248
|
get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
|
|
1249
|
-
get loginPacket () { return require("./minecraft-data/data/pc/1.
|
|
1249
|
+
get loginPacket () { return require("./minecraft-data/data/pc/1.20/loginPacket.json") },
|
|
1250
1250
|
get tints () { return require("./minecraft-data/data/pc/1.20/tints.json") },
|
|
1251
1251
|
get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
|
|
1252
1252
|
},
|
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1049,6 +1049,9 @@ declare namespace MinecraftData {
|
|
|
1049
1049
|
/** `1.8 - 1.8.9`
|
|
1050
1050
|
* doesn't have an off-hand slot */
|
|
1051
1051
|
"doesntHaveOffHandSlot": boolean;
|
|
1052
|
+
/** `1.16 - latest`
|
|
1053
|
+
* multi block changes has trust edges field */
|
|
1054
|
+
"multiBlockChangeHasTrustEdges": boolean;
|
|
1052
1055
|
/** `1.8 - 1.15.2`
|
|
1053
1056
|
* dimension is an int (the index of an enum) */
|
|
1054
1057
|
"dimensionIsAnInt": boolean;
|
|
@@ -1154,70 +1157,70 @@ declare namespace MinecraftData {
|
|
|
1154
1157
|
/** `1.16 - latest`
|
|
1155
1158
|
* undefined */
|
|
1156
1159
|
"netherUpdateInventoryWindows": boolean;
|
|
1157
|
-
/** `1.8 - 1.8`
|
|
1160
|
+
/** `1.8 - 1.8.9`
|
|
1158
1161
|
* Chunk unloading is done by sending an empty chunk */
|
|
1159
1162
|
"unloadChunkByEmptyChunk": boolean;
|
|
1160
|
-
/** `1.9 -
|
|
1163
|
+
/** `1.9 - latest`
|
|
1161
1164
|
* Chunk unloading is done by sending directly an unload chunk packet */
|
|
1162
1165
|
"unloadChunkDirect": boolean;
|
|
1163
|
-
/** `1.8 - 1.10`
|
|
1166
|
+
/** `1.8 - 1.10.2`
|
|
1164
1167
|
* entity names are in camel case */
|
|
1165
1168
|
"entityCamelCase": boolean;
|
|
1166
|
-
/** `1.11 -
|
|
1169
|
+
/** `1.11 - latest`
|
|
1167
1170
|
* entity name are in snake case */
|
|
1168
1171
|
"entitySnakeCase": boolean;
|
|
1169
|
-
/** `1.8 - 1.8`
|
|
1172
|
+
/** `1.8 - 1.8.9`
|
|
1170
1173
|
* respawn field is payload */
|
|
1171
1174
|
"respawnIsPayload": boolean;
|
|
1172
|
-
/** `1.9 -
|
|
1175
|
+
/** `1.9 - latest`
|
|
1173
1176
|
* respawn field is action id */
|
|
1174
1177
|
"respawnIsActionId": boolean;
|
|
1175
|
-
/** `1.8 - 1.8`
|
|
1178
|
+
/** `1.8 - 1.8.9`
|
|
1176
1179
|
* attach is used to stack entities */
|
|
1177
1180
|
"attachStackEntity": boolean;
|
|
1178
|
-
/** `1.9 -
|
|
1181
|
+
/** `1.9 - latest`
|
|
1179
1182
|
* set passengers is used to stack entities */
|
|
1180
1183
|
"setPassengerStackEntity": boolean;
|
|
1181
|
-
/** `1.13 -
|
|
1184
|
+
/** `1.13 - latest`
|
|
1182
1185
|
* many items got merged, separated or renamed */
|
|
1183
1186
|
"theFlattening": boolean;
|
|
1184
|
-
/** `1.8 - 1.10`
|
|
1187
|
+
/** `1.8 - 1.10.2`
|
|
1185
1188
|
* block_place packet has int cursor */
|
|
1186
1189
|
"blockPlaceHasIntCursor": boolean;
|
|
1187
|
-
/** `1.14 -
|
|
1190
|
+
/** `1.14 - latest`
|
|
1188
1191
|
* the client's chunk position must be updated to render chunks correctly */
|
|
1189
1192
|
"updateViewPosition": boolean;
|
|
1190
1193
|
/** `1.14 - latest`
|
|
1191
1194
|
* chunk light data is sent in a separate packet */
|
|
1192
1195
|
"lightSentSeparately": boolean;
|
|
1193
|
-
/** `1.14 -
|
|
1196
|
+
/** `1.14 - latest`
|
|
1194
1197
|
* game difficulty is sent separately from the login packet */
|
|
1195
1198
|
"difficultySentSeparately": boolean;
|
|
1196
1199
|
/** `1.15 - 1.17_major`
|
|
1197
1200
|
* biomes sent in own packet */
|
|
1198
1201
|
"biomesSentSeparately": boolean;
|
|
1199
|
-
/** `1.14 -
|
|
1202
|
+
/** `1.14 - latest`
|
|
1200
1203
|
* player digging packets should be responded to */
|
|
1201
1204
|
"acknowledgePlayerDigging": boolean;
|
|
1202
|
-
/** `1.14 -
|
|
1205
|
+
/** `1.14 - latest`
|
|
1203
1206
|
* there are 6 types of signs based on the different trees */
|
|
1204
1207
|
"multiTypeSigns": boolean;
|
|
1205
|
-
/** `1.15 -
|
|
1208
|
+
/** `1.15 - latest`
|
|
1206
1209
|
* entity metadata is sent separately from the spawn packets */
|
|
1207
1210
|
"entityMetadataSentSeparately": boolean;
|
|
1208
|
-
/** `1.16 -
|
|
1211
|
+
/** `1.16 - latest`
|
|
1209
1212
|
* entity attributes are in snake case */
|
|
1210
1213
|
"attributeSnakeCase": boolean;
|
|
1211
|
-
/** `1.16 -
|
|
1214
|
+
/** `1.16 - latest`
|
|
1212
1215
|
* entity equipment packet contains all equipment slots instead of just one */
|
|
1213
1216
|
"allEntityEquipmentInOne": boolean;
|
|
1214
|
-
/** `1.12 -
|
|
1217
|
+
/** `1.12 - latest`
|
|
1215
1218
|
* entity prefixed with minecraft: on this versions */
|
|
1216
1219
|
"entityMCPrefixed": boolean;
|
|
1217
|
-
/** `1.8 - 1.8`
|
|
1220
|
+
/** `1.8 - 1.8.9`
|
|
1218
1221
|
* in never versions its nbt but in 1.8 its on metadata */
|
|
1219
1222
|
"nbtOnMetadata": boolean;
|
|
1220
|
-
/** `1.13 -
|
|
1223
|
+
/** `1.13 - latest`
|
|
1221
1224
|
* added shulker boxes to the game */
|
|
1222
1225
|
"theShulkerBoxes": boolean;
|
|
1223
1226
|
/**
|
|
@@ -1221,7 +1221,7 @@
|
|
|
1221
1221
|
"particles": "pc/1.20",
|
|
1222
1222
|
"blockLoot": "pc/1.20",
|
|
1223
1223
|
"entityLoot": "pc/1.20",
|
|
1224
|
-
"loginPacket": "pc/1.
|
|
1224
|
+
"loginPacket": "pc/1.20",
|
|
1225
1225
|
"tints": "pc/1.20",
|
|
1226
1226
|
"mapIcons": "pc/1.16"
|
|
1227
1227
|
},
|
|
@@ -1245,7 +1245,7 @@
|
|
|
1245
1245
|
"particles": "pc/1.20",
|
|
1246
1246
|
"blockLoot": "pc/1.20",
|
|
1247
1247
|
"entityLoot": "pc/1.20",
|
|
1248
|
-
"loginPacket": "pc/1.
|
|
1248
|
+
"loginPacket": "pc/1.20",
|
|
1249
1249
|
"tints": "pc/1.20",
|
|
1250
1250
|
"mapIcons": "pc/1.16"
|
|
1251
1251
|
},
|