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

@ -675,7 +675,7 @@ minetest.register_node("naturalbiomes:blackberry", {
},
groups = {
fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1, food_blackberry = 1
leafdecay = 1, leafdecay_drop = 1, food_blackberry = 1, food_blackberries = 1, eatable = 2
},
drop = "naturalbiomes:blackberry",
on_use = minetest.item_eat(2),
@ -807,7 +807,7 @@ minetest.register_node("naturalbiomes:wildrose", {
},
groups = {
fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1
leafdecay = 1, leafdecay_drop = 1, eatable = 2
},
drop = "naturalbiomes:wildrose",
on_use = minetest.item_eat(2),
@ -938,7 +938,7 @@ minetest.register_node("naturalbiomes:hazelnut", {
},
groups = {
fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 1, leafdecay_drop = 1
leafdecay = 1, leafdecay_drop = 1, eatable = 2
},
drop = "naturalbiomes:hazelnut",
on_use = minetest.item_eat(2),
@ -975,7 +975,7 @@ minetest.register_craftitem("naturalbiomes:hazelnut_cracked", {
description = S("Cracked Hazelnut"),
inventory_image = "naturalbiomes_bushland_hazelnut_cracked.png",
on_use = minetest.item_eat(5),
groups = {food = 1, flammable = 2},
groups = {food = 1, flammable = 2, eatable = 5},
})
xpanes.register_pane("hazelnut_pane", {

View file

@ -807,7 +807,7 @@ minetest.register_node("naturalbiomes:olives", {
},
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:olives",
on_use = minetest.item_eat(6),

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),