bc-minecraft-bedrock-vanilla-data 1.21.44-5 → 1.21.45-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.
Files changed (57) hide show
  1. package/lib/src/Lib/Edu/BehaviorPack/features.d.ts +2 -0
  2. package/lib/src/Lib/Edu/BehaviorPack/features.js +6 -0
  3. package/lib/src/Lib/Edu/BehaviorPack/features.js.map +1 -0
  4. package/lib/src/Lib/Edu/BehaviorPack/index.d.ts +1 -0
  5. package/lib/src/Lib/Edu/BehaviorPack/index.js +1 -0
  6. package/lib/src/Lib/Edu/BehaviorPack/index.js.map +1 -1
  7. package/lib/src/Lib/General/biomes.d.ts +2 -0
  8. package/lib/src/Lib/General/biomes.js +94 -0
  9. package/lib/src/Lib/General/biomes.js.map +1 -0
  10. package/lib/src/Lib/General/camera_presets.d.ts +2 -0
  11. package/lib/src/Lib/General/camera_presets.js +13 -0
  12. package/lib/src/Lib/General/camera_presets.js.map +1 -0
  13. package/lib/src/Lib/General/cooldown_category.d.ts +2 -0
  14. package/lib/src/Lib/General/cooldown_category.js +12 -0
  15. package/lib/src/Lib/General/cooldown_category.js.map +1 -0
  16. package/lib/src/Lib/General/dimensions.d.ts +2 -0
  17. package/lib/src/Lib/General/dimensions.js +10 -0
  18. package/lib/src/Lib/General/dimensions.js.map +1 -0
  19. package/lib/src/Lib/General/effects.d.ts +1 -0
  20. package/lib/src/Lib/General/effects.js +37 -30
  21. package/lib/src/Lib/General/effects.js.map +1 -1
  22. package/lib/src/Lib/General/enchantments.d.ts +2 -0
  23. package/lib/src/Lib/General/enchantments.js +48 -0
  24. package/lib/src/Lib/General/enchantments.js.map +1 -0
  25. package/lib/src/Lib/General/index.d.ts +9 -0
  26. package/lib/src/Lib/General/index.js +9 -0
  27. package/lib/src/Lib/General/index.js.map +1 -1
  28. package/lib/src/Lib/General/potion_effects.d.ts +2 -0
  29. package/lib/src/Lib/General/potion_effects.js +27 -0
  30. package/lib/src/Lib/General/potion_effects.js.map +1 -0
  31. package/lib/src/Lib/General/potion_modifiers.d.ts +2 -0
  32. package/lib/src/Lib/General/potion_modifiers.js +10 -0
  33. package/lib/src/Lib/General/potion_modifiers.js.map +1 -0
  34. package/lib/src/Lib/General/potion_types.d.ts +2 -0
  35. package/lib/src/Lib/General/potion_types.js +10 -0
  36. package/lib/src/Lib/General/potion_types.js.map +1 -0
  37. package/lib/src/Lib/Types/BehaviorPack/BehaviorPack.d.ts +3 -0
  38. package/lib/src/Lib/Types/BehaviorPack/Feature.d.ts +4 -0
  39. package/lib/src/Lib/Types/BehaviorPack/Feature.js +3 -0
  40. package/lib/src/Lib/Types/BehaviorPack/Feature.js.map +1 -0
  41. package/lib/src/Lib/Types/BehaviorPack/index.d.ts +1 -0
  42. package/lib/src/Lib/Types/BehaviorPack/index.js +1 -0
  43. package/lib/src/Lib/Types/BehaviorPack/index.js.map +1 -1
  44. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js +940 -136
  45. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js.map +1 -1
  46. package/lib/src/Lib/Vanilla/BehaviorPack/features.d.ts +2 -0
  47. package/lib/src/Lib/Vanilla/BehaviorPack/features.js +24 -0
  48. package/lib/src/Lib/Vanilla/BehaviorPack/features.js.map +1 -0
  49. package/lib/src/Lib/Vanilla/BehaviorPack/index.d.ts +1 -0
  50. package/lib/src/Lib/Vanilla/BehaviorPack/index.js +1 -0
  51. package/lib/src/Lib/Vanilla/BehaviorPack/index.js.map +1 -1
  52. package/lib/src/Lib/Vanilla/BehaviorPack/items.js +2570 -426
  53. package/lib/src/Lib/Vanilla/BehaviorPack/items.js.map +1 -1
  54. package/lib/src/main.d.ts +24 -3
  55. package/lib/src/main.js +29 -3
  56. package/lib/src/main.js.map +1 -1
  57. package/package.json +1 -1
@@ -151,6 +151,18 @@ exports.Blocks = [
151
151
  "id": "minecraft:andesite",
152
152
  "properties": []
153
153
  },
154
+ {
155
+ "id": "minecraft:andesite_double_slab",
156
+ "properties": [
157
+ "minecraft:vertical_half"
158
+ ]
159
+ },
160
+ {
161
+ "id": "minecraft:andesite_slab",
162
+ "properties": [
163
+ "minecraft:vertical_half"
164
+ ]
165
+ },
154
166
  {
155
167
  "id": "minecraft:andesite_stairs",
156
168
  "properties": [
@@ -158,10 +170,19 @@ exports.Blocks = [
158
170
  "weirdo_direction"
159
171
  ]
160
172
  },
173
+ {
174
+ "id": "minecraft:andesite_wall",
175
+ "properties": [
176
+ "wall_connection_type_east",
177
+ "wall_connection_type_north",
178
+ "wall_connection_type_south",
179
+ "wall_connection_type_west",
180
+ "wall_post_bit"
181
+ ]
182
+ },
161
183
  {
162
184
  "id": "minecraft:anvil",
163
185
  "properties": [
164
- "damage",
165
186
  "minecraft:cardinal_direction"
166
187
  ]
167
188
  },
@@ -682,6 +703,12 @@ exports.Blocks = [
682
703
  "coral_fan_direction"
683
704
  ]
684
705
  },
706
+ {
707
+ "id": "minecraft:brain_coral_wall_fan",
708
+ "properties": [
709
+ "coral_direction"
710
+ ]
711
+ },
685
712
  {
686
713
  "id": "minecraft:brewing_stand",
687
714
  "properties": [
@@ -694,6 +721,12 @@ exports.Blocks = [
694
721
  "id": "minecraft:brick_block",
695
722
  "properties": []
696
723
  },
724
+ {
725
+ "id": "minecraft:brick_double_slab",
726
+ "properties": [
727
+ "minecraft:vertical_half"
728
+ ]
729
+ },
697
730
  {
698
731
  "id": "minecraft:brick_slab",
699
732
  "properties": [
@@ -707,6 +740,16 @@ exports.Blocks = [
707
740
  "weirdo_direction"
708
741
  ]
709
742
  },
743
+ {
744
+ "id": "minecraft:brick_wall",
745
+ "properties": [
746
+ "wall_connection_type_east",
747
+ "wall_connection_type_north",
748
+ "wall_connection_type_south",
749
+ "wall_connection_type_west",
750
+ "wall_post_bit"
751
+ ]
752
+ },
710
753
  {
711
754
  "id": "minecraft:brown_candle",
712
755
  "properties": [
@@ -788,6 +831,12 @@ exports.Blocks = [
788
831
  "coral_fan_direction"
789
832
  ]
790
833
  },
834
+ {
835
+ "id": "minecraft:bubble_coral_wall_fan",
836
+ "properties": [
837
+ "coral_direction"
838
+ ]
839
+ },
791
840
  {
792
841
  "id": "minecraft:budding_amethyst",
793
842
  "properties": []
@@ -997,8 +1046,7 @@ exports.Blocks = [
997
1046
  {
998
1047
  "id": "minecraft:cherry_wood",
999
1048
  "properties": [
1000
- "pillar_axis",
1001
- "stripped_bit"
1049
+ "pillar_axis"
1002
1050
  ]
1003
1051
  },
1004
1052
  {
@@ -1007,6 +1055,12 @@ exports.Blocks = [
1007
1055
  "minecraft:cardinal_direction"
1008
1056
  ]
1009
1057
  },
1058
+ {
1059
+ "id": "minecraft:chipped_anvil",
1060
+ "properties": [
1061
+ "minecraft:cardinal_direction"
1062
+ ]
1063
+ },
1010
1064
  {
1011
1065
  "id": "minecraft:chiseled_bookshelf",
1012
1066
  "properties": [
@@ -1030,6 +1084,28 @@ exports.Blocks = [
1030
1084
  "id": "minecraft:chiseled_polished_blackstone",
1031
1085
  "properties": []
1032
1086
  },
1087
+ {
1088
+ "id": "minecraft:chiseled_quartz_block",
1089
+ "properties": [
1090
+ "pillar_axis"
1091
+ ]
1092
+ },
1093
+ {
1094
+ "id": "minecraft:chiseled_red_sandstone",
1095
+ "properties": []
1096
+ },
1097
+ {
1098
+ "id": "minecraft:chiseled_resin_bricks",
1099
+ "properties": []
1100
+ },
1101
+ {
1102
+ "id": "minecraft:chiseled_sandstone",
1103
+ "properties": []
1104
+ },
1105
+ {
1106
+ "id": "minecraft:chiseled_stone_bricks",
1107
+ "properties": []
1108
+ },
1033
1109
  {
1034
1110
  "id": "minecraft:chiseled_tuff",
1035
1111
  "properties": []
@@ -1053,7 +1129,7 @@ exports.Blocks = [
1053
1129
  "properties": []
1054
1130
  },
1055
1131
  {
1056
- "id": "minecraft:client_request_placeholder_block",
1132
+ "id": "minecraft:closed_eyeblossom",
1057
1133
  "properties": []
1058
1134
  },
1059
1135
  {
@@ -1064,6 +1140,10 @@ exports.Blocks = [
1064
1140
  "id": "minecraft:coal_ore",
1065
1141
  "properties": []
1066
1142
  },
1143
+ {
1144
+ "id": "minecraft:coarse_dirt",
1145
+ "properties": []
1146
+ },
1067
1147
  {
1068
1148
  "id": "minecraft:cobbled_deepslate",
1069
1149
  "properties": []
@@ -1101,6 +1181,12 @@ exports.Blocks = [
1101
1181
  "id": "minecraft:cobblestone",
1102
1182
  "properties": []
1103
1183
  },
1184
+ {
1185
+ "id": "minecraft:cobblestone_double_slab",
1186
+ "properties": [
1187
+ "minecraft:vertical_half"
1188
+ ]
1189
+ },
1104
1190
  {
1105
1191
  "id": "minecraft:cobblestone_slab",
1106
1192
  "properties": [
@@ -1110,7 +1196,6 @@ exports.Blocks = [
1110
1196
  {
1111
1197
  "id": "minecraft:cobblestone_wall",
1112
1198
  "properties": [
1113
- "wall_block_type",
1114
1199
  "wall_connection_type_east",
1115
1200
  "wall_connection_type_north",
1116
1201
  "wall_connection_type_south",
@@ -1126,16 +1211,26 @@ exports.Blocks = [
1126
1211
  ]
1127
1212
  },
1128
1213
  {
1129
- "id": "minecraft:colored_torch_bp",
1214
+ "id": "minecraft:colored_torch_blue",
1215
+ "properties": [
1216
+ "torch_facing_direction"
1217
+ ]
1218
+ },
1219
+ {
1220
+ "id": "minecraft:colored_torch_green",
1221
+ "properties": [
1222
+ "torch_facing_direction"
1223
+ ]
1224
+ },
1225
+ {
1226
+ "id": "minecraft:colored_torch_purple",
1130
1227
  "properties": [
1131
- "color_bit",
1132
1228
  "torch_facing_direction"
1133
1229
  ]
1134
1230
  },
1135
1231
  {
1136
- "id": "minecraft:colored_torch_rg",
1232
+ "id": "minecraft:colored_torch_red",
1137
1233
  "properties": [
1138
- "color_bit",
1139
1234
  "torch_facing_direction"
1140
1235
  ]
1141
1236
  },
@@ -1152,6 +1247,12 @@ exports.Blocks = [
1152
1247
  "composter_fill_level"
1153
1248
  ]
1154
1249
  },
1250
+ {
1251
+ "id": "minecraft:compound_creator",
1252
+ "properties": [
1253
+ "direction"
1254
+ ]
1255
+ },
1155
1256
  {
1156
1257
  "id": "minecraft:conduit",
1157
1258
  "properties": []
@@ -1192,30 +1293,6 @@ exports.Blocks = [
1192
1293
  "upside_down_bit"
1193
1294
  ]
1194
1295
  },
1195
- {
1196
- "id": "minecraft:coral_fan_hang",
1197
- "properties": [
1198
- "coral_direction",
1199
- "coral_hang_type_bit",
1200
- "dead_bit"
1201
- ]
1202
- },
1203
- {
1204
- "id": "minecraft:coral_fan_hang2",
1205
- "properties": [
1206
- "coral_direction",
1207
- "coral_hang_type_bit",
1208
- "dead_bit"
1209
- ]
1210
- },
1211
- {
1212
- "id": "minecraft:coral_fan_hang3",
1213
- "properties": [
1214
- "coral_direction",
1215
- "coral_hang_type_bit",
1216
- "dead_bit"
1217
- ]
1218
- },
1219
1296
  {
1220
1297
  "id": "minecraft:cornflower",
1221
1298
  "properties": []
@@ -1236,6 +1313,10 @@ exports.Blocks = [
1236
1313
  "id": "minecraft:cracked_polished_blackstone_bricks",
1237
1314
  "properties": []
1238
1315
  },
1316
+ {
1317
+ "id": "minecraft:cracked_stone_bricks",
1318
+ "properties": []
1319
+ },
1239
1320
  {
1240
1321
  "id": "minecraft:crafter",
1241
1322
  "properties": [
@@ -1248,6 +1329,20 @@ exports.Blocks = [
1248
1329
  "id": "minecraft:crafting_table",
1249
1330
  "properties": []
1250
1331
  },
1332
+ {
1333
+ "id": "minecraft:creaking_heart",
1334
+ "properties": [
1335
+ "active",
1336
+ "natural",
1337
+ "pillar_axis"
1338
+ ]
1339
+ },
1340
+ {
1341
+ "id": "minecraft:creeper_head",
1342
+ "properties": [
1343
+ "facing_direction"
1344
+ ]
1345
+ },
1251
1346
  {
1252
1347
  "id": "minecraft:crimson_button",
1253
1348
  "properties": [
@@ -1379,6 +1474,38 @@ exports.Blocks = [
1379
1474
  "weirdo_direction"
1380
1475
  ]
1381
1476
  },
1477
+ {
1478
+ "id": "minecraft:cut_red_sandstone",
1479
+ "properties": []
1480
+ },
1481
+ {
1482
+ "id": "minecraft:cut_red_sandstone_double_slab",
1483
+ "properties": [
1484
+ "minecraft:vertical_half"
1485
+ ]
1486
+ },
1487
+ {
1488
+ "id": "minecraft:cut_red_sandstone_slab",
1489
+ "properties": [
1490
+ "minecraft:vertical_half"
1491
+ ]
1492
+ },
1493
+ {
1494
+ "id": "minecraft:cut_sandstone",
1495
+ "properties": []
1496
+ },
1497
+ {
1498
+ "id": "minecraft:cut_sandstone_double_slab",
1499
+ "properties": [
1500
+ "minecraft:vertical_half"
1501
+ ]
1502
+ },
1503
+ {
1504
+ "id": "minecraft:cut_sandstone_slab",
1505
+ "properties": [
1506
+ "minecraft:vertical_half"
1507
+ ]
1508
+ },
1382
1509
  {
1383
1510
  "id": "minecraft:cyan_candle",
1384
1511
  "properties": [
@@ -1430,6 +1557,16 @@ exports.Blocks = [
1430
1557
  "id": "minecraft:cyan_wool",
1431
1558
  "properties": []
1432
1559
  },
1560
+ {
1561
+ "id": "minecraft:damaged_anvil",
1562
+ "properties": [
1563
+ "minecraft:cardinal_direction"
1564
+ ]
1565
+ },
1566
+ {
1567
+ "id": "minecraft:dandelion",
1568
+ "properties": []
1569
+ },
1433
1570
  {
1434
1571
  "id": "minecraft:dark_oak_button",
1435
1572
  "properties": [
@@ -1529,6 +1666,22 @@ exports.Blocks = [
1529
1666
  "pillar_axis"
1530
1667
  ]
1531
1668
  },
1669
+ {
1670
+ "id": "minecraft:dark_prismarine",
1671
+ "properties": []
1672
+ },
1673
+ {
1674
+ "id": "minecraft:dark_prismarine_double_slab",
1675
+ "properties": [
1676
+ "minecraft:vertical_half"
1677
+ ]
1678
+ },
1679
+ {
1680
+ "id": "minecraft:dark_prismarine_slab",
1681
+ "properties": [
1682
+ "minecraft:vertical_half"
1683
+ ]
1684
+ },
1532
1685
  {
1533
1686
  "id": "minecraft:dark_prismarine_stairs",
1534
1687
  "properties": [
@@ -1574,6 +1727,12 @@ exports.Blocks = [
1574
1727
  "coral_fan_direction"
1575
1728
  ]
1576
1729
  },
1730
+ {
1731
+ "id": "minecraft:dead_brain_coral_wall_fan",
1732
+ "properties": [
1733
+ "coral_direction"
1734
+ ]
1735
+ },
1577
1736
  {
1578
1737
  "id": "minecraft:dead_bubble_coral",
1579
1738
  "properties": []
@@ -1588,6 +1747,12 @@ exports.Blocks = [
1588
1747
  "coral_fan_direction"
1589
1748
  ]
1590
1749
  },
1750
+ {
1751
+ "id": "minecraft:dead_bubble_coral_wall_fan",
1752
+ "properties": [
1753
+ "coral_direction"
1754
+ ]
1755
+ },
1591
1756
  {
1592
1757
  "id": "minecraft:dead_fire_coral",
1593
1758
  "properties": []
@@ -1602,6 +1767,12 @@ exports.Blocks = [
1602
1767
  "coral_fan_direction"
1603
1768
  ]
1604
1769
  },
1770
+ {
1771
+ "id": "minecraft:dead_fire_coral_wall_fan",
1772
+ "properties": [
1773
+ "coral_direction"
1774
+ ]
1775
+ },
1605
1776
  {
1606
1777
  "id": "minecraft:dead_horn_coral",
1607
1778
  "properties": []
@@ -1616,6 +1787,12 @@ exports.Blocks = [
1616
1787
  "coral_fan_direction"
1617
1788
  ]
1618
1789
  },
1790
+ {
1791
+ "id": "minecraft:dead_horn_coral_wall_fan",
1792
+ "properties": [
1793
+ "coral_direction"
1794
+ ]
1795
+ },
1619
1796
  {
1620
1797
  "id": "minecraft:dead_tube_coral",
1621
1798
  "properties": []
@@ -1630,6 +1807,12 @@ exports.Blocks = [
1630
1807
  "coral_fan_direction"
1631
1808
  ]
1632
1809
  },
1810
+ {
1811
+ "id": "minecraft:dead_tube_coral_wall_fan",
1812
+ "properties": [
1813
+ "coral_direction"
1814
+ ]
1815
+ },
1633
1816
  {
1634
1817
  "id": "minecraft:deadbush",
1635
1818
  "properties": []
@@ -1767,6 +1950,18 @@ exports.Blocks = [
1767
1950
  "id": "minecraft:diorite",
1768
1951
  "properties": []
1769
1952
  },
1953
+ {
1954
+ "id": "minecraft:diorite_double_slab",
1955
+ "properties": [
1956
+ "minecraft:vertical_half"
1957
+ ]
1958
+ },
1959
+ {
1960
+ "id": "minecraft:diorite_slab",
1961
+ "properties": [
1962
+ "minecraft:vertical_half"
1963
+ ]
1964
+ },
1770
1965
  {
1771
1966
  "id": "minecraft:diorite_stairs",
1772
1967
  "properties": [
@@ -1775,11 +1970,19 @@ exports.Blocks = [
1775
1970
  ]
1776
1971
  },
1777
1972
  {
1778
- "id": "minecraft:dirt",
1973
+ "id": "minecraft:diorite_wall",
1779
1974
  "properties": [
1780
- "dirt_type"
1975
+ "wall_connection_type_east",
1976
+ "wall_connection_type_north",
1977
+ "wall_connection_type_south",
1978
+ "wall_connection_type_west",
1979
+ "wall_post_bit"
1781
1980
  ]
1782
1981
  },
1982
+ {
1983
+ "id": "minecraft:dirt",
1984
+ "properties": []
1985
+ },
1783
1986
  {
1784
1987
  "id": "minecraft:dirt_with_roots",
1785
1988
  "properties": []
@@ -1798,37 +2001,15 @@ exports.Blocks = [
1798
2001
  ]
1799
2002
  },
1800
2003
  {
1801
- "id": "minecraft:double_stone_block_slab",
1802
- "properties": [
1803
- "minecraft:vertical_half",
1804
- "stone_slab_type"
1805
- ]
1806
- },
1807
- {
1808
- "id": "minecraft:double_stone_block_slab2",
1809
- "properties": [
1810
- "minecraft:vertical_half",
1811
- "stone_slab_type_2"
1812
- ]
1813
- },
1814
- {
1815
- "id": "minecraft:double_stone_block_slab3",
1816
- "properties": [
1817
- "minecraft:vertical_half",
1818
- "stone_slab_type_3"
1819
- ]
2004
+ "id": "minecraft:dragon_egg",
2005
+ "properties": []
1820
2006
  },
1821
2007
  {
1822
- "id": "minecraft:double_stone_block_slab4",
2008
+ "id": "minecraft:dragon_head",
1823
2009
  "properties": [
1824
- "minecraft:vertical_half",
1825
- "stone_slab_type_4"
2010
+ "facing_direction"
1826
2011
  ]
1827
2012
  },
1828
- {
1829
- "id": "minecraft:dragon_egg",
1830
- "properties": []
1831
- },
1832
2013
  {
1833
2014
  "id": "minecraft:dried_kelp_block",
1834
2015
  "properties": []
@@ -1844,6 +2025,12 @@ exports.Blocks = [
1844
2025
  "triggered_bit"
1845
2026
  ]
1846
2027
  },
2028
+ {
2029
+ "id": "minecraft:element_constructor",
2030
+ "properties": [
2031
+ "direction"
2032
+ ]
2033
+ },
1847
2034
  {
1848
2035
  "id": "minecraft:emerald_block",
1849
2036
  "properties": []
@@ -1867,10 +2054,6 @@ exports.Blocks = [
1867
2054
  "id": "minecraft:end_bricks",
1868
2055
  "properties": []
1869
2056
  },
1870
- {
1871
- "id": "minecraft:end_gateway",
1872
- "properties": []
1873
- },
1874
2057
  {
1875
2058
  "id": "minecraft:end_portal",
1876
2059
  "properties": []
@@ -1892,6 +2075,28 @@ exports.Blocks = [
1892
2075
  "id": "minecraft:end_stone",
1893
2076
  "properties": []
1894
2077
  },
2078
+ {
2079
+ "id": "minecraft:end_stone_brick_double_slab",
2080
+ "properties": [
2081
+ "minecraft:vertical_half"
2082
+ ]
2083
+ },
2084
+ {
2085
+ "id": "minecraft:end_stone_brick_slab",
2086
+ "properties": [
2087
+ "minecraft:vertical_half"
2088
+ ]
2089
+ },
2090
+ {
2091
+ "id": "minecraft:end_stone_brick_wall",
2092
+ "properties": [
2093
+ "wall_connection_type_east",
2094
+ "wall_connection_type_north",
2095
+ "wall_connection_type_south",
2096
+ "wall_connection_type_west",
2097
+ "wall_post_bit"
2098
+ ]
2099
+ },
1895
2100
  {
1896
2101
  "id": "minecraft:ender_chest",
1897
2102
  "properties": [
@@ -1995,6 +2200,12 @@ exports.Blocks = [
1995
2200
  "coral_fan_direction"
1996
2201
  ]
1997
2202
  },
2203
+ {
2204
+ "id": "minecraft:fire_coral_wall_fan",
2205
+ "properties": [
2206
+ "coral_direction"
2207
+ ]
2208
+ },
1998
2209
  {
1999
2210
  "id": "minecraft:fletching_table",
2000
2211
  "properties": []
@@ -2071,10 +2282,6 @@ exports.Blocks = [
2071
2282
  "multi_face_direction_bits"
2072
2283
  ]
2073
2284
  },
2074
- {
2075
- "id": "minecraft:glowingobsidian",
2076
- "properties": []
2077
- },
2078
2285
  {
2079
2286
  "id": "minecraft:glowstone",
2080
2287
  "properties": []
@@ -2099,12 +2306,34 @@ exports.Blocks = [
2099
2306
  "properties": []
2100
2307
  },
2101
2308
  {
2102
- "id": "minecraft:granite_stairs",
2309
+ "id": "minecraft:granite_double_slab",
2103
2310
  "properties": [
2104
- "upside_down_bit",
2311
+ "minecraft:vertical_half"
2312
+ ]
2313
+ },
2314
+ {
2315
+ "id": "minecraft:granite_slab",
2316
+ "properties": [
2317
+ "minecraft:vertical_half"
2318
+ ]
2319
+ },
2320
+ {
2321
+ "id": "minecraft:granite_stairs",
2322
+ "properties": [
2323
+ "upside_down_bit",
2105
2324
  "weirdo_direction"
2106
2325
  ]
2107
2326
  },
2327
+ {
2328
+ "id": "minecraft:granite_wall",
2329
+ "properties": [
2330
+ "wall_connection_type_east",
2331
+ "wall_connection_type_north",
2332
+ "wall_connection_type_south",
2333
+ "wall_connection_type_west",
2334
+ "wall_post_bit"
2335
+ ]
2336
+ },
2108
2337
  {
2109
2338
  "id": "minecraft:grass_block",
2110
2339
  "properties": []
@@ -2416,10 +2645,28 @@ exports.Blocks = [
2416
2645
  "coral_fan_direction"
2417
2646
  ]
2418
2647
  },
2648
+ {
2649
+ "id": "minecraft:horn_coral_wall_fan",
2650
+ "properties": [
2651
+ "coral_direction"
2652
+ ]
2653
+ },
2419
2654
  {
2420
2655
  "id": "minecraft:ice",
2421
2656
  "properties": []
2422
2657
  },
2658
+ {
2659
+ "id": "minecraft:infested_chiseled_stone_bricks",
2660
+ "properties": []
2661
+ },
2662
+ {
2663
+ "id": "minecraft:infested_cobblestone",
2664
+ "properties": []
2665
+ },
2666
+ {
2667
+ "id": "minecraft:infested_cracked_stone_bricks",
2668
+ "properties": []
2669
+ },
2423
2670
  {
2424
2671
  "id": "minecraft:infested_deepslate",
2425
2672
  "properties": [
@@ -2427,15 +2674,15 @@ exports.Blocks = [
2427
2674
  ]
2428
2675
  },
2429
2676
  {
2430
- "id": "minecraft:info_update",
2677
+ "id": "minecraft:infested_mossy_stone_bricks",
2431
2678
  "properties": []
2432
2679
  },
2433
2680
  {
2434
- "id": "minecraft:info_update2",
2681
+ "id": "minecraft:infested_stone",
2435
2682
  "properties": []
2436
2683
  },
2437
2684
  {
2438
- "id": "minecraft:invisible_bedrock",
2685
+ "id": "minecraft:infested_stone_bricks",
2439
2686
  "properties": []
2440
2687
  },
2441
2688
  {
@@ -2595,6 +2842,12 @@ exports.Blocks = [
2595
2842
  "kelp_age"
2596
2843
  ]
2597
2844
  },
2845
+ {
2846
+ "id": "minecraft:lab_table",
2847
+ "properties": [
2848
+ "direction"
2849
+ ]
2850
+ },
2598
2851
  {
2599
2852
  "id": "minecraft:ladder",
2600
2853
  "properties": [
@@ -2648,10 +2901,68 @@ exports.Blocks = [
2648
2901
  ]
2649
2902
  },
2650
2903
  {
2651
- "id": "minecraft:light_block",
2652
- "properties": [
2653
- "block_light_level"
2654
- ]
2904
+ "id": "minecraft:light_block_0",
2905
+ "properties": []
2906
+ },
2907
+ {
2908
+ "id": "minecraft:light_block_1",
2909
+ "properties": []
2910
+ },
2911
+ {
2912
+ "id": "minecraft:light_block_10",
2913
+ "properties": []
2914
+ },
2915
+ {
2916
+ "id": "minecraft:light_block_11",
2917
+ "properties": []
2918
+ },
2919
+ {
2920
+ "id": "minecraft:light_block_12",
2921
+ "properties": []
2922
+ },
2923
+ {
2924
+ "id": "minecraft:light_block_13",
2925
+ "properties": []
2926
+ },
2927
+ {
2928
+ "id": "minecraft:light_block_14",
2929
+ "properties": []
2930
+ },
2931
+ {
2932
+ "id": "minecraft:light_block_15",
2933
+ "properties": []
2934
+ },
2935
+ {
2936
+ "id": "minecraft:light_block_2",
2937
+ "properties": []
2938
+ },
2939
+ {
2940
+ "id": "minecraft:light_block_3",
2941
+ "properties": []
2942
+ },
2943
+ {
2944
+ "id": "minecraft:light_block_4",
2945
+ "properties": []
2946
+ },
2947
+ {
2948
+ "id": "minecraft:light_block_5",
2949
+ "properties": []
2950
+ },
2951
+ {
2952
+ "id": "minecraft:light_block_6",
2953
+ "properties": []
2954
+ },
2955
+ {
2956
+ "id": "minecraft:light_block_7",
2957
+ "properties": []
2958
+ },
2959
+ {
2960
+ "id": "minecraft:light_block_8",
2961
+ "properties": []
2962
+ },
2963
+ {
2964
+ "id": "minecraft:light_block_9",
2965
+ "properties": []
2655
2966
  },
2656
2967
  {
2657
2968
  "id": "minecraft:light_blue_candle",
@@ -3036,8 +3347,13 @@ exports.Blocks = [
3036
3347
  {
3037
3348
  "id": "minecraft:mangrove_wood",
3038
3349
  "properties": [
3039
- "pillar_axis",
3040
- "stripped_bit"
3350
+ "pillar_axis"
3351
+ ]
3352
+ },
3353
+ {
3354
+ "id": "minecraft:material_reducer",
3355
+ "properties": [
3356
+ "direction"
3041
3357
  ]
3042
3358
  },
3043
3359
  {
@@ -3061,12 +3377,6 @@ exports.Blocks = [
3061
3377
  "id": "minecraft:mob_spawner",
3062
3378
  "properties": []
3063
3379
  },
3064
- {
3065
- "id": "minecraft:monster_egg",
3066
- "properties": [
3067
- "monster_egg_stone_type"
3068
- ]
3069
- },
3070
3380
  {
3071
3381
  "id": "minecraft:moss_block",
3072
3382
  "properties": []
@@ -3079,6 +3389,18 @@ exports.Blocks = [
3079
3389
  "id": "minecraft:mossy_cobblestone",
3080
3390
  "properties": []
3081
3391
  },
3392
+ {
3393
+ "id": "minecraft:mossy_cobblestone_double_slab",
3394
+ "properties": [
3395
+ "minecraft:vertical_half"
3396
+ ]
3397
+ },
3398
+ {
3399
+ "id": "minecraft:mossy_cobblestone_slab",
3400
+ "properties": [
3401
+ "minecraft:vertical_half"
3402
+ ]
3403
+ },
3082
3404
  {
3083
3405
  "id": "minecraft:mossy_cobblestone_stairs",
3084
3406
  "properties": [
@@ -3086,6 +3408,28 @@ exports.Blocks = [
3086
3408
  "weirdo_direction"
3087
3409
  ]
3088
3410
  },
3411
+ {
3412
+ "id": "minecraft:mossy_cobblestone_wall",
3413
+ "properties": [
3414
+ "wall_connection_type_east",
3415
+ "wall_connection_type_north",
3416
+ "wall_connection_type_south",
3417
+ "wall_connection_type_west",
3418
+ "wall_post_bit"
3419
+ ]
3420
+ },
3421
+ {
3422
+ "id": "minecraft:mossy_stone_brick_double_slab",
3423
+ "properties": [
3424
+ "minecraft:vertical_half"
3425
+ ]
3426
+ },
3427
+ {
3428
+ "id": "minecraft:mossy_stone_brick_slab",
3429
+ "properties": [
3430
+ "minecraft:vertical_half"
3431
+ ]
3432
+ },
3089
3433
  {
3090
3434
  "id": "minecraft:mossy_stone_brick_stairs",
3091
3435
  "properties": [
@@ -3094,7 +3438,17 @@ exports.Blocks = [
3094
3438
  ]
3095
3439
  },
3096
3440
  {
3097
- "id": "minecraft:moving_block",
3441
+ "id": "minecraft:mossy_stone_brick_wall",
3442
+ "properties": [
3443
+ "wall_connection_type_east",
3444
+ "wall_connection_type_north",
3445
+ "wall_connection_type_south",
3446
+ "wall_connection_type_west",
3447
+ "wall_post_bit"
3448
+ ]
3449
+ },
3450
+ {
3451
+ "id": "minecraft:mossy_stone_bricks",
3098
3452
  "properties": []
3099
3453
  },
3100
3454
  {
@@ -3140,6 +3494,12 @@ exports.Blocks = [
3140
3494
  "pillar_axis"
3141
3495
  ]
3142
3496
  },
3497
+ {
3498
+ "id": "minecraft:mushroom_stem",
3499
+ "properties": [
3500
+ "huge_mushroom_bits"
3501
+ ]
3502
+ },
3143
3503
  {
3144
3504
  "id": "minecraft:mycelium",
3145
3505
  "properties": []
@@ -3148,6 +3508,12 @@ exports.Blocks = [
3148
3508
  "id": "minecraft:nether_brick",
3149
3509
  "properties": []
3150
3510
  },
3511
+ {
3512
+ "id": "minecraft:nether_brick_double_slab",
3513
+ "properties": [
3514
+ "minecraft:vertical_half"
3515
+ ]
3516
+ },
3151
3517
  {
3152
3518
  "id": "minecraft:nether_brick_fence",
3153
3519
  "properties": []
@@ -3165,6 +3531,16 @@ exports.Blocks = [
3165
3531
  "weirdo_direction"
3166
3532
  ]
3167
3533
  },
3534
+ {
3535
+ "id": "minecraft:nether_brick_wall",
3536
+ "properties": [
3537
+ "wall_connection_type_east",
3538
+ "wall_connection_type_north",
3539
+ "wall_connection_type_south",
3540
+ "wall_connection_type_west",
3541
+ "wall_post_bit"
3542
+ ]
3543
+ },
3168
3544
  {
3169
3545
  "id": "minecraft:nether_gold_ore",
3170
3546
  "properties": []
@@ -3192,8 +3568,16 @@ exports.Blocks = [
3192
3568
  "properties": []
3193
3569
  },
3194
3570
  {
3195
- "id": "minecraft:netherreactor",
3196
- "properties": []
3571
+ "id": "minecraft:normal_stone_double_slab",
3572
+ "properties": [
3573
+ "minecraft:vertical_half"
3574
+ ]
3575
+ },
3576
+ {
3577
+ "id": "minecraft:normal_stone_slab",
3578
+ "properties": [
3579
+ "minecraft:vertical_half"
3580
+ ]
3197
3581
  },
3198
3582
  {
3199
3583
  "id": "minecraft:normal_stone_stairs",
@@ -3284,6 +3668,10 @@ exports.Blocks = [
3284
3668
  "pillar_axis"
3285
3669
  ]
3286
3670
  },
3671
+ {
3672
+ "id": "minecraft:open_eyeblossom",
3673
+ "properties": []
3674
+ },
3287
3675
  {
3288
3676
  "id": "minecraft:orange_candle",
3289
3677
  "properties": [
@@ -3410,6 +3798,137 @@ exports.Blocks = [
3410
3798
  "id": "minecraft:packed_mud",
3411
3799
  "properties": []
3412
3800
  },
3801
+ {
3802
+ "id": "minecraft:pale_hanging_moss",
3803
+ "properties": [
3804
+ "tip"
3805
+ ]
3806
+ },
3807
+ {
3808
+ "id": "minecraft:pale_moss_block",
3809
+ "properties": []
3810
+ },
3811
+ {
3812
+ "id": "minecraft:pale_moss_carpet",
3813
+ "properties": [
3814
+ "pale_moss_carpet_side_east",
3815
+ "pale_moss_carpet_side_north",
3816
+ "pale_moss_carpet_side_south",
3817
+ "pale_moss_carpet_side_west",
3818
+ "upper_block_bit"
3819
+ ]
3820
+ },
3821
+ {
3822
+ "id": "minecraft:pale_oak_button",
3823
+ "properties": [
3824
+ "button_pressed_bit",
3825
+ "facing_direction"
3826
+ ]
3827
+ },
3828
+ {
3829
+ "id": "minecraft:pale_oak_door",
3830
+ "properties": [
3831
+ "direction",
3832
+ "door_hinge_bit",
3833
+ "open_bit",
3834
+ "upper_block_bit"
3835
+ ]
3836
+ },
3837
+ {
3838
+ "id": "minecraft:pale_oak_double_slab",
3839
+ "properties": [
3840
+ "minecraft:vertical_half"
3841
+ ]
3842
+ },
3843
+ {
3844
+ "id": "minecraft:pale_oak_fence",
3845
+ "properties": []
3846
+ },
3847
+ {
3848
+ "id": "minecraft:pale_oak_fence_gate",
3849
+ "properties": [
3850
+ "direction",
3851
+ "in_wall_bit",
3852
+ "open_bit"
3853
+ ]
3854
+ },
3855
+ {
3856
+ "id": "minecraft:pale_oak_hanging_sign",
3857
+ "properties": [
3858
+ "attached_bit",
3859
+ "facing_direction",
3860
+ "ground_sign_direction",
3861
+ "hanging"
3862
+ ]
3863
+ },
3864
+ {
3865
+ "id": "minecraft:pale_oak_leaves",
3866
+ "properties": [
3867
+ "persistent_bit",
3868
+ "update_bit"
3869
+ ]
3870
+ },
3871
+ {
3872
+ "id": "minecraft:pale_oak_log",
3873
+ "properties": [
3874
+ "pillar_axis"
3875
+ ]
3876
+ },
3877
+ {
3878
+ "id": "minecraft:pale_oak_planks",
3879
+ "properties": []
3880
+ },
3881
+ {
3882
+ "id": "minecraft:pale_oak_pressure_plate",
3883
+ "properties": [
3884
+ "redstone_signal"
3885
+ ]
3886
+ },
3887
+ {
3888
+ "id": "minecraft:pale_oak_sapling",
3889
+ "properties": [
3890
+ "age_bit"
3891
+ ]
3892
+ },
3893
+ {
3894
+ "id": "minecraft:pale_oak_slab",
3895
+ "properties": [
3896
+ "minecraft:vertical_half"
3897
+ ]
3898
+ },
3899
+ {
3900
+ "id": "minecraft:pale_oak_stairs",
3901
+ "properties": [
3902
+ "upside_down_bit",
3903
+ "weirdo_direction"
3904
+ ]
3905
+ },
3906
+ {
3907
+ "id": "minecraft:pale_oak_standing_sign",
3908
+ "properties": [
3909
+ "ground_sign_direction"
3910
+ ]
3911
+ },
3912
+ {
3913
+ "id": "minecraft:pale_oak_trapdoor",
3914
+ "properties": [
3915
+ "direction",
3916
+ "open_bit",
3917
+ "upside_down_bit"
3918
+ ]
3919
+ },
3920
+ {
3921
+ "id": "minecraft:pale_oak_wall_sign",
3922
+ "properties": [
3923
+ "facing_direction"
3924
+ ]
3925
+ },
3926
+ {
3927
+ "id": "minecraft:pale_oak_wood",
3928
+ "properties": [
3929
+ "pillar_axis"
3930
+ ]
3931
+ },
3413
3932
  {
3414
3933
  "id": "minecraft:pearlescent_froglight",
3415
3934
  "properties": [
@@ -3422,12 +3941,24 @@ exports.Blocks = [
3422
3941
  "upper_block_bit"
3423
3942
  ]
3424
3943
  },
3944
+ {
3945
+ "id": "minecraft:petrified_oak_double_slab",
3946
+ "properties": [
3947
+ "minecraft:vertical_half"
3948
+ ]
3949
+ },
3425
3950
  {
3426
3951
  "id": "minecraft:petrified_oak_slab",
3427
3952
  "properties": [
3428
3953
  "minecraft:vertical_half"
3429
3954
  ]
3430
3955
  },
3956
+ {
3957
+ "id": "minecraft:piglin_head",
3958
+ "properties": [
3959
+ "facing_direction"
3960
+ ]
3961
+ },
3431
3962
  {
3432
3963
  "id": "minecraft:pink_candle",
3433
3964
  "properties": [
@@ -3515,6 +4046,12 @@ exports.Blocks = [
3515
4046
  "upper_block_bit"
3516
4047
  ]
3517
4048
  },
4049
+ {
4050
+ "id": "minecraft:player_head",
4051
+ "properties": [
4052
+ "facing_direction"
4053
+ ]
4054
+ },
3518
4055
  {
3519
4056
  "id": "minecraft:podzol",
3520
4057
  "properties": []
@@ -3530,6 +4067,18 @@ exports.Blocks = [
3530
4067
  "id": "minecraft:polished_andesite",
3531
4068
  "properties": []
3532
4069
  },
4070
+ {
4071
+ "id": "minecraft:polished_andesite_double_slab",
4072
+ "properties": [
4073
+ "minecraft:vertical_half"
4074
+ ]
4075
+ },
4076
+ {
4077
+ "id": "minecraft:polished_andesite_slab",
4078
+ "properties": [
4079
+ "minecraft:vertical_half"
4080
+ ]
4081
+ },
3533
4082
  {
3534
4083
  "id": "minecraft:polished_andesite_stairs",
3535
4084
  "properties": [
@@ -3659,6 +4208,18 @@ exports.Blocks = [
3659
4208
  "id": "minecraft:polished_diorite",
3660
4209
  "properties": []
3661
4210
  },
4211
+ {
4212
+ "id": "minecraft:polished_diorite_double_slab",
4213
+ "properties": [
4214
+ "minecraft:vertical_half"
4215
+ ]
4216
+ },
4217
+ {
4218
+ "id": "minecraft:polished_diorite_slab",
4219
+ "properties": [
4220
+ "minecraft:vertical_half"
4221
+ ]
4222
+ },
3662
4223
  {
3663
4224
  "id": "minecraft:polished_diorite_stairs",
3664
4225
  "properties": [
@@ -3670,6 +4231,18 @@ exports.Blocks = [
3670
4231
  "id": "minecraft:polished_granite",
3671
4232
  "properties": []
3672
4233
  },
4234
+ {
4235
+ "id": "minecraft:polished_granite_double_slab",
4236
+ "properties": [
4237
+ "minecraft:vertical_half"
4238
+ ]
4239
+ },
4240
+ {
4241
+ "id": "minecraft:polished_granite_slab",
4242
+ "properties": [
4243
+ "minecraft:vertical_half"
4244
+ ]
4245
+ },
3673
4246
  {
3674
4247
  "id": "minecraft:polished_granite_stairs",
3675
4248
  "properties": [
@@ -3747,10 +4320,24 @@ exports.Blocks = [
3747
4320
  },
3748
4321
  {
3749
4322
  "id": "minecraft:prismarine",
4323
+ "properties": []
4324
+ },
4325
+ {
4326
+ "id": "minecraft:prismarine_brick_double_slab",
4327
+ "properties": [
4328
+ "minecraft:vertical_half"
4329
+ ]
4330
+ },
4331
+ {
4332
+ "id": "minecraft:prismarine_brick_slab",
3750
4333
  "properties": [
3751
- "prismarine_block_type"
4334
+ "minecraft:vertical_half"
3752
4335
  ]
3753
4336
  },
4337
+ {
4338
+ "id": "minecraft:prismarine_bricks",
4339
+ "properties": []
4340
+ },
3754
4341
  {
3755
4342
  "id": "minecraft:prismarine_bricks_stairs",
3756
4343
  "properties": [
@@ -3758,6 +4345,18 @@ exports.Blocks = [
3758
4345
  "weirdo_direction"
3759
4346
  ]
3760
4347
  },
4348
+ {
4349
+ "id": "minecraft:prismarine_double_slab",
4350
+ "properties": [
4351
+ "minecraft:vertical_half"
4352
+ ]
4353
+ },
4354
+ {
4355
+ "id": "minecraft:prismarine_slab",
4356
+ "properties": [
4357
+ "minecraft:vertical_half"
4358
+ ]
4359
+ },
3761
4360
  {
3762
4361
  "id": "minecraft:prismarine_stairs",
3763
4362
  "properties": [
@@ -3765,6 +4364,16 @@ exports.Blocks = [
3765
4364
  "weirdo_direction"
3766
4365
  ]
3767
4366
  },
4367
+ {
4368
+ "id": "minecraft:prismarine_wall",
4369
+ "properties": [
4370
+ "wall_connection_type_east",
4371
+ "wall_connection_type_north",
4372
+ "wall_connection_type_south",
4373
+ "wall_connection_type_west",
4374
+ "wall_post_bit"
4375
+ ]
4376
+ },
3768
4377
  {
3769
4378
  "id": "minecraft:pumpkin",
3770
4379
  "properties": [
@@ -3832,10 +4441,27 @@ exports.Blocks = [
3832
4441
  {
3833
4442
  "id": "minecraft:purpur_block",
3834
4443
  "properties": [
3835
- "chisel_type",
3836
4444
  "pillar_axis"
3837
4445
  ]
3838
4446
  },
4447
+ {
4448
+ "id": "minecraft:purpur_double_slab",
4449
+ "properties": [
4450
+ "minecraft:vertical_half"
4451
+ ]
4452
+ },
4453
+ {
4454
+ "id": "minecraft:purpur_pillar",
4455
+ "properties": [
4456
+ "pillar_axis"
4457
+ ]
4458
+ },
4459
+ {
4460
+ "id": "minecraft:purpur_slab",
4461
+ "properties": [
4462
+ "minecraft:vertical_half"
4463
+ ]
4464
+ },
3839
4465
  {
3840
4466
  "id": "minecraft:purpur_stairs",
3841
4467
  "properties": [
@@ -3846,7 +4472,6 @@ exports.Blocks = [
3846
4472
  {
3847
4473
  "id": "minecraft:quartz_block",
3848
4474
  "properties": [
3849
- "chisel_type",
3850
4475
  "pillar_axis"
3851
4476
  ]
3852
4477
  },
@@ -3854,10 +4479,22 @@ exports.Blocks = [
3854
4479
  "id": "minecraft:quartz_bricks",
3855
4480
  "properties": []
3856
4481
  },
4482
+ {
4483
+ "id": "minecraft:quartz_double_slab",
4484
+ "properties": [
4485
+ "minecraft:vertical_half"
4486
+ ]
4487
+ },
3857
4488
  {
3858
4489
  "id": "minecraft:quartz_ore",
3859
4490
  "properties": []
3860
4491
  },
4492
+ {
4493
+ "id": "minecraft:quartz_pillar",
4494
+ "properties": [
4495
+ "pillar_axis"
4496
+ ]
4497
+ },
3861
4498
  {
3862
4499
  "id": "minecraft:quartz_slab",
3863
4500
  "properties": [
@@ -3934,6 +4571,18 @@ exports.Blocks = [
3934
4571
  "id": "minecraft:red_nether_brick",
3935
4572
  "properties": []
3936
4573
  },
4574
+ {
4575
+ "id": "minecraft:red_nether_brick_double_slab",
4576
+ "properties": [
4577
+ "minecraft:vertical_half"
4578
+ ]
4579
+ },
4580
+ {
4581
+ "id": "minecraft:red_nether_brick_slab",
4582
+ "properties": [
4583
+ "minecraft:vertical_half"
4584
+ ]
4585
+ },
3937
4586
  {
3938
4587
  "id": "minecraft:red_nether_brick_stairs",
3939
4588
  "properties": [
@@ -3941,10 +4590,34 @@ exports.Blocks = [
3941
4590
  "weirdo_direction"
3942
4591
  ]
3943
4592
  },
4593
+ {
4594
+ "id": "minecraft:red_nether_brick_wall",
4595
+ "properties": [
4596
+ "wall_connection_type_east",
4597
+ "wall_connection_type_north",
4598
+ "wall_connection_type_south",
4599
+ "wall_connection_type_west",
4600
+ "wall_post_bit"
4601
+ ]
4602
+ },
4603
+ {
4604
+ "id": "minecraft:red_sand",
4605
+ "properties": []
4606
+ },
3944
4607
  {
3945
4608
  "id": "minecraft:red_sandstone",
4609
+ "properties": []
4610
+ },
4611
+ {
4612
+ "id": "minecraft:red_sandstone_double_slab",
4613
+ "properties": [
4614
+ "minecraft:vertical_half"
4615
+ ]
4616
+ },
4617
+ {
4618
+ "id": "minecraft:red_sandstone_slab",
3946
4619
  "properties": [
3947
- "sand_stone_type"
4620
+ "minecraft:vertical_half"
3948
4621
  ]
3949
4622
  },
3950
4623
  {
@@ -3954,6 +4627,16 @@ exports.Blocks = [
3954
4627
  "weirdo_direction"
3955
4628
  ]
3956
4629
  },
4630
+ {
4631
+ "id": "minecraft:red_sandstone_wall",
4632
+ "properties": [
4633
+ "wall_connection_type_east",
4634
+ "wall_connection_type_north",
4635
+ "wall_connection_type_south",
4636
+ "wall_connection_type_west",
4637
+ "wall_post_bit"
4638
+ ]
4639
+ },
3957
4640
  {
3958
4641
  "id": "minecraft:red_shulker_box",
3959
4642
  "properties": []
@@ -4020,9 +4703,48 @@ exports.Blocks = [
4020
4703
  ]
4021
4704
  },
4022
4705
  {
4023
- "id": "minecraft:reserved6",
4706
+ "id": "minecraft:resin_block",
4707
+ "properties": []
4708
+ },
4709
+ {
4710
+ "id": "minecraft:resin_brick_double_slab",
4711
+ "properties": [
4712
+ "minecraft:vertical_half"
4713
+ ]
4714
+ },
4715
+ {
4716
+ "id": "minecraft:resin_brick_slab",
4717
+ "properties": [
4718
+ "minecraft:vertical_half"
4719
+ ]
4720
+ },
4721
+ {
4722
+ "id": "minecraft:resin_brick_stairs",
4723
+ "properties": [
4724
+ "upside_down_bit",
4725
+ "weirdo_direction"
4726
+ ]
4727
+ },
4728
+ {
4729
+ "id": "minecraft:resin_brick_wall",
4730
+ "properties": [
4731
+ "wall_connection_type_east",
4732
+ "wall_connection_type_north",
4733
+ "wall_connection_type_south",
4734
+ "wall_connection_type_west",
4735
+ "wall_post_bit"
4736
+ ]
4737
+ },
4738
+ {
4739
+ "id": "minecraft:resin_bricks",
4024
4740
  "properties": []
4025
4741
  },
4742
+ {
4743
+ "id": "minecraft:resin_clump",
4744
+ "properties": [
4745
+ "multi_face_direction_bits"
4746
+ ]
4747
+ },
4026
4748
  {
4027
4749
  "id": "minecraft:respawn_anchor",
4028
4750
  "properties": [
@@ -4037,14 +4759,16 @@ exports.Blocks = [
4037
4759
  },
4038
4760
  {
4039
4761
  "id": "minecraft:sand",
4040
- "properties": [
4041
- "sand_type"
4042
- ]
4762
+ "properties": []
4043
4763
  },
4044
4764
  {
4045
4765
  "id": "minecraft:sandstone",
4766
+ "properties": []
4767
+ },
4768
+ {
4769
+ "id": "minecraft:sandstone_double_slab",
4046
4770
  "properties": [
4047
- "sand_stone_type"
4771
+ "minecraft:vertical_half"
4048
4772
  ]
4049
4773
  },
4050
4774
  {
@@ -4060,6 +4784,16 @@ exports.Blocks = [
4060
4784
  "weirdo_direction"
4061
4785
  ]
4062
4786
  },
4787
+ {
4788
+ "id": "minecraft:sandstone_wall",
4789
+ "properties": [
4790
+ "wall_connection_type_east",
4791
+ "wall_connection_type_north",
4792
+ "wall_connection_type_south",
4793
+ "wall_connection_type_west",
4794
+ "wall_post_bit"
4795
+ ]
4796
+ },
4063
4797
  {
4064
4798
  "id": "minecraft:scaffolding",
4065
4799
  "properties": [
@@ -4128,7 +4862,7 @@ exports.Blocks = [
4128
4862
  ]
4129
4863
  },
4130
4864
  {
4131
- "id": "minecraft:skull",
4865
+ "id": "minecraft:skeleton_skull",
4132
4866
  "properties": [
4133
4867
  "facing_direction"
4134
4868
  ]
@@ -4164,6 +4898,24 @@ exports.Blocks = [
4164
4898
  "id": "minecraft:smooth_basalt",
4165
4899
  "properties": []
4166
4900
  },
4901
+ {
4902
+ "id": "minecraft:smooth_quartz",
4903
+ "properties": [
4904
+ "pillar_axis"
4905
+ ]
4906
+ },
4907
+ {
4908
+ "id": "minecraft:smooth_quartz_double_slab",
4909
+ "properties": [
4910
+ "minecraft:vertical_half"
4911
+ ]
4912
+ },
4913
+ {
4914
+ "id": "minecraft:smooth_quartz_slab",
4915
+ "properties": [
4916
+ "minecraft:vertical_half"
4917
+ ]
4918
+ },
4167
4919
  {
4168
4920
  "id": "minecraft:smooth_quartz_stairs",
4169
4921
  "properties": [
@@ -4171,6 +4923,22 @@ exports.Blocks = [
4171
4923
  "weirdo_direction"
4172
4924
  ]
4173
4925
  },
4926
+ {
4927
+ "id": "minecraft:smooth_red_sandstone",
4928
+ "properties": []
4929
+ },
4930
+ {
4931
+ "id": "minecraft:smooth_red_sandstone_double_slab",
4932
+ "properties": [
4933
+ "minecraft:vertical_half"
4934
+ ]
4935
+ },
4936
+ {
4937
+ "id": "minecraft:smooth_red_sandstone_slab",
4938
+ "properties": [
4939
+ "minecraft:vertical_half"
4940
+ ]
4941
+ },
4174
4942
  {
4175
4943
  "id": "minecraft:smooth_red_sandstone_stairs",
4176
4944
  "properties": [
@@ -4178,6 +4946,22 @@ exports.Blocks = [
4178
4946
  "weirdo_direction"
4179
4947
  ]
4180
4948
  },
4949
+ {
4950
+ "id": "minecraft:smooth_sandstone",
4951
+ "properties": []
4952
+ },
4953
+ {
4954
+ "id": "minecraft:smooth_sandstone_double_slab",
4955
+ "properties": [
4956
+ "minecraft:vertical_half"
4957
+ ]
4958
+ },
4959
+ {
4960
+ "id": "minecraft:smooth_sandstone_slab",
4961
+ "properties": [
4962
+ "minecraft:vertical_half"
4963
+ ]
4964
+ },
4181
4965
  {
4182
4966
  "id": "minecraft:smooth_sandstone_stairs",
4183
4967
  "properties": [
@@ -4189,6 +4973,12 @@ exports.Blocks = [
4189
4973
  "id": "minecraft:smooth_stone",
4190
4974
  "properties": []
4191
4975
  },
4976
+ {
4977
+ "id": "minecraft:smooth_stone_double_slab",
4978
+ "properties": [
4979
+ "minecraft:vertical_half"
4980
+ ]
4981
+ },
4192
4982
  {
4193
4983
  "id": "minecraft:smooth_stone_slab",
4194
4984
  "properties": [
@@ -4247,9 +5037,7 @@ exports.Blocks = [
4247
5037
  },
4248
5038
  {
4249
5039
  "id": "minecraft:sponge",
4250
- "properties": [
4251
- "sponge_type"
4252
- ]
5040
+ "properties": []
4253
5041
  },
4254
5042
  {
4255
5043
  "id": "minecraft:spore_blossom",
@@ -4395,38 +5183,37 @@ exports.Blocks = [
4395
5183
  "properties": []
4396
5184
  },
4397
5185
  {
4398
- "id": "minecraft:stone_block_slab2",
5186
+ "id": "minecraft:stone_brick_double_slab",
4399
5187
  "properties": [
4400
- "minecraft:vertical_half",
4401
- "stone_slab_type_2"
5188
+ "minecraft:vertical_half"
4402
5189
  ]
4403
5190
  },
4404
5191
  {
4405
- "id": "minecraft:stone_block_slab3",
5192
+ "id": "minecraft:stone_brick_slab",
4406
5193
  "properties": [
4407
- "minecraft:vertical_half",
4408
- "stone_slab_type_3"
5194
+ "minecraft:vertical_half"
4409
5195
  ]
4410
5196
  },
4411
5197
  {
4412
- "id": "minecraft:stone_block_slab4",
5198
+ "id": "minecraft:stone_brick_stairs",
4413
5199
  "properties": [
4414
- "minecraft:vertical_half",
4415
- "stone_slab_type_4"
5200
+ "upside_down_bit",
5201
+ "weirdo_direction"
4416
5202
  ]
4417
5203
  },
4418
5204
  {
4419
- "id": "minecraft:stone_brick_slab",
5205
+ "id": "minecraft:stone_brick_wall",
4420
5206
  "properties": [
4421
- "minecraft:vertical_half"
5207
+ "wall_connection_type_east",
5208
+ "wall_connection_type_north",
5209
+ "wall_connection_type_south",
5210
+ "wall_connection_type_west",
5211
+ "wall_post_bit"
4422
5212
  ]
4423
5213
  },
4424
5214
  {
4425
- "id": "minecraft:stone_brick_stairs",
4426
- "properties": [
4427
- "upside_down_bit",
4428
- "weirdo_direction"
4429
- ]
5215
+ "id": "minecraft:stone_bricks",
5216
+ "properties": []
4430
5217
  },
4431
5218
  {
4432
5219
  "id": "minecraft:stone_button",
@@ -4448,16 +5235,6 @@ exports.Blocks = [
4448
5235
  "weirdo_direction"
4449
5236
  ]
4450
5237
  },
4451
- {
4452
- "id": "minecraft:stonebrick",
4453
- "properties": [
4454
- "stone_brick_type"
4455
- ]
4456
- },
4457
- {
4458
- "id": "minecraft:stonecutter",
4459
- "properties": []
4460
- },
4461
5238
  {
4462
5239
  "id": "minecraft:stonecutter_block",
4463
5240
  "properties": [
@@ -4566,6 +5343,18 @@ exports.Blocks = [
4566
5343
  "pillar_axis"
4567
5344
  ]
4568
5345
  },
5346
+ {
5347
+ "id": "minecraft:stripped_pale_oak_log",
5348
+ "properties": [
5349
+ "pillar_axis"
5350
+ ]
5351
+ },
5352
+ {
5353
+ "id": "minecraft:stripped_pale_oak_wood",
5354
+ "properties": [
5355
+ "pillar_axis"
5356
+ ]
5357
+ },
4569
5358
  {
4570
5359
  "id": "minecraft:stripped_spruce_log",
4571
5360
  "properties": [
@@ -4598,9 +5387,7 @@ exports.Blocks = [
4598
5387
  },
4599
5388
  {
4600
5389
  "id": "minecraft:structure_void",
4601
- "properties": [
4602
- "structure_void_type"
4603
- ]
5390
+ "properties": []
4604
5391
  },
4605
5392
  {
4606
5393
  "id": "minecraft:sunflower",
@@ -4645,7 +5432,6 @@ exports.Blocks = [
4645
5432
  {
4646
5433
  "id": "minecraft:tnt",
4647
5434
  "properties": [
4648
- "allow_underwater_bit",
4649
5435
  "explode_bit"
4650
5436
  ]
4651
5437
  },
@@ -4717,6 +5503,12 @@ exports.Blocks = [
4717
5503
  "coral_fan_direction"
4718
5504
  ]
4719
5505
  },
5506
+ {
5507
+ "id": "minecraft:tube_coral_wall_fan",
5508
+ "properties": [
5509
+ "coral_direction"
5510
+ ]
5511
+ },
4720
5512
  {
4721
5513
  "id": "minecraft:tuff",
4722
5514
  "properties": []
@@ -5286,6 +6078,10 @@ exports.Blocks = [
5286
6078
  "weeping_vines_age"
5287
6079
  ]
5288
6080
  },
6081
+ {
6082
+ "id": "minecraft:wet_sponge",
6083
+ "properties": []
6084
+ },
5289
6085
  {
5290
6086
  "id": "minecraft:wheat",
5291
6087
  "properties": [
@@ -5351,6 +6147,12 @@ exports.Blocks = [
5351
6147
  "id": "minecraft:wither_rose",
5352
6148
  "properties": []
5353
6149
  },
6150
+ {
6151
+ "id": "minecraft:wither_skeleton_skull",
6152
+ "properties": [
6153
+ "facing_direction"
6154
+ ]
6155
+ },
5354
6156
  {
5355
6157
  "id": "minecraft:wooden_button",
5356
6158
  "properties": [
@@ -5398,10 +6200,6 @@ exports.Blocks = [
5398
6200
  "id": "minecraft:yellow_concrete_powder",
5399
6201
  "properties": []
5400
6202
  },
5401
- {
5402
- "id": "minecraft:yellow_flower",
5403
- "properties": []
5404
- },
5405
6203
  {
5406
6204
  "id": "minecraft:yellow_glazed_terracotta",
5407
6205
  "properties": [
@@ -5427,6 +6225,12 @@ exports.Blocks = [
5427
6225
  {
5428
6226
  "id": "minecraft:yellow_wool",
5429
6227
  "properties": []
6228
+ },
6229
+ {
6230
+ "id": "minecraft:zombie_head",
6231
+ "properties": [
6232
+ "facing_direction"
6233
+ ]
5430
6234
  }
5431
6235
  ];
5432
6236
  //# sourceMappingURL=blocks.js.map