Ejemplo n.º 1
0
 public Spell()
 {
     CardName     = "Spell test";
     AttackType   = Manager.Types.ailment;
     AreaOfAffect = Manager.AreaOfAffect.personal;
     SP           = HPCost = Potency = 0;
 }
Ejemplo n.º 2
0
 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;
 }