private bool easymode = true;
public Creature(int mystr, int myint, string myname, string myshout)
public void Rename(string newname)
Console.WriteLine("Strength: " + STR);
Console.WriteLine("Intellect: " + INT);
Console.WriteLine("Dexterity: " + DEX);
Console.WriteLine("Hitpoints: " + HP);
Console.WriteLine(name + " shouts at you. " + shout + "!!!");
public int TakeDamage(int amount, Creature dealer)
Console.WriteLine(dealer.name + " hit " + name + " for " + amount + " damage.");
Console.WriteLine(name + " is now on " + HP + " hitpoints");
Console.WriteLine(name + " is now dead.");
public static void Main()
Creature orc = new Creature(17, 12, "Thrall", "For the Horde");
Creature elf = new Creature(15, 18, "Sylvannas", "Burn down the TREEEEEEEE");