Add various factoids and complete some food help
This commit is contained in:
parent
14a5d7803f
commit
c2fbe2ad55
13 changed files with 101 additions and 8 deletions
|
@ -104,10 +104,11 @@ minetest.register_craftitem("mcl_farming:carrot_item", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
|
||||
description = "Golden Carrot",
|
||||
_doc_items_longdesc = "This is a food item which can be eaten for 6 hunger points.",
|
||||
inventory_image = "farming_carrot_gold.png",
|
||||
on_place = minetest.item_eat(3),
|
||||
on_secondary_use = minetest.item_eat(3),
|
||||
groups = { brewitem = 1, food = 2, eatable = 3 },
|
||||
on_place = minetest.item_eat(6),
|
||||
on_secondary_use = minetest.item_eat(6),
|
||||
groups = { brewitem = 1, food = 2, eatable = 6 },
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
|
@ -108,6 +108,7 @@ mcl_farming:add_gourd("mcl_farming:melontige_unconnect", "mcl_farming:melontige_
|
|||
minetest.register_craftitem("mcl_farming:melon_item", {
|
||||
-- Original name: “Melon”
|
||||
description = "Melon Slice",
|
||||
_doc_items_longdesc = "This is a food item which can be eaten for 2 hunger points.",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_melon.png",
|
||||
on_place = minetest.item_eat(2),
|
||||
|
|
|
@ -95,7 +95,6 @@ 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 healthy. Eating it will only poison you.",
|
||||
_doc_items_usagehelp = "Hold it in your hand and rightclick to eat it. But why would you want to do this?",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_poison.png",
|
||||
-- TODO: Cause status effects
|
||||
|
|
|
@ -139,6 +139,7 @@ minetest.register_craft({
|
|||
|
||||
minetest.register_craftitem("mcl_farming:cookie", {
|
||||
description = "Cookie",
|
||||
_doc_items_longdesc = "This is a food item which can be eaten for 2 hunger points.",
|
||||
inventory_image = "farming_cookie.png",
|
||||
groups = {food=2, eatable=2},
|
||||
on_place = minetest.item_eat(2),
|
||||
|
@ -148,6 +149,7 @@ minetest.register_craftitem("mcl_farming:cookie", {
|
|||
|
||||
minetest.register_craftitem("mcl_farming:bread", {
|
||||
description = "Bread",
|
||||
_doc_items_longdesc = "This is a food item which can be eaten for 5 hunger points.",
|
||||
inventory_image = "farming_bread.png",
|
||||
groups = {food=2, eatable=5},
|
||||
on_place = minetest.item_eat(5),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue