void LostHp(int n)
 {
     if (HpManager.LostHp(n))
     {
         Dead();
         return;
     }
     isImmune     = true;
     isShowSprite = true;
     timerImmune  = 1f;
     SoundEffect.PlayLostHp();
 }