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