you
2017-06-05 987cc5a6a425b1f9bcd9000608dc389a45c675a1
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
local S = technic.getter
 
technic.register_recipe_type("separating", {
    description = S("Separating"),
    output_size = 2,
})
 
function technic.register_separating_recipe(data)
    data.time = data.time or 10
    technic.register_recipe("separating", data)
end
 
local recipes = {
    { "technic:bronze_dust 4",             "technic:copper_dust 3",       "technic:tin_dust"      },
    { "technic:stainless_steel_dust 4",    "technic:wrought_iron_dust 3", "technic:chromium_dust" },
    { "technic:brass_dust 3",              "technic:copper_dust 2",       "technic:zinc_dust"     },
    { "technic:chernobylite_dust",         "default:sand",                "technic:uranium3_dust" },
    { "default:dirt 4",                    "default:sand",                "default:gravel",       "default:clay_lump 2"     },
}
 
local function uranium_dust(p)
    return "technic:uranium"..(p == 7 and "" or p).."_dust"
end
for p = 1, 34 do
    table.insert(recipes, { uranium_dust(p).." 2", uranium_dust(p-1), uranium_dust(p+1) })
end
 
if minetest.get_modpath("bushes_classic") then
    for _, berry in ipairs({ "blackberry", "blueberry", "gooseberry", "raspberry", "strawberry" }) do
        table.insert(recipes, { "bushes:"..berry.."_bush", "default:stick 20", "bushes:"..berry.." 4" })
    end
end
 
if minetest.get_modpath("farming") then
    table.insert(recipes, { "farming:wheat 4", "farming:seed_wheat 3", "default:dry_shrub 1" })
end
 
for _, data in pairs(recipes) do
    technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } })
end