Simplify some special level lua
These were generated by a script that converted the des-file format to lua.
This commit is contained in:
@@ -157,10 +157,10 @@ des.monster({ id = "leprechaun", x=74, y=04, peaceful=0 })
|
||||
des.monster({ id = "leprechaun", x=25, y=19, peaceful=0 })
|
||||
des.monster({ id = "water nymph", x=25, y=18, peaceful=0 })
|
||||
-- Wandering the streets.
|
||||
for i=1,4 + math.random(1 - 1,1*3) do
|
||||
for i = 1, math.random(4,7) do
|
||||
des.monster({ id = "water nymph", coord = streets:rndcoord(1), peaceful=0 })
|
||||
des.monster({ id = "leprechaun", coord = streets:rndcoord(1), peaceful=0 })
|
||||
end
|
||||
for i=1,7 + math.random(1 - 1,1*3) do
|
||||
for i = 1, math.random(7,10) do
|
||||
des.monster({ id = "chameleon", coord = streets:rndcoord(1), peaceful=0 })
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user