public static void Main()
Console.WriteLine("WELCOME TO THE BUNKER");
Console.WriteLine(" <==========================> ");
Console.WriteLine(" // // ");
Console.WriteLine(" // //| ");
Console.WriteLine(" // //|| ");
Console.WriteLine(" // // || ");
Console.WriteLine(" // // || ");
Console.WriteLine(" /////////////////////////// || ");
Console.WriteLine(" || || || ");
Console.WriteLine(" || || || ");
Console.WriteLine(" || ------ || || ");
Console.WriteLine(" || |====| || || ");
Console.WriteLine(" || | | || || ");
Console.WriteLine(" || | O | || || ");
Console.WriteLine(" || | | || || ");
Console.WriteLine(" || | | || || ");
Console.WriteLine("\n\n ");
Console.WriteLine("Survivor! What's your name?");
string name = Console.ReadLine();
Console.WriteLine("Where did you live before the disaster?");
string city = Console.ReadLine();
Console.WriteLine("What are you looking for?");
string what = Console.ReadLine();
Console.WriteLine("You have 5 stats.\nStrength\nIntelligence\nDexterity\nEndurance\nluck\nYou have 30 points to assign to your stats." );
Console.WriteLine("Select your strength (any value between 0 and 10)");
double Strength = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Error");
Console.WriteLine("Error");
points = points - Strength;
Console.WriteLine(points);
Console.WriteLine("Select your Intelligence (any value between 0 and 10)");
double Intelligence = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Error");
Console.WriteLine("Error");
points = points - Intelligence;
Console.WriteLine(points);
Console.WriteLine("Select your Dexterity (any value between 0 and 10)");
double Dexterity = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Error");
Console.WriteLine("Error");
points = points - Dexterity;
Console.WriteLine(points);
Console.WriteLine("Select your Endurance (any value between 0 and 10)");
double Endurance = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Error");
Console.WriteLine("Error");
points = points - Endurance;
Console.WriteLine(points);
Console.WriteLine("Select your luck (any value between 0 and 10)");
double luck = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Error");
Console.WriteLine("Error");
Console.WriteLine("SELECT STATS (or not since it's not programmed right now)\n");
Console.WriteLine("STRENGTH: " + Strength);
Console.WriteLine("INTELLIGENCE: " + Intelligence);
Console.WriteLine("DEXTERITY: " + Dexterity);
Console.WriteLine("ENDURANCE: " + Endurance);
Console.WriteLine("LUCK: " + luck);
Console.WriteLine("\n\n");
Console.WriteLine("Press enter to continue");
Console.WriteLine("You are " + name + " a survivor in a vast wasteland From the former Settlement of " + city + ".\n\nBefore you is what appears to be an abandoned bunker.\n\nAs you enter to look for " + what + " the door blows shut behind you engaging the magnetic lock");
Console.Write("and turning on the few working dim nights in the stairway,\n\nunable to open the door you decide to push further into the bunker to find a way out. \n");
Console.Write("You come into a large room with a massive pillar in the center; \n\nfour much smaller pillars circle it from the corners.\n\nOn the far left of the room lies a door, \n");
Console.Write("while on the right lays another much larger door with various signs surrounding it all faded from the test of time.");
Console.WriteLine("\n\nGo through the LEFT door. Or Go through the RIGHT door.\n");
string input = Console.ReadLine();
Console.WriteLine("\nYou apporch the left door and open it a large spiral staircase winds around a massive stone pole.\nIn the stairwell lights flicker on and off\nyou take a step forward only for the floor to give way\nand reveal that the staircase" +
" has in reailty collapsed and you start falling");
Console.WriteLine("And unable to grab a ledge to save yourself you fall to your death and you think was it worth it to try and find " + what + "\nGAME OVER. Thanks for playing!");
Console.WriteLine("You fall down a entire floor before grabing a ledge and pulling yourself up from what seemed like your doom."+
"\nyou decied to go through the door you walk down a concrete hallway it opens up to a circle room\n"+
"in the center is the large piller in the middle again. In each of the 4 diraction lies a door which should you go through?)");
else if (input == "RIGHT")
Console.WriteLine("\nYou approach the right door a faded sign reads reads \"Generator room\"\nThe door is stuck open by and piece of ruble allowing you to pry it the rest of the way open. " +
"\nyou step into the large open room " +
"looking around you see two large genrators with some boxes on them.\nAnd across from the door lies a large control panel.\nWhat should you examine the GENRATOR or the CONTROL PANEL?");
string examine = Console.ReadLine();
examine = examine.ToUpper();
if (examine == "CONTROL PANEL")
Console.WriteLine("\nYou examine the control panel a button saying \"power on\" is glowing red do you press it? Y/N\n");
string yes_Or_No = Console.ReadLine();
yes_Or_No = yes_Or_No.ToUpper();
Console.WriteLine("\nYou press the power on button springing the generators to life stray volts flashing across your old path across the room.");
Console.WriteLine("\nYou decied not to press a random button in a bunker");
else if (examine == "GENRATOR")
Console.WriteLine("\nYou examine one of the large boxes on the genrator several wires are hooked into it do you want to try hotwiring the genrator? Y/N\n");
string yes_Or_No = Console.ReadLine();
yes_Or_No = yes_Or_No.ToUpper();
Console.WriteLine("\nYou attempt hotwiring a large genrator during which you succeed. while holding a now live wire resulting in your immediate death.\nGAME OVER. Thanks for playing!");
else if (yes_Or_No == "N")
Console.WriteLine("\nYou decied the very wise move of not hotwiring a industral genrator");
Console.WriteLine("Invaild input restart program.");
Console.WriteLine("Invaild input restart program.");
Console.WriteLine("Invaild input restart program.");