Version 0.6.1
Added score and level. Level is always 1 for now. Added items that hover and give health or points. Made enemies weaker.
This commit is contained in:
parent
b1b239d9d3
commit
08d59d8290
4 changed files with 82 additions and 28 deletions
28
level.js
28
level.js
|
@ -70,7 +70,7 @@ function defineLevels(){
|
|||
,'Pipes', 'Asraelite'
|
||||
]
|
||||
];
|
||||
levelparts = [ // Free roam level sections
|
||||
levelparts = [ // Procedurally generated level parts
|
||||
[
|
||||
'.....................'
|
||||
,'.....................'
|
||||
|
@ -360,7 +360,7 @@ function defineLevels(){
|
|||
,'...................'
|
||||
,'...................'
|
||||
,'...................'
|
||||
,'...................'
|
||||
,'.........0.........'
|
||||
,'....###########....'
|
||||
,'....###########....'
|
||||
,'###################'
|
||||
|
@ -521,7 +521,7 @@ function defineLevels(){
|
|||
,'......................................'
|
||||
,'..............#######...##############'
|
||||
,'..............###...........##.......#'
|
||||
,'........#########...........##.....H.#'
|
||||
,'........#########...........##1....H.#'
|
||||
,'........###.........#####...####..####'
|
||||
,'........###.........#####..........###'
|
||||
,'###########....##########......E...###'
|
||||
|
@ -532,4 +532,26 @@ function defineLevels(){
|
|||
,'5n', '10n', 2, 15, 20
|
||||
]
|
||||
];
|
||||
levelends = [
|
||||
'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'......................................'
|
||||
,'.........................##############'
|
||||
,'............................##.......#'
|
||||
,'..............................##1....H.#'
|
||||
,'....................#####...####..####'
|
||||
,'....................#####..........###'
|
||||
,'###########....##########......E...###'
|
||||
,'###########.1..#######################'
|
||||
,'######################################'
|
||||
,'######################################'
|
||||
,'######################################'
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue