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
|
@ -115,7 +115,6 @@ if minetest.get_modpath("moretrees") and sandwiches.ingredient_support.choco the
|
|||
dofile(sandwiches.path .. "/luas/nutella.lua")
|
||||
end
|
||||
|
||||
|
||||
if minetest.get_modpath("bushes_classic") or sandwiches.ingredient_support.berry then
|
||||
|
||||
-- BREAD PUDDING --
|
||||
|
|
|
@ -4,7 +4,7 @@ if minetest.global_exists("farming") and farming.mod == "redo" then -- need pe
|
|||
minetest.register_craftitem("sandwiches:hamwich", {
|
||||
description = "Hamwich",
|
||||
on_use = minetest.item_eat(11, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 11},
|
||||
inventory_image = "hamwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -21,7 +21,7 @@ end
|
|||
minetest.register_craftitem("sandwiches:jerky_sandwich", {
|
||||
description = "Jerky sandwich",
|
||||
on_use = minetest.item_eat(11, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 11},
|
||||
inventory_image = "jerky_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
|
@ -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")
|
||||
|
|
|
@ -3,28 +3,28 @@
|
|||
minetest.register_craftitem("sandwiches:strawberry_jam", {
|
||||
description = "Strawberry jam",
|
||||
on_use = minetest.item_eat(2),
|
||||
groups = {food_jam = 1, },
|
||||
groups = {food_jam = 1, eatable = 2},
|
||||
inventory_image = "strawberry_jam.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("sandwiches:strawberry_jam_sandwich", {
|
||||
description = "Strawberry Jam Sandwich",
|
||||
on_use = minetest.item_eat(7, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 7},
|
||||
inventory_image = "strawberry_jam_sandwich.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("sandwiches:banana_and_chocolate_sandwich", {
|
||||
description = "Banana and chocolate sandwich",
|
||||
on_use = minetest.item_eat(7, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 7},
|
||||
inventory_image = "banana_and_chocolate_sandwich.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("sandwiches:elvis_sandwich", {
|
||||
description = "Elvis sandwich",
|
||||
on_use = minetest.item_eat(8, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 8},
|
||||
inventory_image = "elvis_sandwich.png"
|
||||
})
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
minetest.register_craftitem("sandwiches:cooked_salmon", {
|
||||
description = "Cooked Salmon",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food = 4, food_fish_cooked = 1, food_salmon = 1, flammable = 1},
|
||||
groups = {food = 4, food_fish_cooked = 1, food_salmon = 1, flammable = 1, eatable = 4},
|
||||
inventory_image = "sandwiches_salmon_cooked.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -21,7 +21,7 @@ if minetest.global_exists("farming") and farming.mod == "redo" then
|
|||
minetest.register_craftitem("sandwiches:lox_sandwich", {
|
||||
description = "Lox sandwich",
|
||||
on_use = minetest.item_eat(12, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 12, food_sandwich = 1, flammable = 1},
|
||||
groups = {food = 12, food_sandwich = 1, flammable = 1, eatable = 12},
|
||||
inventory_image = "lox_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -40,7 +40,7 @@ if sandwiches.ingredient_support.meat then
|
|||
minetest.register_craftitem("sandwiches:cooked_trout", {
|
||||
description = "Cooked Trout",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food = 4, food_fish_cooked = 1, food_trout = 1, flammable = 1},
|
||||
groups = {food = 4, food_fish_cooked = 1, food_trout = 1, flammable = 1, eatable = 4},
|
||||
inventory_image = "sandwiches_trout_cooked.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -53,7 +53,7 @@ minetest.register_craft({
|
|||
minetest.register_craftitem("sandwiches:trout_sandwich", {
|
||||
description = "Trout sandwich",
|
||||
on_use = minetest.item_eat(13, "sandwiches:bread_crumbs"),
|
||||
groups = {food = 13, food_sandwich = 1, flammable = 1},
|
||||
groups = {food = 13, food_sandwich = 1, flammable = 1, eatable = 13},
|
||||
inventory_image = "trout_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -15,14 +15,14 @@ minetest.register_node("sandwiches:noyella_block", {
|
|||
minetest.register_craftitem("sandwiches:noyella_sandwich", {
|
||||
description = "noyella sandwich",
|
||||
on_use = minetest.item_eat(8, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 8},
|
||||
inventory_image = "noyella_sandwich.png"
|
||||
})
|
||||
|
||||
minetest.register_craftitem("sandwiches:noyella_spread", {
|
||||
description = "Noyella spread",
|
||||
on_use = minetest.item_eat(2),
|
||||
groups = {food_nutella = 1, food_noyella = 1, food_chocolate_spead = 1, flammable = 1},
|
||||
groups = {food_nutella = 1, food_noyella = 1, food_chocolate_spead = 1, flammable = 1, eatable = 2},
|
||||
inventory_image = "noyella_spread.png"
|
||||
})
|
||||
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -18,7 +18,7 @@ minetest.register_craftitem("sandwiches:po_boy_sandwich", {
|
|||
description = "Po\'boy 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 = "po_boy_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue