TechDudie
2021-02-09 43acec290067f9aca534647d46ba1f13cfeb377a
technic/crafts.lua
@@ -7,6 +7,13 @@
   type = "shapeless",
   output = "default:bronze_ingot"
})
-- Restore recipe for bronze block to ingots
minetest.register_craft({
   output = "default:bronze_ingot 9",
   recipe = {
      {"default:bronzeblock"}
   }
})
-- Accelerator tube
if pipeworks.enable_accelerator_tube then
@@ -167,7 +174,6 @@
   },
})
minetest.register_craft({
   output = "default:dirt 2",
   type = "shapeless",
@@ -179,3 +185,25 @@
      "group:sand",
   },
})
minetest.register_craft({
   output = "technic:rubber_goo",
   type = "shapeless",
   recipe = {
      "technic:raw_latex",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
      "default:coal_lump",
   },
})
minetest.register_craft({
   output = "technic:rubber",
   type = "cooking",
   recipe = "technic:rubber_goo",
})