Carter Kolwey
2014-01-11 ebc114df71cc20868afbd3c6dea4039dc14c1a0e
commit | author | age
ee0765 1 -- LV Electric Furnace
S 2 -- This is a faster version of the stone furnace which runs on EUs
3
4 -- FIXME: kpoppel I'd like to introduce an induction heating element here also
5 minetest.register_craft({
6     output = 'technic:electric_furnace',
7     recipe = {
8         {'default:cobble',      'default:cobble',        'default:cobble'},
9         {'default:cobble',      '',                      'default:cobble'},
10         {'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'},
11     }
12 })
13
14 technic.register_electric_furnace({tier="LV", demand={300}, speed = 2})
15
16