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

  1. namespace SemiColinGames {
  2. class Levels {
  3. public static readonly string[] ALL_LEVELS = new string[] {
  4. DEMO, ONE_ONE, ROCKS
  5. };
  6. public const string DEMO = @"
  7. 7 <=============>
  8. 6 { { { } { ;
  9. 5 } ; ; ; }
  10. 4 } ; }
  11. 3 }
  12. 2
  13. 1
  14. 0 <=X=X=X=> <=============> (__________)
  15. 5 / \
  16. 4 | |
  17. 3 | |
  18. 2 | |
  19. w wr wqw t wew ww dfffxfffxfffb v twq r wtwv
  20. =================> <=============> <================================================================================================
  21. ..................~`~`~`...............^^^^.................................................................................................
  22. ..................======....................................................................................................................";
  23. public const string ROCKS = @"
  24. .........................................
  25. .........................................
  26. .........................................
  27. .........................................
  28. .........................................
  29. .........................................
  30. .........................................
  31. .........................................
  32. .........................................
  33. 0 [.................................
  34. 1 [.................................
  35. 2 [.................................
  36. 3 [.................................
  37. 4 [.................................
  38. =========================================
  39. .........................................";
  40. public const string ONE_ONE = @"
  41. X
  42. .
  43. X <======> <==X X <=> <XX> XX .
  44. XXX .
  45. XXXX .
  46. XXXXX .
  47. X <X=X> <> <> <X> = <> X X X X <> X X XX X <=X> XXXXXX .
  48. <> [] [] XX XX XXX XX XXXXXXX
  49. <> [] [] [] XXX XXX XXXX XXX <> <> XXXXXXXX
  50. []12345678[]123456[]123456789[]1234567890 123456 123456 12345 1234 12345 1234 123XXXX XXXX1234XXXXX XXXX1234[]123 1234567[]XXXXXXXXX12345678
  51. ===========================..========..======..=========..=========> <=============> <==============================================================> <=======..==============..==============================
  52. ...................................................................] [.............] [..............................................................] [.......................................................";
  53. }
  54. }