diff --git a/src/actores/segundoCiclo/Yvoty/Celular.ts b/src/actores/segundoCiclo/Yvoty/Celular.ts index 5b9106f..995cf75 100644 --- a/src/actores/segundoCiclo/Yvoty/Celular.ts +++ b/src/actores/segundoCiclo/Yvoty/Celular.ts @@ -3,10 +3,11 @@ class Celular extends ActorAnimado { static _grilla = 'actor.celular.png' constructor(prendido = false) { - super(0, 0, {cantColumnas: 2}); + super(0, 0, {cantColumnas: 3}); this.definirAnimacion("cargado", [1], 1); this.definirAnimacion("prendido", [1], 1); this.definirAnimacion("descargado", [0], 1); + this.definirAnimacion("desaparecer", [2], 1); if(prendido) this.cargarAnimacion("prendido") } diff --git a/src/actores/segundoCiclo/Yvoty/Yvoty.ts b/src/actores/segundoCiclo/Yvoty/Yvoty.ts index f9cdf1b..6ac15bc 100644 --- a/src/actores/segundoCiclo/Yvoty/Yvoty.ts +++ b/src/actores/segundoCiclo/Yvoty/Yvoty.ts @@ -31,7 +31,7 @@ class Yvoty extends ActorAnimado { this.definirAnimacion("error", [30, 30, 30, 30, 30, 30, 30, 31, 32, 33, 34, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 36, 36, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37], 12) this.definirAnimacion("recoger", [0, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 0, 0, 0], 12); this.definirAnimacion("usarCelu", [38, 38, 38, 39, 39, 40, 40, 40, 41, 42, 43, 41, 43, 42, 42, 42, 44, 45, 46, 47, 46, 42, 42, 42, 45, 46, 46, 46, 45, 44, 48, 48, 48, 49, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 51, 51, 38, 38, 38, 38, 38, 38, 38], 20); - this.definirAnimacion("sacarFoto", [38, 38, 38, 39, 39, 40, 40, 40, 40, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 40, 40, 40, 40], 20); + this.definirAnimacion("sacarFoto", [38, 38, 38, 39, 39, 40, 40, 40, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 40, 40, 40, 40], 20); this.definirAnimacion("escribir", [16, 16, 17, 17, 18, 18, 18, 19, 19, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18], 20); } } diff --git a/src/assets/actor.celular.png b/src/assets/actor.celular.png index 83c0926..bff42e1 100644 Binary files a/src/assets/actor.celular.png and b/src/assets/actor.celular.png differ