示例#1
0
        public Alakazam(double health, string status)
        {
            name  = "Alakazam";
            type1 = new Psychic();

            estimatedSpeed   = 372;
            estimatedHealth  = 251;
            estimatedAttack  = 122;
            estimatedDefense = 127;
            estimatedSpAttk  = 369;
            estimatedSpDef   = 226;
            move1            = new PsychicA();
            move2            = new ShadowBall();
            move3            = new FocusBlast();
            move4            = new DazzlingGleam();
            Initialize(name, health, status);
            item = "Life Orb";
        }
示例#2
0
 public Alakazam(double health, string status)
 {
     name = "Alakazam";
     type1 = new Psychic();
     
     estimatedSpeed = 372;
     estimatedHealth = 251;
     estimatedAttack = 122;
     estimatedDefense = 127;
     estimatedSpAttk = 369;
     estimatedSpDef = 226;
     move1 = new PsychicA();
     move2 = new ShadowBall();
     move3 = new FocusBlast();
     move4 = new DazzlingGleam();
     Initialize(name, health, status);
     item = "Life Orb";
 }