public void Die()
    {
        _killCounter.AddKill();
        var pos = transform.position;
        var rot = transform.rotation;

        Instantiate(DeathPoof, pos, rot);
        _loot.Execute();
        Destroy(gameObject);
    }