public virtual void MountCard(AttackCard card)
 {
     Strength = card.Attack;
     Defense  = 0.10;
     playerAttackCards.Remove(card);
 }
Exemple #2
0
 public override void MountCard(AttackCard card)
 {
     base.MountCard(card);
     Console.WriteLine("Your opponent has mounted " + card.Name + " with " + card.Attack + " HP of strength");
 }