forked from raspmary/Raspberry-Flavoured
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemi.json
More file actions
2939 lines (2939 loc) · 150 KB
/
emi.json
File metadata and controls
2939 lines (2939 loc) · 150 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
{
"favorites": [],
"lookup_history": [],
"craft_history": [],
"recipe_defaults": {
"added": [
"kubejs:rose_gold_knife",
"modestmining:kjs_3566lf7htqx65j96gnq427xdn",
"farmersdelight:flint_knife",
"spelunkery:magnetic_compass",
"cookscollection:rustic_loaf",
"modestmining:chainmail_leggings",
"abnormals_delight:caverns_and_chasms/necromium_knife",
"additionaladditions:rose_gold_boots",
"alloyed:smithing/steel_sword",
"additionaladditions:rose_gold_leggings",
"modestmining:kjs_ejqygttwhl6cwrlndboelmkym",
"modestmining:kjs_cxoggsqu9d57omsofvygpmo9y",
"supplementaries:wrench",
"modestmining:kjs_f0f64h803lwbobo796joazs77",
"minecraft:kjs_steel_horse_armor",
"modestmining:chainmail_chestplate",
"modestmining:kjs_6sqlzja4pf9zsvjv3qajpsjbo",
"modestmining:forge",
"modestmining:kjs_1nymmyujmozdn53fqonwb73f8",
"mynethersdelight:cooking/roast_stuffed_hoglin",
"copperized:copper_chestplate",
"supplementaries:spiky_bomb",
"minecraft:kjs_batter",
"jei:/oreganized/electrum_ingot",
"minecraft:kjs_golden_sword",
"modestmining:kjs_bc588ga20nrp3zn2vd87zzynb",
"upgrade_aquatic:mulberry_jam_bottle",
"modestmining:chainmail_boots",
"caverns_and_chasms:necromium_helmet_smithing",
"minecraft:kjs_etched_blank_music_disc",
"jei:/create/kjs_diamond_horse_armor",
"alloyed:smithing/steel_helmet",
"caverns_and_chasms:necromium_boots_smithing",
"modestmining:kjs_ad2ky9g5yygtro6fcrdp3xi6v",
"jei:/savage_and_ravage/griefer_chestplate",
"onion_onion:motley_grill_block",
"modestmining:kjs_dmko7d9pbu8f7d85ixqmvgdvg",
"jei:/caverns_and_chasms/sanguine_chestplate",
"farmersdelight:cooking/stuffed_pumpkin_block",
"jei:/caverns_and_chasms/sanguine_boots",
"minecraft:kjs_golden_boots",
"kubejs:copper_knife",
"jei:/caverns_and_chasms/sanguine_leggings",
"brewinandchewin:cooking/fiery_fondue_pot",
"windswept:snow_boots_from_silver",
"miners_delight:cooking/stuffed_squid",
"modestmining:kjs_4tqull46gl68lyvjgrilbz15e",
"farmersdelight:netherite_knife_smithing",
"farmersdelight:golden_knife",
"create:crafting/kinetics/goggles",
"jei:/savage_and_ravage/griefer_boots",
"naturalist:bug_net",
"create:crafting/materials/sand_paper",
"culturaldelights:cooking/eggplant_parmesan",
"copperized:copper_leggings",
"jei:/savage_and_ravage/griefer_helmet",
"caverns_and_chasms:necromium_leggings_smithing",
"etched:boombox",
"alloyed:smithing/steel_boots",
"minecraft:kjs_golden_leggings",
"farmersdelight:shepherds_pie",
"modestmining:kjs_2ns7i0ro7ewi9sss6msjk4x7l",
"modestmining:kjs_8ckz37ain1gd4fdsg1ks2pram",
"jei:/savage_and_ravage/griefer_leggings",
"oreganized:electrum_helmet",
"additionaladditions:rose_gold_chestplate",
"caverns_and_chasms:necromium_chestplate_smithing",
"minecraft:kjs_bone_knife",
"farmersdelight:honey_glazed_ham",
"minecraft:kjs_clock",
"heartstone:heartstone",
"minecraft:kjs_rose_gold_horse_armor",
"environmental:yak_pants",
"copperized:copper_boots",
"jei:/alloyed/mixing/steel_ingot",
"minecraft:kjs_golden_helmet",
"mynethersdelight:ghasta_with_cream",
"additionaladditions:rose_gold_helmet",
"caverns_and_chasms:necromium_sword_smithing",
"minecraft:kjs_raspberry_rose_gold_bomb",
"oreganized:electrum_leggings",
"etched:album_cover",
"minecraft:kjs_electrum_horse_armor",
"minecraft:kjs_potion",
"modestmining:kjs_8z3t6vqinum3fra6pksrbjw0v",
"modestmining:kjs_f97wlxd6ebe5cz0lpqj5k6ad",
"minecraft:kjs_golden_chestplate",
"copperized:copper_helmet",
"farmersdelight:roast_chicken",
"supplementaries:bomb",
"etched:music_label",
"modestmining:kjs_9mhamxr5shkxs7uaaajo3ffqw",
"jei:/caverns_and_chasms/sanguine_helmet",
"oreganized:electrum_chestplate",
"autumnity:snail_shell_chestplate",
"oreganized:electrum_boots",
"modestmining:kjs_1k2qqat66k3w6umtple549zbu",
"modestmining:kjs_d7nede9p9rlhut4sixs68jzqj",
"modestmining:kjs_28b1x3w87n3avgg5nu8f5tto",
"modestmining:kjs_bj0jr5alxgmrq7bnffnry19pw",
"modestmining:chainmail_helmet",
"caverns_and_chasms:large_arrow",
"alloyed:smithing/steel_chestplate",
"alloyed:smithing/steel_leggings",
"brewinandchewin:keg",
"caverns_and_chasms:barometer",
"farmersdelight:rice_roll_medley_block",
"farmersdelight:kjs_9zucw8j7kf2l81cl8lmpax0nt",
"oreganized:electrum_sword",
"mynethersdelight:crafting/striderloaf",
"modestmining:kjs_f0e0rpci8gszpck6flbb1k1qa"
],
"tags": {},
"resolutions": {},
"disabled": []
},
"hidden_stacks": [
"item:quark:ancient_tome",
"item:quark:matrix_enchanter",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:protection\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_protection\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_protection\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_protection\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_protection\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_protection\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:feather_falling\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:blast_protection\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:feather_falling\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:feather_falling\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:projectile_protection\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:projectile_protection\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:frost_walker\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:respiration\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:respiration\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:frost_walker\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:respiration\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:frost_walker\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:projectile_protection\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:depth_strider\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:projectile_protection\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:depth_strider\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:projectile_protection\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:depth_strider\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:thorns\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:aqua_affinity\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:feather_falling\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:frost_walker\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sharpness\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:binding_curse\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sharpness\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:soul_speed\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sharpness\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:soul_speed\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sharpness\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:soul_speed\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sharpness\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:swift_sneak\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:smite\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:swift_sneak\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:smite\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:swift_sneak\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:smite\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:knockback\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:bane_of_arthropods\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:bane_of_arthropods\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:bane_of_arthropods\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:smite\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:smite\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:bane_of_arthropods\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:bane_of_arthropods\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:knockback\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:efficiency\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_aspect\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:efficiency\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_aspect\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:efficiency\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fire_aspect\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:efficiency\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:looting\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:efficiency\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sweeping\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:silk_touch\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sweeping\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:unbreaking\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:sweeping\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:unbreaking\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:power\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:luck_of_the_sea\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:power\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:luck_of_the_sea\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:power\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:luck_of_the_sea\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:power\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:infinity\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fortune\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:flame\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fortune\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:punch\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:fortune\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:punch\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:unbreaking\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:power\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:lure\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:impaling\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:lure\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:impaling\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:lure\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:impaling\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:loyalty\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:riptide\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:loyalty\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:riptide\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:loyalty\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:riptide\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:impaling\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:channeling\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:multishot\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:impaling\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:piercing\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:piercing\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:piercing\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:quick_charge\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:quick_charge\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:quick_charge\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:multishot\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:multishot\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"farmersdelight:backstabbing\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:displacement\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"usefulspyglass:marking\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_protection\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"usefulspyglass:marking\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_protection\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"usefulspyglass:marking\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_protection\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"windswept:slipping_curse\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_protection\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:vanishing_curse\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_protection\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:mending\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"farmersdelight:backstabbing\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"minecraft:piercing\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"farmersdelight:backstabbing\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:displacement\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:vitality\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:displacement\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:vitality\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:reach\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:damage_ender\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:reach\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:damage_ender\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:reach\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:damage_ender\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:vitality\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:damage_ender\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:vitality\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:damage_ender\",lvl:5s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:vitality\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:cavalier\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:leech\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:angler\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:leech\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:volley\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:instigating\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:trueshot\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:frost_aspect\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:trueshot\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:frost_aspect\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:quick_draw\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:frost_aspect\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_edge\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:cavalier\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_edge\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:cavalier\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:magic_edge\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:angler\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:angler\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:bulwark\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:phalanx\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:phalanx\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"ensorcellation:curse_mercy\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:potato_recovery\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:potato_recovery\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:potato_recovery\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:reeling\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:capacity\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:reforming\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:capacity\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:shockwave\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"create:capacity\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:shockwave\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:alleviating\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:shockwave\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:launch\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:shockwave\",lvl:4s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:launch\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:spread_of_ailments\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:reeling\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:spread_of_ailments\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:spread_of_ailments\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:precision\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:vengeance\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:speed\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:vengeance\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:speed\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:vengeance\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:speed\",lvl:3s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:ascension_curse\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"supplementaries:stasis\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"allurement:fleeting_curse\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additional_enchantments:homing\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:precision\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additional_enchantments:faster_attacks\",lvl:1s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additionaladditions:precision\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additional_enchantments:faster_attacks\",lvl:2s}]}",
"item:minecraft:enchanted_book{StoredEnchantments:[{id:\"additional_enchantments:faster_attacks\",lvl:3s}]}",
"item:minecraft:enchanted_book",
"item:savage_and_ravage:cleaver_of_beheading{Damage:0}",
"item:clash:billhook{Damage:0}",
"item:minecraft:petrified_oak_slab",
"item:minecraft:barrier",
"item:minecraft:light",
"item:minecraft:structure_void",
"item:minecraft:jigsaw",
"item:minecraft:filled_map",
"item:minecraft:written_book",
"item:minecraft:knowledge_book",
"item:minecraft:debug_stick",
"item:minecraft:suspicious_stew",
"item:minecraft:goat_horn",
"item:etched:complex_music_label{Label:{}}",
"item:etched:etched_music_disc",
"item:etched:portal_radio",
"item:cofh_core:dev_stick",
"item:kubejs:incomplete_redstone_link",
"item:kubejs:incomplete_pizza",
"item:kubejs:incomplete_respiteful_ice_cream",
"item:kubejs:incomplete_prismatic_ice_cream",
"item:kubejs:incomplete_beef_burrito",
"item:kubejs:incomplete_chicken_taco",
"item:kubejs:incomplete_fish_taco",
"item:kubejs:incomplete_mutton_sandwich",
"item:kubejs:incomplete_pork_wrap",
"item:kubejs:incomplete_apple_pie",
"item:kubejs:incomplete_mutton_pie",
"item:kubejs:incomplete_butterscotch_cinnamon_pie",
"item:kubejs:incomplete_stuffed_potato",
"item:kubejs:incomplete_melon_popsicle",
"item:kubejs:incomplete_souldough",
"item:kubejs:incomplete_ham_and_cheese_sandwich",
"item:kubejs:incomplete_rose_hip_pie",
"item:kubejs:incomplete_quiche",
"item:kubejs:incomplete_egg_roll",
"item:kubejs:incomplete_pufferfish_roll",
"item:kubejs:incomplete_tropical_roll",
"item:kubejs:incomplete_calamari_roll",
"item:kubejs:incomplete_rice_ball",
"item:kubejs:incomplete_kipper_sandwich",
"item:kubejs:incomplete_smore",
"item:kubejs:incomplete_neapolitan_ice_cream_sandwich",
"item:kubejs:incomplete_respiteful_ice_cream_sandwich",
"item:kubejs:incomplete_prismatic_ice_cream_sandwich",
"item:kubejs:incomplete_marshmallow_stick",
"item:farmersrespite:long_green_tea",
"item:farmersrespite:long_yellow_tea",
"item:farmersrespite:long_black_tea",
"item:farmersrespite:long_rose_hip_tea",
"item:farmersrespite:long_dandelion_tea",
"item:farmersrespite:long_purulent_tea",
"item:farmersrespite:long_gamblers_tea",
"item:farmersrespite:long_coffee",
"item:farmersrespite:long_apple_cider",
"item:farmersrespite:strong_green_tea",
"item:farmersrespite:strong_yellow_tea",
"item:farmersrespite:strong_black_tea",
"item:farmersrespite:strong_rose_hip_tea",
"item:farmersrespite:strong_purulent_tea",
"item:farmersrespite:strong_gamblers_tea",
"item:farmersrespite:strong_coffee",
"item:farmersrespite:strong_melon_juice",
"item:farmersrespite:strong_apple_cider",
"item:farmersrespite:strong_hot_cocoa",
"item:alloyed:steel_encased_shaft",
"item:alloyed:steel_encased_cogwheel",
"item:alloyed:steel_encased_large_cogwheel",
"item:alloyed:steel_catwalk",
"item:alloyed:steel_catwalk_stairs",
"item:alloyed:steel_sheet_vertical_slab",
"item:alloyed:steel_mesh_fence",
"item:naturalist:duckweed",
"item:naturalist:cattail",
"item:naturalist:cattail_fluff",
"item:naturalist:tortoise_egg",
"item:naturalist:alligator_egg",
"item:naturalist:duck_egg",
"item:naturalist:cooked_egg",
"item:naturalist:antler",
"item:naturalist:duck",
"item:naturalist:cooked_duck",
"item:naturalist:venison",
"item:naturalist:cooked_venison",
"item:naturalist:lizard_tail",
"item:naturalist:cooked_lizard_tail",
"item:naturalist:reptile_hide",
"item:naturalist:snail_bucket",
"item:naturalist:snail_shell",
"item:naturalist:catfish_bucket",
"item:naturalist:catfish",
"item:naturalist:cooked_catfish",
"item:naturalist:chrysalis",
"item:naturalist:snail_spawn_egg",
"item:naturalist:coral_snake_spawn_egg",
"item:naturalist:rattlesnake_spawn_egg",
"item:naturalist:deer_spawn_egg",
"item:naturalist:lion_spawn_egg",
"item:naturalist:elephant_spawn_egg",
"item:naturalist:giraffe_spawn_egg",
"item:naturalist:hippo_spawn_egg",
"item:naturalist:dragonfly_spawn_egg",
"item:naturalist:catfish_spawn_egg",
"item:naturalist:alligator_spawn_egg",
"item:naturalist:lizard_spawn_egg",
"item:naturalist:tortoise_spawn_egg",
"item:naturalist:duck_spawn_egg",
"item:architects_palette:plating_nub",
"item:architects_palette:sunmetal_nub",
"item:architects_palette:polished_glowstone_nub",
"item:architects_palette:nether_brass_nub",
"item:architects_palette:nether_brass_chain",
"item:architects_palette:stone_nub",
"item:architects_palette:smooth_stone_nub",
"item:architects_palette:sandstone_nub",
"item:architects_palette:andesite_nub",
"item:architects_palette:diorite_nub",
"item:architects_palette:granite_nub",
"item:architects_palette:blackstone_nub",
"item:architects_palette:deepslate_nub",
"item:architects_palette:bone_nub",
"item:architects_palette:nub_of_ender",
"item:architects_palette:iron_nub",
"item:architects_palette:gold_nub",
"item:architects_palette:diamond_nub",
"item:architects_palette:emerald_nub",
"item:architects_palette:netherite_nub",
"item:twigs:twigs",
"item:create:andesite_encased_shaft",
"item:create:brass_encased_shaft",
"item:create:andesite_encased_cogwheel",
"item:create:brass_encased_cogwheel",
"item:create:andesite_encased_large_cogwheel",
"item:create:brass_encased_large_cogwheel",
"item:create:mysterious_cuckoo_clock",
"item:create:elevator_contact",
"item:create:shadow_steel_casing",
"item:create:refined_radiance_casing",
"item:create:incomplete_precision_mechanism",
"item:create:unprocessed_obsidian_sheet",
"item:create:incomplete_track",
"item:create:chromatic_compound",
"item:create:shadow_steel",
"item:create:refined_radiance",
"item:create:crushed_raw_osmium",
"item:create:crushed_raw_platinum",
"item:create:crushed_raw_quicksilver",
"item:create:crushed_raw_aluminum",
"item:create:crushed_raw_uranium",
"item:create:crushed_raw_nickel",
"item:create:copper_backtank_placeable",
"item:create:netherite_backtank_placeable",
"item:create:copper_backtank",
"item:create:minecart_contraption",
"item:create:furnace_minecart_contraption",
"item:create:chest_minecart_contraption",
"item:create_confectionery:gingerbread_block",
"item:create_confectionery:gingerbreak_bricks",
"item:create_confectionery:ruby_chocolate_bricks",
"item:create_confectionery:ruby_chocolate_brick_stairs",
"item:create_confectionery:ruby_chocolate_brick_slab",
"item:create_confectionery:little_gingerbread_man_spawn_egg",
"item:create_confectionery:ruby_chocolate_bucket",
"item:create_confectionery:caramelized_marshmellow_on_a_stick",
"item:create_confectionery:candy_cane",
"item:create_confectionery:create_confectionery_icon",
"item:everycomp:all_woods",
"item:everycomp:af/quark/azalea_planter_box",
"item:everycomp:af/quark/azalea_shutter",
"item:everycomp:af/quark/azalea_table",
"item:everycomp:af/quark/azalea_chair",
"item:everycomp:af/quark/azalea_shelf",
"item:everycomp:af/quark/azalea_drawer",
"item:everycomp:af/quark/azalea_bench",
"item:everycomp:tw/windswept/holly_table",
"item:everycomp:tw/quark/ancient_table",
"item:everycomp:tw/ecologics/flowering_azalea_table",
"item:everycomp:tw/ecologics/walnut_table",
"item:everycomp:tw/quark/blossom_table",
"item:everycomp:tw/atmospheric/kousa_table",
"item:everycomp:tw/atmospheric/grimwood_table",
"item:everycomp:tw/quark/azalea_table",
"item:everycomp:c/quark/azalea_window",
"item:everycomp:c/quark/azalea_window_pane",
"item:everycomp:fd/quark/azalea_cabinet",
"item:everycomp:q/architects_palette/vertical_twisted_planks",
"item:everycomp:q/ecologics/vertical_azalea_planks",
"item:everycomp:q/ecologics/vertical_flowering_azalea_planks",
"item:everycomp:q/ecologics/vertical_coconut_planks",
"item:everycomp:q/ecologics/vertical_walnut_planks",
"item:everycomp:q/atmospheric/hollow_kousa_log",
"item:everycomp:q/atmospheric/hollow_grimwood_log",
"item:everycomp:abnww/architects_palette/twisted_bookshelf",
"item:everycomp:abnww/ecologics/azalea_bookshelf",
"item:everycomp:abnww/ecologics/flowering_azalea_bookshelf",
"item:everycomp:abnww/ecologics/coconut_bookshelf",
"item:everycomp:abnww/ecologics/walnut_bookshelf",
"item:everycomp:abnww/quark/azalea_boards",
"item:everycomp:abnww/architects_palette/twisted_ladder",
"item:everycomp:abnww/ecologics/azalea_ladder",
"item:everycomp:abnww/ecologics/flowering_azalea_ladder",
"item:everycomp:abnww/ecologics/coconut_ladder",
"item:everycomp:abnww/ecologics/walnut_ladder",
"item:everycomp:abnww/quark/azalea_beehive",
"item:everycomp:ap/atmospheric/kousa_railing",
"item:everycomp:ap/atmospheric/grimwood_railing",
"item:everycomp:ap/quark/azalea_railing",
"item:everycomp:ap/atmospheric/kousa_board_slab",
"item:everycomp:ap/atmospheric/grimwood_board_slab",
"item:everycomp:ap/quark/azalea_board_slab",
"item:everycomp:ap/atmospheric/kousa_board_wall",
"item:everycomp:ap/atmospheric/grimwood_board_wall",
"item:everycomp:ap/quark/azalea_board_wall",
"item:everycomp:ap/atmospheric/kousa_boards",
"item:everycomp:ap/atmospheric/grimwood_boards",
"item:everycomp:ap/quark/azalea_boards",
"item:everycomp:ap/atmospheric/kousa_board_stairs",
"item:everycomp:ap/atmospheric/grimwood_board_stairs",
"item:everycomp:ap/quark/azalea_board_stairs",
"item:bedspreads:decorated_bed",
"item:upgrade_aquatic:jellyfish_bucket",
"item:upgrade_aquatic:jellyfish_spawn_egg",
"item:upgrade_aquatic:goose_spawn_egg",
"item:neapolitan:chimpanzee_head",
"item:create_central_kitchen:incomplete_egg_sandwich",
"item:create_central_kitchen:incomplete_chicken_sandwich",
"item:create_central_kitchen:incomplete_hamburger",
"item:create_central_kitchen:incomplete_bacon_sandwich",
"item:create_central_kitchen:incomplete_mutton_wrap",
"item:create_central_kitchen:incomplete_apple_pie",
"item:create_central_kitchen:incomplete_sweet_berry_cheesecake",
"item:create_central_kitchen:incomplete_pumpkin_pie",
"item:create_central_kitchen:incomplete_cherry_pie",
"item:create_central_kitchen:incomplete_truffle_pie",
"item:create_central_kitchen:honey_cake_slice",
"item:create_central_kitchen:incomplete_neapolitan_ice_cream_chocolate",
"item:create_central_kitchen:incomplete_neapolitan_ice_cream_strawberry",
"item:miningmaster:mm_tab_icon",
"item:spelunkery:raw_nephrite",
"item:spelunkery:nephrite",
"item:spelunkery:nephrite_slab",
"item:spelunkery:nephrite_stairs",
"item:spelunkery:nephrite_wall",
"item:spelunkery:polished_nephrite",
"item:spelunkery:polished_nephrite_slab",
"item:spelunkery:polished_nephrite_stairs",
"item:spelunkery:polished_nephrite_bricks",
"item:spelunkery:polished_nephrite_wall",
"item:spelunkery:polished_nephrite_brick_slab",
"item:spelunkery:polished_nephrite_brick_stairs",
"item:spelunkery:polished_nephrite_brick_wall",
"item:spelunkery:nephrite_chunk",
"item:spelunkery:carved_nephrite",
"item:spelunkery:nephrite_siphon",
"item:spelunkery:nephrite_spout",
"item:spelunkery:nephrite_diode",
"item:oreganized:spotted_glance",
"item:oreganized:waxed_spotted_glance",
"item:quark:spruce_bookshelf",
"item:quark:birch_bookshelf",
"item:quark:jungle_bookshelf",
"item:quark:acacia_bookshelf",
"item:quark:dark_oak_bookshelf",
"item:quark:crimson_bookshelf",
"item:quark:warped_bookshelf",
"item:quark:mangrove_bookshelf",
"item:quark:bonded_rabbit_hide",
"item:quark:thatch",
"item:quark:thatch_slab",
"item:quark:thatch_stairs",
"item:quark:cut_vine",
"item:quark:rope",
"item:quark:stone_lamp",
"item:quark:stone_brick_lamp",
"item:quark:oak_leaf_carpet",
"item:quark:spruce_leaf_carpet",
"item:quark:birch_leaf_carpet",
"item:quark:jungle_leaf_carpet",
"item:quark:acacia_leaf_carpet",
"item:quark:dark_oak_leaf_carpet",
"item:quark:mangrove_leaf_carpet",
"item:quark:azalea_leaf_carpet",
"item:quark:flowering_azalea_leaf_carpet",
"item:quark:vertical_oak_planks",
"item:quark:vertical_spruce_planks",
"item:quark:vertical_birch_planks",
"item:quark:vertical_jungle_planks",
"item:quark:vertical_acacia_planks",
"item:quark:vertical_dark_oak_planks",
"item:quark:vertical_crimson_planks",
"item:quark:vertical_warped_planks",
"item:quark:vertical_mangrove_planks",
"item:quark:white_stool",
"item:quark:orange_stool",
"item:quark:magenta_stool",
"item:quark:light_blue_stool",
"item:quark:yellow_stool",
"item:quark:lime_stool",
"item:quark:pink_stool",
"item:quark:gray_stool",
"item:quark:light_gray_stool",
"item:quark:cyan_stool",
"item:quark:purple_stool",
"item:quark:blue_stool",
"item:quark:brown_stool",
"item:quark:green_stool",
"item:quark:red_stool",
"item:quark:black_stool",
"item:quark:raw_iron_bricks",
"item:quark:raw_gold_bricks",
"item:quark:raw_copper_bricks",
"item:quark:raw_iron_bricks_slab",
"item:quark:raw_iron_bricks_stairs",
"item:quark:raw_gold_bricks_slab",
"item:quark:raw_gold_bricks_stairs",
"item:quark:raw_copper_bricks_slab",
"item:quark:raw_copper_bricks_stairs",
"item:quark:bamboo_mat",
"item:quark:bamboo_mat_carpet",
"item:quark:permafrost",
"item:quark:permafrost_slab",
"item:quark:permafrost_stairs",
"item:quark:permafrost_wall",
"item:quark:permafrost_bricks",
"item:quark:permafrost_bricks_slab",
"item:quark:permafrost_bricks_stairs",
"item:quark:permafrost_bricks_wall",
"item:quark:ancient_log",
"item:quark:ancient_wood",
"item:quark:stripped_ancient_log",
"item:quark:stripped_ancient_wood",
"item:quark:ancient_planks_slab",
"item:quark:ancient_planks_stairs",
"item:quark:ancient_fence",
"item:quark:ancient_fence_gate",
"item:quark:ancient_door",
"item:quark:ancient_trapdoor",
"item:quark:ancient_button",
"item:quark:ancient_pressure_plate",
"item:quark:ancient_bookshelf",
"item:quark:ancient_ladder",
"item:quark:ancient_post",
"item:quark:stripped_ancient_post",
"item:quark:hollow_ancient_log",
"item:quark:ancient_leaves",
"item:quark:ancient_sapling",
"item:quark:limestone",
"item:quark:polished_limestone",
"item:quark:limestone_slab",
"item:quark:limestone_stairs",
"item:quark:limestone_wall",
"item:quark:polished_limestone_slab",
"item:quark:polished_limestone_stairs",
"item:quark:jasper",
"item:quark:polished_jasper",
"item:quark:jasper_slab",
"item:quark:jasper_stairs",
"item:quark:jasper_wall",
"item:quark:polished_jasper_slab",
"item:quark:polished_jasper_stairs",
"item:quark:myalite",
"item:quark:polished_myalite",
"item:quark:myalite_slab",
"item:quark:myalite_stairs",
"item:quark:myalite_wall",
"item:quark:polished_myalite_slab",
"item:quark:polished_myalite_stairs",
"item:quark:blossom_log",
"item:quark:blossom_wood",
"item:quark:stripped_blossom_log",
"item:quark:stripped_blossom_wood",
"item:quark:blossom_planks_slab",
"item:quark:blossom_planks_stairs",
"item:quark:blossom_fence",
"item:quark:blossom_fence_gate",
"item:quark:blossom_door",
"item:quark:blossom_trapdoor",
"item:quark:blossom_button",
"item:quark:blossom_pressure_plate",
"item:quark:blossom_bookshelf",
"item:quark:blossom_ladder",
"item:quark:blossom_post",
"item:quark:stripped_blossom_post",
"item:quark:hollow_blossom_log",
"item:quark:blue_blossom_leaves",
"item:quark:blue_blossom_sapling",
"item:quark:lavender_blossom_leaves",
"item:quark:lavender_blossom_sapling",
"item:quark:orange_blossom_leaves",
"item:quark:orange_blossom_sapling",
"item:quark:pink_blossom_leaves",
"item:quark:pink_blossom_sapling",
"item:quark:yellow_blossom_leaves",
"item:quark:yellow_blossom_sapling",
"item:quark:red_blossom_leaves",
"item:quark:red_blossom_sapling",
"item:quark:azalea_log",
"item:quark:azalea_wood",
"item:quark:stripped_azalea_log",
"item:quark:stripped_azalea_wood",
"item:quark:azalea_planks",
"item:quark:azalea_planks_slab",
"item:quark:azalea_planks_stairs",
"item:quark:azalea_fence",
"item:quark:azalea_fence_gate",
"item:quark:azalea_door",
"item:quark:azalea_trapdoor",
"item:quark:azalea_button",
"item:quark:azalea_pressure_plate",
"item:quark:azalea_bookshelf",
"item:quark:azalea_ladder",
"item:quark:azalea_post",
"item:quark:stripped_azalea_post",
"item:quark:vertical_azalea_planks",
"item:quark:hollow_azalea_log",
"item:quark:red_corundum",
"item:quark:waxed_red_corundum",
"item:quark:red_corundum_pane",
"item:quark:red_corundum_cluster",
"item:quark:orange_corundum",
"item:quark:waxed_orange_corundum",
"item:quark:orange_corundum_pane",
"item:quark:orange_corundum_cluster",
"item:quark:yellow_corundum",
"item:quark:waxed_yellow_corundum",
"item:quark:yellow_corundum_pane",
"item:quark:yellow_corundum_cluster",
"item:quark:green_corundum",
"item:quark:waxed_green_corundum",
"item:quark:green_corundum_pane",
"item:quark:green_corundum_cluster",
"item:quark:blue_corundum",
"item:quark:waxed_blue_corundum",
"item:quark:blue_corundum_pane",
"item:quark:blue_corundum_cluster",
"item:quark:indigo_corundum",
"item:quark:waxed_indigo_corundum",
"item:quark:indigo_corundum_pane",
"item:quark:indigo_corundum_cluster",
"item:quark:violet_corundum",
"item:quark:waxed_violet_corundum",
"item:quark:violet_corundum_pane",
"item:quark:violet_corundum_cluster",
"item:quark:white_corundum",
"item:quark:waxed_white_corundum",
"item:quark:white_corundum_pane",
"item:quark:white_corundum_cluster",
"item:quark:black_corundum",
"item:quark:waxed_black_corundum",
"item:quark:black_corundum_pane",
"item:quark:black_corundum_cluster",
"item:quark:iron_rod",
"item:quark:chute",
"item:quark:flamerang{Damage:0}",
"item:quark:cloud",
"item:quark:ravager_hide",
"item:quark:bonded_ravager_hide",
"item:quark:tiny_potato",
"item:quark:magnetized_block",
"item:quark:oak_chest",
"item:quark:spruce_chest",
"item:quark:birch_chest",
"item:quark:jungle_chest",
"item:quark:acacia_chest",
"item:quark:dark_oak_chest",
"item:quark:crimson_chest",
"item:quark:warped_chest",
"item:quark:mangrove_chest",
"item:quark:ancient_chest",
"item:quark:blossom_chest",
"item:quark:azalea_chest",
"item:quark:oak_trapped_chest",
"item:quark:spruce_trapped_chest",
"item:quark:birch_trapped_chest",
"item:quark:jungle_trapped_chest",
"item:quark:acacia_trapped_chest",
"item:quark:dark_oak_trapped_chest",
"item:quark:crimson_trapped_chest",
"item:quark:warped_trapped_chest",
"item:quark:mangrove_trapped_chest",
"item:quark:ancient_trapped_chest",
"item:quark:blossom_trapped_chest",
"item:quark:azalea_trapped_chest",
"item:quark:yellow_blossom_leaf_carpet",
"item:quark:orange_blossom_leaf_carpet",
"item:quark:blue_blossom_leaf_carpet",
"item:quark:lavender_blossom_leaf_carpet",
"item:quark:pink_blossom_leaf_carpet",
"item:quark:red_blossom_leaf_carpet",
"item:quark:ancient_leaf_carpet",
"item:quark:yellow_blossom_hedge",
"item:quark:orange_blossom_hedge",
"item:quark:blue_blossom_hedge",
"item:quark:lavender_blossom_hedge",
"item:quark:pink_blossom_hedge",
"item:quark:red_blossom_hedge",
"item:quark:ancient_hedge",
"item:quark:acacia_vertical_slab",
"item:quark:andesite_vertical_slab",
"item:quark:birch_vertical_slab",
"item:quark:brick_vertical_slab",
"item:quark:cobblestone_vertical_slab",
"item:quark:cut_red_sandstone_vertical_slab",
"item:quark:cut_sandstone_vertical_slab",
"item:quark:dark_oak_vertical_slab",
"item:quark:dark_prismarine_vertical_slab",
"item:quark:diorite_vertical_slab",
"item:quark:end_stone_brick_vertical_slab",
"item:quark:granite_vertical_slab",
"item:quark:jungle_vertical_slab",
"item:quark:mossy_cobblestone_vertical_slab",
"item:quark:mossy_stone_brick_vertical_slab",
"item:quark:nether_brick_vertical_slab",
"item:quark:oak_vertical_slab",
"item:quark:polished_andesite_vertical_slab",
"item:quark:polished_diorite_vertical_slab",
"item:quark:polished_granite_vertical_slab",
"item:quark:prismarine_vertical_slab",
"item:quark:prismarine_brick_vertical_slab",
"item:quark:purpur_vertical_slab",
"item:quark:quartz_vertical_slab",
"item:quark:red_nether_brick_vertical_slab",
"item:quark:stone_vertical_slab",
"item:quark:polished_deepslate_vertical_slab",
"item:quark:spruce_vertical_slab",
"item:quark:cobbled_deepslate_vertical_slab",
"item:quark:smooth_stone_vertical_slab",
"item:quark:warped_vertical_slab",
"item:quark:smooth_red_sandstone_vertical_slab",
"item:quark:polished_blackstone_brick_vertical_slab",
"item:quark:smooth_quartz_vertical_slab",
"item:quark:polished_blackstone_vertical_slab",
"item:quark:sandstone_vertical_slab",
"item:quark:blackstone_vertical_slab",
"item:quark:stone_brick_vertical_slab",
"item:quark:red_sandstone_vertical_slab",
"item:quark:deepslate_brick_vertical_slab",
"item:quark:deepslate_tile_vertical_slab",
"item:quark:mangrove_vertical_slab",
"item:quark:mud_brick_vertical_slab",
"item:quark:cut_copper_vertical_slab",
"item:quark:crimson_vertical_slab",
"item:quark:smooth_sandstone_vertical_slab",
"item:quark:waxed_cut_copper_vertical_slab",
"item:quark:exposed_cut_copper_vertical_slab",
"item:quark:waxed_exposed_cut_copper_vertical_slab",
"item:quark:calcite_vertical_slab",
"item:quark:thatch_vertical_slab",
"item:quark:duskbound_block_vertical_slab",
"item:quark:bamboo_planks_vertical_slab",
"item:quark:waxed_oxidized_cut_copper_vertical_slab",
"item:quark:waxed_weathered_cut_copper_vertical_slab",
"item:quark:weathered_cut_copper_vertical_slab",
"item:quark:oxidized_cut_copper_vertical_slab",
"item:quark:polished_calcite_vertical_slab",
"item:quark:calcite_bricks_vertical_slab",
"item:quark:dripstone_block_vertical_slab",
"item:quark:dripstone_bricks_vertical_slab",
"item:quark:polished_dripstone_vertical_slab",
"item:quark:tuff_bricks_vertical_slab",
"item:quark:tuff_vertical_slab",
"item:quark:limestone_bricks_vertical_slab",
"item:quark:polished_tuff_vertical_slab",
"item:quark:jasper_bricks_vertical_slab",
"item:quark:granite_bricks_vertical_slab",
"item:quark:shale_bricks_vertical_slab",
"item:quark:diorite_bricks_vertical_slab",
"item:quark:myalite_bricks_vertical_slab",
"item:quark:andesite_bricks_vertical_slab",
"item:quark:soul_sandstone_vertical_slab",
"item:quark:magenta_shingles_vertical_slab",
"item:quark:light_blue_shingles_vertical_slab",
"item:quark:blue_shingles_vertical_slab",
"item:quark:purple_shingles_vertical_slab",
"item:quark:cyan_shingles_vertical_slab",
"item:quark:orange_shingles_vertical_slab",
"item:quark:white_shingles_vertical_slab",
"item:quark:light_gray_shingles_vertical_slab",
"item:quark:gray_shingles_vertical_slab",
"item:quark:shingles_vertical_slab",
"item:quark:midori_block_vertical_slab",
"item:quark:pink_shingles_vertical_slab",
"item:quark:lime_shingles_vertical_slab",
"item:quark:smooth_soul_sandstone_vertical_slab",
"item:quark:cut_soul_sandstone_vertical_slab",
"item:quark:yellow_shingles_vertical_slab",
"item:quark:brown_shingles_vertical_slab",
"item:quark:sandstone_bricks_vertical_slab",
"item:quark:green_shingles_vertical_slab",
"item:quark:red_sandstone_bricks_vertical_slab",
"item:quark:red_shingles_vertical_slab",
"item:quark:soul_sandstone_bricks_vertical_slab",
"item:quark:black_shingles_vertical_slab",
"item:quark:cobblestone_bricks_vertical_slab",
"item:quark:raw_iron_bricks_vertical_slab",
"item:quark:mossy_cobblestone_bricks_vertical_slab",
"item:quark:raw_copper_bricks_vertical_slab",
"item:quark:dirt_bricks_vertical_slab",
"item:quark:raw_gold_bricks_vertical_slab",
"item:quark:blackstone_bricks_vertical_slab",
"item:quark:blue_nether_bricks_vertical_slab",
"item:quark:netherrack_bricks_vertical_slab",
"item:quark:jasper_vertical_slab",
"item:quark:polished_limestone_vertical_slab",
"item:quark:limestone_vertical_slab",
"item:quark:ancient_planks_vertical_slab",
"item:quark:permafrost_bricks_vertical_slab",
"item:quark:permafrost_vertical_slab",
"item:quark:rusty_iron_plate_vertical_slab",
"item:quark:iron_plate_vertical_slab",
"item:quark:polished_jasper_vertical_slab",
"item:quark:shale_vertical_slab",
"item:quark:polished_shale_vertical_slab",
"item:quark:myalite_vertical_slab",
"item:quark:polished_myalite_vertical_slab",
"item:quark:blossom_planks_vertical_slab",
"item:quark:azalea_planks_vertical_slab",
"item:supplementaries:red_merchant_spawn_egg",
"item:supplementaries:bamboo_spikes_tipped{Damage:0,Potion:\"minecraft:poison\"}",
"item:supplementaries:sconce_glow",
"item:supplementaries:jar",
"item:supplementaries:bomb_spiky_projectile",
"item:supplementaries:bomb_blue_projectile",
"item:supplementaries:bomb_projectile",
"item:supplementaries:pancake_disc",
"item:supplementaries:jar_boat",
"item:supplementaries:placeable_item",
"item:supplementaries:bubble_block",
"item:supplementaries:tater_in_a_jar",
"item:supplementaries:quark/hanging_sign_azalea",
"item:supplementaries:quark/sign_post_azalea",
"item:suppsquared:quark/item_shelf_azalea",
"item:suppsquared:quark/item_shelf_ancient",
"item:suppsquared:quark/item_shelf_blossom",
"item:suppsquared:ecologics/item_shelf_flowering_azalea",
"item:suppsquared:ecologics/item_shelf_walnut",
"item:suppsquared:windswept/item_shelf_holly",
"item:suppsquared:atmospheric/item_shelf_kousa",
"item:suppsquared:atmospheric/item_shelf_grimwood",
"item:abnormals_delight:azalea_cabinet",
"item:abnormals_delight:poise_cabinet",
"item:additional_enchantments:shard_arrow",
"item:spelunkery:handheld_compactor{}",
"item:spelunkery:nephrite_charm{}",
"item:minecraft:lapis_ore",
"item:minecraft:deepslate_lapis_ore",
"item:minecraft:lapis_lazuli",
"item:spelunkery:rough_lazurite_shard",
"item:spelunkery:rough_lazurite",
"item:spelunkery:lapis_lazuli_shard",
"item:minecraft:lapis_block",
"item:architects_palette:cerebral_plate",
"item:architects_palette:wither_lamp",
"item:copperandtuffbackport:tuff_slab",
"item:copperandtuffbackport:tuff_stairs",
"item:copperandtuffbackport:tuff_wall",
"item:copperandtuffbackport:polished_tuff",
"item:copperandtuffbackport:polished_tuff_slab",
"item:copperandtuffbackport:polished_tuff_stairs",
"item:copperandtuffbackport:polished_tuff_wall",
"item:copperandtuffbackport:chiseled_tuff",
"item:copperandtuffbackport:tuff_bricks",
"item:copperandtuffbackport:tuff_brick_slab",
"item:copperandtuffbackport:tuff_brick_wall",
"item:copperandtuffbackport:tuff_brick_stairs",
"item:copperandtuffbackport:chiseled_tuff_bricks",
"item:copperized:copper_door",
"item:copperized:waxed_copper_door",
"item:copperized:exposed_copper_door",
"item:copperized:waxed_exposed_copper_door",
"item:copperized:oxidized_copper_door",
"item:copperized:waxed_oxidized_copper_door",
"item:copperized:weathered_copper_door",
"item:copperized:waxed_weathered_copper_door",