minecraft-data 3.35.0 → 3.36.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/.github/workflows/ci.yml +1 -1
- package/doc/history.md +4 -0
- package/index.d.ts +4 -0
- package/minecraft-data/data/pc/1.19.4/entities.json +2383 -150
- package/minecraft-data/data/pc/1.19.4/protocol.json +67 -40
- package/minecraft-data/data/pc/common/features.json +5 -0
- package/minecraft-data/doc/history.md +3 -0
- package/minecraft-data/schemas/entities_schema.json +7 -0
- package/minecraft-data/tools/js/extractPcEntityMetadata.js +153 -0
- package/minecraft-data/tools/js/package.json +2 -1
- package/package.json +4 -4
package/.github/workflows/ci.yml
CHANGED
package/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -449,6 +449,10 @@ declare namespace MinecraftData {
|
|
|
449
449
|
* The category of an entity : a semantic category
|
|
450
450
|
*/
|
|
451
451
|
category?: string;
|
|
452
|
+
/**
|
|
453
|
+
* The pc metadata tags of an entity. (Naming is via mc code, with data_ and id_ prefixes stripped)
|
|
454
|
+
*/
|
|
455
|
+
metadataKeys?: string[];
|
|
452
456
|
}
|
|
453
457
|
|
|
454
458
|
|