From 28eecd6d15258ba5e6ec341eee2b403e6c793e57 Mon Sep 17 00:00:00 2001 From: Araozu Date: Thu, 31 Dec 2020 11:27:48 -0500 Subject: [PATCH] Agregar pantalla de empate --- src/views/Ayuda/Ayuda.vue | 1 + src/views/Juego/Juego.vue | 28 ++++++++++++--- .../Juego/components/pantalla-empate.vue | 35 +++++++++++++++++++ 3 files changed, 59 insertions(+), 5 deletions(-) create mode 100644 src/views/Juego/components/pantalla-empate.vue diff --git a/src/views/Ayuda/Ayuda.vue b/src/views/Ayuda/Ayuda.vue index b4053bb..005a31d 100644 --- a/src/views/Ayuda/Ayuda.vue +++ b/src/views/Ayuda/Ayuda.vue @@ -98,6 +98,7 @@ div(:style="'--phx: ' + phx + '; --escala: ' + escala + ';'") | Triple triples cerrados p 3 triples en mano cerrada grupo-cartas(:cartas="[6, 6, 7, 48, 49, 49, 160, 160, 160, 192, 192]") + p No se acumula con "Triple triples". h3 5 puntos diff --git a/src/views/Juego/Juego.vue b/src/views/Juego/Juego.vue index 6ca3abb..7df9edb 100644 --- a/src/views/Juego/Juego.vue +++ b/src/views/Juego/Juego.vue @@ -3,6 +3,7 @@ div( :style="'--escala: ' + escala + '; --pH: ' + pH + '; --phx: ' + phx + '; --pW: ' + pW + '; --pwx:' + pwx + ';'" ) pantalla-ganador(:datos="datosJuego") + pantalla-empate(v-if="esEmpate") contenedor-dora(:turnosRestantes="turnosDora") div.con-int-juego div.cont-2-juego @@ -23,15 +24,16 @@ div( + + \ No newline at end of file