Vanessa Dannenberg
2018-11-25 dc0689018d27a68ae2987194285558b3add09be2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 
local S = technic.getter
 
technic.register_recipe_type("compressing", { description = S("Compressing") })
 
function technic.register_compressor_recipe(data)
    data.time = data.time or 4
    technic.register_recipe("compressing", data)
end
 
local recipes = {
    {"default:snowblock",          "default:ice"},
    {"default:sand 2",             "default:sandstone"},
    {"default:desert_sand 2",      "default:desert_sandstone"},
    {"default:silver_sand 2",      "default:silver_sandstone"},
    {"default:desert_sand",        "default:desert_stone"},
    {"technic:mixed_metal_ingot",  "technic:composite_plate"},
    {"default:copper_ingot 5",     "technic:copper_plate"},
    {"technic:coal_dust 4",        "technic:graphite"},
    {"technic:carbon_cloth",       "technic:carbon_plate"},
    {"technic:uranium35_ingot 5",  "technic:uranium_fuel"},
}
 
-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner
minetest.clear_craft({
    recipe = {
        {"default:sand", "default:sand"},
        {"default:sand", "default:sand"},
    },
})
minetest.clear_craft({
    recipe = {
        {"default:desert_sand", "default:desert_sand"},
        {"default:desert_sand", "default:desert_sand"},
    },
})
minetest.clear_craft({
    recipe = {
        {"default:silver_sand", "default:silver_sand"},
        {"default:silver_sand", "default:silver_sand"},
    },
})
 
for _, data in pairs(recipes) do
    technic.register_compressor_recipe({input = {data[1]}, output = data[2]})
end