tidy recipes

This commit is contained in:
FaceDeer 2019-09-02 20:26:27 -06:00
parent ce6f05c336
commit a998fd9d98

@ -183,72 +183,62 @@ minetest.register_craft({
minetest.register_craft({
output = "digtron:soft_digger_static 2",
recipe = {
{"digtron:dual_soft_digger_static"},
}
type = "shapeless",
recipe = {"digtron:dual_soft_digger_static"},
})
minetest.register_craft({
output = "digtron:digger_static 2",
recipe = {
{"digtron:dual_digger_static"},
}
type = "shapeless",
recipe = {"digtron:dual_digger_static"},
})
-- And some recycling reactions to get digtron cores out of the "cheap" parts:
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:structure"},
}
type = "shapeless",
recipe = {"digtron:structure"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:panel"},
}
type = "shapeless",
recipe = {"digtron:panel"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:corner_panel"},
}
type = "shapeless",
recipe = {"digtron:corner_panel"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:edge_panel"},
}
type = "shapeless",
recipe = {"digtron:edge_panel"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:inventory"},
}
type = "shapeless",
recipe = {"digtron:inventory"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:fuelstore"},
}
type = "shapeless",
recipe = {"digtron:fuelstore"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:combined_storage"},
}
type = "shapeless",
recipe = {"digtron:combined_storage"},
})
minetest.register_craft({
output = "digtron:digtron_core",
recipe = {
{"digtron:light"},
}
type = "shapeless",
recipe = {"digtron:light"},
})