Пример #1
0
 public Spell(SNOPowerId _id, int _cooldown, int _cost1, int _cost2)
 {
     id = _id;
     cooldown = _cooldown;
     primCost = _cost1;
     secCost = _cost2;
     init();
 }
Пример #2
0
 public Spell(SNOPowerId _id, int _duration, int _cooldown, int _cost1, int _cost2)
 {
     id = _id;
     duration = _duration;
     cooldown = _cooldown;
     primCost = _cost1;
     secCost = _cost2;
 }
Пример #3
0
 public Spell(SNOPowerId _id, int _cooldown, int _cost1, int _cost2, bool _available)
 {
     id = _id;
     cooldown = _cooldown;
     primCost = _cost1;
     secCost = _cost2;
     available = _available;
     forced = true;
     init();
 }
Пример #4
0
 public Spell(SNOPowerId id, int primaryCost, int secondaryCost)
 {
     Id = id;
     PrimaryCost = primaryCost;
     SecondaryCost = secondaryCost;
 }
Пример #5
0
 public Spell(SNOPowerId id, int cost1, int cost2)
 {
     Id = id;
     PrimCost = cost1;
     SecCost = cost2;
 }
Пример #6
0
 public Spell(SNOPowerId id, int cost1, int cost2)
 {
     Id       = id;
     PrimCost = cost1;
     SecCost  = cost2;
 }
Пример #7
0
 public Spell(SNOPowerId _id, int _cost1, int _cost2)
 {
     id       = _id;
     primCost = _cost1;
     secCost  = _cost2;
 }