forked from mtcontrib/riesenpilz
update mapgen
This commit is contained in:
parent
6514e23cbd
commit
e2ee54d25a
16
mapgen.lua
16
mapgen.lua
|
@ -71,12 +71,26 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||
end
|
||||
if ground_y then
|
||||
local boden = {x=x,y=ground_y+1,z=z}
|
||||
if pr:next(1,380) == 1 then
|
||||
if pr:next(1,15) == 1 then
|
||||
env:add_node(boden, {name="default:dry_shrub"})
|
||||
elseif pr:next(1,80) == 1 then
|
||||
env:add_node(boden, {name="riesenpilz:brown"})
|
||||
elseif pr:next(1,90) == 1 then
|
||||
env:add_node(boden, {name="riesenpilz:red"})
|
||||
elseif pr:next(1,100) == 1 then
|
||||
env:add_node(boden, {name="riesenpilz:fly_agaric"})
|
||||
elseif pr:next(1,4000) == 1 then
|
||||
env:add_node(boden, {name="riesenpilz:lavashroom"})
|
||||
elseif pr:next(1,5000) == 1 then
|
||||
env:add_node(boden, {name="riesenpilz:glowshroom"})
|
||||
elseif pr:next(1,380) == 1 then
|
||||
riesenpilz_hybridpilz(boden)
|
||||
elseif pr:next(1,340) == 10 then
|
||||
riesenpilz_brauner_minecraftpilz(boden)
|
||||
elseif pr:next(1,390) == 20 then
|
||||
riesenpilz_minecraft_fliegenpilz(boden)
|
||||
elseif pr:next(1,6000) == 2 and pr:next(1,200) == 15 then
|
||||
riesenpilz_lavashroom(boden)
|
||||
end
|
||||
env:add_node({x=x,y=ground_y,z=z}, {name="riesenpilz:ground"})
|
||||
for i = -1,-5,-1 do
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 688 B After Width: | Height: | Size: 734 B |
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Loading…
Reference in New Issue
Block a user