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
|
@ -10,7 +10,7 @@ end
|
|||
minetest.register_craftitem("sandwiches:tasty_asparagus_sandwich", {
|
||||
description = "Tasty asparagus sandwich",
|
||||
on_use = minetest.item_eat(7, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 7, food_sandwich = 1, food_vegan = 1},
|
||||
groups = {food = 7, food_sandwich = 1, food_vegan = 1, eatable = 7},
|
||||
inventory_image = "tasty_asparagus_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -27,7 +27,7 @@ if sandwiches.ingredient_support.meat then
|
|||
minetest.register_craftitem("sandwiches:ham_and_asparagus_sandwich", {
|
||||
description = "Ham and asparagus sandwich",
|
||||
on_use = minetest.item_eat(7, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 7, food_sandwich = 1},
|
||||
groups = {food = 7, food_sandwich = 1, eatable = 7},
|
||||
inventory_image = "ham_and_asparagus_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -42,7 +42,7 @@ if sandwiches.ingredient_support.meat then
|
|||
minetest.register_craftitem("sandwiches:club_sandwich", {
|
||||
description = "Club sandwich",
|
||||
on_use = minetest.item_eat(18, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 18, food_sandwich = 1, },
|
||||
groups = {food = 18, food_sandwich = 1, eatable = 18},
|
||||
inventory_image = "club_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -60,7 +60,7 @@ end -- if ham is present
|
|||
minetest.register_craftitem("sandwiches:tasty_tofu_sandwich", {
|
||||
description = "Tofu and asparagus sandwich",
|
||||
on_use = minetest.item_eat(8, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 8, food_sandwich = 1, food_vegan = 1},
|
||||
groups = {food = 8, food_sandwich = 1, food_vegan = 1, eatable = 8},
|
||||
inventory_image = "tasty_tofu_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -75,7 +75,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:tofu_sandwich", {
|
||||
description = "Tofu sandwich",
|
||||
on_use = minetest.item_eat(7, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 7, food_sandwich = 1, food_vegan = 1},
|
||||
groups = {food = 7, food_sandwich = 1, food_vegan = 1, eatable = 7},
|
||||
inventory_image = "tofu_sandwich.png"
|
||||
})
|
||||
|
||||
|
@ -91,7 +91,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:gourmet_sandwich", {
|
||||
description = "Gourmet sandwich",
|
||||
on_use = minetest.item_eat(12, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 12, food_sandwich = 1},
|
||||
groups = {food = 12, food_sandwich = 1, eatable = 12},
|
||||
inventory_image = "gourmet_vegan_sandwich.png"
|
||||
})
|
||||
minetest.register_alias("sandwiches:gourmet_meat_sandwich", "sandwiches:gourmet_sandwich")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue