mirror of
https://github.com/rubenwardy/food.git
synced 2025-07-22 16:50:23 +02:00
Added Food Group
This commit is contained in:
@ -55,18 +55,21 @@ minetest.register_craftitem("food:cake", {
|
||||
description = "Cake",
|
||||
inventory_image = "food_cake.png",
|
||||
on_use = minetest.item_eat(30),
|
||||
groups={food=3},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("food:cake_chocolate", {
|
||||
description = "Chocolate Cake",
|
||||
inventory_image = "food_cake_choco.png",
|
||||
on_use = minetest.item_eat(40),
|
||||
groups={food=3},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("food:cake_carrot", {
|
||||
description = "Carrot Cake",
|
||||
inventory_image = "food_cake_carrot.png",
|
||||
on_use = minetest.item_eat(40),
|
||||
groups={food=3},
|
||||
})
|
||||
|
||||
|
||||
|
@ -14,6 +14,7 @@ minetest.register_craftitem("food:crumble_rhubarb", {
|
||||
description = "Rhubarb Crumble",
|
||||
inventory_image = "food_crumble_rhubarb.png",
|
||||
on_use = minetest.item_eat(30),
|
||||
groups={food=3},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("food:crumble_rhubarb_raw", {
|
||||
|
@ -14,6 +14,7 @@ minetest.register_craftitem("food:tart_strawberry", {
|
||||
description = "Strawberry Tart",
|
||||
inventory_image = "food_tart_strawberry.png",
|
||||
on_use = minetest.item_eat(30),
|
||||
groups={food=3},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("food:tart_base", {
|
||||
|
Reference in New Issue
Block a user