-
Notifications
You must be signed in to change notification settings - Fork 18
/
crafts.lua
1862 lines (1650 loc) · 53.2 KB
/
crafts.lua
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
-- CRAFTING RECIPES FOR SCIFI NODES
if minetest.get_modpath("basic_materials") then
-- 6 basic plastic from 9 homedecor plastic sheet
minetest.register_craft({
output = "scifi_nodes:white2 6",
recipe = {
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"},
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"},
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"}
}
})
if minetest.settings:get_bool("scifi_nodes.teleporter_enable_crafting", false) then
-- enable the teleporter pad crafting recipe only if the setting is enabled
minetest.register_craft({
output = "scifi_nodes:pad",
recipe = {
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"},
{"default:mese_crystal", "quartz:block", "default:mese_crystal"},
{"homedecor:plastic_sheeting", "quartz:block", "homedecor:plastic_sheeting"}
}
})
end
end
if not minetest.get_modpath("default") or not minetest.get_modpath("dye") then
-- the default and dye mod are required for most of the recipes
-- if either of them is missing (because we are not in the default game)
-- then just skip the recipes entirely
-- TODO: potentially switch recipes depending on current game
return
end
minetest.register_craft({
output = "scifi_nodes:super_white",
recipe = {
{"scifi_nodes:white2", "default:torch", ""}
}
})
minetest.register_craft({
output = "scifi_nodes:ultra_white",
recipe = {
{"default:torch", "scifi_nodes:white2", "default:torch"}
}
})
minetest.register_craft({
output = "scifi_nodes:ultra_white",
recipe = {
{"scifi_nodes:super_white", "default:torch", ""}
}
})
-- 6 plastic wall from 6 plastic
minetest.register_craft({
output = "scifi_nodes:white 6",
recipe = {
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"},
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"}
}
})
-- 6 white tile from 6 plastic and 1 black dye
minetest.register_craft({
output = "scifi_nodes:tile 6",
recipe = {
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"scifi_nodes:white2", "dye:black", "scifi_nodes:white2"},
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
}
})
-- 4 white tile2 from 4 plastic
minetest.register_craft({
output = "scifi_nodes:whitetile 4",
recipe = {
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"", "dye:black", ""},
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
}
})
-- 8 white octagon from 8 plastic and 1 black dye
minetest.register_craft({
output = "scifi_nodes:whiteoct 8",
recipe = {
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"},
{"scifi_nodes:white2", "dye:black", "scifi_nodes:white2"},
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"}
}
})
-- 6 white wall base from 6 plastic and 3 black dye
minetest.register_craft({
output = "scifi_nodes:white_base 6",
recipe = {
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"},
{"dye:black", "dye:black", "dye:black"},
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"}
}
})
-- 1 white keypad from 1 button and 1 plastic
minetest.register_craft({
output = "scifi_nodes:white_pad",
recipe = {
{"mesecons_button:button_off", "scifi_nodes:white2"}
}
})
-- 1 black from 1 plastic and 1 black dye
minetest.register_craft({
output = "scifi_nodes:black",
recipe = {
{"scifi_nodes:white2", "dye:black"}
}
})
-- 8 ceiling light from 2 plastic and 1 meselamp
-- Old recipe used "moreblocks:trap_super_glow_glass"
-- but moreblocks is an optional dependance
minetest.register_craft({
output = "scifi_nodes:lightbar 8",
recipe = {
{"scifi_nodes:white2", "default:meselamp", "scifi_nodes:white2"}
}
})
-- 1 wall light from 2 ceiling light
minetest.register_craft({
output = "scifi_nodes:light_dynamic",
recipe = {
{"scifi_nodes:lightbar", "scifi_nodes:lightbar"}
}
})
-- 6 white light stripe from 6 plastic, 2 blue dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:whtlightbnd 4",
recipe = {
{"scifi_nodes:white2", "dye:blue", "scifi_nodes:white2"},
{"", "scifi_nodes:lightbar", ""},
{"scifi_nodes:white2", "dye:blue", "scifi_nodes:white2"}
}
})
-- 1 dark glass from 1 obsidian glass and 1 black dye
minetest.register_craft({
output = "scifi_nodes:glass",
recipe = {
{"default:obsidian_glass", "dye:black"}
}
})
-- 6 tallscreen from 4 black wall, 2 obsidian glass and 1 cyan dye
minetest.register_craft({
output = "scifi_nodes:tallscreen 6",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"default:obsidian_glass", "dye:cyan", "default:obsidian_glass"},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 6 widescreen from 4 black wall, 2 obsidian glass and 1 cyan dye
minetest.register_craft({
output = "scifi_nodes:widescreen 6",
recipe = {
{"scifi_nodes:black", "default:obsidian_glass", "scifi_nodes:black"},
{"", "dye:cyan", ""},
{"scifi_nodes:black", "default:obsidian_glass", "scifi_nodes:black"}
}
})
-- 6 strong window from 3 dark glass, 3 plastic wall
minetest.register_craft({
output = "scifi_nodes:windowstraight 6",
recipe = {
{"scifi_nodes:glass", "scifi_nodes:glass", "scifi_nodes:glass"},
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"},
{"", "", ""}
}
})
-- 6 strong window (black) from 3 dark glass, 3 black wall
minetest.register_craft({
output = "scifi_nodes:windowstraight2 6",
recipe = {
{"scifi_nodes:glass", "scifi_nodes:glass", "scifi_nodes:glass"},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"},
{"", "", ""}
}
})
-- 4 strong window corner from 3 dark glass, 5 plastic wall
minetest.register_craft({
output = "scifi_nodes:windowcorner 4",
recipe = {
{"scifi_nodes:glass", "scifi_nodes:glass", "scifi_nodes:white"},
{"scifi_nodes:glass", "", "scifi_nodes:white"},
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"}
}
})
-- 4 strong window corner (black) from 3 dark glass, 5 black wall
minetest.register_craft({
output = "scifi_nodes:windowcorner2 4",
recipe = {
{"scifi_nodes:glass", "scifi_nodes:glass", "scifi_nodes:black"},
{"scifi_nodes:glass", "", "scifi_nodes:black"},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"}
}
})
-- 8 metal block from 8 black wall and 1 iron ingot
minetest.register_craft({
output = "scifi_nodes:lighttop 8",
recipe = {
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"},
{"scifi_nodes:black", "default:steel_ingot", "scifi_nodes:black"},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"}
}
})
-- 1 damaged black wall from 1 black wall
minetest.register_craft({
output = "scifi_nodes:blackdmg",
recipe = {
{"scifi_nodes:black"}
}
})
-- 4 electronic screen from 4 plastic, 1 lightbar, 2 cyan dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen 4",
recipe = {
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"},
{"dye:cyan", "scifi_nodes:lightbar", "dye:cyan"},
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"}
}
})
-- 4 electronic screen2 from 4 plastic, 1 lightbar, 2 green dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen2 4",
recipe = {
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"},
{"dye:green", "scifi_nodes:lightbar", "dye:green"},
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"}
}
})
-- 4 electronic screen3 from 4 plastic, 1 lightbar, 2 black dye, 2
-- microcontroller
minetest.register_craft({
output = "scifi_nodes:screen3 4",
recipe = {
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"},
{"dye:black", "scifi_nodes:lightbar", "dye:black"},
{"scifi_nodes:white2", "mesecons_microcontroller:microcontroller0000", "scifi_nodes:white2"}
}
})
-- 4 black wall screen from 4 black meshes and 1 electronic screen2
minetest.register_craft({
output = "scifi_nodes:black_screen 4",
recipe = {
{"scifi_nodes:black_mesh", "", "scifi_nodes:black_mesh"},
{"", "scifi_nodes:screen2", ""},
{"scifi_nodes:black_mesh", "", "scifi_nodes:black_mesh"}
}
})
-- 1 dented metal block from 1 metal block
minetest.register_craft({
type = "cooking",
output = "scifi_nodes:dent",
recipe = "scifi_nodes:lighttop",
})
-- 9 ladder 1 dented metal block
minetest.register_craft({
output = "scifi_nodes:ladder 9",
recipe = {
{"scifi_nodes:dent"}
}
})
-- 6 black vent block from 4 black wall and 1 dented metal block
minetest.register_craft({
output = "scifi_nodes:black_mesh 6",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"scifi_nodes:dent", "", "scifi_nodes:dent"},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 6 black detail from 6 black wall and 3 white dye
minetest.register_craft({
output = "scifi_nodes:black_detail 6",
recipe = {
{"scifi_nodes:black", "dye:white", "scifi_nodes:black"},
{"scifi_nodes:black", "dye:white", "scifi_nodes:black"},
{"scifi_nodes:black", "dye:white", "scifi_nodes:black"}
}
})
-- 6 blue floor from 6 black wall, 1 blue dye, 1 white dye and 1 trap glow glass
minetest.register_craft({
output = "scifi_nodes:bfloor 6",
recipe = {
{"dye:blue", "scifi_nodes:black", "dye:white"},
{"scifi_nodes:black", "scifi_nodes:lightbar", "scifi_nodes:black"},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"}
}
})
-- 8 metal wall from 4 black wall and 4 dented metal block
minetest.register_craft({
output = "scifi_nodes:wall 8",
recipe = {
{"scifi_nodes:black", "scifi_nodes:dent", "scifi_nodes:black"},
{"scifi_nodes:dent", "", "scifi_nodes:dent"},
{"scifi_nodes:black", "scifi_nodes:dent", "scifi_nodes:black"}
}
})
-- 6 vent from 6 dented metal block
minetest.register_craft({
output = "scifi_nodes:vent2 6",
recipe = {
{"scifi_nodes:dent", "scifi_nodes:dent", "scifi_nodes:dent"},
{"", "", ""},
{"scifi_nodes:dent", "scifi_nodes:dent", "scifi_nodes:dent"}
}
})
-- 6 black vnt from 6 black wall block and 6 stripes
minetest.register_craft({
output = "scifi_nodes:blackvnt 6",
recipe = {
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"},
{"scifi_nodes:stripes", "scifi_nodes:stripes", "scifi_nodes:stripes"},
{"", "", ""}
}
})
-- 6 black vent from 6 black wall
minetest.register_craft({
output = "scifi_nodes:blackvent 6",
recipe = {
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"},
{"", "", ""},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"}
}
})
-- 1 hazard stripe from 1 black wall and 2 yellow dye
minetest.register_craft({
output = "scifi_nodes:stripes",
recipe = {
{"dye:yellow", "", ""},
{"", "scifi_nodes:black", ""},
{"", "", "dye:yellow"}
}
})
-- 1 laptop from 2 black, 1 widescreen, 1 black detail, 1 microcontroller, 1
-- mesecon button
minetest.register_craft({
output = "scifi_nodes:laptop_closed",
recipe = {
{"scifi_nodes:black", "scifi_nodes:widescreen"},
{"mesecons_microcontroller:microcontroller0000", "scifi_nodes:black_detail"},
{"scifi_nodes:black", "mesecons_button:button_off"}
}
})
-- 1 keyboard and monitor from 3 black, 1 widescreen, 1 black detail, 1 microcontroller
minetest.register_craft({
output = "scifi_nodes:keysmonitor",
recipe = {
{"scifi_nodes:black", "scifi_nodes:widescreen", "scifi_nodes:black"},
{
"mesecons_microcontroller:microcontroller0000",
"scifi_nodes:black_detail",
"mesecons_microcontroller:microcontroller0000"
}
}
})
-- 4 black tile from 4 black and 1 white dye
minetest.register_craft({
output = "scifi_nodes:blacktile 4",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"", "dye:white", ""},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 4 black tile2 from 4 black
minetest.register_craft({
output = "scifi_nodes:blacktile2 4",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"", "", ""},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 4 blackplate from 4 black and 1 dent
minetest.register_craft({
output = "scifi_nodes:blackplate 4",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"", "scifi_nodes:dent", ""},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 8 black octagon from 8 black and 1 white dye
minetest.register_craft({
output = "scifi_nodes:blackoct 8",
recipe = {
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"},
{"scifi_nodes:black", "dye:white", "scifi_nodes:black"},
{"scifi_nodes:black", "scifi_nodes:black", "scifi_nodes:black"}
}
})
-- 4 damaged black wall (stripes) from 4 damaged black wall and 1 hazard stripe
minetest.register_craft({
output = "scifi_nodes:blackdmgstripe 4",
recipe = {
{"scifi_nodes:blackdmg", "", "scifi_nodes:blackdmg"},
{"", "scifi_nodes:stripes", ""},
{"scifi_nodes:blackdmg", "", "scifi_nodes:blackdmg"}
}
})
-- 1 blink from 1 black,1 dented metal block, 1 mesecon torch and 4 mesecon
minetest.register_craft({
output = "scifi_nodes:blink",
recipe = {
{"", "scifi_nodes:black", ""},
{"mesecons:wire_00000000_off", "scifi_nodes:dent", "mesecons_torch:mesecon_torch_on"},
{"mesecons:wire_00000000_off", "mesecons:wire_00000000_off", "mesecons:wire_00000000_off"}
}
})
-- 4 black light stripe from 4 black, 2 white dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:blklt2 6",
recipe = {
{"scifi_nodes:black", "", "scifi_nodes:black"},
{"dye:white", "scifi_nodes:lightbar", "dye:white"},
{"scifi_nodes:black", "", "scifi_nodes:black"}
}
})
-- 4 metal mesh from 4 metal block
minetest.register_craft({
output = "scifi_nodes:mesh 4",
recipe = {
{"", "scifi_nodes:lighttop", ""},
{"scifi_nodes:lighttop", "", "scifi_nodes:lighttop"},
{"", "scifi_nodes:lighttop", ""}
}
})
-- 4 metal floormesh from 4 metal block
minetest.register_craft({
output = "scifi_nodes:mesh2 4",
recipe = {
{"scifi_nodes:lighttop", "", "scifi_nodes:lighttop"},
{"", "", ""},
{"scifi_nodes:lighttop", "", "scifi_nodes:lighttop"}
}
})
-- 1 storage box from 8 dented metal block
minetest.register_craft({
output = "scifi_nodes:box",
recipe = {
{"scifi_nodes:dent", "scifi_nodes:dent", "scifi_nodes:dent"},
{"scifi_nodes:dent", "", "scifi_nodes:dent"},
{"scifi_nodes:dent", "scifi_nodes:dent", "scifi_nodes:dent"}
}
})
minetest.register_craft({
output = "scifi_nodes:crate",
recipe = {
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"},
{"scifi_nodes:grey", "", "scifi_nodes:grey"},
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"}
}
})
-- 6 blue metal from 6 plastic, 2 blue dye, 1 dented metal block
minetest.register_craft({
output = "scifi_nodes:bluemetal 6",
recipe = {
{"scifi_nodes:white2", "dye:blue", "scifi_nodes:white2"},
{"scifi_nodes:white2", "scifi_nodes:dent", "scifi_nodes:white2"},
{"scifi_nodes:white2", "dye:blue", "scifi_nodes:white2"}
}
})
-- 6 blue bars from 6 blue metal
minetest.register_craft({
output = "scifi_nodes:bluebars 6",
recipe = {
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"},
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"},
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"}
}
})
-- 4 blue tile from 4 blue metal
minetest.register_craft({
output = "scifi_nodes:bluetile 4",
recipe = {
{"scifi_nodes:bluemetal", "scifi_nodes:bluemetal"},
{"scifi_nodes:bluemetal", "scifi_nodes:bluemetal"}
}
})
-- 4 blue metal block from 4 blue metal
minetest.register_craft({
output = "scifi_nodes:blue_square 4",
recipe = {
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"},
{"", "", ""},
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"}
}
})
-- 4 blue lines from 4 black plate and 1 blue dye
minetest.register_craft({
output = "scifi_nodes:blue 4",
recipe = {
{"scifi_nodes:blackplate", "", "scifi_nodes:blackplate"},
{"", "dye:blue", ""},
{"scifi_nodes:blackplate", "", "scifi_nodes:blackplate"}
}
})
-- 1 blue metal light from 1 blue metal and 1 lightbar
minetest.register_craft({
output = "scifi_nodes:blumetlight",
recipe = {
{"scifi_nodes:bluemetal", "scifi_nodes:lightbar"}
}
})
-- 4 blue stripe light from 4 blue metal and 1 light bar
minetest.register_craft({
output = "scifi_nodes:blumetstr 4",
recipe = {
{"scifi_nodes:bluemetal", "scifi_nodes:lightbar", "scifi_nodes:bluemetal"},
{"scifi_nodes:bluemetal", "", "scifi_nodes:bluemetal"}
}
})
-- 6 capsule from 1 plastic, 1 glass, 1 orange dye, 1 green dye and
-- 1 cyan dye
minetest.register_craft({
output = "scifi_nodes:capsule 6",
recipe = {
{"", "dye:orange", ""},
{"scifi_nodes:glass", "dye:green", "scifi_nodes:white2"},
{"", "dye:cyan", ""}
}
})
-- 9 disc from 1 plastic and 1 blue dye
minetest.register_craft({
output = "scifi_nodes:disc 9",
recipe = {
{"scifi_nodes:white2", "dye:blue"}
}
})
-- 6 disc shelves from 3 dented metal block and 6 disc
minetest.register_craft({
output = "scifi_nodes:discs 6",
recipe = {
{"scifi_nodes:disc", "scifi_nodes:disc", "scifi_nodes:disc"},
{"scifi_nodes:dent", "scifi_nodes:dent", "scifi_nodes:dent"},
{"scifi_nodes:disc", "scifi_nodes:disc", "scifi_nodes:disc"}
}
})
-- 6 bluelightbox from 6 metal block, 2 blue dye and 1 light bar
minetest.register_craft({
output = "scifi_nodes:light 6",
recipe = {
{"scifi_nodes:lighttop", "dye:blue", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "scifi_nodes:lightbar", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "dye:blue", "scifi_nodes:lighttop"}
}
})
-- 4 blue octagon glass from 4 glass, 2 blue dye and 1 lightbar
minetest.register_craft({
output = "scifi_nodes:octbl 4",
recipe = {
{"dye:blue", "scifi_nodes:glass", ""},
{"scifi_nodes:glass", "scifi_nodes:lightbar", "scifi_nodes:glass"},
{"", "scifi_nodes:glass", "dye:blue"}
}
})
-- 4 wall monitor from 4 glass, 1 black wall
minetest.register_craft({
output = "scifi_nodes:monitorwall 4",
recipe = {
{"scifi_nodes:glass", "", "scifi_nodes:glass"},
{"", "scifi_nodes:black", ""},
{"scifi_nodes:glass", "", "scifi_nodes:glass"}
}
})
-- 1 microscope from 2 glass, 1 plastic
minetest.register_craft({
output = "scifi_nodes:microscope",
recipe = {
{"scifi_nodes:glass"},
{"scifi_nodes:white2"},
{"scifi_nodes:glass"}
}
})
-- 4 Blue wall light from 4 plastic, 1 wall light, 2 blue dye
minetest.register_craft({
output = "scifi_nodes:bluwllight 4",
recipe = {
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"dye:blue", "scifi_nodes:light_dynamic", "dye:blue"},
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
}
})
-- 6 twin lights from 6 black vent, 3 wall lights
minetest.register_craft({
output = "scifi_nodes:lightstp 6",
recipe = {
{"scifi_nodes:blackvent", "scifi_nodes:blackvent", "scifi_nodes:blackvent"},
{"scifi_nodes:light_dynamic", "scifi_nodes:light_dynamic", "scifi_nodes:light_dynamic"},
{"scifi_nodes:blackvent", "scifi_nodes:blackvent", "scifi_nodes:blackvent"}
}
})
-- 1 black wallpanel from 1 red, 1 green, 1 yellow dye, 1 microcontroller
-- and one black wall
minetest.register_craft({
output = "scifi_nodes:black_lights",
recipe = {
{"dye:red", "dye:green", "dye:yellow"},
{
"mesecons_microcontroller:microcontroller0000",
"scifi_nodes:black",
"mesecons_microcontroller:microcontroller0000"
}
}
})
-- 4 Doom light from 4 red dye and 4 black
minetest.register_craft({
output = "scifi_nodes:doomlight 4",
recipe = {
{"dye:red", "scifi_nodes:black", "dye:red"},
{"scifi_nodes:black", "scifi_nodes:lightbar", "scifi_nodes:black"},
{"dye:red", "scifi_nodes:black", "dye:red"}
}
})
-- 6 Doom wall1 from 4 white wall, 2 black wall, 1 red dye
minetest.register_craft({
output = "scifi_nodes:doomwall1 6",
recipe = {
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"},
{"scifi_nodes:black", "dye:red", "scifi_nodes:black"},
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"}
}
})
-- 6 Doom wall2 from 4 white wall, 2 black wall, 1 green dye
minetest.register_craft({
output = "scifi_nodes:doomwall2 6",
recipe = {
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"},
{"scifi_nodes:black", "dye:green", "scifi_nodes:black"},
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"}
}
})
-- 6 Doom wall3 from 4 white wall, 2 black wall, 1 grey dye
minetest.register_craft({
output = "scifi_nodes:doomwall3 6",
recipe = {
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"},
{"scifi_nodes:black", "dye:grey", "scifi_nodes:black"},
{"scifi_nodes:white", "scifi_nodes:white", "scifi_nodes:white"}
}
})
-- 4 fan from 4 vent, 4 plastic sheet, 1 red dye
minetest.register_craft({
output = "scifi_nodes:fan 4",
recipe = {
{"scifi_nodes:vent2", "homedecor:plastic_sheeting", "scifi_nodes:vent2"},
{"homedecor:plastic_sheeting", "dye:red", "homedecor:plastic_sheeting"},
{"scifi_nodes:vent2", "homedecor:plastic_sheeting", "scifi_nodes:vent2"}
}
})
-- 6 green metal from 6 plastic, 2 green dye, 1 dented metal block
minetest.register_craft({
output = "scifi_nodes:greenmetal 6",
recipe = {
{"scifi_nodes:white2", "dye:green", "scifi_nodes:white2"},
{"scifi_nodes:white2", "scifi_nodes:dent", "scifi_nodes:white2"},
{"scifi_nodes:white2", "dye:green", "scifi_nodes:white2"}
}
})
-- 4 green lines from 4 black plate and 1 green dye
minetest.register_craft({
output = "scifi_nodes:green 4",
recipe = {
{"scifi_nodes:blackplate", "", "scifi_nodes:blackplate"},
{"", "dye:green", ""},
{"scifi_nodes:blackplate", "", "scifi_nodes:blackplate"}
}
})
-- 6 green pipe from 6 green metal and 1 vent
minetest.register_craft({
output = "scifi_nodes:grnpipe 6",
recipe = {
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"},
{"scifi_nodes:greenmetal", "scifi_nodes:vent2", "scifi_nodes:greenmetal"},
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"}
}
})
-- 6 black pipe from 6 lighttop and 1 vent
minetest.register_craft({
output = "scifi_nodes:blackpipe 6",
recipe = {
{"scifi_nodes:lighttop", "", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "scifi_nodes:vent2", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "", "scifi_nodes:lighttop"}
}
})
-- 1 broken green pipe from 1 green pipe
minetest.register_craft({
output = "scifi_nodes:grnpipe2",
recipe = {
{"scifi_nodes:grnpipe"}
}
})
-- 6 green lightbox from 6 metal block, 2 green dye and 1 light bar
minetest.register_craft({
output = "scifi_nodes:green_light 6",
recipe = {
{"scifi_nodes:lighttop", "dye:green", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "scifi_nodes:lightbar", "scifi_nodes:lighttop"},
{"scifi_nodes:lighttop", "dye:green", "scifi_nodes:lighttop"}
}
})
-- 6 green tubes from 6 green pipe
minetest.register_craft({
output = "scifi_nodes:greentubes 6",
recipe = {
{"scifi_nodes:grnpipe", "", "scifi_nodes:grnpipe"},
{"scifi_nodes:grnpipe", "", "scifi_nodes:grnpipe"},
{"scifi_nodes:grnpipe", "", "scifi_nodes:grnpipe"}
}
})
-- 4 green metal wall2 from 4 green metal, 1 white dye
minetest.register_craft({
output = "scifi_nodes:greenmetal2 4",
recipe = {
{"scifi_nodes:greenmetal", "dye:white", "scifi_nodes:greenmetal"},
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"}
}
})
-- 6 green wall lights2 from 6 green metal, 2 green dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:greenlights2 6",
recipe = {
{"scifi_nodes:greenmetal", "scifi_nodes:greenmetal", "scifi_nodes:greenmetal"},
{"dye:green", "scifi_nodes:lightbar", "dye:green"},
{"scifi_nodes:greenmetal", "scifi_nodes:greenmetal", "scifi_nodes:greenmetal"}
}
})
-- 6 green wall lights from 6 green metal2, 2 green dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:greenlights 6",
recipe = {
{"scifi_nodes:greenmetal2", "scifi_nodes:greenmetal2", "scifi_nodes:greenmetal2"},
{"dye:green", "scifi_nodes:lightbar", "dye:green"},
{"scifi_nodes:greenmetal2", "scifi_nodes:greenmetal2", "scifi_nodes:greenmetal2"}
}
})
-- 4 green light bar from 4 green metal, 2 green dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:greenbar 4",
recipe = {
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"},
{"dye:green", "scifi_nodes:lightbar", "dye:green"},
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"}
}
})
-- 4 green light bar from 4 green metal, 2 green dye, 1 lightbar
minetest.register_craft({
output = "scifi_nodes:greenbar_animated 4",
recipe = {
{"scifi_nodes:greenbar", "", "scifi_nodes:greenbar"},
{"", "mesecons:wire_00000000_off", ""},
{"scifi_nodes:greenbar", "", "scifi_nodes:greenbar"}
}
})
-- 4 green metal block from 4 green metal
minetest.register_craft({
output = "scifi_nodes:green_square 4",
recipe = {
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"},
{"", "", ""},
{"scifi_nodes:greenmetal", "", "scifi_nodes:greenmetal"}
}
})
-- 4 green octagon glass from 4 glass, 2 green dye and 1 lightbar
minetest.register_craft({
output = "scifi_nodes:octgrn 4",
recipe = {
{"dye:green", "scifi_nodes:glass", ""},
{"scifi_nodes:glass", "scifi_nodes:lightbar", "scifi_nodes:glass"},
{"", "scifi_nodes:glass", "dye:green"}
}
})
-- 1 grey from 1 plastic and 1 grey dye
minetest.register_craft({
output = "scifi_nodes:grey",
recipe = {
{"scifi_nodes:white2", "dye:grey"}
}
})
-- 4 grey metal block from 4 grey and 1 dented metal block
minetest.register_craft({
output = "scifi_nodes:grey_square 4",
recipe = {
{"scifi_nodes:grey", "", "scifi_nodes:grey"},
{"", "scifi_nodes:dent", ""},
{"scifi_nodes:grey", "", "scifi_nodes:grey"}
}
})
-- 6 grey bars from 4 grey and 2 grey metal block
minetest.register_craft({
output = "scifi_nodes:greybars 6",
recipe = {
{"scifi_nodes:grey", "", "scifi_nodes:grey"},
{"scifi_nodes:grey_square", "", "scifi_nodes:grey_square"},
{"scifi_nodes:grey", "", "scifi_nodes:grey"}
}
})
-- 6 grey wall bolts from 4 grey wall and 2 grey metal block
minetest.register_craft({
output = "scifi_nodes:greybolts 6",
recipe = {
{"scifi_nodes:grey_square", "scifi_nodes:grey", "scifi_nodes:grey_square"},
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"}
}
})
-- 4 grey wall dots from 4 grey wall and 1 white dye, 1 grey dye
minetest.register_craft({
output = "scifi_nodes:greydots 4",
recipe = {
{"dye:white", "scifi_nodes:grey", "dye:grey"},
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"}
}
})
-- 6 grey power pipe from 6 grey and 2 green dye and 1 light bar
minetest.register_craft({
output = "scifi_nodes:greygreenbar 6",
recipe = {
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"},
{"dye:green", "scifi_nodes:lightbar", "dye:green"},
{"scifi_nodes:grey", "scifi_nodes:grey", "scifi_nodes:grey"}
}
})
-- 4 grey tile from 4 grey and 1 black dye and 1 white dye
minetest.register_craft({
output = "scifi_nodes:greytile 4",
recipe = {
{"scifi_nodes:grey", "dye:black", "scifi_nodes:grey"},
{"", "", ""},
{"scifi_nodes:grey", "dye:white", "scifi_nodes:grey"}
}
})
-- 4 holes from 4 grey and 1 black dye and 1 white dye and 1 metal mesh
minetest.register_craft({
output = "scifi_nodes:holes 4",
recipe = {
{"scifi_nodes:grey", "dye:black", "scifi_nodes:grey"},
{"", "scifi_nodes:mesh", ""},
{"scifi_nodes:grey", "dye:white", "scifi_nodes:grey"}
}
})
-- 4 metal table from 2 grey and 2 dented metal block
minetest.register_craft({
output = "scifi_nodes:table 4",
recipe = {
{"scifi_nodes:grey", "scifi_nodes:dent", "scifi_nodes:grey"},
{"", "scifi_nodes:dent", ""}
}
})
-- 8 doom floor from 4 plastic, 1 black dye, 4 stones
minetest.register_craft({
output = "scifi_nodes:octofloor 8",
recipe = {
{"scifi_nodes:white2", "default:stone", "scifi_nodes:white2"},
{"default:stone", "dye:black", "default:stone"},
{"scifi_nodes:white2", "default:stone", "scifi_nodes:white2"}
}
})
-- 8 brown doom floor from 4 plastic, 1 black dye, 4 woods
minetest.register_craft({
output = "scifi_nodes:octofloor2 8",
recipe = {
{"scifi_nodes:white2", "default:wood", "scifi_nodes:white2"},
{"default:wood", "dye:black", "default:wood"},
{"scifi_nodes:white2", "default:wood", "scifi_nodes:white2"}
}
})
-- 4 purple octagon glass from 4 glass, 1 red dye, 1 blue dye and 1 lightbar
minetest.register_craft({
output = "scifi_nodes:octppl 4",
recipe = {
{"dye:red", "scifi_nodes:glass", ""},
{"scifi_nodes:glass", "scifi_nodes:lightbar", "scifi_nodes:glass"},
{"", "scifi_nodes:glass", "dye:blue"}
}
})
-- 4 orange octagon glass from 4 glass, 2 orange dye and 1 lightbar
minetest.register_craft({
output = "scifi_nodes:octrng 4",
recipe = {
{"dye:orange", "scifi_nodes:glass", ""},
{"scifi_nodes:glass", "scifi_nodes:lightbar", "scifi_nodes:glass"},
{"", "scifi_nodes:glass", "dye:orange"}
}
})
minetest.register_craft({
output = "scifi_nodes:octwht 4",
recipe = {
{"dye:white", "scifi_nodes:glass", ""},
{"scifi_nodes:glass", "scifi_nodes:lightbar", "scifi_nodes:glass"},
{"", "scifi_nodes:glass", "dye:white"}
}
})
-- 1 purple node from 1 plastic, 1 blue dye and 1 red dye
minetest.register_craft({