remove acacia from desert area and add big cactus from paramat
This commit is contained in:
parent
ecd0a23ed9
commit
905e8d7e1e
@ -504,7 +504,7 @@ end
|
|||||||
-- redwood tree
|
-- redwood tree
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"bakedclay:red"}, --"bakedclay:orange"},
|
place_on = {"bakedclay:red"},
|
||||||
sidelen = 80,
|
sidelen = 80,
|
||||||
fill_ratio = 0.01,
|
fill_ratio = 0.01,
|
||||||
biomes = {"mesa"},
|
biomes = {"mesa"},
|
||||||
@ -648,14 +648,25 @@ minetest.register_decoration({
|
|||||||
-- acacia tree
|
-- acacia tree
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
place_on = {"default:desert_sand", "default:dirt_with_dry_grass"},
|
place_on = {"default:dirt_with_dry_grass"},
|
||||||
sidelen = 80,
|
sidelen = 80,
|
||||||
fill_ratio = 0.004,
|
fill_ratio = 0.004,
|
||||||
biomes = {"desert", "savannah"},
|
biomes = {"savannah"},
|
||||||
schematic = path.."acaciatree.mts",
|
schematic = path.."acaciatree.mts",
|
||||||
flags = "place_center_x, place_center_z",
|
flags = "place_center_x, place_center_z",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- big cactus
|
||||||
|
minetest.register_decoration({
|
||||||
|
deco_type = "schematic",
|
||||||
|
place_on = {"default:desert_sand"},
|
||||||
|
sidelen = 80,
|
||||||
|
fill_ratio = 0.004,
|
||||||
|
biomes = {"desert"},
|
||||||
|
schematic = path.."large_cactus.mts",
|
||||||
|
flags = "place_center_x, place_center_z",
|
||||||
|
})
|
||||||
|
|
||||||
-- big old tree
|
-- big old tree
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "schematic",
|
deco_type = "schematic",
|
||||||
|
BIN
schematics/large_cactus.mts
Normal file
BIN
schematics/large_cactus.mts
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user