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:grilled_hot_cheesy_sandwich", {
|
||||
description = "Grilled hot cheese sandwich",
|
||||
on_use = minetest.item_eat(10, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 10, food_sandwich = 1, food_toasted = 1},
|
||||
groups = {food = 10, food_sandwich = 1, food_toasted = 1, eatable = 10},
|
||||
inventory_image = "grilled_hot_cheesy_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -27,7 +27,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:garlic_bread", {
|
||||
description = "Garlic bread",
|
||||
on_use = minetest.item_eat(4, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 4, food_garlic_bread = 1},
|
||||
groups = {food = 4, food_garlic_bread = 1, eatable = 4},
|
||||
inventory_image = "sandwiches_garlic_bread_slice.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -43,9 +43,10 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:tasty_garlic_sandwich", {
|
||||
description = "Tasty garlic sandwich",
|
||||
on_use = minetest.item_eat(16, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 16, food_sandwich = 1, food_toasted = 1},
|
||||
groups = {food = 16, food_sandwich = 1, food_toasted = 1, eatable = 16},
|
||||
inventory_image = "tasty_garlic_sandwich.png"
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "sandwiches:tasty_garlic_sandwich",
|
||||
recipe = {
|
||||
|
@ -58,7 +59,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:fancy_garlic_sandwich", {
|
||||
description = "Fancy garlic sandwich",
|
||||
on_use = minetest.item_eat(18, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 18, food_sandwich = 1, food_toasted = 1},
|
||||
groups = {food = 18, food_sandwich = 1, food_toasted = 1, eatable = 18},
|
||||
inventory_image = "fancy_garlic_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -81,7 +82,7 @@ if minetest.registered_items["sandwiches:ham"] then
|
|||
minetest.register_craftitem("sandwiches:croque_monsieur", {
|
||||
description = "Croque Monsier",
|
||||
on_use = minetest.item_eat(13, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 13, food_sandwich = 1, food_toasted = 1},
|
||||
groups = {food = 13, food_sandwich = 1, food_toasted = 1, eatable = 13},
|
||||
inventory_image = "croque_monsieur.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -101,7 +102,7 @@ if minetest.registered_items["sandwiches:chicken_strips"] then
|
|||
minetest.register_craftitem("sandwiches:croque_madame", {
|
||||
description = "Croque madame",
|
||||
on_use = minetest.item_eat(16, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 16, food_sandwich = 1, food_toasted = 1},
|
||||
groups = {food = 16, food_sandwich = 1, food_toasted = 1, eatable = 16},
|
||||
inventory_image = "croque_madame.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue