Vanessa Dannenberg
2018-11-27 bdd13beeff5045a34042439e39620b9ca550b214
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'},
d55ecc 7         {'pipeworks:tube_1',              'technic:mv_transformer',   'pipeworks:tube_1'},
83c649 8         {'technic:stainless_steel_ingot', 'technic:mv_cable',         'technic:stainless_steel_ingot'},
ee0765 9     }
S 10 })
11
12
d55ecc 13 technic.register_alloy_furnace({tier = "MV", speed = 1.5, upgrade = 1, tube = 1, demand = {3000, 2000, 1000}})
ee0765 14