Zefram
2014-07-30 12d0c6522bbca906910aae0321cbaa7eb48db8c2
commit | author | age
ee0765 1 -- LV Alloy furnace
S 2
3 -- FIXME: kpoppel: I'd like to introduce an induction heating element here...
4 minetest.register_craft({
5     output = 'technic:lv_alloy_furnace',
6     recipe = {
e8a5a6 7         {'default:brick',           'default:brick',          'default:brick'},
Z 8         {'default:brick',           'technic:machine_casing', 'default:brick'},
68ea0a 9         {'default:brick',           'technic:lv_cable0',      'default:brick'},
ee0765 10     }
S 11 })
12
d55ecc 13 technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}})
ee0765 14