Ejemplo n.º 1
0
 public Pinsir(double health, string status)
 {
     name = "Pinsir";
     type1 = new Bug();
     
     estimatedSpeed = 309; estimatedHealth = 309; estimatedAttack = 309; estimatedDefense = 309; estimatedSpAttk = 309; estimatedSpDef = 309; move1 = new Flamethrower(); move2 = new Flamethrower(); move3 = new Flamethrower(); move4 = new Flamethrower(); Initialize(name, health, status);
 }
Ejemplo n.º 2
0
 public Scolipede(double health, string status)
 {
     name = "Scolipede";
     type1 = new Poison();
     type2 = new Bug();
     
     estimatedSpeed = 309; estimatedHealth = 309; estimatedAttack = 309; estimatedDefense = 309; estimatedSpAttk = 309; estimatedSpDef = 309; move1 = new Flamethrower(); move2 = new Flamethrower(); move3 = new Flamethrower(); move4 = new Flamethrower(); Initialize(name, health, status);
 }
Ejemplo n.º 3
0
 public Forretress(double health, string status)
 {
     name = "Forretress";
     type1 = new Steel();
     type2 = new Bug();
     
     estimatedSpeed = 309; estimatedHealth = 309; estimatedAttack = 309; estimatedDefense = 309; estimatedSpAttk = 309; estimatedSpDef = 309; move1 = new Flamethrower(); move2 = new Flamethrower(); move3 = new Flamethrower(); move4 = new Flamethrower(); Initialize(name, health, status);
 }
Ejemplo n.º 4
0
 public Galvantula(double health, string status)
 {
     name = "Galvantula";
     type1 = new Bug();
     type2 = new Electric();
     
     estimatedSpeed = 309; estimatedHealth = 309; estimatedAttack = 309; estimatedDefense = 309; estimatedSpAttk = 309; estimatedSpDef = 309; move1 = new Flamethrower(); move2 = new Flamethrower(); move3 = new Flamethrower(); move4 = new Flamethrower(); Initialize(name, health, status);
 }