void OnParticleCollision(GameObject other)
    {
        IAlive _aliveScript = other.GetComponent <IAlive>();

        _aliveScript.Heal(healingAmount);
    }