Want to share my 3 win "rewards" from this lesson

I’m not that good at creating graphics, and the free ASCII art i found online were too large for the display, so I came up with these 3 for now.

My Theme is: SciFi, Role Playing, and Science.

void ShowLevelReward()
{
string currPassword = password;
switch (level)
{
case 1:
Terminal.WriteLine(“You are a Star!”);
Terminal.WriteLine(@"

____*____*_____________ 
__________________*____ 
______*_______*__*_____ 
____*_____*____________ 
___*___________*_______ 
_______*____*_____*____ 
        ");
            break;

        case 2:
            Terminal.WriteLine("XP Gained!");
            Terminal.WriteLine(@"

   xxx   xxx   PPPPPPPP
    xxx xxx    PP    PP
     xxxxx     PPPPPPPP
    xxx xxx    PP       
   xxx   xxx   PP       

        ");
            break;

        case 3:
            Terminal.WriteLine("SCIENCE!!");
            Terminal.WriteLine(@"
   | -|       *
   | -|   _    *  __
   | -|   |   *   |/'
   | -|   |~*~~~o~|  
   | -|   |O o   *|
  / ___\  |o___O__|
        "); 
            break;

        default:
            break;
    }

}

I thought I would add in game screenshots to show it looks in game too:
Level 1:


Level 2:

Level 3:

5 Likes

“Science!!” Very cool, well done! :slight_smile:

1 Like