-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpokemon-lab.puml
87 lines (85 loc) · 2.04 KB
/
pokemon-lab.puml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@startuml
class attacks.BrutalSwing {
# void applyOppDamage(Pokemon,double)
# String describe()
}
class attacks.Waterfall {
# void applyOppDamage(Pokemon,double)
# void applyOppEffects(Pokemon)
# String describe()
}
class pokemons.Tyrunt {
}
class pokemons.Lotad {
}
class Main {
+ {static} void main(String[])
}
class attacks.Absorb {
# void applyOppDamage(Pokemon,double)
# void applySelfEffects(Pokemon)
# String describe()
}
class attacks.Bite {
# void applyOppDamage(Pokemon,double)
# void applyOppEffects(Pokemon)
# String describe()
}
class attacks.ShadowBall {
# void applyOppDamage(Pokemon,double)
# void applySelfEffects(Pokemon)
# String describe()
}
class attacks.Astonish {
# void applyOppDamage(Pokemon,double)
# void applyOppEffects(Pokemon)
# String describe()
}
class pokemons.Cosmog {
}
class attacks.Rest {
# void applySelfEffects(Pokemon)
# String describe()
}
class pokemons.Lombre {
}
class pokemons.Tyrantrum {
}
class attacks.RockPolish {
# void applySelfEffects(Pokemon)
# String describe()
}
class attacks.Moonblast {
# void applyOppDamage(Pokemon,double)
# void applyOppEffects(Pokemon)
# String describe()
}
class attacks.Withdraw {
# void applySelfEffects(Pokemon)
# String describe()
}
class attacks.DarkPulse {
# void applyOppDamage(Pokemon,double)
# void applyOppEffects(Pokemon)
# String describe()
}
class pokemons.Ludicolo {
}
attacks.PhysicalMove <|-- attacks.BrutalSwing
attacks.PhysicalMove <|-- attacks.Waterfall
ru.ifmo.se.pokemon.Pokemon <|-- pokemons.Tyrunt
ru.ifmo.se.pokemon.Pokemon <|-- pokemons.Lotad
attacks.SpecialMove <|-- attacks.Absorb
attacks.PhysicalMove <|-- attacks.Bite
attacks.SpecialMove <|-- attacks.ShadowBall
attacks.PhysicalMove <|-- attacks.Astonish
ru.ifmo.se.pokemon.Pokemon <|-- pokemons.Cosmog
attacks.StatusMove <|-- attacks.Rest
pokemons.Lotad <|-- pokemons.Lombre
pokemons.Tyrunt <|-- pokemons.Tyrantrum
attacks.StatusMove <|-- attacks.RockPolish
attacks.SpecialMove <|-- attacks.Moonblast
attacks.StatusMove <|-- attacks.Withdraw
attacks.SpecialMove <|-- attacks.DarkPulse
pokemons.Lombre <|-- pokemons.Ludicolo
@enduml