Maciej 'agaran' Pijanka
2017-03-15 10307f23a78b33af50dc4a5f3d1baafb4ee4b0d9
1
2
3
4
5
6
7
8
9
10
11
12
13
 
minetest.register_alias("compressor", "technic:lv_compressor")
 
minetest.register_craft({
    output = 'technic:lv_compressor',
    recipe = {
        {'default:stone',            'technic:motor',          'default:stone'},
        {'mesecons:piston',          'technic:machine_casing', 'mesecons:piston'},
        {'technic:fine_silver_wire', 'technic:lv_cable',       'technic:fine_silver_wire'},
    }
})
 
technic.register_compressor({tier = "LV", demand = {300}, speed = 1})