David Leal
2020-06-24 6154a04c00d7650664b78e2bca37631ae3778411
technic/machines/register/centrifuge_recipes.lua
@@ -10,15 +10,20 @@
   technic.register_recipe("separating", data)
end
local rubber_tree_planks = minetest.get_modpath("moretrees") and "moretrees:rubber_tree_planks" or "default:wood"
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:bronze_dust 8",             "technic:copper_dust 7",       "technic:tin_dust"      },
   { "technic:stainless_steel_dust 5",    "technic:wrought_iron_dust 4", "technic:chromium_dust" },
   { "technic:brass_dust 3",              "technic:copper_dust 2",       "technic:zinc_dust"     },
   { "moretrees:rubber_tree_trunk_empty", rubber_tree_planks.." 4",      "technic:raw_latex"     },
   { "moretrees:rubber_tree_trunk",       rubber_tree_planks.." 4",      "technic:raw_latex"     },
   { "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
@@ -26,6 +31,10 @@
   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] } })
   technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } })
end