-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNightmareMoon.java
50 lines (40 loc) · 1.12 KB
/
NightmareMoon.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
//: pony/NightmareMoon.java
package pokepon.pony;
import pokepon.enums.*;
/** Nightmare Moon
* excels in Special Attack, Special Defense and Defense;
* lacks physical Attack and has average speed.
*
* @author silverweed
*/
public class NightmareMoon extends Pony {
public NightmareMoon(int _level) {
super(_level);
name = "Nightmare Moon";
type[0] = Type.NIGHT;
race = Race.ALICORN;
sex = Sex.FEMALE;
baseHp = 110;
baseAtk = 90;
baseDef = 90;
baseSpatk = 145;
baseSpdef = 120;
baseSpeed = 95;
/* learnableMoves ... */
learnableMoves.put("Night Wind",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Mirror Pond",1);
learnableMoves.put("Scare Away",1);
learnableMoves.put("Teleport Blast",1);
learnableMoves.put("Dark Magic",1);
learnableMoves.put("Surprise Hit",1);
learnableMoves.put("Scheme Up",1);
learnableMoves.put("Dodge",1);
learnableMoves.put("Magic Blast",1);
learnableMoves.put("Shadow Mist",50);
learnableMoves.put("Eternal Night",70);
/* possibleAbilities */
possibleAbilities[0] = "Subjection";
possibleAbilities[1] = "Nocturnality";
}
}