Esempio n. 1
0
 public BaseModificator(string name, string description, ModificatorType type, float value)
 {
     this.name        = name;
     this.description = description;
     this.value       = value;
     this.type        = type;
 }
Esempio n. 2
0
 public TimeChangeModificator(string name, string description, ModificatorType type, float value, int totalTime, int coolDownTime) : base(name, description, type, value, totalTime)
 {
     this.coolDownTime = coolDownTime;
 }
Esempio n. 3
0
 public TimeModificator(string name, string description, ModificatorType type, float value, int totalTime, bool isMax = false) : base(name, description, type, value)
 {
     this.totalTime = totalTime;
     this.isMax     = isMax;
 }