Zefram
2014-08-13 b001a679799bdc7d08eabcd1300271d0e1357b0a
commit | author | age
ee0765 1 -- MV Electric Furnace
S 2 -- This is a faster version of the stone furnace which runs on EUs
3 -- In addition to this it can be upgraded with microcontrollers and batteries
4 -- This new version uses the batteries to lower the power consumption of the machine
5 -- Also in addition this furnace can be attached to the pipe system from the pipeworks mod.
6
7 -- FIXME: kpoppel I'd like to introduce an induction heating element here also
8 minetest.register_craft({
9     output = 'technic:mv_electric_furnace',
10     recipe = {
11         {'technic:stainless_steel_ingot', 'technic:lv_electric_furnace', 'technic:stainless_steel_ingot'},
749df3 12         {'pipeworks:tube_1',         'technic:mv_transformer',      'pipeworks:tube_1'},
ee0765 13         {'technic:stainless_steel_ingot', 'technic:mv_cable0',           'technic:stainless_steel_ingot'},
S 14     }
15 })
16
17 technic.register_electric_furnace({tier="MV", upgrade=1, tube=1, demand={2000, 1000, 500}, speed=4})
18