technic/technic/machines/LV/alloy_furnace.lua

15 lines
602 B
Lua
Raw Normal View History

2013-07-17 21:34:35 +02:00
-- LV Alloy furnace
-- FIXME: kpoppel: I'd like to introduce an induction heating element here...
minetest.register_craft({
output = 'technic:lv_alloy_furnace',
recipe = {
{technic_compat.brick_block_ingredient, technic_compat.brick_block_ingredient, technic_compat.brick_block_ingredient},
{technic_compat.brick_block_ingredient, 'technic:machine_casing', technic_compat.brick_block_ingredient},
{technic_compat.brick_block_ingredient, 'technic:lv_cable', technic_compat.brick_block_ingredient},
2013-07-17 21:34:35 +02:00
}
})
technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}})
2013-07-17 21:34:35 +02:00