Skip to content

Commit

Permalink
empece
Browse files Browse the repository at this point in the history
  • Loading branch information
biancapicchio committed Nov 17, 2023
1 parent 953a656 commit 6893148
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 6 deletions.
14 changes: 14 additions & 0 deletions src/enemigos.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,20 @@ object puertaANivel{
}
}

class Pinches {
var property position = game.at(0, 0)

method image() {
return "tunel.png"
}

method esSolidoPara(personaje) {
return not personaje.puedePasar(self)
}

method colisionarCon(personaje) {
}
}



Expand Down
44 changes: 38 additions & 6 deletions src/nivelx.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,17 @@ class Nivel{

method iniciar() {
self.terminar()
self.configurar()
// self.configurar()
self.generar()
nivelActual.nivelActual(self)
self.accionDeGuardias()
// musica.reproducir(self.cancion())
}


method configurar() {
game.boardGround(self.fondo())


}
// method configurar() {
// game.boardGround(self.fondo())
// }

method terminar() { // En vez de hacer un clear, que borra tambíen los datos del tablero, solo saco los visuals
game.allVisuals().forEach({visual => game.removeVisual(visual)})
Expand Down Expand Up @@ -181,6 +179,40 @@ object nivelC inherits Nivel{

}

object nivelB inherits Nivel{

override method fondo() = ".png"

override method celdas(){
return
[[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _],
[_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _]
].reverse()
}

override method siguiente(){
return nivelC
}

override method accionDeGuardias(){}
}

object _{
method generar(position){}
}
Expand Down

0 comments on commit 6893148

Please sign in to comment.