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.

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