mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2024-11-08 19:30:32 +01:00
add potted bonzai and cactus
This commit is contained in:
parent
0f20658a2a
commit
a0c3b2bd42
|
@ -226,19 +226,23 @@ for i in ipairs(algae_list) do
|
|||
end
|
||||
|
||||
-- register all potted plant nodes, crafts, and most backward-compat aliases
|
||||
-- Description, base node name, item to craft flowerpot with
|
||||
|
||||
local flowers_list = {
|
||||
{ "Rose", "rose"},
|
||||
{ "Tulip", "tulip"},
|
||||
{ "Yellow Dandelion", "dandelion_yellow"},
|
||||
{ "White Dandelion", "dandelion_white"},
|
||||
{ "Blue Geranium", "geranium"},
|
||||
{ "Viola", "viola"},
|
||||
{ "Rose", "rose", "flowers:rose" },
|
||||
{ "Tulip", "tulip", "flowers:tulip" },
|
||||
{ "Yellow Dandelion", "dandelion_yellow", "flowers:dandelion_yellow" },
|
||||
{ "White Dandelion", "dandelion_white", "flowers:dandelion_white" },
|
||||
{ "Blue Geranium", "geranium", "flowers:geranium" },
|
||||
{ "Viola", "viola", "flowers:viola" },
|
||||
{ "Cactus", "cactus", "default:cactus" },
|
||||
{ "Bonzai", "bonzai", "default:sapling" }
|
||||
}
|
||||
|
||||
for i in ipairs(flowers_list) do
|
||||
local flowerdesc = flowers_list[i][1]
|
||||
local flower = flowers_list[i][2]
|
||||
local flowerdesc = flowers_list[i][1]
|
||||
local flower = flowers_list[i][2]
|
||||
local craftwith = flowers_list[i][3]
|
||||
|
||||
minetest.register_node(":flowers:potted_"..flower, {
|
||||
description = S("Potted "..flowerdesc),
|
||||
|
@ -261,8 +265,8 @@ for i in ipairs(flowers_list) do
|
|||
type = "shapeless",
|
||||
output = "flowers:potted_"..flower,
|
||||
recipe = {
|
||||
"flowers:flower_pot",
|
||||
"flowers:"..flower
|
||||
craftwith,
|
||||
"flowers:flower_pot"
|
||||
}
|
||||
})
|
||||
|
||||
|
|
BIN
flowers_plus/textures/flowers_potted_bonzai.png
Normal file
BIN
flowers_plus/textures/flowers_potted_bonzai.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 565 B |
BIN
flowers_plus/textures/flowers_potted_cactus.png
Normal file
BIN
flowers_plus/textures/flowers_potted_cactus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 509 B |
Loading…
Reference in New Issue
Block a user