public static void Main()
string pokemonToWin = "Charizard";
string pokemonToFail = "Slowpoke";
string winCaption = "Charizard used Flare Blitz. It was super effective. \n Igni fainted. \n You win!";
string looseCaption = "Slowpoke used Yawn. It does not affect Igni."+
"\n Igni used Bubbles, it was super effective. Slowpoke fainted \n You lost";
string notAPokemon = "It is not a pokemon! Choose wisely";
string playerPokemonChoice;
Console.WriteLine("Wild Igni appeared! Type what pokemon will you choose: Charizard or Slowpoke.");
playerPokemonChoice = Console.ReadLine();
if (playerPokemonChoice == pokemonToWin){
Console.WriteLine(winCaption);
else if (playerPokemonChoice == pokemonToFail){
Console.WriteLine(looseCaption);
else if (playerPokemonChoice !=pokemonToWin && playerPokemonChoice != pokemonToFail){
Console.WriteLine(notAPokemon);