Vanessa Ezekowitz
2017-03-10 343c7946d9014bf111e25a7a225a1b6f5746992b
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'},
83c649 12         {'pipeworks:tube_1',              'technic:mv_transformer',      'pipeworks:tube_1'},
S 13         {'technic:stainless_steel_ingot', 'technic:mv_cable',            'technic:stainless_steel_ingot'},
ee0765 14     }
S 15 })
16
17 technic.register_electric_furnace({tier="MV", upgrade=1, tube=1, demand={2000, 1000, 500}, speed=4})
18