2018-08-03 12:15:31 +02:00
|
|
|
|
2018-08-04 21:10:07 +02:00
|
|
|
-- Drill
|
2018-08-03 12:15:31 +02: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 20:16:48 +02:00
|
|
|
{"default:steel_ingot", "elepower_dynamics:battery", "default:steel_ingot"},
|
2018-12-12 14:46:19 +01:00
|
|
|
{"basic_materials:motor", "elepower_dynamics:capacitor", ""},
|
2018-08-03 12:15:31 +02:00
|
|
|
}
|
|
|
|
})
|
2018-08-04 21:10:07 +02: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"},
|
2018-12-12 14:46:19 +01:00
|
|
|
{"basic_materials:motor", "elepower_dynamics:capacitor", ""},
|
2018-08-04 21:10:07 +02:00
|
|
|
}
|
|
|
|
})
|
2018-12-12 14:04:53 +01: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", "", ""},
|
|
|
|
}
|
|
|
|
})
|