David Leal
2020-06-24 6154a04c00d7650664b78e2bca37631ae3778411
commit | author | age
88cbc6 1 -- MV extractor
N 2
3 minetest.register_craft({
4     output = 'technic:mv_extractor',
5     recipe = {
6         {'technic:stainless_steel_ingot', 'technic:lv_extractor',   'technic:stainless_steel_ingot'},
7         {'pipeworks:tube_1',              'technic:mv_transformer', 'pipeworks:tube_1'},
83c649 8         {'technic:stainless_steel_ingot', 'technic:mv_cable',       'technic:stainless_steel_ingot'},
88cbc6 9     }
N 10 })
11
12 technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})