public string playerName;
public string playerChoice;
Random randomNumber = new Random();
string[] choices = new string[] {"Rock","Paper","Scissors"};
string[,] outcomes = new string[,] { {"draw","lose","win" },{ "win", "draw","lose" },{ "lose", "win","draw" } };
Console.WriteLine("Please Enter Your Name...");
playerName = Console.ReadLine();
Console.WriteLine("Welcome " + playerName+ ", let us begin this descent into...");
Console.WriteLine(@" ▄▄▄▄███▄▄▄▄ ▄████████ ████████▄ ███▄▄▄▄ ▄████████ ▄████████ ▄████████ ");
Console.WriteLine(@" ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ▀███ ███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ");
Console.WriteLine(@" ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ █▀ ███ █▀ ");
Console.WriteLine(@" ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄███▄▄▄ ███ ███ ");
Console.WriteLine(@" ███ ███ ███ ▀███████████ ███ ███ ███ ███ ▀▀███▀▀▀ ▀███████████ ▀███████████ ");
Console.WriteLine(@" ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▄ ███ ███ ");
Console.WriteLine(@" ███ ███ ███ ███ ███ ███ ▄███ ███ ███ ███ ███ ▄█ ███ ▄█ ███ ");
Console.WriteLine(@" ▀█ ███ █▀ ███ █▀ ████████▀ ▀█ █▀ ██████████ ▄████████▀ ▄████████▀ ");
Console.WriteLine("Press enter to begin");
Console.WriteLine("You are walking a windy path through the woods when all of a sudden, you come accross a man sitting on a tree stump");
Console.WriteLine("Press enter");
Console.WriteLine("Do you wish to speak to him?");
playerChoice = Console.ReadLine();
playerChoice = playerChoice.ToLower();
if(playerChoice == "y" || playerChoice == "n" )
Console.WriteLine("You try to walk past him but he fires a bazooka at you!");
Console.WriteLine("Press enter");
Console.WriteLine("You have died... horribly! Press enter to start again or close the window to exit.");
Console.WriteLine("Please respond either 'Y' or 'N', press any key to try again");
int compChoice = randomNumber.Next(3);
Console.WriteLine("The man challenges you to a game of Rock, Paper, Scissors!");
Console.WriteLine("You must choose either Rock [1], Paper [2] or Scissors[3]...");
Console.WriteLine("Choose NOW");
playerChoice = Console.ReadLine();
if(playerChoice == "1" || playerChoice == "2" || playerChoice == "3")
Console.WriteLine("You chose: " + choices[Int32.Parse(playerChoice)-1] + " and the man chose: " + choices[compChoice]);
Console.WriteLine("You " + outcomes[Int32.Parse(playerChoice)-1,compChoice] + "! Please play again soon! Press enter to start again or close the window to exit.");
Console.WriteLine("Please only use 1, 2 or 3 for your choice. Try again");