-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTracy.java
51 lines (41 loc) · 1.01 KB
/
Tracy.java
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
//: pony/Tracy.java
package pokepon.pony;
import pokepon.enums.*;
import pokepon.util.Meta;
import static pokepon.util.Meta.*;
import java.net.*;
/** Tracy
* Aggressive mixed attacker.
*
* @author
*/
public class Tracy extends Pony {
public Tracy(int _level) {
super(_level);
name = "Tracy";
type[0] = Type.SHADOW;
race = Race.EARTHPONY;
sex = Sex.FEMALE;
baseHp = 60;
baseAtk = 95;
baseDef = 80;
baseSpatk = 95;
baseSpdef = 50;
baseSpeed = 70;
canon = false;
/* learnableMoves ... */
learnableMoves.put("One-Two Hit",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Raging Spree",1);
learnableMoves.put("Stalking",1);
learnableMoves.put("Sharp Nails",1);
learnableMoves.put("Scheme Up",1);
learnableMoves.put("Scare Away",1);
learnableMoves.put("Power Display",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Dissonance",1);
learnableMoves.put("Chaos Burst",1);
learnableMoves.put("Bully",1);
possibleAbilities[0] = "Aversion";
}
}