-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNeonLights.java
55 lines (44 loc) · 1.22 KB
/
NeonLights.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
54
55
//: pony/NeonLights.java
package pokepon.pony;
import pokepon.enums.*;
/** NeonLights
* Good Atk and Speed and very good SpA, but low bulk.
*
* @author silverweed
*/
public class NeonLights extends Pony {
public NeonLights(int _level) {
super(_level);
name = "Neon Lights";
type[0] = Type.MUSIC;
type[1] = Type.NIGHT;
race = Race.UNICORN;
sex = Sex.MALE;
baseHp = 65;
baseAtk = 85;
baseDef = 53;
baseSpatk = 103;
baseSpdef = 70;
baseSpeed = 89;
/* learnableMoves ... */
learnableMoves.put("Icy Cannon",1);
learnableMoves.put("Drum Bang",1);
learnableMoves.put("Surprise Hit",1);
learnableMoves.put("Repeat",1);
learnableMoves.put("Magic Blast",1);
learnableMoves.put("Hind Kick",1);
learnableMoves.put("Glowing Laser",1);
learnableMoves.put("Crazy Stunt",1);
learnableMoves.put("Bubble Burst",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Sonic Barrier",1);
learnableMoves.put("Get Hype",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Holler Out",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Dissonance",1);
learnableMoves.put("Bass Drop",36);
learnableMoves.put("Bass Cannon",50);
possibleAbilities[0] = "Nocturnality";
}
}