public string RandomUserWonMessage(Deck Deck)
 {
     int randomNumber = Deck.RandomGenerator.Next(0, 3);
     if (randomNumber == 0)
         return "\nBAE-BOT:\"You won. That proves nothing.\"";
     else if (randomNumber == 1)
         return "\nBAE-BOT:\"GG, well played. This game sucks!\"";
     else
         return "\nBAE-BOT:\"You won, you know, like little kids sometimes win\n" +
             "when they armwrestle their dads.\"";
 }
 public string RandomComputerWonMessage(Deck Deck)
 {
     int randomNumber = Deck.RandomGenerator.Next(0, 4);
     if (randomNumber == 0)
         return "\nBAE-BOT:\"You lost. Can you believe it? I can.\"";
     else if (randomNumber == 1)
         return "\nBAE-BOT:\"Lol, BAE caught you slippin'.\"\n" +
             "You lost.";
     else if (randomNumber == 2)
         return "\nBAE-BOT:\"Wow, humankind really sent their best to defeat me.\"\n" +
             "Just kidding, you're awful at this.";
     else
         return "\nBAE-BOT:\"You know how the bad self-aware Computer\n" +
             "always loses in the movies?\nWell, this is not one of those movies.\n" +
             "You lost, kid.";
 }