2018-08-03 10:15:31 +00:00
|
|
|
|
2018-08-04 19:10:07 +00:00
|
|
|
-- Drill
|
2018-08-03 10:15:31 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_tools:drill_bit",
|
|
|
|
recipe = {
|
|
|
|
{"", "default:steel_ingot", ""},
|
|
|
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_tools:hand_drill",
|
|
|
|
recipe = {
|
|
|
|
{"", "elepower_dynamics:wound_copper_coil", "elepower_tools:drill_bit"},
|
2018-08-03 18:16:48 +00:00
|
|
|
{"default:steel_ingot", "elepower_dynamics:battery", "default:steel_ingot"},
|
2018-08-03 10:15:31 +00:00
|
|
|
{"elepower_dynamics:motor", "elepower_dynamics:capacitor", ""},
|
|
|
|
}
|
|
|
|
})
|
2018-08-04 19:10:07 +00:00
|
|
|
|
|
|
|
-- Chainsaw
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_tools:chain",
|
|
|
|
recipe = {
|
|
|
|
{"", "default:steel_ingot", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "elepower_dynamics:steel_plate", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:steel_ingot", ""},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_tools:chainsaw",
|
|
|
|
recipe = {
|
|
|
|
{"", "elepower_dynamics:wound_copper_coil", "elepower_tools:chain"},
|
|
|
|
{"default:steel_ingot", "elepower_dynamics:battery", "default:steel_ingot"},
|
|
|
|
{"elepower_dynamics:motor", "elepower_dynamics:capacitor", ""},
|
|
|
|
}
|
|
|
|
})
|
2018-12-12 13:04:53 +00:00
|
|
|
|
|
|
|
-- Soldering Iron
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "elepower_tools:soldering_iron",
|
|
|
|
recipe = {
|
|
|
|
{"", "elepower_dynamics:battery", "default:steel_ingot"},
|
|
|
|
{"", "elepower_dynamics:wound_silver_coil", ""},
|
|
|
|
{"elepower_dynamics:wound_silver_coil", "", ""},
|
|
|
|
}
|
|
|
|
})
|