3 Mods hinzugefügt, Fehlende Nahrungspunkteangaben im Inventar ergänzt, falsche Nahrungspunkte berichtigt
This commit is contained in:
parent
763ba03e6c
commit
23dda4593a
151 changed files with 6445 additions and 109 deletions
|
@ -6,14 +6,14 @@ end
|
|||
minetest.register_craftitem("sandwiches:ham", {
|
||||
description = "Ham",
|
||||
on_use = minetest.item_eat(3),
|
||||
groups = {food = 3, food_ham = 1, food_meat = 1, flammable = 1},
|
||||
groups = {food = 3, food_ham = 1, food_meat = 1, flammable = 1, eatable = 3},
|
||||
inventory_image = "sandwiches_ham.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("sandwiches:chicken_strips", {
|
||||
description = "Chicken strips",
|
||||
on_use = minetest.item_eat(2),
|
||||
groups = {food = 2, food_chicken_strips = 1, food_meat = 1, flammable = 1},
|
||||
groups = {food = 2, food_chicken_strips = 1, food_meat = 1, flammable = 1, eatable = 2},
|
||||
inventory_image = "sandwiches_chicken_strips.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -26,13 +26,13 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:raw_bacon", {
|
||||
description = "Raw Bacon",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {food = 1, food_bacon_raw = 1, food_meat = 1, flammable = 1},
|
||||
groups = {food = 1, food_bacon_raw = 1, food_meat = 1, flammable = 1, eatable = 1},
|
||||
inventory_image = "sandwiches_raw_bacon.png"
|
||||
})
|
||||
minetest.register_craftitem("sandwiches:crispy_bacon", {
|
||||
description = "Crispy Bacon",
|
||||
on_use = minetest.item_eat(3),
|
||||
groups = {food = 3, food_bacon = 1, food_meat = 1, flammable = 1},
|
||||
groups = {food = 3, food_bacon = 1, food_meat = 1, flammable = 1, eatable = 3},
|
||||
inventory_image = "sandwiches_crispy_bacon.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue