fgrosswig
2020-01-06 e90b28895cc28daf1a2e4fb772bd191400cf9e62
commit | author | age
c0a173 1 -- MV compressor
N 2
3 minetest.register_craft({
4     output = 'technic:mv_compressor',
5     recipe = {
6         {'technic:stainless_steel_ingot', 'technic:lv_compressor',  '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'},
c0a173 9     }
N 10 })
11
12 technic.register_compressor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})