Zefram
2014-08-18 7d610b7c80487cd7a6e66f55c9c3b1190e5dfc7f
1
2
3
4
5
6
7
8
9
10
11
12
-- MV extractor
 
minetest.register_craft({
    output = 'technic:mv_extractor',
    recipe = {
        {'technic:stainless_steel_ingot', 'technic:lv_extractor',   'technic:stainless_steel_ingot'},
        {'pipeworks:tube_1',              'technic:mv_transformer', 'pipeworks:tube_1'},
        {'technic:stainless_steel_ingot', 'technic:mv_cable0',      'technic:stainless_steel_ingot'},
    }
})
 
technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})