Version 1.0

Beta release for Coolest Projects. New powers, new enemy, AI upgrades,
new levels, added win screen, new sounds, support for boss but I didn't
add him. New score bubbles, added lives with death message and life item
pickup. Many other small changes and additions.
This commit is contained in:
Markus Scully 2013-08-30 23:03:13 +01:00
parent ac2eb87d2f
commit 0bd093f1b2
15 changed files with 441 additions and 78 deletions

165
level.js
View file

@ -508,6 +508,52 @@ function defineLevels(){
,'###################'
,'5n', '5n', 2, 15, 10
],
[
'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'..####.............'
,'..####......0..####'
,'..####.....########'
,'######.....########'
,'######.2.2.########'
,'###################'
,'###################'
,'###################'
,'5n', '7n', 2, 6, 10
],
[
'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'..............1....'
,'..........E.#####..'
,'.........########..'
,'...00.#########....'
,'###############....'
,'###############.3..'
,'###################'
,'###################'
,'###################'
,'###################'
,'###################'
,'7n', '5n', 2, 6, 8
],
[
'......................................'
,'......................................'
@ -537,7 +583,7 @@ function defineLevels(){
,'......................................'
,'......................................'
,'.......................H..............'
,'......................###............'
,'......................###.............'
,'......................###.............'
,'......................###...2.........'
,'......................###########.....'
@ -564,7 +610,7 @@ function defineLevels(){
,'...................'
,'...................'
,'...0...............'
,'.#####..............'
,'.#####.............'
,'.#####.............'
,'...................'
,'..........###......'
@ -577,6 +623,53 @@ function defineLevels(){
,'###################'
,'5jl11', '5n', 2, 15, 5
],
[
'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'..............E....'
,'.............#####.'
,'..........########.'
,'.0..##....########.'
,'#######...#########'
,'#######.......#####'
,'#######.E...L.#####'
,'###################'
,'###################'
,'5n', '5n', 1, 5, 15
],
[
'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'...................'
,'................H..'
,'...............###.'
,'...................'
,'...................'
,'######.............'
,'######.............'
,'######.............'
,'##.................'
,'##.E...........E2..'
,'#######...#########'
,'#######...#########'
,'#######.5.##########'
,'###################'
,'###################'
,'10n', '5n', 1, 5, 40
]
];
levelends = [
[
@ -644,6 +737,72 @@ function defineLevels(){
,'##################################################################'
,'##################################################################'
,'##################################################################'
],
[
'.........................................................................'
,'.........................................................................'
,'......................................................................###'
,'......................................................................###'
,'......................................................................###'
,'.........................................................E..2.2.3.E.3H###'
,'.......................................................##################'
,'.......................................................##################'
,'.......................E.1..E...........0.E.0.......2E.##################'
,'...................1E.########..........#####......#######............###'
,'..................############..........#####......#######............###'
,'.......2H.........############..........#####1.....#######......1.....###'
,'......####........#######...............#######................###....###'
,'......####............................0.#######................###....###'
,'......####.......E......E.....E......##########...1..E.......E.###FFFF###'
,'#########################################################################'
,'#########################################################################'
,'#########################################################################'
,'#########################################################################'
,'#########################################################################'
],
[
'.........................................................................'
,'.........................................................................'
,'......................................................................###'
,'......................................................................###'
,'......................................................................###'
,'.................................................2........4..FFFFFFFFF###'
,'................................................####....################'
,'................................................####....#################'
,'................................................####..................###'
,'................................................####.E.0.0.0..........###'
,'................................................#############.........###'
,'...HH................................E.2........#############......3.E###'
,'...#####...........................######.........................#######'
,'...##..............................######.........................#######'
,'...##.H...2..E...E...3..E.....E..2.######.........2..E...3...E....#######'
,'#########################################...#############################'
,'#########################################.L.#############################'
,'#########################################################################'
,'#########################################################################'
,'#########################################################################'
],
[
'..................................................................'
,'..................................................................'
,'...............................................................###'
,'...............................................................###'
,'...............................................................###'
,'...............................................................###'
,'....................E.............E............................###'
,'....#####................E.................E............4.E..4.###'
,'....#####......E..........................###........#############'
,'..#######........E.............E..........###........#############'
,'..#######.................E.............#####.1......#############'
,'..#######...E...........E........E......########............FFF###'
,'#########...............................########............FFF###'
,'#########......E.....E................##########..5....2..2.FFF###'
,'#########......3......4......3........############################'
,'##################################################################'
,'##################################################################'
,'##################################################################'
,'##################################################################'
,'##################################################################'
]
];
}
}