-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.json
More file actions
1625 lines (1625 loc) · 39.1 KB
/
items.json
File metadata and controls
1625 lines (1625 loc) · 39.1 KB
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
[
"Cobblestone",
"Cobblestone Slab",
"Cobblestone Stairs",
"Cobblestone Wall",
"Mossy Cobblestone",
"Mossy Cobblestone Slab",
"Mossy Cobblestone Stairs",
"Mossy Cobblestone Wall",
"Stone",
"Stone Slab",
"Stone Stairs",
"Smooth Stone",
"Smooth Stone Slab",
"Stone Bricks",
"Stone Brick Slab",
"Stone Brick Stairs",
"Stone Brick Wall",
"Cracked Stone Bricks",
"Chiseled Stone Bricks",
"Mossy Stone Bricks",
"Mossy Stone Brick Slab",
"Mossy Stone Brick Stairs",
"Mossy Stone Brick Wall",
"Stone Pressure Plate",
"Stone Button",
"Deepslate",
"Cobbled Deepslate",
"Cobbled Deepslate Slab",
"Cobbled Deepslate Stairs",
"Cobbled Deepslate Wall",
"Polished Deepslate",
"Polished Deepslate Slab",
"Polished Deepslate Stairs",
"Polished Deepslate Wall",
"Deepslate Bricks",
"Deepslate Brick Slab",
"Deepslate Brick Stairs",
"Deepslate Brick Wall",
"Cracked Deepslate Bricks",
"Deepslate Tiles",
"Deepslate Tile Slab",
"Deepslate Tile Stairs",
"Deepslate Tile Wall",
"Cracked Deepslate Tiles",
"Chiseled Deepslate",
"Diorite",
"Diorite Slab",
"Diorite Stairs",
"Diorite Wall",
"Polished Diorite",
"Polished Diorite Slab",
"Polished Diorite Stairs",
"Andesite",
"Andesite Slab",
"Andesite Stairs",
"Andesite Wall",
"Polished Andesite",
"Polished Andesite Slab",
"Polished Andesite Stairs",
"Granite",
"Granite Slab",
"Granite Stairs",
"Granite Wall",
"Polished Granite",
"Polished Granite Slab",
"Polished Granite Stairs",
"Tuff",
"Tuff Slab",
"Tuff Stairs",
"Tuff Wall",
"Chiseled Tuff",
"Polished Tuff",
"Polished Tuff Slab",
"Polished Tuff Stairs",
"Polished Tuff Wall",
"Tuff Bricks",
"Tuff Brick Slab",
"Tuff Brick Stairs",
"Tuff Brick Wall",
"Chiseled Tuff Bricks",
"Calcite",
"Dripstone Block",
"Pointed Dripstone",
"Dirt",
"Grass Block",
"Mycelium",
"Podzol",
"Coarse Dirt",
"Rooted Dirt",
"Oak Log",
"Oak Wood",
"Stripped Oak Log",
"Stripped Oak Wood",
"Oak Planks",
"Oak Slab",
"Oak Stairs",
"Oak Fence",
"Oak Fence Gate",
"Oak Door",
"Oak Trapdoor",
"Oak Sign",
"Oak Hanging Sign",
"Oak Pressure Plate",
"Oak Button",
"Oak Boat",
"Oak Boat with Chest",
"Birch Log",
"Birch Wood",
"Stripped Birch Log",
"Stripped Birch Wood",
"Birch Planks",
"Birch Slab",
"Birch Stairs",
"Birch Fence",
"Birch Fence Gate",
"Birch Door",
"Birch Trapdoor",
"Birch Sign",
"Birch Hanging Sign",
"Birch Pressure Plate",
"Birch Button",
"Birch Boat",
"Birch Boat with Chest",
"Spruce Log",
"Spruce Wood",
"Stripped Spruce Log",
"Stripped Spruce Wood",
"Spruce Planks",
"Spruce Slab",
"Spruce Stairs",
"Spruce Fence",
"Spruce Fence Gate",
"Spruce Door",
"Spruce Trapdoor",
"Spruce Sign",
"Spruce Hanging Sign",
"Spruce Pressure Plate",
"Spruce Button",
"Spruce Boat",
"Spruce Boat with Chest",
"Jungle Log",
"Jungle Wood",
"Stripped Jungle Log",
"Stripped Jungle Wood",
"Jungle Planks",
"Jungle Slab",
"Jungle Stairs",
"Jungle Fence",
"Jungle Fence Gate",
"Jungle Door",
"Jungle Trapdoor",
"Jungle Sign",
"Jungle Hanging Sign",
"Jungle Pressure Plate",
"Jungle Button",
"Jungle Boat",
"Jungle Boat with Chest",
"Dark Oak Log",
"Dark Oak Wood",
"Stripped Dark Oak Log",
"Stripped Dark Oak Wood",
"Dark Oak Planks",
"Dark Oak Slab",
"Dark Oak Stairs",
"Dark Oak Fence",
"Dark Oak Fence Gate",
"Dark Oak Door",
"Dark Oak Trapdoor",
"Dark Oak Sign",
"Dark Oak Hanging Sign",
"Dark Oak Pressure Plate",
"Dark Oak Button",
"Dark Oak Boat",
"Dark Oak Boat with Chest",
"Acacia Log",
"Acacia Wood",
"Stripped Acacia Log",
"Stripped Acacia Wood",
"Acacia Planks",
"Acacia Slab",
"Acacia Stairs",
"Acacia Fence",
"Acacia Fence Gate",
"Acacia Door",
"Acacia Trapdoor",
"Acacia Sign",
"Acacia Hanging Sign",
"Acacia Pressure Plate",
"Acacia Button",
"Acacia Boat",
"Acacia Boat with Chest",
"Mangrove Log",
"Mangrove Wood",
"Stripped Mangrove Log",
"Stripped Mangrove Wood",
"Mangrove Planks",
"Mangrove Slab",
"Mangrove Stairs",
"Mangrove Fence",
"Mangrove Gate",
"Mangrove Door",
"Mangrove Trapdoor",
"Mangrove Sign",
"Mangrove Hanging Sign",
"Mangrove Pressure Plate",
"Mangrove Button",
"Mangrove Boat",
"Mangrove Boat with Chest",
"Cherry Log",
"Cherry Wood",
"Stripped Cherry Log",
"Stripped Cherry Wood",
"Cherry Planks",
"Cherry Slab",
"Cherry Stairs",
"Cherry Fence",
"Cherry Fence Gate",
"Cherry Door",
"Cherry Trapdoor",
"Cherry Sign",
"Cherry Hanging Sign",
"Cherry Pressure Plate",
"Cherry Button",
"Cherry Boat",
"Cherry Boat with Chest",
"Block of Bamboo",
"Block of Stripped Bamboo",
"Bamboo Planks",
"Bamboo Slab",
"Bamboo Stairs",
"Bamboo Fence",
"Bamboo Fence Gate",
"Bamboo Door",
"Bamboo Trapdoor",
"Bamboo Sign",
"Bamboo Hanging Sign",
"Bamboo Pressure Plate",
"Bamboo Button",
"Bamboo Raft",
"Bamboo Raft with Chest",
"Bamboo Mosaic",
"Bamboo Mosaic Slab",
"Bamboo Mosaic Stairs",
"Pale Oak Log",
"Creaking Heart",
"Pale Oak Wood",
"Stripped Pale Oak Log",
"Stripped Pale Oak Wood",
"Pale Oak Planks",
"Pale Oak Slab",
"Pale Oak Stairs",
"Pale Oak Fence",
"Pale Oak Fence Gate",
"Pale Oak Door",
"Pale Oak Trapdoor",
"Pale Oak Sign",
"Pale Oak Hanging Sign",
"Pale Oak Pressure Plate",
"Pale Oak Button",
"Pale Oak Boat",
"Pale Oak Boat with Chest",
"Warped Stem",
"Warped Hyphae",
"Stripped Warped Stem",
"Stripped Warped Hyphae",
"Warped Planks",
"Warped Slab",
"Warped Stairs",
"Warped Fence",
"Warped Fence Gate",
"Warped Door",
"Warped Trapdoor",
"Warped Sign",
"Warped Hanging Sign",
"Warped Pressure Plate",
"Warped Button",
"Crimson Stem",
"Crimson Hyphae",
"Stripped Crimson Stem",
"Stripped Crimson Hyphae",
"Crimson Planks",
"Crimson Slab",
"Crimson Stairs",
"Crimson Fence",
"Crimson Fence Gate",
"Crimson Door",
"Crimson Trapdoor",
"Crimson Sign",
"Crimson Hanging Sign",
"Crimson Pressure Plate",
"Crimson Button",
"Gravel",
"Suspicious Gravel",
"Flint",
"Sand",
"Suspicious Sand",
"Sandstone",
"Sandstone Slab",
"Sandstone Stairs",
"Sandstone Wall",
"Smooth Sandstone",
"Smooth Sandstone Slab",
"Smooth Sandstone Stairs",
"Cut Sandstone",
"Cut Sandstone Slab",
"Chiseled Sandstone",
"Red Sand",
"Red Sandstone",
"Red Sandstone Slab",
"Red Sandstone Stairs",
"Red Sandstone Wall",
"Smooth Red Sandstone",
"Smooth Red Sandstone Slab",
"Smooth Red Sandstone Stairs",
"Cut Red Sandstone",
"Cut Red Sandstone Slab",
"Chiseled Red Sandstone",
"Emerald Ore",
"Deepslate Emerald Ore",
"Coal Ore",
"Deepslate Coal Ore",
"Copper Ore",
"Deepslate Copper Ore",
"Iron Ore",
"Deepslate Iron Ore",
"Lapis Lazuli Ore",
"Deepslate Lapis Lazuli Ore",
"Gold Ore",
"Deepslate Gold Ore",
"Redstone Ore",
"Deepslate Redstone Ore",
"Diamond Ore",
"Deepslate Diamond Ore",
"Nether Quartz Ore",
"Nether Gold Ore",
"Ancient Debris",
"Emerald",
"Block of Emerald",
"Coal",
"Block of Coal",
"Raw Copper",
"Block of Raw Copper",
"Copper ingot",
"Block of Copper",
"Exposed Copper",
"Weathered Copper",
"Oxidized Copper",
"Cut Copper",
"Exposed Cut Copper",
"Weathered Cut Copper",
"Oxidized Cut Copper",
"Cut Copper Slab",
"Exposed Cut Copper Slab",
"Weathered Cut Copper Slab",
"Oxidized Cut Copper Slab",
"Cut Copper Stairs",
"Exposed Cut Copper Stairs",
"Weathered Cut Copper Stairs",
"Oxidized Cut Copper Stairs",
"Chiseled Copper",
"Exposed Chiseled Copper",
"Weathered Chiseled Copper",
"Oxidized Chiseled Copper",
"Copper Grate",
"Exposed Copper Grate",
"Weathered Copper Grate",
"Oxidized Copper Grate",
"Copper Bulb",
"Exposed Copper Bulb",
"Weathered Copper Bulb",
"Oxidized Copper Bulb",
"Copper Door",
"Exposed Copper Door",
"Weathered Copper Door",
"Oxidized Copper Door",
"Copper Trapdoor",
"Exposed Copper Trapdoor",
"Weathered Copper Trapdoor",
"Oxidized Copper Trapdoor",
"Waxed Block of Copper",
"Waxed Exposed Copper",
"Waxed Weathered Copper",
"Waxed Oxidized Copper",
"Waxed Cut Copper",
"Waxed Exposed Cut Copper",
"Waxed Weathered Cut Copper",
"Waxed Oxidized Cut Copper",
"Waxed Cut Copper Slab",
"Waxed Exposed Cut Copper Slab",
"Waxed Weathered Cut Copper Slab",
"Waxed Oxidized Cut Copper Slab",
"Waxed Cut Copper Stairs",
"Waxed Exposed Cut Copper Stairs",
"Waxed Weathered Cut Copper Stairs",
"Waxed Oxidized Cut Copper Stairs",
"Waxed Chiseled Copper",
"Waxed Exposed Chiseled Copper",
"Waxed Weathered Chiseled Copper",
"Waxed Oxidized Chiseled Copper",
"Waxed Copper Grate",
"Waxed Exposed Copper Grate",
"Waxed Weathered Copper Grate",
"Waxed Oxidized Copper Grate",
"Waxed Copper Bulb",
"Waxed Exposed Copper Bulb",
"Waxed Weathered Copper Bulb",
"Waxed Oxidized Copper Bulb",
"Waxed Copper Door",
"Waxed Exposed Copper Door",
"Waxed Weathered Copper Door",
"Waxed Oxidized Copper Door",
"Waxed Copper Trapdoor",
"Waxed Exposed Copper Trapdoor",
"Waxed Weathered Copper Trapdoor",
"Waxed Oxidized Copper Trapdoor",
"Raw Iron",
"Block of Raw Iron",
"Iron Ingot",
"Block of Iron",
"Iron Door",
"Iron Trapdoor",
"Heavy Weighted Pressure Plate",
"Iron Nugget",
"Lapis Lazuli",
"Block of Lapis Lazuli",
"Raw Gold",
"Block of Raw Gold",
"Gold Ingot",
"Block of Gold",
"Light Weighted Pressure Plate",
"Gold Nugget",
"Redstone Dust",
"Block of Redstone",
"Diamond",
"Block of Diamond",
"Nether Quartz",
"Block of Quartz",
"Quartz Slab",
"Quartz Stairs",
"Smooth Quartz Block",
"Smooth Quartz Slab",
"Smooth Quartz Stairs",
"Chiseled Quartz Block",
"Quartz Pillar",
"Quartz Bricks",
"Netherite Scrap",
"Netherite Ingot",
"Block of Netherite",
"Small Amethyst Bud",
"Medium Amethyst Bud",
"Large Amethyst Bud",
"Amethyst Cluster",
"Amethyst Shard",
"Block of Amethyst",
"Resin Clump",
"Block of Resin",
"Resin Brick",
"Resin Bricks",
"Resin Brick Slab",
"Resin Brick Stairs",
"Resin Brick Wall",
"Chiseled Resin Bricks",
"Clay Ball",
"Clay",
"Brick",
"Bricks",
"Brick Slab",
"Brick Stairs",
"Brick Wall",
"Mud",
"Packed Mud",
"Mud Bricks",
"Mud Brick Slab",
"Mud Brick Stairs",
"Mud Brick Wall",
"Prismarine Shard",
"Prismarine Crystals",
"Prismarine",
"Prismarine Slab",
"Prismarine Stairs",
"Prismarine Wall",
"Prismarine Bricks",
"Prismarine Brick Slab",
"Prismarine Brick Stairs",
"Dark Prismarine",
"Dark Prismarine Slab",
"Dark Prismarine Stairs",
"Sea Lantern",
"Sponge",
"Wet Sponge",
"Snowball",
"Snow Block",
"Snow",
"Ice",
"Packed Ice",
"Blue Ice",
"Netherrack",
"Glowstone Dust",
"Glowstone",
"Shroomlight",
"Magma Block",
"Nether Wart",
"Nether Brick",
"Nether Bricks",
"Nether Brick Slab",
"Nether Brick Stairs",
"Nether Brick Wall",
"Nether Brick Fence",
"Chiseled Nether Bricks",
"Cracked Nether Bricks",
"Red Nether Bricks",
"Red Nether Brick Slab",
"Red Nether Brick Stairs",
"Red Nether Brick Wall",
"Warped Nylium",
"Warped Wart Block",
"Warped Fungus",
"Warped Roots",
"Nether Sprouts",
"Twisting Vines",
"Crimson Nylium",
"Nether Wart Block",
"Crimson Fungus",
"Crimson Roots",
"Weeping Vines",
"Basalt",
"Polished Basalt",
"Smooth Basalt",
"Soul Sand",
"Soul Soil",
"Blackstone",
"Blackstone Slab",
"Blackstone Stairs",
"Blackstone Wall",
"Polished Blackstone",
"Polished Blackstone Slab",
"Polished Blackstone Stairs",
"Polished Blackstone Wall",
"Polished Blackstone Bricks",
"Polished Blackstone Brick Slab",
"Polished Blackstone Brick Stairs",
"Polished Blackstone Brick Wall",
"Cracked Polished Blackstone Bricks",
"Chiseled Polished Blackstone",
"Polished Blackstone Pressure Plate",
"Polished Blackstone Button",
"Gilded Blackstone",
"Obsidian",
"Crying Obsidian",
"End Stone",
"End Stone Bricks",
"End Stone Brick Slab",
"End Stone Brick Stairs",
"End Stone Brick Wall",
"Chorus Flower",
"Chorus Fruit",
"Popped Chorus",
"Purpur Block",
"Purpur Slab",
"Purpur Stairs",
"Purpur Pillar",
"White Dye",
"Light Gray Dye",
"Gray Dye",
"Black Dye",
"Brown Dye",
"Red Dye",
"Orange Dye",
"Yellow Dye",
"Lime Dye",
"Green Dye",
"Cyan Dye",
"Light Blue Dye",
"Blue Dye",
"Purple Dye",
"Magenta Dye",
"Pink Dye",
"White Wool",
"Light Gray Wool",
"Gray Wool",
"Black Wool",
"Brown Wool",
"Red Wool",
"Orange Wool",
"Yellow Wool",
"Lime Wool",
"Green Wool",
"Cyan Wool",
"Light Blue Wool",
"Blue Wool",
"Purple Wool",
"Magenta Wool",
"Pink Wool",
"White Carpet",
"Light Gray Carpet",
"Gray Carpet",
"Black Carpet",
"Brown Carpet",
"Red Carpet",
"Orange Carpet",
"Yellow Carpet",
"Lime Carpet",
"Green Carpet",
"Cyan Carpet",
"Light Blue Carpet",
"Blue Carpet",
"Purple Carpet",
"Magenta Carpet",
"Pink Carpet",
"White Banner",
"Light Gray Banner",
"Gray Banner",
"Black Banner",
"Brown Banner",
"Red Banner",
"Orange Banner",
"Yellow Banner",
"Lime Banner",
"Green Banner",
"Cyan Banner",
"Light Blue Banner",
"Blue Banner",
"Purple Banner",
"Magenta Banner",
"Pink Banner",
"Ominous Banner",
"White Bed",
"Light Gray Bed",
"Gray Bed",
"Black Bed",
"Brown Bed",
"Red Bed",
"Orange Bed",
"Yellow Bed",
"Lime Bed",
"Green Bed",
"Cyan Bed",
"Light Blue Bed",
"Blue Bed",
"Purple Bed",
"Magenta Bed",
"Pink Bed",
"White Concrete Powder",
"Light Gray Concrete Powder",
"Gray Concrete Powder",
"Black Concrete Powder",
"Brown Concrete Powder",
"Red Concrete Powder",
"Orange Concrete Powder",
"Yellow Concrete Powder",
"Lime Concrete Powder",
"Green Concrete Powder",
"Cyan Concrete Powder",
"Light Blue Concrete Powder",
"Blue Concrete Powder",
"Purple Concrete Powder",
"Magenta Concrete Powder",
"Pink Concrete Powder",
"White Concrete",
"Light Gray Concrete",
"Gray Concrete",
"Black Concrete",
"Brown Concrete",
"Red Concrete",
"Orange Concrete",
"Yellow Concrete",
"Lime Concrete",
"Green Concrete",
"Cyan Concrete",
"Light Blue Concrete",
"Blue Concrete",
"Purple Concrete",
"Magenta Concrete",
"Pink Concrete",
"Terracotta",
"White Terracotta",
"Light Gray Terracotta",
"Gray Terracotta",
"Black Terracotta",
"Brown Terracotta",
"Red Terracotta",
"Orange Terracotta",
"Yellow Terracotta",
"Lime Terracotta",
"Green Terracotta",
"Cyan Terracotta",
"Light Blue Terracotta",
"Blue Terracotta",
"Purple Terracotta",
"Magenta Terracotta",
"Pink Terracotta",
"White Glazed Terracotta",
"Light Gray Glazed Terracotta",
"Gray Glazed Terracotta",
"Black Glazed Terracotta",
"Brown Glazed Terracotta",
"Red Glazed Terracotta",
"Orange Glazed Terracotta",
"Yellow Glazed Terracotta",
"Lime Glazed Terracotta",
"Green Glazed Terracotta",
"Cyan Glazed Terracotta",
"Light Blue Glazed Terracotta",
"Blue Glazed Terracotta",
"Purple Glazed Terracotta",
"Magenta Glazed Terracotta",
"Pink Glazed Terracotta",
"Glass",
"White Stained Glass",
"Light Gray Stained Glass",
"Gray Stained Glass",
"Black Stained Glass",
"Brown Stained Glass",
"Red Stained Glass",
"Orange Stained Glass",
"Yellow Stained Glass",
"Lime Stained Glass",
"Green Stained Glass",
"Cyan Stained Glass",
"Light Blue Stained Glass",
"Blue Stained Glass",
"Purple Stained Glass",
"Magenta Stained Glass",
"Pink Stained Glass",
"Tinted Glass",
"Glass Pane",
"White Stained Glass Pane",
"Light Gray Stained Glass Pane",
"Gray Stained Glass Pane",
"Black Stained Glass Pane",
"Brown Stained Glass Pane",
"Red Stained Glass Pane",
"Orange Stained Glass Pane",
"Yellow Stained Glass Pane",
"Lime Stained Glass Pane",
"Green Stained Glass Pane",
"Cyan Stained Glass Pane",
"Light Blue Stained Glass Pane",
"Blue Stained Glass Pane",
"Purple Stained Glass Pane",
"Magenta Stained Glass Pane",
"Pink Stained Glass Pane",
"Candle",
"White Candle",
"Light Gray Candle",
"Gray Candle",
"Black Candle",
"Brown Candle",
"Red Candle",
"Orange Candle",
"Yellow Candle",
"Lime Candle",
"Green Candle",
"Cyan Candle",
"Light Blue Candle",
"Blue Candle",
"Purple Candle",
"Magenta Candle",
"Pink Candle",
"White Harness",
"Light Gray Harness",
"Gray Harness",
"Black Harness",
"Brown Harness",
"Red Harness",
"Orange Harness",
"Yellow Harness",
"Lime Harness",
"Green Harness",
"Cyan Harness",
"Light Blue Harness",
"Blue Harness",
"Purple Harness",
"Magenta Harness",
"Pink Harness",
"Bundle",
"White Bundle",
"Light Gray Bundle",
"Gray Bundle",
"Black Bundle",
"Brown Bundle",
"Red Bundle",
"Orange Bundle",
"Yellow Bundle",
"Lime Bundle",
"Green Bundle",
"Cyan Bundle",
"Light Blue Bundle",
"Blue Bundle",
"Purple Bundle",
"Magenta Bundle",
"Pink Bundle",
"Shulker Box",
"White Shulker Box",
"Light Gray Shulker Box",
"Gray Shulker Box",
"Black Shulker Box",
"Brown Shulker Box",
"Red Shulker Box",
"Orange Shulker Box",
"Yellow Shulker Box",
"Lime Shulker Box",
"Green Shulker Box",
"Cyan Shulker Box",
"Light Blue Shulker Box",
"Blue Shulker Box",
"Purple Shulker Box",
"Magenta Shulker Box",
"Pink Shulker Box",
"Crafting Table",
"Furnace",
"Blast Furnace",
"Smoker",
"Chest",
"Trapped Chest",
"Ender Chest",
"Enchanting Table",
"Anvil",
"Chipped Anvil",
"Damaged Anvil",
"Grindstone",
"Stonecutter",
"Barrel",
"Composter",
"Loom",
"Cartography Table",
"Smithing Table",
"Fletching Table",
"Lectern",
"Jukebox",
"Bell",
"Brewing Stand",
"Cauldron",
"Lodestone",
"Respawn Anchor",
"Bee Nest",
"Beehive",
"Trial Key",
"Ominous Trial Key",
"Heavy Core",
"Armor Stand",
"Flower Pot",
"Decorated Pot",
"Painting (Random variant)",
"Item Frame",
"Glow Item Frame",
"Ladder",
"Scaffolding",
"Iron Bars",
"Chain",
"Cobweb",
"End Crystal",
"Nether Star",
"Beacon",
"Nautilus Shell",
"Heart of the Sea",
"Conduit",
"End Rod",
"Torch",
"Soul Torch",
"Lantern",
"Soul Lantern",
"Campfire",
"Soul Campfire",
"Redstone Torch",
"Redstone Repeater",
"Redstone Comparator",
"Lever",
"Hopper",
"Observer",
"Dispenser",
"Dropper",
"Crafter",
"Piston",
"Sticky Piston",
"Note Block",
"TNT",
"Redstone Lamp",
"Daylight Detector",
"Tripwire Hook",
"Lightning Rod",
"Target",
"Rail",
"Powered Rail",
"Detector Rail",
"Activator Rail",
"Minecart",
"Minecart with Chest",
"Minecart with Hopper",
"Minecart with Furnace",
"Minecart with TNT",
"Sculk Vein",
"Sculk",
"Sculk Sensor",
"Calibrated Sculk Sensor",
"Sculk Catalyst",
"Sculk Shrieker",
"Red Mushroom",
"Brown Mushroom",
"Red Mushroom Block",
"Brown Mushroom Block",
"Mushroom Stem",
"Oak Sapling",
"Birch Sapling",
"Spruce Sapling",
"Jungle Sapling",
"Dark Oak Sapling",
"Acacia Sapling",
"Mangrove Propagule",
"Cherry Sapling",
"Pale Oak Sapling",
"Oak Leaves",
"Birch Leaves",
"Spruce Leaves",
"Jungle Leaves",
"Dark Oak Leaves",
"Acacia Leaves",
"Mangrove Leaves",
"Cherry Leaves",
"Pale Oak Leaves",
"Azalea Leaves",
"Flowering Azalea Leaves",
"Leaf Litter",
"Dandelion",
"Poppy",
"Blue Orchid",
"Allium",
"Azure Bluet",
"Red Tulip",
"Orange Tulip",
"White Tulip",
"Pink Tulip",
"Oxeye Daisy",
"Cornflower",
"Lily of the Valley",
"Open Eyeblossom",
"Closed Eyeblossom",
"Wither Rose",
"Sunflower",
"Peony",
"Lilac",
"Rose Bush",
"Pink Petals",
"Wildflowers",
"Short Grass",
"Tall Grass",
"Fern",
"Large Fern",
"Bush",
"Firefly Bush",
"Short Dry Grass",
"Tall Dry Grass",
"Dead Bush",
"Cactus Flower",
"Cactus",
"Sugar Cane",
"Bamboo",
"Lily Pad",
"Vines",
"Sweet Berries",
"Glow Berries",
"Moss Block",
"Moss Carpet",
"Small Dripleaf",
"Big Dripleaf",
"Azalea",
"Flowering Azalea",
"Spore Blossom",
"Pale Moss Block",
"Pale Moss Carpet",
"Pale Hanging Moss",
"Hanging Roots",
"Mangrove Roots",
"Muddy Mangrove Roots",
"Glow Lichen",
"Seagrass",
"Sea Pickle",
"Kelp",
"Dried Kelp",
"Dried Kelp Block",
"Tube Coral Block",
"Brain Coral Block",
"Bubble Coral Block",
"Fire Coral Block",
"Horn Coral Block",
"Dead Tube Coral Block",
"Dead Brain Coral Block",
"Dead Bubble Coral Block",
"Dead Fire Coral Block",
"Dead Horn Coral Block",
"Tube Coral",
"Brain Coral",
"Bubble Coral",
"Fire Coral",
"Horn Coral",
"Dead Tube Coral",
"Dead Brain Coral",
"Dead Bubble Coral",
"Dead Fire Coral",