Add various factoids and complete some food help

This commit is contained in:
Wuzzy 2017-03-18 17:18:12 +01:00
parent 14a5d7803f
commit c2fbe2ad55
13 changed files with 101 additions and 8 deletions

View file

@ -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({