Add MV version of compressor too, remove infinite sand-producing compressor recipe.

This commit is contained in:
Novatux
2014-07-02 22:45:46 +02:00
parent aa8af0c871
commit c0a17396bf
18 changed files with 52 additions and 155 deletions

View File

@ -0,0 +1,12 @@
-- MV compressor
minetest.register_craft({
output = 'technic:mv_compressor',
recipe = {
{'technic:stainless_steel_ingot', 'technic:lv_compressor', '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_compressor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})