minecraft-data 3.90.0 → 3.91.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 +27 -0
- package/doc/history.md +4 -0
- package/minecraft-data/data/dataPaths.json +27 -0
- package/minecraft-data/data/pc/1.21.5/attributes.json +226 -0
- package/minecraft-data/data/pc/1.21.5/biomes.json +652 -0
- package/minecraft-data/data/pc/1.21.5/blockCollisionShapes.json +142530 -0
- package/minecraft-data/data/pc/1.21.5/blocks.json +41307 -0
- package/minecraft-data/data/pc/1.21.5/effects.json +236 -0
- package/minecraft-data/data/pc/1.21.5/enchantments.json +959 -0
- package/minecraft-data/data/pc/1.21.5/entities.json +1502 -0
- package/minecraft-data/data/pc/1.21.5/foods.json +402 -0
- package/minecraft-data/data/pc/1.21.5/instruments.json +94 -0
- package/minecraft-data/data/pc/1.21.5/items.json +9164 -0
- package/minecraft-data/data/pc/1.21.5/language.json +7163 -0
- package/minecraft-data/data/pc/1.21.5/materials.json +206 -0
- package/minecraft-data/data/pc/1.21.5/particles.json +458 -0
- package/minecraft-data/data/pc/1.21.5/recipes.json +29948 -0
- package/minecraft-data/data/pc/1.21.5/sounds.json +6810 -0
- package/minecraft-data/data/pc/1.21.5/tints.json +465 -0
- package/minecraft-data/data/pc/1.21.5/version.json +6 -0
- package/minecraft-data/data/pc/common/protocolVersions.json +196 -37
- package/minecraft-data/data/pc/common/versions.json +2 -1
- package/minecraft-data/doc/history.md +6 -0
- package/package.json +2 -2
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 3.91.0
|
|
2
|
+
* [Add missing data version values in protocol version file (#1024)](https://github.com/PrismarineJS/minecraft-data/commit/72533f88da564797d59b618de59835c7984a79d5) (thanks @rom1504)
|
|
3
|
+
* [Add some 1.21.5 data (#995)](https://github.com/PrismarineJS/minecraft-data/commit/f9ea32fedfb44b8cc4b41c3b41e178a96c690907) (thanks @RomainNeup)
|
|
4
|
+
* [Add 1.21.7-rc2 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/0790f31720fffa6c65f04ce5fd5da12bbcf4f31b) (thanks @github-actions[bot])
|
|
5
|
+
* [Add 1.21.7-rc1 to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/bfa42528b71ae2941ca92015e65be3c0cbcc1ddf) (thanks @github-actions[bot])
|
|
6
|
+
|
|
1
7
|
## 3.90.0
|
|
2
8
|
* [Add bedrock 1.21.90 protocol data (#1021)](https://github.com/PrismarineJS/minecraft-data/commit/06c2106a669deb24f0c14770874a0abeb116687b) (thanks @CreeperG16)
|
|
3
9
|
* [bedrock: add v1.21.70 Steve Skin (#1004)](https://github.com/PrismarineJS/minecraft-data/commit/b1b05bb62907ab0c6508d6f52e44b753df065d54) (thanks @yowzaoppo)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minecraft-data",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.91.0",
|
|
4
4
|
"description": "Provide easy access to minecraft data in node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"tonicExampleFilename": "example.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"minecraft-data": ".",
|
|
37
|
-
"@types/node": "^
|
|
37
|
+
"@types/node": "^24.0.4",
|
|
38
38
|
"json-schema-to-typescript": "11.0.5",
|
|
39
39
|
"minecraft-packets": "^1.4.0",
|
|
40
40
|
"mocha": "^11.0.1",
|