Add furnace and sponge help texts

This commit is contained in:
Wuzzy 2017-03-10 23:48:03 +01:00
parent 12c3119596
commit 4f7196a7e8
2 changed files with 4 additions and 0 deletions

View File

@ -270,6 +270,8 @@ end
minetest.register_node("mcl_furnaces:furnace", {
description = "Furnace",
_doc_items_longdesc = "Furnaces cook or smelt several items, using a furnace fuel, into something else.",
_doc_items_usagehelp = "Right-click the furnace to view it. Place a furnace fuel in the lower slot and the source material in the upper slot. The furnace will slowly use its fuel to smelt the item. The result will be placed into the output slot at the right side.",
tiles = {
"default_furnace_top.png", "default_furnace_bottom.png",
"default_furnace_side.png", "default_furnace_side.png",

View File

@ -18,6 +18,7 @@ end
minetest.register_node("mcl_sponges:sponge", {
description = "Sponge",
_doc_items_longdesc = "Sponges are blocks which remove water around them when they are placed or come in contact with water, turning it into a wet sponge.",
drawtype = "normal",
is_ground_content = false,
tiles = {"mcl_sponges_sponge.png"},
@ -74,6 +75,7 @@ minetest.register_node("mcl_sponges:sponge", {
minetest.register_node("mcl_sponges:sponge_wet", {
description = "Wet Sponge",
_doc_items_longdesc = "Wet sponges can be dried in the furnace to turn it into (dry) sponge. When there's an empty bucket in the fuel slot of a furnace, water will pour into the bucket.",
drawtype = "normal",
is_ground_content = false,
tiles = {"mcl_sponges_sponge_wet.png"},