Add more Nether block help
This commit is contained in:
parent
61c16df4e4
commit
6480f7b366
2 changed files with 16 additions and 1 deletions
|
@ -16,6 +16,8 @@ minetest.register_node("mcl_nether:nether_wart_0", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_nether:nether_wart_1", {
|
||||
description = "Premature Nether Wart",
|
||||
_doc_items_longdesc = "A premature nether wart has just recently been planted on soul sand. Nether wart slowly grows on soul sand in 3 stages. Although nether wart is home to the Nether, it grows in any dimension.",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
|
@ -33,6 +35,8 @@ minetest.register_node("mcl_nether:nether_wart_1", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_nether:nether_wart_2", {
|
||||
description = "Premature Nether Wart (Stage 2)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
|
@ -50,6 +54,8 @@ minetest.register_node("mcl_nether:nether_wart_2", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_nether:nether_wart", {
|
||||
description = "Mature Nether Wart",
|
||||
_doc_items_longdesc = "Mature nether wart has been grown successfully on soul sand and is ready to be harvested for its items.",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
|
@ -74,7 +80,9 @@ minetest.register_node("mcl_nether:nether_wart", {
|
|||
})
|
||||
|
||||
minetest.register_craftitem("mcl_nether:nether_wart_item", {
|
||||
descripointed_thingption = "Nether Wart",
|
||||
description = "Nether Wart",
|
||||
_doc_items_longdesc = "Nether warts are plants home to the Nether. They can be planted on soul sand and grow in 3 stages.",
|
||||
_doc_items_usagehelp = "Place this item on soul sand to plant it and watch it grow.",
|
||||
inventory_image = "mcl_nether_nether_wart.png",
|
||||
wield_image = "mcl_nether_nether_wart.png",
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue