-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStarlightGlimmer.java
53 lines (44 loc) · 1.21 KB
/
StarlightGlimmer.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
52
53
//: pony/StarlightGlimmer.java
package pokepon.pony;
import pokepon.enums.*;
/** StarlightGlimmer
* Very good specials and good bulk;
* lacks atk and speed.
*
* @author silverweed
*/
public class StarlightGlimmer extends Pony {
public StarlightGlimmer(int _level) {
super(_level);
name = "Starlight Glimmer";
type[0] = Type.MAGIC;
type[1] = Type.SHADOW;
race = Race.UNICORN;
sex = Sex.FEMALE;
baseHp = 75;
baseAtk = 60;
baseDef = 75;
baseSpatk = 120;
baseSpdef = 110;
baseSpeed = 50;
/* learnableMoves ... */
learnableMoves.put("Cutie Unmark",1);
learnableMoves.put("Evil Plot",1);
learnableMoves.put("Horn Beam",1);
learnableMoves.put("Rectify",1);
learnableMoves.put("Power Display",1);
learnableMoves.put("Telekinesis",1);
learnableMoves.put("Dark Magic",1);
learnableMoves.put("Magic Shield",1);
learnableMoves.put("Burning Powder",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Surprise Hit",1);
learnableMoves.put("Sneak Attack",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Charge",20);
learnableMoves.put("Shadow Mist",80);
/* possibleAbilities */
possibleAbilities[0] = "Equalize";
}
}