mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-08 08:43:51 +01:00
Flowers: Add black tulip, green chrysanthemum
Adds a direct resource of green dye, and a flower resource of black dye. Completes the colour sequence: red, orange, yellow, green, blue, violet. Makes all base dyes cultivatable and sustainable, without the presence of coal. Add the new flowers to the world with the same density variation as the others, but obviously with different noise seeds. Results in more flowers in a world and more variety of flower combinations.
This commit is contained in:
parent
b75a17984a
commit
2c5670563a
@ -26,3 +26,5 @@ yyt16384 (CC BY-SA 3.0):
|
||||
|
||||
paramat (CC BY-SA 3.0):
|
||||
flowers_dandelion_yellow.png -- Derived from RHRhino's texture
|
||||
flowers_tulip_black.png -- Derived from RHRhino's texture
|
||||
flowers_chrysanthemum_green.png
|
||||
|
@ -75,6 +75,12 @@ flowers.datas = {
|
||||
{-4 / 16, -0.5, -4 / 16, 4 / 16, -2 / 16, 4 / 16},
|
||||
{color_yellow = 1, flammable = 1}
|
||||
},
|
||||
{
|
||||
"chrysanthemum_green",
|
||||
"Green Chrysanthemum",
|
||||
{-4 / 16, -0.5, -4 / 16, 4 / 16, -1 / 16, 4 / 16},
|
||||
{color_green = 1, flammable = 1}
|
||||
},
|
||||
{
|
||||
"geranium",
|
||||
"Blue Geranium",
|
||||
@ -93,6 +99,12 @@ flowers.datas = {
|
||||
{-5 / 16, -0.5, -5 / 16, 5 / 16, -2 / 16, 5 / 16},
|
||||
{color_white = 1, flammable = 1}
|
||||
},
|
||||
{
|
||||
"tulip_black",
|
||||
"Black Tulip",
|
||||
{-2 / 16, -0.5, -2 / 16, 2 / 16, 3 / 16, 2 / 16},
|
||||
{color_black = 1, flammable = 1}
|
||||
},
|
||||
}
|
||||
|
||||
for _,item in pairs(flowers.datas) do
|
||||
|
@ -147,9 +147,11 @@ function flowers.register_decorations()
|
||||
register_flower(436, "rose")
|
||||
register_flower(19822, "tulip")
|
||||
register_flower(1220999, "dandelion_yellow")
|
||||
register_flower(800081, "chrysanthemum_green")
|
||||
register_flower(36662, "geranium")
|
||||
register_flower(1133, "viola")
|
||||
register_flower(73133, "dandelion_white")
|
||||
register_flower(42, "tulip_black")
|
||||
|
||||
register_mushroom("mushroom_brown")
|
||||
register_mushroom("mushroom_red")
|
||||
|
BIN
mods/flowers/textures/flowers_chrysanthemum_green.png
Normal file
BIN
mods/flowers/textures/flowers_chrysanthemum_green.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 236 B |
BIN
mods/flowers/textures/flowers_tulip_black.png
Normal file
BIN
mods/flowers/textures/flowers_tulip_black.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 172 B |
Loading…
Reference in New Issue
Block a user