init.lua 479 B

123456789101112131415161718192021
  1. minetest.register_craftitem("fur:small_pelt", {
  2. description = "Small Pelt",
  3. stack_max = 9,
  4. inventory_image = "fur_small_pelt.png",
  5. groups = {fur = 1},
  6. })
  7. minetest.register_craftitem("fur:medium_pelt", {
  8. description = "Medium Pelt",
  9. stack_max = 4,
  10. inventory_image = "fur_medium_pelt.png",
  11. groups = {fur = 2},
  12. })
  13. minetest.register_craftitem("fur:large_pelt", {
  14. description = "Large Pelt",
  15. stack_max = 1,
  16. inventory_image = "fur_large_pelt.png",
  17. groups = {fur = 3},
  18. })