-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPokemonAgua.java
More file actions
27 lines (21 loc) · 1.21 KB
/
PokemonAgua.java
File metadata and controls
27 lines (21 loc) · 1.21 KB
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
package PokeJava;
public class PokemonAgua extends Pokemon{
public PokemonAgua(String nome, Integer hp, Integer hpMax, Integer ataque, Integer defesa) {
super(nome, hp, hpMax, ataque, defesa, TipoPokemon.AGUA);
}
@Override
public StatusPokemon getStatusEspecial() {
return StatusPokemon.CONFUSO;
}
@Override
public void ArtePokemon() {
System.out.println("______________________________________________________________________\n" +
"[] | /| \" __ \\ ' \\ ' ,-' ,\". `-. ' / ' / /[]\n" +
"[] \\ ' , | / |. . \\ ' / , ' \\ ` \\ ' / ' / []\n" +
"[] ' |,' !_.'| | ' ; ,`\", L,| : ' / /[]\n" +
"[] | ,' ' | | | . , \\ | / / []\n" +
"[] \\ ' / |`--'| | | `-/ | . | / / /[]\n" +
"[] ' | , . `---' | : | | ',, ; / / / []\n" +
"======================================================================\n");
}
}