-
Notifications
You must be signed in to change notification settings - Fork 0
/
personas.wlk
59 lines (43 loc) · 1.16 KB
/
personas.wlk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
class Persona{
var edad = 0
var monedas = 20
method esDestacada() = edad.between(18,65) or self.recursos() > 30
method ganar(cant){
monedas += cant
}
method cumple(){
edad += 1
}
method gastar(cant){
self.ganar(-cant)
}
method trabajarEn(tiempo,planeta){ }
method recursos() = monedas
}
class Productor inherits Persona{
const tecnicas = []
override method recursos() = super()* self.cantidadTecnicas()
method cantidadTecnicas() = tecnicas.size()
method realizar(tecnica,tiempo) {
if (self.conoce(tecnica))
self.ganar(3*tiempo)
else
self.gastar(1)
}
method conoce(tec)= tecnicas.contains(tec)
method trabajarEn(tiempo,planeta){
if (planeta.vive(self))
self.realizar(tecnicas.last(),tiempo)
}
override method esDestacada() = self.cantidadTecnicas() >= 5 or super()
}
class Constructor inherits Persona{
var property lugar
var cantidadConstrucciones = 0
override method trabajar(tiempo,planeta){
self.gastar(5)
planeta.agregarConstruccion( lugar.queConstruir(tiempo,self))
cantidadConstrucciones +=1
}
override method esDestacada() = cantidadConstrucciones >= 5
}