technic/technic/machines/LV/electric_furnace.lua

17 lines
532 B
Lua
Raw Normal View History

2013-07-17 21:34:35 +02:00
-- LV Electric Furnace
-- This is a faster version of the stone furnace which runs on EUs
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
minetest.register_craft({
output = 'technic:electric_furnace',
recipe = {
2023-12-20 12:24:29 +01:00
{cobble_ingrediant, cobble_ingrediant, cobble_ingrediant},
{cobble_ingrediant, 'technic:machine_casing', cobble_ingrediant},
{cobble_ingrediant, 'technic:lv_cable', cobble_ingrediant},
2013-07-17 21:34:35 +02:00
}
})
technic.register_electric_furnace({tier="LV", demand={300}, speed = 2})