public void ChangeMode()
 {
     if (bottleAmount > 0)
     {
         bottleAmount -= 1;
         StartCoroutine(player.BecomeAngryCoroutine());
     }
 }