ettenmoor.lua 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. -- outfit from the ettenmoor region. wizard style (as possible).
  2. -- made from grey and brown felt & gold ingot.
  3. -- it's difficult to make because dye:brown, dye:grey and lottores:gold.
  4. -- hasn't got boots.
  5. local level=4
  6. -- hood (head)
  7. minetest.register_tool("lottclothes:hood_ettenmoor", {
  8. description = "Ettenmoor Hood",
  9. inventory_image = "lottclothes_inv_hood_ettenmoor.png",
  10. groups = {armor_head=0, armor_heal=0, clothes=1, clothes_head=1},
  11. wear = 0
  12. })
  13. minetest.register_craft({
  14. output = "lottclothes:hood_ettenmoor",
  15. recipe = {
  16. {"lottclothes:felt_grey", "lottclothes:felt_grey", "lottclothes:felt_grey"},
  17. {"lottclothes:felt_grey", "", "lottclothes:felt_grey"},
  18. {"", "",""}
  19. }
  20. })
  21. minetest.register_craft({
  22. output = 'lottclothes:feltthread 5',
  23. recipe = {
  24. {'lottclothes:hood_ettenmoor'},
  25. }
  26. })
  27. -- robe (torso (yeah limitations suck))
  28. minetest.register_tool("lottclothes:robe_ettenmoor", {
  29. description = "Ettenmoor Robe",
  30. inventory_image = "lottclothes_inv_robe_ettenmoor.png",
  31. groups = {armor_torso=0, armor_heal=0, clothes=1, clothes_torso=1},
  32. wear = 0
  33. })
  34. minetest.register_craft({
  35. output = "lottclothes:robe_ettenmoor",
  36. recipe = {
  37. {"lottclothes:felt_grey", "", "lottclothes:felt_grey"},
  38. {"lottclothes:felt_grey", "lottclothes:felt_grey", "lottclothes:felt_grey"},
  39. {"lottclothes:felt_brown", "default:gold_ingot", "lottclothes:felt_brown"}
  40. }
  41. })
  42. minetest.register_craft({
  43. output = 'lottclothes:feltthread 7',
  44. recipe = {
  45. {'lottclothes:robe_ettenmoor'},
  46. }
  47. })
  48. -- trousers (legs)
  49. minetest.register_tool("lottclothes:trousers_ettenmoor", {
  50. description = "Ettenmoor Trousers",
  51. inventory_image = "lottclothes_inv_trousers_ettenmoor.png",
  52. groups = {armor_legs=0, armor_heal=0, clothes=1, clothes_legs=1},
  53. wear = 0
  54. })
  55. minetest.register_craft({
  56. output = "lottclothes:trousers_ettenmoor",
  57. recipe = {
  58. {"lottclothes:felt_grey", "lottclothes:felt_grey", "lottclothes:felt_grey"},
  59. {"lottclothes:felt_grey", "" , "lottclothes:felt_grey"},
  60. {"lottclothes:felt_grey", "" , "lottclothes:felt_grey"}
  61. }
  62. })
  63. minetest.register_craft({
  64. output = 'lottclothes:feltthread 7',
  65. recipe = {
  66. {'lottclothes:trousers_ettenmoor'},
  67. }
  68. })