-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefinitions_debug.json
More file actions
1307 lines (1307 loc) · 99.8 KB
/
definitions_debug.json
File metadata and controls
1307 lines (1307 loc) · 99.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"simplunium_ingot": {
"id": "simplunium_ingot",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "simplunium","ingredients": [{"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}}]},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "simplunium","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_nugget": true}}}}}},
{"type": "smelting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"raw_simplunium": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"raw_simplunium": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "smelting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "smelting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ore": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ore": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "smelting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"deepslate_simplunium_ore": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"deepslate_simplunium_ore": true}}}},"experience": 0.8,"cookingtime": 100}
],
"components": {
"custom_data": {"smithed": {"dict": {"ingot": {"simplunium": true}},"id": "simplenergy:simplunium_ingot","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_ingot": true}},
"item_model": "simplenergy:simplunium_ingot",
"item_name": {"text": "Simplunium Ingot"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_nugget": {
"id": "simplunium_nugget",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "simplunium","ingredients": [{"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}]},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_helmet": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_chestplate": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_leggings": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_boots": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_sword": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_pickaxe": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_axe": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_shovel": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_hoe": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "smelting","result_count": 1,"category": "equipment","group": "simplunium_nugget","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_spear": true}}}},"experience": 0.8,"cookingtime": 200}
],
"components": {
"custom_data": {"smithed": {"dict": {"nugget": {"simplunium": true}},"id": "simplenergy:simplunium_nugget","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_nugget": true}},
"item_model": "simplenergy:simplunium_nugget",
"item_name": {"text": "Simplunium Nugget"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"raw_simplunium": {
"id": "raw_simplunium",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "crafting_shapeless","result_count": 9,"category": "misc","group": "simplunium","ingredients": [{"components": {"minecraft:custom_data": {"simplenergy": {"raw_simplunium_block": true}}}}]}
],
"wiki_buttons": [
[{"text": "Raw ore material for the energy system.","color": "yellow"},{"text": "\nDrop from mining Simplunium Ore (1-2 per ore)","color": "gray"},{"text": "\nSmelt in furnace to create Simplunium Ingots","color": "gray"},{"text": "\nCan be pulverized into Simplunium Dust","color": "gray"}]
],
"components": {
"custom_data": {"smithed": {"dict": {"raw": {"simplunium": true}},"id": "simplenergy:raw_simplunium","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"raw_simplunium": true}},
"item_model": "simplenergy:raw_simplunium",
"item_name": {"text": "Raw Simplunium"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_dust": {
"id": "simplunium_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "simplunium","result": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "simplunium","result": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"raw_simplunium": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ore": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "simplunium","ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"deepslate_simplunium_ore": true}}}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"simplunium": true}},"id": "simplenergy:simplunium_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_dust": true}},
"item_model": "simplenergy:simplunium_dust",
"item_name": {"text": "Simplunium Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_block": {
"id": "simplunium_block",
"base_item": "minecraft:furnace",
"manual_category": "material",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "simplunium","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}}}
],
"components": {
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:simplunium_block","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"custom_data": {"smithed": {"dict": {"block": {"simplunium": true}},"id": "simplenergy:simplunium_block","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_block": true}},
"item_model": "simplenergy:simplunium_block",
"item_name": {"text": "Simplunium Block"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"simplunium_ore": {
"id": "simplunium_ore",
"base_item": "minecraft:furnace",
"manual_category": "material",
"recipes": [],
"wiki_buttons": [
[{"text": "Primary ore for energy system components.","color": "yellow"},{"text": "\nFound in the Overworld between Y=0 and Y=50","color": "gray"},{"text": "\nDeepslate variant generates below Y=0","color": "gray"},{"text": "\nSmelt into Simplunium Ingots for crafting","color": "gray"},{"text": "\nUsed to create: Batteries, Generators, Machines, Tools","color": "gray"}]
],
"components": {
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:simplunium_ore","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"custom_data": {"smithed": {"dict": {"block": {"simplunium": true},"ore": {"simplunium": true}},"id": "simplenergy:simplunium_ore","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_ore": true}},
"item_model": "simplenergy:simplunium_ore",
"item_name": {"text": "Simplunium Ore"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:polished_deepslate",
"contents": false,
"block_facing": false,
"visual_facing": "none"
},
"no_silk_touch_drop": {
"id": "raw_simplunium",
"count": {"min": 1,"max": 2}
}
},
"deepslate_simplunium_ore": {
"id": "deepslate_simplunium_ore",
"base_item": "minecraft:furnace",
"manual_category": "material",
"recipes": [],
"wiki_buttons": [
[{"text": "Primary ore for energy system components.","color": "yellow"},{"text": "\nFound in the Overworld between Y=0 and Y=50","color": "gray"},{"text": "\nDeepslate variant generates below Y=0","color": "gray"},{"text": "\nSmelt into Simplunium Ingots for crafting","color": "gray"},{"text": "\nUsed to create: Batteries, Generators, Machines, Tools","color": "gray"}]
],
"components": {
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:deepslate_simplunium_ore","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"custom_data": {"smithed": {"dict": {"block": {"simplunium": true},"ore": {"simplunium": true}},"id": "simplenergy:deepslate_simplunium_ore","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"deepslate_simplunium_ore": true}},
"item_model": "simplenergy:deepslate_simplunium_ore",
"item_name": {"text": "Deepslate Simplunium Ore"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:polished_deepslate",
"contents": false,
"block_facing": false,
"visual_facing": "none"
},
"no_silk_touch_drop": {
"id": "raw_simplunium",
"count": {"min": 1,"max": 2}
}
},
"raw_simplunium_block": {
"id": "raw_simplunium_block",
"base_item": "minecraft:furnace",
"manual_category": "material",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "simplunium","shape": ["XXX","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"raw_simplunium": true}}}}}}
],
"components": {
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:raw_simplunium_block","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"custom_data": {"smithed": {"dict": {"block": {"simplunium": true}},"id": "simplenergy:raw_simplunium_block","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"raw_simplunium_block": true}},
"item_model": "simplenergy:raw_simplunium_block",
"item_name": {"text": "Raw Simplunium Block"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:raw_iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"simplunium_helmet": {
"id": "simplunium_helmet",
"base_item": "minecraft:iron_helmet",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_helmet","manual_priority": 0,"shape": ["XXX","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"armor": {"simplunium": true,"helmet": true}},"id": "simplenergy:simplunium_helmet","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_helmet": true}},
"max_damage": 495,
"equippable": {"slot": "head","asset_id": "simplenergy:simplunium"},
"attribute_modifiers": [{"type": "armor","amount": 2.5,"operation": "add_value","slot": "head","id": "simplenergy:armor.head"}],
"item_model": "simplenergy:simplunium_helmet",
"item_name": {"text": "Simplunium Helmet"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_chestplate": {
"id": "simplunium_chestplate",
"base_item": "minecraft:iron_chestplate",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_chestplate","manual_priority": 0,"shape": ["X X","XXX","XXX"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"armor": {"simplunium": true,"chestplate": true}},"id": "simplenergy:simplunium_chestplate","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_chestplate": true}},
"max_damage": 720,
"equippable": {"slot": "chest","asset_id": "simplenergy:simplunium"},
"attribute_modifiers": [{"type": "armor","amount": 6.5,"operation": "add_value","slot": "chest","id": "simplenergy:armor.chest"}],
"item_model": "simplenergy:simplunium_chestplate",
"item_name": {"text": "Simplunium Chestplate"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_leggings": {
"id": "simplunium_leggings",
"base_item": "minecraft:iron_leggings",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_leggings","manual_priority": 0,"shape": ["XXX","X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"armor": {"simplunium": true,"leggings": true}},"id": "simplenergy:simplunium_leggings","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_leggings": true}},
"max_damage": 675,
"equippable": {"slot": "legs","asset_id": "simplenergy:simplunium"},
"attribute_modifiers": [{"type": "armor","amount": 5.5,"operation": "add_value","slot": "legs","id": "simplenergy:armor.legs"}],
"item_model": "simplenergy:simplunium_leggings",
"item_name": {"text": "Simplunium Leggings"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_boots": {
"id": "simplunium_boots",
"base_item": "minecraft:iron_boots",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_boots","manual_priority": 0,"shape": ["X X","X X"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"armor": {"simplunium": true,"boots": true}},"id": "simplenergy:simplunium_boots","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_boots": true}},
"max_damage": 585,
"equippable": {"slot": "feet","asset_id": "simplenergy:simplunium"},
"attribute_modifiers": [{"type": "armor","amount": 2.5,"operation": "add_value","slot": "feet","id": "simplenergy:armor.feet"}],
"item_model": "simplenergy:simplunium_boots",
"item_name": {"text": "Simplunium Boots"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_sword": {
"id": "simplunium_sword",
"base_item": "minecraft:iron_sword",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_sword","manual_priority": 0,"shape": ["X","X","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"sword": true}},"id": "simplenergy:simplunium_sword","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_sword": true}},
"max_damage": 750,
"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": "simplenergy:simplunium_sword",
"item_name": {"text": "Simplunium Sword"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_pickaxe": {
"id": "simplunium_pickaxe",
"base_item": "minecraft:iron_pickaxe",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_pickaxe","manual_priority": 0,"shape": ["XXX"," S "," S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"pickaxe": true}},"id": "simplenergy:simplunium_pickaxe","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_pickaxe": true}},
"max_damage": 750,
"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": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:mining_efficiency.mainhand"}],
"item_model": "simplenergy:simplunium_pickaxe",
"item_name": {"text": "Simplunium Pickaxe"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_axe": {
"id": "simplunium_axe",
"base_item": "minecraft:iron_axe",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_axe","manual_priority": 0,"shape": ["XX","XS"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"axe": true}},"id": "simplenergy:simplunium_axe","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_axe": true}},
"max_damage": 750,
"attribute_modifiers": [{"type": "attack_damage","amount": 9,"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": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:mining_efficiency.mainhand"}],
"item_model": "simplenergy:simplunium_axe",
"item_name": {"text": "Simplunium Axe"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_shovel": {
"id": "simplunium_shovel",
"base_item": "minecraft:iron_shovel",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_shovel","manual_priority": 0,"shape": ["X","S","S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"shovel": true}},"id": "simplenergy:simplunium_shovel","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_shovel": true}},
"max_damage": 750,
"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": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:mining_efficiency.mainhand"}],
"item_model": "simplenergy:simplunium_shovel",
"item_name": {"text": "Simplunium Shovel"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_hoe": {
"id": "simplunium_hoe",
"base_item": "minecraft:iron_hoe",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_hoe","manual_priority": 0,"shape": ["XX"," S"," S"],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"hoe": true}},"id": "simplenergy:simplunium_hoe","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_hoe": true}},
"max_damage": 750,
"attribute_modifiers": [{"type": "attack_damage","amount": 1,"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": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:mining_efficiency.mainhand"}],
"item_model": "simplenergy:simplunium_hoe",
"item_name": {"text": "Simplunium Hoe"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"simplunium_spear": {
"id": "simplunium_spear",
"base_item": "minecraft:iron_spear",
"manual_category": "equipment",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "equipment","group": "simplunium_spear","manual_priority": 0,"shape": [" X"," S ","S "],"ingredients": {"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"S": {"item": "minecraft:stick"}}}
],
"components": {
"custom_data": {"smithed": {"dict": {"tools": {"simplunium": true,"spear": true}},"id": "simplenergy:simplunium_spear","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"simplunium_spear": true}},
"max_damage": 750,
"attribute_modifiers": [{"type": "attack_damage","amount": 3,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_damage"},{"type": "attack_speed","amount": -2.947,"operation": "add_value","slot": "mainhand","id": "minecraft:base_attack_speed"}],
"item_model": "simplenergy:simplunium_spear",
"item_name": {"text": "Simplunium Spear"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"copper_dust": {
"id": "copper_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "copper","result": {"item": "minecraft:copper_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"copper_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "copper","result": {"item": "minecraft:copper_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"copper_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "copper","ingredient": {"item": "minecraft:copper_ingot"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "copper","ingredient": {"item": "minecraft:raw_copper"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "copper","ingredient": {"item": "minecraft:copper_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "copper","ingredient": {"item": "minecraft:deepslate_copper_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"copper": true}},"id": "simplenergy:copper_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"copper_dust": true}},
"item_model": "simplenergy:copper_dust",
"item_name": {"text": "Copper Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"iron_dust": {
"id": "iron_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "iron","result": {"item": "minecraft:iron_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"iron_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "iron","result": {"item": "minecraft:iron_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"iron_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "iron","ingredient": {"item": "minecraft:iron_ingot"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "iron","ingredient": {"item": "minecraft:raw_iron"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "iron","ingredient": {"item": "minecraft:iron_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "iron","ingredient": {"item": "minecraft:deepslate_iron_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"iron": true}},"id": "simplenergy:iron_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"iron_dust": true}},
"item_model": "simplenergy:iron_dust",
"item_name": {"text": "Iron Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"gold_dust": {
"id": "gold_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "gold","result": {"item": "minecraft:gold_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"gold_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "gold","result": {"item": "minecraft:gold_ingot"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"gold_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "gold","ingredient": {"item": "minecraft:gold_ingot"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "gold","ingredient": {"item": "minecraft:raw_gold"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "gold","ingredient": {"item": "minecraft:gold_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "gold","ingredient": {"item": "minecraft:deepslate_gold_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"gold": true}},"id": "simplenergy:gold_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"gold_dust": true}},
"item_model": "simplenergy:gold_dust",
"item_name": {"text": "Gold Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"lapis_dust": {
"id": "lapis_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "lapis","result": {"item": "minecraft:lapis_lazuli"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"lapis_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "lapis","result": {"item": "minecraft:lapis_lazuli"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"lapis_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "lapis","ingredient": {"item": "minecraft:lapis_lazuli"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "lapis","ingredient": {"item": "minecraft:lapis_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "lapis","ingredient": {"item": "minecraft:deepslate_lapis_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"lapis": true}},"id": "simplenergy:lapis_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"lapis_dust": true}},
"item_model": "simplenergy:lapis_dust",
"item_name": {"text": "Lapis Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"diamond_dust": {
"id": "diamond_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "diamond","result": {"item": "minecraft:diamond"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"diamond_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "diamond","result": {"item": "minecraft:diamond"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"diamond_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "diamond","ingredient": {"item": "minecraft:diamond"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "diamond","ingredient": {"item": "minecraft:diamond_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "diamond","ingredient": {"item": "minecraft:deepslate_diamond_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"diamond": true}},"id": "simplenergy:diamond_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"diamond_dust": true}},
"item_model": "simplenergy:diamond_dust",
"item_name": {"text": "Diamond Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"emerald_dust": {
"id": "emerald_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "emerald","result": {"item": "minecraft:emerald"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"emerald_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "emerald","result": {"item": "minecraft:emerald"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"emerald_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "emerald","ingredient": {"item": "minecraft:emerald"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "emerald","ingredient": {"item": "minecraft:emerald_ore"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "emerald","ingredient": {"item": "minecraft:deepslate_emerald_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"emerald": true}},"id": "simplenergy:emerald_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"emerald_dust": true}},
"item_model": "simplenergy:emerald_dust",
"item_name": {"text": "Emerald Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"quartz_dust": {
"id": "quartz_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "quartz","result": {"item": "minecraft:quartz"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"quartz_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "quartz","result": {"item": "minecraft:quartz"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"quartz_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "quartz","ingredient": {"item": "minecraft:quartz"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "quartz","ingredient": {"item": "minecraft:nether_quartz_ore"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"quartz": true}},"id": "simplenergy:quartz_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"quartz_dust": true}},
"item_model": "simplenergy:quartz_dust",
"item_name": {"text": "Quartz Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"netherite_dust": {
"id": "netherite_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "netherite","result": {"item": "minecraft:netherite_scrap"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"netherite_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "netherite","result": {"item": "minecraft:netherite_scrap"},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"netherite_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "netherite","ingredient": {"item": "minecraft:netherite_scrap"}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "netherite","ingredient": {"item": "minecraft:ancient_debris"}}
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"netherite": true}},"id": "simplenergy:netherite_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"netherite_dust": true}},
"item_model": "simplenergy:netherite_dust",
"item_name": {"text": "Netherite Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"tin_dust": {
"id": "tin_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "tin","result": {"components": {"minecraft:custom_data": {"mechanization": {"tin_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"tin_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "tin","result": {"components": {"minecraft:custom_data": {"mechanization": {"tin_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"tin_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "tin","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"tin_ingot": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "tin","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"raw_tin": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "tin","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"tin_ore": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "tin","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"deepslate_tin_ore": true}}}}}
],
"wiki_buttons": [
[{"text": "Mechanization Integration Item","color": "yellow"},{"text": "\nRequires Mechanization datapack to be installed for recipes to function properly","color": "gray"}]
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"tin": true}},"id": "simplenergy:tin_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"tin_dust": true}},
"item_model": "simplenergy:tin_dust",
"item_name": {"text": "Tin Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"titanium_dust": {
"id": "titanium_dust",
"base_item": "minecraft:command_block",
"manual_category": "material",
"recipes": [
{"type": "smelting","result_count": 1,"category": "misc","group": "titanium","result": {"components": {"minecraft:custom_data": {"mechanization": {"titanium_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"titanium_dust": true}}}},"experience": 0.8,"cookingtime": 200},
{"type": "blasting","result_count": 1,"category": "misc","group": "titanium","result": {"components": {"minecraft:custom_data": {"mechanization": {"titanium_ingot": true}}}},"ingredient": {"components": {"minecraft:custom_data": {"simplenergy": {"titanium_dust": true}}}},"experience": 0.8,"cookingtime": 100},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "titanium","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"titanium_ingot": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "titanium","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"raw_titanium": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "titanium","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"titanium_ore": true}}}}},
{"type": "simplenergy_pulverizing","result_count": 2,"category": "misc","group": "titanium","ingredient": {"components": {"minecraft:custom_data": {"mechanization": {"deepslate_titanium_ore": true}}}}}
],
"wiki_buttons": [
[{"text": "Mechanization Integration Item","color": "yellow"},{"text": "\nRequires Mechanization datapack to be installed for recipes to function properly","color": "gray"}]
],
"components": {
"custom_data": {"smithed": {"dict": {"dust": {"titanium": true}},"id": "simplenergy:titanium_dust","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}},"simplenergy": {"titanium_dust": true}},
"item_model": "simplenergy:titanium_dust",
"item_name": {"text": "Titanium Dust"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"luxio_suno_je_taime_stoupy51": {
"id": "luxio_suno_je_taime_stoupy51",
"base_item": "minecraft:command_block",
"manual_category": "miscellaneous",
"recipes": [
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_13"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_cat"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_blocks"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_chirp"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_far"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_mall"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_mellohi"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_stal"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_strad"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_ward"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_11"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_wait"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_creator_music_box"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_creator"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_precipice"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_otherside"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_relic"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_5"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_pigstep"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_tears"}},
{"type": "simplenergy_pulverizing","result_count": 1,"category": "misc","group": "luxio_suno_je_taime_stoupy51","ingredient": {"item": "minecraft:music_disc_lava_chicken"}}
],
"components": {
"custom_data": {"simplenergy": {"luxio_suno_je_taime_stoupy51": true},"smithed": {"dict": {"record": {"luxio_suno_je_taime_stoupy51": true,"item_name": "Luxio & Suno - Je t'aime Stoupy51"},"jukebox_song": {"comparator_output": 6,"length_in_seconds": 103,"sound_event": {"sound_id": "simplenergy:luxio_suno_je_taime_stoupy51"},"description": {"text": "Luxio & Suno - Je t'aime Stoupy51"}}},"id": "simplenergy:luxio_suno_je_taime_stoupy51","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"item_name": {"text": "Music Disc","italic": false},
"jukebox_playable": "simplenergy:luxio_suno_je_taime_stoupy51",
"max_stack_size": 1,
"rarity": "rare",
"item_model": "simplenergy:luxio_suno_je_taime_stoupy51",
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]]
},
"skip_gives": false
},
"machine_block": {
"id": "machine_block",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "machine_block","shape": ["SSS","SCS","III"],"ingredients": {"S": {"item": "minecraft:stone"},"C": {"item": "minecraft:copper_block"},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "machine_block","shape": ["SSS","SIS","CCC"],"ingredients": {"S": {"item": "minecraft:stone"},"C": {"item": "minecraft:copper_block"},"I": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "Basic machine block for energy systems.","color": "yellow"},{"text": "\nUsed as a base for most machines and generators","color": "gray"}]
],
"components": {
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:machine_block","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"item_model": "simplenergy:machine_block",
"item_name": {"text": "Machine Block"},
"lore": [["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"custom_data": {"simplenergy": {"machine_block": true},"smithed": {"id": "simplenergy:machine_block","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"simple_battery": {
"id": "simple_battery",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "simple_battery","shape": ["CCC","CRC","III"],"ingredients": {"C": {"item": "minecraft:copper_block"},"R": {"item": "minecraft:redstone"},"I": {"item": "minecraft:iron_ingot"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "simple_battery","shape": ["CCC","CIC","RRR"],"ingredients": {"C": {"item": "minecraft:copper_block"},"R": {"item": "minecraft:redstone_block"},"I": {"item": "minecraft:iron_ingot"}}}
],
"wiki_buttons": [
[{"text": "Basic energy storage device.","color": "yellow"},{"text": "\nStores up to 10,000 kJ","color": "gray"},{"text": "\nModes: Input Only, Output Only, Both (use Battery Switcher)","color": "gray"},{"text": "\nBreaking the battery preserves stored energy","color": "gray"},{"text": "\nBalances energy storage with adjacent simple batteries","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"storage": 0,"max_storage": 10000},"simplenergy": {"simple_battery": true},"smithed": {"id": "simplenergy:simple_battery","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:simple_battery","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Storage: 10 MJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:simple_battery",
"item_name": {"text": "Simple Battery"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:waxed_copper_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"advanced_battery": {
"id": "advanced_battery",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "advanced_battery","shape": ["GGG","GXG","CCC"],"ingredients": {"G": {"item": "minecraft:gold_block"},"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simple_battery": true}}}},"C": {"item": "minecraft:copper_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "advanced_battery","shape": ["GGG","GXG","III"],"ingredients": {"G": {"item": "minecraft:gold_block"},"X": {"components": {"minecraft:custom_data": {"simplenergy": {"simple_battery": true}}}},"I": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "Advanced energy storage device.","color": "yellow"},{"text": "\nStores up to 25,000 kJ","color": "gray"},{"text": "\nModes: Input Only, Output Only, Both (use Battery Switcher)","color": "gray"},{"text": "\nBreaking the battery preserves stored energy","color": "gray"},{"text": "\nBalances energy storage with adjacent advanced batteries","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"storage": 0,"max_storage": 25000},"simplenergy": {"advanced_battery": true},"smithed": {"id": "simplenergy:advanced_battery","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:advanced_battery","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Storage: 25 MJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:advanced_battery",
"item_name": {"text": "Advanced Battery"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:gold_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"elite_battery": {
"id": "elite_battery",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "elite_battery","shape": ["RRR","RXR","SSS"],"ingredients": {"R": {"item": "minecraft:redstone_block"},"X": {"components": {"minecraft:custom_data": {"simplenergy": {"advanced_battery": true}}}},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "elite_battery","shape": ["RRR","SXS","III"],"ingredients": {"R": {"item": "minecraft:redstone_block"},"X": {"components": {"minecraft:custom_data": {"simplenergy": {"advanced_battery": true}}}},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}},"I": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "Elite energy storage device.","color": "yellow"},{"text": "\nStores up to 50,000 kJ","color": "gray"},{"text": "\nModes: Input Only, Output Only, Both (use Battery Switcher)","color": "gray"},{"text": "\nBreaking the battery preserves stored energy","color": "gray"},{"text": "\nBalances energy storage with adjacent elite batteries","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"storage": 0,"max_storage": 50000},"simplenergy": {"elite_battery": true},"smithed": {"id": "simplenergy:elite_battery","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:elite_battery","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Storage: 50 MJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:elite_battery",
"item_name": {"text": "Elite Battery"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"creative_battery": {
"id": "creative_battery",
"base_item": "minecraft:furnace",
"recipes": [],
"components": {
"custom_data": {"energy": {"storage": 2000000000,"max_storage": 2147483647},"simplenergy": {"creative_battery": true},"smithed": {"id": "simplenergy:creative_battery","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:creative_battery","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Storage: 2147 GJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:creative_battery",
"item_name": {"text": "Creative Battery"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"cauldron_generator": {
"id": "cauldron_generator",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "cauldron_generator","shape": ["I I","IRI","III"],"ingredients": {"I": {"item": "minecraft:iron_ingot"},"R": {"item": "minecraft:redstone"}}},
{"type": "crafting_shapeless","result_count": 1,"category": "misc","group": "cauldron_generator","ingredients": [{"item": "minecraft:cauldron"},{"item": "minecraft:redstone"},{"item": "minecraft:iron_ingot"}]}
],
"wiki_buttons": [
[{"text": "Basic water-powered generator.","color": "yellow"},{"text": "\nRequires water to operate - fill the cauldron with water","color": "gray"},{"text": "\nBalances energy storage with adjacent cauldron generators","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 5,"max_storage": 500},"simplenergy": {"cauldron_generator": true},"smithed": {"id": "simplenergy:cauldron_generator","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:cauldron_generator","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 5 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 500 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:cauldron_generator",
"item_name": {"text": "Cauldron Generator"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:cauldron",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"furnace_generator": {
"id": "furnace_generator",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "furnace_generator","shape": ["III","RMR","SSS"],"ingredients": {"I": {"item": "minecraft:iron_ingot"},"R": {"item": "minecraft:redstone"},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"S": {"item": "minecraft:stone"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "furnace_generator","shape": ["RRR","IMI","SSS"],"ingredients": {"I": {"item": "minecraft:iron_ingot"},"R": {"item": "minecraft:redstone"},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"S": {"item": "minecraft:stone"}}}
],
"wiki_buttons": [
[{"text": "Fuel-burning energy generator.","color": "yellow"},{"text": "\nConsumes any furnace fuel to generate energy","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 10,"max_storage": 800},"simplenergy": {"furnace_generator": true},"smithed": {"id": "simplenergy:furnace_generator","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:furnace_generator","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 10 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 800 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:furnace_generator",
"item_name": {"text": "Furnace Generator"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:furnace",
"contents": false,
"block_facing": "player",
"visual_facing": "player"
}
},
"redstone_generator": {
"id": "redstone_generator",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "redstone_generator","shape": ["RRR","RFR","SSS"],"ingredients": {"R": {"item": "minecraft:redstone_block"},"F": {"components": {"minecraft:custom_data": {"simplenergy": {"furnace_generator": true}}}},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "redstone_generator","shape": ["RRR","SFS","III"],"ingredients": {"R": {"item": "minecraft:redstone_block"},"F": {"components": {"minecraft:custom_data": {"simplenergy": {"furnace_generator": true}}}},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}},"I": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "High-output redstone generator.","color": "yellow"},{"text": "\nAdvanced generator powered by redstone dust and blocks","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 80,"max_storage": 6400},"simplenergy": {"redstone_generator": true},"smithed": {"id": "simplenergy:redstone_generator","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:redstone_generator","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 80 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 6400 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:redstone_generator",
"item_name": {"text": "Redstone Generator"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:furnace",
"contents": false,
"block_facing": "player",
"visual_facing": "player"
}
},
"heat_generator": {
"id": "heat_generator",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "heat_generator","shape": ["IGI","GAG","IGI"],"ingredients": {"I": {"item": "minecraft:iron_block"},"G": {"item": "minecraft:glass"},"A": {"item": "minecraft:netherite_scrap"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "heat_generator","shape": ["GIG","IAI","GIG"],"ingredients": {"I": {"item": "minecraft:iron_block"},"G": {"item": "minecraft:glass"},"A": {"item": "minecraft:netherite_scrap"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "heat_generator","shape": ["IGI","GAG","IGI"],"ingredients": {"I": {"item": "minecraft:iron_block"},"G": {"item": "minecraft:glass"},"A": {"item": "minecraft:ancient_debris"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "heat_generator","shape": ["GIG","IAI","GIG"],"ingredients": {"I": {"item": "minecraft:iron_block"},"G": {"item": "minecraft:glass"},"A": {"item": "minecraft:ancient_debris"}}}
],
"wiki_buttons": [
[{"text": "Heat-powered energy generator.","color": "yellow"},{"text": "\nMust be placed directly adjacent to lava to operate","color": "gray"},{"text": "\nBalances energy storage with adjacent heat generators","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 20,"max_storage": 1600},"simplenergy": {"heat_generator": true},"smithed": {"id": "simplenergy:heat_generator","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:heat_generator","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 20 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 1600 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:heat_generator",
"item_name": {"text": "Heat Generator"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_block",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"wind_turbine": {
"id": "wind_turbine",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "wind_turbine","shape": [" I ","ICI","BBB"],"ingredients": {"I": {"item": "minecraft:iron_ingot"},"C": {"item": "minecraft:copper_block"},"B": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "wind_turbine","shape": [" I ","III","BBB"],"ingredients": {"I": {"item": "minecraft:iron_ingot"},"B": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "Altitude-dependent wind generator.","color": "yellow"},{"text": "\nHigher altitude increases energy generation","color": "gray"},{"text": "\n(0 kW at y=50, 2 kW at y=60, ..., 20 kW at y=150)","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 20,"max_storage": 800},"simplenergy": {"wind_turbine": true},"smithed": {"id": "simplenergy:wind_turbine","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:wind_turbine","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 20 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 800 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:wind_turbine",
"item_name": {"text": "Wind Turbine"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:iron_trapdoor",
"contents": false,
"block_facing": "player",
"visual_facing": "player"
}
},
"solar_panel": {
"id": "solar_panel",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "solar_panel","shape": ["LLL","LDL","III"],"ingredients": {"L": {"item": "minecraft:lapis_lazuli"},"D": {"item": "minecraft:daylight_detector"},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "solar_panel","shape": ["LLL","GDG","III"],"ingredients": {"L": {"item": "minecraft:lapis_lazuli"},"G": {"item": "minecraft:glass"},"D": {"item": "minecraft:daylight_detector"},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "solar_panel","shape": ["LLL","LDL","III"],"ingredients": {"L": {"item": "minecraft:blue_stained_glass"},"D": {"item": "minecraft:daylight_detector"},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "solar_panel","shape": ["LLL","LDL","III"],"ingredients": {"L": {"item": "minecraft:blue_stained_glass_pane"},"D": {"item": "minecraft:daylight_detector"},"I": {"item": "minecraft:iron_block"}}}
],
"wiki_buttons": [
[{"text": "Daylight-powered generator.","color": "yellow"},{"text": "\nRequires direct sunlight to operate","color": "gray"},{"text": "\nBalances energy storage with adjacent solar panels","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"generation": 4,"max_storage": 600},"simplenergy": {"solar_panel": true},"smithed": {"id": "simplenergy:solar_panel","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:solar_panel","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Energy Generation: 4 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 600 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:solar_panel",
"item_name": {"text": "Solar Panel"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:daylight_detector",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"electric_furnace": {
"id": "electric_furnace",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "electric_furnace","shape": ["LLL","LML","III"],"ingredients": {"L": {"item": "minecraft:lapis_lazuli"},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "electric_furnace","shape": ["LLL","LML","CCC"],"ingredients": {"L": {"item": "minecraft:lapis_lazuli"},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"C": {"item": "minecraft:copper_block"}}}
],
"wiki_buttons": [
[{"text": "Electric-powered smelting machine.","color": "yellow"},{"text": "\nSmelts items using electricity instead of fuel (1.5x faster)","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"usage": 20,"max_storage": 1600},"simplenergy": {"electric_furnace": true},"smithed": {"id": "simplenergy:electric_furnace","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:electric_furnace","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Power Usage: 20 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 1600 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:electric_furnace",
"item_name": {"text": "Electric Furnace"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:furnace",
"contents": false,
"block_facing": "player",
"visual_facing": "player"
}
},
"electric_smelter": {
"id": "electric_smelter",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "electric_smelter","shape": ["SSS","SFS","BBB"],"ingredients": {"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"F": {"components": {"minecraft:custom_data": {"simplenergy": {"electric_furnace": true}}}},"B": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_block": true}}}}}}
],
"wiki_buttons": [
[{"text": "Advanced electric smelting station.","color": "yellow"},{"text": "\nFaster and more efficient than electric furnace (8x faster)","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"usage": 100,"max_storage": 8000},"simplenergy": {"electric_smelter": true},"smithed": {"id": "simplenergy:electric_smelter","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:electric_smelter","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Power Usage: 100 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 8000 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:electric_smelter",
"item_name": {"text": "Electric Smelter"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:furnace",
"contents": false,
"block_facing": "player",
"visual_facing": "player"
}
},
"electric_brewing_stand": {
"id": "electric_brewing_stand",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "electric_brewing_stand","shape": ["SSS","SBS","LLL"],"ingredients": {"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"B": {"item": "minecraft:brewing_stand"},"L": {"item": "minecraft:lapis_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "electric_brewing_stand","shape": ["SSS","DBD","LLL"],"ingredients": {"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"B": {"item": "minecraft:brewing_stand"},"L": {"item": "minecraft:lapis_block"},"D": {"item": "minecraft:diamond"}}}
],
"wiki_buttons": [
[{"text": "Electric-powered brewing station.","color": "yellow"},{"text": "\nBrews potions using electricity (8x faster)","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"usage": 40,"max_storage": 2400},"simplenergy": {"electric_brewing_stand": true},"smithed": {"id": "simplenergy:electric_brewing_stand","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:electric_brewing_stand","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Power Usage: 40 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 2400 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:electric_brewing_stand",
"item_name": {"text": "Electric Brewing Stand"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:brewing_stand",
"contents": false,
"block_facing": false,
"visual_facing": "none"
}
},
"pulverizer": {
"id": "pulverizer",
"base_item": "minecraft:furnace",
"manual_category": "energy",
"recipes": [
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "pulverizer","shape": ["DDD","SMS","III"],"ingredients": {"D": {"item": "minecraft:diamond"},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"I": {"item": "minecraft:iron_block"}}},
{"type": "crafting_shaped","result_count": 1,"category": "misc","group": "pulverizer","shape": ["DDD","SMS","CCC"],"ingredients": {"D": {"item": "minecraft:diamond"},"S": {"components": {"minecraft:custom_data": {"simplenergy": {"simplunium_ingot": true}}}},"M": {"components": {"minecraft:custom_data": {"simplenergy": {"machine_block": true}}}},"C": {"item": "minecraft:copper_block"}}}
],
"wiki_buttons": [
[{"text": "Ore processing and grinding machine.","color": "yellow"},{"text": "\nGrinds ores into dusts for increased yields","color": "gray"}]
],
"components": {
"custom_data": {"energy": {"usage": 120,"max_storage": 6400},"simplenergy": {"pulverizer": true},"smithed": {"id": "simplenergy:pulverizer","origin": "simplenergy","ignore": {"functionality": true,"crafting": true}}},
"container": [{"slot": 0,"item": {"id": "minecraft:stone","count": 1,"components": {"minecraft:custom_data": {"smithed": {"block": {"id": "simplenergy:pulverizer","from": "simplenergy"}}}}}}],
"tooltip_display": {"hidden_components": ["minecraft:container"]},
"lore": [{"text": "[Power Usage: 120 kW]","italic": false,"color": "gray"},{"text": "[Energy Buffer: 6400 kJ]","italic": false,"color": "gray"},["",{"text": "I","color": "white","italic": false,"font": "simplenergy:icons"},{"text": " SimplEnergy","italic": true,"color": "blue"}]],
"item_model": "simplenergy:pulverizer",
"item_name": {"text": "Pulverizer"}
},
"skip_gives": false,
"vanilla_block": {
"id": "minecraft:barrel",
"contents": false,
"block_facing": "player",
"visual_facing": "player"