@jsprismarine/bedrock-data 1.19.50 → 1.19.80

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.
Files changed (32) hide show
  1. package/package.json +1 -1
  2. package/resources/README.md +6 -29
  3. package/resources/biome_definitions.nbt +0 -0
  4. package/resources/biome_definitions_full.nbt +0 -0
  5. package/resources/biome_id_map.json +1 -0
  6. package/resources/block_id_to_item_id_map.json +57 -5
  7. package/resources/block_state_meta_map.json +705 -37
  8. package/resources/canonical_block_states.nbt +0 -0
  9. package/resources/command_arg_types.json +59 -39
  10. package/resources/creativeitems.json +3184 -2125
  11. package/resources/entity_id_map.json +2 -0
  12. package/resources/entity_identifiers.nbt +0 -0
  13. package/resources/item_tags.json +502 -205
  14. package/resources/level_sound_id_map.json +8 -0
  15. package/resources/r12_to_current_block_map.bin +0 -0
  16. package/resources/r16_to_current_item_map.json +53 -2
  17. package/resources/recipes/potion_container_change.json +16 -0
  18. package/resources/recipes/potion_type.json +2390 -0
  19. package/resources/recipes/shaped_chemistry.json +3579 -0
  20. package/resources/recipes/shaped_crafting.json +21650 -0
  21. package/resources/recipes/shapeless_chemistry.json +1156 -0
  22. package/resources/recipes/shapeless_crafting.json +19458 -0
  23. package/resources/recipes/shapeless_shulker_box.json +6382 -0
  24. package/resources/recipes/smelting.json +2031 -0
  25. package/resources/recipes/smithing.json +164 -0
  26. package/resources/recipes/smithing_trim.json +14 -0
  27. package/resources/recipes/special_hardcoded.json +16 -0
  28. package/resources/required_item_list.json +781 -369
  29. package/resources/block_id_map.json +0 -555
  30. package/resources/item_id_map.json +0 -809
  31. package/resources/r12_block_states.json +0 -4235
  32. package/resources/recipes.json +0 -49988
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jsprismarine/bedrock-data",
3
3
  "types": "./index.d.ts",
4
- "version": "1.19.50",
4
+ "version": "1.19.80",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/filfat/bedrock-data",
7
7
  "author": "Filiph Sandström <filiph.sandstrom@filfatstudios.com>",
@@ -6,35 +6,12 @@ This file contains an ordered list of `TAG_Compound`s (in varint NBT format) rep
6
6
  The runtime ID of a state is the offset in the list that the state appears.
7
7
  The contents of this file are extracted from the vanilla BDS using [`pmmp/mapping`](https://github.com/pmmp/mapping).
8
8
 
9
- ## block_id_map.json
10
- This file contains a mapping of all block stringy IDs to legacy numeric IDs (which are still used internally, and still needed by third party developers for conversion and for items).
11
-
12
- #### Note
13
- Where a block's legacy ID is > 255, its item ID is `255 - legacyBlockId`. This means prismarine stairs = -2 and so on.
14
-
15
- ## r12_to_current_block_map.bin
16
- This file contains a list of mappings from legacy pre-1.13 blockstates to states of the current version.
17
- This data is obtained by plugging the legacy states into `BlockPalette` in the vanilla BDS using [`pmmp/mapping`](https://github.com/pmmp/mapping), and writing the resulting NBT state obtained.
18
-
19
- #### Schema
20
- The following structure is repeated until EOF. There is **no** length prefix, so you have to read to EOF to read all the mappings.
21
- | type | description |
22
- |------|-------------|
23
- | unsigned varint32 | r12 block string ID length |
24
- | byte[] | r12 block string ID |
25
- | little-endian int16 | r12 block metadata |
26
- | TAG_Compound (varint format) | current version NBT blockstate corresponding to the given r12 block |
27
-
28
- An example of how to read this file using the PocketMine-MP core library can be seen on the [stable branch](https://github.com/pmmp/PocketMine-MP/blob/41f7c07703bf3f7ef2d9504bbdbdf74257e75d12/src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php#L71-L86) or on the [master branch](https://github.com/pmmp/PocketMine-MP/blob/73592349cd29d91b03c2703107db859115a92e2d/src/network/mcpe/convert/RuntimeBlockMapping.php#L70-L80).
29
-
30
- ## r16_to_current_item_map.json
31
- This file contains mappings to translate pre-1.16.100 item IDs into post-1.16.100 item IDs.
32
- It contains two structures:
33
- - `simple`: these are 1:1 replacement IDs (e.g. `carrotonastick` was renamed to `carrot_on_a_stick`)
34
- - `complex`: these are items that were previously metadata values on other items (e.g. `dye:4` is now represented by `lapis_lazuli`).
35
-
36
- ## item_id_map.json
37
- This file contains a mapping of all item stringy IDs to legacy numeric IDs.
9
+ ## block_state_meta_map.json
10
+ This file contains a mapping of all blockstate IDs (as per `canonical_block_states.nbt`) to their associated internal meta values.
11
+ The position in the list is the blockstate ID, and the value is the blockstate's associated meta value.
12
+ This information is used for interpreting and serializing crafting recipes on the network in PM5.
13
+
14
+ Note: While the values may **appear** to be contiguous, they are not - in some cases there are holes. This means that you can't always get away with just assigning an increasing integer to each blockstate as its meta value.
38
15
 
39
16
  ## banner_patterns.json
40
17
  This file defines all the known banner pattern types and their crafting requirements.
Binary file
@@ -7,6 +7,7 @@
7
7
  "birch_forest_hills": 28,
8
8
  "birch_forest_hills_mutated": 156,
9
9
  "birch_forest_mutated": 155,
10
+ "cherry_grove": 192,
10
11
  "cold_beach": 26,
11
12
  "cold_ocean": 44,
12
13
  "cold_taiga": 30,
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "minecraft:acacia_button": "minecraft:acacia_button",
3
3
  "minecraft:acacia_door": "minecraft:item.acacia_door",
4
+ "minecraft:acacia_fence": "minecraft:acacia_fence",
4
5
  "minecraft:acacia_fence_gate": "minecraft:acacia_fence_gate",
5
6
  "minecraft:acacia_hanging_sign": "minecraft:acacia_hanging_sign",
7
+ "minecraft:acacia_log": "minecraft:acacia_log",
6
8
  "minecraft:acacia_pressure_plate": "minecraft:acacia_pressure_plate",
7
9
  "minecraft:acacia_stairs": "minecraft:acacia_stairs",
8
10
  "minecraft:acacia_standing_sign": "minecraft:acacia_standing_sign",
@@ -19,6 +21,7 @@
19
21
  "minecraft:azalea_leaves": "minecraft:azalea_leaves",
20
22
  "minecraft:azalea_leaves_flowered": "minecraft:azalea_leaves_flowered",
21
23
  "minecraft:bamboo": "minecraft:bamboo",
24
+ "minecraft:bamboo_block": "minecraft:bamboo_block",
22
25
  "minecraft:bamboo_button": "minecraft:bamboo_button",
23
26
  "minecraft:bamboo_door": "minecraft:bamboo_door",
24
27
  "minecraft:bamboo_double_slab": "minecraft:bamboo_double_slab",
@@ -50,8 +53,10 @@
50
53
  "minecraft:big_dripleaf": "minecraft:big_dripleaf",
51
54
  "minecraft:birch_button": "minecraft:birch_button",
52
55
  "minecraft:birch_door": "minecraft:item.birch_door",
56
+ "minecraft:birch_fence": "minecraft:birch_fence",
53
57
  "minecraft:birch_fence_gate": "minecraft:birch_fence_gate",
54
58
  "minecraft:birch_hanging_sign": "minecraft:birch_hanging_sign",
59
+ "minecraft:birch_log": "minecraft:birch_log",
55
60
  "minecraft:birch_pressure_plate": "minecraft:birch_pressure_plate",
56
61
  "minecraft:birch_stairs": "minecraft:birch_stairs",
57
62
  "minecraft:birch_standing_sign": "minecraft:birch_standing_sign",
@@ -60,6 +65,7 @@
60
65
  "minecraft:black_candle": "minecraft:black_candle",
61
66
  "minecraft:black_candle_cake": "minecraft:black_candle_cake",
62
67
  "minecraft:black_glazed_terracotta": "minecraft:black_glazed_terracotta",
68
+ "minecraft:black_wool": "minecraft:black_wool",
63
69
  "minecraft:blackstone": "minecraft:blackstone",
64
70
  "minecraft:blackstone_double_slab": "minecraft:blackstone_double_slab",
65
71
  "minecraft:blackstone_slab": "minecraft:blackstone_slab",
@@ -70,6 +76,7 @@
70
76
  "minecraft:blue_candle_cake": "minecraft:blue_candle_cake",
71
77
  "minecraft:blue_glazed_terracotta": "minecraft:blue_glazed_terracotta",
72
78
  "minecraft:blue_ice": "minecraft:blue_ice",
79
+ "minecraft:blue_wool": "minecraft:blue_wool",
73
80
  "minecraft:bone_block": "minecraft:bone_block",
74
81
  "minecraft:bookshelf": "minecraft:bookshelf",
75
82
  "minecraft:border_block": "minecraft:border_block",
@@ -81,11 +88,13 @@
81
88
  "minecraft:brown_glazed_terracotta": "minecraft:brown_glazed_terracotta",
82
89
  "minecraft:brown_mushroom": "minecraft:brown_mushroom",
83
90
  "minecraft:brown_mushroom_block": "minecraft:brown_mushroom_block",
91
+ "minecraft:brown_wool": "minecraft:brown_wool",
84
92
  "minecraft:bubble_column": "minecraft:bubble_column",
85
93
  "minecraft:budding_amethyst": "minecraft:budding_amethyst",
86
94
  "minecraft:cactus": "minecraft:cactus",
87
95
  "minecraft:cake": "minecraft:item.cake",
88
96
  "minecraft:calcite": "minecraft:calcite",
97
+ "minecraft:calibrated_sculk_sensor": "minecraft:calibrated_sculk_sensor",
89
98
  "minecraft:camera": "minecraft:item.camera",
90
99
  "minecraft:campfire": "minecraft:item.campfire",
91
100
  "minecraft:candle": "minecraft:candle",
@@ -102,6 +111,23 @@
102
111
  "minecraft:chain_command_block": "minecraft:chain_command_block",
103
112
  "minecraft:chemical_heat": "minecraft:chemical_heat",
104
113
  "minecraft:chemistry_table": "minecraft:chemistry_table",
114
+ "minecraft:cherry_button": "minecraft:cherry_button",
115
+ "minecraft:cherry_door": "minecraft:cherry_door",
116
+ "minecraft:cherry_double_slab": "minecraft:cherry_double_slab",
117
+ "minecraft:cherry_fence": "minecraft:cherry_fence",
118
+ "minecraft:cherry_fence_gate": "minecraft:cherry_fence_gate",
119
+ "minecraft:cherry_hanging_sign": "minecraft:cherry_hanging_sign",
120
+ "minecraft:cherry_leaves": "minecraft:cherry_leaves",
121
+ "minecraft:cherry_log": "minecraft:cherry_log",
122
+ "minecraft:cherry_planks": "minecraft:cherry_planks",
123
+ "minecraft:cherry_pressure_plate": "minecraft:cherry_pressure_plate",
124
+ "minecraft:cherry_sapling": "minecraft:cherry_sapling",
125
+ "minecraft:cherry_slab": "minecraft:cherry_slab",
126
+ "minecraft:cherry_stairs": "minecraft:cherry_stairs",
127
+ "minecraft:cherry_standing_sign": "minecraft:cherry_standing_sign",
128
+ "minecraft:cherry_trapdoor": "minecraft:cherry_trapdoor",
129
+ "minecraft:cherry_wall_sign": "minecraft:cherry_wall_sign",
130
+ "minecraft:cherry_wood": "minecraft:cherry_wood",
105
131
  "minecraft:chest": "minecraft:chest",
106
132
  "minecraft:chiseled_bookshelf": "minecraft:chiseled_bookshelf",
107
133
  "minecraft:chiseled_deepslate": "minecraft:chiseled_deepslate",
@@ -167,10 +193,13 @@
167
193
  "minecraft:cyan_candle": "minecraft:cyan_candle",
168
194
  "minecraft:cyan_candle_cake": "minecraft:cyan_candle_cake",
169
195
  "minecraft:cyan_glazed_terracotta": "minecraft:cyan_glazed_terracotta",
196
+ "minecraft:cyan_wool": "minecraft:cyan_wool",
170
197
  "minecraft:dark_oak_button": "minecraft:dark_oak_button",
171
198
  "minecraft:dark_oak_door": "minecraft:item.dark_oak_door",
199
+ "minecraft:dark_oak_fence": "minecraft:dark_oak_fence",
172
200
  "minecraft:dark_oak_fence_gate": "minecraft:dark_oak_fence_gate",
173
201
  "minecraft:dark_oak_hanging_sign": "minecraft:dark_oak_hanging_sign",
202
+ "minecraft:dark_oak_log": "minecraft:dark_oak_log",
174
203
  "minecraft:dark_oak_pressure_plate": "minecraft:dark_oak_pressure_plate",
175
204
  "minecraft:dark_oak_stairs": "minecraft:dark_oak_stairs",
176
205
  "minecraft:dark_oak_trapdoor": "minecraft:dark_oak_trapdoor",
@@ -180,6 +209,7 @@
180
209
  "minecraft:daylight_detector": "minecraft:daylight_detector",
181
210
  "minecraft:daylight_detector_inverted": "minecraft:daylight_detector_inverted",
182
211
  "minecraft:deadbush": "minecraft:deadbush",
212
+ "minecraft:decorated_pot": "minecraft:decorated_pot",
183
213
  "minecraft:deepslate": "minecraft:deepslate",
184
214
  "minecraft:deepslate_brick_double_slab": "minecraft:deepslate_brick_double_slab",
185
215
  "minecraft:deepslate_brick_slab": "minecraft:deepslate_brick_slab",
@@ -354,7 +384,6 @@
354
384
  "minecraft:exposed_cut_copper_stairs": "minecraft:exposed_cut_copper_stairs",
355
385
  "minecraft:exposed_double_cut_copper_slab": "minecraft:exposed_double_cut_copper_slab",
356
386
  "minecraft:farmland": "minecraft:farmland",
357
- "minecraft:fence": "minecraft:fence",
358
387
  "minecraft:fence_gate": "minecraft:fence_gate",
359
388
  "minecraft:fire": "minecraft:fire",
360
389
  "minecraft:fletching_table": "minecraft:fletching_table",
@@ -383,9 +412,11 @@
383
412
  "minecraft:gray_candle": "minecraft:gray_candle",
384
413
  "minecraft:gray_candle_cake": "minecraft:gray_candle_cake",
385
414
  "minecraft:gray_glazed_terracotta": "minecraft:gray_glazed_terracotta",
415
+ "minecraft:gray_wool": "minecraft:gray_wool",
386
416
  "minecraft:green_candle": "minecraft:green_candle",
387
417
  "minecraft:green_candle_cake": "minecraft:green_candle_cake",
388
418
  "minecraft:green_glazed_terracotta": "minecraft:green_glazed_terracotta",
419
+ "minecraft:green_wool": "minecraft:green_wool",
389
420
  "minecraft:grindstone": "minecraft:grindstone",
390
421
  "minecraft:hanging_roots": "minecraft:hanging_roots",
391
422
  "minecraft:hard_glass": "minecraft:hard_glass",
@@ -412,8 +443,10 @@
412
443
  "minecraft:jukebox": "minecraft:jukebox",
413
444
  "minecraft:jungle_button": "minecraft:jungle_button",
414
445
  "minecraft:jungle_door": "minecraft:item.jungle_door",
446
+ "minecraft:jungle_fence": "minecraft:jungle_fence",
415
447
  "minecraft:jungle_fence_gate": "minecraft:jungle_fence_gate",
416
448
  "minecraft:jungle_hanging_sign": "minecraft:jungle_hanging_sign",
449
+ "minecraft:jungle_log": "minecraft:jungle_log",
417
450
  "minecraft:jungle_pressure_plate": "minecraft:jungle_pressure_plate",
418
451
  "minecraft:jungle_stairs": "minecraft:jungle_stairs",
419
452
  "minecraft:jungle_standing_sign": "minecraft:jungle_standing_sign",
@@ -435,13 +468,16 @@
435
468
  "minecraft:light_blue_candle": "minecraft:light_blue_candle",
436
469
  "minecraft:light_blue_candle_cake": "minecraft:light_blue_candle_cake",
437
470
  "minecraft:light_blue_glazed_terracotta": "minecraft:light_blue_glazed_terracotta",
471
+ "minecraft:light_blue_wool": "minecraft:light_blue_wool",
438
472
  "minecraft:light_gray_candle": "minecraft:light_gray_candle",
439
473
  "minecraft:light_gray_candle_cake": "minecraft:light_gray_candle_cake",
474
+ "minecraft:light_gray_wool": "minecraft:light_gray_wool",
440
475
  "minecraft:light_weighted_pressure_plate": "minecraft:light_weighted_pressure_plate",
441
476
  "minecraft:lightning_rod": "minecraft:lightning_rod",
442
477
  "minecraft:lime_candle": "minecraft:lime_candle",
443
478
  "minecraft:lime_candle_cake": "minecraft:lime_candle_cake",
444
479
  "minecraft:lime_glazed_terracotta": "minecraft:lime_glazed_terracotta",
480
+ "minecraft:lime_wool": "minecraft:lime_wool",
445
481
  "minecraft:lit_blast_furnace": "minecraft:lit_blast_furnace",
446
482
  "minecraft:lit_deepslate_redstone_ore": "minecraft:lit_deepslate_redstone_ore",
447
483
  "minecraft:lit_furnace": "minecraft:lit_furnace",
@@ -450,12 +486,11 @@
450
486
  "minecraft:lit_redstone_ore": "minecraft:lit_redstone_ore",
451
487
  "minecraft:lit_smoker": "minecraft:lit_smoker",
452
488
  "minecraft:lodestone": "minecraft:lodestone",
453
- "minecraft:log": "minecraft:log",
454
- "minecraft:log2": "minecraft:log2",
455
489
  "minecraft:loom": "minecraft:loom",
456
490
  "minecraft:magenta_candle": "minecraft:magenta_candle",
457
491
  "minecraft:magenta_candle_cake": "minecraft:magenta_candle_cake",
458
492
  "minecraft:magenta_glazed_terracotta": "minecraft:magenta_glazed_terracotta",
493
+ "minecraft:magenta_wool": "minecraft:magenta_wool",
459
494
  "minecraft:magma": "minecraft:magma",
460
495
  "minecraft:mangrove_button": "minecraft:mangrove_button",
461
496
  "minecraft:mangrove_door": "minecraft:item.mangrove_door",
@@ -506,7 +541,9 @@
506
541
  "minecraft:netherreactor": "minecraft:netherreactor",
507
542
  "minecraft:normal_stone_stairs": "minecraft:normal_stone_stairs",
508
543
  "minecraft:noteblock": "minecraft:noteblock",
544
+ "minecraft:oak_fence": "minecraft:oak_fence",
509
545
  "minecraft:oak_hanging_sign": "minecraft:oak_hanging_sign",
546
+ "minecraft:oak_log": "minecraft:oak_log",
510
547
  "minecraft:oak_stairs": "minecraft:oak_stairs",
511
548
  "minecraft:observer": "minecraft:observer",
512
549
  "minecraft:obsidian": "minecraft:obsidian",
@@ -514,6 +551,7 @@
514
551
  "minecraft:orange_candle": "minecraft:orange_candle",
515
552
  "minecraft:orange_candle_cake": "minecraft:orange_candle_cake",
516
553
  "minecraft:orange_glazed_terracotta": "minecraft:orange_glazed_terracotta",
554
+ "minecraft:orange_wool": "minecraft:orange_wool",
517
555
  "minecraft:oxidized_copper": "minecraft:oxidized_copper",
518
556
  "minecraft:oxidized_cut_copper": "minecraft:oxidized_cut_copper",
519
557
  "minecraft:oxidized_cut_copper_slab": "minecraft:oxidized_cut_copper_slab",
@@ -525,6 +563,8 @@
525
563
  "minecraft:pink_candle": "minecraft:pink_candle",
526
564
  "minecraft:pink_candle_cake": "minecraft:pink_candle_cake",
527
565
  "minecraft:pink_glazed_terracotta": "minecraft:pink_glazed_terracotta",
566
+ "minecraft:pink_petals": "minecraft:pink_petals",
567
+ "minecraft:pink_wool": "minecraft:pink_wool",
528
568
  "minecraft:piston": "minecraft:piston",
529
569
  "minecraft:piston_arm_collision": "minecraft:piston_arm_collision",
530
570
  "minecraft:planks": "minecraft:planks",
@@ -564,6 +604,7 @@
564
604
  "minecraft:purple_candle": "minecraft:purple_candle",
565
605
  "minecraft:purple_candle_cake": "minecraft:purple_candle_cake",
566
606
  "minecraft:purple_glazed_terracotta": "minecraft:purple_glazed_terracotta",
607
+ "minecraft:purple_wool": "minecraft:purple_wool",
567
608
  "minecraft:purpur_block": "minecraft:purpur_block",
568
609
  "minecraft:purpur_stairs": "minecraft:purpur_stairs",
569
610
  "minecraft:quartz_block": "minecraft:quartz_block",
@@ -584,6 +625,7 @@
584
625
  "minecraft:red_nether_brick_stairs": "minecraft:red_nether_brick_stairs",
585
626
  "minecraft:red_sandstone": "minecraft:red_sandstone",
586
627
  "minecraft:red_sandstone_stairs": "minecraft:red_sandstone_stairs",
628
+ "minecraft:red_wool": "minecraft:red_wool",
587
629
  "minecraft:redstone_block": "minecraft:redstone_block",
588
630
  "minecraft:redstone_lamp": "minecraft:redstone_lamp",
589
631
  "minecraft:redstone_ore": "minecraft:redstone_ore",
@@ -633,8 +675,10 @@
633
675
  "minecraft:spore_blossom": "minecraft:spore_blossom",
634
676
  "minecraft:spruce_button": "minecraft:spruce_button",
635
677
  "minecraft:spruce_door": "minecraft:item.spruce_door",
678
+ "minecraft:spruce_fence": "minecraft:spruce_fence",
636
679
  "minecraft:spruce_fence_gate": "minecraft:spruce_fence_gate",
637
680
  "minecraft:spruce_hanging_sign": "minecraft:spruce_hanging_sign",
681
+ "minecraft:spruce_log": "minecraft:spruce_log",
638
682
  "minecraft:spruce_pressure_plate": "minecraft:spruce_pressure_plate",
639
683
  "minecraft:spruce_stairs": "minecraft:spruce_stairs",
640
684
  "minecraft:spruce_standing_sign": "minecraft:spruce_standing_sign",
@@ -660,7 +704,10 @@
660
704
  "minecraft:stonecutter": "minecraft:stonecutter",
661
705
  "minecraft:stonecutter_block": "minecraft:stonecutter_block",
662
706
  "minecraft:stripped_acacia_log": "minecraft:stripped_acacia_log",
707
+ "minecraft:stripped_bamboo_block": "minecraft:stripped_bamboo_block",
663
708
  "minecraft:stripped_birch_log": "minecraft:stripped_birch_log",
709
+ "minecraft:stripped_cherry_log": "minecraft:stripped_cherry_log",
710
+ "minecraft:stripped_cherry_wood": "minecraft:stripped_cherry_wood",
664
711
  "minecraft:stripped_crimson_hyphae": "minecraft:stripped_crimson_hyphae",
665
712
  "minecraft:stripped_crimson_stem": "minecraft:stripped_crimson_stem",
666
713
  "minecraft:stripped_dark_oak_log": "minecraft:stripped_dark_oak_log",
@@ -673,12 +720,16 @@
673
720
  "minecraft:stripped_warped_stem": "minecraft:stripped_warped_stem",
674
721
  "minecraft:structure_block": "minecraft:structure_block",
675
722
  "minecraft:structure_void": "minecraft:structure_void",
723
+ "minecraft:suspicious_gravel": "minecraft:suspicious_gravel",
724
+ "minecraft:suspicious_sand": "minecraft:suspicious_sand",
676
725
  "minecraft:sweet_berry_bush": "minecraft:sweet_berry_bush",
677
726
  "minecraft:tallgrass": "minecraft:tallgrass",
678
727
  "minecraft:target": "minecraft:target",
679
728
  "minecraft:tinted_glass": "minecraft:tinted_glass",
680
729
  "minecraft:tnt": "minecraft:tnt",
681
730
  "minecraft:torch": "minecraft:torch",
731
+ "minecraft:torchflower": "minecraft:torchflower",
732
+ "minecraft:torchflower_crop": "minecraft:torchflower_crop",
682
733
  "minecraft:trapdoor": "minecraft:trapdoor",
683
734
  "minecraft:trapped_chest": "minecraft:trapped_chest",
684
735
  "minecraft:trip_wire": "minecraft:trip_wire",
@@ -748,15 +799,16 @@
748
799
  "minecraft:white_candle": "minecraft:white_candle",
749
800
  "minecraft:white_candle_cake": "minecraft:white_candle_cake",
750
801
  "minecraft:white_glazed_terracotta": "minecraft:white_glazed_terracotta",
802
+ "minecraft:white_wool": "minecraft:white_wool",
751
803
  "minecraft:wither_rose": "minecraft:wither_rose",
752
804
  "minecraft:wood": "minecraft:wood",
753
805
  "minecraft:wooden_button": "minecraft:wooden_button",
754
806
  "minecraft:wooden_door": "minecraft:item.wooden_door",
755
807
  "minecraft:wooden_pressure_plate": "minecraft:wooden_pressure_plate",
756
808
  "minecraft:wooden_slab": "minecraft:wooden_slab",
757
- "minecraft:wool": "minecraft:wool",
758
809
  "minecraft:yellow_candle": "minecraft:yellow_candle",
759
810
  "minecraft:yellow_candle_cake": "minecraft:yellow_candle_cake",
760
811
  "minecraft:yellow_flower": "minecraft:yellow_flower",
761
- "minecraft:yellow_glazed_terracotta": "minecraft:yellow_glazed_terracotta"
812
+ "minecraft:yellow_glazed_terracotta": "minecraft:yellow_glazed_terracotta",
813
+ "minecraft:yellow_wool": "minecraft:yellow_wool"
762
814
  }