예제 #1
0
 public Blastoise(double health, string status)
 {
     name = "Blastoise";
     type1 = new Water();
     
     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);
 }
예제 #2
0
 public Keldeo(double health, string status)
 {
     name = "Keldeo";
     type1 = new Water();
     type2 = new Fighting();
     
     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);
 }
예제 #3
0
 public Crawdaunt(double health, string status)
 {
     name = "Crawdaunt";
     type1 = new Water();
     type2 = new Dark();
     
     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);
 }
예제 #4
0
 public Slowbro(double health, string status)
 {
     name = "Slowbro";
     type1 = new Water();
     type2 = new Psychic();
     
     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);
 }
예제 #5
0
 public Swampert(double health, string status)
 {
     name = "Swampert";
     type1 = new Water();
     type2 = new Ground();
     
     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);
 }
예제 #6
0
 public RotomW(double health, string status)
 {
     name = "RotomW";
     type1 = new Water();
     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);
 }
예제 #7
0
 public Tentacruel(double health, string status)
 {
     name = "Tentacruel";
     type1 = new Water();
     type2 = new Poison();
     
     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);
 }