-
Notifications
You must be signed in to change notification settings - Fork 1
/
block_properties.txt
1219 lines (1219 loc) · 67.2 KB
/
block_properties.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
minecraft:acacia_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:acacia_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:acacia_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:acacia_fence{}
minecraft:acacia_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:acacia_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:acacia_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:acacia_log{pillar_axis[x, y, z]}
minecraft:acacia_planks{}
minecraft:acacia_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:acacia_sapling{age_bit[0, 1]}
minecraft:acacia_slab{minecraft:vertical_half[top, bottom]}
minecraft:acacia_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:acacia_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:acacia_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:acacia_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:acacia_wood{pillar_axis[x, y, z]}
minecraft:activator_rail{rail_data_bit[0, 1], rail_direction[0, 1, 2, 3, 4, 5]}
minecraft:air{}
minecraft:allium{}
minecraft:allow{}
minecraft:amethyst_block{}
minecraft:amethyst_cluster{minecraft:block_face[east, south, north, west, up, down]}
minecraft:ancient_debris{}
minecraft:andesite{}
minecraft:andesite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:andesite_slab{minecraft:vertical_half[top, bottom]}
minecraft:andesite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:andesite_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:anvil{minecraft:cardinal_direction[east, south, north, west]}
minecraft:azalea{}
minecraft:azalea_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:azalea_leaves_flowered{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:azure_bluet{}
minecraft:bamboo{age_bit[0, 1], bamboo_leaf_size[small_leaves, large_leaves, no_leaves], bamboo_stalk_thickness[thick, thin]}
minecraft:bamboo_block{pillar_axis[x, y, z]}
minecraft:bamboo_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:bamboo_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:bamboo_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:bamboo_fence{}
minecraft:bamboo_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:bamboo_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:bamboo_mosaic{}
minecraft:bamboo_mosaic_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:bamboo_mosaic_slab{minecraft:vertical_half[top, bottom]}
minecraft:bamboo_mosaic_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:bamboo_planks{}
minecraft:bamboo_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:bamboo_sapling{age_bit[0, 1]}
minecraft:bamboo_slab{minecraft:vertical_half[top, bottom]}
minecraft:bamboo_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:bamboo_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:bamboo_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:bamboo_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:barrel{facing_direction[0, 1, 2, 3, 4, 5], open_bit[0, 1]}
minecraft:barrier{}
minecraft:basalt{pillar_axis[x, y, z]}
minecraft:beacon{}
minecraft:bed{direction[0, 1, 2, 3], head_piece_bit[0, 1], occupied_bit[0, 1]}
minecraft:bedrock{infiniburn_bit[0, 1]}
minecraft:bee_nest{direction[0, 1, 2, 3], honey_level[0, 1, 2, 3, 4, 5]}
minecraft:beehive{direction[0, 1, 2, 3], honey_level[0, 1, 2, 3, 4, 5]}
minecraft:beetroot{growth[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:bell{attachment[standing, side, multiple, hanging], direction[0, 1, 2, 3], toggle_bit[0, 1]}
minecraft:big_dripleaf{big_dripleaf_head[0, 1], big_dripleaf_tilt[unstable, partial_tilt, full_tilt, none], minecraft:cardinal_direction[east, south, north, west]}
minecraft:birch_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:birch_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:birch_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:birch_fence{}
minecraft:birch_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:birch_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:birch_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:birch_log{pillar_axis[x, y, z]}
minecraft:birch_planks{}
minecraft:birch_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:birch_sapling{age_bit[0, 1]}
minecraft:birch_slab{minecraft:vertical_half[top, bottom]}
minecraft:birch_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:birch_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:birch_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:birch_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:birch_wood{pillar_axis[x, y, z]}
minecraft:black_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:black_candle_cake{lit[0, 1]}
minecraft:black_carpet{}
minecraft:black_concrete{}
minecraft:black_concrete_powder{}
minecraft:black_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:black_shulker_box{}
minecraft:black_stained_glass{}
minecraft:black_stained_glass_pane{}
minecraft:black_terracotta{}
minecraft:black_wool{}
minecraft:blackstone{}
minecraft:blackstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:blackstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:blackstone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:blackstone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:blast_furnace{minecraft:cardinal_direction[east, south, north, west]}
minecraft:blue_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:blue_candle_cake{lit[0, 1]}
minecraft:blue_carpet{}
minecraft:blue_concrete{}
minecraft:blue_concrete_powder{}
minecraft:blue_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:blue_ice{}
minecraft:blue_orchid{}
minecraft:blue_shulker_box{}
minecraft:blue_stained_glass{}
minecraft:blue_stained_glass_pane{}
minecraft:blue_terracotta{}
minecraft:blue_wool{}
minecraft:bone_block{deprecated[0, 1, 2, 3], pillar_axis[x, y, z]}
minecraft:bookshelf{}
minecraft:border_block{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:brain_coral{}
minecraft:brain_coral_block{}
minecraft:brain_coral_fan{coral_fan_direction[0, 1]}
minecraft:brain_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:brewing_stand{brewing_stand_slot_a_bit[0, 1], brewing_stand_slot_b_bit[0, 1], brewing_stand_slot_c_bit[0, 1]}
minecraft:brick_block{}
minecraft:brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:brown_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:brown_candle_cake{lit[0, 1]}
minecraft:brown_carpet{}
minecraft:brown_concrete{}
minecraft:brown_concrete_powder{}
minecraft:brown_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:brown_mushroom{}
minecraft:brown_mushroom_block{huge_mushroom_bits[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:brown_shulker_box{}
minecraft:brown_stained_glass{}
minecraft:brown_stained_glass_pane{}
minecraft:brown_terracotta{}
minecraft:brown_wool{}
minecraft:bubble_column{drag_down[0, 1]}
minecraft:bubble_coral{}
minecraft:bubble_coral_block{}
minecraft:bubble_coral_fan{coral_fan_direction[0, 1]}
minecraft:bubble_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:budding_amethyst{}
minecraft:cactus{age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:cake{bite_counter[0, 1, 2, 3, 4, 5, 6]}
minecraft:calcite{}
minecraft:calibrated_sculk_sensor{minecraft:cardinal_direction[east, south, north, west], sculk_sensor_phase[0, 1, 2]}
minecraft:camera{}
minecraft:campfire{extinguished[0, 1], minecraft:cardinal_direction[east, south, north, west]}
minecraft:candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:candle_cake{lit[0, 1]}
minecraft:carrots{growth[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:cartography_table{}
minecraft:carved_pumpkin{minecraft:cardinal_direction[east, south, north, west]}
minecraft:cauldron{cauldron_liquid[powder_snow, lava, water], fill_level[0, 1, 2, 3, 4, 5, 6]}
minecraft:cave_vines{growing_plant_age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]}
minecraft:cave_vines_body_with_berries{growing_plant_age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]}
minecraft:cave_vines_head_with_berries{growing_plant_age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]}
minecraft:chain{pillar_axis[x, y, z]}
minecraft:chain_command_block{conditional_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:chemical_heat{}
minecraft:cherry_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:cherry_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:cherry_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:cherry_fence{}
minecraft:cherry_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:cherry_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:cherry_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:cherry_log{pillar_axis[x, y, z]}
minecraft:cherry_planks{}
minecraft:cherry_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:cherry_sapling{age_bit[0, 1]}
minecraft:cherry_slab{minecraft:vertical_half[top, bottom]}
minecraft:cherry_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:cherry_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:cherry_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:cherry_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:cherry_wood{pillar_axis[x, y, z]}
minecraft:chest{minecraft:cardinal_direction[east, south, north, west]}
minecraft:chipped_anvil{minecraft:cardinal_direction[east, south, north, west]}
minecraft:chiseled_bookshelf{books_stored[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63], direction[0, 1, 2, 3]}
minecraft:chiseled_copper{}
minecraft:chiseled_deepslate{}
minecraft:chiseled_nether_bricks{}
minecraft:chiseled_polished_blackstone{}
minecraft:chiseled_quartz_block{pillar_axis[x, y, z]}
minecraft:chiseled_red_sandstone{}
minecraft:chiseled_sandstone{}
minecraft:chiseled_stone_bricks{}
minecraft:chiseled_tuff{}
minecraft:chiseled_tuff_bricks{}
minecraft:chorus_flower{age[0, 1, 2, 3, 4, 5]}
minecraft:chorus_plant{}
minecraft:clay{}
minecraft:client_request_placeholder_block{}
minecraft:coal_block{}
minecraft:coal_ore{}
minecraft:coarse_dirt{}
minecraft:cobbled_deepslate{}
minecraft:cobbled_deepslate_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:cobbled_deepslate_slab{minecraft:vertical_half[top, bottom]}
minecraft:cobbled_deepslate_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:cobbled_deepslate_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:cobblestone{}
minecraft:cobblestone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:cobblestone_slab{minecraft:vertical_half[top, bottom]}
minecraft:cobblestone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:cocoa{age[0, 1, 2], direction[0, 1, 2, 3]}
minecraft:colored_torch_blue{torch_facing_direction[east, top, south, north, west, unknown]}
minecraft:colored_torch_green{torch_facing_direction[east, top, south, north, west, unknown]}
minecraft:colored_torch_purple{torch_facing_direction[east, top, south, north, west, unknown]}
minecraft:colored_torch_red{torch_facing_direction[east, top, south, north, west, unknown]}
minecraft:command_block{conditional_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:composter{composter_fill_level[0, 1, 2, 3, 4, 5, 6, 7, 8]}
minecraft:compound_creator{direction[0, 1, 2, 3]}
minecraft:conduit{}
minecraft:copper_block{}
minecraft:copper_bulb{lit[0, 1], powered_bit[0, 1]}
minecraft:copper_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:copper_grate{}
minecraft:copper_ore{}
minecraft:copper_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:cornflower{}
minecraft:cracked_deepslate_bricks{}
minecraft:cracked_deepslate_tiles{}
minecraft:cracked_nether_bricks{}
minecraft:cracked_polished_blackstone_bricks{}
minecraft:cracked_stone_bricks{}
minecraft:crafter{crafting[0, 1], orientation[up_east, up_south, west_up, up_north, north_up, down_west, down_east, south_up, up_west, down_south, east_up, down_north], triggered_bit[0, 1]}
minecraft:crafting_table{}
minecraft:creeper_head{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:crimson_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:crimson_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:crimson_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:crimson_fence{}
minecraft:crimson_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:crimson_fungus{}
minecraft:crimson_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:crimson_hyphae{pillar_axis[x, y, z]}
minecraft:crimson_nylium{}
minecraft:crimson_planks{}
minecraft:crimson_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:crimson_roots{}
minecraft:crimson_slab{minecraft:vertical_half[top, bottom]}
minecraft:crimson_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:crimson_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:crimson_stem{pillar_axis[x, y, z]}
minecraft:crimson_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:crimson_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:crying_obsidian{}
minecraft:cut_copper{}
minecraft:cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:cut_copper_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:cut_red_sandstone{}
minecraft:cut_red_sandstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:cut_red_sandstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:cut_sandstone{}
minecraft:cut_sandstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:cut_sandstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:cyan_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:cyan_candle_cake{lit[0, 1]}
minecraft:cyan_carpet{}
minecraft:cyan_concrete{}
minecraft:cyan_concrete_powder{}
minecraft:cyan_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:cyan_shulker_box{}
minecraft:cyan_stained_glass{}
minecraft:cyan_stained_glass_pane{}
minecraft:cyan_terracotta{}
minecraft:cyan_wool{}
minecraft:damaged_anvil{minecraft:cardinal_direction[east, south, north, west]}
minecraft:dandelion{}
minecraft:dark_oak_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:dark_oak_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:dark_oak_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:dark_oak_fence{}
minecraft:dark_oak_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:dark_oak_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:dark_oak_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:dark_oak_log{pillar_axis[x, y, z]}
minecraft:dark_oak_planks{}
minecraft:dark_oak_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:dark_oak_sapling{age_bit[0, 1]}
minecraft:dark_oak_slab{minecraft:vertical_half[top, bottom]}
minecraft:dark_oak_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:dark_oak_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:dark_oak_wood{pillar_axis[x, y, z]}
minecraft:dark_prismarine{}
minecraft:dark_prismarine_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:dark_prismarine_slab{minecraft:vertical_half[top, bottom]}
minecraft:dark_prismarine_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:darkoak_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:darkoak_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:daylight_detector{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:daylight_detector_inverted{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:dead_brain_coral{}
minecraft:dead_brain_coral_block{}
minecraft:dead_brain_coral_fan{coral_fan_direction[0, 1]}
minecraft:dead_brain_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:dead_bubble_coral{}
minecraft:dead_bubble_coral_block{}
minecraft:dead_bubble_coral_fan{coral_fan_direction[0, 1]}
minecraft:dead_bubble_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:dead_fire_coral{}
minecraft:dead_fire_coral_block{}
minecraft:dead_fire_coral_fan{coral_fan_direction[0, 1]}
minecraft:dead_fire_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:dead_horn_coral{}
minecraft:dead_horn_coral_block{}
minecraft:dead_horn_coral_fan{coral_fan_direction[0, 1]}
minecraft:dead_horn_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:dead_tube_coral{}
minecraft:dead_tube_coral_block{}
minecraft:dead_tube_coral_fan{coral_fan_direction[0, 1]}
minecraft:dead_tube_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:deadbush{}
minecraft:decorated_pot{direction[0, 1, 2, 3]}
minecraft:deepslate{pillar_axis[x, y, z]}
minecraft:deepslate_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:deepslate_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:deepslate_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:deepslate_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:deepslate_bricks{}
minecraft:deepslate_coal_ore{}
minecraft:deepslate_copper_ore{}
minecraft:deepslate_diamond_ore{}
minecraft:deepslate_emerald_ore{}
minecraft:deepslate_gold_ore{}
minecraft:deepslate_iron_ore{}
minecraft:deepslate_lapis_ore{}
minecraft:deepslate_redstone_ore{}
minecraft:deepslate_tile_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:deepslate_tile_slab{minecraft:vertical_half[top, bottom]}
minecraft:deepslate_tile_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:deepslate_tile_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:deepslate_tiles{}
minecraft:deny{}
minecraft:deprecated_anvil{minecraft:cardinal_direction[east, south, north, west]}
minecraft:deprecated_purpur_block_1{pillar_axis[x, y, z]}
minecraft:deprecated_purpur_block_2{pillar_axis[x, y, z]}
minecraft:detector_rail{rail_data_bit[0, 1], rail_direction[0, 1, 2, 3, 4, 5]}
minecraft:diamond_block{}
minecraft:diamond_ore{}
minecraft:diorite{}
minecraft:diorite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:diorite_slab{minecraft:vertical_half[top, bottom]}
minecraft:diorite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:diorite_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:dirt{}
minecraft:dirt_with_roots{}
minecraft:dispenser{facing_direction[0, 1, 2, 3, 4, 5], triggered_bit[0, 1]}
minecraft:double_cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:dragon_egg{}
minecraft:dragon_head{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:dried_kelp_block{}
minecraft:dripstone_block{}
minecraft:dropper{facing_direction[0, 1, 2, 3, 4, 5], triggered_bit[0, 1]}
minecraft:element_0{}
minecraft:element_1{}
minecraft:element_10{}
minecraft:element_100{}
minecraft:element_101{}
minecraft:element_102{}
minecraft:element_103{}
minecraft:element_104{}
minecraft:element_105{}
minecraft:element_106{}
minecraft:element_107{}
minecraft:element_108{}
minecraft:element_109{}
minecraft:element_11{}
minecraft:element_110{}
minecraft:element_111{}
minecraft:element_112{}
minecraft:element_113{}
minecraft:element_114{}
minecraft:element_115{}
minecraft:element_116{}
minecraft:element_117{}
minecraft:element_118{}
minecraft:element_12{}
minecraft:element_13{}
minecraft:element_14{}
minecraft:element_15{}
minecraft:element_16{}
minecraft:element_17{}
minecraft:element_18{}
minecraft:element_19{}
minecraft:element_2{}
minecraft:element_20{}
minecraft:element_21{}
minecraft:element_22{}
minecraft:element_23{}
minecraft:element_24{}
minecraft:element_25{}
minecraft:element_26{}
minecraft:element_27{}
minecraft:element_28{}
minecraft:element_29{}
minecraft:element_3{}
minecraft:element_30{}
minecraft:element_31{}
minecraft:element_32{}
minecraft:element_33{}
minecraft:element_34{}
minecraft:element_35{}
minecraft:element_36{}
minecraft:element_37{}
minecraft:element_38{}
minecraft:element_39{}
minecraft:element_4{}
minecraft:element_40{}
minecraft:element_41{}
minecraft:element_42{}
minecraft:element_43{}
minecraft:element_44{}
minecraft:element_45{}
minecraft:element_46{}
minecraft:element_47{}
minecraft:element_48{}
minecraft:element_49{}
minecraft:element_5{}
minecraft:element_50{}
minecraft:element_51{}
minecraft:element_52{}
minecraft:element_53{}
minecraft:element_54{}
minecraft:element_55{}
minecraft:element_56{}
minecraft:element_57{}
minecraft:element_58{}
minecraft:element_59{}
minecraft:element_6{}
minecraft:element_60{}
minecraft:element_61{}
minecraft:element_62{}
minecraft:element_63{}
minecraft:element_64{}
minecraft:element_65{}
minecraft:element_66{}
minecraft:element_67{}
minecraft:element_68{}
minecraft:element_69{}
minecraft:element_7{}
minecraft:element_70{}
minecraft:element_71{}
minecraft:element_72{}
minecraft:element_73{}
minecraft:element_74{}
minecraft:element_75{}
minecraft:element_76{}
minecraft:element_77{}
minecraft:element_78{}
minecraft:element_79{}
minecraft:element_8{}
minecraft:element_80{}
minecraft:element_81{}
minecraft:element_82{}
minecraft:element_83{}
minecraft:element_84{}
minecraft:element_85{}
minecraft:element_86{}
minecraft:element_87{}
minecraft:element_88{}
minecraft:element_89{}
minecraft:element_9{}
minecraft:element_90{}
minecraft:element_91{}
minecraft:element_92{}
minecraft:element_93{}
minecraft:element_94{}
minecraft:element_95{}
minecraft:element_96{}
minecraft:element_97{}
minecraft:element_98{}
minecraft:element_99{}
minecraft:element_constructor{direction[0, 1, 2, 3]}
minecraft:emerald_block{}
minecraft:emerald_ore{}
minecraft:enchanting_table{}
minecraft:end_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:end_bricks{}
minecraft:end_gateway{}
minecraft:end_portal{}
minecraft:end_portal_frame{end_portal_eye_bit[0, 1], minecraft:cardinal_direction[east, south, north, west]}
minecraft:end_rod{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:end_stone{}
minecraft:end_stone_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:end_stone_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:end_stone_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:ender_chest{minecraft:cardinal_direction[east, south, north, west]}
minecraft:exposed_chiseled_copper{}
minecraft:exposed_copper{}
minecraft:exposed_copper_bulb{lit[0, 1], powered_bit[0, 1]}
minecraft:exposed_copper_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:exposed_copper_grate{}
minecraft:exposed_copper_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:exposed_cut_copper{}
minecraft:exposed_cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:exposed_cut_copper_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:exposed_double_cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:farmland{moisturized_amount[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:fern{}
minecraft:fire{age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:fire_coral{}
minecraft:fire_coral_block{}
minecraft:fire_coral_fan{coral_fan_direction[0, 1]}
minecraft:fire_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:fletching_table{}
minecraft:flower_pot{update_bit[0, 1]}
minecraft:flowering_azalea{}
minecraft:flowing_lava{liquid_depth[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:flowing_water{liquid_depth[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:frame{facing_direction[0, 1, 2, 3, 4, 5], item_frame_map_bit[0, 1], item_frame_photo_bit[0, 1]}
minecraft:frog_spawn{}
minecraft:frosted_ice{age[0, 1, 2, 3]}
minecraft:furnace{minecraft:cardinal_direction[east, south, north, west]}
minecraft:gilded_blackstone{}
minecraft:glass{}
minecraft:glass_pane{}
minecraft:glow_frame{facing_direction[0, 1, 2, 3, 4, 5], item_frame_map_bit[0, 1], item_frame_photo_bit[0, 1]}
minecraft:glow_lichen{multi_face_direction_bits[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]}
minecraft:glowingobsidian{}
minecraft:glowstone{}
minecraft:gold_block{}
minecraft:gold_ore{}
minecraft:golden_rail{rail_data_bit[0, 1], rail_direction[0, 1, 2, 3, 4, 5]}
minecraft:granite{}
minecraft:granite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:granite_slab{minecraft:vertical_half[top, bottom]}
minecraft:granite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:granite_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:grass_block{}
minecraft:grass_path{}
minecraft:gravel{}
minecraft:gray_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:gray_candle_cake{lit[0, 1]}
minecraft:gray_carpet{}
minecraft:gray_concrete{}
minecraft:gray_concrete_powder{}
minecraft:gray_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:gray_shulker_box{}
minecraft:gray_stained_glass{}
minecraft:gray_stained_glass_pane{}
minecraft:gray_terracotta{}
minecraft:gray_wool{}
minecraft:green_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:green_candle_cake{lit[0, 1]}
minecraft:green_carpet{}
minecraft:green_concrete{}
minecraft:green_concrete_powder{}
minecraft:green_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:green_shulker_box{}
minecraft:green_stained_glass{}
minecraft:green_stained_glass_pane{}
minecraft:green_terracotta{}
minecraft:green_wool{}
minecraft:grindstone{attachment[standing, side, multiple, hanging], direction[0, 1, 2, 3]}
minecraft:hanging_roots{}
minecraft:hard_black_stained_glass{}
minecraft:hard_black_stained_glass_pane{}
minecraft:hard_blue_stained_glass{}
minecraft:hard_blue_stained_glass_pane{}
minecraft:hard_brown_stained_glass{}
minecraft:hard_brown_stained_glass_pane{}
minecraft:hard_cyan_stained_glass{}
minecraft:hard_cyan_stained_glass_pane{}
minecraft:hard_glass{}
minecraft:hard_glass_pane{}
minecraft:hard_gray_stained_glass{}
minecraft:hard_gray_stained_glass_pane{}
minecraft:hard_green_stained_glass{}
minecraft:hard_green_stained_glass_pane{}
minecraft:hard_light_blue_stained_glass{}
minecraft:hard_light_blue_stained_glass_pane{}
minecraft:hard_light_gray_stained_glass{}
minecraft:hard_light_gray_stained_glass_pane{}
minecraft:hard_lime_stained_glass{}
minecraft:hard_lime_stained_glass_pane{}
minecraft:hard_magenta_stained_glass{}
minecraft:hard_magenta_stained_glass_pane{}
minecraft:hard_orange_stained_glass{}
minecraft:hard_orange_stained_glass_pane{}
minecraft:hard_pink_stained_glass{}
minecraft:hard_pink_stained_glass_pane{}
minecraft:hard_purple_stained_glass{}
minecraft:hard_purple_stained_glass_pane{}
minecraft:hard_red_stained_glass{}
minecraft:hard_red_stained_glass_pane{}
minecraft:hard_white_stained_glass{}
minecraft:hard_white_stained_glass_pane{}
minecraft:hard_yellow_stained_glass{}
minecraft:hard_yellow_stained_glass_pane{}
minecraft:hardened_clay{}
minecraft:hay_block{deprecated[0, 1, 2, 3], pillar_axis[x, y, z]}
minecraft:heavy_core{}
minecraft:heavy_weighted_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:honey_block{}
minecraft:honeycomb_block{}
minecraft:hopper{facing_direction[0, 1, 2, 3, 4, 5], toggle_bit[0, 1]}
minecraft:horn_coral{}
minecraft:horn_coral_block{}
minecraft:horn_coral_fan{coral_fan_direction[0, 1]}
minecraft:horn_coral_wall_fan{coral_direction[0, 1, 2, 3]}
minecraft:ice{}
minecraft:infested_chiseled_stone_bricks{}
minecraft:infested_cobblestone{}
minecraft:infested_cracked_stone_bricks{}
minecraft:infested_deepslate{pillar_axis[x, y, z]}
minecraft:infested_mossy_stone_bricks{}
minecraft:infested_stone{}
minecraft:infested_stone_bricks{}
minecraft:info_update{}
minecraft:info_update2{}
minecraft:invisible_bedrock{}
minecraft:iron_bars{}
minecraft:iron_block{}
minecraft:iron_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:iron_ore{}
minecraft:iron_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:jigsaw{facing_direction[0, 1, 2, 3, 4, 5], rotation[0, 1, 2, 3]}
minecraft:jukebox{}
minecraft:jungle_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:jungle_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:jungle_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:jungle_fence{}
minecraft:jungle_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:jungle_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:jungle_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:jungle_log{pillar_axis[x, y, z]}
minecraft:jungle_planks{}
minecraft:jungle_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:jungle_sapling{age_bit[0, 1]}
minecraft:jungle_slab{minecraft:vertical_half[top, bottom]}
minecraft:jungle_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:jungle_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:jungle_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:jungle_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:jungle_wood{pillar_axis[x, y, z]}
minecraft:kelp{kelp_age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]}
minecraft:lab_table{direction[0, 1, 2, 3]}
minecraft:ladder{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:lantern{hanging[0, 1]}
minecraft:lapis_block{}
minecraft:lapis_ore{}
minecraft:large_amethyst_bud{minecraft:block_face[east, south, north, west, up, down]}
minecraft:large_fern{upper_block_bit[0, 1]}
minecraft:lava{liquid_depth[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:lectern{minecraft:cardinal_direction[east, south, north, west], powered_bit[0, 1]}
minecraft:lever{lever_direction[east, south, north, up_north_south, west, down_east_west, down_north_south, up_east_west], open_bit[0, 1]}
minecraft:light_block_0{}
minecraft:light_block_1{}
minecraft:light_block_10{}
minecraft:light_block_11{}
minecraft:light_block_12{}
minecraft:light_block_13{}
minecraft:light_block_14{}
minecraft:light_block_15{}
minecraft:light_block_2{}
minecraft:light_block_3{}
minecraft:light_block_4{}
minecraft:light_block_5{}
minecraft:light_block_6{}
minecraft:light_block_7{}
minecraft:light_block_8{}
minecraft:light_block_9{}
minecraft:light_blue_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:light_blue_candle_cake{lit[0, 1]}
minecraft:light_blue_carpet{}
minecraft:light_blue_concrete{}
minecraft:light_blue_concrete_powder{}
minecraft:light_blue_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:light_blue_shulker_box{}
minecraft:light_blue_stained_glass{}
minecraft:light_blue_stained_glass_pane{}
minecraft:light_blue_terracotta{}
minecraft:light_blue_wool{}
minecraft:light_gray_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:light_gray_candle_cake{lit[0, 1]}
minecraft:light_gray_carpet{}
minecraft:light_gray_concrete{}
minecraft:light_gray_concrete_powder{}
minecraft:light_gray_shulker_box{}
minecraft:light_gray_stained_glass{}
minecraft:light_gray_stained_glass_pane{}
minecraft:light_gray_terracotta{}
minecraft:light_gray_wool{}
minecraft:light_weighted_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:lightning_rod{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:lilac{upper_block_bit[0, 1]}
minecraft:lily_of_the_valley{}
minecraft:lime_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:lime_candle_cake{lit[0, 1]}
minecraft:lime_carpet{}
minecraft:lime_concrete{}
minecraft:lime_concrete_powder{}
minecraft:lime_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:lime_shulker_box{}
minecraft:lime_stained_glass{}
minecraft:lime_stained_glass_pane{}
minecraft:lime_terracotta{}
minecraft:lime_wool{}
minecraft:lit_blast_furnace{minecraft:cardinal_direction[east, south, north, west]}
minecraft:lit_deepslate_redstone_ore{}
minecraft:lit_furnace{minecraft:cardinal_direction[east, south, north, west]}
minecraft:lit_pumpkin{minecraft:cardinal_direction[east, south, north, west]}
minecraft:lit_redstone_lamp{}
minecraft:lit_redstone_ore{}
minecraft:lit_smoker{minecraft:cardinal_direction[east, south, north, west]}
minecraft:lodestone{}
minecraft:loom{direction[0, 1, 2, 3]}
minecraft:magenta_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:magenta_candle_cake{lit[0, 1]}
minecraft:magenta_carpet{}
minecraft:magenta_concrete{}
minecraft:magenta_concrete_powder{}
minecraft:magenta_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:magenta_shulker_box{}
minecraft:magenta_stained_glass{}
minecraft:magenta_stained_glass_pane{}
minecraft:magenta_terracotta{}
minecraft:magenta_wool{}
minecraft:magma{}
minecraft:mangrove_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:mangrove_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:mangrove_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:mangrove_fence{}
minecraft:mangrove_fence_gate{direction[0, 1, 2, 3], in_wall_bit[0, 1], open_bit[0, 1]}
minecraft:mangrove_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:mangrove_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:mangrove_log{pillar_axis[x, y, z]}
minecraft:mangrove_planks{}
minecraft:mangrove_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:mangrove_propagule{hanging[0, 1], propagule_stage[0, 1, 2, 3, 4]}
minecraft:mangrove_roots{}
minecraft:mangrove_slab{minecraft:vertical_half[top, bottom]}
minecraft:mangrove_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:mangrove_standing_sign{ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:mangrove_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:mangrove_wall_sign{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:mangrove_wood{pillar_axis[x, y, z]}
minecraft:material_reducer{direction[0, 1, 2, 3]}
minecraft:medium_amethyst_bud{minecraft:block_face[east, south, north, west, up, down]}
minecraft:melon_block{}
minecraft:melon_stem{facing_direction[0, 1, 2, 3, 4, 5], growth[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:mob_spawner{}
minecraft:moss_block{}
minecraft:moss_carpet{}
minecraft:mossy_cobblestone{}
minecraft:mossy_cobblestone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:mossy_cobblestone_slab{minecraft:vertical_half[top, bottom]}
minecraft:mossy_cobblestone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:mossy_cobblestone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:mossy_stone_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:mossy_stone_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:mossy_stone_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:mossy_stone_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:mossy_stone_bricks{}
minecraft:moving_block{}
minecraft:mud{}
minecraft:mud_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:mud_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:mud_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:mud_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:mud_bricks{}
minecraft:muddy_mangrove_roots{pillar_axis[x, y, z]}
minecraft:mushroom_stem{huge_mushroom_bits[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:mycelium{}
minecraft:nether_brick{}
minecraft:nether_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:nether_brick_fence{}
minecraft:nether_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:nether_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:nether_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:nether_gold_ore{}
minecraft:nether_sprouts{}
minecraft:nether_wart{age[0, 1, 2, 3]}
minecraft:nether_wart_block{}
minecraft:netherite_block{}
minecraft:netherrack{}
minecraft:netherreactor{}
minecraft:normal_stone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:normal_stone_slab{minecraft:vertical_half[top, bottom]}
minecraft:normal_stone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:noteblock{}
minecraft:oak_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:oak_fence{}
minecraft:oak_hanging_sign{attached_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5], ground_sign_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], hanging[0, 1]}
minecraft:oak_leaves{persistent_bit[0, 1], update_bit[0, 1]}
minecraft:oak_log{pillar_axis[x, y, z]}
minecraft:oak_planks{}
minecraft:oak_sapling{age_bit[0, 1]}
minecraft:oak_slab{minecraft:vertical_half[top, bottom]}
minecraft:oak_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:oak_wood{pillar_axis[x, y, z]}
minecraft:observer{minecraft:facing_direction[east, south, north, west, up, down], powered_bit[0, 1]}
minecraft:obsidian{}
minecraft:ochre_froglight{pillar_axis[x, y, z]}
minecraft:orange_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:orange_candle_cake{lit[0, 1]}
minecraft:orange_carpet{}
minecraft:orange_concrete{}
minecraft:orange_concrete_powder{}
minecraft:orange_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:orange_shulker_box{}
minecraft:orange_stained_glass{}
minecraft:orange_stained_glass_pane{}
minecraft:orange_terracotta{}
minecraft:orange_tulip{}
minecraft:orange_wool{}
minecraft:oxeye_daisy{}
minecraft:oxidized_chiseled_copper{}
minecraft:oxidized_copper{}
minecraft:oxidized_copper_bulb{lit[0, 1], powered_bit[0, 1]}
minecraft:oxidized_copper_door{direction[0, 1, 2, 3], door_hinge_bit[0, 1], open_bit[0, 1], upper_block_bit[0, 1]}
minecraft:oxidized_copper_grate{}
minecraft:oxidized_copper_trapdoor{direction[0, 1, 2, 3], open_bit[0, 1], upside_down_bit[0, 1]}
minecraft:oxidized_cut_copper{}
minecraft:oxidized_cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:oxidized_cut_copper_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:oxidized_double_cut_copper_slab{minecraft:vertical_half[top, bottom]}
minecraft:packed_ice{}
minecraft:packed_mud{}
minecraft:pearlescent_froglight{pillar_axis[x, y, z]}
minecraft:peony{upper_block_bit[0, 1]}
minecraft:petrified_oak_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:petrified_oak_slab{minecraft:vertical_half[top, bottom]}
minecraft:piglin_head{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:pink_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:pink_candle_cake{lit[0, 1]}
minecraft:pink_carpet{}
minecraft:pink_concrete{}
minecraft:pink_concrete_powder{}
minecraft:pink_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:pink_petals{growth[0, 1, 2, 3, 4, 5, 6, 7], minecraft:cardinal_direction[east, south, north, west]}
minecraft:pink_shulker_box{}
minecraft:pink_stained_glass{}
minecraft:pink_stained_glass_pane{}
minecraft:pink_terracotta{}
minecraft:pink_tulip{}
minecraft:pink_wool{}
minecraft:piston{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:piston_arm_collision{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:pitcher_crop{growth[0, 1, 2, 3, 4, 5, 6, 7], upper_block_bit[0, 1]}
minecraft:pitcher_plant{upper_block_bit[0, 1]}
minecraft:player_head{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:podzol{}
minecraft:pointed_dripstone{dripstone_thickness[middle, merge, frustum, tip, base], hanging[0, 1]}
minecraft:polished_andesite{}
minecraft:polished_andesite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_andesite_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_andesite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_basalt{pillar_axis[x, y, z]}
minecraft:polished_blackstone{}
minecraft:polished_blackstone_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_blackstone_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_blackstone_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_blackstone_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:polished_blackstone_bricks{}
minecraft:polished_blackstone_button{button_pressed_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:polished_blackstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_blackstone_pressure_plate{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:polished_blackstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_blackstone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_blackstone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:polished_deepslate{}
minecraft:polished_deepslate_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_deepslate_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_deepslate_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_deepslate_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:polished_diorite{}
minecraft:polished_diorite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_diorite_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_diorite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_granite{}
minecraft:polished_granite_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_granite_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_granite_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_tuff{}
minecraft:polished_tuff_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_tuff_slab{minecraft:vertical_half[top, bottom]}
minecraft:polished_tuff_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:polished_tuff_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:poppy{}
minecraft:portal{portal_axis[x, z, unknown]}
minecraft:potatoes{growth[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:powder_snow{}
minecraft:powered_comparator{minecraft:cardinal_direction[east, south, north, west], output_lit_bit[0, 1], output_subtract_bit[0, 1]}
minecraft:powered_repeater{minecraft:cardinal_direction[east, south, north, west], repeater_delay[0, 1, 2, 3]}
minecraft:prismarine{}
minecraft:prismarine_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:prismarine_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:prismarine_bricks{}
minecraft:prismarine_bricks_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:prismarine_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:prismarine_slab{minecraft:vertical_half[top, bottom]}
minecraft:prismarine_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:prismarine_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:pumpkin{minecraft:cardinal_direction[east, south, north, west]}
minecraft:pumpkin_stem{facing_direction[0, 1, 2, 3, 4, 5], growth[0, 1, 2, 3, 4, 5, 6, 7]}
minecraft:purple_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:purple_candle_cake{lit[0, 1]}
minecraft:purple_carpet{}
minecraft:purple_concrete{}
minecraft:purple_concrete_powder{}
minecraft:purple_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:purple_shulker_box{}
minecraft:purple_stained_glass{}
minecraft:purple_stained_glass_pane{}
minecraft:purple_terracotta{}
minecraft:purple_wool{}
minecraft:purpur_block{pillar_axis[x, y, z]}
minecraft:purpur_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:purpur_pillar{pillar_axis[x, y, z]}
minecraft:purpur_slab{minecraft:vertical_half[top, bottom]}
minecraft:purpur_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:quartz_block{pillar_axis[x, y, z]}
minecraft:quartz_bricks{}
minecraft:quartz_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:quartz_ore{}
minecraft:quartz_pillar{pillar_axis[x, y, z]}
minecraft:quartz_slab{minecraft:vertical_half[top, bottom]}
minecraft:quartz_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:rail{rail_direction[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
minecraft:raw_copper_block{}
minecraft:raw_gold_block{}
minecraft:raw_iron_block{}
minecraft:red_candle{candles[0, 1, 2, 3], lit[0, 1]}
minecraft:red_candle_cake{lit[0, 1]}
minecraft:red_carpet{}
minecraft:red_concrete{}
minecraft:red_concrete_powder{}
minecraft:red_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:red_mushroom{}
minecraft:red_mushroom_block{huge_mushroom_bits[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:red_nether_brick{}
minecraft:red_nether_brick_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:red_nether_brick_slab{minecraft:vertical_half[top, bottom]}
minecraft:red_nether_brick_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:red_nether_brick_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:red_sand{}
minecraft:red_sandstone{}
minecraft:red_sandstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:red_sandstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:red_sandstone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:red_sandstone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:red_shulker_box{}
minecraft:red_stained_glass{}
minecraft:red_stained_glass_pane{}
minecraft:red_terracotta{}
minecraft:red_tulip{}
minecraft:red_wool{}
minecraft:redstone_block{}
minecraft:redstone_lamp{}
minecraft:redstone_ore{}
minecraft:redstone_torch{torch_facing_direction[east, top, south, north, west, unknown]}
minecraft:redstone_wire{redstone_signal[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:reeds{age[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]}
minecraft:reinforced_deepslate{}
minecraft:repeating_command_block{conditional_bit[0, 1], facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:reserved6{}
minecraft:respawn_anchor{respawn_anchor_charge[0, 1, 2, 3, 4]}
minecraft:rose_bush{upper_block_bit[0, 1]}
minecraft:sand{}
minecraft:sandstone{}
minecraft:sandstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:sandstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:sandstone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:sandstone_wall{wall_connection_type_east[short, none, tall], wall_connection_type_north[short, none, tall], wall_connection_type_south[short, none, tall], wall_connection_type_west[short, none, tall], wall_post_bit[0, 1]}
minecraft:scaffolding{stability[0, 1, 2, 3, 4, 5, 6, 7], stability_check[0, 1]}
minecraft:sculk{}
minecraft:sculk_catalyst{bloom[0, 1]}
minecraft:sculk_sensor{sculk_sensor_phase[0, 1, 2]}
minecraft:sculk_shrieker{active[0, 1], can_summon[0, 1]}
minecraft:sculk_vein{multi_face_direction_bits[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]}
minecraft:sea_lantern{}
minecraft:sea_pickle{cluster_count[0, 1, 2, 3], dead_bit[0, 1]}
minecraft:seagrass{sea_grass_type[default, double_bot, double_top]}
minecraft:short_grass{}
minecraft:shroomlight{}
minecraft:silver_glazed_terracotta{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:skeleton_skull{facing_direction[0, 1, 2, 3, 4, 5]}
minecraft:slime{}
minecraft:small_amethyst_bud{minecraft:block_face[east, south, north, west, up, down]}
minecraft:small_dripleaf_block{minecraft:cardinal_direction[east, south, north, west], upper_block_bit[0, 1]}
minecraft:smithing_table{}
minecraft:smoker{minecraft:cardinal_direction[east, south, north, west]}
minecraft:smooth_basalt{}
minecraft:smooth_quartz{pillar_axis[x, y, z]}
minecraft:smooth_quartz_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:smooth_quartz_slab{minecraft:vertical_half[top, bottom]}
minecraft:smooth_quartz_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:smooth_red_sandstone{}
minecraft:smooth_red_sandstone_double_slab{minecraft:vertical_half[top, bottom]}
minecraft:smooth_red_sandstone_slab{minecraft:vertical_half[top, bottom]}
minecraft:smooth_red_sandstone_stairs{upside_down_bit[0, 1], weirdo_direction[0, 1, 2, 3]}
minecraft:smooth_sandstone{}
minecraft:smooth_sandstone_double_slab{minecraft:vertical_half[top, bottom]}