Version 0.7

Added ends of levels. You now go on to the next level when you get to
the end with a message box. Added new pacing enemy for level 1 and 2,
and changed look of harder enemy. Enemies are now chosen randomly to
spawn. Fixed purple particles floating.
This commit is contained in:
Markus Scully 2013-08-25 16:40:33 +01:00
parent d5f7c2534d
commit f7e9af3bc6
2 changed files with 161 additions and 58 deletions

View file

@ -533,25 +533,49 @@ function defineLevels(){
]
];
levelends = [
[
'...................................................'
,'...................................................'
,'...................................................'
,'...................................................'
,'...................................................'
,'................................................###'
,'................................................###'
,'................................................###'
,'............................................FFFF###'
,'..........................................#########'
,'..........................1E..1.................###'
,'........................########................###'
,'........................########................###'
,'.........####...................................###'
,'.........####.......E.......2.......E.......E.H.###'
,'###################################################'
,'###################################################'
,'###################################################'
,'###################################################'
,'###################################################'
],
[
'...................................................'
,'...................................................'
,'...................................................'
,'...................................................'
,'...................................................'
,'................................................###'
,'................................................###'
,'................................................###'
,'................................................###'
,'................................................###'
,'................................................###'
,'................................................###'
,'............................................FFFF###'
,'...........................................########'
,'..........................1E..1.................###'
,'.........................#######................###'
,'.........................#######................###'
,'.........###....................................###'
,'.........###........E.......2.......E.......E.H.###'
,'###################################################'
,'###################################################'
,'###################################################'
,'###################################################'
,'###################################################'
]
]
}