Beispiel #1
0
 public Ability(string cName)
 {
     Name = cName;
     Description = "";
     GetType = AbilityType.Active;
     Cost = 0;
     Cooldown = new Cooldown(0, 0);
 }
Beispiel #2
0
 public Ability(string cName, DerivativeStat cDerivative)
 {
     Name = cName;
     costDerivative = cDerivative;
     Cooldown = new Cooldown(0, 0);
 }