public static void Main()
string Red = "You Tried To Block The Goblin But It Was Too Quick And It Killed You!";
string Green = "You Tried to Run Away But The Goblin Caught Up To You And Cut Your Leg!!";
string Blue = "You Tried To Slash The Goblin With Your Sword But The Goblin Dodged The Attack!";
string Orange = "The Goblin Countered Your Slash And Killed You!";
Console.WriteLine(" LVL 2 - You Are Attacked By A Goblin Wielding A Dagger! - What Do You Do?");
Console.WriteLine("Choose One! run away - use shield - use sword");
while(once == true && num < 3)
string input = Console.ReadLine();
if (input == "use shield")
else if (input == "run away")
Console.WriteLine(Green);
Console.WriteLine("You Managed To Trip The Goblin and Steal His Dagger! You Killed Him!");
Console.WriteLine("You Took The Dagger, But Your Armor Is Badly Damaged And You Need Bandages For Your Wounds...");
Console.WriteLine("You Can Just Catch The Light of A Town Off In The Distance!");
else if(input == "use sword")
Console.WriteLine(Orange);