crafting.lua 422 B

12345678910111213141516
  1. minetest.register_craft({
  2. output = "factory:smoke_tube",
  3. recipe = {
  4. {"default:steel_ingot", "", "default:steel_ingot"},
  5. {"default:steel_ingot", "", "default:steel_ingot"},
  6. {"default:steel_ingot", "", "default:steel_ingot"}
  7. }
  8. })
  9. minetest.register_craft({
  10. output = 'factory:factory_brick 6',
  11. recipe = {
  12. {'factory:factory_lump', 'factory:factory_lump'},
  13. {'factory:factory_lump', 'factory:factory_lump'},
  14. }
  15. })