Make nether plants pottable

This commit is contained in:
3raven 2022-03-06 22:47:37 +00:00
parent d4b75ebb44
commit 1db1d0126e
1 changed files with 26 additions and 0 deletions

View File

@ -214,3 +214,29 @@ mcl_flowerpots.register_potted_flower("mcl_core:deadbush", {
desc = S("Dead Bush"),
image = "default_dry_shrub.png",
})
-- Add the possibility to pot nether fungi and roots, depend to mcl_mushroom
mcl_flowerpots.register_potted_flower("mcl_mushroom:warped_fungus", {
name = "warped_fungus",
desc = S("Warped Fungus Mushroom"),
image = "farming_warped_fungus.png",
})
mcl_flowerpots.register_potted_flower("mcl_mushroom:crimson_fungus", {
name = "crimson_fungus",
desc = S("Crimson Fungus Mushroom"),
image = "farming_crimson_fungus.png",
})
mcl_flowerpots.register_potted_flower("mcl_mushroom:warped_roots", {
name = "warped_roots",
desc = S("Warped Roots"),
image = "warped_roots.png",
})
mcl_flowerpots.register_potted_flower("mcl_mushroom:crimson_roots", {
name = "crimson_roots",
desc = S("Crimson Roots"),
image = "crimson_roots.png",
})