private void ejecutarSegundaRondaUnoVsUnoSinFlor() { elJuego.obtenerJugadorConDecision().tomarDecision(Decision.ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.ENVIDO_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.REAL_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.FALTA_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.NO_QUIERO_ENVIDO); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeBasto(3)); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeOro(3)); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.TRUCO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.QUIERO_TRUCO); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeBasto(1)); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.IRSE_AL_MAZO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.CONTINUAR); }
private void ejecutarPrimeraRondaUnoVsUnoSinFlor() { elJuego.obtenerJugadorConDecision().tomarDecision(Decision.ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.ENVIDO_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.REAL_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.QUIERO_ENVIDO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.SON_BUENAS); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeEspada(7)); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeBasto(1)); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeBasto(7)); elJuego.obtenerJugadorConTurno().jugarCarta(new CartaDeOro(3)); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.TRUCO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.RETRUCO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.NO_QUIERO_TRUCO); elJuego.obtenerJugadorConDecision().tomarDecision(Decision.CONTINUAR); }