forked from VoxeLibre/VoxeLibre
Add help texts for flower pots and Nether stuff
This commit is contained in:
parent
3153538d0f
commit
b365886c4b
|
@ -28,6 +28,8 @@ local cubes = {
|
||||||
|
|
||||||
minetest.register_node("mcl_flowerpots:flower_pot", {
|
minetest.register_node("mcl_flowerpots:flower_pot", {
|
||||||
description = "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",
|
drawtype = "mesh",
|
||||||
mesh = "flowerpot.obj",
|
mesh = "flowerpot.obj",
|
||||||
tiles = {
|
tiles = {
|
||||||
|
|
|
@ -44,6 +44,7 @@ minetest.register_node("mcl_nether:netherrack", {
|
||||||
|
|
||||||
minetest.register_node("mcl_nether:magma", {
|
minetest.register_node("mcl_nether:magma", {
|
||||||
description = "Magma Block",
|
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,
|
stack_max = 64,
|
||||||
tiles = {{name="mcl_nether_magma.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.5}}},
|
tiles = {{name="mcl_nether_magma.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.5}}},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
|
@ -62,6 +63,7 @@ minetest.register_node("mcl_nether:magma", {
|
||||||
|
|
||||||
minetest.register_node("mcl_nether:soul_sand", {
|
minetest.register_node("mcl_nether:soul_sand", {
|
||||||
description = "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,
|
stack_max = 64,
|
||||||
tiles = {"mcl_nether_soul_sand.png"},
|
tiles = {"mcl_nether_soul_sand.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
|
|
Loading…
Reference in New Issue