1
0
Fork 0

Add potted azaleas

This commit is contained in:
laireia 2023-11-30 21:57:36 +10:00 committed by the-real-herowl
parent 4fcc7da417
commit f26d46f31b
2 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,7 @@
mcl_lush_caves = {}
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local S = minetest.get_translator(modname)
local PARTICLE_DISTANCE = 25
@ -219,3 +220,15 @@ minetest.register_craft({
recipe = "mcl_lush_caves:azalea_flowering",
burntime = 5,
})
mcl_flowerpots.register_potted_flower("mcl_lush_caves:azalea", {
name = "azalea",
desc = S("Azalea Plant"),
image = "mcl_lush_caves_azalea_side.png",
})
mcl_flowerpots.register_potted_flower("mcl_lush_caves:azalea_flowering", {
name = "azalea_flowering",
desc = S("Flowering Azalea Plant"),
image = "mcl_lush_caves_azalea_flowering_side.png",
})

View File

@ -1,3 +1,3 @@
name = mcl_lush_caves
author = cora
depends = mcl_util, mcl_structures
depends = mcl_util, mcl_structures, mcl_trees, mcl_flowerpots