-
Notifications
You must be signed in to change notification settings - Fork 3
/
database_debug.json
1785 lines (1785 loc) · 150 KB
/
database_debug.json
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
{
"adamantium_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"adamantium": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_block": true}},
"vanilla_block": {"id": "minecraft:netherite_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "adamantium","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}}}}],
"item_model": "switch:adamantium_block",
"item_name": "{\"text\": \"Adamantium Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"adamantium": true},"ore": {"adamantium": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "adamantium_fragment",
"item_model": "switch:adamantium_ore",
"item_name": "{\"text\": \"Adamantium Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"deepslate_adamantium_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"adamantium": true},"ore": {"adamantium": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"deepslate_adamantium_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "adamantium_fragment",
"item_model": "switch:deepslate_adamantium_ore",
"item_name": "{\"text\": \"Deepslate Adamantium Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"adamantium": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}}}}],
"max_damage": 375,
"equippable": {"slot": "head","model": "switch:adamantium"},
"attribute_modifiers": [{"type": "armor","amount": 3.2,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 3,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"},{"type": "knockback_resistance","amount": 0.1,"operation": "add_value","slot": "head","id": "switch:knockback_resistance.head"}],
"item_model": "switch:adamantium_helmet",
"item_name": "{\"text\": \"Adamantium Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"adamantium": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}}}}],
"max_damage": 545,
"equippable": {"slot": "chest","model": "switch:adamantium"},
"attribute_modifiers": [{"type": "armor","amount": 8.2,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 3,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"},{"type": "knockback_resistance","amount": 0.1,"operation": "add_value","slot": "chest","id": "switch:knockback_resistance.chest"}],
"item_model": "switch:adamantium_chestplate",
"item_name": "{\"text\": \"Adamantium Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"adamantium": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}}}}],
"max_damage": 511,
"equippable": {"slot": "legs","model": "switch:adamantium"},
"attribute_modifiers": [{"type": "armor","amount": 6.2,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 3,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"},{"type": "knockback_resistance","amount": 0.1,"operation": "add_value","slot": "legs","id": "switch:knockback_resistance.legs"}],
"item_model": "switch:adamantium_leggings",
"item_name": "{\"text\": \"Adamantium Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"adamantium": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}}}}],
"max_damage": 443,
"equippable": {"slot": "feet","model": "switch:adamantium"},
"attribute_modifiers": [{"type": "armor","amount": 3.2,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 3,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"},{"type": "knockback_resistance","amount": 0.1,"operation": "add_value","slot": "feet","id": "switch:knockback_resistance.feet"}],
"item_model": "switch:adamantium_boots",
"item_name": "{\"text\": \"Adamantium Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_sword": {
"id": "minecraft:netherite_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"adamantium": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_sword": true}},
"max_damage": 1873,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 7.2,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:adamantium_sword",
"item_name": "{\"text\": \"Adamantium Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_pickaxe": {
"id": "minecraft:netherite_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"adamantium": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_pickaxe": true}},
"max_damage": 1873,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.2,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:adamantium_pickaxe",
"item_name": "{\"text\": \"Adamantium Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_axe": {
"id": "minecraft:netherite_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"adamantium": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_axe": true}},
"max_damage": 1873,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 9.2,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:adamantium_axe",
"item_name": "{\"text\": \"Adamantium Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_shovel": {
"id": "minecraft:netherite_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"adamantium": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_shovel": true}},
"max_damage": 1873,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.7,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:adamantium_shovel",
"item_name": "{\"text\": \"Adamantium Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_hoe": {
"id": "minecraft:netherite_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"adamantium": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_hoe": true}},
"max_damage": 1873,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"adamantium_fragment": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:adamantium_hoe",
"item_name": "{\"text\": \"Adamantium Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"adamantium_fragment": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"fragment": {"adamantium": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"adamantium_fragment": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "adamantium","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"adamantium_block": true}}}}]},{"type": "smelting","result_count": 1,"category": "misc","group": "adamantium","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"adamantium_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "adamantium","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"adamantium_ore": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "adamantium","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_adamantium_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "adamantium","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_adamantium_ore": true}}}}}],
"item_model": "switch:adamantium_fragment",
"item_name": "{\"text\": \"Adamantium Fragment\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"sapphire": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_block": true}},
"vanilla_block": {"id": "minecraft:diamond_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "sapphire","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}}}}],
"item_model": "switch:sapphire_block",
"item_name": "{\"text\": \"Sapphire Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"sapphire": true},"ore": {"sapphire": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "sapphire",
"item_model": "switch:sapphire_ore",
"item_name": "{\"text\": \"Sapphire Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"deepslate_sapphire_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"sapphire": true},"ore": {"sapphire": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"deepslate_sapphire_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "sapphire",
"item_model": "switch:deepslate_sapphire_ore",
"item_name": "{\"text\": \"Deepslate Sapphire Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"sapphire": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}}}}],
"max_damage": 407,
"equippable": {"slot": "head","model": "switch:sapphire"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"}],
"item_model": "switch:sapphire_helmet",
"item_name": "{\"text\": \"Sapphire Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"sapphire": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}}}}],
"max_damage": 592,
"equippable": {"slot": "chest","model": "switch:sapphire"},
"attribute_modifiers": [{"type": "armor","amount": 8,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"}],
"item_model": "switch:sapphire_chestplate",
"item_name": "{\"text\": \"Sapphire Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"sapphire": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}}}}],
"max_damage": 555,
"equippable": {"slot": "legs","model": "switch:sapphire"},
"attribute_modifiers": [{"type": "armor","amount": 6,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"}],
"item_model": "switch:sapphire_leggings",
"item_name": "{\"text\": \"Sapphire Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"sapphire": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}}}}],
"max_damage": 481,
"equippable": {"slot": "feet","model": "switch:sapphire"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"}],
"item_model": "switch:sapphire_boots",
"item_name": "{\"text\": \"Sapphire Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_sword": {
"id": "minecraft:diamond_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"sapphire": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_sword": true}},
"max_damage": 1752,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 6,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:sapphire_sword",
"item_name": "{\"text\": \"Sapphire Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_pickaxe": {
"id": "minecraft:diamond_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"sapphire": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_pickaxe": true}},
"max_damage": 1752,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:sapphire_pickaxe",
"item_name": "{\"text\": \"Sapphire Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_axe": {
"id": "minecraft:diamond_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"sapphire": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_axe": true}},
"max_damage": 1752,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:sapphire_axe",
"item_name": "{\"text\": \"Sapphire Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_shovel": {
"id": "minecraft:diamond_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"sapphire": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_shovel": true}},
"max_damage": 1752,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:sapphire_shovel",
"item_name": "{\"text\": \"Sapphire Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire_hoe": {
"id": "minecraft:diamond_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"sapphire": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire_hoe": true}},
"max_damage": 1752,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"sapphire": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:sapphire_hoe",
"item_name": "{\"text\": \"Sapphire Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"sapphire": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"sapphire": {"sapphire": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"sapphire": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "sapphire","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"sapphire_block": true}}}}]},{"type": "smelting","result_count": 1,"category": "misc","group": "sapphire","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"sapphire_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "sapphire","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"sapphire_ore": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "sapphire","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_sapphire_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "sapphire","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_sapphire_ore": true}}}}}],
"item_model": "switch:sapphire",
"item_name": "{\"text\": \"Sapphire\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"ruby": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_block": true}},
"vanilla_block": {"id": "minecraft:diamond_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "ruby","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}}}}],
"item_model": "switch:ruby_block",
"item_name": "{\"text\": \"Ruby Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"ruby": true},"ore": {"ruby": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "ruby",
"item_model": "switch:ruby_ore",
"item_name": "{\"text\": \"Ruby Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"deepslate_ruby_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"ruby": true},"ore": {"ruby": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"deepslate_ruby_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "ruby",
"item_model": "switch:deepslate_ruby_ore",
"item_name": "{\"text\": \"Deepslate Ruby Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"ruby": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}}}}],
"max_damage": 382,
"equippable": {"slot": "head","model": "switch:ruby"},
"attribute_modifiers": [{"type": "armor","amount": 3.5,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"}],
"item_model": "switch:ruby_helmet",
"item_name": "{\"text\": \"Ruby Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"ruby": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}}}}],
"max_damage": 557,
"equippable": {"slot": "chest","model": "switch:ruby"},
"attribute_modifiers": [{"type": "armor","amount": 8.5,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"}],
"item_model": "switch:ruby_chestplate",
"item_name": "{\"text\": \"Ruby Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"ruby": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}}}}],
"max_damage": 522,
"equippable": {"slot": "legs","model": "switch:ruby"},
"attribute_modifiers": [{"type": "armor","amount": 6.5,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"}],
"item_model": "switch:ruby_leggings",
"item_name": "{\"text\": \"Ruby Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"ruby": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}}}}],
"max_damage": 452,
"equippable": {"slot": "feet","model": "switch:ruby"},
"attribute_modifiers": [{"type": "armor","amount": 3.5,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"}],
"item_model": "switch:ruby_boots",
"item_name": "{\"text\": \"Ruby Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_sword": {
"id": "minecraft:diamond_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"ruby": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_sword": true}},
"max_damage": 1647,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 6.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:ruby_sword",
"item_name": "{\"text\": \"Ruby Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_pickaxe": {
"id": "minecraft:diamond_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"ruby": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_pickaxe": true}},
"max_damage": 1647,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:ruby_pickaxe",
"item_name": "{\"text\": \"Ruby Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_axe": {
"id": "minecraft:diamond_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"ruby": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_axe": true}},
"max_damage": 1647,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 8.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:ruby_axe",
"item_name": "{\"text\": \"Ruby Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_shovel": {
"id": "minecraft:diamond_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"ruby": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_shovel": true}},
"max_damage": 1647,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:ruby_shovel",
"item_name": "{\"text\": \"Ruby Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby_hoe": {
"id": "minecraft:diamond_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"ruby": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby_hoe": true}},
"max_damage": 1647,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"ruby": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 0.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:ruby_hoe",
"item_name": "{\"text\": \"Ruby Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"ruby": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"ruby": {"ruby": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"ruby": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "ruby","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"ruby_block": true}}}}]},{"type": "smelting","result_count": 1,"category": "misc","group": "ruby","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"ruby_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "ruby","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"ruby_ore": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "ruby","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_ruby_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "ruby","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_ruby_ore": true}}}}}],
"item_model": "switch:ruby",
"item_name": "{\"text\": \"Ruby\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"topaz": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_block": true}},
"vanilla_block": {"id": "minecraft:diamond_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "topaz","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}}}}],
"item_model": "switch:topaz_block",
"item_name": "{\"text\": \"Topaz Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"topaz": true},"ore": {"topaz": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "topaz",
"item_model": "switch:topaz_ore",
"item_name": "{\"text\": \"Topaz Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"deepslate_topaz_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"topaz": true},"ore": {"topaz": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"deepslate_topaz_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "topaz",
"item_model": "switch:deepslate_topaz_ore",
"item_name": "{\"text\": \"Deepslate Topaz Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"topaz": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}}}}],
"max_damage": 297,
"equippable": {"slot": "head","model": "switch:topaz"},
"attribute_modifiers": [{"type": "armor","amount": 4.0,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"}],
"item_model": "switch:topaz_helmet",
"item_name": "{\"text\": \"Topaz Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"topaz": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}}}}],
"max_damage": 433,
"equippable": {"slot": "chest","model": "switch:topaz"},
"attribute_modifiers": [{"type": "armor","amount": 9.0,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"}],
"item_model": "switch:topaz_chestplate",
"item_name": "{\"text\": \"Topaz Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"topaz": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}}}}],
"max_damage": 406,
"equippable": {"slot": "legs","model": "switch:topaz"},
"attribute_modifiers": [{"type": "armor","amount": 7.0,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"}],
"item_model": "switch:topaz_leggings",
"item_name": "{\"text\": \"Topaz Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"topaz": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}}}}],
"max_damage": 352,
"equippable": {"slot": "feet","model": "switch:topaz"},
"attribute_modifiers": [{"type": "armor","amount": 4.0,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"}],
"item_model": "switch:topaz_boots",
"item_name": "{\"text\": \"Topaz Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_sword": {
"id": "minecraft:diamond_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"topaz": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_sword": true}},
"max_damage": 1281,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 7.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:topaz_sword",
"item_name": "{\"text\": \"Topaz Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_pickaxe": {
"id": "minecraft:diamond_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"topaz": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_pickaxe": true}},
"max_damage": 1281,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:topaz_pickaxe",
"item_name": "{\"text\": \"Topaz Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_axe": {
"id": "minecraft:diamond_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"topaz": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_axe": true}},
"max_damage": 1281,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 9.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:topaz_axe",
"item_name": "{\"text\": \"Topaz Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_shovel": {
"id": "minecraft:diamond_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"topaz": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_shovel": true}},
"max_damage": 1281,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:topaz_shovel",
"item_name": "{\"text\": \"Topaz Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz_hoe": {
"id": "minecraft:diamond_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"topaz": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz_hoe": true}},
"max_damage": 1281,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"topaz": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 1.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:topaz_hoe",
"item_name": "{\"text\": \"Topaz Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"topaz": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"topaz": {"topaz": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"topaz": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "topaz","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"topaz_block": true}}}}]},{"type": "smelting","result_count": 1,"category": "misc","group": "topaz","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"topaz_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "topaz","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"topaz_ore": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "topaz","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_topaz_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "topaz","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_topaz_ore": true}}}}}],
"item_model": "switch:topaz",
"item_name": "{\"text\": \"Topaz\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"obsidian": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}}}}],
"max_damage": 907,
"equippable": {"slot": "head","model": "switch:obsidian"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"}],
"item_model": "switch:obsidian_helmet",
"item_name": "{\"text\": \"Obsidian Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"obsidian": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}}}}],
"max_damage": 1319,
"equippable": {"slot": "chest","model": "switch:obsidian"},
"attribute_modifiers": [{"type": "armor","amount": 8,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"}],
"item_model": "switch:obsidian_chestplate",
"item_name": "{\"text\": \"Obsidian Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"obsidian": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}}}}],
"max_damage": 1237,
"equippable": {"slot": "legs","model": "switch:obsidian"},
"attribute_modifiers": [{"type": "armor","amount": 6,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"}],
"item_model": "switch:obsidian_leggings",
"item_name": "{\"text\": \"Obsidian Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"obsidian": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}}}}],
"max_damage": 1072,
"equippable": {"slot": "feet","model": "switch:obsidian"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"}],
"item_model": "switch:obsidian_boots",
"item_name": "{\"text\": \"Obsidian Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_sword": {
"id": "minecraft:diamond_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"obsidian": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_sword": true}},
"max_damage": 3902,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:obsidian_sword",
"item_name": "{\"text\": \"Obsidian Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_pickaxe": {
"id": "minecraft:diamond_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"obsidian": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_pickaxe": true}},
"max_damage": 3902,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 3.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": -0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:obsidian_pickaxe",
"item_name": "{\"text\": \"Obsidian Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_axe": {
"id": "minecraft:diamond_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"obsidian": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_axe": true}},
"max_damage": 3902,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 7.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": -0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:obsidian_axe",
"item_name": "{\"text\": \"Obsidian Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_shovel": {
"id": "minecraft:diamond_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"obsidian": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_shovel": true}},
"max_damage": 3902,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4.3,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": -0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:obsidian_shovel",
"item_name": "{\"text\": \"Obsidian Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_hoe": {
"id": "minecraft:diamond_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"obsidian": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_hoe": true}},
"max_damage": 3902,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"obsidian_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": -0.2,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": -0.2,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:obsidian_hoe",
"item_name": "{\"text\": \"Obsidian Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"obsidian_ingot": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"ingot": {"obsidian": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"obsidian_ingot": true}},
"item_model": "switch:obsidian_ingot",
"item_name": "{\"text\": \"Obsidian Ingot\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_block": true}},
"vanilla_block": {"id": "minecraft:iron_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "steel","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"item_model": "switch:steel_block",
"item_name": "{\"text\": \"Steel Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"steel": true},"ore": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "raw_steel",
"item_model": "switch:steel_ore",
"item_name": "{\"text\": \"Steel Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"deepslate_steel_ore": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"steel": true},"ore": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"deepslate_steel_ore": true}},
"vanilla_block": {"id": "minecraft:polished_deepslate","apply_facing": false},
"no_silk_touch_drop": "raw_steel",
"item_model": "switch:deepslate_steel_ore",
"item_name": "{\"text\": \"Deepslate Steel Ore\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"raw_steel_block": {
"id": "minecraft:furnace",
"category": "material",
"custom_data": {"smithed": {"dict": {"block": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"raw_steel_block": true}},
"vanilla_block": {"id": "minecraft:raw_iron_block","apply_facing": false},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"group": "steel","category": "misc","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"raw_steel": true}}}}}}],
"item_model": "switch:raw_steel_block",
"item_name": "{\"text\": \"Raw Steel Block\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"steel": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"max_damage": 293,
"equippable": {"slot": "head","model": "switch:steel"},
"attribute_modifiers": [{"type": "armor","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor.head"}],
"item_model": "switch:steel_helmet",
"item_name": "{\"text\": \"Steel Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"steel": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"max_damage": 426,
"equippable": {"slot": "chest","model": "switch:steel"},
"attribute_modifiers": [{"type": "armor","amount": 6,"operation": "add_value","slot": "chest","id": "switch:armor.chest"}],
"item_model": "switch:steel_chestplate",
"item_name": "{\"text\": \"Steel Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"steel": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"max_damage": 399,
"equippable": {"slot": "legs","model": "switch:steel"},
"attribute_modifiers": [{"type": "armor","amount": 5,"operation": "add_value","slot": "legs","id": "switch:armor.legs"}],
"item_model": "switch:steel_leggings",
"item_name": "{\"text\": \"Steel Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"steel": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"max_damage": 346,
"equippable": {"slot": "feet","model": "switch:steel"},
"attribute_modifiers": [{"type": "armor","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor.feet"}],
"item_model": "switch:steel_boots",
"item_name": "{\"text\": \"Steel Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_sword": {
"id": "minecraft:iron_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"steel": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_sword": true}},
"max_damage": 444,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "switch:steel_sword",
"item_name": "{\"text\": \"Steel Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_pickaxe": {
"id": "minecraft:iron_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"steel": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_pickaxe": true}},
"max_damage": 444,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 3,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:steel_pickaxe",
"item_name": "{\"text\": \"Steel Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_axe": {
"id": "minecraft:iron_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"steel": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_axe": true}},
"max_damage": 444,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.1,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:steel_axe",
"item_name": "{\"text\": \"Steel Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_shovel": {
"id": "minecraft:iron_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"steel": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_shovel": true}},
"max_damage": 444,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 3.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:steel_shovel",
"item_name": "{\"text\": \"Steel Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_hoe": {
"id": "minecraft:iron_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"steel": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_hoe": true}},
"max_damage": 444,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -1.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "mining_efficiency","amount": 0.1,"operation": "add_value","slot": "mainhand","id": "switch:mining_efficiency.mainhand"}],
"item_model": "switch:steel_hoe",
"item_name": "{\"text\": \"Steel Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_ingot": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"ingot": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_ingot": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "steel","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"steel_block": true}}}}]},{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "steel","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_nugget": true}}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"raw_steel": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"raw_steel": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_dust": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_dust": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_ore": true}}}}},{"type": "smelting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_steel_ore": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_steel_ore": true}}}}}],
"item_model": "switch:steel_ingot",
"item_name": "{\"text\": \"Steel Ingot\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_nugget": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"nugget": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_nugget": true}},
"result_of_crafting": [{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "steel","ingredients": [{"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}]},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_helmet": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_chestplate": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_leggings": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_boots": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_sword": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_pickaxe": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_axe": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_shovel": true}}}}},{"type": "smelting","result_count": 1,"category": "equipment","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_hoe": true}}}}}],
"item_model": "switch:steel_nugget",
"item_name": "{\"text\": \"Steel Nugget\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"raw_steel": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"raw": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"raw_steel": true}},
"item_model": "switch:raw_steel",
"item_name": "{\"text\": \"Raw Steel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_dust": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"dust": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_dust": true}},
"result_of_crafting": [{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "steel","ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}},{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "steel","ingredient": {"components": {"minecraft:custom_data": {"switch": {"raw_steel": true}}}}},{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "steel","ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_ore": true}}}}},{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "steel","ingredient": {"components": {"minecraft:custom_data": {"switch": {"deepslate_steel_ore": true}}}}}],
"used_for_crafting": [{"type": "smelting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 200,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_dust": true}}}},"result": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}},{"type": "blasting","result_count": 1,"category": "misc","group": "steel","experience": 0.8,"cookingtime": 100,"ingredient": {"components": {"minecraft:custom_data": {"switch": {"steel_dust": true}}}},"result": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}],
"item_model": "switch:steel_dust",
"item_name": "{\"text\": \"Steel Dust\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"steel_stick": {
"id": "minecraft:command_block",
"category": "material",
"custom_data": {"smithed": {"dict": {"stick": {"steel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"steel_stick": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 4,"category": "misc","shape": ["X","X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"steel_ingot": true}}}}}}],
"item_model": "switch:steel_stick",
"item_name": "{\"text\": \"Steel Stick\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"emerald": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"item": "minecraft:emerald"}}}],
"max_damage": 171,
"equippable": {"slot": "head","model": "switch:emerald"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "head","id": "switch:armor.head"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor_toughness.head"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "head","id": "switch:luck.head"}],
"item_model": "switch:emerald_helmet",
"item_name": "{\"text\": \"Emerald Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"emerald": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"item": "minecraft:emerald"}}}],
"max_damage": 248,
"equippable": {"slot": "chest","model": "switch:emerald"},
"attribute_modifiers": [{"type": "armor","amount": 8,"operation": "add_value","slot": "chest","id": "switch:armor.chest"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "chest","id": "switch:armor_toughness.chest"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "chest","id": "switch:luck.chest"}],
"item_model": "switch:emerald_chestplate",
"item_name": "{\"text\": \"Emerald Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"emerald": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"item": "minecraft:emerald"}}}],
"max_damage": 233,
"equippable": {"slot": "legs","model": "switch:emerald"},
"attribute_modifiers": [{"type": "armor","amount": 6,"operation": "add_value","slot": "legs","id": "switch:armor.legs"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "legs","id": "switch:armor_toughness.legs"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "legs","id": "switch:luck.legs"}],
"item_model": "switch:emerald_leggings",
"item_name": "{\"text\": \"Emerald Leggings\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_boots": {
"id": "minecraft:leather_boots",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"emerald": true,"boots": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_boots": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","X X"],"ingredients": {"X": {"item": "minecraft:emerald"}}}],
"max_damage": 202,
"equippable": {"slot": "feet","model": "switch:emerald"},
"attribute_modifiers": [{"type": "armor","amount": 3,"operation": "add_value","slot": "feet","id": "switch:armor.feet"},{"type": "armor_toughness","amount": 2,"operation": "add_value","slot": "feet","id": "switch:armor_toughness.feet"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "feet","id": "switch:luck.feet"}],
"item_model": "switch:emerald_boots",
"item_name": "{\"text\": \"Emerald Boots\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_sword": {
"id": "minecraft:diamond_sword",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"emerald": true,"sword": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_sword": true}},
"max_damage": 736,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","X","S"],"ingredients": {"X": {"item": "minecraft:emerald"},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 6,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "mainhand","id": "switch:luck.mainhand"}],
"item_model": "switch:emerald_sword",
"item_name": "{\"text\": \"Emerald Sword\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_pickaxe": {
"id": "minecraft:diamond_pickaxe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"emerald": true,"pickaxe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_pickaxe": true}},
"max_damage": 736,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX"," S "," S "],"ingredients": {"X": {"item": "minecraft:emerald"},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "mainhand","id": "switch:luck.mainhand"}],
"item_model": "switch:emerald_pickaxe",
"item_name": "{\"text\": \"Emerald Pickaxe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_axe": {
"id": "minecraft:diamond_axe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"emerald": true,"axe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_axe": true}},
"max_damage": 736,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX","XS"," S"],"ingredients": {"X": {"item": "minecraft:emerald"},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 8,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "mainhand","id": "switch:luck.mainhand"}],
"item_model": "switch:emerald_axe",
"item_name": "{\"text\": \"Emerald Axe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_shovel": {
"id": "minecraft:diamond_shovel",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"emerald": true,"shovel": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_shovel": true}},
"max_damage": 736,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X","S","S"],"ingredients": {"X": {"item": "minecraft:emerald"},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 4.5,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -3.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "mainhand","id": "switch:luck.mainhand"}],
"item_model": "switch:emerald_shovel",
"item_name": "{\"text\": \"Emerald Shovel\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"emerald_hoe": {
"id": "minecraft:diamond_hoe",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"tools": {"emerald": true,"hoe": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"emerald_hoe": true}},
"max_damage": 736,
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XX"," S"," S"],"ingredients": {"X": {"item": "minecraft:emerald"},"S": {"item": "minecraft:stick"}}}],
"attribute_modifiers": [{"type": "attack_damage","amount": 0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": 0.0,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"},{"type": "luck","amount": 0.25,"operation": "add_value","slot": "mainhand","id": "switch:luck.mainhand"}],
"item_model": "switch:emerald_hoe",
"item_name": "{\"text\": \"Emerald Hoe\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"anti_radiation_helmet": {
"id": "minecraft:leather_helmet",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"anti_radiation": true,"helmet": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"anti_radiation_helmet": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"anti_radiation_stuff": true}}}}}}],
"max_damage": 165,
"attribute_modifiers": [{"type": "armor","amount": 2,"operation": "add_value","slot": "head","id": "switch:armor.head"}],
"item_model": "switch:anti_radiation_helmet",
"item_name": "{\"text\": \"Anti Radiation Helmet\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"anti_radiation_chestplate": {
"id": "minecraft:leather_chestplate",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"anti_radiation": true,"chestplate": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"anti_radiation_chestplate": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"anti_radiation_stuff": true}}}}}}],
"max_damage": 240,
"attribute_modifiers": [{"type": "armor","amount": 6,"operation": "add_value","slot": "chest","id": "switch:armor.chest"}],
"item_model": "switch:anti_radiation_chestplate",
"item_name": "{\"text\": \"Anti Radiation Chestplate\", \"italic\": false, \"color\": \"white\"}",
"lore": ["{\"text\": \"Switch\", \"italic\": true, \"color\": \"blue\"}"]
},
"anti_radiation_leggings": {
"id": "minecraft:leather_leggings",
"category": "equipment",
"custom_data": {"smithed": {"dict": {"armor": {"anti_radiation": true,"leggings": true}},"ignore": {"functionality": true,"crafting": true}},"switch": {"anti_radiation_leggings": true}},
"result_of_crafting": [{"type": "crafting_shaped","result_count": 1,"category": "equipment","shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"switch": {"anti_radiation_stuff": true}}}}}}],
"max_damage": 225,
"attribute_modifiers": [{"type": "armor","amount": 5,"operation": "add_value","slot": "legs","id": "switch:armor.legs"}],