-
Notifications
You must be signed in to change notification settings - Fork 2
/
debug_manual.json
1228 lines (1228 loc) · 250 KB
/
debug_manual.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
[
[
"",
{"text": "SimplEnergy Manual\n","underlined": true},
{"text": "\\u0021\\u0021\\u1020\n\n\n\n\n\n","font": "simplenergy:manual","color": "white"},
{"text": "The following manual will guide you through recipes and energy statistics about devices.","color": "#505050"}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Heavy Workbench\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u823b\\u0024\\u823b\\u0024\\u823b\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
"\\u0022",
{"text": "\\u0024\\u823b","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
{"text": "\\u0024\\u823c","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:crafting_table"}}},
{"text": "\\u0024\\u823b","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u823a\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"item_name": "'Heavy Workbench'"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:crafting_table"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:oak_log"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"item_name": "'Heavy Workbench'"}}}},
"\\u0022",
{"text": "\\u0024\\u823d\\u0024\\u823d\\u0024\\u823d\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:smooth_stone"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:smooth_stone"}}},
[{"text": "\nEvery recipe that uses custom items ","font": "minecraft:default","color": "black"},{"text": "must","color": "red","underlined": true}," be crafted using the Heavy Workbench."]
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "➤ ","font": "minecraft:default","color": "black"},
{"text": "Category browser\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u1021\n\\u0022",
{"text": "\\u0024\\u8021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Material', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "4"}},
{"text": "\\u0024\\u8045","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"custom_model_data": 2012008,"item_name": "{'text': 'Equipment', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "5"}},
{"text": "\\u0024\\u8057","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012017,"item_name": "{'text': 'Miscellaneous', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "6"}},
{"text": "\\u0024\\u805f\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012019,"item_name": "{'text': 'Energy', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "7"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Material', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "4"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"custom_model_data": 2012008,"item_name": "{'text': 'Equipment', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "5"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012017,"item_name": "{'text': 'Miscellaneous', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "6"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012019,"item_name": "{'text': 'Energy', 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "7"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "➤ ","font": "minecraft:default","color": "black"},
{"text": "Material\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u1023\n\\u0022",
{"text": "\\u0024\\u8021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "8"}},
{"text": "\\u0024\\u8023","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012001,"item_name": "{'text': 'Simplunium Ore', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "9"}},
{"text": "\\u0024\\u8025","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012002,"item_name": "{'text': 'Deepslate Simplunium Ore', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "10"}},
{"text": "\\u0024\\u8027","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "11"}},
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "8"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012001,"item_name": "{'text': 'Simplunium Ore', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "9"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012002,"item_name": "{'text': 'Deepslate Simplunium Ore', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "10"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "11"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u802b","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012005,"item_name": "{'text': 'Simplunium Nugget', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0024\\u802d","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "14"}},
{"text": "\\u0024\\u802f","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012007,"item_name": "{'text': 'Simplunium Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "15"}},
{"text": "\\u0024\\u8031","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012033,"item_name": "{'text': 'Copper Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "16"}},
{"text": "\\u0024\\u8033\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012034,"item_name": "{'text': 'Iron Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "17"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012005,"item_name": "{'text': 'Simplunium Nugget', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "14"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012007,"item_name": "{'text': 'Simplunium Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "15"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012033,"item_name": "{'text': 'Copper Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "16"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012034,"item_name": "{'text': 'Iron Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "17"}},
"\\u0022",
{"text": "\\u0024\\u8035","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012035,"item_name": "{'text': 'Gold Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "18"}},
{"text": "\\u0024\\u8037","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012036,"item_name": "{'text': 'Lapis Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "19"}},
{"text": "\\u0024\\u8039","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012037,"item_name": "{'text': 'Diamond Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "20"}},
{"text": "\\u0024\\u803b","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012038,"item_name": "{'text': 'Emerald Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "21"}},
{"text": "\\u0024\\u803d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012039,"item_name": "{'text': 'Quartz Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "22"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012035,"item_name": "{'text': 'Gold Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "18"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012036,"item_name": "{'text': 'Lapis Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "19"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012037,"item_name": "{'text': 'Diamond Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "20"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012038,"item_name": "{'text': 'Emerald Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "21"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012039,"item_name": "{'text': 'Quartz Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "22"}},
"\\u0022",
{"text": "\\u0024\\u803f","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012040,"item_name": "{'text': 'Netherite Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "23"}},
{"text": "\\u0024\\u8041","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012041,"item_name": "{'text': 'Tin Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "24"}},
{"text": "\\u0024\\u8043\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012042,"item_name": "{'text': 'Titanium Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "25"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012040,"item_name": "{'text': 'Netherite Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "23"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012041,"item_name": "{'text': 'Tin Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "24"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012042,"item_name": "{'text': 'Titanium Dust', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "25"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "➤ ","font": "minecraft:default","color": "black"},
{"text": "Equipment\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u1024\n\\u0022",
{"text": "\\u0024\\u8045","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"custom_model_data": 2012008,"item_name": "{'text': 'Simplunium Helmet', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "26"}},
{"text": "\\u0024\\u8047","hoverEvent": {"action": "show_item","contents": {"id": "leather_chestplate","components": {"custom_model_data": 2012009,"item_name": "{'text': 'Simplunium Chestplate', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "27"}},
{"text": "\\u0024\\u8049","hoverEvent": {"action": "show_item","contents": {"id": "leather_leggings","components": {"custom_model_data": 2012010,"item_name": "{'text': 'Simplunium Leggings', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "28"}},
{"text": "\\u0024\\u804b","hoverEvent": {"action": "show_item","contents": {"id": "leather_boots","components": {"custom_model_data": 2012011,"item_name": "{'text': 'Simplunium Boots', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "29"}},
{"text": "\\u0024\\u804d\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_sword","components": {"custom_model_data": 2012012,"item_name": "{'text': 'Simplunium Sword', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "30"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"custom_model_data": 2012008,"item_name": "{'text': 'Simplunium Helmet', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "26"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "leather_chestplate","components": {"custom_model_data": 2012009,"item_name": "{'text': 'Simplunium Chestplate', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "27"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "leather_leggings","components": {"custom_model_data": 2012010,"item_name": "{'text': 'Simplunium Leggings', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "28"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "leather_boots","components": {"custom_model_data": 2012011,"item_name": "{'text': 'Simplunium Boots', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "29"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_sword","components": {"custom_model_data": 2012012,"item_name": "{'text': 'Simplunium Sword', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "30"}},
"\\u0022",
{"text": "\\u0024\\u804f","hoverEvent": {"action": "show_item","contents": {"id": "iron_pickaxe","components": {"custom_model_data": 2012013,"item_name": "{'text': 'Simplunium Pickaxe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "31"}},
{"text": "\\u0024\\u8051","hoverEvent": {"action": "show_item","contents": {"id": "iron_axe","components": {"custom_model_data": 2012014,"item_name": "{'text': 'Simplunium Axe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "32"}},
{"text": "\\u0024\\u8053","hoverEvent": {"action": "show_item","contents": {"id": "iron_shovel","components": {"custom_model_data": 2012015,"item_name": "{'text': 'Simplunium Shovel', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "33"}},
{"text": "\\u0024\\u8055\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_hoe","components": {"custom_model_data": 2012016,"item_name": "{'text': 'Simplunium Hoe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "34"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "iron_pickaxe","components": {"custom_model_data": 2012013,"item_name": "{'text': 'Simplunium Pickaxe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "31"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "iron_axe","components": {"custom_model_data": 2012014,"item_name": "{'text': 'Simplunium Axe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "32"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "iron_shovel","components": {"custom_model_data": 2012015,"item_name": "{'text': 'Simplunium Shovel', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "33"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_hoe","components": {"custom_model_data": 2012016,"item_name": "{'text': 'Simplunium Hoe', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "34"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "➤ ","font": "minecraft:default","color": "black"},
{"text": "Miscellaneous\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u1025\n\\u0022",
{"text": "\\u0024\\u8057","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012017,"item_name": "{'text': 'Multimeter', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "35"}},
{"text": "\\u0024\\u8059","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012018,"item_name": "{'text': 'Wrench', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "36"}},
{"text": "\\u0024\\u805b","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012045,"item_name": "{'text': 'Slot Unlocker', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "37"}},
{"text": "\\u0024\\u805d\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012046,"item_name": "{'text': 'Battery Switcher', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "38"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012017,"item_name": "{'text': 'Multimeter', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "35"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012018,"item_name": "{'text': 'Wrench', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "36"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012045,"item_name": "{'text': 'Slot Unlocker', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "37"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"custom_model_data": 2012046,"item_name": "{'text': 'Battery Switcher', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "38"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "➤ ","font": "minecraft:default","color": "black"},
{"text": "Energy\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u1026\n\\u0022",
{"text": "\\u0024\\u805f","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "39"}},
{"text": "\\u0024\\u8061","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u0024\\u8063","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012021,"item_name": "{'text': 'Elite Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "41"}},
{"text": "\\u0024\\u8065","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012032,"item_name": "{'text': 'Cauldron Generator', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "42"}},
{"text": "\\u0024\\u8067\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012023,"item_name": "{'text': 'Furnace Generator', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "43"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "39"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012021,"item_name": "{'text': 'Elite Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "41"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012032,"item_name": "{'text': 'Cauldron Generator', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "42"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012023,"item_name": "{'text': 'Furnace Generator', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "43"}},
"\\u0022",
{"text": "\\u0024\\u8069","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012025,"item_name": "{'text': 'Solar Panel', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "44"}},
{"text": "\\u0024\\u806b","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012026,"item_name": "{'text': 'Electric Furnace', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "45"}},
{"text": "\\u0024\\u806d","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012028,"item_name": "{'text': 'Electric Smelter', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "46"}},
{"text": "\\u0024\\u806f","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012030,"item_name": "{'text': 'Electric Brewing Stand', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "47"}},
{"text": "\\u0024\\u8071\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012043,"item_name": "{'text': 'Pulverizer', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "48"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012025,"item_name": "{'text': 'Solar Panel', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "44"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012026,"item_name": "{'text': 'Electric Furnace', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "45"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012028,"item_name": "{'text': 'Electric Smelter', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "46"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012030,"item_name": "{'text': 'Electric Brewing Stand', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "47"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012043,"item_name": "{'text': 'Pulverizer', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "48"}},
"\\u0022",
{"text": "\\u0024\\u8073","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Simple Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "49"}},
{"text": "\\u0024\\u8075","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Advanced Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "50"}},
{"text": "\\u0024\\u8077\n","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Elite Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "51"}},
"\\u0022",
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Simple Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "49"}},
{"text": "\\u0021","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Advanced Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "50"}},
{"text": "\\u0021\n","hoverEvent": {"action": "show_item","contents": {"id": "player_head","components": {"item_name": "{'text': 'Elite Cable', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "51"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Block\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u807f\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u807d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u8084\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "41"}},
{"text": "\\u8089\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "46"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u807d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "41"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "46"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Ore\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8023\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012001,"item_name": "{'text': 'Simplunium Ore', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "9"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012001,"item_name": "{'text': 'Simplunium Ore', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "9"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u808e\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8023\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Ore","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8023\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Ore","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Deepslate Simplunium Ore\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8025\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012002,"item_name": "{'text': 'Deepslate Simplunium Ore', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "10"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012002,"item_name": "{'text': 'Deepslate Simplunium Ore', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "10"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u8093\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8025\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Deepslate Simplunium Ore","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8025\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Deepslate Simplunium Ore","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Raw Simplunium Block\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8027\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\\u0022\\u0022\\u0024\\u0024\\u8027\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Raw Simplunium","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\\u0022\\u0022\\u0024\\u0024\\u8027\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Raw Simplunium","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Ingot\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u0029\n\\u0022",
{"text": "\\u0024\\u8021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "8"}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "8"}},
"\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u807d","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u807d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Block","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\\u0022\\u0022\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Nugget","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Raw Simplunium","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8023\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Ore","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u807d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Block","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\\u0022\\u0022\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Nugget","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Raw Simplunium","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8023\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Ore","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8025\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Deepslate Simplunium Ore","color": "gray"}]}},
{"text": "\\u80a8\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "8"}},
{"text": "\\u80ab\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80a9\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u80ae\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8045\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x5 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "26"}},
{"text": "\\u80b1\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8047\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x8 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "27"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8025\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Deepslate Simplunium Ore","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "8"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80a9\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8045\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x5 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "26"}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8047\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x8 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "27"}},
{"text": "\\u80b4\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8049\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "28"}},
{"text": "\\u80b7\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u804b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "29"}},
{"text": "\\u80bb\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x1 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "30"}},
{"text": "\\u80bf\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "31"}},
{"text": "\\u80c3\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8051\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "32"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8049\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "28"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u804b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "29"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x1 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "30"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "31"}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8051\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "32"}},
{"text": "\\u80c7\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8053\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x1 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "33"}},
{"text": "\\u80cb\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8055\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "34"}},
{"text": "\\u80ce\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8059\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "36"}},
{"text": "\\u80d3\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u80d0\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u80d2\\u0022\\u0022\\u0024\\u0024\\u805d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x1 Redstone\n- x3 Simplunium Ingot\n- x1 Stone Button","color": "gray"}]},"clickEvent": {"action": "change_page","value": "38"}},
{"text": "\\u80d8\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8053\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x1 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "33"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8055\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x2 Stick","color": "gray"}]},"clickEvent": {"action": "change_page","value": "34"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8059\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "36"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u80d0\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u80d2\\u0022\\u0022\\u0024\\u0024\\u805d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x1 Redstone\n- x3 Simplunium Ingot\n- x1 Stone Button","color": "gray"}]},"clickEvent": {"action": "change_page","value": "38"}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u80dd\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "46"}},
{"text": "\\u80e2\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80e0\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80e1\\u0024\\u80e1\\u0024\\u80e1\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Brewing Stand\n- x3 Lapis Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "47"}},
{"text": "\\u80e8\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80e4\\u0024\\u80e4\\u0024\\u80e4\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8071\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80e7\\u0024\\u80e7\\u0024\\u80e7\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Diamond\n- x2 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Copper Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "48"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "46"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80e0\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u806f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80e1\\u0024\\u80e1\\u0024\\u80e1\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Simplunium Ingot\n- x1 Brewing Stand\n- x3 Lapis Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "47"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80e4\\u0024\\u80e4\\u0024\\u80e4\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u806b\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8071\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80e7\\u0024\\u80e7\\u0024\\u80e7\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Diamond\n- x2 Simplunium Ingot\n- x1 Electric Furnace\n- x3 Copper Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "48"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Nugget\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u0029\n\\u0022",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u80a9","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012005,"item_name": "{'text': 'Simplunium Nugget', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012005,"item_name": "{'text': 'Simplunium Nugget', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80a9\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8045\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Helmet","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8047\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Chestplate","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8049\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Leggings","color": "gray"}]}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Boots","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002c\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80a9\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n"],{"text": "\n- x1 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8045\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Helmet","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8047\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Chestplate","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8049\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Leggings","color": "gray"}]}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Boots","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Sword","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Pickaxe","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8051\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Axe","color": "gray"}]}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8053\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Shovel","color": "gray"}]}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8055\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Hoe","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Sword","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Pickaxe","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8051\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Axe","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8053\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Shovel","color": "gray"}]}},
{"text": "\\u0025\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8055\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Hoe","color": "gray"}]}},
{"text": "\\u8101\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\\u0022\\u0022\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802b\\u0024\\u802b\\u0024\\u802b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Simplunium Nugget","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Raw Simplunium\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8027\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012003,"item_name": "{'text': 'Raw Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012006,"item_name": "{'text': 'Raw Simplunium', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "14"}},
{"text": "\\u8106\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\\u0022\\u0022\\u0024\\u0024\\u8027\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Raw Simplunium","color": "gray"}]},"clickEvent": {"action": "change_page","value": "11"}},
{"text": "\\u8109\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Raw Simplunium","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\\u0022\\u0022\\u0024\\u0024\\u8027\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u802d\\u0024\\u802d\\u0024\\u802d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x9 Raw Simplunium","color": "gray"}]},"clickEvent": {"action": "change_page","value": "11"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Raw Simplunium","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u802f\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012007,"item_name": "{'text': 'Simplunium Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "15"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012007,"item_name": "{'text': 'Simplunium Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "15"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u810e\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u8111\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u802f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8029\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Dust","color": "gray"}]},"clickEvent": {"action": "change_page","value": "12"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Copper Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8031\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012033,"item_name": "{'text': 'Copper Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "16"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012033,"item_name": "{'text': 'Copper Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "16"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8112\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
{"text": "\\u8116\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8031\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8112\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Copper Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8031\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8112\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Copper Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Iron Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8033\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012034,"item_name": "{'text': 'Iron Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "17"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012034,"item_name": "{'text': 'Iron Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "17"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8117\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
{"text": "\\u811b\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8033\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8117\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Iron Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8033\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8117\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Iron Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Gold Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8035\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012035,"item_name": "{'text': 'Gold Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "18"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012035,"item_name": "{'text': 'Gold Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "18"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u811c\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_ingot"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_ingot"}}},
{"text": "\\u8120\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8035\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u811c\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Gold Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8035\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u811c\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Gold Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Lapis Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8037\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012036,"item_name": "{'text': 'Lapis Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "19"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012036,"item_name": "{'text': 'Lapis Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "19"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8121\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:lapis_lazuli"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:lapis_lazuli"}}},
{"text": "\\u8125\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8037\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8121\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Lapis Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8037\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8121\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Lapis Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Diamond Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8039\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012037,"item_name": "{'text': 'Diamond Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "20"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012037,"item_name": "{'text': 'Diamond Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "20"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u80e4\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:diamond"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:diamond"}}},
{"text": "\\u812a\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8039\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80e4\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Diamond Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8039\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u80e4\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Diamond Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Emerald Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u803b\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012038,"item_name": "{'text': 'Emerald Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "21"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012038,"item_name": "{'text': 'Emerald Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "21"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u812b\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:emerald"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:emerald"}}},
{"text": "\\u812f\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u812b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Emerald Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u812b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Emerald Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Quartz Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u803d\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012039,"item_name": "{'text': 'Quartz Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "22"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012039,"item_name": "{'text': 'Quartz Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "22"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8130\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
{"text": "\\u8134\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8130\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Quartz Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8130\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Quartz Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Netherite Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u803f\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012040,"item_name": "{'text': 'Netherite Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "23"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012040,"item_name": "{'text': 'Netherite Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "23"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u8135\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:netherite_scrap"}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:netherite_scrap"}}},
{"text": "\\u8139\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8135\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Netherite Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u803f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u8135\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Netherite Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Tin Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8041\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012041,"item_name": "{'text': 'Tin Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "24"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012041,"item_name": "{'text': 'Tin Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "24"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u813a\n","hoverEvent": {"action": "show_item","contents": {"id": "structure_block","components": {"item_name": "{'text': 'Tin Ingot', 'italic': false, 'color': 'white'}","lore": ["[{'text': 'Mechanization', 'italic': true, 'color': 'blue'}]"]}}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "structure_block","components": {"item_name": "{'text': 'Tin Ingot', 'italic': false, 'color': 'white'}","lore": ["[{'text': 'Mechanization', 'italic': true, 'color': 'blue'}]"]}}}},
{"text": "\\u813e\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8041\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u813a\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Tin Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8041\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u813a\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Tin Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Titanium Dust\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002b\n\\u0022",
{"text": "\\u0024\\u8043\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012042,"item_name": "{'text': 'Titanium Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "25"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012042,"item_name": "{'text': 'Titanium Dust', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "25"}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u0024\\u0024\\u813f\n","hoverEvent": {"action": "show_item","contents": {"id": "structure_block","components": {"item_name": "{'text': 'Titanium Ingot', 'italic': false, 'color': 'white'}","lore": ["[{'text': 'Mechanization', 'italic': true, 'color': 'blue'}]"]}}}},
"\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "structure_block","components": {"item_name": "{'text': 'Titanium Ingot', 'italic': false, 'color': 'white'}","lore": ["[{'text': 'Mechanization', 'italic': true, 'color': 'blue'}]"]}}}},
{"text": "\\u8143\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8043\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u813f\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Titanium Dust","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8043\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u813f\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Titanium Dust","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Helmet\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8045\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"max_damage": 495,"attribute_modifiers": [{"type": "generic.armor","amount": 2.5,"operation": "add_value","slot": "head","id": "simplenergy:generic.armor.head"}],"custom_model_data": 2012008,"item_name": "{'text': 'Simplunium Helmet', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_helmet","components": {"max_damage": 495,"attribute_modifiers": [{"type": "generic.armor","amount": 2.5,"operation": "add_value","slot": "head","id": "simplenergy:generic.armor.head"}],"custom_model_data": 2012008,"item_name": "{'text': 'Simplunium Helmet', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8045\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x5 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u814a\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8045\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Helmet","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8045\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x5 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8045\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Helmet","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Chestplate\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8047\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_chestplate","components": {"max_damage": 720,"attribute_modifiers": [{"type": "generic.armor","amount": 6.5,"operation": "add_value","slot": "chest","id": "simplenergy:generic.armor.chest"}],"custom_model_data": 2012009,"item_name": "{'text': 'Simplunium Chestplate', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_chestplate","components": {"max_damage": 720,"attribute_modifiers": [{"type": "generic.armor","amount": 6.5,"operation": "add_value","slot": "chest","id": "simplenergy:generic.armor.chest"}],"custom_model_data": 2012009,"item_name": "{'text': 'Simplunium Chestplate', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8047\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x8 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u8151\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8047\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Chestplate","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8047\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x8 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8047\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Chestplate","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Leggings\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8049\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_leggings","components": {"max_damage": 675,"attribute_modifiers": [{"type": "generic.armor","amount": 5.5,"operation": "add_value","slot": "legs","id": "simplenergy:generic.armor.legs"}],"custom_model_data": 2012010,"item_name": "{'text': 'Simplunium Leggings', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_leggings","components": {"max_damage": 675,"attribute_modifiers": [{"type": "generic.armor","amount": 5.5,"operation": "add_value","slot": "legs","id": "simplenergy:generic.armor.legs"}],"custom_model_data": 2012010,"item_name": "{'text': 'Simplunium Leggings', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8049\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u8158\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8049\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Leggings","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8049\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8049\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Leggings","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Boots\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u804b\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_boots","components": {"max_damage": 585,"attribute_modifiers": [{"type": "generic.armor","amount": 2.5,"operation": "add_value","slot": "feet","id": "simplenergy:generic.armor.feet"}],"custom_model_data": 2012011,"item_name": "{'text': 'Simplunium Boots', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n\n\n\n","hoverEvent": {"action": "show_item","contents": {"id": "leather_boots","components": {"max_damage": 585,"attribute_modifiers": [{"type": "generic.armor","amount": 2.5,"operation": "add_value","slot": "feet","id": "simplenergy:generic.armor.feet"}],"custom_model_data": 2012011,"item_name": "{'text': 'Simplunium Boots', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u804b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u815f\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Boots","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u804b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\n\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804b\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Boots","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Sword\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u804d\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_sword","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 7,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -2.5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012012,"item_name": "{'text': 'Simplunium Sword', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_sword","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 7,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -2.5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012012,"item_name": "{'text': 'Simplunium Sword', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u80ba\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u0022",
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x1 Stick","color": "gray"}]}},
{"text": "\\u8168\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Sword","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x1 Stick","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804d\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Sword","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Pickaxe\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80ba","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u804f\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_pickaxe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -2.75,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012013,"item_name": "{'text': 'Simplunium Pickaxe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_pickaxe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -2.75,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012013,"item_name": "{'text': 'Simplunium Pickaxe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80ba","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\n\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\n\n",
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u8171\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Pickaxe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u804f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u804f\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Pickaxe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Axe\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0024\\u80ba","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8051\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_axe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 10,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -3.1,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012014,"item_name": "{'text': 'Simplunium Axe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_axe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 10,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -3.1,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012014,"item_name": "{'text': 'Simplunium Axe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80ba\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8051\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u817a\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8051\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Axe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8051\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x3 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8051\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Axe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Shovel\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u0024\\u80ba","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8053\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_shovel","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 5.5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -3.1,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012015,"item_name": "{'text': 'Simplunium Shovel', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_shovel","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 5.5,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -3.1,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012015,"item_name": "{'text': 'Simplunium Shovel', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022",
{"text": "\\u0024\\u80ba\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u0022",
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8053\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x1 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u8183\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8053\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Shovel","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\n\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8053\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u80ba\n\\u0022\\u002f\\u0024\n"],{"text": "\n- x1 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8053\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Shovel","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simplunium Hoe\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80ba","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8055\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_hoe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -1.0,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012016,"item_name": "{'text': 'Simplunium Hoe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "iron_hoe","components": {"max_damage": 750,"attribute_modifiers": [{"type": "generic.attack_damage","amount": 2,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_damage.mainhand"},{"type": "generic.attack_speed","amount": -1.0,"operation": "add_value","slot": "mainhand","id": "simplenergy:generic.attack_speed.mainhand"},{"type": "player.mining_efficiency","amount": 0.2,"operation": "add_value","slot": "mainhand","id": "simplenergy:player.mining_efficiency.mainhand"}],"custom_model_data": 2012016,"item_name": "{'text': 'Simplunium Hoe', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80ba\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stick"}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8055\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u818c\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8055\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Hoe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8055\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u80ba\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Simplunium Ingot\n- x2 Stick","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002e\n\\u0022\\u0024\\u8055\n\\u0022\\u002f\\u0024\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u0024\\u0024\\u802b\n\\u0022\\u0022\\u0022\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n\n"],{"text": "\n- x1 Simplunium Hoe","color": "gray"}]},"clickEvent": {"action": "change_page","value": "13"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Multimeter\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8117\\u0024\\u8117\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u0024\\u8112\\u0024\\u8112","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8057\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Allows you to analyse machines\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"to get their energy information\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Hold in offhand for passive use]\",\"italic\":false,\"color\":\"white\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012017,"item_name": "{'text': 'Multimeter', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
"\\u002f\\u0024\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Allows you to analyse machines\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"to get their energy information\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Hold in offhand for passive use]\",\"italic\":false,\"color\":\"white\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012017,"item_name": "{'text': 'Multimeter', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8112\\u0024\\u8112\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_ingot"}}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8112\\u0024\\u8112\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8057\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8112\\u0024\\u8112\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Iron Ingot\n- x4 Copper Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8112\\u0024\\u8112\\u002f\\u0024\\u0022\\u0022\\u0024\\u0024\\u8057\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8112\\u0024\\u8112\n\\u0022\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Iron Ingot\n- x4 Copper Ingot","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Wrench\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\n\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\n\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u8029\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8059\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Provides you the ability to instantly\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"break cables and rotates machines while sneaking\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012018,"item_name": "{'text': 'Wrench', 'italic': false, 'color': 'white'}"}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Provides you the ability to instantly\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"break cables and rotates machines while sneaking\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012018,"item_name": "{'text': 'Wrench', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\n\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\n\n",
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8059\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u8029\\u0022\\u0022\\u0024\\u0024\\u8059\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x4 Simplunium Ingot","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Slot Unlocker\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8130","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
{"text": "\\u0024\\u8199","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:breeze_rod"}}},
{"text": "\\u0024\\u8130\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:breeze_rod"}}},
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:quartz"}}},
"\\u0022",
{"text": "\\u0024\\u819a","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
{"text": "\\u0024\\u819b","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:raw_gold_block"}}},
{"text": "\\u0024\\u819a","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u805b\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"lore": ["{\"text\":\"Unlocks a blocked slot in a machine\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012045,"item_name": "{'text': 'Slot Unlocker', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:raw_gold_block"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"lore": ["{\"text\":\"Unlocks a blocked slot in a machine\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012045,"item_name": "{'text': 'Slot Unlocker', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u819a","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
{"text": "\\u0024\\u819c","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_block"}}},
{"text": "\\u0024\\u819a\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_block"}}},
{"text": "\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_nugget"}}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8130\\u0024\\u8199\\u0024\\u8130\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u819a\\u0024\\u819b\\u0024\\u819a\\u0022\\u0022\\u0024\\u0024\\u805b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u819a\\u0024\\u819c\\u0024\\u819a\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Quartz\n- x1 Breeze Rod\n- x4 Gold Nugget\n- x1 Raw Gold Block\n- x1 Iron Block","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8130\\u0024\\u8199\\u0024\\u8130\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u819a\\u0024\\u819b\\u0024\\u819a\\u0022\\u0022\\u0024\\u0024\\u805b\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u819a\\u0024\\u819c\\u0024\\u819a\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x2 Quartz\n- x1 Breeze Rod\n- x4 Gold Nugget\n- x1 Raw Gold Block\n- x1 Iron Block","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Battery Switcher\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u80d0","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022\\u002f\\u0024",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0024\\u80d2","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stone_button"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u805d\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Allows you to switch batteries states\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Input / Output / Both]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Hold in offhand for passive use]\",\"italic\":false,\"color\":\"white\"}","{\"text\":\"[Right click on a battery to switch]\",\"italic\":false,\"color\":\"white\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012046,"item_name": "{'text': 'Battery Switcher', 'italic': false, 'color': 'white'}"}}}},
"\\u0022\\u002f\\u0024",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stone_button"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "warped_fungus_on_a_stick","components": {"unbreakable": {"show_in_tooltip": false},"lore": ["{\"text\":\"Allows you to switch batteries states\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Input / Output / Both]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Hold in offhand for passive use]\",\"italic\":false,\"color\":\"white\"}","{\"text\":\"[Right click on a battery to switch]\",\"italic\":false,\"color\":\"white\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012046,"item_name": "{'text': 'Battery Switcher', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8029","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\n\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u002f\\u0024\\u002f\\u0024\n\n",
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u80d0\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u80d2\\u0022\\u0022\\u0024\\u0024\\u805d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x1 Redstone\n- x3 Simplunium Ingot\n- x1 Stone Button","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u002f\\u0024\\u0024\\u80d0\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u0024\\u8029\\u0024\\u80d2\\u0022\\u0022\\u0024\\u0024\\u805d\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x1 Redstone\n- x3 Simplunium Ingot\n- x1 Stone Button","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Simple Battery\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u80e7\\u0024\\u80e7\\u0024\\u80e7\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
"\\u0022",
{"text": "\\u0024\\u80e7","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
{"text": "\\u0024\\u80d0","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u0024\\u80e7","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u805f\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 10 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:copper_block"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 10 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80e7\\u0024\\u80e7\\u0024\\u80e7\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80e7\\u0024\\u80d0\\u0024\\u80e7\\u0022\\u0022\\u0024\\u0024\\u805f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Copper Block\n- x1 Redstone\n- x3 Iron Ingot","color": "gray"}]}},
{"text": "\\u81b7\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80e7\\u0024\\u80e7\\u0024\\u80e7\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80e7\\u0024\\u80d0\\u0024\\u80e7\\u0022\\u0022\\u0024\\u0024\\u805f\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Copper Block\n- x1 Redstone\n- x3 Iron Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]},"clickEvent": {"action": "change_page","value": "40"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Advanced Battery\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
"\\u0022",
{"text": "\\u0024\\u80d5","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
{"text": "\\u0024\\u805f","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 10 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "39"}},
{"text": "\\u0024\\u80d5","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8061\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 25 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 10 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012019,"item_name": "{'text': 'Simple Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "39"}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:gold_block"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 25 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "command_block","components": {"custom_model_data": 2012004,"item_name": "{'text': 'Simplunium Ingot', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "12"}},
{"text": "\\u0027\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u81c4\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "41"}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u80d5\\u0024\\u80d5\\u0024\\u80d5\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u80d5\\u0024\\u805f\\u0024\\u80d5\\u0022\\u0022\\u0024\\u0024\\u8061\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8029\\u0024\\u8029\\u0024\\u8029\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Gold Block\n- x1 Simple Battery\n- x3 Simplunium Ingot","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]},"clickEvent": {"action": "change_page","value": "41"}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Elite Battery\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
"\\u0022",
{"text": "\\u0024\\u8081","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
{"text": "\\u0024\\u8061","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 25 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u0024\\u8081","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8063\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 50 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012021,"item_name": "{'text': 'Elite Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 25 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012020,"item_name": "{'text': 'Advanced Battery', 'italic': false, 'color': 'white'}"}}},"clickEvent": {"action": "change_page","value": "40"}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone_block"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Storage: 50 MJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012021,"item_name": "{'text': 'Elite Battery', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "8"}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"custom_model_data": 2012000,"item_name": "{'text': 'Simplunium Block', 'italic': false, 'color': 'white'}","lore": ["{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"]}}},"clickEvent": {"action": "change_page","value": "8"}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8081\\u0024\\u8081\\u0024\\u8081\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8081\\u0024\\u8061\\u0024\\u8081\\u0022\\u0022\\u0024\\u0024\\u8063\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8021\\u0024\\u8021\\u0024\\u8021\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x5 Redstone Block\n- x1 Advanced Battery\n- x3 Simplunium Block","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Cauldron Generator\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u8117","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u002f\\u0024",
{"text": "\\u0024\\u8117\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u002f\\u0024",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u0024\\u8117","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
{"text": "\\u0024\\u80d0","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u0024\\u8117","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8065\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Generation: 5 kW]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Energy Buffer: 500 kJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012032,"item_name": "{'text': 'Cauldron Generator', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Generation: 5 kW]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Energy Buffer: 500 kJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012032,"item_name": "{'text': 'Cauldron Generator', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_ingot"}}},
{"text": "\\u0027\n","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8117\\u002f\\u0024\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u80d0\\u0024\\u8117\\u0022\\u0022\\u0024\\u0024\\u8065\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Iron Ingot\n- x1 Redstone","color": "gray"}]}},
{"text": "\\u0025\\u0023\\u0023","hoverEvent": {"action": "show_text","contents": ["",[{"text": "","font": "simplenergy:manual","color": "white"},"\\u0022\\u002d\n\\u0022\\u0024\\u8117\\u002f\\u0024\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u80d0\\u0024\\u8117\\u0022\\u0022\\u0024\\u0024\\u8065\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\\u0022\\u0022\\u002f\\u0024\n\\u0022\\u0024\\u8117\\u0024\\u8117\\u0024\\u8117\n\\u0022\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n"],{"text": "\n- x7 Iron Ingot\n- x1 Redstone","color": "gray"}]}}
],
[
{"text": "","font": "simplenergy:manual","color": "white"},
{"text": "Furnace Generator\n","font": "minecraft:default","color": "black","underlined": true},
"\\u0022\\u002a\n\\u0022",
{"text": "\\u0024\\u819c\\u0024\\u819c\\u0024\\u819c\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_block"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:iron_block"}}},
"\\u0022",
{"text": "\\u0024\\u80d0","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u0024\\u81d6","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:furnace"}}},
{"text": "\\u0024\\u80d0","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
"\\u0022\\u0022",
{"text": "\\u0024\\u0024\\u8067\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Generation: 10 kW]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Energy Buffer: 800 kJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012023,"item_name": "{'text': 'Furnace Generator', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:furnace"}}},
{"text": "\\u002f\\u0024","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:redstone"}}},
"\\u0022\\u0022",
{"text": "\\u002f\\u0024\n","hoverEvent": {"action": "show_item","contents": {"id": "furnace","components": {"lore": ["{\"text\":\"[Energy Generation: 10 kW]\",\"italic\":false,\"color\":\"gray\"}","{\"text\":\"[Energy Buffer: 800 kJ]\",\"italic\":false,\"color\":\"gray\"}","{'text': 'SimplEnergy', 'italic': true, 'color': 'blue'}"],"custom_model_data": 2012023,"item_name": "{'text': 'Furnace Generator', 'italic': false, 'color': 'white'}"}}}},
"\\u0022",
{"text": "\\u0024\\u81d7\\u0024\\u81d7\\u0024\\u81d7\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stone"}}},
"\\u0022",
{"text": "\\u002f\\u0024\\u002f\\u0024\\u002f\\u0024\n\n","hoverEvent": {"action": "show_item","contents": {"id": "minecraft:stone"}}},