-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrincessErroria.java
60 lines (52 loc) · 1.48 KB
/
PrincessErroria.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
56
57
58
59
60
//: pony/PrincessErroria.java
package pokepon.pony;
import pokepon.enums.*;
import pokepon.util.Meta;
import static pokepon.util.Meta.*;
import java.net.*;
/** Princess Erroria
* Foalish stats, but has access to any signature move.
*
* @author
*/
public class PrincessErroria extends Pony {
public PrincessErroria(int _level) {
super(_level);
name = "Princess Erroria";
type[0] = Type.LOVE;
type[1] = Type.CHAOS;
race = Race.ALICORN;
sex = Sex.FEMALE;
baseHp = 90;
baseAtk = 65;
baseDef = 65;
baseSpatk = 40;
baseSpdef = 40;
baseSpeed = 15;
/* learnableMoves ... */
learnableMoves.put("Flit About",1);
learnableMoves.put("Hidden Talent",1);
learnableMoves.put("Trailblazer",1);
learnableMoves.put("Stare",1);
learnableMoves.put("Sonic Rainboom",1);
learnableMoves.put("Raise Sun",1);
learnableMoves.put("Party Cannon",1);
learnableMoves.put("Evil Plot",1);
learnableMoves.put("Mutate",1);
learnableMoves.put("Love Burst",1);
learnableMoves.put("Joke",1);
learnableMoves.put("Gem Storm",1);
learnableMoves.put("Furry Coat",1);
learnableMoves.put("Eternal Night",1);
learnableMoves.put("Bullet Shower",1);
learnableMoves.put("Bizaam",1);
learnableMoves.put("Bass Drop",1);
learnableMoves.put("Bass Cannon",1);
learnableMoves.put("Balefire",1);
learnableMoves.put("Venom Potion",1);
learnableMoves.put("Lullaby",1);
learnableMoves.put("Freeze Spell",1);
learnableMoves.put("Chatter",1);
learnableMoves.put("Burning Powder",1);
}
}