Exemplo n.º 1
0
 public void GenerateBaseCity(int villages)
 {
     this.CityName = NameGenerator.GenerateCityName();
     Ribbon.WriteLabel(this.CityName);
     this.LordName   = NameGenerator.GenerateLordName();
     this.Population = CalculatePopulation(villages);
     this.Income     = CalculateIncome();
     this.Unrest     = 6;
 }