Exemplo n.º 1
0
 public Card(string cardName, int blackrockCost, Affinty cardAffinty, bool isInHand)
 {
     this.cardName      = cardName;
     this.blackrockCost = blackrockCost;
     this.cardAffinty   = cardAffinty;
     this.isInHand      = isInHand;
 }
Exemplo n.º 2
0
 public Creature(string cardName, int blackrockCost, Affinty cardAffinty, CreatureType creatureType, bool isInHand, int attack, int endurance, bool isDead) :
     base(cardName, blackrockCost, cardAffinty, isInHand)
 {
     this.attack       = attack;
     this.endurance    = endurance;
     this.creatureType = creatureType;
     isDead            = false;
     this.isDead       = isDead;
 }