@minecraft/vanilla-data 1.26.10-preview.20 → 1.26.10-preview.22
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/README.md +2 -2
- package/lib/index.js +10 -10
- package/lib/mojang-block.d.ts +1 -0
- package/lib/mojang-item.d.ts +1 -0
- package/package.json +21 -21
package/lib/mojang-block.d.ts
CHANGED
|
@@ -548,6 +548,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
548
548
|
Glowstone = "minecraft:glowstone",
|
|
549
549
|
GoldBlock = "minecraft:gold_block",
|
|
550
550
|
GoldOre = "minecraft:gold_ore",
|
|
551
|
+
GoldenDandelion = "minecraft:golden_dandelion",
|
|
551
552
|
GoldenRail = "minecraft:golden_rail",
|
|
552
553
|
Granite = "minecraft:granite",
|
|
553
554
|
GraniteDoubleSlab = "minecraft:granite_double_slab",
|
package/lib/mojang-item.d.ts
CHANGED
|
@@ -560,6 +560,7 @@ export declare enum MinecraftItemTypes {
|
|
|
560
560
|
GoldenBoots = "minecraft:golden_boots",
|
|
561
561
|
GoldenCarrot = "minecraft:golden_carrot",
|
|
562
562
|
GoldenChestplate = "minecraft:golden_chestplate",
|
|
563
|
+
GoldenDandelion = "minecraft:golden_dandelion",
|
|
563
564
|
GoldenHelmet = "minecraft:golden_helmet",
|
|
564
565
|
GoldenHoe = "minecraft:golden_hoe",
|
|
565
566
|
GoldenHorseArmor = "minecraft:golden_horse_armor",
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@minecraft/vanilla-data",
|
|
3
|
-
"version": "1.26.10-preview.
|
|
4
|
-
"description": "Contains types for Minecraft Vanilla Content",
|
|
5
|
-
"exports": "./lib/index.js",
|
|
6
|
-
"types": "./lib/index.d.ts",
|
|
7
|
-
"contributors": [
|
|
8
|
-
{
|
|
9
|
-
"name": "Jake Shirley",
|
|
10
|
-
"email": "jake@xbox.com"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"name": "Mike Ammerlaan",
|
|
14
|
-
"email": "mikeam@microsoft.com"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "Raphael Landaverde",
|
|
18
|
-
"email": "rlandav@microsoft.com"
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"license": "MIT"
|
|
1
|
+
{
|
|
2
|
+
"name": "@minecraft/vanilla-data",
|
|
3
|
+
"version": "1.26.10-preview.22",
|
|
4
|
+
"description": "Contains types for Minecraft Vanilla Content",
|
|
5
|
+
"exports": "./lib/index.js",
|
|
6
|
+
"types": "./lib/index.d.ts",
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Jake Shirley",
|
|
10
|
+
"email": "jake@xbox.com"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Mike Ammerlaan",
|
|
14
|
+
"email": "mikeam@microsoft.com"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Raphael Landaverde",
|
|
18
|
+
"email": "rlandav@microsoft.com"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT"
|
|
22
22
|
}
|