aboutsummaryrefslogtreecommitdiff
path: root/minecraft.csv
blob: c37e61df4806a8670715e3e30377f740a0c7bf66 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
Survival Obtainable,Name,Id,Stackability,Storage,Numerical Id,Stack Size,Survival Obtainable
YES,Stone,stone,64 Stackable,-,1,64,TRUE
YES,Granite,granite,64 Stackable,-,2,64,TRUE
YES,Polished Granite,polished_granite,64 Stackable,-,3,64,TRUE
YES,Diorite,diorite,64 Stackable,-,4,64,TRUE
YES,Polished Diorite,polished_diorite,64 Stackable,-,5,64,TRUE
YES,Andesite,andesite,64 Stackable,-,6,64,TRUE
YES,Polished Andesite,polished_andesite,64 Stackable,-,7,64,TRUE
YES,Deepslate,deepslate,64 Stackable,-,8,64,TRUE
YES,Cobbled Deepslate,cobbled_deepslate,64 Stackable,-,9,64,TRUE
YES,Polished Deepslate,polished_deepslate,64 Stackable,-,10,64,TRUE
YES,Calcite,calcite,64 Stackable,-,11,64,TRUE
YES,Tuff,tuff,64 Stackable,-,12,64,TRUE
YES,Dripstone Block,dripstone_block,64 Stackable,-,13,64,TRUE
YES,Grass Block,grass_block,64 Stackable,-,14,64,TRUE
YES,Dirt,dirt,64 Stackable,-,15,64,TRUE
YES,Coarse Dirt,coarse_dirt,64 Stackable,-,16,64,TRUE
YES,Podzol,podzol,64 Stackable,-,17,64,TRUE
YES,Rooted Dirt,rooted_dirt,64 Stackable,-,18,64,TRUE
YES,Mud,mud,64 Stackable,-,19,64,TRUE
YES,Crimson Nylium,crimson_nylium,64 Stackable,-,20,64,TRUE
YES,Warped Nylium,warped_nylium,64 Stackable,-,21,64,TRUE
YES,Cobblestone,cobblestone,64 Stackable,-,22,64,TRUE
YES,Oak Planks,oak_planks,64 Stackable,-,23,64,TRUE
YES,Spruce Planks,spruce_planks,64 Stackable,-,24,64,TRUE
YES,Birch Planks,birch_planks,64 Stackable,-,25,64,TRUE
YES,Jungle Planks,jungle_planks,64 Stackable,-,26,64,TRUE
YES,Acacia Planks,acacia_planks,64 Stackable,-,27,64,TRUE
YES,Dark Oak Planks,dark_oak_planks,64 Stackable,-,28,64,TRUE
YES,Mangrove Planks,mangrove_planks,64 Stackable,-,29,64,TRUE
YES,Crimson Planks,crimson_planks,64 Stackable,-,30,64,TRUE
YES,Warped Planks,warped_planks,64 Stackable,-,31,64,TRUE
YES,Oak Sapling,oak_sapling,64 Stackable,-,32,64,TRUE
YES,Spruce Sapling,spruce_sapling,64 Stackable,-,33,64,TRUE
YES,Birch Sapling,birch_sapling,64 Stackable,-,34,64,TRUE
YES,Jungle Sapling,jungle_sapling,64 Stackable,-,35,64,TRUE
YES,Acacia Sapling,acacia_sapling,64 Stackable,-,36,64,TRUE
YES,Dark Oak Sapling,dark_oak_sapling,64 Stackable,-,37,64,TRUE
YES,Mangrove Propagule,mangrove_propagule,64 Stackable,-,38,64,TRUE
YES,Sand,sand,64 Stackable,-,40,64,TRUE
YES,Red Sand,red_sand,64 Stackable,-,41,64,TRUE
YES,Gravel,gravel,64 Stackable,-,42,64,TRUE
YES,Coal Ore,coal_ore,64 Stackable,-,43,64,TRUE
YES,Deepslate Coal Ore,deepslate_coal_ore,64 Stackable,-,44,64,TRUE
YES,Iron Ore,iron_ore,64 Stackable,-,45,64,TRUE
YES,Deepslate Iron Ore,deepslate_iron_ore,64 Stackable,-,46,64,TRUE
YES,Copper Ore,copper_ore,64 Stackable,-,47,64,TRUE
YES,Deepslate Copper Ore,deepslate_copper_ore,64 Stackable,-,48,64,TRUE
YES,Gold Ore,gold_ore,64 Stackable,-,49,64,TRUE
YES,Deepslate Gold Ore,deepslate_gold_ore,64 Stackable,-,50,64,TRUE
YES,Redstone Ore,redstone_ore,64 Stackable,-,51,64,TRUE
YES,Deepslate Redstone Ore,deepslate_redstone_ore,64 Stackable,-,52,64,TRUE
YES,Emerald Ore,emerald_ore,64 Stackable,-,53,64,TRUE
YES,Deepslate Emerald Ore,deepslate_emerald_ore,64 Stackable,-,54,64,TRUE
YES,Lapis Lazuli Ore,lapis_ore,64 Stackable,-,55,64,TRUE
YES,Deepslate Lapis Lazuli Ore,deepslate_lapis_ore,64 Stackable,-,56,64,TRUE
YES,Diamond Ore,diamond_ore,64 Stackable,-,57,64,TRUE
YES,Deepslate Diamond Ore,deepslate_diamond_ore,64 Stackable,-,58,64,TRUE
YES,Nether Gold Ore,nether_gold_ore,64 Stackable,-,59,64,TRUE
YES,Nether Quartz Ore,nether_quartz_ore,64 Stackable,-,60,64,TRUE
YES,Ancient Debris,ancient_debris,64 Stackable,-,61,64,TRUE
YES,Block of Coal,coal_block,64 Stackable,-,62,64,TRUE
YES,Block of Raw Iron,raw_iron_block,64 Stackable,-,63,64,TRUE
YES,Block of Raw Copper,raw_copper_block,64 Stackable,-,64,64,TRUE
YES,Block of Raw Gold,raw_gold_block,64 Stackable,-,65,64,TRUE
YES,Block of Amethyst,amethyst_block,64 Stackable,-,66,64,TRUE
YES,Block of Iron,iron_block,64 Stackable,-,68,64,TRUE
YES,Block of Copper,copper_block,64 Stackable,-,69,64,TRUE
YES,Block of Gold,gold_block,64 Stackable,-,70,64,TRUE
YES,Block of Diamond,diamond_block,64 Stackable,-,71,64,TRUE
YES,Block of Netherite,netherite_block,64 Stackable,-,72,64,TRUE
YES,Exposed Copper,exposed_copper,64 Stackable,-,73,64,TRUE
YES,Weathered Copper,weathered_copper,64 Stackable,-,74,64,TRUE
YES,Oxidized Copper,oxidized_copper,64 Stackable,-,75,64,TRUE
YES,Cut Copper,cut_copper,64 Stackable,-,76,64,TRUE
YES,Exposed Cut Copper,exposed_cut_copper,64 Stackable,-,77,64,TRUE
YES,Weathered Cut Copper,weathered_cut_copper,64 Stackable,-,78,64,TRUE
YES,Oxidized Cut Copper,oxidized_cut_copper,64 Stackable,-,79,64,TRUE
YES,Cut Copper Stairs,cut_copper_stairs,64 Stackable,-,80,64,TRUE
YES,Exposed Cut Copper Stairs,exposed_cut_copper_stairs,64 Stackable,-,81,64,TRUE
YES,Weathered Cut Copper Stairs,weathered_cut_copper_stairs,64 Stackable,-,82,64,TRUE
YES,Oxidized Cut Copper Stairs,oxidized_cut_copper_stairs,64 Stackable,-,83,64,TRUE
YES,Cut Copper Slab,cut_copper_slab,64 Stackable,-,84,64,TRUE
YES,Exposed Cut Copper Slab,exposed_cut_copper_slab,64 Stackable,-,85,64,TRUE
YES,Weathered Cut Copper Slab,weathered_cut_copper_slab,64 Stackable,-,86,64,TRUE
YES,Oxidized Cut Copper Slab,oxidized_cut_copper_slab,64 Stackable,-,87,64,TRUE
YES,Waxed Block of Copper,waxed_copper_block,64 Stackable,-,88,64,TRUE
YES,Waxed Exposed Copper,waxed_exposed_copper,64 Stackable,-,89,64,TRUE
YES,Waxed Weathered Copper,waxed_weathered_copper,64 Stackable,-,90,64,TRUE
YES,Waxed Oxidized Copper,waxed_oxidized_copper,64 Stackable,-,91,64,TRUE
YES,Waxed Cut Copper,waxed_cut_copper,64 Stackable,-,92,64,TRUE
YES,Waxed Exposed Cut Copper,waxed_exposed_cut_copper,64 Stackable,-,93,64,TRUE
YES,Waxed Weathered Cut Copper,waxed_weathered_cut_copper,64 Stackable,-,94,64,TRUE
YES,Waxed Oxidized Cut Copper,waxed_oxidized_cut_copper,64 Stackable,-,95,64,TRUE
YES,Waxed Cut Copper Stairs,waxed_cut_copper_stairs,64 Stackable,-,96,64,TRUE
YES,Waxed Exposed Cut Copper Stairs,waxed_exposed_cut_copper_stairs,64 Stackable,-,97,64,TRUE
YES,Waxed Weathered Cut Copper Stairs,waxed_weathered_cut_copper_stairs,64 Stackable,-,98,64,TRUE
YES,Waxed Oxidized Cut Copper Stairs,waxed_oxidized_cut_copper_stairs,64 Stackable,-,99,64,TRUE
YES,Waxed Cut Copper Slab,waxed_cut_copper_slab,64 Stackable,-,100,64,TRUE
YES,Waxed Exposed Cut Copper Slab,waxed_exposed_cut_copper_slab,64 Stackable,-,101,64,TRUE
YES,Waxed Weathered Cut Copper Slab,waxed_weathered_cut_copper_slab,64 Stackable,-,102,64,TRUE
YES,Waxed Oxidized Cut Copper Slab,waxed_oxidized_cut_copper_slab,64 Stackable,-,103,64,TRUE
YES,Oak Log,oak_log,64 Stackable,-,104,64,TRUE
YES,Spruce Log,spruce_log,64 Stackable,-,105,64,TRUE
YES,Birch Log,birch_log,64 Stackable,-,106,64,TRUE
YES,Jungle Log,jungle_log,64 Stackable,-,107,64,TRUE
YES,Acacia Log,acacia_log,64 Stackable,-,108,64,TRUE
YES,Dark Oak Log,dark_oak_log,64 Stackable,-,109,64,TRUE
YES,Mangrove Log,mangrove_log,64 Stackable,-,110,64,TRUE
YES,Mangrove Roots,mangrove_roots,64 Stackable,-,111,64,TRUE
YES,Muddy Mangrove Roots,muddy_mangrove_roots,64 Stackable,-,112,64,TRUE
YES,Crimson Stem,crimson_stem,64 Stackable,-,113,64,TRUE
YES,Warped Stem,warped_stem,64 Stackable,-,114,64,TRUE
YES,Stripped Oak Log,stripped_oak_log,64 Stackable,-,115,64,TRUE
YES,Stripped Spruce Log,stripped_spruce_log,64 Stackable,-,116,64,TRUE
YES,Stripped Birch Log,stripped_birch_log,64 Stackable,-,117,64,TRUE
YES,Stripped Jungle Log,stripped_jungle_log,64 Stackable,-,118,64,TRUE
YES,Stripped Acacia Log,stripped_acacia_log,64 Stackable,-,119,64,TRUE
YES,Stripped Dark Oak Log,stripped_dark_oak_log,64 Stackable,-,120,64,TRUE
YES,Stripped Mangrove Log,stripped_mangrove_log,64 Stackable,-,121,64,TRUE
YES,Stripped Crimson Stem,stripped_crimson_stem,64 Stackable,-,122,64,TRUE
YES,Stripped Warped Stem,stripped_warped_stem,64 Stackable,-,123,64,TRUE
YES,Stripped Oak Wood,stripped_oak_wood,64 Stackable,-,124,64,TRUE
YES,Stripped Spruce Wood,stripped_spruce_wood,64 Stackable,-,125,64,TRUE
YES,Stripped Birch Wood,stripped_birch_wood,64 Stackable,-,126,64,TRUE
YES,Stripped Jungle Wood,stripped_jungle_wood,64 Stackable,-,127,64,TRUE
YES,Stripped Acacia Wood,stripped_acacia_wood,64 Stackable,-,128,64,TRUE
YES,Stripped Dark Oak Wood,stripped_dark_oak_wood,64 Stackable,-,129,64,TRUE
YES,Stripped Mangrove Wood,stripped_mangrove_wood,64 Stackable,-,130,64,TRUE
YES,Stripped Crimson Hyphae,stripped_crimson_hyphae,64 Stackable,-,131,64,TRUE
YES,Stripped Warped Hyphae,stripped_warped_hyphae,64 Stackable,-,132,64,TRUE
YES,Oak Wood,oak_wood,64 Stackable,-,133,64,TRUE
YES,Spruce Wood,spruce_wood,64 Stackable,-,134,64,TRUE
YES,Birch Wood,birch_wood,64 Stackable,-,135,64,TRUE
YES,Jungle Wood,jungle_wood,64 Stackable,-,136,64,TRUE
YES,Acacia Wood,acacia_wood,64 Stackable,-,137,64,TRUE
YES,Dark Oak Wood,dark_oak_wood,64 Stackable,-,138,64,TRUE
YES,Mangrove Wood,mangrove_wood,64 Stackable,-,139,64,TRUE
YES,Crimson Hyphae,crimson_hyphae,64 Stackable,-,140,64,TRUE
YES,Warped Hyphae,warped_hyphae,64 Stackable,-,141,64,TRUE
YES,Oak Leaves,oak_leaves,64 Stackable,-,142,64,TRUE
YES,Spruce Leaves,spruce_leaves,64 Stackable,-,143,64,TRUE
YES,Birch Leaves,birch_leaves,64 Stackable,-,144,64,TRUE
YES,Jungle Leaves,jungle_leaves,64 Stackable,-,145,64,TRUE
YES,Acacia Leaves,acacia_leaves,64 Stackable,-,146,64,TRUE
YES,Dark Oak Leaves,dark_oak_leaves,64 Stackable,-,147,64,TRUE
YES,Mangrove Leaves,mangrove_leaves,64 Stackable,-,148,64,TRUE
YES,Azalea Leaves,azalea_leaves,64 Stackable,-,149,64,TRUE
YES,Flowering Azalea Leaves,flowering_azalea_leaves,64 Stackable,-,150,64,TRUE
YES,Sponge,sponge,64 Stackable,-,151,64,TRUE
YES,Wet Sponge,wet_sponge,64 Stackable,-,152,64,TRUE
YES,Glass,glass,64 Stackable,-,153,64,TRUE
YES,Tinted Glass,tinted_glass,64 Stackable,-,154,64,TRUE
YES,Block of Lapis Lazuli,lapis_block,64 Stackable,-,155,64,TRUE
YES,Sandstone,sandstone,64 Stackable,-,156,64,TRUE
YES,Chiseled Sandstone,chiseled_sandstone,64 Stackable,-,157,64,TRUE
YES,Cut Sandstone,cut_sandstone,64 Stackable,-,158,64,TRUE
YES,Cobweb,cobweb,64 Stackable,-,159,64,TRUE
YES,Grass,grass,64 Stackable,-,160,64,TRUE
YES,Fern,fern,64 Stackable,-,161,64,TRUE
YES,Azalea,azalea,64 Stackable,-,162,64,TRUE
YES,Flowering Azalea,flowering_azalea,64 Stackable,-,163,64,TRUE
YES,Dead Bush,dead_bush,64 Stackable,-,164,64,TRUE
YES,Seagrass,seagrass,64 Stackable,-,165,64,TRUE
YES,Sea Pickle,sea_pickle,64 Stackable,-,166,64,TRUE
YES,White Wool,white_wool,64 Stackable,-,167,64,TRUE
YES,Orange Wool,orange_wool,64 Stackable,-,168,64,TRUE
YES,Magenta Wool,magenta_wool,64 Stackable,-,169,64,TRUE
YES,Light Blue Wool,light_blue_wool,64 Stackable,-,170,64,TRUE
YES,Yellow Wool,yellow_wool,64 Stackable,-,171,64,TRUE
YES,Lime Wool,lime_wool,64 Stackable,-,172,64,TRUE
YES,Pink Wool,pink_wool,64 Stackable,-,173,64,TRUE
YES,Gray Wool,gray_wool,64 Stackable,-,174,64,TRUE
YES,Light Gray Wool,light_gray_wool,64 Stackable,-,175,64,TRUE
YES,Cyan Wool,cyan_wool,64 Stackable,-,176,64,TRUE
YES,Purple Wool,purple_wool,64 Stackable,-,177,64,TRUE
YES,Blue Wool,blue_wool,64 Stackable,-,178,64,TRUE
YES,Brown Wool,brown_wool,64 Stackable,-,179,64,TRUE
YES,Green Wool,green_wool,64 Stackable,-,180,64,TRUE
YES,Red Wool,red_wool,64 Stackable,-,181,64,TRUE
YES,Black Wool,black_wool,64 Stackable,-,182,64,TRUE
YES,Dandelion,dandelion,64 Stackable,-,183,64,TRUE
YES,Poppy,poppy,64 Stackable,-,184,64,TRUE
YES,Blue Orchid,blue_orchid,64 Stackable,-,185,64,TRUE
YES,Allium,allium,64 Stackable,-,186,64,TRUE
YES,Azure Bluet,azure_bluet,64 Stackable,-,187,64,TRUE
YES,Red Tulip,red_tulip,64 Stackable,-,188,64,TRUE
YES,Orange Tulip,orange_tulip,64 Stackable,-,189,64,TRUE
YES,White Tulip,white_tulip,64 Stackable,-,190,64,TRUE
YES,Pink Tulip,pink_tulip,64 Stackable,-,191,64,TRUE
YES,Oxeye Daisy,oxeye_daisy,64 Stackable,-,192,64,TRUE
YES,Cornflower,cornflower,64 Stackable,-,193,64,TRUE
YES,Lily of the Valley,lily_of_the_valley,64 Stackable,-,194,64,TRUE
YES,Wither Rose,wither_rose,64 Stackable,-,195,64,TRUE
YES,Spore Blossom,spore_blossom,64 Stackable,-,196,64,TRUE
YES,Brown Mushroom,brown_mushroom,64 Stackable,-,197,64,TRUE
YES,Red Mushroom,red_mushroom,64 Stackable,-,198,64,TRUE
YES,Crimson Fungus,crimson_fungus,64 Stackable,-,199,64,TRUE
YES,Warped Fungus,warped_fungus,64 Stackable,-,200,64,TRUE
YES,Crimson Roots,crimson_roots,64 Stackable,-,201,64,TRUE
YES,Warped Roots,warped_roots,64 Stackable,-,202,64,TRUE
YES,Nether Sprouts,nether_sprouts,64 Stackable,-,203,64,TRUE
YES,Weeping Vines,weeping_vines,64 Stackable,-,204,64,TRUE
YES,Twisting Vines,twisting_vines,64 Stackable,-,205,64,TRUE
YES,Sugar Cane,sugar_cane,64 Stackable,-,206,64,TRUE
YES,Kelp,kelp,64 Stackable,-,207,64,TRUE
YES,Moss Carpet,moss_carpet,64 Stackable,-,208,64,TRUE
YES,Moss Block,moss_block,64 Stackable,-,209,64,TRUE
YES,Hanging Roots,hanging_roots,64 Stackable,-,210,64,TRUE
YES,Big Dripleaf,big_dripleaf,64 Stackable,-,211,64,TRUE
YES,Small Dripleaf,small_dripleaf,64 Stackable,-,212,64,TRUE
YES,Bamboo,bamboo,64 Stackable,-,213,64,TRUE
YES,Oak Slab,oak_slab,64 Stackable,-,214,64,TRUE
YES,Spruce Slab,spruce_slab,64 Stackable,-,215,64,TRUE
YES,Birch Slab,birch_slab,64 Stackable,-,216,64,TRUE
YES,Jungle Slab,jungle_slab,64 Stackable,-,217,64,TRUE
YES,Acacia Slab,acacia_slab,64 Stackable,-,218,64,TRUE
YES,Dark Oak Slab,dark_oak_slab,64 Stackable,-,219,64,TRUE
YES,Mangrove Slab,mangrove_slab,64 Stackable,-,220,64,TRUE
YES,Crimson Slab,crimson_slab,64 Stackable,-,221,64,TRUE
YES,Warped Slab,warped_slab,64 Stackable,-,222,64,TRUE
YES,Stone Slab,stone_slab,64 Stackable,-,223,64,TRUE
YES,Smooth Stone Slab,smooth_stone_slab,64 Stackable,-,224,64,TRUE
YES,Sandstone Slab,sandstone_slab,64 Stackable,-,225,64,TRUE
YES,Cut Sandstone Slab,cut_sandstone_slab,64 Stackable,-,226,64,TRUE
YES,Cobblestone Slab,cobblestone_slab,64 Stackable,-,228,64,TRUE
YES,Brick Slab,brick_slab,64 Stackable,-,229,64,TRUE
YES,Stone Brick Slab,stone_brick_slab,64 Stackable,-,230,64,TRUE
YES,Mud Brick Slab,mud_brick_slab,64 Stackable,-,231,64,TRUE
YES,Nether Brick Slab,nether_brick_slab,64 Stackable,-,232,64,TRUE
YES,Quartz Slab,quartz_slab,64 Stackable,-,233,64,TRUE
YES,Red Sandstone Slab,red_sandstone_slab,64 Stackable,-,234,64,TRUE
YES,Cut Red Sandstone Slab,cut_red_sandstone_slab,64 Stackable,-,235,64,TRUE
YES,Purpur Slab,purpur_slab,64 Stackable,-,236,64,TRUE
YES,Prismarine Slab,prismarine_slab,64 Stackable,-,237,64,TRUE
YES,Prismarine Brick Slab,prismarine_brick_slab,64 Stackable,-,238,64,TRUE
YES,Dark Prismarine Slab,dark_prismarine_slab,64 Stackable,-,239,64,TRUE
YES,Smooth Quartz Block,smooth_quartz,64 Stackable,-,240,64,TRUE
YES,Smooth Red Sandstone,smooth_red_sandstone,64 Stackable,-,241,64,TRUE
YES,Smooth Sandstone,smooth_sandstone,64 Stackable,-,242,64,TRUE
YES,Smooth Stone,smooth_stone,64 Stackable,-,243,64,TRUE
YES,Bricks,bricks,64 Stackable,-,244,64,TRUE
YES,Bookshelf,bookshelf,64 Stackable,-,245,64,TRUE
YES,Mossy Cobblestone,mossy_cobblestone,64 Stackable,-,246,64,TRUE
YES,Obsidian,obsidian,64 Stackable,-,247,64,TRUE
YES,Torch,torch,64 Stackable,-,248,64,TRUE
YES,End Rod,end_rod,64 Stackable,-,249,64,TRUE
YES,Chorus Flower,chorus_flower,64 Stackable,-,251,64,TRUE
YES,Purpur Block,purpur_block,64 Stackable,-,252,64,TRUE
YES,Purpur Pillar,purpur_pillar,64 Stackable,-,253,64,TRUE
YES,Purpur Stairs,purpur_stairs,64 Stackable,-,254,64,TRUE
YES,Chest,chest,64 Stackable,-,256,64,TRUE
YES,Crafting Table,crafting_table,64 Stackable,-,257,64,TRUE
YES,Furnace,furnace,64 Stackable,-,259,64,TRUE
YES,Ladder,ladder,64 Stackable,-,260,64,TRUE
YES,Cobblestone Stairs,cobblestone_stairs,64 Stackable,-,261,64,TRUE
YES,Snow,snow,64 Stackable,-,262,64,TRUE
YES,Ice,ice,64 Stackable,-,263,64,TRUE
YES,Snow Block,snow_block,64 Stackable,-,264,64,TRUE
YES,Cactus,cactus,64 Stackable,-,265,64,TRUE
YES,Clay,clay,64 Stackable,-,266,64,TRUE
YES,Jukebox,jukebox,64 Stackable,-,267,64,TRUE
YES,Oak Fence,oak_fence,64 Stackable,-,268,64,TRUE
YES,Spruce Fence,spruce_fence,64 Stackable,-,269,64,TRUE
YES,Birch Fence,birch_fence,64 Stackable,-,270,64,TRUE
YES,Jungle Fence,jungle_fence,64 Stackable,-,271,64,TRUE
YES,Acacia Fence,acacia_fence,64 Stackable,-,272,64,TRUE
YES,Dark Oak Fence,dark_oak_fence,64 Stackable,-,273,64,TRUE
YES,Mangrove Fence,mangrove_fence,64 Stackable,-,274,64,TRUE
YES,Crimson Fence,crimson_fence,64 Stackable,-,275,64,TRUE
YES,Warped Fence,warped_fence,64 Stackable,-,276,64,TRUE
YES,Pumpkin,pumpkin,64 Stackable,-,277,64,TRUE
YES,Carved Pumpkin,carved_pumpkin,64 Stackable,-,278,64,TRUE
YES,Jack o'Lantern,jack_o_lantern,64 Stackable,-,279,64,TRUE
YES,Netherrack,netherrack,64 Stackable,-,280,64,TRUE
YES,Soul Sand,soul_sand,64 Stackable,-,281,64,TRUE
YES,Soul Soil,soul_soil,64 Stackable,-,282,64,TRUE
YES,Basalt,basalt,64 Stackable,-,283,64,TRUE
YES,Polished Basalt,polished_basalt,64 Stackable,-,284,64,TRUE
YES,Smooth Basalt,smooth_basalt,64 Stackable,-,285,64,TRUE
YES,Soul Torch,soul_torch,64 Stackable,-,286,64,TRUE
YES,Glowstone,glowstone,64 Stackable,-,287,64,TRUE
YES,Stone Bricks,stone_bricks,64 Stackable,-,295,64,TRUE
YES,Mossy Stone Bricks,mossy_stone_bricks,64 Stackable,-,296,64,TRUE
YES,Cracked Stone Bricks,cracked_stone_bricks,64 Stackable,-,297,64,TRUE
YES,Chiseled Stone Bricks,chiseled_stone_bricks,64 Stackable,-,298,64,TRUE
YES,Packed Mud,packed_mud,64 Stackable,-,299,64,TRUE
YES,Mud Bricks,mud_bricks,64 Stackable,-,300,64,TRUE
YES,Deepslate Bricks,deepslate_bricks,64 Stackable,-,301,64,TRUE
YES,Cracked Deepslate Bricks,cracked_deepslate_bricks,64 Stackable,-,302,64,TRUE
YES,Deepslate Tiles,deepslate_tiles,64 Stackable,-,303,64,TRUE
YES,Cracked Deepslate Tiles,cracked_deepslate_tiles,64 Stackable,-,304,64,TRUE
YES,Chiseled Deepslate,chiseled_deepslate,64 Stackable,-,305,64,TRUE
YES,Brown Mushroom Block,brown_mushroom_block,64 Stackable,-,307,64,TRUE
YES,Red Mushroom Block,red_mushroom_block,64 Stackable,-,308,64,TRUE
YES,Mushroom Stem,mushroom_stem,64 Stackable,-,309,64,TRUE
YES,Iron Bars,iron_bars,64 Stackable,-,310,64,TRUE
YES,Chain,chain,64 Stackable,-,311,64,TRUE
YES,Glass Pane,glass_pane,64 Stackable,-,312,64,TRUE
YES,Melon,melon,64 Stackable,-,313,64,TRUE
YES,Vines,vine,64 Stackable,-,314,64,TRUE
YES,Glow Lichen,glow_lichen,64 Stackable,-,315,64,TRUE
YES,Brick Stairs,brick_stairs,64 Stackable,-,316,64,TRUE
YES,Stone Brick Stairs,stone_brick_stairs,64 Stackable,-,317,64,TRUE
YES,Mud Brick Stairs,mud_brick_stairs,64 Stackable,-,318,64,TRUE
YES,Mycelium,mycelium,64 Stackable,-,319,64,TRUE
YES,Lily Pad,lily_pad,64 Stackable,-,320,64,TRUE
YES,Nether Bricks,nether_bricks,64 Stackable,-,321,64,TRUE
YES,Cracked Nether Bricks,cracked_nether_bricks,64 Stackable,-,322,64,TRUE
YES,Chiseled Nether Bricks,chiseled_nether_bricks,64 Stackable,-,323,64,TRUE
YES,Nether Brick Fence,nether_brick_fence,64 Stackable,-,324,64,TRUE
YES,Nether Brick Stairs,nether_brick_stairs,64 Stackable,-,325,64,TRUE
YES,Sculk,sculk,64 Stackable,-,326,64,TRUE
YES,Sculk Vein,sculk_vein,64 Stackable,-,327,64,TRUE
YES,Sculk Catalyst,sculk_catalyst,64 Stackable,-,328,64,TRUE
YES,Sculk Shrieker,sculk_shrieker,64 Stackable,-,329,64,TRUE
YES,Enchanting Table,enchanting_table,64 Stackable,-,330,64,TRUE
YES,End Stone,end_stone,64 Stackable,-,332,64,TRUE
YES,End Stone Bricks,end_stone_bricks,64 Stackable,-,333,64,TRUE
YES,Dragon Egg,dragon_egg,64 Stackable,-,334,64,TRUE
YES,Sandstone Stairs,sandstone_stairs,64 Stackable,-,335,64,TRUE
YES,Ender Chest,ender_chest,64 Stackable,-,336,64,TRUE
YES,Block of Emerald,emerald_block,64 Stackable,-,337,64,TRUE
YES,Oak Stairs,oak_stairs,64 Stackable,-,338,64,TRUE
YES,Spruce Stairs,spruce_stairs,64 Stackable,-,339,64,TRUE
YES,Birch Stairs,birch_stairs,64 Stackable,-,340,64,TRUE
YES,Jungle Stairs,jungle_stairs,64 Stackable,-,341,64,TRUE
YES,Acacia Stairs,acacia_stairs,64 Stackable,-,342,64,TRUE
YES,Dark Oak Stairs,dark_oak_stairs,64 Stackable,-,343,64,TRUE
YES,Mangrove Stairs,mangrove_stairs,64 Stackable,-,344,64,TRUE
YES,Crimson Stairs,crimson_stairs,64 Stackable,-,345,64,TRUE
YES,Warped Stairs,warped_stairs,64 Stackable,-,346,64,TRUE
YES,Beacon,beacon,64 Stackable,-,348,64,TRUE
YES,Cobblestone Wall,cobblestone_wall,64 Stackable,-,349,64,TRUE
YES,Mossy Cobblestone Wall,mossy_cobblestone_wall,64 Stackable,-,350,64,TRUE
YES,Brick Wall,brick_wall,64 Stackable,-,351,64,TRUE
YES,Prismarine Wall,prismarine_wall,64 Stackable,-,352,64,TRUE
YES,Red Sandstone Wall,red_sandstone_wall,64 Stackable,-,353,64,TRUE
YES,Mossy Stone Brick Wall,mossy_stone_brick_wall,64 Stackable,-,354,64,TRUE
YES,Granite Wall,granite_wall,64 Stackable,-,355,64,TRUE
YES,Stone Brick Wall,stone_brick_wall,64 Stackable,-,356,64,TRUE
YES,Mud Brick Wall,mud_brick_wall,64 Stackable,-,357,64,TRUE
YES,Nether Brick Wall,nether_brick_wall,64 Stackable,-,358,64,TRUE
YES,Andesite Wall,andesite_wall,64 Stackable,-,359,64,TRUE
YES,Red Nether Brick Wall,red_nether_brick_wall,64 Stackable,-,360,64,TRUE
YES,Sandstone Wall,sandstone_wall,64 Stackable,-,361,64,TRUE
YES,End Stone Brick Wall,end_stone_brick_wall,64 Stackable,-,362,64,TRUE
YES,Diorite Wall,diorite_wall,64 Stackable,-,363,64,TRUE
YES,Blackstone Wall,blackstone_wall,64 Stackable,-,364,64,TRUE
YES,Polished Blackstone Wall,polished_blackstone_wall,64 Stackable,-,365,64,TRUE
YES,Polished Blackstone Brick Wall,polished_blackstone_brick_wall,64 Stackable,-,366,64,TRUE
YES,Cobbled Deepslate Wall,cobbled_deepslate_wall,64 Stackable,-,367,64,TRUE
YES,Polished Deepslate Wall,polished_deepslate_wall,64 Stackable,-,368,64,TRUE
YES,Deepslate Brick Wall,deepslate_brick_wall,64 Stackable,-,369,64,TRUE
YES,Deepslate Tile Wall,deepslate_tile_wall,64 Stackable,-,370,64,TRUE
YES,Anvil,anvil,64 Stackable,-,371,64,TRUE
YES,Chipped Anvil,chipped_anvil,64 Stackable,-,372,64,TRUE
YES,Damaged Anvil,damaged_anvil,64 Stackable,-,373,64,TRUE
YES,Chiseled Quartz Block,chiseled_quartz_block,64 Stackable,-,374,64,TRUE
YES,Block of Quartz,quartz_block,64 Stackable,-,375,64,TRUE
YES,Quartz Bricks,quartz_bricks,64 Stackable,-,376,64,TRUE
YES,Quartz Pillar,quartz_pillar,64 Stackable,-,377,64,TRUE
YES,Quartz Stairs,quartz_stairs,64 Stackable,-,378,64,TRUE
YES,White Terracotta,white_terracotta,64 Stackable,-,379,64,TRUE
YES,Orange Terracotta,orange_terracotta,64 Stackable,-,380,64,TRUE
YES,Magenta Terracotta,magenta_terracotta,64 Stackable,-,381,64,TRUE
YES,Light Blue Terracotta,light_blue_terracotta,64 Stackable,-,382,64,TRUE
YES,Yellow Terracotta,yellow_terracotta,64 Stackable,-,383,64,TRUE
YES,Lime Terracotta,lime_terracotta,64 Stackable,-,384,64,TRUE
YES,Pink Terracotta,pink_terracotta,64 Stackable,-,385,64,TRUE
YES,Gray Terracotta,gray_terracotta,64 Stackable,-,386,64,TRUE
YES,Light Gray Terracotta,light_gray_terracotta,64 Stackable,-,387,64,TRUE
YES,Cyan Terracotta,cyan_terracotta,64 Stackable,-,388,64,TRUE
YES,Purple Terracotta,purple_terracotta,64 Stackable,-,389,64,TRUE
YES,Blue Terracotta,blue_terracotta,64 Stackable,-,390,64,TRUE
YES,Brown Terracotta,brown_terracotta,64 Stackable,-,391,64,TRUE
YES,Green Terracotta,green_terracotta,64 Stackable,-,392,64,TRUE
YES,Red Terracotta,red_terracotta,64 Stackable,-,393,64,TRUE
YES,Black Terracotta,black_terracotta,64 Stackable,-,394,64,TRUE
YES,Hay Bale,hay_block,64 Stackable,-,397,64,TRUE
YES,White Carpet,white_carpet,64 Stackable,-,398,64,TRUE
YES,Orange Carpet,orange_carpet,64 Stackable,-,399,64,TRUE
YES,Magenta Carpet,magenta_carpet,64 Stackable,-,400,64,TRUE
YES,Light Blue Carpet,light_blue_carpet,64 Stackable,-,401,64,TRUE
YES,Yellow Carpet,yellow_carpet,64 Stackable,-,402,64,TRUE
YES,Lime Carpet,lime_carpet,64 Stackable,-,403,64,TRUE
YES,Pink Carpet,pink_carpet,64 Stackable,-,404,64,TRUE
YES,Gray Carpet,gray_carpet,64 Stackable,-,405,64,TRUE
YES,Light Gray Carpet,light_gray_carpet,64 Stackable,-,406,64,TRUE
YES,Cyan Carpet,cyan_carpet,64 Stackable,-,407,64,TRUE
YES,Purple Carpet,purple_carpet,64 Stackable,-,408,64,TRUE
YES,Blue Carpet,blue_carpet,64 Stackable,-,409,64,TRUE
YES,Brown Carpet,brown_carpet,64 Stackable,-,410,64,TRUE
YES,Green Carpet,green_carpet,64 Stackable,-,411,64,TRUE
YES,Red Carpet,red_carpet,64 Stackable,-,412,64,TRUE
YES,Black Carpet,black_carpet,64 Stackable,-,413,64,TRUE
YES,Terracotta,terracotta,64 Stackable,-,414,64,TRUE
YES,Packed Ice,packed_ice,64 Stackable,-,415,64,TRUE
YES,Sunflower,sunflower,64 Stackable,-,417,64,TRUE
YES,Lilac,lilac,64 Stackable,-,418,64,TRUE
YES,Rose Bush,rose_bush,64 Stackable,-,419,64,TRUE
YES,Peony,peony,64 Stackable,-,420,64,TRUE
YES,Tall Grass,tall_grass,64 Stackable,-,421,64,TRUE
YES,Large Fern,large_fern,64 Stackable,-,422,64,TRUE
YES,White Stained Glass,white_stained_glass,64 Stackable,-,423,64,TRUE
YES,Orange Stained Glass,orange_stained_glass,64 Stackable,-,424,64,TRUE
YES,Magenta Stained Glass,magenta_stained_glass,64 Stackable,-,425,64,TRUE
YES,Light Blue Stained Glass,light_blue_stained_glass,64 Stackable,-,426,64,TRUE
YES,Yellow Stained Glass,yellow_stained_glass,64 Stackable,-,427,64,TRUE
YES,Lime Stained Glass,lime_stained_glass,64 Stackable,-,428,64,TRUE
YES,Pink Stained Glass,pink_stained_glass,64 Stackable,-,429,64,TRUE
YES,Gray Stained Glass,gray_stained_glass,64 Stackable,-,430,64,TRUE
YES,Light Gray Stained Glass,light_gray_stained_glass,64 Stackable,-,431,64,TRUE
YES,Cyan Stained Glass,cyan_stained_glass,64 Stackable,-,432,64,TRUE
YES,Purple Stained Glass,purple_stained_glass,64 Stackable,-,433,64,TRUE
YES,Blue Stained Glass,blue_stained_glass,64 Stackable,-,434,64,TRUE
YES,Brown Stained Glass,brown_stained_glass,64 Stackable,-,435,64,TRUE
YES,Green Stained Glass,green_stained_glass,64 Stackable,-,436,64,TRUE
YES,Red Stained Glass,red_stained_glass,64 Stackable,-,437,64,TRUE
YES,Black Stained Glass,black_stained_glass,64 Stackable,-,438,64,TRUE
YES,White Stained Glass Pane,white_stained_glass_pane,64 Stackable,-,439,64,TRUE
YES,Orange Stained Glass Pane,orange_stained_glass_pane,64 Stackable,-,440,64,TRUE
YES,Magenta Stained Glass Pane,magenta_stained_glass_pane,64 Stackable,-,441,64,TRUE
YES,Light Blue Stained Glass Pane,light_blue_stained_glass_pane,64 Stackable,-,442,64,TRUE
YES,Yellow Stained Glass Pane,yellow_stained_glass_pane,64 Stackable,-,443,64,TRUE
YES,Lime Stained Glass Pane,lime_stained_glass_pane,64 Stackable,-,444,64,TRUE
YES,Pink Stained Glass Pane,pink_stained_glass_pane,64 Stackable,-,445,64,TRUE
YES,Gray Stained Glass Pane,gray_stained_glass_pane,64 Stackable,-,446,64,TRUE
YES,Light Gray Stained Glass Pane,light_gray_stained_glass_pane,64 Stackable,-,447,64,TRUE
YES,Cyan Stained Glass Pane,cyan_stained_glass_pane,64 Stackable,-,448,64,TRUE
YES,Purple Stained Glass Pane,purple_stained_glass_pane,64 Stackable,-,449,64,TRUE
YES,Blue Stained Glass Pane,blue_stained_glass_pane,64 Stackable,-,450,64,TRUE
YES,Brown Stained Glass Pane,brown_stained_glass_pane,64 Stackable,-,451,64,TRUE
YES,Green Stained Glass Pane,green_stained_glass_pane,64 Stackable,-,452,64,TRUE
YES,Red Stained Glass Pane,red_stained_glass_pane,64 Stackable,-,453,64,TRUE
YES,Black Stained Glass Pane,black_stained_glass_pane,64 Stackable,-,454,64,TRUE
YES,Prismarine,prismarine,64 Stackable,-,455,64,TRUE
YES,Prismarine Bricks,prismarine_bricks,64 Stackable,-,456,64,TRUE
YES,Dark Prismarine,dark_prismarine,64 Stackable,-,457,64,TRUE
YES,Prismarine Stairs,prismarine_stairs,64 Stackable,-,458,64,TRUE
YES,Prismarine Brick Stairs,prismarine_brick_stairs,64 Stackable,-,459,64,TRUE
YES,Dark Prismarine Stairs,dark_prismarine_stairs,64 Stackable,-,460,64,TRUE
YES,Sea Lantern,sea_lantern,64 Stackable,-,461,64,TRUE
YES,Red Sandstone,red_sandstone,64 Stackable,-,462,64,TRUE
YES,Chiseled Red Sandstone,chiseled_red_sandstone,64 Stackable,-,463,64,TRUE
YES,Cut Red Sandstone,cut_red_sandstone,64 Stackable,-,464,64,TRUE
YES,Red Sandstone Stairs,red_sandstone_stairs,64 Stackable,-,465,64,TRUE
YES,Magma Block,magma_block,64 Stackable,-,468,64,TRUE
YES,Nether Wart Block,nether_wart_block,64 Stackable,-,469,64,TRUE
YES,Warped Wart Block,warped_wart_block,64 Stackable,-,470,64,TRUE
YES,Red Nether Bricks,red_nether_bricks,64 Stackable,-,471,64,TRUE
YES,Bone Block,bone_block,64 Stackable,-,472,64,TRUE
YES,Shulker Box,shulker_box,Unstackable,,474,1,TRUE
YES,White Shulker Box,white_shulker_box,Unstackable,,475,1,TRUE
YES,Orange Shulker Box,orange_shulker_box,Unstackable,,476,1,TRUE
YES,Magenta Shulker Box,magenta_shulker_box,Unstackable,,477,1,TRUE
YES,Light Blue Shulker Box,light_blue_shulker_box,Unstackable,,478,1,TRUE
YES,Yellow Shulker Box,yellow_shulker_box,Unstackable,,479,1,TRUE
YES,Lime Shulker Box,lime_shulker_box,Unstackable,,480,1,TRUE
YES,Pink Shulker Box,pink_shulker_box,Unstackable,,481,1,TRUE
YES,Gray Shulker Box,gray_shulker_box,Unstackable,,482,1,TRUE
YES,Light Gray Shulker Box,light_gray_shulker_box,Unstackable,,483,1,TRUE
YES,Cyan Shulker Box,cyan_shulker_box,Unstackable,,484,1,TRUE
YES,Purple Shulker Box,purple_shulker_box,Unstackable,,485,1,TRUE
YES,Blue Shulker Box,blue_shulker_box,Unstackable,,486,1,TRUE
YES,Brown Shulker Box,brown_shulker_box,Unstackable,,487,1,TRUE
YES,Green Shulker Box,green_shulker_box,Unstackable,,488,1,TRUE
YES,Red Shulker Box,red_shulker_box,Unstackable,,489,1,TRUE
YES,Black Shulker Box,black_shulker_box,Unstackable,,490,1,TRUE
YES,White Glazed Terracotta,white_glazed_terracotta,64 Stackable,-,491,64,TRUE
YES,Orange Glazed Terracotta,orange_glazed_terracotta,64 Stackable,-,492,64,TRUE
YES,Magenta Glazed Terracotta,magenta_glazed_terracotta,64 Stackable,-,493,64,TRUE
YES,Light Blue Glazed Terracotta,light_blue_glazed_terracotta,64 Stackable,-,494,64,TRUE
YES,Yellow Glazed Terracotta,yellow_glazed_terracotta,64 Stackable,-,495,64,TRUE
YES,Lime Glazed Terracotta,lime_glazed_terracotta,64 Stackable,-,496,64,TRUE
YES,Pink Glazed Terracotta,pink_glazed_terracotta,64 Stackable,-,497,64,TRUE
YES,Gray Glazed Terracotta,gray_glazed_terracotta,64 Stackable,-,498,64,TRUE
YES,Light Gray Glazed Terracotta,light_gray_glazed_terracotta,64 Stackable,-,499,64,TRUE
YES,Cyan Glazed Terracotta,cyan_glazed_terracotta,64 Stackable,-,500,64,TRUE
YES,Purple Glazed Terracotta,purple_glazed_terracotta,64 Stackable,-,501,64,TRUE
YES,Blue Glazed Terracotta,blue_glazed_terracotta,64 Stackable,-,502,64,TRUE
YES,Brown Glazed Terracotta,brown_glazed_terracotta,64 Stackable,-,503,64,TRUE
YES,Green Glazed Terracotta,green_glazed_terracotta,64 Stackable,-,504,64,TRUE
YES,Red Glazed Terracotta,red_glazed_terracotta,64 Stackable,-,505,64,TRUE
YES,Black Glazed Terracotta,black_glazed_terracotta,64 Stackable,-,506,64,TRUE
YES,White Concrete,white_concrete,64 Stackable,-,507,64,TRUE
YES,Orange Concrete,orange_concrete,64 Stackable,-,508,64,TRUE
YES,Magenta Concrete,magenta_concrete,64 Stackable,-,509,64,TRUE
YES,Light Blue Concrete,light_blue_concrete,64 Stackable,-,510,64,TRUE
YES,Yellow Concrete,yellow_concrete,64 Stackable,-,511,64,TRUE
YES,Lime Concrete,lime_concrete,64 Stackable,-,512,64,TRUE
YES,Pink Concrete,pink_concrete,64 Stackable,-,513,64,TRUE
YES,Gray Concrete,gray_concrete,64 Stackable,-,514,64,TRUE
YES,Light Gray Concrete,light_gray_concrete,64 Stackable,-,515,64,TRUE
YES,Cyan Concrete,cyan_concrete,64 Stackable,-,516,64,TRUE
YES,Purple Concrete,purple_concrete,64 Stackable,-,517,64,TRUE
YES,Blue Concrete,blue_concrete,64 Stackable,-,518,64,TRUE
YES,Brown Concrete,brown_concrete,64 Stackable,-,519,64,TRUE
YES,Green Concrete,green_concrete,64 Stackable,-,520,64,TRUE
YES,Red Concrete,red_concrete,64 Stackable,-,521,64,TRUE
YES,Black Concrete,black_concrete,64 Stackable,-,522,64,TRUE
YES,White Concrete Powder,white_concrete_powder,64 Stackable,-,523,64,TRUE
YES,Orange Concrete Powder,orange_concrete_powder,64 Stackable,-,524,64,TRUE
YES,Magenta Concrete Powder,magenta_concrete_powder,64 Stackable,-,525,64,TRUE
YES,Light Blue Concrete Powder,light_blue_concrete_powder,64 Stackable,-,526,64,TRUE
YES,Yellow Concrete Powder,yellow_concrete_powder,64 Stackable,-,527,64,TRUE
YES,Lime Concrete Powder,lime_concrete_powder,64 Stackable,-,528,64,TRUE
YES,Pink Concrete Powder,pink_concrete_powder,64 Stackable,-,529,64,TRUE
YES,Gray Concrete Powder,gray_concrete_powder,64 Stackable,-,530,64,TRUE
YES,Light Gray Concrete Powder,light_gray_concrete_powder,64 Stackable,-,531,64,TRUE
YES,Cyan Concrete Powder,cyan_concrete_powder,64 Stackable,-,532,64,TRUE
YES,Purple Concrete Powder,purple_concrete_powder,64 Stackable,-,533,64,TRUE
YES,Blue Concrete Powder,blue_concrete_powder,64 Stackable,-,534,64,TRUE
YES,Brown Concrete Powder,brown_concrete_powder,64 Stackable,-,535,64,TRUE
YES,Green Concrete Powder,green_concrete_powder,64 Stackable,-,536,64,TRUE
YES,Red Concrete Powder,red_concrete_powder,64 Stackable,-,537,64,TRUE
YES,Black Concrete Powder,black_concrete_powder,64 Stackable,-,538,64,TRUE
YES,Turtle Egg,turtle_egg,64 Stackable,-,539,64,TRUE
YES,Dead Tube Coral Block,dead_tube_coral_block,64 Stackable,-,540,64,TRUE
YES,Dead Brain Coral Block,dead_brain_coral_block,64 Stackable,-,541,64,TRUE
YES,Dead Bubble Coral Block,dead_bubble_coral_block,64 Stackable,-,542,64,TRUE
YES,Dead Fire Coral Block,dead_fire_coral_block,64 Stackable,-,543,64,TRUE
YES,Dead Horn Coral Block,dead_horn_coral_block,64 Stackable,-,544,64,TRUE
YES,Tube Coral Block,tube_coral_block,64 Stackable,-,545,64,TRUE
YES,Brain Coral Block,brain_coral_block,64 Stackable,-,546,64,TRUE
YES,Bubble Coral Block,bubble_coral_block,64 Stackable,-,547,64,TRUE
YES,Fire Coral Block,fire_coral_block,64 Stackable,-,548,64,TRUE
YES,Horn Coral Block,horn_coral_block,64 Stackable,-,549,64,TRUE
YES,Tube Coral,tube_coral,64 Stackable,-,550,64,TRUE
YES,Brain Coral,brain_coral,64 Stackable,-,551,64,TRUE
YES,Bubble Coral,bubble_coral,64 Stackable,-,552,64,TRUE
YES,Fire Coral,fire_coral,64 Stackable,-,553,64,TRUE
YES,Horn Coral,horn_coral,64 Stackable,-,554,64,TRUE
YES,Dead Brain Coral,dead_brain_coral,64 Stackable,-,555,64,TRUE
YES,Dead Bubble Coral,dead_bubble_coral,64 Stackable,-,556,64,TRUE
YES,Dead Fire Coral,dead_fire_coral,64 Stackable,-,557,64,TRUE
YES,Dead Horn Coral,dead_horn_coral,64 Stackable,-,558,64,TRUE
YES,Dead Tube Coral,dead_tube_coral,64 Stackable,-,559,64,TRUE
YES,Tube Coral Fan,tube_coral_fan,64 Stackable,-,560,64,TRUE
YES,Brain Coral Fan,brain_coral_fan,64 Stackable,-,561,64,TRUE
YES,Bubble Coral Fan,bubble_coral_fan,64 Stackable,-,562,64,TRUE
YES,Fire Coral Fan,fire_coral_fan,64 Stackable,-,563,64,TRUE
YES,Horn Coral Fan,horn_coral_fan,64 Stackable,-,564,64,TRUE
YES,Dead Tube Coral Fan,dead_tube_coral_fan,64 Stackable,-,565,64,TRUE
YES,Dead Brain Coral Fan,dead_brain_coral_fan,64 Stackable,-,566,64,TRUE
YES,Dead Bubble Coral Fan,dead_bubble_coral_fan,64 Stackable,-,567,64,TRUE
YES,Dead Fire Coral Fan,dead_fire_coral_fan,64 Stackable,-,568,64,TRUE
YES,Dead Horn Coral Fan,dead_horn_coral_fan,64 Stackable,-,569,64,TRUE
YES,Blue Ice,blue_ice,64 Stackable,-,570,64,TRUE
YES,Conduit,conduit,64 Stackable,-,571,64,TRUE
YES,Polished Granite Stairs,polished_granite_stairs,64 Stackable,-,572,64,TRUE
YES,Smooth Red Sandstone Stairs,smooth_red_sandstone_stairs,64 Stackable,-,573,64,TRUE
YES,Mossy Stone Brick Stairs,mossy_stone_brick_stairs,64 Stackable,-,574,64,TRUE
YES,Polished Diorite Stairs,polished_diorite_stairs,64 Stackable,-,575,64,TRUE
YES,Mossy Cobblestone Stairs,mossy_cobblestone_stairs,64 Stackable,-,576,64,TRUE
YES,End Stone Brick Stairs,end_stone_brick_stairs,64 Stackable,-,577,64,TRUE
YES,Stone Stairs,stone_stairs,64 Stackable,-,578,64,TRUE
YES,Smooth Sandstone Stairs,smooth_sandstone_stairs,64 Stackable,-,579,64,TRUE
YES,Smooth Quartz Stairs,smooth_quartz_stairs,64 Stackable,-,580,64,TRUE
YES,Granite Stairs,granite_stairs,64 Stackable,-,581,64,TRUE
YES,Andesite Stairs,andesite_stairs,64 Stackable,-,582,64,TRUE
YES,Red Nether Brick Stairs,red_nether_brick_stairs,64 Stackable,-,583,64,TRUE
YES,Polished Andesite Stairs,polished_andesite_stairs,64 Stackable,-,584,64,TRUE
YES,Diorite Stairs,diorite_stairs,64 Stackable,-,585,64,TRUE
YES,Cobbled Deepslate Stairs,cobbled_deepslate_stairs,64 Stackable,-,586,64,TRUE
YES,Polished Deepslate Stairs,polished_deepslate_stairs,64 Stackable,-,587,64,TRUE
YES,Deepslate Brick Stairs,deepslate_brick_stairs,64 Stackable,-,588,64,TRUE
YES,Deepslate Tile Stairs,deepslate_tile_stairs,64 Stackable,-,589,64,TRUE
YES,Polished Granite Slab,polished_granite_slab,64 Stackable,-,590,64,TRUE
YES,Smooth Red Sandstone Slab,smooth_red_sandstone_slab,64 Stackable,-,591,64,TRUE
YES,Mossy Stone Brick Slab,mossy_stone_brick_slab,64 Stackable,-,592,64,TRUE
YES,Polished Diorite Slab,polished_diorite_slab,64 Stackable,-,593,64,TRUE
YES,Mossy Cobblestone Slab,mossy_cobblestone_slab,64 Stackable,-,594,64,TRUE
YES,End Stone Brick Slab,end_stone_brick_slab,64 Stackable,-,595,64,TRUE
YES,Smooth Sandstone Slab,smooth_sandstone_slab,64 Stackable,-,596,64,TRUE
YES,Smooth Quartz Slab,smooth_quartz_slab,64 Stackable,-,597,64,TRUE
YES,Granite Slab,granite_slab,64 Stackable,-,598,64,TRUE
YES,Andesite Slab,andesite_slab,64 Stackable,-,599,64,TRUE
YES,Red Nether Brick Slab,red_nether_brick_slab,64 Stackable,-,600,64,TRUE
YES,Polished Andesite Slab,polished_andesite_slab,64 Stackable,-,601,64,TRUE
YES,Diorite Slab,diorite_slab,64 Stackable,-,602,64,TRUE
YES,Cobbled Deepslate Slab,cobbled_deepslate_slab,64 Stackable,-,603,64,TRUE
YES,Polished Deepslate Slab,polished_deepslate_slab,64 Stackable,-,604,64,TRUE
YES,Deepslate Brick Slab,deepslate_brick_slab,64 Stackable,-,605,64,TRUE
YES,Deepslate Tile Slab,deepslate_tile_slab,64 Stackable,-,606,64,TRUE
YES,Scaffolding,scaffolding,64 Stackable,-,607,64,TRUE
YES,Redstone Dust,redstone,64 Stackable,-,608,64,TRUE
YES,Redstone Torch,redstone_torch,64 Stackable,-,609,64,TRUE
YES,Block of Redstone,redstone_block,64 Stackable,-,610,64,TRUE
YES,Redstone Repeater,repeater,64 Stackable,-,611,64,TRUE
YES,Redstone Comparator,comparator,64 Stackable,-,612,64,TRUE
YES,Piston,piston,64 Stackable,-,613,64,TRUE
YES,Sticky Piston,sticky_piston,64 Stackable,-,614,64,TRUE
YES,Slime Block,slime_block,64 Stackable,-,615,64,TRUE
YES,Honey Block,honey_block,64 Stackable,-,616,64,TRUE
YES,Observer,observer,64 Stackable,-,617,64,TRUE
YES,Hopper,hopper,64 Stackable,-,618,64,TRUE
YES,Dispenser,dispenser,64 Stackable,-,619,64,TRUE
YES,Dropper,dropper,64 Stackable,-,620,64,TRUE
YES,Lectern,lectern,64 Stackable,-,621,64,TRUE
YES,Target,target,64 Stackable,-,622,64,TRUE
YES,Lever,lever,64 Stackable,-,623,64,TRUE
YES,Lightning Rod,lightning_rod,64 Stackable,-,624,64,TRUE
YES,Daylight Detector,daylight_detector,64 Stackable,-,625,64,TRUE
YES,Sculk Sensor,sculk_sensor,64 Stackable,-,626,64,TRUE
YES,Tripwire Hook,tripwire_hook,64 Stackable,-,627,64,TRUE
YES,Trapped Chest,trapped_chest,64 Stackable,-,628,64,TRUE
YES,TNT,tnt,64 Stackable,-,629,64,TRUE
YES,Redstone Lamp,redstone_lamp,64 Stackable,-,630,64,TRUE
YES,Note Block,note_block,64 Stackable,-,631,64,TRUE
YES,Stone Button,stone_button,64 Stackable,-,632,64,TRUE
YES,Polished Blackstone Button,polished_blackstone_button,64 Stackable,-,633,64,TRUE
YES,Oak Button,oak_button,64 Stackable,-,634,64,TRUE
YES,Spruce Button,spruce_button,64 Stackable,-,635,64,TRUE
YES,Birch Button,birch_button,64 Stackable,-,636,64,TRUE
YES,Jungle Button,jungle_button,64 Stackable,-,637,64,TRUE
YES,Acacia Button,acacia_button,64 Stackable,-,638,64,TRUE
YES,Dark Oak Button,dark_oak_button,64 Stackable,-,639,64,TRUE
YES,Mangrove Button,mangrove_button,64 Stackable,-,640,64,TRUE
YES,Crimson Button,crimson_button,64 Stackable,-,641,64,TRUE
YES,Warped Button,warped_button,64 Stackable,-,642,64,TRUE
YES,Stone Pressure Plate,stone_pressure_plate,64 Stackable,-,643,64,TRUE
YES,Polished Blackstone Pressure Plate,polished_blackstone_pressure_plate,64 Stackable,-,644,64,TRUE
YES,Light Weighted Pressure Plate,light_weighted_pressure_plate,64 Stackable,-,645,64,TRUE
YES,Heavy Weighted Pressure Plate,heavy_weighted_pressure_plate,64 Stackable,-,646,64,TRUE
YES,Oak Pressure Plate,oak_pressure_plate,64 Stackable,-,647,64,TRUE
YES,Spruce Pressure Plate,spruce_pressure_plate,64 Stackable,-,648,64,TRUE
YES,Birch Pressure Plate,birch_pressure_plate,64 Stackable,-,649,64,TRUE
YES,Jungle Pressure Plate,jungle_pressure_plate,64 Stackable,-,650,64,TRUE
YES,Acacia Pressure Plate,acacia_pressure_plate,64 Stackable,-,651,64,TRUE
YES,Dark Oak Pressure Plate,dark_oak_pressure_plate,64 Stackable,-,652,64,TRUE
YES,Mangrove Pressure Plate,mangrove_pressure_plate,64 Stackable,-,653,64,TRUE
YES,Crimson Pressure Plate,crimson_pressure_plate,64 Stackable,-,654,64,TRUE
YES,Warped Pressure Plate,warped_pressure_plate,64 Stackable,-,655,64,TRUE
YES,Iron Door,iron_door,64 Stackable,-,656,64,TRUE
YES,Oak Door,oak_door,64 Stackable,-,657,64,TRUE
YES,Spruce Door,spruce_door,64 Stackable,-,658,64,TRUE
YES,Birch Door,birch_door,64 Stackable,-,659,64,TRUE
YES,Jungle Door,jungle_door,64 Stackable,-,660,64,TRUE
YES,Acacia Door,acacia_door,64 Stackable,-,661,64,TRUE
YES,Dark Oak Door,dark_oak_door,64 Stackable,-,662,64,TRUE
YES,Mangrove Door,mangrove_door,64 Stackable,-,663,64,TRUE
YES,Crimson Door,crimson_door,64 Stackable,-,664,64,TRUE
YES,Warped Door,warped_door,64 Stackable,-,665,64,TRUE
YES,Iron Trapdoor,iron_trapdoor,64 Stackable,-,666,64,TRUE
YES,Oak Trapdoor,oak_trapdoor,64 Stackable,-,667,64,TRUE
YES,Spruce Trapdoor,spruce_trapdoor,64 Stackable,-,668,64,TRUE
YES,Birch Trapdoor,birch_trapdoor,64 Stackable,-,669,64,TRUE
YES,Jungle Trapdoor,jungle_trapdoor,64 Stackable,-,670,64,TRUE
YES,Acacia Trapdoor,acacia_trapdoor,64 Stackable,-,671,64,TRUE
YES,Dark Oak Trapdoor,dark_oak_trapdoor,64 Stackable,-,672,64,TRUE
YES,Mangrove Trapdoor,mangrove_trapdoor,64 Stackable,-,673,64,TRUE
YES,Crimson Trapdoor,crimson_trapdoor,64 Stackable,-,674,64,TRUE
YES,Warped Trapdoor,warped_trapdoor,64 Stackable,-,675,64,TRUE
YES,Oak Fence Gate,oak_fence_gate,64 Stackable,-,676,64,TRUE
YES,Spruce Fence Gate,spruce_fence_gate,64 Stackable,-,677,64,TRUE
YES,Birch Fence Gate,birch_fence_gate,64 Stackable,-,678,64,TRUE
YES,Jungle Fence Gate,jungle_fence_gate,64 Stackable,-,679,64,TRUE
YES,Acacia Fence Gate,acacia_fence_gate,64 Stackable,-,680,64,TRUE
YES,Dark Oak Fence Gate,dark_oak_fence_gate,64 Stackable,-,681,64,TRUE
YES,Mangrove Fence Gate,mangrove_fence_gate,64 Stackable,-,682,64,TRUE
YES,Crimson Fence Gate,crimson_fence_gate,64 Stackable,-,683,64,TRUE
YES,Warped Fence Gate,warped_fence_gate,64 Stackable,-,684,64,TRUE
YES,Powered Rail,powered_rail,64 Stackable,-,685,64,TRUE
YES,Detector Rail,detector_rail,64 Stackable,-,686,64,TRUE
YES,Rail,rail,64 Stackable,-,687,64,TRUE
YES,Activator Rail,activator_rail,64 Stackable,-,688,64,TRUE
YES,Saddle,saddle,Unstackable,,689,1,TRUE
YES,Minecart,minecart,Unstackable,,690,1,TRUE
YES,Minecart with Chest,chest_minecart,Unstackable,,691,1,TRUE
YES,Minecart with Furnace,furnace_minecart,Unstackable,,692,1,TRUE
YES,Minecart with TNT,tnt_minecart,Unstackable,,693,1,TRUE
YES,Minecart with Hopper,hopper_minecart,Unstackable,,694,1,TRUE
YES,Carrot on a Stick,carrot_on_a_stick,Unstackable,,695,1,TRUE
YES,Warped Fungus on a Stick,warped_fungus_on_a_stick,Unstackable,,696,1,TRUE
YES,Elytra,elytra,Unstackable,,697,1,TRUE
YES,Oak Boat,oak_boat,Unstackable,,698,1,TRUE
YES,Oak Boat with Chest,oak_chest_boat,Unstackable,,699,1,TRUE
YES,Spruce Boat,spruce_boat,Unstackable,,700,1,TRUE
YES,Spruce Boat with Chest,spruce_chest_boat,Unstackable,,701,1,TRUE
YES,Birch Boat,birch_boat,Unstackable,,702,1,TRUE
YES,Birch Boat with Chest,birch_chest_boat,Unstackable,,703,1,TRUE
YES,Jungle Boat,jungle_boat,Unstackable,,704,1,TRUE
YES,Jungle Boat with Chest,jungle_chest_boat,Unstackable,,705,1,TRUE
YES,Acacia Boat,acacia_boat,Unstackable,,706,1,TRUE
YES,Acacia Boat with Chest,acacia_chest_boat,Unstackable,,707,1,TRUE
YES,Dark Oak Boat,dark_oak_boat,Unstackable,,708,1,TRUE
YES,Dark Oak Boat with Chest,dark_oak_chest_boat,Unstackable,,709,1,TRUE
YES,Mangrove Boat,mangrove_boat,Unstackable,,710,1,TRUE
YES,Mangrove Boat with Chest,mangrove_chest_boat,Unstackable,,711,1,TRUE
YES,Turtle Shell,turtle_helmet,Unstackable,,714,1,TRUE
YES,Scute,scute,64 Stackable,-,715,64,TRUE
YES,Flint and Steel,flint_and_steel,Unstackable,,716,1,TRUE
YES,Apple,apple,64 Stackable,-,717,64,TRUE
YES,Bow,bow,Unstackable,,718,1,TRUE
YES,Arrow,arrow,64 Stackable,-,719,64,TRUE
YES,Coal,coal,64 Stackable,-,720,64,TRUE
YES,Charcoal,charcoal,64 Stackable,-,721,64,TRUE
YES,Diamond,diamond,64 Stackable,-,722,64,TRUE
YES,Emerald,emerald,64 Stackable,-,723,64,TRUE
YES,Lapis Lazuli,lapis_lazuli,64 Stackable,-,724,64,TRUE
YES,Nether Quartz,quartz,64 Stackable,-,725,64,TRUE
YES,Amethyst Shard,amethyst_shard,64 Stackable,-,726,64,TRUE
YES,Raw Iron,raw_iron,64 Stackable,-,727,64,TRUE
YES,Iron Ingot,iron_ingot,64 Stackable,-,728,64,TRUE
YES,Raw Copper,raw_copper,64 Stackable,-,729,64,TRUE
YES,Copper Ingot,copper_ingot,64 Stackable,-,730,64,TRUE
YES,Raw Gold,raw_gold,64 Stackable,-,731,64,TRUE
YES,Gold Ingot,gold_ingot,64 Stackable,-,732,64,TRUE
YES,Netherite Ingot,netherite_ingot,64 Stackable,-,733,64,TRUE
YES,Netherite Scrap,netherite_scrap,64 Stackable,-,734,64,TRUE
YES,Wooden Sword,wooden_sword,Unstackable,,735,1,TRUE
YES,Wooden Shovel,wooden_shovel,Unstackable,,736,1,TRUE
YES,Wooden Pickaxe,wooden_pickaxe,Unstackable,,737,1,TRUE
YES,Wooden Axe,wooden_axe,Unstackable,,738,1,TRUE
YES,Wooden Hoe,wooden_hoe,Unstackable,,739,1,TRUE
YES,Stone Sword,stone_sword,Unstackable,,740,1,TRUE
YES,Stone Shovel,stone_shovel,Unstackable,,741,1,TRUE
YES,Stone Pickaxe,stone_pickaxe,Unstackable,,742,1,TRUE
YES,Stone Axe,stone_axe,Unstackable,,743,1,TRUE
YES,Stone Hoe,stone_hoe,Unstackable,,744,1,TRUE
YES,Golden Sword,golden_sword,Unstackable,,745,1,TRUE
YES,Golden Shovel,golden_shovel,Unstackable,,746,1,TRUE
YES,Golden Pickaxe,golden_pickaxe,Unstackable,,747,1,TRUE
YES,Golden Axe,golden_axe,Unstackable,,748,1,TRUE
YES,Golden Hoe,golden_hoe,Unstackable,,749,1,TRUE
YES,Iron Sword,iron_sword,Unstackable,,750,1,TRUE
YES,Iron Shovel,iron_shovel,Unstackable,,751,1,TRUE
YES,Iron Pickaxe,iron_pickaxe,Unstackable,,752,1,TRUE
YES,Iron Axe,iron_axe,Unstackable,,753,1,TRUE
YES,Iron Hoe,iron_hoe,Unstackable,,754,1,TRUE
YES,Diamond Sword,diamond_sword,Unstackable,,755,1,TRUE
YES,Diamond Shovel,diamond_shovel,Unstackable,,756,1,TRUE
YES,Diamond Pickaxe,diamond_pickaxe,Unstackable,,757,1,TRUE
YES,Diamond Axe,diamond_axe,Unstackable,,758,1,TRUE
YES,Diamond Hoe,diamond_hoe,Unstackable,,759,1,TRUE
YES,Netherite Sword,netherite_sword,Unstackable,,760,1,TRUE
YES,Netherite Shovel,netherite_shovel,Unstackable,,761,1,TRUE
YES,Netherite Pickaxe,netherite_pickaxe,Unstackable,,762,1,TRUE
YES,Netherite Axe,netherite_axe,Unstackable,,763,1,TRUE
YES,Netherite Hoe,netherite_hoe,Unstackable,,764,1,TRUE
YES,Stick,stick,64 Stackable,-,765,64,TRUE
YES,Bowl,bowl,64 Stackable,-,766,64,TRUE
YES,Mushroom Stew,mushroom_stew,Unstackable,,767,1,TRUE
YES,String,string,64 Stackable,-,768,64,TRUE
YES,Feather,feather,64 Stackable,-,769,64,TRUE
YES,Gunpowder,gunpowder,64 Stackable,-,770,64,TRUE
YES,Wheat Seeds,wheat_seeds,64 Stackable,-,771,64,TRUE
YES,Wheat,wheat,64 Stackable,-,772,64,TRUE
YES,Bread,bread,64 Stackable,-,773,64,TRUE
YES,Leather Cap,leather_helmet,Unstackable,,774,1,TRUE
YES,Leather Tunic,leather_chestplate,Unstackable,,775,1,TRUE
YES,Leather Pants,leather_leggings,Unstackable,,776,1,TRUE
YES,Leather Boots,leather_boots,Unstackable,,777,1,TRUE
YES,Chainmail Helmet,chainmail_helmet,Unstackable,,778,1,TRUE
YES,Chainmail Chestplate,chainmail_chestplate,Unstackable,,779,1,TRUE
YES,Chainmail Leggings,chainmail_leggings,Unstackable,,780,1,TRUE
YES,Chainmail Boots,chainmail_boots,Unstackable,,781,1,TRUE
YES,Iron Helmet,iron_helmet,Unstackable,,782,1,TRUE
YES,Iron Chestplate,iron_chestplate,Unstackable,,783,1,TRUE
YES,Iron Leggings,iron_leggings,Unstackable,,784,1,TRUE
YES,Iron Boots,iron_boots,Unstackable,,785,1,TRUE
YES,Diamond Helmet,diamond_helmet,Unstackable,,786,1,TRUE
YES,Diamond Chestplate,diamond_chestplate,Unstackable,,787,1,TRUE
YES,Diamond Leggings,diamond_leggings,Unstackable,,788,1,TRUE
YES,Diamond Boots,diamond_boots,Unstackable,,789,1,TRUE
YES,Golden Helmet,golden_helmet,Unstackable,,790,1,TRUE
YES,Golden Chestplate,golden_chestplate,Unstackable,,791,1,TRUE
YES,Golden Leggings,golden_leggings,Unstackable,,792,1,TRUE
YES,Golden Boots,golden_boots,Unstackable,,793,1,TRUE
YES,Netherite Helmet,netherite_helmet,Unstackable,,794,1,TRUE
YES,Netherite Chestplate,netherite_chestplate,Unstackable,,795,1,TRUE
YES,Netherite Leggings,netherite_leggings,Unstackable,,796,1,TRUE
YES,Netherite Boots,netherite_boots,Unstackable,,797,1,TRUE
YES,Flint,flint,64 Stackable,-,798,64,TRUE
YES,Raw Porkchop,porkchop,64 Stackable,-,799,64,TRUE
YES,Cooked Porkchop,cooked_porkchop,64 Stackable,-,800,64,TRUE
YES,Painting,painting,64 Stackable,-,801,64,TRUE
YES,Golden Apple,golden_apple,64 Stackable,-,802,64,TRUE
YES,Enchanted Golden Apple,enchanted_golden_apple,64 Stackable,-,803,64,TRUE
YES,Oak Sign,oak_sign,16 Stackable,-,804,16,TRUE
YES,Spruce Sign,spruce_sign,16 Stackable,-,805,16,TRUE
YES,Birch Sign,birch_sign,16 Stackable,-,806,16,TRUE
YES,Jungle Sign,jungle_sign,16 Stackable,-,807,16,TRUE
YES,Acacia Sign,acacia_sign,16 Stackable,-,808,16,TRUE
YES,Dark Oak Sign,dark_oak_sign,16 Stackable,-,809,16,TRUE
YES,Mangrove Sign,mangrove_sign,16 Stackable,-,810,16,TRUE
YES,Crimson Sign,crimson_sign,16 Stackable,-,811,16,TRUE
YES,Warped Sign,warped_sign,16 Stackable,-,812,16,TRUE
YES,Bucket,bucket,16 Stackable,-,813,16,TRUE
YES,Water Bucket,water_bucket,Unstackable,,814,1,TRUE
YES,Lava Bucket,lava_bucket,Unstackable,,815,1,TRUE
YES,Powder Snow Bucket,powder_snow_bucket,Unstackable,,816,1,TRUE
YES,Snowball,snowball,16 Stackable,-,817,16,TRUE
YES,Leather,leather,64 Stackable,-,818,64,TRUE
YES,Milk Bucket,milk_bucket,Unstackable,,819,1,TRUE
YES,Bucket of Pufferfish,pufferfish_bucket,Unstackable,,820,1,TRUE
YES,Bucket of Salmon,salmon_bucket,Unstackable,,821,1,TRUE
YES,Bucket of Cod,cod_bucket,Unstackable,,822,1,TRUE
YES,Bucket of Tropical Fish,tropical_fish_bucket,Unstackable,,823,1,TRUE
YES,Bucket of Axolotl,axolotl_bucket,Unstackable,,824,1,TRUE
YES,Bucket of Tadpole,tadpole_bucket,Unstackable,,825,1,TRUE
YES,Brick,brick,64 Stackable,-,826,64,TRUE
YES,Clay Ball,clay_ball,64 Stackable,-,827,64,TRUE
YES,Dried Kelp Block,dried_kelp_block,64 Stackable,-,828,64,TRUE
YES,Paper,paper,64 Stackable,-,829,64,TRUE
YES,Book,book,64 Stackable,-,830,64,TRUE
YES,Slimeball,slime_ball,64 Stackable,-,831,64,TRUE
YES,Egg,egg,16 Stackable,-,832,16,TRUE
YES,Compass,compass,64 Stackable,-,833,64,TRUE
YES,Recovery Compass,recovery_compass,64 Stackable,-,834,64,TRUE
YES,Fishing Rod,fishing_rod,Unstackable,,836,1,TRUE
YES,Clock,clock,64 Stackable,-,837,64,TRUE
YES,Spyglass,spyglass,Unstackable,,838,1,TRUE
YES,Glowstone Dust,glowstone_dust,64 Stackable,-,839,64,TRUE
YES,Raw Cod,cod,64 Stackable,-,840,64,TRUE
YES,Raw Salmon,salmon,64 Stackable,-,841,64,TRUE
YES,Tropical Fish,tropical_fish,64 Stackable,-,842,64,TRUE
YES,Pufferfish,pufferfish,64 Stackable,-,843,64,TRUE
YES,Cooked Cod,cooked_cod,64 Stackable,-,844,64,TRUE
YES,Cooked Salmon,cooked_salmon,64 Stackable,-,845,64,TRUE
YES,Ink Sac,ink_sac,64 Stackable,-,846,64,TRUE
YES,Glow Ink Sac,glow_ink_sac,64 Stackable,-,847,64,TRUE
YES,Cocoa Beans,cocoa_beans,64 Stackable,-,848,64,TRUE
YES,White Dye,white_dye,64 Stackable,-,849,64,TRUE
YES,Orange Dye,orange_dye,64 Stackable,-,850,64,TRUE
YES,Magenta Dye,magenta_dye,64 Stackable,-,851,64,TRUE
YES,Light Blue Dye,light_blue_dye,64 Stackable,-,852,64,TRUE
YES,Yellow Dye,yellow_dye,64 Stackable,-,853,64,TRUE
YES,Lime Dye,lime_dye,64 Stackable,-,854,64,TRUE
YES,Pink Dye,pink_dye,64 Stackable,-,855,64,TRUE
YES,Gray Dye,gray_dye,64 Stackable,-,856,64,TRUE
YES,Light Gray Dye,light_gray_dye,64 Stackable,-,857,64,TRUE
YES,Cyan Dye,cyan_dye,64 Stackable,-,858,64,TRUE
YES,Purple Dye,purple_dye,64 Stackable,-,859,64,TRUE
YES,Blue Dye,blue_dye,64 Stackable,-,860,64,TRUE
YES,Brown Dye,brown_dye,64 Stackable,-,861,64,TRUE
YES,Green Dye,green_dye,64 Stackable,-,862,64,TRUE
YES,Red Dye,red_dye,64 Stackable,-,863,64,TRUE
YES,Black Dye,black_dye,64 Stackable,-,864,64,TRUE
YES,Bone Meal,bone_meal,64 Stackable,-,865,64,TRUE
YES,Bone,bone,64 Stackable,-,866,64,TRUE
YES,Sugar,sugar,64 Stackable,-,867,64,TRUE
YES,Cake,cake,Unstackable,,868,1,TRUE
YES,White Bed,white_bed,Unstackable,,869,1,TRUE
YES,Orange Bed,orange_bed,Unstackable,,870,1,TRUE
YES,Magenta Bed,magenta_bed,Unstackable,,871,1,TRUE
YES,Light Blue Bed,light_blue_bed,Unstackable,,872,1,TRUE
YES,Yellow Bed,yellow_bed,Unstackable,,873,1,TRUE
YES,Lime Bed,lime_bed,Unstackable,,874,1,TRUE
YES,Pink Bed,pink_bed,Unstackable,,875,1,TRUE
YES,Gray Bed,gray_bed,Unstackable,,876,1,TRUE
YES,Light Gray Bed,light_gray_bed,Unstackable,,877,1,TRUE
YES,Cyan Bed,cyan_bed,Unstackable,,878,1,TRUE
YES,Purple Bed,purple_bed,Unstackable,,879,1,TRUE
YES,Blue Bed,blue_bed,Unstackable,,880,1,TRUE
YES,Brown Bed,brown_bed,Unstackable,,881,1,TRUE
YES,Green Bed,green_bed,Unstackable,,882,1,TRUE
YES,Red Bed,red_bed,Unstackable,,883,1,TRUE
YES,Black Bed,black_bed,Unstackable,,884,1,TRUE
YES,Cookie,cookie,64 Stackable,-,885,64,TRUE
YES,Map,filled_map,64 Stackable,-,886,64,TRUE
YES,Shears,shears,Unstackable,,887,1,TRUE
YES,Melon Slice,melon_slice,64 Stackable,-,888,64,TRUE
YES,Dried Kelp,dried_kelp,64 Stackable,-,889,64,TRUE
YES,Pumpkin Seeds,pumpkin_seeds,64 Stackable,-,890,64,TRUE
YES,Melon Seeds,melon_seeds,64 Stackable,-,891,64,TRUE
YES,Raw Beef,beef,64 Stackable,-,892,64,TRUE
YES,Steak,cooked_beef,64 Stackable,-,893,64,TRUE
YES,Raw Chicken,chicken,64 Stackable,-,894,64,TRUE
YES,Cooked Chicken,cooked_chicken,64 Stackable,-,895,64,TRUE
YES,Rotten Flesh,rotten_flesh,64 Stackable,-,896,64,TRUE
YES,Ender Pearl,ender_pearl,16 Stackable,-,897,16,TRUE
YES,Blaze Rod,blaze_rod,64 Stackable,-,898,64,TRUE
YES,Ghast Tear,ghast_tear,64 Stackable,-,899,64,TRUE
YES,Gold Nugget,gold_nugget,64 Stackable,-,900,64,TRUE
YES,Nether Wart,nether_wart,64 Stackable,-,901,64,TRUE
YES,Potion,potion,Unstackable,,902,1,TRUE
YES,Glass Bottle,glass_bottle,64 Stackable,-,903,64,TRUE
YES,Spider Eye,spider_eye,64 Stackable,-,904,64,TRUE
YES,Fermented Spider Eye,fermented_spider_eye,64 Stackable,-,905,64,TRUE
YES,Blaze Powder,blaze_powder,64 Stackable,-,906,64,TRUE
YES,Magma Cream,magma_cream,64 Stackable,-,907,64,TRUE
YES,Brewing Stand,brewing_stand,64 Stackable,-,908,64,TRUE
YES,Cauldron,cauldron,64 Stackable,-,909,64,TRUE
YES,Eye of Ender,ender_eye,64 Stackable,-,910,64,TRUE
YES,Glistering Melon Slice,glistering_melon_slice,64 Stackable,-,911,64,TRUE
YES,Bottle o' Enchanting,experience_bottle,64 Stackable,-,983,64,TRUE
YES,Fire Charge,fire_charge,64 Stackable,-,984,64,TRUE
YES,Book and Quill,writable_book,Unstackable,,985,1,TRUE
YES,Written Book,written_book,16 Stackable,-,986,16,TRUE
YES,Item Frame,item_frame,64 Stackable,-,987,64,TRUE
YES,Glow Item Frame,glow_item_frame,64 Stackable,-,988,64,TRUE
YES,Flower Pot,flower_pot,64 Stackable,-,989,64,TRUE
YES,Carrot,carrot,64 Stackable,-,990,64,TRUE
YES,Potato,potato,64 Stackable,-,991,64,TRUE
YES,Baked Potato,baked_potato,64 Stackable,-,992,64,TRUE
YES,Poisonous Potato,poisonous_potato,64 Stackable,-,993,64,TRUE
YES,Empty Map,map,64 Stackable,-,994,64,TRUE
YES,Golden Carrot,golden_carrot,64 Stackable,-,995,64,TRUE
YES,Skeleton Skull,skeleton_skull,64 Stackable,-,996,64,TRUE
YES,Wither Skeleton Skull,wither_skeleton_skull,64 Stackable,-,997,64,TRUE
YES,Zombie Head,zombie_head,64 Stackable,-,999,64,TRUE
YES,Creeper Head,creeper_head,64 Stackable,-,1000,64,TRUE
YES,Dragon Head,dragon_head,64 Stackable,-,1001,64,TRUE
YES,Nether Star,nether_star,64 Stackable,-,1002,64,TRUE
YES,Pumpkin Pie,pumpkin_pie,64 Stackable,-,1003,64,TRUE
YES,Firework Rocket,firework_rocket,64 Stackable,-,1004,64,TRUE
YES,Firework Star,firework_star,64 Stackable,-,1005,64,TRUE
YES,Enchanted Book,enchanted_book,Unstackable,,1006,1,TRUE
YES,Nether Brick,nether_brick,64 Stackable,-,1007,64,TRUE
YES,Prismarine Shard,prismarine_shard,64 Stackable,-,1008,64,TRUE
YES,Prismarine Crystals,prismarine_crystals,64 Stackable,-,1009,64,TRUE
YES,Raw Rabbit,rabbit,64 Stackable,-,1010,64,TRUE
YES,Cooked Rabbit,cooked_rabbit,64 Stackable,-,1011,64,TRUE
YES,Rabbit Stew,rabbit_stew,Unstackable,,1012,1,TRUE
YES,Rabbit's Foot,rabbit_foot,64 Stackable,-,1013,64,TRUE
YES,Rabbit Hide,rabbit_hide,64 Stackable,-,1014,64,TRUE
YES,Armor Stand,armor_stand,16 Stackable,-,1015,16,TRUE
YES,Iron Horse Armor,iron_horse_armor,Unstackable,,1016,1,TRUE
YES,Golden Horse Armor,golden_horse_armor,Unstackable,,1017,1,TRUE
YES,Diamond Horse Armor,diamond_horse_armor,Unstackable,,1018,1,TRUE
YES,Leather Horse Armor,leather_horse_armor,Unstackable,,1019,1,TRUE
YES,Lead,lead,64 Stackable,-,1020,64,TRUE
YES,Name Tag,name_tag,64 Stackable,-,1021,64,TRUE
YES,Raw Mutton,mutton,64 Stackable,-,1023,64,TRUE
YES,Cooked Mutton,cooked_mutton,64 Stackable,-,1024,64,TRUE
YES,White Banner,white_banner,16 Stackable,-,1025,16,TRUE
YES,Orange Banner,orange_banner,16 Stackable,-,1026,16,TRUE
YES,Magenta Banner,magenta_banner,16 Stackable,-,1027,16,TRUE
YES,Light Blue Banner,light_blue_banner,16 Stackable,-,1028,16,TRUE
YES,Yellow Banner,yellow_banner,16 Stackable,-,1029,16,TRUE
YES,Lime Banner,lime_banner,16 Stackable,-,1030,16,TRUE
YES,Pink Banner,pink_banner,16 Stackable,-,1031,16,TRUE
YES,Gray Banner,gray_banner,16 Stackable,-,1032,16,TRUE
YES,Light Gray Banner,light_gray_banner,16 Stackable,-,1033,16,TRUE
YES,Cyan Banner,cyan_banner,16 Stackable,-,1034,16,TRUE
YES,Purple Banner,purple_banner,16 Stackable,-,1035,16,TRUE
YES,Blue Banner,blue_banner,16 Stackable,-,1036,16,TRUE
YES,Brown Banner,brown_banner,16 Stackable,-,1037,16,TRUE
YES,Green Banner,green_banner,16 Stackable,-,1038,16,TRUE
YES,Red Banner,red_banner,16 Stackable,-,1039,16,TRUE
YES,Black Banner,black_banner,16 Stackable,-,1040,16,TRUE
YES,End Crystal,end_crystal,64 Stackable,-,1041,64,TRUE
YES,Chorus Fruit,chorus_fruit,64 Stackable,-,1042,64,TRUE
YES,Popped Chorus Fruit,popped_chorus_fruit,64 Stackable,-,1043,64,TRUE
YES,Beetroot,beetroot,64 Stackable,-,1044,64,TRUE
YES,Beetroot Seeds,beetroot_seeds,64 Stackable,-,1045,64,TRUE
YES,Beetroot Soup,beetroot_soup,Unstackable,,1046,1,TRUE
YES,Dragon's Breath,dragon_breath,64 Stackable,-,1047,64,TRUE
YES,Splash Potion,splash_potion,Unstackable,,1048,1,TRUE
YES,Spectral Arrow,spectral_arrow,64 Stackable,-,1049,64,TRUE
YES,Tipped Arrow,tipped_arrow,64 Stackable,-,1050,64,TRUE
YES,Lingering Potion,lingering_potion,Unstackable,,1051,1,TRUE
YES,Shield,shield,Unstackable,,1052,1,TRUE
YES,Totem of Undying,totem_of_undying,Unstackable,,1053,1,TRUE
YES,Shulker Shell,shulker_shell,64 Stackable,-,1054,64,TRUE
YES,Iron Nugget,iron_nugget,64 Stackable,-,1055,64,TRUE
YES,Music Disc,music_disc_13,Unstackable,,1058,1,TRUE
YES,Music Disc,music_disc_cat,Unstackable,,1059,1,TRUE
YES,Music Disc,music_disc_blocks,Unstackable,,1060,1,TRUE
YES,Music Disc,music_disc_chirp,Unstackable,,1061,1,TRUE
YES,Music Disc,music_disc_far,Unstackable,,1062,1,TRUE
YES,Music Disc,music_disc_mall,Unstackable,,1063,1,TRUE
YES,Music Disc,music_disc_mellohi,Unstackable,,1064,1,TRUE
YES,Music Disc,music_disc_stal,Unstackable,,1065,1,TRUE
YES,Music Disc,music_disc_strad,Unstackable,,1066,1,TRUE
YES,Music Disc,music_disc_ward,Unstackable,,1067,1,TRUE
YES,Music Disc,music_disc_11,Unstackable,,1068,1,TRUE
YES,Music Disc,music_disc_wait,Unstackable,,1069,1,TRUE
YES,Music Disc,music_disc_otherside,Unstackable,,1070,1,TRUE
YES,Music Disc,music_disc_5,Unstackable,,1071,1,TRUE
YES,Music Disc,music_disc_pigstep,Unstackable,,1072,1,TRUE
YES,Disc Fragment,disc_fragment_5,64 Stackable,-,1073,64,TRUE
YES,Trident,trident,Unstackable,,1074,1,TRUE
YES,Phantom Membrane,phantom_membrane,64 Stackable,-,1075,64,TRUE
YES,Nautilus Shell,nautilus_shell,64 Stackable,-,1076,64,TRUE
YES,Heart of the Sea,heart_of_the_sea,64 Stackable,-,1077,64,TRUE
YES,Crossbow,crossbow,Unstackable,,1078,1,TRUE
YES,Suspicious Stew,suspicious_stew,Unstackable,,1079,1,TRUE
YES,Loom,loom,64 Stackable,-,1080,64,TRUE
YES,Banner Pattern,flower_banner_pattern,Unstackable,,1081,1,TRUE
YES,Banner Pattern,creeper_banner_pattern,Unstackable,,1082,1,TRUE
YES,Banner Pattern,skull_banner_pattern,Unstackable,,1083,1,TRUE
YES,Banner Pattern,mojang_banner_pattern,Unstackable,,1084,1,TRUE
YES,Banner Pattern,globe_banner_pattern,Unstackable,,1085,1,TRUE
YES,Banner Pattern,piglin_banner_pattern,Unstackable,,1086,1,TRUE
YES,Goat Horn,goat_horn,Unstackable,,1087,1,TRUE
YES,Composter,composter,64 Stackable,-,1088,64,TRUE
YES,Barrel,barrel,64 Stackable,-,1089,64,TRUE
YES,Smoker,smoker,64 Stackable,-,1090,64,TRUE
YES,Blast Furnace,blast_furnace,64 Stackable,-,1091,64,TRUE
YES,Cartography Table,cartography_table,64 Stackable,-,1092,64,TRUE
YES,Fletching Table,fletching_table,64 Stackable,-,1093,64,TRUE
YES,Grindstone,grindstone,64 Stackable,-,1094,64,TRUE
YES,Smithing Table,smithing_table,64 Stackable,-,1095,64,TRUE
YES,Stonecutter,stonecutter,64 Stackable,-,1096,64,TRUE
YES,Bell,bell,64 Stackable,-,1097,64,TRUE
YES,Lantern,lantern,64 Stackable,-,1098,64,TRUE
YES,Soul Lantern,soul_lantern,64 Stackable,-,1099,64,TRUE
YES,Sweet Berries,sweet_berries,64 Stackable,-,1100,64,TRUE
YES,Glow Berries,glow_berries,64 Stackable,-,1101,64,TRUE
YES,Campfire,campfire,64 Stackable,-,1102,64,TRUE
YES,Soul Campfire,soul_campfire,64 Stackable,-,1103,64,TRUE
YES,Shroomlight,shroomlight,64 Stackable,-,1104,64,TRUE
YES,Honeycomb,honeycomb,64 Stackable,-,1105,64,TRUE
YES,Bee Nest,bee_nest,64 Stackable,-,1106,64,TRUE
YES,Beehive,beehive,64 Stackable,-,1107,64,TRUE
YES,Honey Bottle,honey_bottle,16 Stackable,-,1108,16,TRUE
YES,Honeycomb Block,honeycomb_block,64 Stackable,-,1109,64,TRUE
YES,Lodestone,lodestone,64 Stackable,-,1110,64,TRUE
YES,Crying Obsidian,crying_obsidian,64 Stackable,-,1111,64,TRUE
YES,Blackstone,blackstone,64 Stackable,-,1112,64,TRUE
YES,Blackstone Slab,blackstone_slab,64 Stackable,-,1113,64,TRUE
YES,Blackstone Stairs,blackstone_stairs,64 Stackable,-,1114,64,TRUE
YES,Gilded Blackstone,gilded_blackstone,64 Stackable,-,1115,64,TRUE
YES,Polished Blackstone,polished_blackstone,64 Stackable,-,1116,64,TRUE
YES,Polished Blackstone Slab,polished_blackstone_slab,64 Stackable,-,1117,64,TRUE
YES,Polished Blackstone Stairs,polished_blackstone_stairs,64 Stackable,-,1118,64,TRUE
YES,Chiseled Polished Blackstone,chiseled_polished_blackstone,64 Stackable,-,1119,64,TRUE
YES,Polished Blackstone Bricks,polished_blackstone_bricks,64 Stackable,-,1120,64,TRUE
YES,Polished Blackstone Brick Slab,polished_blackstone_brick_slab,64 Stackable,-,1121,64,TRUE
YES,Polished Blackstone Brick Stairs,polished_blackstone_brick_stairs,64 Stackable,-,1122,64,TRUE
YES,Cracked Polished Blackstone Bricks,cracked_polished_blackstone_bricks,64 Stackable,-,1123,64,TRUE
YES,Respawn Anchor,respawn_anchor,64 Stackable,-,1124,64,TRUE
YES,Candle,candle,64 Stackable,-,1125,64,TRUE
YES,White Candle,white_candle,64 Stackable,-,1126,64,TRUE
YES,Orange Candle,orange_candle,64 Stackable,-,1127,64,TRUE
YES,Magenta Candle,magenta_candle,64 Stackable,-,1128,64,TRUE
YES,Light Blue Candle,light_blue_candle,64 Stackable,-,1129,64,TRUE
YES,Yellow Candle,yellow_candle,64 Stackable,-,1130,64,TRUE
YES,Lime Candle,lime_candle,64 Stackable,-,1131,64,TRUE
YES,Pink Candle,pink_candle,64 Stackable,-,1132,64,TRUE
YES,Gray Candle,gray_candle,64 Stackable,-,1133,64,TRUE
YES,Light Gray Candle,light_gray_candle,64 Stackable,-,1134,64,TRUE
YES,Cyan Candle,cyan_candle,64 Stackable,-,1135,64,TRUE
YES,Purple Candle,purple_candle,64 Stackable,-,1136,64,TRUE
YES,Blue Candle,blue_candle,64 Stackable,-,1137,64,TRUE
YES,Brown Candle,brown_candle,64 Stackable,-,1138,64,TRUE
YES,Green Candle,green_candle,64 Stackable,-,1139,64,TRUE
YES,Red Candle,red_candle,64 Stackable,-,1140,64,TRUE
YES,Black Candle,black_candle,64 Stackable,-,1141,64,TRUE
YES,Small Amethyst Bud,small_amethyst_bud,64 Stackable,-,1142,64,TRUE
YES,Medium Amethyst Bud,medium_amethyst_bud,64 Stackable,-,1143,64,TRUE
YES,Large Amethyst Bud,large_amethyst_bud,64 Stackable,-,1144,64,TRUE
YES,Amethyst Cluster,amethyst_cluster,64 Stackable,-,1145,64,TRUE
YES,Pointed Dripstone,pointed_dripstone,64 Stackable,-,1146,64,TRUE
YES,Ochre Froglight,ochre_froglight,64 Stackable,-,1147,64,TRUE
YES,Verdant Froglight,verdant_froglight,64 Stackable,-,1148,64,TRUE
YES,Pearlescent Froglight,pearlescent_froglight,64 Stackable,-,1149,64,TRUE
YES,Echo Shard,echo_shard,64 Stackable,-,1151,64,TRUE
NO,Bedrock,bedrock,64 Stackable,,39,64,FALSE
NO,Budding Amethyst,budding_amethyst,64 Stackable,,67,64,FALSE
NO,Petrified Oak Slab,petrified_oak_slab,64 Stackable,,227,64,FALSE
NO,Chorus Plant,chorus_plant,64 Stackable,,250,64,FALSE
NO,Spawner,spawner,64 Stackable,,255,64,FALSE
NO,Farmland,farmland,64 Stackable,,258,64,FALSE
NO,Infested Stone,infested_stone,64 Stackable,,288,64,FALSE
NO,Infested Cobblestone,infested_cobblestone,64 Stackable,,289,64,FALSE
NO,Infested Stone Bricks,infested_stone_bricks,64 Stackable,,290,64,FALSE
NO,Infested Mossy Stone Bricks,infested_mossy_stone_bricks,64 Stackable,,291,64,FALSE
NO,Infested Cracked Stone Bricks,infested_cracked_stone_bricks,64 Stackable,,292,64,FALSE
NO,Infested Chiseled Stone Bricks,infested_chiseled_stone_bricks,64 Stackable,,293,64,FALSE
NO,Infested Deepslate,infested_deepslate,64 Stackable,,294,64,FALSE
NO,Reinforced Deepslate,reinforced_deepslate,64 Stackable,,306,64,FALSE
NO,End Portal Frame,end_portal_frame,64 Stackable,,331,64,FALSE
NO,Command Block,command_block,64 Stackable,,347,64,FALSE
NO,Barrier,barrier,64 Stackable,,395,64,FALSE
NO,Light,light,64 Stackable,,396,64,FALSE
NO,Dirt Path,dirt_path,64 Stackable,,416,64,FALSE
NO,Repeating Command Block,repeating_command_block,64 Stackable,,466,64,FALSE
NO,Chain Command Block,chain_command_block,64 Stackable,,467,64,FALSE
NO,Structure Void,structure_void,64 Stackable,,473,64,FALSE
NO,Structure Block,structure_block,64 Stackable,,712,64,FALSE
NO,Jigsaw Block,jigsaw,64 Stackable,,713,64,FALSE
NO,Bundle,bundle,Unstackable,,835,1,FALSE
NO,Allay Spawn Egg,allay_spawn_egg,64 Stackable,,912,64,FALSE
NO,Axolotl Spawn Egg,axolotl_spawn_egg,64 Stackable,,913,64,FALSE
NO,Bat Spawn Egg,bat_spawn_egg,64 Stackable,,914,64,FALSE
NO,Bee Spawn Egg,bee_spawn_egg,64 Stackable,,915,64,FALSE
NO,Blaze Spawn Egg,blaze_spawn_egg,64 Stackable,,916,64,FALSE
NO,Cat Spawn Egg,cat_spawn_egg,64 Stackable,,917,64,FALSE
NO,Cave Spider Spawn Egg,cave_spider_spawn_egg,64 Stackable,,918,64,FALSE
NO,Chicken Spawn Egg,chicken_spawn_egg,64 Stackable,,919,64,FALSE
NO,Cod Spawn Egg,cod_spawn_egg,64 Stackable,,920,64,FALSE
NO,Cow Spawn Egg,cow_spawn_egg,64 Stackable,,921,64,FALSE
NO,Creeper Spawn Egg,creeper_spawn_egg,64 Stackable,,922,64,FALSE
NO,Dolphin Spawn Egg,dolphin_spawn_egg,64 Stackable,,923,64,FALSE
NO,Donkey Spawn Egg,donkey_spawn_egg,64 Stackable,,924,64,FALSE
NO,Drowned Spawn Egg,drowned_spawn_egg,64 Stackable,,925,64,FALSE
NO,Elder Guardian Spawn Egg,elder_guardian_spawn_egg,64 Stackable,,926,64,FALSE
NO,Enderman Spawn Egg,enderman_spawn_egg,64 Stackable,,927,64,FALSE
NO,Endermite Spawn Egg,endermite_spawn_egg,64 Stackable,,928,64,FALSE
NO,Evoker Spawn Egg,evoker_spawn_egg,64 Stackable,,929,64,FALSE
NO,Fox Spawn Egg,fox_spawn_egg,64 Stackable,,930,64,FALSE
NO,Frog Spawn Egg,frog_spawn_egg,64 Stackable,,931,64,FALSE
NO,Ghast Spawn Egg,ghast_spawn_egg,64 Stackable,,932,64,FALSE
NO,Glow Squid Spawn Egg,glow_squid_spawn_egg,64 Stackable,,933,64,FALSE
NO,Goat Spawn Egg,goat_spawn_egg,64 Stackable,,934,64,FALSE
NO,Guardian Spawn Egg,guardian_spawn_egg,64 Stackable,,935,64,FALSE
NO,Hoglin Spawn Egg,hoglin_spawn_egg,64 Stackable,,936,64,FALSE
NO,Horse Spawn Egg,horse_spawn_egg,64 Stackable,,937,64,FALSE
NO,Husk Spawn Egg,husk_spawn_egg,64 Stackable,,938,64,FALSE
NO,Llama Spawn Egg,llama_spawn_egg,64 Stackable,,939,64,FALSE
NO,Magma Cube Spawn Egg,magma_cube_spawn_egg,64 Stackable,,940,64,FALSE
NO,Mooshroom Spawn Egg,mooshroom_spawn_egg,64 Stackable,,941,64,FALSE
NO,Mule Spawn Egg,mule_spawn_egg,64 Stackable,,942,64,FALSE
NO,Ocelot Spawn Egg,ocelot_spawn_egg,64 Stackable,,943,64,FALSE
NO,Panda Spawn Egg,panda_spawn_egg,64 Stackable,,944,64,FALSE
NO,Parrot Spawn Egg,parrot_spawn_egg,64 Stackable,,945,64,FALSE
NO,Phantom Spawn Egg,phantom_spawn_egg,64 Stackable,,946,64,FALSE
NO,Pig Spawn Egg,pig_spawn_egg,64 Stackable,,947,64,FALSE
NO,Piglin Spawn Egg,piglin_spawn_egg,64 Stackable,,948,64,FALSE
NO,Piglin Brute Spawn Egg,piglin_brute_spawn_egg,64 Stackable,,949,64,FALSE
NO,Pillager Spawn Egg,pillager_spawn_egg,64 Stackable,,950,64,FALSE
NO,Polar Bear Spawn Egg,polar_bear_spawn_egg,64 Stackable,,951,64,FALSE
NO,Pufferfish Spawn Egg,pufferfish_spawn_egg,64 Stackable,,952,64,FALSE
NO,Rabbit Spawn Egg,rabbit_spawn_egg,64 Stackable,,953,64,FALSE
NO,Ravager Spawn Egg,ravager_spawn_egg,64 Stackable,,954,64,FALSE
NO,Salmon Spawn Egg,salmon_spawn_egg,64 Stackable,,955,64,FALSE
NO,Sheep Spawn Egg,sheep_spawn_egg,64 Stackable,,956,64,FALSE
NO,Shulker Spawn Egg,shulker_spawn_egg,64 Stackable,,957,64,FALSE
NO,Silverfish Spawn Egg,silverfish_spawn_egg,64 Stackable,,958,64,FALSE
NO,Skeleton Spawn Egg,skeleton_spawn_egg,64 Stackable,,959,64,FALSE
NO,Skeleton Horse Spawn Egg,skeleton_horse_spawn_egg,64 Stackable,,960,64,FALSE
NO,Slime Spawn Egg,slime_spawn_egg,64 Stackable,,961,64,FALSE
NO,Spider Spawn Egg,spider_spawn_egg,64 Stackable,,962,64,FALSE
NO,Squid Spawn Egg,squid_spawn_egg,64 Stackable,,963,64,FALSE
NO,Stray Spawn Egg,stray_spawn_egg,64 Stackable,,964,64,FALSE
NO,Strider Spawn Egg,strider_spawn_egg,64 Stackable,,965,64,FALSE
NO,Tadpole Spawn Egg,tadpole_spawn_egg,64 Stackable,,966,64,FALSE
NO,Trader Llama Spawn Egg,trader_llama_spawn_egg,64 Stackable,,967,64,FALSE
NO,Tropical Fish Spawn Egg,tropical_fish_spawn_egg,64 Stackable,,968,64,FALSE
NO,Turtle Spawn Egg,turtle_spawn_egg,64 Stackable,,969,64,FALSE
NO,Vex Spawn Egg,vex_spawn_egg,64 Stackable,,970,64,FALSE
NO,Villager Spawn Egg,villager_spawn_egg,64 Stackable,,971,64,FALSE
NO,Vindicator Spawn Egg,vindicator_spawn_egg,64 Stackable,,972,64,FALSE
NO,Wandering Trader Spawn Egg,wandering_trader_spawn_egg,64 Stackable,,973,64,FALSE
NO,Warden Spawn Egg,warden_spawn_egg,64 Stackable,,974,64,FALSE
NO,Witch Spawn Egg,witch_spawn_egg,64 Stackable,,975,64,FALSE
NO,Wither Skeleton Spawn Egg,wither_skeleton_spawn_egg,64 Stackable,,976,64,FALSE
NO,Wolf Spawn Egg,wolf_spawn_egg,64 Stackable,,977,64,FALSE
NO,Zoglin Spawn Egg,zoglin_spawn_egg,64 Stackable,,978,64,FALSE
NO,Zombie Spawn Egg,zombie_spawn_egg,64 Stackable,,979,64,FALSE
NO,Zombie Horse Spawn Egg,zombie_horse_spawn_egg,64 Stackable,,980,64,FALSE
NO,Zombie Villager Spawn Egg,zombie_villager_spawn_egg,64 Stackable,,981,64,FALSE
NO,Zombified Piglin Spawn Egg,zombified_piglin_spawn_egg,64 Stackable,,982,64,FALSE
NO,Player Head,player_head,64 Stackable,,998,64,FALSE
NO,Minecart with Command Block,command_block_minecart,Unstackable,,1022,1,FALSE
NO,Knowledge Book,knowledge_book,Unstackable,,1056,1,FALSE
NO,Debug Stick,debug_stick,Unstackable,,1057,1,FALSE
NO,Frogspawn,frogspawn,64 Stackable,,1150,64,FALSE