My Ascii art for the win screen

void ShowLevelReward()
    {
        switch(level)
        {
            case 1:
                Terminal.WriteLine("Have a book...");
                Terminal.WriteLine(@"
      ______ ______
    _/      Y      \_
   // ~~ ~~ | ~~ ~  \\
  // ~ ~ ~~ | ~~~ ~~ \\      
 //________.|.________\\     
`----------`-'----------'"
);
                break;
            case 2:
                Terminal.WriteLine("Have some handcuffs");
                Terminal.WriteLine(@"
     OOOOOOOOOOOOOOOOOOOOOOO
   _P_                     _9_
  / @ \        _          / @ \
 //---\\      ( )        //---\\
((     ))      T        ((     ))
 \\___//       |         \\___//
  '---'        |E         '---'");
                break;
            case 3:
                Terminal.WriteLine("Have a spaceship");
                Terminal.WriteLine(@"
        //-A-\\
  ___---=======---___
(=__\   /.. ..\   /__=)
     ---\__O__/---");
                break;
            default:
                break;
        }
        
    }
3 Likes

Wow!

It looks fantastic, one of the best ASCII artwork I’ve seen in here, specially that UFO!

Thank you!

Awesome, I did almost the same book!

I love the “E” for the key’s teeth… that was good thinking

Privacy & Terms