public static void Main()
string userInput = "none";
Random rnd = new Random();
int damage = rnd.Next(1,5);
Console.WriteLine("Hello, and welcome to the dungeon! In this game you will explore various dungeon rooms, find treasure, and battle enimies!");
Console.WriteLine("1: Move forward 2: Search room");
Console.WriteLine("Health:");
Console.WriteLine(health);
userInput = Console.ReadLine();
Console.WriteLine("You continue in the dungeon!");
Console.WriteLine("You search the room...");
Console.WriteLine("You found a small sum of coins! +6 coins!");
Console.WriteLine("You encounter a cave bat!");
Console.WriteLine("Your HP: ", health, "Attack: ", damage);
Console.WriteLine("1: Attack 2: Use Old Bandage");
userInput = Console.ReadLine();
Console.WriteLine("You used an old bandage! + 10 health!");
Console.WriteLine("Your health is now:");
Console.WriteLine(health);
Console.WriteLine("You have no bandages! So, you attack!");
Console.WriteLine("You attack!");
} while (enemyHealth > 0 || health > 0);
Console.WriteLine("You found an old bandage!");