Skip to content

Commit

Permalink
Cambios de balance
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelEcheverria committed Nov 13, 2024
1 parent f45edae commit 2d28fab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions puntaje.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import administradorDeMagos.*
// Puntaje: Manejo de puntos
// ===============================
object puntaje {
const puntajeInicial = 5000
const puntajeInicial = 50

var property puntos = puntajeInicial

method position() = new MutablePosition(x = 7, y = 5)
method sumarPuntos() { self.puntos(puntos + 10 + administradorDeMagos.magos().map({mago => mago.valorAgregado()}).sum())} // preguntar que opina fede | posiblemente se cambie para la presentacion del concurso
method sumarPuntos() { self.puntos(puntos + 5 + administradorDeMagos.magos().map({mago => mago.valorAgregado()}).sum())} // preguntar que opina fede | posiblemente se cambie para la presentacion del concurso
method restarPuntos(costo) { self.puntos(puntos - costo) }

// Métodos para mostrar el puntaje
Expand Down
2 changes: 1 addition & 1 deletion slime.wlk
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Slime {
// ===============================
object slimeBasico {
const property danio = 25
const property vida= 150
const property vida= 100
method desplazamiento() = 1
const imagen="s.slimeBase.png"
method imagen() {return imagen}
Expand Down

0 comments on commit 2d28fab

Please sign in to comment.