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
|
@ -134,7 +134,7 @@ minetest.register_craftitem("mcl_core:apple", {
|
|||
stack_max = 64,
|
||||
on_place = minetest.item_eat(4),
|
||||
on_secondary_use = minetest.item_eat(4),
|
||||
groups = { food = 2 },
|
||||
groups = { food = 2, eatable = 4 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:apple_gold", {
|
||||
|
@ -145,5 +145,5 @@ minetest.register_craftitem("mcl_core:apple_gold", {
|
|||
stack_max = 64,
|
||||
on_place = minetest.item_eat(8),
|
||||
on_secondary_use = minetest.item_eat(8),
|
||||
groups = { food = 2 },
|
||||
groups = { food = 2, eatable = 8 },
|
||||
})
|
||||
|
|
|
@ -1512,7 +1512,7 @@ minetest.register_node("mcl_core:lava_flowing", {
|
|||
minetest.register_node("mcl_core:lava_source", {
|
||||
description = "Still Lava",
|
||||
_doc_items_entry_name = "Lava",
|
||||
_doc_items_longdesc = "Lava is found deep underground and rather dangerous. Don't touch it, it will hurt you a lot and once you're in, it is hard to get out. Lava will also destroy all dropped items it touches. When a lava source meets water, it turns into obsidian. Flowing lava turns into stone instead.",
|
||||
_doc_items_longdesc = "Lava is found deep underground and rather dangerous. Don't touch it, it will hurt you a lot and once you're in, it is hard to get out. When a lava source meets water, it turns into obsidian. Flowing lava turns into stone instead.",
|
||||
inventory_image = minetest.inventorycube("default_lava.png"),
|
||||
drawtype = "liquid",
|
||||
tiles = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue