public Creature(int mystr, int myint, int mydex, int myhp, 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 static void Main()
Creature orc = new Creature(17, 17, 17, 17, "Thrall", "For the Horde");
Creature elf = new Creature(15, 18, 18, 18, "Sylvanas", "I'm an elf yo");