public string Info() { string info = "Welcome to " + name + "!\n \n"; info += "Size: " + size.ToString().Replace("_", " ") + ". Population: " + population + ".\n"; info += "Military: " + strength + ", " + military + " guards. "; info += guards[1] + " Lvl1, " + guards[2] + " Lvl2, " + guards[3] + " Lvl3, " + guards[4] + " Lvl4, " + guards[5] + " Lvl5 and " + guards[6] + " Lvl6.\n"; info += "Religious presence: " + religiousness + ", " + clergymen + " clergymen where " + priests + " are priests.\n"; info += "Wealth: " + WealthInGP + " GP."; return(info); }