56 lines
1.8 KiB
Lua
56 lines
1.8 KiB
Lua
-----------------------------------------------------------------------------------------------
|
|
-- LiLy PaDS
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
abstract_along_shore.grow_lilypad = function(pos)
|
|
local right_here = {x=pos.x, y=pos.y+1, z=pos.z}
|
|
local lily_type = math.random(1,6)
|
|
if lily_type == 1 then
|
|
minetest.add_node(right_here, {name="along_shore:lilypads_"..math.random(1,3), param2=math.random(0,3)})
|
|
end
|
|
if lily_type == 2 then
|
|
if minetest.get_modpath("flowers_plus") ~= nil then
|
|
local LiLy_PaDS = {
|
|
{1,"flowers:waterlily"},
|
|
{2,"flowers:waterlily_225"},
|
|
{3,"flowers:waterlily_45"},
|
|
{4,"flowers:waterlily_675"}
|
|
}
|
|
for i in pairs(LiLy_PaDS) do
|
|
local NR = LiLy_PaDS[i][1]
|
|
local PaD = LiLy_PaDS[i][2]
|
|
local chance = math.random(1, 4)
|
|
if chance == NR then
|
|
minetest.add_node(right_here, {name=PaD, param2=math.random(0,3)})
|
|
end
|
|
end
|
|
else
|
|
minetest.add_node(right_here, {name="along_shore:lilypads_"..math.random(1,4), param2=math.random(0,3)})
|
|
end
|
|
end
|
|
--if lily_type == 3 then
|
|
--minetest.add_node(right_here, {name="along_shore:pondscum_1", param2=1})
|
|
--end
|
|
if lily_type >= 3 then
|
|
if minetest.get_modpath("flowers_plus") ~= nil then
|
|
minetest.add_node(right_here, {name="flowers:seaweed", param2=1})
|
|
else
|
|
minetest.add_node(right_here, {name="along_shore:pondscum_1", param2=1})
|
|
end
|
|
end
|
|
end
|
|
|
|
plantslib:register_generate_plant({
|
|
surface = {"default:water_source"},
|
|
max_count = Lilypads_Max_Count,
|
|
rarity = Lilypads_Rarity,
|
|
min_elevation = 1,
|
|
max_elevation = 40,
|
|
near_nodes = {"default:dirt_with_grass"},
|
|
near_nodes_size = 4,
|
|
near_nodes_vertical = 1,
|
|
near_nodes_count = 1,
|
|
plantlife_limit = -0.9,
|
|
},
|
|
"abstract_along_shore.grow_lilypad"
|
|
) |