-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSunsetShimmer.java
47 lines (38 loc) · 1.04 KB
/
SunsetShimmer.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/SunsetShimmer.java
package pokepon.pony;
import pokepon.enums.*;
/** Sunset Shimmer
* Very good SpA and other stats balanced;
* (Note: defs are weak because this typing has 5(!!) 1/4x resistances)
*
* @author silverweed
*/
public class SunsetShimmer extends Pony {
public SunsetShimmer(int _level) {
super(_level);
name = "Sunset Shimmer";
type[0] = Type.LIGHT;
type[1] = Type.SHADOW;
race = Race.UNICORN;
sex = Sex.FEMALE;
baseHp = 75;
baseAtk = 60;
baseDef = 60;
baseSpatk = 120;
baseSpdef = 55;
baseSpeed = 80;
/* Learnable Moves */
learnableMoves.put("Magic Blast",1);
learnableMoves.put("Dark Magic",1);
learnableMoves.put("Charge",1);
learnableMoves.put("Night Wind",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Teleport Blast",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Scorching Beam",30);
learnableMoves.put("Glowing Laser",60);
possibleAbilities[0] = "Shining Coat";
possibleAbilities[1] = "Aversion";
}
}