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

@ -55,7 +55,7 @@ local donut_def = {
destroy_by_lava_flow = 1,
compostability = 85,
food = 2,
eatable = 1,
eatable = 3,
-- ALL
flammable = 2,
attached_node = 1,
@ -109,7 +109,7 @@ local donut_chocolate_def = {
destroy_by_lava_flow = 1,
compostability = 85,
food = 2,
eatable = 1,
eatable = 4,
-- ALL
flammable = 2,
attached_node = 1,
@ -165,7 +165,7 @@ local fries_def = {
destroy_by_lava_flow = 1,
compostability = 85,
food = 2,
eatable = 1,
eatable = 6,
-- ALL
flammable = 2,
attached_node = 1,
@ -221,7 +221,7 @@ local pumpkin_pie_def = {
destroy_by_lava_flow = 1,
compostability = 100,
food = 2,
eatable = 1,
eatable = 6,
-- ALL
flammable = 2,
attached_node = 1,
@ -327,7 +327,7 @@ local fish_stew_def = {
compost = 100,
-- MCL
food = 3,
eatable = 6,
eatable = 8,
compostability = 100,
handy = 1,
deco_block = 1,

View file

@ -222,7 +222,7 @@ if minetest.get_modpath('farming') then
minetest.register_craftitem("x_farming:pumpkin_slice", {
description = S("Pumpkin Slice"),
inventory_image = "farming_pumpkin_slice.png",
groups = {compostability = 48, food_pumpkin_slice = 1},
groups = {compostability = 48, food_pumpkin_slice = 1, eatable = 2},
on_use = minetest.item_eat(2),
})