예제 #1
0
파일: Spell.cs 프로젝트: Vigien/CardGame
 public Spell()
 {
     CardName     = "Spell test";
     AttackType   = Manager.Types.ailment;
     AreaOfAffect = Manager.AreaOfAffect.personal;
     SP           = HPCost = Potency = 0;
 }
예제 #2
0
파일: Spell.cs 프로젝트: Vigien/CardGame
 public Spell(string cardName, Manager.Types attackType, Manager.AreaOfAffect areaOfAffect, int sPCost, int hPCost, int potency)
 {
     CardName     = cardName;
     AttackType   = attackType;
     AreaOfAffect = areaOfAffect;
     SP           = sPCost;
     HPCost       = hPCost;
     Potency      = potency;
 }