forked from Gamemode4Dev/GM4_Datapacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodeldata_registry.json
More file actions
1775 lines (1775 loc) · 70.9 KB
/
modeldata_registry.json
File metadata and controls
1775 lines (1775 loc) · 70.9 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
{
"items": {
"acacia_door": {
"gm4_double_doors:guidebook_icon/double_doors": 1
},
"acacia_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_acacia_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_acacia_hanging_sign": 2
},
"acacia_sign": {
"gm4_trapped_signs:item/trapped_acacia_sign": 1,
"gm4_trapped_signs:item/secret_trapped_acacia_sign": 2
},
"anvil": {
"gm4_desire_lines:guidebook_icon/celaro_shamir": 1,
"gm4_weighted_armour:guidebook_icon/helious_shamir": 2,
"gm4_metallurgy:guidebook_icon/arborenda_shamir": 100,
"gm4_metallurgy:guidebook_icon/defuse_shamir": 101,
"gm4_metallurgy:guidebook_icon/ender_bolt_shamir": 102,
"gm4_metallurgy:guidebook_icon/forterra_shamir": 103,
"gm4_metallurgy:guidebook_icon/gemini_shamir": 104,
"gm4_metallurgy:guidebook_icon/hypexperia_shamir": 105,
"gm4_metallurgy:guidebook_icon/infinitas_shamir": 106,
"gm4_metallurgy:guidebook_icon/metallurgy": 107,
"gm4_metallurgy:guidebook_icon/moneo_shamir": 108,
"gm4_metallurgy:guidebook_icon/musical_shamir": 109,
"gm4_metallurgy:guidebook_icon/sensus_shamir": 110,
"gm4_metallurgy:guidebook_icon/tinker_shamir": 111,
"gm4_metallurgy:guidebook_icon/vibro_shamir": 112,
"gm4_animi_shamir:guidebook_icon/animi_shamir": 113,
"gm4_audere_shamir:guidebook_icon/audere_shamir": 114,
"gm4_fulcio_shamir:guidebook_icon/fulcio_shamir": 115,
"gm4_iacio_shamir:guidebook_icon/iacio_shamir": 116,
"gm4_lumos_shamir:guidebook_icon/lumos_shamir": 117,
"gm4_percurro_shamir:guidebook_icon/percurro_shamir": 118,
"gm4_vecto_shamir:guidebook_icon/vecto_shamir": 119,
"gm4_vigere_shamir:guidebook_icon/vigere_shamir": 120,
"gm4_orb_of_ankou:guidebook_icon/corripio_shamir": 200
},
"apple": {
"gm4_apple_trees:block/apple_unripe": 1,
"gm4_apple_trees:guidebook_icon/apple_trees": 3
},
"armor_stand": {
"gm4_better_armour_stands:gui/advancement/better_armour_stands": 1,
"gm4_poses_pack:gui/advancement/poses_pack": 2,
"gm4_particles_pack:guidebook_icon/particles_pack": 3,
"gm4_poses_pack:guidebook_icon/poses_pack": 4
},
"axolotl_bucket": {
"gm4_metallurgy:shamir/infinitas": 100
},
"azalea_leaves": {
"gm4_monsters_unbound:item/spore/default": 1
},
"bamboo_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_bamboo_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_bamboo_hanging_sign": 2
},
"bamboo_sign": {
"gm4_trapped_signs:item/trapped_bamboo_sign": 1,
"gm4_trapped_signs:item/secret_trapped_bamboo_sign": 2
},
"beehive": {
"gm4_beehive_inspector:guidebook_icon/beehive_inspector": 1
},
"big_dripleaf": {
"gm4_dripleaf_filters:guidebook_icon/dripleaf_filters": 1,
"gm4_dripleaf_launchers:guidebook_icon/dripleaf_launchers": 2
},
"birch_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_birch_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_birch_hanging_sign": 2
},
"birch_sign": {
"gm4_trapped_signs:item/trapped_birch_sign": 1,
"gm4_trapped_signs:item/secret_trapped_birch_sign": 2
},
"birch_stairs": {
"gm4_chairs:gui/advancement/chairs_creation": 1
},
"black_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/black": 300
},
"black_dye": {
"gm4_orb_of_ankou:gui/advancement/orb_of_ankou_soul_essence": 1,
"gm4_orb_of_ankou:pneuma/aggressive": 200,
"gm4_orb_of_ankou:pneuma/agile": 201,
"gm4_orb_of_ankou:pneuma/anchoring": 202,
"gm4_orb_of_ankou:pneuma/bargaining": 203,
"gm4_orb_of_ankou:pneuma/bashing": 204,
"gm4_orb_of_ankou:pneuma/blasting": 205,
"gm4_orb_of_ankou:pneuma/blinding": 206,
"gm4_orb_of_ankou:pneuma/bounding": 207,
"gm4_orb_of_ankou:pneuma/bubbly": 208,
"gm4_orb_of_ankou:pneuma/conjuring": 209,
"gm4_orb_of_ankou:pneuma/depriving": 210,
"gm4_orb_of_ankou:pneuma/draining": 211,
"gm4_orb_of_ankou:pneuma/enduring": 212,
"gm4_orb_of_ankou:pneuma/expeditious": 213,
"gm4_orb_of_ankou:pneuma/feathery": 214,
"gm4_orb_of_ankou:pneuma/gazing": 215,
"gm4_orb_of_ankou:pneuma/gliding": 216,
"gm4_orb_of_ankou:pneuma/hawkeye": 217,
"gm4_orb_of_ankou:pneuma/incombustible": 218,
"gm4_orb_of_ankou:pneuma/lifeless": 219,
"gm4_orb_of_ankou:pneuma/neutralizing": 220,
"gm4_orb_of_ankou:pneuma/phasing": 221,
"gm4_orb_of_ankou:pneuma/pricking": 222,
"gm4_orb_of_ankou:pneuma/retreating": 223,
"gm4_orb_of_ankou:pneuma/rushing": 224,
"gm4_orb_of_ankou:pneuma/scaling": 225,
"gm4_orb_of_ankou:pneuma/soaring": 226,
"gm4_orb_of_ankou:pneuma/synergetic": 227,
"gm4_orb_of_ankou:pneuma/vanishing": 228,
"gm4_orb_of_ankou:pneuma/venomous": 229,
"gm4_orb_of_ankou:pneuma/volatile": 230,
"gm4_orb_of_ankou:pneuma/withering": 231,
"gm4_orb_of_ankou:pneuma/striding": 232,
"gm4_orb_of_ankou:pneuma/freezing": 233,
"gm4_orb_of_ankou:pneuma/feigning": 234,
"gm4_orb_of_ankou:pneuma/shrieking": 235,
"gm4_orb_of_ankou:pneuma/dashing": 236,
"gm4_orb_of_ankou:pneuma/sniffing": 237,
"gm4_orb_of_ankou:pneuma/tranquilizing": 238,
"gm4_orb_of_ankou:pneuma/debilitate": 239
},
"blaze_powder": {
"gm4_mysterious_midnights:guidebook_icon/nightmare_nights": 1
},
"blue_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/blue": 300
},
"bone": {
"gm4_mysterious_midnights:guidebook_icon/resurrecting_skeletons": 1
},
"bow": {
"gm4_better_fire:gui/advancement/better_fire": 1,
"gm4_tower_structures:item/pirate_bow": 4,
"gm4_animi_shamir:shamir/animi": 124
},
"brown_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/brown": 300
},
"brown_stained_glass": {
"gm4_soul_glass:gui/advancement/soul_glass": 1,
"gm4_soul_glass:item/soul_glass": 2,
"gm4_soul_glass:guidebook_icon/soul_glass": 3
},
"bucket": {
"gm4_metallurgy:shamir/infinitas": 100
},
"campfire": {
"gm4_cozy_campfires:guidebook_icon/cozy_campfires": 1
},
"carrot_on_a_stick": {
"gm4_animi_shamir:shamir/animi": 124
},
"carved_pumpkin": {
"gm4_midnight_menaces:guidebook_icon/menacing_goblins": 1
},
"cauldron": {
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldrons_create": 1,
"gm4_zauber_cauldrons:guidebook_icon/zauber_cauldrons": 300
},
"chainmail_boots": {
"gm4_mountaineering:item/crampons": 1,
"gm4_mountaineering:guidebook_icon/mountaineering": 2,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_desire_lines:shamir/celaro": 118,
"gm4_vecto_shamir:shamir/vecto": 121,
"gm4_metallurgy:shamir/vibro": 123,
"gm4_animi_shamir:shamir/animi": 124
},
"chainmail_chestplate": {
"gm4_monsters_unbound:guidebook_icon/monsters_unbound": 1,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_iacio_shamir:shamir/iacio": 122,
"gm4_animi_shamir:shamir/animi": 124
},
"chainmail_helmet": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"chainmail_leggings": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"cherry_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_cherry_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_cherry_hanging_sign": 2
},
"cherry_leaves": {
"gm4_monsters_unbound:item/spore/cherry": 1
},
"cherry_sign": {
"gm4_trapped_signs:item/trapped_cherry_sign": 1,
"gm4_trapped_signs:item/secret_trapped_cherry_sign": 2
},
"chest": {
"gm4_sunken_treasure:item/treasure_chest": 1,
"gm4_sunken_treasure:item/shipwreck_treasure": 3,
"gm4_sunken_treasure:item/shipwreck_supply": 4
},
"chiseled_bookshelf": {
"gm4_bookshelf_inspector:guidebook_icon/bookshelf_inspector": 1
},
"chorus_flower": {
"gm4_smelteries:block/ore_display/chorus_fruit": 1
},
"chorus_fruit": {
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldrons_wormhole": 1
},
"clock": {
"gm4_mysterious_midnights:guidebook_icon/mysterious_midnights": 3,
"gm4_animi_shamir:shamir/animi": 124,
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldrons_make_magicol": 300
},
"coal_block": {
"gm4_forming_press:item/charcoal_block": 1
},
"coarse_dirt": {
"gm4_desire_lines:gui/advancement/desire_lines_10000": 1,
"gm4_desire_lines:guidebook_icon/desire_lines": 2
},
"cod": {
"gm4_live_catch:guidebook_icon/live_catch": 1
},
"cod_bucket": {
"gm4_metallurgy:shamir/infinitas": 100
},
"command_block": {
"gm4:gui/advancement/root": 1
},
"compass": {
"gm4_metallurgy:shamir/sensus": 101,
"gm4_fulcio_shamir:shamir/fulcio": 115,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_axe": {
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/arborenda": 112,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_block": {
"gm4_auto_crafting:guidebook_icon/auto_crafting": 1
},
"copper_boots": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_desire_lines:shamir/celaro": 118,
"gm4_vecto_shamir:shamir/vecto": 121,
"gm4_metallurgy:shamir/vibro": 123,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_chestplate": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_iacio_shamir:shamir/iacio": 122,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_helmet": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_hoe": {
"gm4_metallurgy:shamir/gemini": 109,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_leggings": {
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_ore": {
"gm4_smelteries:block/ore_display/copper_ore": 2
},
"copper_pickaxe": {
"gm4_metallurgy:shamir/forterra": 107,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_shovel": {
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"copper_sword": {
"gm4_metallurgy:shamir/ender_bolt": 105,
"gm4_metallurgy:shamir/musical": 108,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_orb_of_ankou:shamir/corripio": 116,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_animi_shamir:shamir/animi": 124
},
"crafting_table": {
"gm4_custom_crafters:block/custom_crafter": 1,
"gm4_standard_crafting:guidebook_icon/standard_crafting": 2,
"gm4_custom_crafters:gui/advancement/custom_crafters": 3,
"gm4_custom_crafters:guidebook_icon/custom_crafters": 4,
"gm4_custom_crafters:block/custom_crafter_side": 6,
"gm4_custom_crafters:block/custom_crafter_down": 7,
"gm4_auto_crafting:block/auto_crafter": 8,
"gm4_tnt_landmines:entity/tnt_landmine_crafting_table": 45
},
"crimson_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_crimson_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_crimson_hanging_sign": 2
},
"crimson_sign": {
"gm4_trapped_signs:item/trapped_crimson_sign": 1,
"gm4_trapped_signs:item/secret_trapped_crimson_sign": 2
},
"crossbow": {
"gm4_crossbow_cartridges:guidebook_icon/crossbow_cartridges": 1,
"gm4_animi_shamir:shamir/animi": 124
},
"crying_obsidian": {
"gm4_shapeless_portals:guidebook_icon/shapeless_portals": 1
},
"cyan_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/cyan": 300
},
"dark_oak_hanging_sign": {
"gm4_trapped_signs:item/secret_trapped_dark_oak_hanging_sign": 1,
"gm4_trapped_signs:item/trapped_dark_oak_hanging_sign": 2
},
"dark_oak_sign": {
"gm4_trapped_signs:item/trapped_dark_oak_sign": 1,
"gm4_trapped_signs:item/secret_trapped_dark_oak_sign": 2
},
"decorated_pot": {
"gm4_blossoming_pots:guidebook_icon/blossoming_pots": 1
},
"deepslate_copper_ore": {
"gm4_smelteries:block/ore_display/deepslate_copper_ore": 1
},
"deepslate_gold_ore": {
"gm4_smelteries:block/ore_display/deepslate_gold_ore": 1
},
"deepslate_iron_ore": {
"gm4_smelteries:block/ore_display/deepslate_iron_ore": 1
},
"diamond": {
"gm4_end_fishing:item/end_city_ore_1": 10,
"gm4_end_fishing:item/end_city_ore_2": 11,
"gm4_end_fishing:item/end_city_ore_3": 12,
"gm4_end_fishing:item/end_city_ore_4": 13,
"gm4_end_fishing:item/end_city_ore_5": 14,
"gm4_end_fishing:item/end_city_ore_6": 15
},
"diamond_axe": {
"gm4_mending_tanks:guidebook_icon/mending_tanks": 1,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/arborenda": 112,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_boots": {
"gm4_mountaineering:gui/advancement/ski_fast": 1,
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_desire_lines:shamir/celaro": 118,
"gm4_vecto_shamir:shamir/vecto": 121,
"gm4_metallurgy:shamir/vibro": 123,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_chestplate": {
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_iacio_shamir:shamir/iacio": 122,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_helmet": {
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_hoe": {
"gm4_metallurgy:shamir/gemini": 109,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_horse_armor": {
"gm4_end_fishing:item/end_city_horse_armor_1": 10,
"gm4_end_fishing:item/end_city_horse_armor_2": 11,
"gm4_end_fishing:item/end_city_horse_armor_3": 12,
"gm4_end_fishing:item/end_city_horse_armor_4": 13,
"gm4_end_fishing:item/end_city_horse_armor_5": 14
},
"diamond_leggings": {
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_pickaxe": {
"gm4_end_fishing:item/end_city_tools_1": 10,
"gm4_end_fishing:item/end_city_tools_2": 11,
"gm4_end_fishing:item/end_city_tools_3": 12,
"gm4_end_fishing:item/end_city_tools_4": 13,
"gm4_end_fishing:item/end_city_tools_5": 14,
"gm4_end_fishing:item/end_city_tools_6": 15,
"gm4_end_fishing:item/end_city_tools_7": 16,
"gm4_end_fishing:item/end_city_tools_8": 17,
"gm4_end_fishing:item/end_city_tools_9": 18,
"gm4_end_fishing:item/end_city_tools_10": 19,
"gm4_metallurgy:shamir/forterra": 107,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_shovel": {
"gm4_end_fishing:item/end_city_tools_1": 10,
"gm4_end_fishing:item/end_city_tools_2": 11,
"gm4_end_fishing:item/end_city_tools_3": 12,
"gm4_end_fishing:item/end_city_tools_4": 13,
"gm4_end_fishing:item/end_city_tools_5": 14,
"gm4_end_fishing:item/end_city_tools_6": 15,
"gm4_end_fishing:item/end_city_tools_7": 16,
"gm4_end_fishing:item/end_city_tools_8": 17,
"gm4_end_fishing:item/end_city_tools_9": 18,
"gm4_end_fishing:item/end_city_tools_10": 19,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"diamond_sword": {
"gm4_end_fishing:gui/advancement/end_fishing_swords": 1,
"gm4_end_fishing:item/end_city_swords_1": 10,
"gm4_end_fishing:item/end_city_swords_2": 11,
"gm4_end_fishing:item/end_city_swords_3": 12,
"gm4_end_fishing:item/end_city_swords_4": 13,
"gm4_end_fishing:item/end_city_swords_5": 14,
"gm4_end_fishing:item/end_city_swords_6": 15,
"gm4_end_fishing:item/end_city_swords_7": 16,
"gm4_end_fishing:item/end_city_swords_8": 17,
"gm4_end_fishing:item/end_city_swords_9": 18,
"gm4_end_fishing:item/end_city_swords_10": 19,
"gm4_end_fishing:item/end_city_swords_11": 20,
"gm4_end_fishing:item/end_city_swords_12": 21,
"gm4_end_fishing:item/end_city_swords_13": 22,
"gm4_end_fishing:item/end_city_swords_14": 23,
"gm4_end_fishing:item/end_city_swords_15": 24,
"gm4_end_fishing:item/end_city_swords_16": 25,
"gm4_end_fishing:item/end_city_swords_17": 26,
"gm4_end_fishing:item/end_city_swords_18": 27,
"gm4_end_fishing:item/end_city_swords_19": 28,
"gm4_end_fishing:item/end_city_swords_20": 29,
"gm4_metallurgy:shamir/ender_bolt": 105,
"gm4_metallurgy:shamir/gemini": 106,
"gm4_metallurgy:shamir/musical": 108,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_orb_of_ankou:shamir/corripio": 116,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_animi_shamir:shamir/animi": 124
},
"dirt": {
"gm4_tnt_landmines:entity/tnt_landmine_dirt": 42
},
"dirt_path": {
"gm4_speed_paths:guidebook_icon/speed_paths": 1
},
"elytra": {
"gm4_end_fishing:gui/advancement/end_fishing_phantom": 1,
"gm4_end_fishing:item/captains_wings": 10,
"gm4_end_fishing:item/ravaged_wings": 11,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_animi_shamir:shamir/animi": 124,
"gm4_orb_of_ankou:gui/advancement/orb_of_ankou_soaring_pneuma": 200
},
"emerald": {
"gm4_apple_trees:block/apple_unripe": 0,
"gm4_calling_bell:gui/advancement/calling_bell": 1,
"gm4_calling_bell:guidebook_icon/calling_bell": 2,
"gm4_end_fishing:item/end_city_ore_1": 10,
"gm4_end_fishing:item/end_city_ore_2": 11,
"gm4_end_fishing:item/end_city_ore_3": 12,
"gm4_end_fishing:item/end_city_ore_4": 13,
"gm4_end_fishing:item/end_city_ore_5": 14,
"gm4_end_fishing:item/end_city_ore_6": 15
},
"enchanted_book": {
"gm4_enchantment_extractors:gui/advancement/enchantment_extractors_mending": 1,
"gm4_book_binders:gui/advancement/book_binders_bind": 2,
"gm4_book_binders:guidebook_icon/book_binders": 3
},
"enchanting_table": {
"gm4_enchantment_extractors:block/enchantment_extractor": 1,
"gm4_enchantment_extractors:gui/advancement/enchantment_extractors": 2,
"gm4_enchantment_extractors:guidebook_icon/enchantment_extractors": 3,
"gm4_enchantment_extractors:block/enchantment_extractor_side": 4,
"gm4_enchantment_extractors:block/enchantment_extractor_down": 5
},
"end_portal_frame": {
"gm4_teleportation_anchors:block/teleportation_anchor": 1
},
"end_rod": {
"gm4_teleportation_anchors:gui/advancement/teleportation_jammer": 1
},
"end_stone": {
"gm4_mysterious_midnights:item/endermite_egg": 1,
"gm4_mysterious_midnights:guidebook_icon/falling_stars": 2
},
"ender_chest": {
"gm4_xp_storage:guidebook_icon/xp_storage": 1
},
"ender_eye": {
"gm4_ender_hoppers:guidebook_icon/ender_hoppers": 1
},
"experience_bottle": {
"standard_liquids:gui/advancement/standard_liquids": 1
},
"firework_rocket": {
"gm4_phantom_scarecrows:gui/advancement/phantom_scarecrows": 1
},
"firework_star": {
"gm4_orb_of_ankou:item/orb_of_ankou": 1,
"gm4_everstone:item/everstone": 2,
"gm4_everstone:gui/advancement/everstones": 3,
"gm4_everstone:guidebook_icon/everstone": 4,
"gm4_zauber_cauldrons:item/crystal/speed": 12,
"gm4_zauber_cauldrons:item/crystal/regeneration": 13,
"gm4_zauber_cauldrons:item/crystal/instant_damage": 54,
"gm4_zauber_cauldrons:item/crystal/instant_health": 55,
"gm4_zauber_cauldrons:item/crystal/jump_boost": 56,
"gm4_zauber_cauldrons:item/crystal/poison": 57,
"gm4_zauber_cauldrons:item/crystal/strength": 58,
"gm4_orb_of_ankou:gui/advancement/orb_of_ankou_max_orb": 200
},
"fishing_rod": {
"gm4_end_fishing:gui/advancement/end_fishing": 1,
"gm4_end_fishing:guidebook_icon/end_fishing": 2,
"gm4_reeling_rods:guidebook_icon/reeling_rods": 3,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_animi_shamir:shamir/animi": 124
},
"flint": {
"gm4_orb_of_ankou:gui/advancement/orb_of_ankou_soul_shard": 1,
"gm4_better_fire:item/charred_arrowhead": 2,
"gm4_orb_of_ankou:pneuma/aggressive": 200,
"gm4_orb_of_ankou:pneuma/agile": 201,
"gm4_orb_of_ankou:pneuma/anchoring": 202,
"gm4_orb_of_ankou:pneuma/bargaining": 203,
"gm4_orb_of_ankou:pneuma/bashing": 204,
"gm4_orb_of_ankou:pneuma/blasting": 205,
"gm4_orb_of_ankou:pneuma/blinding": 206,
"gm4_orb_of_ankou:pneuma/bounding": 207,
"gm4_orb_of_ankou:pneuma/bubbly": 208,
"gm4_orb_of_ankou:pneuma/conjuring": 209,
"gm4_orb_of_ankou:pneuma/depriving": 210,
"gm4_orb_of_ankou:pneuma/draining": 211,
"gm4_orb_of_ankou:pneuma/enduring": 212,
"gm4_orb_of_ankou:pneuma/expeditious": 213,
"gm4_orb_of_ankou:pneuma/feathery": 214,
"gm4_orb_of_ankou:pneuma/gazing": 215,
"gm4_orb_of_ankou:pneuma/gliding": 216,
"gm4_orb_of_ankou:pneuma/hawkeye": 217,
"gm4_orb_of_ankou:pneuma/incombustible": 218,
"gm4_orb_of_ankou:pneuma/lifeless": 219,
"gm4_orb_of_ankou:pneuma/neutralizing": 220,
"gm4_orb_of_ankou:pneuma/phasing": 221,
"gm4_orb_of_ankou:pneuma/pricking": 222,
"gm4_orb_of_ankou:pneuma/retreating": 223,
"gm4_orb_of_ankou:pneuma/rushing": 224,
"gm4_orb_of_ankou:pneuma/scaling": 225,
"gm4_orb_of_ankou:pneuma/soaring": 226,
"gm4_orb_of_ankou:pneuma/synergetic": 227,
"gm4_orb_of_ankou:pneuma/vanishing": 228,
"gm4_orb_of_ankou:pneuma/venomous": 229,
"gm4_orb_of_ankou:pneuma/volatile": 230,
"gm4_orb_of_ankou:pneuma/withering": 231,
"gm4_orb_of_ankou:pneuma/striding": 232,
"gm4_orb_of_ankou:pneuma/freezing": 233,
"gm4_orb_of_ankou:pneuma/feigning": 234,
"gm4_orb_of_ankou:pneuma/shrieking": 235,
"gm4_orb_of_ankou:pneuma/dashing": 236,
"gm4_orb_of_ankou:pneuma/sniffing": 237,
"gm4_orb_of_ankou:pneuma/tranquilizing": 238,
"gm4_orb_of_ankou:pneuma/debilitate": 239
},
"flint_and_steel": {
"gm4_orb_of_ankou:gui/advancement/orb_of_ankou_soul_forge": 1,
"gm4_better_fire:guidebook_icon/better_fire": 2,
"gm4_animi_shamir:shamir/animi": 124,
"gm4_orb_of_ankou:guidebook_icon/orb_of_ankou": 200
},
"flowering_azalea_leaves": {
"gm4_monsters_unbound:item/spore/flowering": 1
},
"furnace": {
"gm4_smelteries:gui/advancement/smelteries": 1,
"gm4_forming_press:guidebook_icon/forming_press": 2,
"gm4_smelteries:guidebook_icon/smelteries": 3,
"gm4_teleportation_anchors:guidebook_icon/teleportation_anchors": 4
},
"furnace_minecart": {
"gm4_tunnel_bores:item/piston_minecart": 1
},
"glass": {
"gm4_liquid_tanks:block/liquid_tank": 1,
"gm4_liquid_tanks:guidebook_icon/liquid_tanks": 2,
"gm4_liquid_tanks:block/liquid_tank_side": 3
},
"glass_bottle": {
"gm4_sunken_treasure:item/message_in_a_bottle": 1,
"gm4_sunken_treasure:gui/advancement/sunken_treasure": 2,
"gm4_zauber_cauldrons:item/magic_in_a_bottle": 3,
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldron_drink_multi_use_bottle": 4
},
"glow_ink_sac": {
"gm4_ink_spitting_squid:gui/advancement/glow_ink_spitting_squid": 1
},
"gold_ingot": {
"gm4_end_fishing:item/end_city_ore_1": 10,
"gm4_end_fishing:item/end_city_ore_2": 11,
"gm4_end_fishing:item/end_city_ore_3": 12,
"gm4_end_fishing:item/end_city_ore_4": 13,
"gm4_end_fishing:item/end_city_ore_5": 14,
"gm4_end_fishing:item/end_city_ore_6": 15
},
"gold_ore": {
"gm4_smelteries:block/ore_display/gold_ore": 1
},
"golden_apple": {
"gm4_apple_trees:block/golden_apple_unripe": 1,
"gm4_mob_curing:guidebook_icon/mob_curing": 2
},
"golden_axe": {
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/arborenda": 112,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_boots": {
"gm4_sunken_treasure:item/waders": 1,
"gm4_zauber_cauldrons:item/zauber_armor/health_boost": 2,
"gm4_zauber_cauldrons:item/zauber_armor/attack_boost": 3,
"gm4_zauber_cauldrons:item/zauber_armor/speed_boost": 4,
"gm4_zauber_cauldrons:item/zauber_armor/armor_boost": 5,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_desire_lines:shamir/celaro": 118,
"gm4_vecto_shamir:shamir/vecto": 121,
"gm4_metallurgy:shamir/vibro": 123,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_chestplate": {
"gm4_zauber_cauldrons:item/zauber_armor/health_boost": 2,
"gm4_zauber_cauldrons:item/zauber_armor/attack_boost": 3,
"gm4_zauber_cauldrons:item/zauber_armor/speed_boost": 4,
"gm4_zauber_cauldrons:item/zauber_armor/armor_boost": 5,
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldrons_full_armor": 6,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_iacio_shamir:shamir/iacio": 122,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_helmet": {
"gm4_zauber_cauldrons:item/zauber_armor/health_boost": 2,
"gm4_zauber_cauldrons:item/zauber_armor/attack_boost": 3,
"gm4_zauber_cauldrons:item/zauber_armor/speed_boost": 4,
"gm4_zauber_cauldrons:item/zauber_armor/armor_boost": 5,
"gm4_orb_of_ankou:entity/fire_sprite": 6,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_hoe": {
"gm4_metallurgy:shamir/gemini": 109,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_horse_armor": {
"gm4_end_fishing:item/end_city_horse_armor_1": 10,
"gm4_end_fishing:item/end_city_horse_armor_2": 11,
"gm4_end_fishing:item/end_city_horse_armor_3": 12,
"gm4_end_fishing:item/end_city_horse_armor_4": 13,
"gm4_end_fishing:item/end_city_horse_armor_5": 14
},
"golden_leggings": {
"gm4_zauber_cauldrons:item/zauber_armor/health_boost": 2,
"gm4_zauber_cauldrons:item/zauber_armor/attack_boost": 3,
"gm4_zauber_cauldrons:item/zauber_armor/speed_boost": 4,
"gm4_zauber_cauldrons:item/zauber_armor/armor_boost": 5,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_pickaxe": {
"gm4_metallurgy:shamir/forterra": 107,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_shovel": {
"gm4_sunken_treasure:guidebook_icon/sunken_treasure": 1,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"golden_sword": {
"gm4_potion_swords:gui/advancement/potion_swords": 1,
"gm4_potion_swords:guidebook_icon/potion_swords": 2,
"gm4_metallurgy:shamir/ender_bolt": 105,
"gm4_metallurgy:shamir/gemini": 106,
"gm4_metallurgy:shamir/musical": 108,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_orb_of_ankou:shamir/corripio": 116,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_animi_shamir:shamir/animi": 124
},
"grass_block": {
"gm4_tnt_landmines:entity/tnt_landmine_grass": 41,
"gm4_zauber_cauldrons:gui/advancement/zauber_cauldrons_paint_biome": 300
},
"gray_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/gray": 300
},
"green_concrete_powder": {
"gm4_zauber_cauldrons:block/liquid_magicol/green": 300
},
"gunpowder": {
"gm4_bat_grenades:gui/advancement/bat_grenades": 1,
"gm4_tnt_landmines:item/soft_defuser": 2,
"gm4_bat_grenades:guidebook_icon/bat_grenades": 3
},
"honey_block": {
"gm4_liquid_tanks:block/cast_honey_block": 1
},
"hopper": {
"gm4_liquid_tanks:gui/advancement/liquid_tanks_create": 1
},
"hopper_minecart": {
"gm4_liquid_minecarts:gui/advancement/liquid_minecarts_create": 1,
"gm4_ender_hoppers:item/ender_hopper_minecart": 2,
"gm4_liquid_minecarts:item/liquid_minecart": 3,
"gm4_liquid_minecarts:guidebook_icon/liquid_minecarts": 4
},
"horn_coral": {
"gm4_scuba_gear:guidebook_icon/scuba_gear": 1
},
"ice": {
"gm4_midnight_menaces:guidebook_icon/icy_strays": 1
},
"ink_sac": {
"gm4_ink_spitting_squid:gui/advancement/ink_spitting_squid": 1,
"gm4_ink_spitting_squid:guidebook_icon/ink_spitting_squid": 2
},
"iron_axe": {
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/arborenda": 112,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_percurro_shamir:shamir/percurro": 117,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_block": {
"gm4_tinkering_compressors:guidebook_icon/tinkering_compressors": 1,
"gm4_smelteries:block/smeltery_unlit": 2,
"gm4_smelteries:block/smeltery_lit": 3
},
"iron_boots": {
"gm4_mountaineering:item/skis": 1,
"gm4_mountaineering:gui/advancement/ski": 2,
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_desire_lines:shamir/celaro": 118,
"gm4_vecto_shamir:shamir/vecto": 121,
"gm4_metallurgy:shamir/vibro": 123,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_chestplate": {
"gm4_weighted_armour:guidebook_icon/weighted_armour": 1,
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_iacio_shamir:shamir/iacio": 122,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_helmet": {
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_hoe": {
"gm4_pig_tractors:guidebook_icon/pig_tractors": 1,
"gm4_metallurgy:shamir/gemini": 109,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_horse_armor": {
"gm4_end_fishing:item/end_city_horse_armor_1": 10,
"gm4_end_fishing:item/end_city_horse_armor_2": 11,
"gm4_end_fishing:item/end_city_horse_armor_3": 12,
"gm4_end_fishing:item/end_city_horse_armor_4": 13,
"gm4_end_fishing:item/end_city_horse_armor_5": 14
},
"iron_ingot": {
"gm4_end_fishing:item/end_city_ore_1": 10,
"gm4_end_fishing:item/end_city_ore_2": 11,
"gm4_end_fishing:item/end_city_ore_3": 12,
"gm4_end_fishing:item/end_city_ore_4": 13,
"gm4_end_fishing:item/end_city_ore_5": 14,
"gm4_end_fishing:item/end_city_ore_6": 15
},
"iron_leggings": {
"gm4_end_fishing:item/end_city_armor_1": 10,
"gm4_end_fishing:item/end_city_armor_2": 11,
"gm4_end_fishing:item/end_city_armor_3": 12,
"gm4_end_fishing:item/end_city_armor_4": 13,
"gm4_end_fishing:item/end_city_armor_5": 14,
"gm4_end_fishing:item/end_city_armor_6": 15,
"gm4_end_fishing:item/end_city_armor_7": 16,
"gm4_end_fishing:item/end_city_armor_8": 17,
"gm4_end_fishing:item/end_city_armor_9": 18,
"gm4_end_fishing:item/end_city_armor_10": 19,
"gm4_weighted_armour:shamir/helious": 103,
"gm4_metallurgy:shamir/defuse": 106,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_ore": {
"gm4_smelteries:block/ore_display/iron_ore": 2
},
"iron_pickaxe": {
"gm4_end_fishing:item/end_city_tools_1": 10,
"gm4_end_fishing:item/end_city_tools_2": 11,
"gm4_end_fishing:item/end_city_tools_3": 12,
"gm4_end_fishing:item/end_city_tools_4": 13,
"gm4_end_fishing:item/end_city_tools_5": 14,
"gm4_end_fishing:item/end_city_tools_6": 15,
"gm4_end_fishing:item/end_city_tools_7": 16,
"gm4_end_fishing:item/end_city_tools_8": 17,
"gm4_end_fishing:item/end_city_tools_9": 18,
"gm4_end_fishing:item/end_city_tools_10": 19,
"gm4_metallurgy:shamir/forterra": 107,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_shovel": {
"gm4_end_fishing:item/end_city_tools_1": 10,
"gm4_end_fishing:item/end_city_tools_2": 11,
"gm4_end_fishing:item/end_city_tools_3": 12,
"gm4_end_fishing:item/end_city_tools_4": 13,
"gm4_end_fishing:item/end_city_tools_5": 14,
"gm4_end_fishing:item/end_city_tools_6": 15,
"gm4_end_fishing:item/end_city_tools_7": 16,
"gm4_end_fishing:item/end_city_tools_8": 17,
"gm4_end_fishing:item/end_city_tools_9": 18,
"gm4_end_fishing:item/end_city_tools_10": 19,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_metallurgy:shamir/moneo": 113,
"gm4_lumos_shamir:shamir/lumos": 114,
"gm4_audere_shamir:shamir/audere": 120,
"gm4_animi_shamir:shamir/animi": 124
},
"iron_sword": {
"gm4_end_fishing:item/end_city_swords_1": 10,
"gm4_end_fishing:item/end_city_swords_2": 11,
"gm4_end_fishing:item/end_city_swords_3": 12,
"gm4_end_fishing:item/end_city_swords_4": 13,
"gm4_end_fishing:item/end_city_swords_5": 14,
"gm4_end_fishing:item/end_city_swords_6": 15,
"gm4_end_fishing:item/end_city_swords_7": 16,
"gm4_end_fishing:item/end_city_swords_8": 17,
"gm4_end_fishing:item/end_city_swords_9": 18,
"gm4_end_fishing:item/end_city_swords_10": 19,
"gm4_end_fishing:item/end_city_swords_11": 20,
"gm4_end_fishing:item/end_city_swords_12": 21,
"gm4_end_fishing:item/end_city_swords_13": 22,
"gm4_end_fishing:item/end_city_swords_14": 23,
"gm4_end_fishing:item/end_city_swords_15": 24,
"gm4_end_fishing:item/end_city_swords_16": 25,
"gm4_end_fishing:item/end_city_swords_17": 26,
"gm4_end_fishing:item/end_city_swords_18": 27,
"gm4_end_fishing:item/end_city_swords_19": 28,
"gm4_end_fishing:item/end_city_swords_20": 29,
"gm4_metallurgy:shamir/ender_bolt": 105,
"gm4_metallurgy:shamir/gemini": 106,
"gm4_metallurgy:shamir/musical": 108,
"gm4_metallurgy:shamir/hypexperia": 110,
"gm4_metallurgy:shamir/tinker": 111,
"gm4_orb_of_ankou:shamir/corripio": 116,
"gm4_percurro_shamir:shamir/percurro": 117,