public Card(string cardName, int blackrockCost, Affinty cardAffinty, bool isInHand) { this.cardName = cardName; this.blackrockCost = blackrockCost; this.cardAffinty = cardAffinty; this.isInHand = isInHand; }
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; }