fishes.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. -----------------------------------------------------------------------------------------------
  2. -- Fish
  3. -----------------------------------------------------------------------------------------------
  4. minetest.register_craftitem("fishing:fish_raw", {
  5. description = "Fish",
  6. groups = {},
  7. inventory_image = "fishing_fish.png",
  8. on_use = minetest.item_eat(2),
  9. })
  10. -----------------------------------------------------------------------------------------------
  11. -- Roasted Fish
  12. -----------------------------------------------------------------------------------------------
  13. minetest.register_craftitem("fishing:fish", {
  14. description = "Roasted Fish",
  15. groups = {},
  16. inventory_image = "fishing_fish_cooked.png",
  17. on_use = minetest.item_eat(4),
  18. })
  19. -----------------------------------------------------------------------------------------------
  20. -- Sushi
  21. -----------------------------------------------------------------------------------------------
  22. minetest.register_craftitem("fishing:sushi", {
  23. description = "Sushi (Hoso Maki)",
  24. groups = {},
  25. inventory_image = "fishing_sushi.png",
  26. on_use = minetest.item_eat(8),
  27. })