예제 #1
0
파일: Spell.cs 프로젝트: adverserandomx/GG
 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
파일: Spell.cs 프로젝트: adverserandomx/GG
 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
파일: Spell.cs 프로젝트: hestad/rndWalker
 public Spell(SNOPowerId id, int primaryCost, int secondaryCost)
 {
     Id = id;
     PrimaryCost = primaryCost;
     SecondaryCost = secondaryCost;
 }
예제 #5
0
파일: Spell.cs 프로젝트: nuzayets/Snowshoes
 public Spell(SNOPowerId id, int cost1, int cost2)
 {
     Id = id;
     PrimCost = cost1;
     SecCost = cost2;
 }
예제 #6
0
파일: Spell.cs 프로젝트: nuzayets/Snowshoes
 public Spell(SNOPowerId id, int cost1, int cost2)
 {
     Id       = id;
     PrimCost = cost1;
     SecCost  = cost2;
 }
예제 #7
0
파일: Spell.cs 프로젝트: novaking/rndWalker
 public Spell(SNOPowerId _id, int _cost1, int _cost2)
 {
     id       = _id;
     primCost = _cost1;
     secCost  = _cost2;
 }