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
4.8 KiB

namespace SemiColinGames {
class Levels {
public static readonly string[] ALL_LEVELS = new string[] {
DEMO, ONE_ONE, ROCKS
};
public const string DEMO = @"
1
2
3
4
5
6
7
8 <===X===> <======================>
9
0
1
2
3 dfffxfffxfffb
===================> <=============> <================================================================================================
...................] [..............^^^^.................................................................................................
....................~`~`....................................................................................................................";
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
===========================..========..======..=========..=========> <=============> <==============================================================> <=======..==============..==============================
...................................................................] [.............] [..............................................................] [.......................................................";
}
}