static void Main(string[] args)
Console.WriteLine("Welcome to Michael's '80s MEGA!!! Battle Royale Game");
Console.WriteLine("(c) Michael Shin's Local Mom & Pop Software Shack");
var computerPickInt = rnd.Next(5);
if (computerPickInt == 0) computerPick = Pick.Barbie;
else if (computerPickInt == 1) computerPick = Pick.GIJoe;
else if (computerPickInt == 2) computerPick = Pick.HeMan;
else if (computerPickInt == 3) computerPick = Pick.ScoobyDoo;
else if (computerPickInt == 4) computerPick = Pick.Transformers;
Console.Write("Please select [B]arbie, [G]IJoe, [H]eMan, [S]coobyDoo, [T]ransformers, or [E]xit: ");
var userPickStr = Console.ReadLine().ToUpper();
if (userPickStr == "B") userPick = Pick.Barbie;
else if (userPickStr == "G") userPick = Pick.GIJoe;
else if (userPickStr == "H") userPick = Pick.HeMan;
else if (userPickStr == "S") userPick = Pick.ScoobyDoo;
else if (userPickStr == "T") userPick = Pick.Transformers;
else if (userPickStr == "E") break;
if (computerPick == Pick.Barbie) Console.WriteLine("Computer picked Barbie");
if (computerPick == Pick.GIJoe) Console.WriteLine("Computer picked GIJoe");
if (computerPick == Pick.HeMan) Console.WriteLine("Computer picked HeMan");
if (computerPick == Pick.ScoobyDoo) Console.WriteLine("Computer picked ScoobyDoo");
if (computerPick == Pick.Transformers) Console.WriteLine("Computer picked Transformers");
if (userPick == computerPick)
Console.WriteLine("It's a draw");
if (userPick == Pick.Barbie)
if (computerPick == Pick.GIJoe) Console.WriteLine("Barbie wins! He falls for her every time.");
if (computerPick == Pick.HeMan) Console.WriteLine("Barbie wins! He falls for her every time");
if (computerPick == Pick.ScoobyDoo) Console.WriteLine("ScoobyDoo wins! And Scrappy too! She should have used some Scooby Snacks!");
if (computerPick == Pick.Transformers) Console.WriteLine("Transformers wins! She didn't realize her Dream Camper was actually a Transformer. In disguise.");
if (userPick == Pick.GIJoe)
if (computerPick == Pick.Transformers) Console.WriteLine("GIJoe wins! Because they're robots, and lots of Joes are good with computers and robots and stuff.");
if (computerPick == Pick.ScoobyDoo) Console.WriteLine("GIJoe wins! Because there's a Joe for everything, and one of them is good with dogs, like Junkyard and his dog Mutt. (Or was it the other way around?)");
if (computerPick == Pick.Barbie) Console.WriteLine("Barbie wins! He falls for her every time.");
if (computerPick == Pick.HeMan) Console.WriteLine("HeMan wins! Because He has the Power! And GIJoe is just a regular guy.");
if (userPick == Pick.HeMan)
if (computerPick == Pick.GIJoe) Console.WriteLine("HeMan wins! Because He has the Power! And GIJoe is just a regular guy.");
if (computerPick == Pick.ScoobyDoo) Console.WriteLine("HeMan wins! Because He's good with animals, like Battle Cat.");
if (computerPick == Pick.Barbie) Console.WriteLine("Barbie wins! He falls for her every time.");
if (computerPick == Pick.Transformers) Console.WriteLine("Transformers wins! Because they're robots. In disguise. And he's not good with that kind of stuff. I mean, look at his own disguise.");
if (userPick == Pick.ScoobyDoo)
if (computerPick == Pick.Barbie) Console.WriteLine("ScoobyDoo wins! Because she didn't have any Scooby snacks.");
if (computerPick == Pick.Transformers) Console.WriteLine("ScoobyDoo wins! Because ...those meddling kids, they saw through our disguise!");
if (computerPick == Pick.GIJoe) Console.WriteLine("GIJoe wins! Because there's a Joe for everything, and one of them is good with dogs, like Junkyard and his dog Mutt. (Or was it the other way around?)");
if (computerPick == Pick.HeMan) Console.WriteLine("HeMan wins! HeMan wins! Because He's good with animals, like Battle Cat.");
if (userPick == Pick.Transformers)
if (computerPick == Pick.Barbie) Console.WriteLine("Transformers wins! She didn't realize her Dream Camper was actually a Transformer. In disguise.");
if (computerPick == Pick.HeMan) Console.WriteLine("Transformers wins! Because they can turn into cars and planes and he rides around on a cat.");
if (computerPick == Pick.ScoobyDoo) Console.WriteLine("ScoobyDoo wins! Because ...those meddling kids, they saw through our disguise!");
if (computerPick == Pick.GIJoe) Console.WriteLine("GIJoe wins! Because they're robots, and lots of Joes are good with computers and robots and stuff.");