public static void CastSpell(string Spell)
string spellCast = String.Format("You Cast ", Spell);
Console.WriteLine(spellCast);
public static void Main()
bool answeredOne = false;
bool answeredTwo = false;
Console.WriteLine("Welcome to the Wizard Game");
Console.WriteLine("You are a wizard who is about to head into battle");
Console.WriteLine("Choose your spell");
Console.WriteLine("1. zap (10dmg) (costs 15 mana)");
Console.WriteLine("2. pow (25dmg) (costs 40 mana)");
while (answeredOne == false)
Console.Write("Please enter 1 or 2: ");
int spellChoice = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Please select your character");
Console.WriteLine("1. Henry (+20 dmg, 15 defense, 100 hp)");
Console.WriteLine("2. Braden (-5 dmg, 20 defense, 300 hp)");
Console.WriteLine("3. Iain (+25 dmg, 5 defense, 300 hp");
while (answeredTwo == false)
Console.Write("Please enter 1, 2, or 3: ");
int charachterChoice = Convert.ToInt16(Console.ReadLine());
if (charachterChoice == 1)
if (charachterChoice == 2)
if (charachterChoice == 3)
Console.WriteLine("Press 1 to cast your spell");
int spellCasting = Convert.ToInt16(Console.ReadLine());