예제 #1
0
 public Hero(string Name, Appearance Self, float ScaleCharacteristicsFactor) : base(Global.Instantiate().Herous.NextValue(), Name, ScaleCharacteristicsFactor)
 {
     HeroAppearance = Self;
     System.Random random = new System.Random();
     Characteristics.Randomising(ScaleCharacteristicsFactor);
     HeroGenger = (Genger)(random.Next(0, 2));
 }