forked from VoxeLibre/VoxeLibre
Add Cornflowers
Evidently I didn't include the lily texture in the lily of the valley commit, so it is in this one. Again, lily of the valley texture by Nicu
This commit is contained in:
parent
ff79af26e4
commit
06f47a0756
|
@ -456,6 +456,11 @@ minetest.register_craft({
|
||||||
recipe = {{"mcl_core:lapis"}},
|
recipe = {{"mcl_core:lapis"}},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_dye:blue",
|
||||||
|
recipe = {{"mcl_flowers:cornflower"}},
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_dye:lightblue",
|
output = "mcl_dye:lightblue",
|
||||||
recipe = {{"mcl_flowers:blue_orchid"}},
|
recipe = {{"mcl_flowers:blue_orchid"}},
|
||||||
|
|
|
@ -72,3 +72,9 @@ mcl_flowers.register_simple_flower("lily_of_the_valley", {
|
||||||
selection_box = { -5/16, -0.5, -5/16, 4/16, 5/16, 5/16 },
|
selection_box = { -5/16, -0.5, -5/16, 4/16, 5/16, 5/16 },
|
||||||
potted = true,
|
potted = true,
|
||||||
})
|
})
|
||||||
|
mcl_flowers.register_simple_flower("cornflower", {
|
||||||
|
desc = S("Cornflower"),
|
||||||
|
image = "mcl_flowers_cornflower.png",
|
||||||
|
selection_box = { -4/16, -0.5, -4/16, 4/16, 3/16, 4/16 },
|
||||||
|
potted = true,
|
||||||
|
})
|
||||||
|
|
|
@ -9,7 +9,7 @@ local flower_effect = {
|
||||||
[ "mcl_flowers:lily_of_the_valley" ] = "poison",
|
[ "mcl_flowers:lily_of_the_valley" ] = "poison",
|
||||||
[ "mcl_flowers:blue_orchid" ] = "hunger",
|
[ "mcl_flowers:blue_orchid" ] = "hunger",
|
||||||
[ "mcl_flowers:dandelion" ] = "hunger",
|
[ "mcl_flowers:dandelion" ] = "hunger",
|
||||||
[ "mcl_flowers:peony" ] = "jump",
|
[ "mcl_flowers:cornflower" ] = "jump",
|
||||||
[ "mcl_flowers:oxeye_daisy" ] = "regeneration",
|
[ "mcl_flowers:oxeye_daisy" ] = "regeneration",
|
||||||
[ "mcl_flowers:poppy" ] = "night_vision"
|
[ "mcl_flowers:poppy" ] = "night_vision"
|
||||||
}
|
}
|
||||||
|
@ -126,7 +126,7 @@ minetest.register_craft({
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "mcl_sus_stew:stew",
|
output = "mcl_sus_stew:stew",
|
||||||
recipe = {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown", "mcl_core:bowl", "mcl_flowers:peony"},
|
recipe = {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown", "mcl_core:bowl", "mcl_flowers:cornflower"},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
|
@ -5289,6 +5289,7 @@ local function register_decorations()
|
||||||
register_flower("blue_orchid", {"Swampland"}, 64500, false)
|
register_flower("blue_orchid", {"Swampland"}, 64500, false)
|
||||||
|
|
||||||
register_flower("lily_of_the_valley", nil, 436)
|
register_flower("lily_of_the_valley", nil, 436)
|
||||||
|
register_flower("cornflower", {"Plains", "SunflowerPlains"}, 536)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Decorations in non-Overworld dimensions
|
-- Decorations in non-Overworld dimensions
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 292 B |
Binary file not shown.
After Width: | Height: | Size: 230 B |
Loading…
Reference in New Issue