Rezepte angepasst, Nahrungspunkte hinzugefügt

This commit is contained in:
N-Nachtigal 2025-05-13 22:33:52 +02:00
parent 9dbc0b2ba1
commit df69eb154c
8 changed files with 33 additions and 33 deletions

View file

@ -550,7 +550,7 @@ minetest.register_node("naturalbiomes:banana_bunch", {
},
groups = {
fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1, winleafdecay_drop = 1, winleafdecay = 3
leafdecay = 1, leafdecay_drop = 1, winleafdecay_drop = 1, winleafdecay = 3, eatable = 6
},
drop = "naturalbiomes:banana_bunch",
on_use = minetest.item_eat(6),
@ -590,7 +590,7 @@ minetest.register_node("naturalbiomes:banana", {
},
groups = {
food_banana = 1, fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1
leafdecay = 1, leafdecay_drop = 1, eatable = 2
},
drop = "naturalbiomes:banana",
on_use = minetest.item_eat(2),
@ -617,7 +617,7 @@ minetest.register_node("naturalbiomes:coconut_slice", {
},
groups = {
food_banana = 1, fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1
leafdecay = 1, leafdecay_drop = 1, eatable = 2
},
drop = "naturalbiomes:naturalbiomes:coconut_slice",
on_use = minetest.item_eat(2),
@ -645,7 +645,7 @@ minetest.register_node("naturalbiomes:coconut", {
},
groups = {
fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1, winleafdecay_drop = 1, winleafdecay = 3
leafdecay = 1, leafdecay_drop = 1, winleafdecay_drop = 1, winleafdecay = 3, eatable = 6
},
drop = "naturalbiomes:coconut",
on_use = minetest.item_eat(6),