-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFleetfoot.java
51 lines (42 loc) · 1.09 KB
/
Fleetfoot.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/Fleetfoot.java
package pokepon.pony;
import pokepon.enums.*;
/** Fleetfoot
* Ridiculously high speed and SpA;
* weak bulk and atk.
*
* @author
*/
public class Fleetfoot extends Pony {
public Fleetfoot(int _level) {
super(_level);
name = "Fleetfoot";
type[0] = Type.LOYALTY;
type[1] = Type.LOVE;
race = Race.PEGASUS;
sex = Sex.FEMALE;
baseHp = 80;
baseAtk = 50;
baseDef = 40;
baseSpatk = 120;
baseSpdef = 68;
baseSpeed = 142;
/* Learnable Moves */
learnableMoves.put("Tackle",1);
learnableMoves.put("Heavy Massage",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Trailblazer",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Daredevilry",1);
learnableMoves.put("Practice",1);
learnableMoves.put("Hopeful Strike",1);
learnableMoves.put("Relay Race",1);
learnableMoves.put("Scheme Up",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Speed Up",17);
learnableMoves.put("Storm Cloud",28);
learnableMoves.put("Sky Dive",30);
possibleAbilities[0] = "Self Confidence";
possibleAbilities[1] = "Lovebird";
}
}