Rezepte angepasst
This commit is contained in:
parent
f7bc25a670
commit
3e84ea756b
3 changed files with 19 additions and 19 deletions
|
@ -102,7 +102,7 @@ local function register_egg(name, def)
|
|||
description = "Fried " .. def.description,
|
||||
inventory_image = def.inventory_image .. "_fried.png",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food_egg = 1, flammable = 2},
|
||||
groups = {food_egg = 1, flammable = 2, food_egg_fried = 1},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -180,7 +180,7 @@ minetest.register_craftitem("animalia:beef_raw", {
|
|||
description = "Raw Beef",
|
||||
inventory_image = "animalia_beef_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_meat_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:beef_cooked", {
|
||||
|
@ -200,7 +200,7 @@ minetest.register_craftitem("animalia:mutton_raw", {
|
|||
description = "Raw Mutton",
|
||||
inventory_image = "animalia_mutton_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_meat_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:mutton_cooked", {
|
||||
|
@ -220,7 +220,7 @@ minetest.register_craftitem("animalia:rat_raw", {
|
|||
description = "Raw Rat",
|
||||
inventory_image = "animalia_rat_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_meat_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:rat_cooked", {
|
||||
|
@ -240,7 +240,7 @@ minetest.register_craftitem("animalia:porkchop_raw", {
|
|||
description = "Raw Porkchop",
|
||||
inventory_image = "animalia_porkchop_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_meat_raw = 1, food_pork_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:porkchop_cooked", {
|
||||
|
@ -260,14 +260,14 @@ minetest.register_craftitem("animalia:poultry_raw", {
|
|||
description = "Raw Poultry",
|
||||
inventory_image = "animalia_poultry_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_chicken_raw = 1, food_meat_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:poultry_cooked", {
|
||||
description = "Cooked Poultry",
|
||||
inventory_image = "animalia_poultry_cooked.png",
|
||||
on_use = minetest.item_eat(6),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_chicken = 1},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -280,7 +280,7 @@ minetest.register_craftitem("animalia:venison_raw", {
|
|||
description = "Raw Venison",
|
||||
inventory_image = "animalia_venison_raw.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1},
|
||||
groups = {flammable = 2, meat = 1, food_meat = 1, food_meat_raw = 1},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("animalia:venison_cooked", {
|
||||
|
@ -793,4 +793,4 @@ minetest.register_on_craft(function(itemstack, _, old_craft_grid)
|
|||
end
|
||||
end
|
||||
end
|
||||
end)
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue