ShadowNinja
2013-10-03 562d0db20c5604a15515ca55eee4db6142d03e31
commit | author | age
ee0765 1 -- MV alloy furnace
S 2
3 minetest.register_craft({
4     output = 'technic:mv_alloy_furnace',
5     recipe = {
6         {'technic:stainless_steel_ingot', 'technic:lv_alloy_furnace', 'technic:stainless_steel_ingot'},
7         {'pipeworks:tube_000000',         'technic:mv_transformer',   'pipeworks:tube_000000'},
8         {'technic:stainless_steel_ingot', 'technic:mv_cable0',        'technic:stainless_steel_ingot'},
9     }
10 })
11
12
13 technic.register_alloy_furnace({tier="MV", cook_time=4, upgrade=1, tube=1, demand={3000, 2000, 1000}})
14