2013-10-30 13:45:32 -04:00
|
|
|
|
2014-07-02 22:45:46 +02:00
|
|
|
minetest.register_alias("compressor", "technic:lv_compressor")
|
2013-10-30 13:45:32 -04:00
|
|
|
|
2013-07-17 15:34:35 -04:00
|
|
|
minetest.register_craft({
|
2014-07-02 22:45:46 +02:00
|
|
|
output = 'technic:lv_compressor',
|
2013-07-17 15:34:35 -04:00
|
|
|
recipe = {
|
2014-07-07 21:48:38 +01:00
|
|
|
{'default:stone', 'technic:motor', 'default:stone'},
|
|
|
|
{'mesecons:piston', 'technic:machine_casing', 'mesecons:piston'},
|
|
|
|
{'technic:fine_silver_wire', 'technic:lv_cable0', 'technic:fine_silver_wire'},
|
2013-07-17 15:34:35 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-07-02 22:45:46 +02:00
|
|
|
technic.register_compressor({tier = "LV", demand = {300}, speed = 1})
|