diff options
Diffstat (limited to 'technic/machines/LV/alloy_furnace.lua')
-rw-r--r-- | technic/machines/LV/alloy_furnace.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/technic/machines/LV/alloy_furnace.lua b/technic/machines/LV/alloy_furnace.lua new file mode 100644 index 0000000..0637f48 --- /dev/null +++ b/technic/machines/LV/alloy_furnace.lua @@ -0,0 +1,14 @@ +-- LV Alloy furnace + +-- FIXME: kpoppel: I'd like to introduce an induction heating element here... +minetest.register_craft({ + output = 'technic:lv_alloy_furnace', + recipe = { + {'default:brick', 'default:brick', 'default:brick'}, + {'default:brick', '', 'default:brick'}, + {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'}, + } +}) + +technic.register_alloy_furnace({tier="LV", cook_time=6, demand={300}}) + |