-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtexture_path.go
More file actions
7937 lines (7934 loc) · 314 KB
/
texture_path.go
File metadata and controls
7937 lines (7934 loc) · 314 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
// Code generated; DO NOT EDIT.
package vanilla
import mapset "github.com/deckarep/golang-set/v2"
var TexturePath = mapset.NewThreadUnsafeSet(
"textures/blocks/acacia_shelf",
"textures/blocks/acacia_trapdoor",
"textures/blocks/acacia_trapdoor_mers",
"textures/blocks/amethyst_block",
"textures/blocks/amethyst_block_mers",
"textures/blocks/amethyst_cluster",
"textures/blocks/amethyst_cluster_mers",
"textures/blocks/ancient_debris_side",
"textures/blocks/ancient_debris_side_mers",
"textures/blocks/ancient_debris_top",
"textures/blocks/ancient_debris_top_mers",
"textures/blocks/angler_pottery_pattern",
"textures/blocks/angler_pottery_pattern_mers",
"textures/blocks/anvil_base",
"textures/blocks/anvil_base_mers",
"textures/blocks/anvil_top_damaged_0",
"textures/blocks/anvil_top_damaged_0_mers",
"textures/blocks/anvil_top_damaged_1",
"textures/blocks/anvil_top_damaged_1_mers",
"textures/blocks/anvil_top_damaged_2",
"textures/blocks/anvil_top_damaged_2_mers",
"textures/blocks/archer_pottery_pattern",
"textures/blocks/archer_pottery_pattern_mers",
"textures/blocks/arms_up_pottery_pattern",
"textures/blocks/arms_up_pottery_pattern_mers",
"textures/blocks/azalea_leaves",
"textures/blocks/azalea_leaves_flowers",
"textures/blocks/azalea_leaves_flowers_mers",
"textures/blocks/azalea_leaves_flowers_opaque",
"textures/blocks/azalea_leaves_flowers_opaque_mers",
"textures/blocks/azalea_leaves_mers",
"textures/blocks/azalea_leaves_opaque",
"textures/blocks/azalea_leaves_opaque_mers",
"textures/blocks/azalea_plant",
"textures/blocks/azalea_plant_mers",
"textures/blocks/azalea_side",
"textures/blocks/azalea_side_mers",
"textures/blocks/azalea_top",
"textures/blocks/azalea_top_mers",
"textures/blocks/bamboo_block",
"textures/blocks/bamboo_block_mers",
"textures/blocks/bamboo_block_top",
"textures/blocks/bamboo_block_top_mers",
"textures/blocks/bamboo_door_bottom",
"textures/blocks/bamboo_door_bottom_mers",
"textures/blocks/bamboo_door_top",
"textures/blocks/bamboo_door_top_mers",
"textures/blocks/bamboo_fence",
"textures/blocks/bamboo_fence_gate",
"textures/blocks/bamboo_fence_gate_mers",
"textures/blocks/bamboo_fence_mers",
"textures/blocks/bamboo_leaf",
"textures/blocks/bamboo_leaf_mers",
"textures/blocks/bamboo_mosaic",
"textures/blocks/bamboo_mosaic_mers",
"textures/blocks/bamboo_planks",
"textures/blocks/bamboo_planks_mers",
"textures/blocks/bamboo_sapling",
"textures/blocks/bamboo_sapling_mers",
"textures/blocks/bamboo_shelf",
"textures/blocks/bamboo_singleleaf",
"textures/blocks/bamboo_singleleaf_mers",
"textures/blocks/bamboo_small_leaf",
"textures/blocks/bamboo_small_leaf_mers",
"textures/blocks/bamboo_stem",
"textures/blocks/bamboo_stem_mers",
"textures/blocks/bamboo_trapdoor",
"textures/blocks/bamboo_trapdoor_mers",
"textures/blocks/barrel_bottom",
"textures/blocks/barrel_bottom_mers",
"textures/blocks/barrel_side",
"textures/blocks/barrel_side_mers",
"textures/blocks/barrel_top",
"textures/blocks/barrel_top_mers",
"textures/blocks/barrel_top_open",
"textures/blocks/barrel_top_open_mers",
"textures/blocks/barrier",
"textures/blocks/barrier_mers",
"textures/blocks/basalt_side",
"textures/blocks/basalt_side_mers",
"textures/blocks/basalt_top",
"textures/blocks/basalt_top_mers",
"textures/blocks/beacon",
"textures/blocks/beacon_mers",
"textures/blocks/bed_feet_end",
"textures/blocks/bed_feet_end_mers",
"textures/blocks/bed_feet_side",
"textures/blocks/bed_feet_side_mers",
"textures/blocks/bed_feet_top",
"textures/blocks/bed_feet_top_mers",
"textures/blocks/bed_head_end",
"textures/blocks/bed_head_end_mers",
"textures/blocks/bed_head_side",
"textures/blocks/bed_head_side_mers",
"textures/blocks/bed_head_top",
"textures/blocks/bed_head_top_mers",
"textures/blocks/bedrock",
"textures/blocks/bedrock_mers",
"textures/blocks/bee_nest_bottom",
"textures/blocks/bee_nest_bottom_mers",
"textures/blocks/bee_nest_front",
"textures/blocks/bee_nest_front_honey",
"textures/blocks/bee_nest_front_honey_mers",
"textures/blocks/bee_nest_front_mers",
"textures/blocks/bee_nest_side",
"textures/blocks/bee_nest_side_mers",
"textures/blocks/bee_nest_top",
"textures/blocks/bee_nest_top_mers",
"textures/blocks/beehive_front",
"textures/blocks/beehive_front_honey",
"textures/blocks/beehive_front_honey_mers",
"textures/blocks/beehive_front_mers",
"textures/blocks/beehive_side",
"textures/blocks/beehive_side_mers",
"textures/blocks/beehive_top",
"textures/blocks/beehive_top_mers",
"textures/blocks/beetroots_stage_0",
"textures/blocks/beetroots_stage_0_mers",
"textures/blocks/beetroots_stage_1",
"textures/blocks/beetroots_stage_1_mers",
"textures/blocks/beetroots_stage_2",
"textures/blocks/beetroots_stage_2_mers",
"textures/blocks/beetroots_stage_3",
"textures/blocks/beetroots_stage_3_mers",
"textures/blocks/bell_bottom",
"textures/blocks/bell_bottom_mers",
"textures/blocks/bell_side",
"textures/blocks/bell_side_mers",
"textures/blocks/bell_top",
"textures/blocks/bell_top_mers",
"textures/blocks/big_dripleaf_side1",
"textures/blocks/big_dripleaf_side1_mers",
"textures/blocks/big_dripleaf_side2",
"textures/blocks/big_dripleaf_side2_mers",
"textures/blocks/big_dripleaf_stem",
"textures/blocks/big_dripleaf_stem_mers",
"textures/blocks/big_dripleaf_top",
"textures/blocks/big_dripleaf_top_mers",
"textures/blocks/birch_shelf",
"textures/blocks/birch_trapdoor",
"textures/blocks/birch_trapdoor_mers",
"textures/blocks/blackstone",
"textures/blocks/blackstone_mers",
"textures/blocks/blackstone_top",
"textures/blocks/blackstone_top_mers",
"textures/blocks/blade_pottery_pattern",
"textures/blocks/blade_pottery_pattern_mers",
"textures/blocks/blast_furnace_front_off",
"textures/blocks/blast_furnace_front_off_mers",
"textures/blocks/blast_furnace_front_on",
"textures/blocks/blast_furnace_front_on_mers",
"textures/blocks/blast_furnace_side",
"textures/blocks/blast_furnace_side_mers",
"textures/blocks/blast_furnace_top",
"textures/blocks/blast_furnace_top_mers",
"textures/blocks/blue_ice",
"textures/blocks/blue_ice_mers",
"textures/blocks/bone_block_side",
"textures/blocks/bone_block_side_mers",
"textures/blocks/bone_block_top",
"textures/blocks/bone_block_top_mers",
"textures/blocks/bookshelf",
"textures/blocks/bookshelf_mers",
"textures/blocks/border",
"textures/blocks/border_mers",
"textures/blocks/brewer_pottery_pattern",
"textures/blocks/brewer_pottery_pattern_mers",
"textures/blocks/brewing_stand",
"textures/blocks/brewing_stand_base",
"textures/blocks/brewing_stand_base_mers",
"textures/blocks/brewing_stand_mers",
"textures/blocks/brick",
"textures/blocks/brick_mers",
"textures/blocks/bubble_column_down_top_a",
"textures/blocks/bubble_column_down_top_a_mers",
"textures/blocks/bubble_column_down_top_b",
"textures/blocks/bubble_column_down_top_b_mers",
"textures/blocks/bubble_column_down_top_c",
"textures/blocks/bubble_column_down_top_c_mers",
"textures/blocks/bubble_column_down_top_d",
"textures/blocks/bubble_column_down_top_d_mers",
"textures/blocks/bubble_column_inner_a",
"textures/blocks/bubble_column_inner_a_mers",
"textures/blocks/bubble_column_inner_b",
"textures/blocks/bubble_column_inner_b_mers",
"textures/blocks/bubble_column_outer_a",
"textures/blocks/bubble_column_outer_a_mers",
"textures/blocks/bubble_column_outer_b",
"textures/blocks/bubble_column_outer_b_mers",
"textures/blocks/bubble_column_outer_c",
"textures/blocks/bubble_column_outer_c_mers",
"textures/blocks/bubble_column_outer_d",
"textures/blocks/bubble_column_outer_d_mers",
"textures/blocks/bubble_column_outer_e",
"textures/blocks/bubble_column_outer_e_mers",
"textures/blocks/bubble_column_outer_f",
"textures/blocks/bubble_column_outer_f_mers",
"textures/blocks/bubble_column_outer_g",
"textures/blocks/bubble_column_outer_g_mers",
"textures/blocks/bubble_column_outer_h",
"textures/blocks/bubble_column_outer_h_mers",
"textures/blocks/bubble_column_up_top_a",
"textures/blocks/bubble_column_up_top_a_mers",
"textures/blocks/bubble_column_up_top_b",
"textures/blocks/bubble_column_up_top_b_mers",
"textures/blocks/bubble_column_up_top_c",
"textures/blocks/bubble_column_up_top_c_mers",
"textures/blocks/bubble_column_up_top_d",
"textures/blocks/bubble_column_up_top_d_mers",
"textures/blocks/budding_amethyst",
"textures/blocks/budding_amethyst_mers",
"textures/blocks/build_allow",
"textures/blocks/build_allow_mers",
"textures/blocks/build_deny",
"textures/blocks/build_deny_mers",
"textures/blocks/burn_pottery_pattern",
"textures/blocks/burn_pottery_pattern_mers",
"textures/blocks/bush",
"textures/blocks/bush_mers",
"textures/blocks/cactus_bottom",
"textures/blocks/cactus_bottom_mers",
"textures/blocks/cactus_flower",
"textures/blocks/cactus_flower_mers",
"textures/blocks/cactus_side",
"textures/blocks/cactus_side_mers",
"textures/blocks/cactus_top",
"textures/blocks/cactus_top_mers",
"textures/blocks/cake_bottom",
"textures/blocks/cake_bottom_mers",
"textures/blocks/cake_inner",
"textures/blocks/cake_inner_mers",
"textures/blocks/cake_side",
"textures/blocks/cake_side_mers",
"textures/blocks/cake_top",
"textures/blocks/cake_top_mers",
"textures/blocks/calcite",
"textures/blocks/calcite_mers",
"textures/blocks/calibrated_sculk_sensor_amethyst",
"textures/blocks/calibrated_sculk_sensor_amethyst_mers",
"textures/blocks/calibrated_sculk_sensor_input_side",
"textures/blocks/calibrated_sculk_sensor_input_side_mers",
"textures/blocks/calibrated_sculk_sensor_top",
"textures/blocks/calibrated_sculk_sensor_top_mers",
"textures/blocks/camera_back",
"textures/blocks/camera_back_mers",
"textures/blocks/camera_front",
"textures/blocks/camera_front_mers",
"textures/blocks/camera_side",
"textures/blocks/camera_side_mers",
"textures/blocks/camera_top",
"textures/blocks/camera_top_mers",
"textures/blocks/campfire",
"textures/blocks/campfire_log",
"textures/blocks/campfire_log_lit",
"textures/blocks/campfire_log_lit_mers",
"textures/blocks/campfire_log_mers",
"textures/blocks/campfire_mers",
"textures/blocks/candles/black_candle",
"textures/blocks/candles/black_candle_lit",
"textures/blocks/candles/black_candle_lit_mers",
"textures/blocks/candles/black_candle_mers",
"textures/blocks/candles/blue_candle",
"textures/blocks/candles/blue_candle_lit",
"textures/blocks/candles/blue_candle_lit_mers",
"textures/blocks/candles/blue_candle_mers",
"textures/blocks/candles/brown_candle",
"textures/blocks/candles/brown_candle_lit",
"textures/blocks/candles/brown_candle_lit_mers",
"textures/blocks/candles/brown_candle_mers",
"textures/blocks/candles/candle",
"textures/blocks/candles/candle_lit",
"textures/blocks/candles/candle_lit_mers",
"textures/blocks/candles/candle_mers",
"textures/blocks/candles/cyan_candle",
"textures/blocks/candles/cyan_candle_lit",
"textures/blocks/candles/cyan_candle_lit_mers",
"textures/blocks/candles/cyan_candle_mers",
"textures/blocks/candles/gray_candle",
"textures/blocks/candles/gray_candle_lit",
"textures/blocks/candles/gray_candle_lit_mers",
"textures/blocks/candles/gray_candle_mers",
"textures/blocks/candles/green_candle",
"textures/blocks/candles/green_candle_lit",
"textures/blocks/candles/green_candle_lit_mers",
"textures/blocks/candles/green_candle_mers",
"textures/blocks/candles/light_blue_candle",
"textures/blocks/candles/light_blue_candle_lit",
"textures/blocks/candles/light_blue_candle_lit_mers",
"textures/blocks/candles/light_blue_candle_mers",
"textures/blocks/candles/light_gray_candle",
"textures/blocks/candles/light_gray_candle_lit",
"textures/blocks/candles/light_gray_candle_lit_mers",
"textures/blocks/candles/light_gray_candle_mers",
"textures/blocks/candles/lime_candle",
"textures/blocks/candles/lime_candle_lit",
"textures/blocks/candles/lime_candle_lit_mers",
"textures/blocks/candles/lime_candle_mers",
"textures/blocks/candles/magenta_candle",
"textures/blocks/candles/magenta_candle_lit",
"textures/blocks/candles/magenta_candle_lit_mers",
"textures/blocks/candles/magenta_candle_mers",
"textures/blocks/candles/orange_candle",
"textures/blocks/candles/orange_candle_lit",
"textures/blocks/candles/orange_candle_lit_mers",
"textures/blocks/candles/orange_candle_mers",
"textures/blocks/candles/pink_candle",
"textures/blocks/candles/pink_candle_lit",
"textures/blocks/candles/pink_candle_lit_mers",
"textures/blocks/candles/pink_candle_mers",
"textures/blocks/candles/purple_candle",
"textures/blocks/candles/purple_candle_lit",
"textures/blocks/candles/purple_candle_lit_mers",
"textures/blocks/candles/purple_candle_mers",
"textures/blocks/candles/red_candle",
"textures/blocks/candles/red_candle_lit",
"textures/blocks/candles/red_candle_lit_mers",
"textures/blocks/candles/red_candle_mers",
"textures/blocks/candles/white_candle",
"textures/blocks/candles/white_candle_lit",
"textures/blocks/candles/white_candle_lit_mers",
"textures/blocks/candles/white_candle_mers",
"textures/blocks/candles/yellow_candle",
"textures/blocks/candles/yellow_candle_lit",
"textures/blocks/candles/yellow_candle_lit_mers",
"textures/blocks/candles/yellow_candle_mers",
"textures/blocks/carried_waterlily",
"textures/blocks/carried_waterlily_mers",
"textures/blocks/carrots_stage3",
"textures/blocks/carrots_stage3_mers",
"textures/blocks/carrots_stage_0",
"textures/blocks/carrots_stage_0_mers",
"textures/blocks/carrots_stage_1",
"textures/blocks/carrots_stage_1_mers",
"textures/blocks/carrots_stage_2",
"textures/blocks/carrots_stage_2_mers",
"textures/blocks/carrots_stage_3",
"textures/blocks/carrots_stage_3_mers",
"textures/blocks/cartography_table_side1",
"textures/blocks/cartography_table_side1_mers",
"textures/blocks/cartography_table_side2",
"textures/blocks/cartography_table_side2_mers",
"textures/blocks/cartography_table_side3",
"textures/blocks/cartography_table_side3_mers",
"textures/blocks/cartography_table_top",
"textures/blocks/cartography_table_top_mers",
"textures/blocks/cauldron_bottom",
"textures/blocks/cauldron_bottom_mers",
"textures/blocks/cauldron_inner",
"textures/blocks/cauldron_inner_mers",
"textures/blocks/cauldron_side",
"textures/blocks/cauldron_side_mers",
"textures/blocks/cauldron_top",
"textures/blocks/cauldron_top_mers",
"textures/blocks/cauldron_water",
"textures/blocks/cauldron_water_mers",
"textures/blocks/cauldron_water_placeholder",
"textures/blocks/cauldron_water_placeholder_mers",
"textures/blocks/cave_vines_body",
"textures/blocks/cave_vines_body_berries",
"textures/blocks/cave_vines_body_berries_mers",
"textures/blocks/cave_vines_body_mers",
"textures/blocks/cave_vines_head",
"textures/blocks/cave_vines_head_berries",
"textures/blocks/cave_vines_head_berries_mers",
"textures/blocks/cave_vines_head_mers",
"textures/blocks/chain1",
"textures/blocks/chain1_mers",
"textures/blocks/chain2",
"textures/blocks/chain2_mers",
"textures/blocks/chain_command_block_back",
"textures/blocks/chain_command_block_back_mers",
"textures/blocks/chain_command_block_back_mipmap",
"textures/blocks/chain_command_block_back_mipmap_mers",
"textures/blocks/chain_command_block_conditional",
"textures/blocks/chain_command_block_conditional_mers",
"textures/blocks/chain_command_block_conditional_mipmap",
"textures/blocks/chain_command_block_conditional_mipmap_mers",
"textures/blocks/chain_command_block_front",
"textures/blocks/chain_command_block_front_mers",
"textures/blocks/chain_command_block_front_mipmap",
"textures/blocks/chain_command_block_front_mipmap_mers",
"textures/blocks/chain_command_block_side",
"textures/blocks/chain_command_block_side_mers",
"textures/blocks/chain_command_block_side_mipmap",
"textures/blocks/chain_command_block_side_mipmap_mers",
"textures/blocks/cherry_door_bottom",
"textures/blocks/cherry_door_bottom_mers",
"textures/blocks/cherry_door_top",
"textures/blocks/cherry_door_top_mers",
"textures/blocks/cherry_leaves",
"textures/blocks/cherry_leaves_mers",
"textures/blocks/cherry_leaves_opaque",
"textures/blocks/cherry_leaves_opaque_mers",
"textures/blocks/cherry_log_side",
"textures/blocks/cherry_log_side_mers",
"textures/blocks/cherry_log_top",
"textures/blocks/cherry_log_top_mers",
"textures/blocks/cherry_planks",
"textures/blocks/cherry_planks_mers",
"textures/blocks/cherry_sapling",
"textures/blocks/cherry_sapling_mers",
"textures/blocks/cherry_shelf",
"textures/blocks/cherry_trapdoor",
"textures/blocks/cherry_trapdoor_mers",
"textures/blocks/chest_front",
"textures/blocks/chest_front_mers",
"textures/blocks/chest_side",
"textures/blocks/chest_side_mers",
"textures/blocks/chest_top",
"textures/blocks/chest_top_mers",
"textures/blocks/chiseled_bookshelf_empty",
"textures/blocks/chiseled_bookshelf_empty_mers",
"textures/blocks/chiseled_bookshelf_occupied",
"textures/blocks/chiseled_bookshelf_occupied_mers",
"textures/blocks/chiseled_bookshelf_side",
"textures/blocks/chiseled_bookshelf_side_mers",
"textures/blocks/chiseled_bookshelf_top",
"textures/blocks/chiseled_bookshelf_top_mers",
"textures/blocks/chiseled_copper",
"textures/blocks/chiseled_copper_mers",
"textures/blocks/chiseled_nether_bricks",
"textures/blocks/chiseled_nether_bricks_mers",
"textures/blocks/chiseled_polished_blackstone",
"textures/blocks/chiseled_polished_blackstone_mers",
"textures/blocks/chiseled_resin_bricks",
"textures/blocks/chiseled_resin_bricks_mers",
"textures/blocks/chiseled_tuff",
"textures/blocks/chiseled_tuff_bricks",
"textures/blocks/chiseled_tuff_bricks_mers",
"textures/blocks/chiseled_tuff_bricks_top",
"textures/blocks/chiseled_tuff_bricks_top_mers",
"textures/blocks/chiseled_tuff_mers",
"textures/blocks/chiseled_tuff_top",
"textures/blocks/chiseled_tuff_top_mers",
"textures/blocks/chorus_flower",
"textures/blocks/chorus_flower_dead",
"textures/blocks/chorus_flower_dead_mers",
"textures/blocks/chorus_flower_mers",
"textures/blocks/chorus_plant",
"textures/blocks/chorus_plant_mers",
"textures/blocks/clay",
"textures/blocks/clay_mers",
"textures/blocks/coal_block",
"textures/blocks/coal_block_mers",
"textures/blocks/coal_ore",
"textures/blocks/coal_ore_mers",
"textures/blocks/coarse_dirt",
"textures/blocks/coarse_dirt_mers",
"textures/blocks/cobblestone",
"textures/blocks/cobblestone_mers",
"textures/blocks/cobblestone_mossy",
"textures/blocks/cobblestone_mossy_mers",
"textures/blocks/cocoa_stage_0",
"textures/blocks/cocoa_stage_0_mers",
"textures/blocks/cocoa_stage_1",
"textures/blocks/cocoa_stage_1_mers",
"textures/blocks/cocoa_stage_2",
"textures/blocks/cocoa_stage_2_mers",
"textures/blocks/command_block",
"textures/blocks/command_block_back",
"textures/blocks/command_block_back_mers",
"textures/blocks/command_block_back_mipmap",
"textures/blocks/command_block_back_mipmap_mers",
"textures/blocks/command_block_conditional",
"textures/blocks/command_block_conditional_mers",
"textures/blocks/command_block_conditional_mipmap",
"textures/blocks/command_block_conditional_mipmap_mers",
"textures/blocks/command_block_front",
"textures/blocks/command_block_front_mers",
"textures/blocks/command_block_front_mipmap",
"textures/blocks/command_block_front_mipmap_mers",
"textures/blocks/command_block_mers",
"textures/blocks/command_block_side",
"textures/blocks/command_block_side_mers",
"textures/blocks/command_block_side_mipmap",
"textures/blocks/command_block_side_mipmap_mers",
"textures/blocks/comparator_off",
"textures/blocks/comparator_off_mers",
"textures/blocks/comparator_on",
"textures/blocks/comparator_on_mers",
"textures/blocks/compost",
"textures/blocks/compost_mers",
"textures/blocks/compost_ready",
"textures/blocks/compost_ready_mers",
"textures/blocks/composter_bottom",
"textures/blocks/composter_bottom_mers",
"textures/blocks/composter_side",
"textures/blocks/composter_side_mers",
"textures/blocks/composter_top",
"textures/blocks/composter_top_mers",
"textures/blocks/concrete_black",
"textures/blocks/concrete_black_mers",
"textures/blocks/concrete_blue",
"textures/blocks/concrete_blue_mers",
"textures/blocks/concrete_brown",
"textures/blocks/concrete_brown_mers",
"textures/blocks/concrete_cyan",
"textures/blocks/concrete_cyan_mers",
"textures/blocks/concrete_gray",
"textures/blocks/concrete_gray_mers",
"textures/blocks/concrete_green",
"textures/blocks/concrete_green_mers",
"textures/blocks/concrete_light_blue",
"textures/blocks/concrete_light_blue_mers",
"textures/blocks/concrete_lime",
"textures/blocks/concrete_lime_mers",
"textures/blocks/concrete_magenta",
"textures/blocks/concrete_magenta_mers",
"textures/blocks/concrete_orange",
"textures/blocks/concrete_orange_mers",
"textures/blocks/concrete_pink",
"textures/blocks/concrete_pink_mers",
"textures/blocks/concrete_powder_black",
"textures/blocks/concrete_powder_black_mers",
"textures/blocks/concrete_powder_blue",
"textures/blocks/concrete_powder_blue_mers",
"textures/blocks/concrete_powder_brown",
"textures/blocks/concrete_powder_brown_mers",
"textures/blocks/concrete_powder_cyan",
"textures/blocks/concrete_powder_cyan_mers",
"textures/blocks/concrete_powder_gray",
"textures/blocks/concrete_powder_gray_mers",
"textures/blocks/concrete_powder_green",
"textures/blocks/concrete_powder_green_mers",
"textures/blocks/concrete_powder_light_blue",
"textures/blocks/concrete_powder_light_blue_mers",
"textures/blocks/concrete_powder_lime",
"textures/blocks/concrete_powder_lime_mers",
"textures/blocks/concrete_powder_magenta",
"textures/blocks/concrete_powder_magenta_mers",
"textures/blocks/concrete_powder_orange",
"textures/blocks/concrete_powder_orange_mers",
"textures/blocks/concrete_powder_pink",
"textures/blocks/concrete_powder_pink_mers",
"textures/blocks/concrete_powder_purple",
"textures/blocks/concrete_powder_purple_mers",
"textures/blocks/concrete_powder_red",
"textures/blocks/concrete_powder_red_mers",
"textures/blocks/concrete_powder_silver",
"textures/blocks/concrete_powder_silver_mers",
"textures/blocks/concrete_powder_white",
"textures/blocks/concrete_powder_white_mers",
"textures/blocks/concrete_powder_yellow",
"textures/blocks/concrete_powder_yellow_mers",
"textures/blocks/concrete_purple",
"textures/blocks/concrete_purple_mers",
"textures/blocks/concrete_red",
"textures/blocks/concrete_red_mers",
"textures/blocks/concrete_silver",
"textures/blocks/concrete_silver_mers",
"textures/blocks/concrete_white",
"textures/blocks/concrete_white_mers",
"textures/blocks/concrete_yellow",
"textures/blocks/concrete_yellow_mers",
"textures/blocks/conduit_base",
"textures/blocks/conduit_base_mers",
"textures/blocks/conduit_cage",
"textures/blocks/conduit_cage_mers",
"textures/blocks/conduit_closed",
"textures/blocks/conduit_closed_mers",
"textures/blocks/conduit_open",
"textures/blocks/conduit_open_mers",
"textures/blocks/conduit_wind_horizontal",
"textures/blocks/conduit_wind_horizontal_mers",
"textures/blocks/conduit_wind_vertical",
"textures/blocks/conduit_wind_vertical_mers",
"textures/blocks/copper_bars",
"textures/blocks/copper_bars_mers",
"textures/blocks/copper_block",
"textures/blocks/copper_block_mers",
"textures/blocks/copper_bulb",
"textures/blocks/copper_bulb_lit",
"textures/blocks/copper_bulb_lit_mers",
"textures/blocks/copper_bulb_lit_powered",
"textures/blocks/copper_bulb_lit_powered_mers",
"textures/blocks/copper_bulb_mers",
"textures/blocks/copper_bulb_powered",
"textures/blocks/copper_bulb_powered_mers",
"textures/blocks/copper_chain1",
"textures/blocks/copper_chain1_mers",
"textures/blocks/copper_chain2",
"textures/blocks/copper_chain2_mers",
"textures/blocks/copper_chest_inventory_front",
"textures/blocks/copper_chest_inventory_front_mers",
"textures/blocks/copper_chest_inventory_side",
"textures/blocks/copper_chest_inventory_side_mers",
"textures/blocks/copper_chest_inventory_top",
"textures/blocks/copper_chest_inventory_top_mers",
"textures/blocks/copper_door_bottom",
"textures/blocks/copper_door_bottom_mers",
"textures/blocks/copper_door_top",
"textures/blocks/copper_door_top_mers",
"textures/blocks/copper_grate",
"textures/blocks/copper_grate_mers",
"textures/blocks/copper_lantern",
"textures/blocks/copper_lantern_mers",
"textures/blocks/copper_ore",
"textures/blocks/copper_ore_mers",
"textures/blocks/copper_torch",
"textures/blocks/copper_torch_mers",
"textures/blocks/copper_trapdoor",
"textures/blocks/copper_trapdoor_mers",
"textures/blocks/coral_blue",
"textures/blocks/coral_blue_dead",
"textures/blocks/coral_blue_dead_mers",
"textures/blocks/coral_blue_mers",
"textures/blocks/coral_fan_blue",
"textures/blocks/coral_fan_blue_dead",
"textures/blocks/coral_fan_blue_dead_mers",
"textures/blocks/coral_fan_blue_mers",
"textures/blocks/coral_fan_pink",
"textures/blocks/coral_fan_pink_dead",
"textures/blocks/coral_fan_pink_dead_mers",
"textures/blocks/coral_fan_pink_mers",
"textures/blocks/coral_fan_purple",
"textures/blocks/coral_fan_purple_dead",
"textures/blocks/coral_fan_purple_dead_mers",
"textures/blocks/coral_fan_purple_mers",
"textures/blocks/coral_fan_red",
"textures/blocks/coral_fan_red_dead",
"textures/blocks/coral_fan_red_dead_mers",
"textures/blocks/coral_fan_red_mers",
"textures/blocks/coral_fan_yellow",
"textures/blocks/coral_fan_yellow_dead",
"textures/blocks/coral_fan_yellow_dead_mers",
"textures/blocks/coral_fan_yellow_mers",
"textures/blocks/coral_pink",
"textures/blocks/coral_pink_dead",
"textures/blocks/coral_pink_dead_mers",
"textures/blocks/coral_pink_mers",
"textures/blocks/coral_plant_blue",
"textures/blocks/coral_plant_blue_dead",
"textures/blocks/coral_plant_blue_dead_mers",
"textures/blocks/coral_plant_blue_mers",
"textures/blocks/coral_plant_pink",
"textures/blocks/coral_plant_pink_dead",
"textures/blocks/coral_plant_pink_dead_mers",
"textures/blocks/coral_plant_pink_mers",
"textures/blocks/coral_plant_purple",
"textures/blocks/coral_plant_purple_dead",
"textures/blocks/coral_plant_purple_dead_mers",
"textures/blocks/coral_plant_purple_mers",
"textures/blocks/coral_plant_red",
"textures/blocks/coral_plant_red_dead",
"textures/blocks/coral_plant_red_dead_mers",
"textures/blocks/coral_plant_red_mers",
"textures/blocks/coral_plant_yellow",
"textures/blocks/coral_plant_yellow_dead",
"textures/blocks/coral_plant_yellow_dead_mers",
"textures/blocks/coral_plant_yellow_mers",
"textures/blocks/coral_purple",
"textures/blocks/coral_purple_dead",
"textures/blocks/coral_purple_dead_mers",
"textures/blocks/coral_purple_mers",
"textures/blocks/coral_red",
"textures/blocks/coral_red_dead",
"textures/blocks/coral_red_dead_mers",
"textures/blocks/coral_red_mers",
"textures/blocks/coral_yellow",
"textures/blocks/coral_yellow_dead",
"textures/blocks/coral_yellow_dead_mers",
"textures/blocks/coral_yellow_mers",
"textures/blocks/cracked_nether_bricks",
"textures/blocks/cracked_nether_bricks_mers",
"textures/blocks/cracked_polished_blackstone_bricks",
"textures/blocks/cracked_polished_blackstone_bricks_mers",
"textures/blocks/crafter_bottom",
"textures/blocks/crafter_bottom_mers",
"textures/blocks/crafter_east",
"textures/blocks/crafter_east_crafting",
"textures/blocks/crafter_east_crafting_mers",
"textures/blocks/crafter_east_mers",
"textures/blocks/crafter_east_triggered",
"textures/blocks/crafter_east_triggered_mers",
"textures/blocks/crafter_north",
"textures/blocks/crafter_north_crafting",
"textures/blocks/crafter_north_crafting_mers",
"textures/blocks/crafter_north_mers",
"textures/blocks/crafter_south",
"textures/blocks/crafter_south_mers",
"textures/blocks/crafter_south_triggered",
"textures/blocks/crafter_south_triggered_mers",
"textures/blocks/crafter_top",
"textures/blocks/crafter_top_crafting",
"textures/blocks/crafter_top_crafting_mers",
"textures/blocks/crafter_top_mers",
"textures/blocks/crafter_top_triggered",
"textures/blocks/crafter_top_triggered_mers",
"textures/blocks/crafter_west",
"textures/blocks/crafter_west_crafting",
"textures/blocks/crafter_west_crafting_mers",
"textures/blocks/crafter_west_mers",
"textures/blocks/crafter_west_triggered",
"textures/blocks/crafter_west_triggered_mers",
"textures/blocks/crafting_table_front",
"textures/blocks/crafting_table_front_mers",
"textures/blocks/crafting_table_side",
"textures/blocks/crafting_table_side_mers",
"textures/blocks/crafting_table_top",
"textures/blocks/crafting_table_top_mers",
"textures/blocks/creaking_heart_side_active",
"textures/blocks/creaking_heart_side_active_mers",
"textures/blocks/creaking_heart_side_dormant",
"textures/blocks/creaking_heart_side_dormant_mers",
"textures/blocks/creaking_heart_side_inactive",
"textures/blocks/creaking_heart_side_inactive_mers",
"textures/blocks/creaking_heart_top_active",
"textures/blocks/creaking_heart_top_active_mers",
"textures/blocks/creaking_heart_top_dormant",
"textures/blocks/creaking_heart_top_dormant_mers",
"textures/blocks/creaking_heart_top_inactive",
"textures/blocks/creaking_heart_top_inactive_mers",
"textures/blocks/crimson_fungus",
"textures/blocks/crimson_fungus_mers",
"textures/blocks/crimson_nylium_side",
"textures/blocks/crimson_nylium_side_mers",
"textures/blocks/crimson_nylium_top",
"textures/blocks/crimson_nylium_top_mers",
"textures/blocks/crimson_roots",
"textures/blocks/crimson_roots_mers",
"textures/blocks/crimson_roots_pot",
"textures/blocks/crimson_roots_pot_mers",
"textures/blocks/crimson_shelf",
"textures/blocks/crying_obsidian",
"textures/blocks/crying_obsidian_mers",
"textures/blocks/cut_copper",
"textures/blocks/cut_copper_mers",
"textures/blocks/danger_pottery_pattern",
"textures/blocks/danger_pottery_pattern_mers",
"textures/blocks/dark_oak_shelf",
"textures/blocks/dark_oak_trapdoor",
"textures/blocks/dark_oak_trapdoor_mers",
"textures/blocks/daylight_detector_inverted_top",
"textures/blocks/daylight_detector_inverted_top_mers",
"textures/blocks/daylight_detector_side",
"textures/blocks/daylight_detector_side_mers",
"textures/blocks/daylight_detector_top",
"textures/blocks/daylight_detector_top_mers",
"textures/blocks/deadbush",
"textures/blocks/deadbush_mers",
"textures/blocks/decorated_pot_base",
"textures/blocks/decorated_pot_base_mers",
"textures/blocks/decorated_pot_side",
"textures/blocks/decorated_pot_side_mers",
"textures/blocks/deepslate/chiseled_deepslate",
"textures/blocks/deepslate/chiseled_deepslate_mers",
"textures/blocks/deepslate/cobbled_deepslate",
"textures/blocks/deepslate/cobbled_deepslate_mers",
"textures/blocks/deepslate/cracked_deepslate_bricks",
"textures/blocks/deepslate/cracked_deepslate_bricks_mers",
"textures/blocks/deepslate/cracked_deepslate_tiles",
"textures/blocks/deepslate/cracked_deepslate_tiles_mers",
"textures/blocks/deepslate/deepslate",
"textures/blocks/deepslate/deepslate_bricks",
"textures/blocks/deepslate/deepslate_bricks_mers",
"textures/blocks/deepslate/deepslate_coal_ore",
"textures/blocks/deepslate/deepslate_coal_ore_mers",
"textures/blocks/deepslate/deepslate_copper_ore",
"textures/blocks/deepslate/deepslate_copper_ore_mers",
"textures/blocks/deepslate/deepslate_diamond_ore",
"textures/blocks/deepslate/deepslate_diamond_ore_mers",
"textures/blocks/deepslate/deepslate_emerald_ore",
"textures/blocks/deepslate/deepslate_emerald_ore_mers",
"textures/blocks/deepslate/deepslate_gold_ore",
"textures/blocks/deepslate/deepslate_gold_ore_mers",
"textures/blocks/deepslate/deepslate_iron_ore",
"textures/blocks/deepslate/deepslate_iron_ore_mers",
"textures/blocks/deepslate/deepslate_lapis_ore",
"textures/blocks/deepslate/deepslate_lapis_ore_mers",
"textures/blocks/deepslate/deepslate_mers",
"textures/blocks/deepslate/deepslate_redstone_ore",
"textures/blocks/deepslate/deepslate_redstone_ore_mers",
"textures/blocks/deepslate/deepslate_tiles",
"textures/blocks/deepslate/deepslate_tiles_mers",
"textures/blocks/deepslate/deepslate_top",
"textures/blocks/deepslate/deepslate_top_mers",
"textures/blocks/deepslate/polished_deepslate",
"textures/blocks/deepslate/polished_deepslate_mers",
"textures/blocks/diamond_block",
"textures/blocks/diamond_block_mers",
"textures/blocks/diamond_ore",
"textures/blocks/diamond_ore_mers",
"textures/blocks/dirt",
"textures/blocks/dirt_mers",
"textures/blocks/dirt_podzol_side",
"textures/blocks/dirt_podzol_side_mers",
"textures/blocks/dirt_podzol_top",
"textures/blocks/dirt_podzol_top_mers",
"textures/blocks/dirt_with_roots",
"textures/blocks/dirt_with_roots_mers",
"textures/blocks/dispenser_front_horizontal",
"textures/blocks/dispenser_front_horizontal_mers",
"textures/blocks/dispenser_front_vertical",
"textures/blocks/dispenser_front_vertical_mers",
"textures/blocks/door_acacia_lower",
"textures/blocks/door_acacia_lower_mers",
"textures/blocks/door_acacia_upper",
"textures/blocks/door_acacia_upper_mers",
"textures/blocks/door_birch_lower",
"textures/blocks/door_birch_lower_mers",
"textures/blocks/door_birch_upper",
"textures/blocks/door_birch_upper_mers",
"textures/blocks/door_dark_oak_lower",
"textures/blocks/door_dark_oak_lower_mers",
"textures/blocks/door_dark_oak_upper",
"textures/blocks/door_dark_oak_upper_mers",
"textures/blocks/door_iron_lower",
"textures/blocks/door_iron_lower_mers",
"textures/blocks/door_iron_upper",
"textures/blocks/door_iron_upper_mers",
"textures/blocks/door_jungle_lower",
"textures/blocks/door_jungle_lower_mers",
"textures/blocks/door_jungle_upper",
"textures/blocks/door_jungle_upper_mers",
"textures/blocks/door_spruce_lower",
"textures/blocks/door_spruce_lower_mers",
"textures/blocks/door_spruce_upper",
"textures/blocks/door_spruce_upper_mers",
"textures/blocks/door_wood_lower",
"textures/blocks/door_wood_lower_mers",
"textures/blocks/door_wood_upper",
"textures/blocks/door_wood_upper_mers",
"textures/blocks/double_plant_fern_bottom",
"textures/blocks/double_plant_fern_bottom_mers",
"textures/blocks/double_plant_fern_carried",
"textures/blocks/double_plant_fern_carried_mers",
"textures/blocks/double_plant_fern_top",
"textures/blocks/double_plant_fern_top_mers",
"textures/blocks/double_plant_grass_bottom",
"textures/blocks/double_plant_grass_bottom_mers",
"textures/blocks/double_plant_grass_carried",
"textures/blocks/double_plant_grass_carried_mers",
"textures/blocks/double_plant_grass_top",
"textures/blocks/double_plant_grass_top_mers",
"textures/blocks/double_plant_paeonia_bottom",
"textures/blocks/double_plant_paeonia_bottom_mers",
"textures/blocks/double_plant_paeonia_top",
"textures/blocks/double_plant_paeonia_top_mers",
"textures/blocks/double_plant_rose_bottom",
"textures/blocks/double_plant_rose_bottom_mers",
"textures/blocks/double_plant_rose_top",
"textures/blocks/double_plant_rose_top_mers",
"textures/blocks/double_plant_sunflower_back",
"textures/blocks/double_plant_sunflower_back_mers",
"textures/blocks/double_plant_sunflower_bottom",
"textures/blocks/double_plant_sunflower_bottom_mers",
"textures/blocks/double_plant_sunflower_front",
"textures/blocks/double_plant_sunflower_front_mers",
"textures/blocks/double_plant_sunflower_top",
"textures/blocks/double_plant_sunflower_top_mers",
"textures/blocks/double_plant_syringa_bottom",
"textures/blocks/double_plant_syringa_bottom_mers",
"textures/blocks/double_plant_syringa_top",
"textures/blocks/double_plant_syringa_top_mers",
"textures/blocks/dragon_egg",
"textures/blocks/dragon_egg_mers",
"textures/blocks/dried_ghast_state_1_back",
"textures/blocks/dried_ghast_state_1_back_mers",
"textures/blocks/dried_ghast_state_1_bottom",
"textures/blocks/dried_ghast_state_1_bottom_mers",
"textures/blocks/dried_ghast_state_1_front",
"textures/blocks/dried_ghast_state_1_front_mers",
"textures/blocks/dried_ghast_state_1_left",
"textures/blocks/dried_ghast_state_1_left_mers",
"textures/blocks/dried_ghast_state_1_right",
"textures/blocks/dried_ghast_state_1_right_mers",
"textures/blocks/dried_ghast_state_1_tentacles",
"textures/blocks/dried_ghast_state_1_tentacles_mers",
"textures/blocks/dried_ghast_state_1_top",
"textures/blocks/dried_ghast_state_1_top_mers",
"textures/blocks/dried_ghast_state_2_back",
"textures/blocks/dried_ghast_state_2_back_mers",
"textures/blocks/dried_ghast_state_2_bottom",
"textures/blocks/dried_ghast_state_2_bottom_mers",
"textures/blocks/dried_ghast_state_2_front",
"textures/blocks/dried_ghast_state_2_front_mers",
"textures/blocks/dried_ghast_state_2_left",
"textures/blocks/dried_ghast_state_2_left_mers",
"textures/blocks/dried_ghast_state_2_right",
"textures/blocks/dried_ghast_state_2_right_mers",
"textures/blocks/dried_ghast_state_2_tentacles",
"textures/blocks/dried_ghast_state_2_tentacles_mers",
"textures/blocks/dried_ghast_state_2_top",
"textures/blocks/dried_ghast_state_2_top_mers",
"textures/blocks/dried_ghast_state_3_back",
"textures/blocks/dried_ghast_state_3_back_mers",
"textures/blocks/dried_ghast_state_3_bottom",
"textures/blocks/dried_ghast_state_3_bottom_mers",
"textures/blocks/dried_ghast_state_3_front",
"textures/blocks/dried_ghast_state_3_front_mers",
"textures/blocks/dried_ghast_state_3_left",
"textures/blocks/dried_ghast_state_3_left_mers",
"textures/blocks/dried_ghast_state_3_right",
"textures/blocks/dried_ghast_state_3_right_mers",
"textures/blocks/dried_ghast_state_3_tentacles",
"textures/blocks/dried_ghast_state_3_tentacles_mers",
"textures/blocks/dried_ghast_state_3_top",
"textures/blocks/dried_ghast_state_3_top_mers",
"textures/blocks/dried_ghast_state_4_back",
"textures/blocks/dried_ghast_state_4_back_mers",
"textures/blocks/dried_ghast_state_4_bottom",
"textures/blocks/dried_ghast_state_4_bottom_mers",
"textures/blocks/dried_ghast_state_4_front",
"textures/blocks/dried_ghast_state_4_front_mers",
"textures/blocks/dried_ghast_state_4_left",
"textures/blocks/dried_ghast_state_4_left_mers",
"textures/blocks/dried_ghast_state_4_right",
"textures/blocks/dried_ghast_state_4_right_mers",
"textures/blocks/dried_ghast_state_4_tentacles",
"textures/blocks/dried_ghast_state_4_tentacles_mers",
"textures/blocks/dried_ghast_state_4_top",
"textures/blocks/dried_ghast_state_4_top_mers",
"textures/blocks/dried_kelp_side_a",
"textures/blocks/dried_kelp_side_a_mers",
"textures/blocks/dried_kelp_side_b",
"textures/blocks/dried_kelp_side_b_mers",
"textures/blocks/dried_kelp_top",
"textures/blocks/dried_kelp_top_mers",
"textures/blocks/dripstone_block",
"textures/blocks/dripstone_block_mers",
"textures/blocks/dropper_front_horizontal",
"textures/blocks/dropper_front_horizontal_mers",
"textures/blocks/dropper_front_vertical",
"textures/blocks/dropper_front_vertical_mers",
"textures/blocks/emerald_block",
"textures/blocks/emerald_block_mers",
"textures/blocks/emerald_ore",
"textures/blocks/emerald_ore_mers",
"textures/blocks/enchanting_table_bottom",
"textures/blocks/enchanting_table_bottom_mers",
"textures/blocks/enchanting_table_side",
"textures/blocks/enchanting_table_side_mers",
"textures/blocks/enchanting_table_top",
"textures/blocks/enchanting_table_top_mers",
"textures/blocks/end_bricks",
"textures/blocks/end_bricks_mers",
"textures/blocks/end_gateway",
"textures/blocks/end_gateway_mers",
"textures/blocks/end_portal",
"textures/blocks/end_portal_mers",
"textures/blocks/end_rod",
"textures/blocks/end_rod_mers",
"textures/blocks/end_stone",
"textures/blocks/end_stone_mers",
"textures/blocks/ender_chest_front",
"textures/blocks/ender_chest_front_mers",
"textures/blocks/ender_chest_side",
"textures/blocks/ender_chest_side_mers",
"textures/blocks/ender_chest_top",
"textures/blocks/ender_chest_top_mers",
"textures/blocks/endframe_eye",
"textures/blocks/endframe_eye_mers",
"textures/blocks/endframe_side",
"textures/blocks/endframe_side_mers",
"textures/blocks/endframe_top",
"textures/blocks/endframe_top_mers",
"textures/blocks/explorer_pottery_pattern",
"textures/blocks/explorer_pottery_pattern_mers",
"textures/blocks/exposed_chiseled_copper",
"textures/blocks/exposed_chiseled_copper_mers",
"textures/blocks/exposed_copper",
"textures/blocks/exposed_copper_bars",
"textures/blocks/exposed_copper_bars_mers",
"textures/blocks/exposed_copper_bulb",
"textures/blocks/exposed_copper_bulb_lit",
"textures/blocks/exposed_copper_bulb_lit_mers",
"textures/blocks/exposed_copper_bulb_lit_powered",
"textures/blocks/exposed_copper_bulb_lit_powered_mers",
"textures/blocks/exposed_copper_bulb_mers",
"textures/blocks/exposed_copper_bulb_powered",
"textures/blocks/exposed_copper_bulb_powered_mers",
"textures/blocks/exposed_copper_chain1",
"textures/blocks/exposed_copper_chain1_mers",
"textures/blocks/exposed_copper_chain2",
"textures/blocks/exposed_copper_chain2_mers",
"textures/blocks/exposed_copper_chest_inventory_front",
"textures/blocks/exposed_copper_chest_inventory_front_mers",
"textures/blocks/exposed_copper_chest_inventory_side",
"textures/blocks/exposed_copper_chest_inventory_side_mers",
"textures/blocks/exposed_copper_chest_inventory_top",
"textures/blocks/exposed_copper_chest_inventory_top_mers",
"textures/blocks/exposed_copper_door_bottom",
"textures/blocks/exposed_copper_door_bottom_mers",
"textures/blocks/exposed_copper_door_top",
"textures/blocks/exposed_copper_door_top_mers",
"textures/blocks/exposed_copper_grate",
"textures/blocks/exposed_copper_grate_mers",
"textures/blocks/exposed_copper_lantern",
"textures/blocks/exposed_copper_lantern_mers",
"textures/blocks/exposed_copper_mers",
"textures/blocks/exposed_copper_trapdoor",
"textures/blocks/exposed_copper_trapdoor_mers",
"textures/blocks/exposed_cut_copper",