Beispiel #1
0
    public void Attack(CardInstance other)
    {
        if (IsTapped)
        {
            return;
        }

        other.Life -= Card.Strength;
        if (other.Life <= 0)
        {
            other.Die();
        }

        Tap();
    }