Simplify some special level lua

These were generated by a script that converted the des-file
format to lua.
This commit is contained in:
Pasi Kallinen
2026-03-30 18:23:51 +03:00
parent f4173adc88
commit f68f15e3b5
3 changed files with 8 additions and 8 deletions

View File

@@ -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