Skip to content

Commit

Permalink
Agrego conejo, lobo, mosquito, escudo y alas
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucard02 committed Nov 12, 2024
1 parent e2f77c8 commit 022c307
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
Binary file added assets/alas3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/banana.png
Binary file not shown.
Binary file added assets/conejito.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/escudo1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lobo1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/manzana.png
Binary file not shown.
Binary file added assets/mosquito.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/pera.png
Binary file not shown.
Binary file removed assets/uvas.png
Binary file not shown.
10 changes: 5 additions & 5 deletions example.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ object inmune {

object dinosaurio {
var property position = game.origin()
var property image = "manzana.png"
var property image = "conejito.png"
var property puntos = 0
var property estado = normal

Expand Down Expand Up @@ -180,25 +180,25 @@ object generadorDeMonedas inherits Generador {

object generadorDePeras inherits Generador {
override method generar() {
self.apareceYMovete(new Pera(image = "pera.png"))
self.apareceYMovete(new Pera(image = "mosquito.png"))
}
}

object generadorDeBananas inherits Generador {
override method generar() {
self.apareceYMovete(new Banana(image = "banana.png"))
self.apareceYMovete(new Banana(image = "lobo1.png"))
}
}

object generadorDeFrutillas inherits Generador {
override method generar() {
self.apareceYMovete(new Frutilla(image = "frutilla2.png"))
self.apareceYMovete(new Frutilla(image = "escudo1.png"))
}
}

object generadorDeUvas inherits Generador {
override method generar() {
self.apareceYMovete(new Uvas(image = "uvas.png"))
self.apareceYMovete(new Uvas(image = "alas3.png"))
}
}

Expand Down

0 comments on commit 022c307

Please sign in to comment.