Exemplo n.º 1
0
    public override bool ActivateAbility(GameObject target)
    {
        if (remaining_cooldown <= 0.001f)
        {
            //activate the ability here

            //play the bonk sound

            BonkSound.Play();

            //apply a stun to the target
            enemy_controller    enemy;
            unit_control_script unit;
            if ((enemy = target.GetComponent <enemy_controller>()) != null)
            {
                Stun stun = GameObject.Instantiate(new GameObject()).AddComponent <Stun>();
                stun.SetDuration(stun_duration);
                stun.SetOwner(target);

                //face the owner towards the enemy
                unit_control_handle.FaceTowardsTarget(target.transform.position);
                //damage the enemy
                enemy.MagicDamage(damage, unit_control_handle);
            }



            remaining_cooldown = cooldown;
        }
        return(true);
    }