crafts.lua 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. steles mod for Minetest. Steles / graves with text on it.
  3. (c) Pierre-Yves Rollo
  4. This file is part of steles.
  5. steles is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. steles is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with steles. If not, see <http://www.gnu.org/licenses/>.
  15. --]]
  16. for _, material in ipairs(steles.materials) do
  17. local parts = material:split(":")
  18. minetest.register_craft({
  19. output = 'steles:'..parts[2]..'_stele 4',
  20. recipe = {
  21. {'', material, ''},
  22. {'', 'dye:black', ''},
  23. {material, material, material},
  24. }
  25. })
  26. end