crafts.lua 338 B

12345678910111213141516171819202122232425
  1. minetest.register_craft(
  2. {
  3. output = "maple:maple_wood 4",
  4. recipe = {
  5. {"maple:maple_tree"}
  6. }
  7. }
  8. )
  9. minetest.register_craft(
  10. {
  11. type = "fuel",
  12. recipe = "maple:maple_sapling",
  13. burntime = 12
  14. }
  15. )
  16. minetest.register_craft(
  17. {
  18. type = "fuel",
  19. recipe = "maple:fence_maple_wood",
  20. burntime = 8
  21. }
  22. )