public IEnumerator CR_EnterPartyBar()
    {
        yield return(new WaitForSeconds(partyBarEnterDelay));

        playerPartyBar.Move();
        opponentPartyBar.Move();
    }
    public IEnumerator CR_EnterTrainers()
    {
        yield return(new WaitForSeconds(trainerEnterDelay));

        player.Move();
        opponent.Move();
    }
    public IEnumerator CR_EnterOpponentPokemonInfo()
    {
        yield return(new WaitForSeconds(opponentInfoEnterDelay));

        opponentInfo.Move();
    }
    public IEnumerator CR_EnterPlayerPokemonInfo()
    {
        yield return(new WaitForSeconds(playerInfoEnterDelay));

        playerInfo.Move();
    }