using System; namespace creachopedia { class Creacher { public string name; public int kingdom; public string description; public int footsies; public Creacher(string name, int footsyCount = 4) { this.name = name; this.footsies = footsyCount; } public void Introduce() { Console.WriteLine($"Hello, my name is... {this.name}. I am a {this.GetType()}, and I have {this.footsies} footsies."); } } }