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