A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

64 lines
5.2 KiB

namespace SemiColinGames {
class Levels {
public static readonly string[] ALL_LEVELS = new string[] {
DEMO, ONE_ONE, ROCKS
};
public const string DEMO = @"
7 <=============>
6 { { { } { ;
5 } ; ; ; }
4 } ; }
3 }
2
1
0 <=X=X=X=> <=============> (__________)
5 / \
4 | |
3 | |
2 | |
w wr wqw t wew ww dfffxfffxfffb v twq r wtwv
=================> <=============> <================================================================================================
..................~`~`~`...............^^^^.................................................................................................
..................======....................................................................................................................";
public const string ROCKS = @"
.........................................
.........................................
.........................................
.........................................
.........................................
.........................................
.........................................
.........................................
.........................................
0 [.................................
1 [.................................
2 [.................................
3 [.................................
4 [.................................
=========================================
.........................................";
public const string ONE_ONE = @"
X
.
X <======> <==X X <=> <XX> XX .
XXX .
XXXX .
XXXXX .
X <X=X> <> <> <X> = <> X X X X <> X X XX X <=X> XXXXXX .
<> [] [] XX XX XXX XX XXXXXXX
<> [] [] [] XXX XXX XXXX XXX <> <> XXXXXXXX
[]12345678[]123456[]123456789[]1234567890 123456 123456 12345 1234 12345 1234 123XXXX XXXX1234XXXXX XXXX1234[]123 1234567[]XXXXXXXXX12345678
===========================..========..======..=========..=========> <=============> <==============================================================> <=======..==============..==============================
...................................................................] [.............] [..............................................................] [.......................................................";
}
}