Update help of all food items
This commit is contained in:
parent
579a6ed6f3
commit
0f4573c594
11 changed files with 36 additions and 34 deletions
|
@ -81,7 +81,7 @@ minetest.register_node("mcl_farming:potato", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:potato_item", {
|
||||
description = "Potato",
|
||||
_doc_items_longdesc = "Potatoes are food items which can be eaten, cooked in the furnace and planted. Eating a potato restores 1 hunger point. Pigs like potatoes.",
|
||||
_doc_items_longdesc = "Potatoes are food items which can be eaten, cooked in the furnace and planted. Pigs like potatoes.",
|
||||
_doc_items_usagehelp = "Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant it. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it.",
|
||||
inventory_image = "farming_potato.png",
|
||||
groups = { food = 2, eatable = 1 },
|
||||
|
@ -100,7 +100,7 @@ minetest.register_craftitem("mcl_farming:potato_item", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:potato_item_baked", {
|
||||
description = "Baked Potato",
|
||||
_doc_items_longdesc = "Baked potatoes are food items which can be eaten for 5 hunger points.",
|
||||
_doc_items_longdesc = "Baked potatoes are food items which are more filling than the unbaked ones.",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_baked.png",
|
||||
on_place = minetest.item_eat(5),
|
||||
|
@ -111,7 +111,7 @@ minetest.register_craftitem("mcl_farming:potato_item_baked", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:potato_item_poison", {
|
||||
description = "Poisonous Potato",
|
||||
_doc_items_longdesc = "This potato doesn't look too healthy. You can eat it for 2 hunger points, but there's a 60% chance it will poison you.",
|
||||
_doc_items_longdesc = "This potato doesn't look too healthy. You can eat it to restore hunger points, but there's a 60% chance it will poison you briefly.",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_poison.png",
|
||||
-- TODO: Cause status effects
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue