Add help texts for flower pots and Nether stuff

This commit is contained in:
Wuzzy 2017-03-10 04:59:36 +01:00
parent 3153538d0f
commit b365886c4b
2 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,8 @@ local cubes = {
minetest.register_node("mcl_flowerpots:flower_pot", {
description = "Flower Pot",
_doc_items_longdesc = "Flower pots are decorational blocks in which flowers and other small plants can be placed.",
_doc_items_usagehelp = "Rightclick an empty flower pot while you wield a plant to place the plant. Flower pots can hold small flowers (not higher than 1 block), saplings, ferns, dead bushes and cacti. Rightclick a potted plant to retrieve the plant.",
drawtype = "mesh",
mesh = "flowerpot.obj",
tiles = {

View File

@ -44,6 +44,7 @@ minetest.register_node("mcl_nether:netherrack", {
minetest.register_node("mcl_nether:magma", {
description = "Magma Block",
_doc_items_longdesc = "Magma blocks are hot solid blocks which hurt anyone standing on it, unless they have fire resistance.",
stack_max = 64,
tiles = {{name="mcl_nether_magma.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.5}}},
is_ground_content = true,
@ -62,6 +63,7 @@ minetest.register_node("mcl_nether:magma", {
minetest.register_node("mcl_nether:soul_sand", {
description = "Soul Sand",
_doc_items_longdesc = "Soul sand is a block from the Nether. One can only slowly walk on soul sand. The slowing effect is amplified when the soul sand is on top of ice, packed ice or a slime block.",
stack_max = 64,
tiles = {"mcl_nether_soul_sand.png"},
is_ground_content = true,