Carter Kolwey
2014-01-11 ebc114df71cc20868afbd3c6dea4039dc14c1a0e
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 = {
7         {'default:brick',       'default:brick',        'default:brick'},
8         {'default:brick',       '',                     'default:brick'},
9         {'default:steel_ingot', 'default:copper_ingot', 'default:steel_ingot'},
10     }
11 })
12
13 technic.register_alloy_furnace({tier="LV", cook_time=6, demand={300}})
14