mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 00:21:07 +01:00
Add potted azaleas
This commit is contained in:
parent
4fcc7da417
commit
f26d46f31b
2 changed files with 14 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
mcl_lush_caves = {}
|
mcl_lush_caves = {}
|
||||||
local modname = minetest.get_current_modname()
|
local modname = minetest.get_current_modname()
|
||||||
local modpath = minetest.get_modpath(modname)
|
local modpath = minetest.get_modpath(modname)
|
||||||
|
local S = minetest.get_translator(modname)
|
||||||
|
|
||||||
local PARTICLE_DISTANCE = 25
|
local PARTICLE_DISTANCE = 25
|
||||||
|
|
||||||
|
@ -219,3 +220,15 @@ minetest.register_craft({
|
||||||
recipe = "mcl_lush_caves:azalea_flowering",
|
recipe = "mcl_lush_caves:azalea_flowering",
|
||||||
burntime = 5,
|
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",
|
||||||
|
})
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
name = mcl_lush_caves
|
name = mcl_lush_caves
|
||||||
author = cora
|
author = cora
|
||||||
depends = mcl_util, mcl_structures
|
depends = mcl_util, mcl_structures, mcl_trees, mcl_flowerpots
|
||||||
|
|
Loading…
Reference in a new issue