using System.Collections.Generic;
public static string teamName;
public static Random rng = new Random();
public static void Main()
Console.WriteLine("The year is 1940. You work for the U.S and are part of a special stealth team.");
Console.WriteLine("During your last job, you and your team stole 10 warheads from the German government.");
Console.WriteLine("However, the Germans had something else inside their database as well.");
Console.WriteLine("There was a prototype for something. They call it SANS, and it appears to be some form of super soldier.");
Console.WriteLine("It can fire nuclear warheads from its shoulders and can dodge at rapid speeds.");
Console.WriteLine("Frightened of this technology, you call for support to get you and your team out of the danger zone...");
Console.WriteLine("What do you want to name your team?");
teamName = Console.ReadLine();
Console.WriteLine("You and the rest of " + teamName + " have been requested to find a bomb somewhere below New York City.");
Console.WriteLine("In a stealth mission, your job is to complete your mission without being detected.");
Console.WriteLine("In this mission, the bomb's timer will start when you are detected.");
public static void buildGrid(int X, int Y)
Console.WriteLine("Generating Map...");
List<string> Horizontal = new List<string>();
List<string> Vertical = new List<string>();
for (int i = X; i > 0; i -= 1)
for (int i = Y; i > 0; i -= 1)
for(i = X - 1; i > 0; i -= 1)
Console.WriteLine(Horizontal);
for (int i = Y; i > 0; i -= 1)
Console.WriteLine(Vertical);
Console.WriteLine(Horizontal);