cloaks.lua 700 B

123456789101112131415161718192021222324252627
  1. minetest.register_tool("lottclothes:cloak_ranger", {
  2. description = "Ranger's Cloak",
  3. inventory_image = "lottclothes_inv_cloak_ranger.png",
  4. groups = {armor_heal=0, clothes=1, no_preview = 1, clothes_cloak=1},
  5. wear = 0
  6. })
  7. minetest.register_craft({
  8. output = 'lottclothes:flaxthread 2',
  9. recipe = {
  10. {'lottclothes:cloak_ranger'},
  11. }
  12. })
  13. minetest.register_tool("lottclothes:cloak_mordor", {
  14. description = "Mordor Cloak",
  15. inventory_image = "lottclothes_inv_cloak_mordor.png",
  16. groups = {armor_heal=0, clothes=1, no_preview = 1, clothes_cloak=1},
  17. wear = 0
  18. })
  19. minetest.register_craft({
  20. output = 'lottclothes:flaxthread 2',
  21. recipe = {
  22. {'lottclothes:cloak_mordor'},
  23. }
  24. })