Example #1
0
    public void PerformCrushingBlow(Defender target)
    {
        Ability crushingBlow = mySpellBook.GetAbilityByName("Crushing Blow");

        StartCoroutine(AttackTarget(target, crushingBlow.abilityPrimaryValue, false));
        StartCoroutine(AttackMovement(target));
        target.ApplyStunned();
    }