forked from VoxeLibre/VoxeLibre
parent
daa455c41b
commit
d01aa36d09
|
@ -94,6 +94,12 @@ minetest.register_node("mcl_crimson:warped_fungus", {
|
|||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:warped_fungus", {
|
||||
name = "warped fungus",
|
||||
desc = S("Warped Fungus Mushroom"),
|
||||
image = "farming_warped_fungus.png",
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_crimson:twisting_vines", {
|
||||
description = S("Twisting Vines"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -226,6 +232,13 @@ minetest.register_node("mcl_crimson:warped_roots", {
|
|||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:warped_roots", {
|
||||
name = "warped roots",
|
||||
desc = S("Warped Roots"),
|
||||
image = "warped_roots.png",
|
||||
})
|
||||
|
||||
|
||||
minetest.register_node("mcl_crimson:warped_wart_block", {
|
||||
description = S("Warped Wart Block"),
|
||||
tiles = {"warped_wart_block.png"},
|
||||
|
@ -395,6 +408,12 @@ minetest.register_node("mcl_crimson:crimson_fungus", {
|
|||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:crimson_fungus", {
|
||||
name = "crimson fungus",
|
||||
desc = S("Crimson Fungus Mushroom"),
|
||||
image = "farming_crimson_fungus.png",
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_crimson:crimson_roots", {
|
||||
description = S("Crimson Roots"),
|
||||
drawtype = "plantlike",
|
||||
|
@ -414,6 +433,12 @@ minetest.register_node("mcl_crimson:crimson_roots", {
|
|||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
mcl_flowerpots.register_potted_flower("mcl_crimson:crimson_roots", {
|
||||
name = "crimson roots",
|
||||
desc = S("Crimson Roots"),
|
||||
image = "crimson_roots.png",
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_crimson:crimson_hyphae", {
|
||||
description = S("Crimson Hyphae"),
|
||||
_doc_items_longdesc = S("The stem of a crimson hyphae"),
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
name = mcl_crimson
|
||||
author = debiankaios
|
||||
depends = mcl_core, mcl_stairs, mobs_mc, mcl_util, mcl_dye
|
||||
depends = mcl_core, mcl_stairs, mobs_mc, mcl_util, mcl_dye, mcl_flowerpots
|
||||
|
|
Loading…
Reference in New Issue