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 = {
{cobble_ingredient, cobble_ingredient, cobble_ingredient},
{cobble_ingredient, 'technic:machine_casing', cobble_ingredient},
{cobble_ingredient, 'technic:lv_cable', cobble_ingredient},
2013-07-17 21:34:35 +02:00
}
})
technic.register_electric_furnace({tier="LV", demand={300}, speed = 2})