public static void Main()
Console.WriteLine("Whats your pokemons name");
inputname = Console.ReadLine();
Console.WriteLine("What is your pokemons health");
string input = Console.ReadLine();
int.TryParse(input, out inputhealth);
Console.WriteLine("What is your pokemons strength");
string input2 = Console.ReadLine();
int.TryParse(input2, out inputstrength);
Console.WriteLine("Whats your pokemons stage (Basic, Stage1 or Stage2)");
inputstage = Console.ReadLine();
myPokemon.name = inputname;
myPokemon.health = inputhealth;
myPokemon.strength = inputstrength;
myPokemon.stage = Evolution.Deafult;
if (inputstage == "Basic")
myPokemon.stage = Evolution.Basic;
if (inputstage == "Stage1")
myPokemon.stage = Evolution.Stage1;
if (inputstage == "Stage2")
myPokemon.stage = Evolution.Stage2;
Console.WriteLine(myPokemon.name);
Console.WriteLine(myPokemon.health);
Console.WriteLine(myPokemon.strength);
Console.WriteLine(myPokemon.stage);