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

@ -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),