3 Mods hinzugefügt, Fehlende Nahrungspunkteangaben im Inventar ergänzt, falsche Nahrungspunkte berichtigt

This commit is contained in:
N-Nachtigal 2025-05-13 18:57:15 +02:00
parent 763ba03e6c
commit 23dda4593a
151 changed files with 6445 additions and 109 deletions

View file

@ -1,7 +1,7 @@
minetest.register_craftitem("sandwiches:cooked_salmon", {
description = "Cooked Salmon",
on_use = minetest.item_eat(4),
groups = {food = 4, food_fish_cooked = 1, food_salmon = 1, flammable = 1},
groups = {food = 4, food_fish_cooked = 1, food_salmon = 1, flammable = 1, eatable = 4},
inventory_image = "sandwiches_salmon_cooked.png"
})
minetest.register_craft({
@ -21,7 +21,7 @@ if minetest.global_exists("farming") and farming.mod == "redo" then
minetest.register_craftitem("sandwiches:lox_sandwich", {
description = "Lox sandwich",
on_use = minetest.item_eat(12, "sandwiches:bread_crumbs"),
groups = {food = 12, food_sandwich = 1, flammable = 1},
groups = {food = 12, food_sandwich = 1, flammable = 1, eatable = 12},
inventory_image = "lox_sandwich.png"
})
minetest.register_craft({
@ -40,7 +40,7 @@ if sandwiches.ingredient_support.meat then
minetest.register_craftitem("sandwiches:cooked_trout", {
description = "Cooked Trout",
on_use = minetest.item_eat(4),
groups = {food = 4, food_fish_cooked = 1, food_trout = 1, flammable = 1},
groups = {food = 4, food_fish_cooked = 1, food_trout = 1, flammable = 1, eatable = 4},
inventory_image = "sandwiches_trout_cooked.png"
})
minetest.register_craft({
@ -53,7 +53,7 @@ minetest.register_craft({
minetest.register_craftitem("sandwiches:trout_sandwich", {
description = "Trout sandwich",
on_use = minetest.item_eat(13, "sandwiches:bread_crumbs"),
groups = {food = 13, food_sandwich = 1, flammable = 1},
groups = {food = 13, food_sandwich = 1, flammable = 1, eatable = 13},
inventory_image = "trout_sandwich.png"
})
minetest.register_craft({