-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBigMacintosh.java
47 lines (38 loc) · 992 Bytes
/
BigMacintosh.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
//: pony/BigMacintosh.java
package pokepon.pony;
import pokepon.enums.*;
/** BigMacintosh
* Very good defenses/HP and average attack;
* Lacks speed.
*
* @author silverweed
*/
public class BigMacintosh extends Pony {
public BigMacintosh(int _level) {
super(_level);
name = "BigMacintosh";
type[0] = Type.HONESTY;
type[1] = Type.LOYALTY;
race = Race.EARTHPONY;
sex = Sex.MALE;
baseHp = 115;
baseAtk = 80;
baseDef = 108;
baseSpatk = 37;
baseSpdef = 85;
baseSpeed = 35;
/* Learnable Moves */
learnableMoves.put("Tackle",1);
learnableMoves.put("Heavy Massage",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Wild Weed",1);
learnableMoves.put("Entrench",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Applebuck",15);
learnableMoves.put("Relax",30);
possibleAbilities[0] = "Brute Force";
possibleAbilities[1] = "Integrity";
possibleAbilities[2] = "Self Confidence";
}
}