2018-07-21 23:03:17 +00:00
|
|
|
|
|
|
|
-- Radiation-shielded Lead Machine Chassis
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_nuclear:machine_block",
|
|
|
|
recipe = {
|
|
|
|
{"elepower_dynamics:induction_coil_advanced", "elepower_dynamics:graphite_ingot", "elepower_dynamics:induction_coil_advanced"},
|
|
|
|
{"elepower_dynamics:graphite_ingot", "elepower_dynamics:lead_block", "elepower_dynamics:graphite_ingot"},
|
|
|
|
{"elepower_dynamics:lead_block", "elepower_dynamics:graphite_ingot", "elepower_dynamics:lead_block"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Enrichment Plant
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_nuclear:enrichment_plant",
|
|
|
|
recipe = {
|
|
|
|
{"elepower_dynamics:induction_coil_advanced", "elepower_dynamics:soc", "elepower_dynamics:induction_coil_advanced"},
|
|
|
|
{"elepower_nuclear:graphite_rod", "elepower_nuclear:machine_block", "elepower_nuclear:graphite_rod"},
|
|
|
|
{"elepower_dynamics:wound_silver_coil", "elepower_dynamics:viridisium_gear", "elepower_dynamics:wound_silver_coil"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-07-22 10:34:42 +00:00
|
|
|
elepm.register_craft({
|
|
|
|
type = "enrichment",
|
|
|
|
output = { "elepower_nuclear:uranium_dust", "elepower_nuclear:depleted_uranium_dust 3"},
|
|
|
|
recipe = { "elepower_nuclear:uranium_lump 4" },
|
|
|
|
time = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
elepm.register_craft({
|
|
|
|
type = "enrichment",
|
|
|
|
output = { "elepower_nuclear:uranium_dust", "elepower_nuclear:depleted_uranium_dust", "elepower_nuclear:nuclear_waste 2"},
|
|
|
|
recipe = { "elepower_nuclear:depleted_uranium_dust 4" },
|
|
|
|
time = 40,
|
|
|
|
})
|
|
|
|
|
|
|
|
elepm.register_craft({
|
|
|
|
type = "enrichment",
|
|
|
|
output = { "elepower_nuclear:depleted_uranium_dust", "elepower_nuclear:nuclear_waste 3"},
|
2018-07-27 15:47:49 +00:00
|
|
|
recipe = { "elepower_nuclear:nuclear_waste 5" },
|
2018-07-22 10:34:42 +00:00
|
|
|
time = 50,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Graphite rods
|
2018-07-21 23:03:17 +00:00
|
|
|
elepm.register_craft({
|
|
|
|
type = "grind",
|
|
|
|
recipe = { "elepower_dynamics:graphite_ingot" },
|
|
|
|
output = "elepower_nuclear:graphite_rod 3",
|
|
|
|
time = 6,
|
|
|
|
})
|