SmallJoker
2013-12-01 7a3cd495972f2dc399d7af7f596a6d9a4a5c728b
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'},
12         {'pipeworks:tube_000000',         'technic:mv_transformer',      'pipeworks:tube_000000'},
13         {'technic:stainless_steel_ingot', 'technic:mv_cable0',           'technic:stainless_steel_ingot'},
14     }
15 })
16
17 technic.register_electric_furnace({tier="MV", upgrade=1, tube=1, demand={2000, 1000, 500}, speed=4})
18