Advertisement
nPhoenix

Pokédex

Oct 20th, 2014
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 85.17 KB | None | 0 0
  1.  
  2. -- phpMyAdmin SQL Dump
  3. -- version 3.5.2.2
  4. -- http://www.phpmyadmin.net
  5. --
  6. -- Servidor: localhost
  7. -- Tempo de Geração: 20/10/2014 às 14:53:41
  8. -- Versão do Servidor: 5.1.69
  9. -- Versão do PHP: 5.2.17
  10.  
  11. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  12. SET time_zone = "+00:00";
  13.  
  14.  
  15. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  16. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  17. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  18. /*!40101 SET NAMES utf8 */;
  19.  
  20. --
  21. -- Banco de Dados: ``
  22. --
  23.  
  24. -- --------------------------------------------------------
  25.  
  26. --
  27. -- Estrutura da tabela `pokemons`
  28. --
  29.  
  30. CREATE TABLE IF NOT EXISTS `pokemons` (
  31.   `id` SMALLINT(3) NOT NULL,
  32.   `name` VARCHAR(50) NOT NULL,
  33.   `type1` VARCHAR(10) NOT NULL,
  34.   `type2` VARCHAR(10) NOT NULL,
  35.   `height` SMALLINT(5) NOT NULL,
  36.   `weight` SMALLINT(5) NOT NULL,
  37.   `ability1` VARCHAR(20) NOT NULL,
  38.   `ability2` VARCHAR(20) NOT NULL,
  39.   `ability3` VARCHAR(20) NOT NULL,
  40.   `ability4` VARCHAR(20) NOT NULL,
  41.   `hp` SMALLINT(3) NOT NULL,
  42.   `attack` SMALLINT(3) NOT NULL,
  43.   `defense` SMALLINT(3) NOT NULL,
  44.   `spattack` SMALLINT(3) NOT NULL,
  45.   `spdefense` SMALLINT(3) NOT NULL,
  46.   `speed` SMALLINT(3) NOT NULL,
  47.   PRIMARY KEY (`id`)
  48. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  49.  
  50. --
  51. -- Extraindo dados da tabela `pokemons`
  52. --
  53.  
  54. INSERT INTO `pokemons` (`id`, `name`, `type1`, `type2`, `height`, `weight`, `ability1`, `ability2`, `ability3`, `ability4`, `hp`, `attack`, `defense`, `spattack`, `spdefense`, `speed`) VALUES
  55. (1, 'Bulbasaur', 'poison', 'grass', 7, 69, 'chlorophyll', 'overgrow', '(None)', '(None)', 45, 49, 49, 65, 65, 45),
  56. (2, 'Ivysaur', 'poison', 'grass', 10, 130, 'chlorophyll', 'overgrow', '(None)', '(None)', 60, 62, 63, 80, 80, 60),
  57. (3, 'Venusaur', 'poison', 'grass', 20, 1000, 'chlorophyll', 'overgrow', '(None)', '(None)', 80, 82, 83, 100, 100, 80),
  58. (4, 'Charmander', 'fire', '(None)', 6, 85, 'blaze', 'solar-power', '(None)', '(None)', 39, 52, 43, 60, 50, 65),
  59. (5, 'Charmeleon', 'fire', '(None)', 11, 190, 'blaze', 'solar-power', '(None)', '(None)', 58, 64, 58, 80, 65, 80),
  60. (6, 'Charizard', 'flying', 'fire', 17, 905, 'blaze', 'solar-power', '(None)', '(None)', 78, 84, 78, 109, 85, 100),
  61. (7, 'Squirtle', 'water', '(None)', 5, 90, 'rain-dish', 'torrent', '(None)', '(None)', 44, 48, 65, 50, 64, 43),
  62. (8, 'Wartortle', 'water', '(None)', 10, 225, 'rain-dish', 'torrent', '(None)', '(None)', 59, 63, 80, 65, 80, 58),
  63. (9, 'Blastoise', 'water', '(None)', 16, 855, 'rain-dish', 'torrent', '(None)', '(None)', 79, 83, 100, 85, 105, 78),
  64. (10, 'Caterpie', 'bug', '(None)', 3, 29, 'shield-dust', 'run-away', '(None)', '(None)', 45, 30, 35, 20, 20, 45),
  65. (11, 'Metapod', 'bug', '(None)', 7, 99, 'shed-skin', '(None)', '(None)', '(None)', 50, 20, 55, 25, 25, 30),
  66. (12, 'Butterfree', 'flying', 'bug', 11, 320, 'compoundeyes', 'tinted-lens', '(None)', '(None)', 60, 45, 50, 90, 80, 70),
  67. (13, 'Weedle', 'poison', 'bug', 3, 32, 'shield-dust', 'run-away', '(None)', '(None)', 40, 35, 30, 20, 20, 50),
  68. (14, 'Kakuna', 'poison', 'bug', 6, 100, 'shed-skin', '(None)', '(None)', '(None)', 45, 25, 50, 25, 25, 35),
  69. (15, 'Beedrill', 'poison', 'bug', 10, 295, 'swarm', 'sniper', '(None)', '(None)', 65, 90, 40, 45, 80, 75),
  70. (16, 'Pidgey', 'normal', 'flying', 3, 18, 'keen-eye', 'tangled-feet', 'big-pecks', '(None)', 40, 45, 40, 35, 35, 56),
  71. (17, 'Pidgeotto', 'normal', 'flying', 11, 300, 'keen-eye', 'tangled-feet', 'big-pecks', '(None)', 63, 60, 55, 50, 50, 71),
  72. (18, 'Pidgeot', 'normal', 'flying', 15, 395, 'keen-eye', 'tangled-feet', 'big-pecks', '(None)', 83, 80, 75, 70, 70, 101),
  73. (19, 'Rattata', 'normal', '(None)', 3, 35, 'run-away', 'hustle', 'guts', '(None)', 30, 56, 35, 25, 35, 72),
  74. (20, 'Raticate', 'normal', '(None)', 7, 185, 'run-away', 'hustle', 'guts', '(None)', 55, 81, 60, 50, 70, 97),
  75. (21, 'Spearow', 'normal', 'flying', 3, 20, 'keen-eye', 'sniper', '(None)', '(None)', 40, 60, 30, 31, 31, 70),
  76. (22, 'Fearow', 'normal', 'flying', 12, 380, 'keen-eye', 'sniper', '(None)', '(None)', 65, 90, 65, 61, 61, 100),
  77. (23, 'Ekans', 'poison', '(None)', 20, 69, 'intimidate', 'shed-skin', 'unnerve', '(None)', 35, 60, 44, 40, 54, 55),
  78. (24, 'Arbok', 'poison', '(None)', 35, 650, 'intimidate', 'shed-skin', 'unnerve', '(None)', 60, 85, 69, 65, 79, 80),
  79. (25, 'Pikachu', 'electric', '(None)', 4, 60, 'static', 'lightningrod', '(None)', '(None)', 35, 55, 40, 50, 50, 90),
  80. (26, 'Raichu', 'electric', '(None)', 8, 300, 'static', 'lightningrod', '(None)', '(None)', 60, 90, 55, 90, 80, 110),
  81. (27, 'Sandshrew', 'ground', '(None)', 6, 120, 'sand-veil', 'sand-rush', '(None)', '(None)', 50, 75, 85, 20, 30, 40),
  82. (28, 'Sandslash', 'ground', '(None)', 10, 295, 'sand-veil', 'sand-rush', '(None)', '(None)', 75, 100, 110, 45, 55, 65),
  83. (29, 'Nidoran-f', 'poison', '(None)', 4, 70, 'poison-point', 'hustle', 'rivalry', '(None)', 55, 47, 52, 40, 40, 41),
  84. (30, 'Nidorina', 'poison', '(None)', 8, 200, 'poison-point', 'hustle', 'rivalry', '(None)', 70, 62, 67, 55, 55, 56),
  85. (31, 'Nidoqueen', 'poison', 'ground', 13, 600, 'poison-point', 'rivalry', 'sheer-force', '(None)', 90, 92, 87, 75, 85, 76),
  86. (32, 'Nidoran-m', 'poison', '(None)', 5, 90, 'poison-point', 'hustle', 'rivalry', '(None)', 46, 57, 40, 40, 40, 50),
  87. (33, 'Nidorino', 'poison', '(None)', 9, 195, 'poison-point', 'hustle', 'rivalry', '(None)', 61, 72, 57, 55, 55, 65),
  88. (34, 'Nidoking', 'poison', 'ground', 14, 620, 'poison-point', 'rivalry', 'sheer-force', '(None)', 81, 102, 77, 85, 75, 85),
  89. (35, 'Clefairy', 'fairy', '(None)', 6, 75, 'cute-charm', 'magic-guard', 'friend-guard', '(None)', 70, 45, 48, 60, 65, 35),
  90. (36, 'Clefable', 'fairy', '(None)', 13, 400, 'cute-charm', 'magic-guard', 'unaware', '(None)', 95, 70, 73, 95, 90, 60),
  91. (37, 'Vulpix', 'fire', '(None)', 6, 99, 'flash-fire', 'drought', '(None)', '(None)', 38, 41, 40, 50, 65, 65),
  92. (38, 'Ninetales', 'fire', '(None)', 11, 199, 'flash-fire', 'drought', '(None)', '(None)', 73, 76, 75, 81, 100, 100),
  93. (39, 'Jigglypuff', 'normal', 'fairy', 5, 55, 'cute-charm', 'friend-guard', '(None)', '(None)', 115, 45, 20, 45, 25, 20),
  94. (40, 'Wigglytuff', 'normal', 'fairy', 10, 120, 'cute-charm', 'frisk', '(None)', '(None)', 140, 70, 45, 85, 50, 45),
  95. (41, 'Zubat', 'flying', 'poison', 8, 75, 'inner-focus', 'infiltrator', '(None)', '(None)', 40, 45, 35, 30, 40, 55),
  96. (42, 'Golbat', 'flying', 'poison', 16, 550, 'inner-focus', 'infiltrator', '(None)', '(None)', 75, 80, 70, 65, 75, 90),
  97. (43, 'Oddish', 'poison', 'grass', 5, 54, 'chlorophyll', 'run-away', '(None)', '(None)', 45, 50, 55, 75, 65, 30),
  98. (44, 'Gloom', 'poison', 'grass', 8, 86, 'stench', 'chlorophyll', '(None)', '(None)', 60, 65, 70, 85, 75, 40),
  99. (45, 'Vileplume', 'poison', 'grass', 12, 186, 'effect-spore', 'chlorophyll', '(None)', '(None)', 75, 80, 85, 110, 90, 50),
  100. (46, 'Paras', 'bug', 'grass', 3, 54, 'damp', 'effect-spore', 'dry-skin', '(None)', 35, 70, 55, 45, 55, 25),
  101. (47, 'Parasect', 'bug', 'grass', 10, 295, 'damp', 'effect-spore', 'dry-skin', '(None)', 60, 95, 80, 60, 80, 30),
  102. (48, 'Venonat', 'poison', 'bug', 10, 300, 'compoundeyes', 'run-away', 'tinted-lens', '(None)', 60, 55, 50, 40, 55, 45),
  103. (49, 'Venomoth', 'poison', 'bug', 15, 125, 'shield-dust', 'tinted-lens', 'wonder-skin', '(None)', 70, 65, 60, 90, 75, 90),
  104. (50, 'Diglett', 'ground', '(None)', 2, 8, 'sand-veil', 'arena-trap', 'sand-force', '(None)', 10, 55, 25, 35, 45, 95),
  105. (51, 'Dugtrio', 'ground', '(None)', 7, 333, 'sand-veil', 'arena-trap', 'sand-force', '(None)', 35, 80, 50, 50, 70, 120),
  106. (52, 'Meowth', 'normal', '(None)', 4, 42, 'pickup', 'technician', 'unnerve', '(None)', 40, 45, 35, 40, 40, 90),
  107. (53, 'Persian', 'normal', '(None)', 10, 320, 'limber', 'technician', 'unnerve', '(None)', 65, 70, 60, 65, 65, 115),
  108. (54, 'Psyduck', 'water', '(None)', 8, 196, 'damp', 'cloud-nine', 'swift-swim', '(None)', 50, 52, 48, 65, 50, 55),
  109. (55, 'Golduck', 'water', '(None)', 17, 766, 'damp', 'cloud-nine', 'swift-swim', '(None)', 80, 82, 78, 95, 80, 85),
  110. (56, 'Mankey', 'fighting', '(None)', 5, 280, 'vital-spirit', 'anger-point', 'defiant', '(None)', 40, 80, 35, 35, 45, 70),
  111. (57, 'Primeape', 'fighting', '(None)', 10, 320, 'vital-spirit', 'anger-point', 'defiant', '(None)', 65, 105, 60, 60, 70, 95),
  112. (58, 'Growlithe', 'fire', '(None)', 7, 190, 'flash-fire', 'intimidate', 'justified', '(None)', 55, 70, 45, 70, 50, 60),
  113. (59, 'Arcanine', 'fire', '(None)', 19, 1550, 'flash-fire', 'intimidate', 'justified', '(None)', 90, 110, 80, 100, 80, 95),
  114. (60, 'Poliwag', 'water', '(None)', 6, 124, 'damp', 'water-absorb', 'swift-swim', '(None)', 40, 50, 40, 40, 40, 90),
  115. (61, 'Poliwhirl', 'water', '(None)', 10, 200, 'damp', 'water-absorb', 'swift-swim', '(None)', 65, 65, 65, 50, 50, 90),
  116. (62, 'Poliwrath', 'fighting', 'water', 13, 540, 'damp', 'water-absorb', 'swift-swim', '(None)', 90, 95, 95, 70, 90, 70),
  117. (63, 'Abra', 'psychic', '(None)', 9, 195, 'synchronize', 'inner-focus', 'magic-guard', '(None)', 25, 20, 15, 105, 55, 90),
  118. (64, 'Kadabra', 'psychic', '(None)', 13, 565, 'synchronize', 'inner-focus', 'magic-guard', '(None)', 40, 35, 30, 120, 70, 105),
  119. (65, 'Alakazam', 'psychic', '(None)', 15, 480, 'synchronize', 'inner-focus', 'magic-guard', '(None)', 55, 50, 45, 135, 95, 120),
  120. (66, 'Machop', 'fighting', '(None)', 8, 195, 'guts', 'steadfast', 'no-guard', '(None)', 70, 80, 50, 35, 35, 35),
  121. (67, 'Machoke', 'fighting', '(None)', 15, 705, 'guts', 'steadfast', 'no-guard', '(None)', 80, 100, 70, 50, 60, 45),
  122. (68, 'Machamp', 'fighting', '(None)', 16, 1300, 'guts', 'steadfast', 'no-guard', '(None)', 90, 130, 80, 65, 85, 55),
  123. (69, 'Bellsprout', 'poison', 'grass', 7, 40, 'chlorophyll', 'gluttony', '(None)', '(None)', 50, 75, 35, 70, 30, 40),
  124. (70, 'Weepinbell', 'poison', 'grass', 10, 64, 'chlorophyll', 'gluttony', '(None)', '(None)', 65, 90, 50, 85, 45, 55),
  125. (71, 'Victreebel', 'poison', 'grass', 17, 155, 'chlorophyll', 'gluttony', '(None)', '(None)', 80, 105, 65, 100, 70, 70),
  126. (72, 'Tentacool', 'poison', 'water', 9, 455, 'clear-body', 'rain-dish', 'liquid-ooze', '(None)', 40, 40, 35, 50, 100, 70),
  127. (73, 'Tentacruel', 'poison', 'water', 16, 550, 'clear-body', 'rain-dish', 'liquid-ooze', '(None)', 80, 70, 65, 80, 120, 100),
  128. (74, 'Geodude', 'ground', 'rock', 4, 200, 'sturdy', 'sand-veil', 'rock-head', '(None)', 40, 80, 100, 30, 30, 20),
  129. (75, 'Graveler', 'ground', 'rock', 10, 1050, 'sturdy', 'sand-veil', 'rock-head', '(None)', 55, 95, 115, 45, 45, 35),
  130. (76, 'Golem', 'ground', 'rock', 14, 3000, 'sturdy', 'sand-veil', 'rock-head', '(None)', 80, 120, 130, 55, 65, 45),
  131. (77, 'Ponyta', 'fire', '(None)', 10, 300, 'flash-fire', 'flame-body', 'run-away', '(None)', 50, 85, 55, 65, 65, 90),
  132. (78, 'Rapidash', 'fire', '(None)', 17, 950, 'flash-fire', 'flame-body', 'run-away', '(None)', 65, 100, 70, 80, 80, 105),
  133. (79, 'Slowpoke', 'water', 'psychic', 12, 360, 'oblivious', 'own-tempo', 'regenerator', '(None)', 90, 65, 65, 40, 40, 15),
  134. (80, 'Slowbro', 'water', 'psychic', 16, 785, 'oblivious', 'own-tempo', 'regenerator', '(None)', 95, 75, 110, 100, 80, 30),
  135. (81, 'Magnemite', 'steel', 'electric', 3, 60, 'sturdy', 'magnet-pull', 'analytic', '(None)', 25, 35, 70, 95, 55, 45),
  136. (82, 'Magneton', 'steel', 'electric', 10, 600, 'sturdy', 'magnet-pull', 'analytic', '(None)', 50, 60, 95, 120, 70, 70),
  137. (83, 'Farfetchd', 'normal', 'flying', 8, 150, 'inner-focus', 'keen-eye', 'defiant', '(None)', 52, 65, 55, 58, 62, 60),
  138. (84, 'Doduo', 'normal', 'flying', 14, 392, 'early-bird', 'run-away', 'tangled-feet', '(None)', 35, 85, 45, 35, 35, 75),
  139. (85, 'Dodrio', 'normal', 'flying', 18, 852, 'early-bird', 'run-away', 'tangled-feet', '(None)', 60, 110, 70, 60, 60, 100),
  140. (86, 'Seel', 'water', '(None)', 11, 900, 'thick-fat', 'hydration', 'ice-body', '(None)', 65, 45, 55, 45, 70, 45),
  141. (87, 'Dewgong', 'water', 'ice', 17, 1200, 'thick-fat', 'hydration', 'ice-body', '(None)', 90, 70, 80, 70, 95, 70),
  142. (88, 'Grimer', 'poison', '(None)', 9, 300, 'stench', 'sticky-hold', 'poison-touch', '(None)', 80, 80, 50, 40, 50, 25),
  143. (89, 'Muk', 'poison', '(None)', 12, 300, 'stench', 'sticky-hold', 'poison-touch', '(None)', 105, 105, 75, 65, 100, 50),
  144. (90, 'Shellder', 'water', '(None)', 3, 40, 'shell-armor', 'skill-link', 'overcoat', '(None)', 30, 65, 100, 45, 25, 40),
  145. (91, 'Cloyster', 'water', 'ice', 15, 1325, 'shell-armor', 'skill-link', 'overcoat', '(None)', 50, 95, 180, 85, 45, 70),
  146. (92, 'Gastly', 'poison', 'ghost', 13, 1, 'levitate', '(None)', '(None)', '(None)', 30, 35, 30, 100, 35, 80),
  147. (93, 'Haunter', 'poison', 'ghost', 16, 1, 'levitate', '(None)', '(None)', '(None)', 45, 50, 45, 115, 55, 95),
  148. (94, 'Gengar', 'poison', 'ghost', 15, 405, 'levitate', '(None)', '(None)', '(None)', 60, 65, 60, 130, 75, 110),
  149. (95, 'Onix', 'ground', 'rock', 88, 2100, 'sturdy', 'rock-head', 'weak-armor', '(None)', 35, 45, 160, 30, 45, 70),
  150. (96, 'Drowzee', 'psychic', '(None)', 10, 324, 'insomnia', 'inner-focus', 'forewarn', '(None)', 60, 48, 45, 43, 90, 42),
  151. (97, 'Hypno', 'psychic', '(None)', 16, 756, 'insomnia', 'inner-focus', 'forewarn', '(None)', 85, 73, 70, 73, 115, 67),
  152. (98, 'Krabby', 'water', '(None)', 4, 65, 'hyper-cutter', 'shell-armor', 'sheer-force', '(None)', 30, 105, 90, 25, 25, 50),
  153. (99, 'Kingler', 'water', '(None)', 13, 600, 'hyper-cutter', 'shell-armor', 'sheer-force', '(None)', 55, 130, 115, 50, 50, 75),
  154. (100, 'Voltorb', 'electric', '(None)', 5, 104, 'static', 'soundproof', 'aftermath', '(None)', 40, 30, 50, 55, 55, 100),
  155. (101, 'Electrode', 'electric', '(None)', 12, 666, 'static', 'soundproof', 'aftermath', '(None)', 60, 50, 70, 80, 80, 140),
  156. (102, 'Exeggcute', 'grass', 'psychic', 4, 25, 'chlorophyll', 'harvest', '(None)', '(None)', 60, 40, 80, 60, 45, 40),
  157. (103, 'Exeggutor', 'grass', 'psychic', 20, 1200, 'chlorophyll', 'harvest', '(None)', '(None)', 95, 95, 85, 125, 65, 55),
  158. (104, 'Cubone', 'ground', '(None)', 4, 65, 'battle-armor', 'lightningrod', 'rock-head', '(None)', 50, 50, 95, 40, 50, 35),
  159. (105, 'Marowak', 'ground', '(None)', 10, 450, 'battle-armor', 'lightningrod', 'rock-head', '(None)', 60, 80, 110, 50, 80, 45),
  160. (106, 'Hitmonlee', 'fighting', '(None)', 15, 498, 'limber', 'unburden', 'reckless', '(None)', 50, 120, 53, 35, 110, 87),
  161. (107, 'Hitmonchan', 'fighting', '(None)', 14, 502, 'inner-focus', 'keen-eye', 'iron-fist', '(None)', 50, 105, 79, 35, 110, 76),
  162. (108, 'Lickitung', 'normal', '(None)', 12, 655, 'oblivious', 'cloud-nine', 'own-tempo', '(None)', 90, 55, 75, 60, 75, 30),
  163. (109, 'Koffing', 'poison', '(None)', 6, 10, 'levitate', '(None)', '(None)', '(None)', 40, 65, 95, 60, 45, 35),
  164. (110, 'Weezing', 'poison', '(None)', 12, 95, 'levitate', '(None)', '(None)', '(None)', 65, 90, 120, 85, 70, 60),
  165. (111, 'Rhyhorn', 'ground', 'rock', 10, 1150, 'lightningrod', 'rock-head', 'reckless', '(None)', 80, 85, 95, 30, 30, 25),
  166. (112, 'Rhydon', 'ground', 'rock', 19, 1200, 'lightningrod', 'rock-head', 'reckless', '(None)', 105, 130, 120, 45, 45, 40),
  167. (113, 'Chansey', 'normal', '(None)', 11, 346, 'natural-cure', 'serene-grace', 'healer', '(None)', 250, 5, 5, 35, 105, 50),
  168. (114, 'Tangela', 'grass', '(None)', 10, 350, 'chlorophyll', 'leaf-guard', 'regenerator', '(None)', 65, 55, 115, 100, 40, 60),
  169. (115, 'Kangaskhan', 'normal', '(None)', 22, 800, 'inner-focus', 'early-bird', 'scrappy', '(None)', 105, 95, 80, 40, 80, 90),
  170. (116, 'Horsea', 'water', '(None)', 4, 80, 'damp', 'swift-swim', 'sniper', '(None)', 30, 40, 70, 70, 25, 60),
  171. (117, 'Seadra', 'water', '(None)', 12, 250, 'damp', 'poison-point', 'sniper', '(None)', 55, 65, 95, 95, 45, 85),
  172. (118, 'Goldeen', 'water', '(None)', 6, 150, 'lightningrod', 'swift-swim', 'water-veil', '(None)', 45, 67, 60, 35, 50, 63),
  173. (119, 'Seaking', 'water', '(None)', 13, 390, 'lightningrod', 'swift-swim', 'water-veil', '(None)', 80, 92, 65, 65, 80, 68),
  174. (120, 'Staryu', 'water', '(None)', 8, 345, 'natural-cure', 'illuminate', 'analytic', '(None)', 30, 45, 55, 70, 55, 85),
  175. (121, 'Starmie', 'water', 'psychic', 11, 800, 'natural-cure', 'illuminate', 'analytic', '(None)', 60, 75, 85, 100, 85, 115),
  176. (122, 'Mr-mime', 'fairy', 'psychic', 13, 545, 'soundproof', 'technician', 'filter', '(None)', 40, 45, 65, 100, 120, 90),
  177. (123, 'Scyther', 'flying', 'bug', 15, 560, 'swarm', 'steadfast', 'technician', '(None)', 70, 110, 80, 55, 80, 105),
  178. (124, 'Jynx', 'ice', 'psychic', 14, 406, 'oblivious', 'dry-skin', 'forewarn', '(None)', 65, 50, 35, 115, 95, 95),
  179. (125, 'Electabuzz', 'electric', '(None)', 11, 300, 'static', 'vital-spirit', '(None)', '(None)', 65, 83, 57, 95, 85, 105),
  180. (126, 'Magmar', 'fire', '(None)', 13, 445, 'flame-body', 'vital-spirit', '(None)', '(None)', 65, 95, 57, 100, 85, 93),
  181. (127, 'Pinsir', 'bug', '(None)', 15, 550, 'hyper-cutter', 'mold-breaker', 'moxie', '(None)', 65, 125, 100, 55, 70, 85),
  182. (128, 'Tauros', 'normal', '(None)', 14, 884, 'intimidate', 'anger-point', 'sheer-force', '(None)', 75, 100, 95, 40, 70, 110),
  183. (129, 'Magikarp', 'water', '(None)', 9, 100, 'swift-swim', 'rattled', '(None)', '(None)', 20, 10, 55, 15, 20, 80),
  184. (130, 'Gyarados', 'flying', 'water', 65, 2350, 'intimidate', 'moxie', '(None)', '(None)', 95, 125, 79, 60, 100, 81),
  185. (131, 'Lapras', 'water', 'ice', 25, 2200, 'water-absorb', 'shell-armor', 'hydration', '(None)', 130, 85, 80, 85, 95, 60),
  186. (132, 'Ditto', 'normal', '(None)', 3, 40, 'limber', 'imposter', '(None)', '(None)', 48, 48, 48, 48, 48, 48),
  187. (133, 'Eevee', 'normal', '(None)', 3, 65, 'run-away', 'adaptability', 'anticipation', '(None)', 55, 55, 50, 45, 65, 55),
  188. (134, 'Vaporeon', 'water', '(None)', 10, 290, 'water-absorb', 'hydration', '(None)', '(None)', 130, 65, 60, 110, 95, 65),
  189. (135, 'Jolteon', 'electric', '(None)', 8, 245, 'volt-absorb', 'quick-feet', '(None)', '(None)', 65, 65, 60, 110, 95, 130),
  190. (136, 'Flareon', 'fire', '(None)', 9, 250, 'flash-fire', 'guts', '(None)', '(None)', 65, 130, 60, 95, 110, 65),
  191. (137, 'Porygon', 'normal', '(None)', 8, 365, 'trace', 'download', 'analytic', '(None)', 65, 60, 70, 85, 75, 40),
  192. (138, 'Omanyte', 'rock', 'water', 4, 75, 'swift-swim', 'shell-armor', 'weak-armor', '(None)', 35, 40, 100, 90, 55, 35),
  193. (139, 'Omastar', 'rock', 'water', 10, 350, 'swift-swim', 'shell-armor', 'weak-armor', '(None)', 70, 60, 125, 115, 70, 55),
  194. (140, 'Kabuto', 'rock', 'water', 5, 115, 'battle-armor', 'swift-swim', 'weak-armor', '(None)', 30, 80, 90, 55, 45, 55),
  195. (141, 'Kabutops', 'rock', 'water', 13, 405, 'battle-armor', 'swift-swim', 'weak-armor', '(None)', 60, 115, 105, 65, 70, 80),
  196. (142, 'Aerodactyl', 'flying', 'rock', 18, 590, 'pressure', 'rock-head', 'unnerve', '(None)', 80, 105, 65, 60, 75, 130),
  197. (143, 'Snorlax', 'normal', '(None)', 21, 4600, 'immunity', 'thick-fat', 'gluttony', '(None)', 160, 110, 65, 65, 110, 30),
  198. (144, 'Articuno', 'flying', 'ice', 17, 554, 'pressure', 'snow-cloak', '(None)', '(None)', 90, 85, 100, 95, 125, 85),
  199. (145, 'Zapdos', 'flying', 'electric', 16, 526, 'lightningrod', 'pressure', '(None)', '(None)', 90, 90, 85, 125, 90, 100),
  200. (146, 'Moltres', 'flying', 'fire', 20, 600, 'pressure', 'flame-body', '(None)', '(None)', 90, 100, 90, 125, 85, 90),
  201. (147, 'Dratini', 'dragon', '(None)', 18, 33, 'shed-skin', 'marvel-scale', '(None)', '(None)', 41, 64, 45, 50, 50, 50),
  202. (148, 'Dragonair', 'dragon', '(None)', 40, 165, 'shed-skin', 'marvel-scale', '(None)', '(None)', 61, 84, 65, 70, 70, 70),
  203. (149, 'Dragonite', 'flying', 'dragon', 22, 2100, 'inner-focus', 'multiscale', '(None)', '(None)', 91, 134, 95, 100, 100, 80),
  204. (150, 'Mewtwo', 'psychic', '(None)', 20, 1220, 'pressure', 'unnerve', '(None)', '(None)', 106, 110, 90, 154, 90, 130),
  205. (151, 'Mew', 'psychic', '(None)', 4, 40, 'synchronize', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  206. (152, 'Chikorita', 'grass', '(None)', 9, 64, 'overgrow', 'leaf-guard', '(None)', '(None)', 45, 49, 65, 49, 65, 45),
  207. (153, 'Bayleef', 'grass', '(None)', 12, 158, 'overgrow', 'leaf-guard', '(None)', '(None)', 60, 62, 80, 63, 80, 60),
  208. (154, 'Meganium', 'grass', '(None)', 18, 1005, 'overgrow', 'leaf-guard', '(None)', '(None)', 80, 82, 100, 83, 100, 80),
  209. (155, 'Cyndaquil', 'fire', '(None)', 5, 79, 'flash-fire', 'blaze', '(None)', '(None)', 39, 52, 43, 60, 50, 65),
  210. (156, 'Quilava', 'fire', '(None)', 9, 190, 'flash-fire', 'blaze', '(None)', '(None)', 58, 64, 58, 80, 65, 80),
  211. (157, 'Typhlosion', 'fire', '(None)', 17, 795, 'flash-fire', 'blaze', '(None)', '(None)', 78, 84, 78, 109, 85, 100),
  212. (158, 'Totodile', 'water', '(None)', 6, 95, 'torrent', 'sheer-force', '(None)', '(None)', 50, 65, 64, 44, 48, 43),
  213. (159, 'Croconaw', 'water', '(None)', 11, 250, 'torrent', 'sheer-force', '(None)', '(None)', 65, 80, 80, 59, 63, 58),
  214. (160, 'Feraligatr', 'water', '(None)', 23, 888, 'torrent', 'sheer-force', '(None)', '(None)', 85, 105, 100, 79, 83, 78),
  215. (161, 'Sentret', 'normal', '(None)', 8, 60, 'run-away', 'keen-eye', 'frisk', '(None)', 35, 46, 34, 35, 45, 20),
  216. (162, 'Furret', 'normal', '(None)', 18, 325, 'run-away', 'keen-eye', 'frisk', '(None)', 85, 76, 64, 45, 55, 90),
  217. (163, 'Hoothoot', 'normal', 'flying', 7, 212, 'insomnia', 'keen-eye', 'tinted-lens', '(None)', 60, 30, 30, 36, 56, 50),
  218. (164, 'Noctowl', 'normal', 'flying', 16, 408, 'insomnia', 'keen-eye', 'tinted-lens', '(None)', 100, 50, 50, 76, 96, 70),
  219. (165, 'Ledyba', 'flying', 'bug', 10, 108, 'early-bird', 'swarm', 'rattled', '(None)', 40, 20, 30, 40, 80, 55),
  220. (166, 'Ledian', 'flying', 'bug', 14, 356, 'early-bird', 'swarm', 'iron-fist', '(None)', 55, 35, 50, 55, 110, 85),
  221. (167, 'Spinarak', 'poison', 'bug', 5, 85, 'insomnia', 'swarm', 'sniper', '(None)', 40, 60, 40, 40, 40, 30),
  222. (168, 'Ariados', 'poison', 'bug', 11, 335, 'insomnia', 'swarm', 'sniper', '(None)', 70, 90, 70, 60, 60, 40),
  223. (169, 'Crobat', 'flying', 'poison', 18, 750, 'inner-focus', 'infiltrator', '(None)', '(None)', 85, 90, 80, 70, 80, 130),
  224. (170, 'Chinchou', 'water', 'electric', 5, 120, 'volt-absorb', 'water-absorb', 'illuminate', '(None)', 75, 38, 38, 56, 56, 67),
  225. (171, 'Lanturn', 'water', 'electric', 12, 225, 'volt-absorb', 'water-absorb', 'illuminate', '(None)', 125, 58, 58, 76, 76, 67),
  226. (172, 'Pichu', 'electric', '(None)', 3, 20, 'static', 'lightningrod', '(None)', '(None)', 20, 40, 15, 35, 35, 60),
  227. (173, 'Cleffa', 'fairy', '(None)', 3, 30, 'cute-charm', 'magic-guard', 'friend-guard', '(None)', 50, 25, 28, 45, 55, 15),
  228. (174, 'Igglybuff', 'normal', 'fairy', 3, 10, 'cute-charm', 'friend-guard', '(None)', '(None)', 90, 30, 15, 40, 20, 15),
  229. (175, 'Togepi', 'fairy', '(None)', 3, 15, 'serene-grace', 'hustle', 'super-luck', '(None)', 35, 20, 65, 40, 65, 20),
  230. (176, 'Togetic', 'flying', 'fairy', 6, 32, 'serene-grace', 'hustle', 'super-luck', '(None)', 55, 40, 85, 80, 105, 40),
  231. (177, 'Natu', 'flying', 'psychic', 2, 20, 'synchronize', 'early-bird', 'magic-bounce', '(None)', 40, 50, 45, 70, 45, 70),
  232. (178, 'Xatu', 'flying', 'psychic', 15, 150, 'synchronize', 'early-bird', 'magic-bounce', '(None)', 65, 75, 70, 95, 70, 95),
  233. (179, 'Mareep', 'electric', '(None)', 6, 78, 'static', 'plus', '(None)', '(None)', 55, 40, 40, 65, 45, 35),
  234. (180, 'Flaaffy', 'electric', '(None)', 8, 133, 'static', 'plus', '(None)', '(None)', 70, 55, 55, 80, 60, 45),
  235. (181, 'Ampharos', 'electric', '(None)', 14, 615, 'static', 'plus', '(None)', '(None)', 90, 75, 85, 115, 90, 55),
  236. (182, 'Bellossom', 'grass', '(None)', 4, 58, 'chlorophyll', 'healer', '(None)', '(None)', 75, 80, 95, 90, 100, 50),
  237. (183, 'Marill', 'water', 'fairy', 4, 85, 'huge-power', 'thick-fat', 'sap-sipper', '(None)', 70, 20, 50, 20, 50, 40),
  238. (184, 'Azumarill', 'water', 'fairy', 8, 285, 'huge-power', 'thick-fat', 'sap-sipper', '(None)', 100, 50, 80, 60, 80, 50),
  239. (185, 'Sudowoodo', 'rock', '(None)', 12, 380, 'sturdy', 'rock-head', 'rattled', '(None)', 70, 100, 115, 30, 65, 30),
  240. (186, 'Politoed', 'water', '(None)', 11, 339, 'drizzle', 'damp', 'water-absorb', '(None)', 90, 75, 75, 90, 100, 70),
  241. (187, 'Hoppip', 'flying', 'grass', 4, 5, 'chlorophyll', 'leaf-guard', 'infiltrator', '(None)', 35, 35, 40, 35, 55, 50),
  242. (188, 'Skiploom', 'flying', 'grass', 6, 10, 'chlorophyll', 'leaf-guard', 'infiltrator', '(None)', 55, 45, 50, 45, 65, 80),
  243. (189, 'Jumpluff', 'flying', 'grass', 8, 30, 'chlorophyll', 'leaf-guard', 'infiltrator', '(None)', 75, 55, 70, 55, 95, 110),
  244. (190, 'Aipom', 'normal', '(None)', 8, 115, 'run-away', 'pickup', 'skill-link', '(None)', 55, 70, 55, 40, 55, 85),
  245. (191, 'Sunkern', 'grass', '(None)', 3, 18, 'chlorophyll', 'early-bird', 'solar-power', '(None)', 30, 30, 30, 30, 30, 30),
  246. (192, 'Sunflora', 'grass', '(None)', 8, 85, 'chlorophyll', 'early-bird', 'solar-power', '(None)', 75, 75, 55, 105, 85, 30),
  247. (193, 'Yanma', 'flying', 'bug', 12, 380, 'speed-boost', 'compoundeyes', 'frisk', '(None)', 65, 65, 45, 75, 45, 95),
  248. (194, 'Wooper', 'ground', 'water', 4, 85, 'damp', 'water-absorb', 'unaware', '(None)', 55, 45, 45, 25, 25, 15),
  249. (195, 'Quagsire', 'ground', 'water', 14, 750, 'damp', 'water-absorb', 'unaware', '(None)', 95, 85, 85, 65, 65, 35),
  250. (196, 'Espeon', 'psychic', '(None)', 9, 265, 'synchronize', 'magic-bounce', '(None)', '(None)', 65, 65, 60, 130, 95, 110),
  251. (197, 'Umbreon', 'dark', '(None)', 10, 270, 'synchronize', 'inner-focus', '(None)', '(None)', 95, 65, 110, 60, 130, 65),
  252. (198, 'Murkrow', 'flying', 'dark', 5, 21, 'insomnia', 'super-luck', 'prankster', '(None)', 60, 85, 42, 85, 42, 91),
  253. (199, 'Slowking', 'water', 'psychic', 20, 795, 'oblivious', 'own-tempo', 'regenerator', '(None)', 95, 75, 80, 100, 110, 30),
  254. (200, 'Misdreavus', 'ghost', '(None)', 7, 10, 'levitate', '(None)', '(None)', '(None)', 60, 60, 60, 85, 85, 85),
  255. (201, 'Unown', 'psychic', '(None)', 5, 50, 'levitate', '(None)', '(None)', '(None)', 48, 72, 48, 72, 48, 48),
  256. (202, 'Wobbuffet', 'psychic', '(None)', 13, 285, 'shadow-tag', 'telepathy', '(None)', '(None)', 190, 33, 58, 33, 58, 33),
  257. (203, 'Girafarig', 'normal', 'psychic', 15, 415, 'inner-focus', 'early-bird', 'sap-sipper', '(None)', 70, 80, 65, 90, 65, 85),
  258. (204, 'Pineco', 'bug', '(None)', 6, 72, 'sturdy', 'overcoat', '(None)', '(None)', 50, 65, 90, 35, 35, 15),
  259. (205, 'Forretress', 'bug', 'steel', 12, 1258, 'sturdy', 'overcoat', '(None)', '(None)', 75, 90, 140, 60, 60, 40),
  260. (206, 'Dunsparce', 'normal', '(None)', 15, 140, 'serene-grace', 'run-away', 'rattled', '(None)', 100, 70, 70, 65, 65, 45),
  261. (207, 'Gligar', 'flying', 'ground', 11, 648, 'sand-veil', 'immunity', 'hyper-cutter', '(None)', 65, 75, 105, 35, 65, 85),
  262. (208, 'Steelix', 'ground', 'steel', 92, 4000, 'sturdy', 'rock-head', 'sheer-force', '(None)', 75, 85, 200, 55, 65, 30),
  263. (209, 'Snubbull', 'fairy', '(None)', 6, 78, 'intimidate', 'run-away', 'rattled', '(None)', 60, 80, 50, 40, 40, 30),
  264. (210, 'Granbull', 'fairy', '(None)', 14, 487, 'intimidate', 'quick-feet', 'rattled', '(None)', 90, 120, 75, 60, 60, 45),
  265. (211, 'Qwilfish', 'poison', 'water', 5, 39, 'intimidate', 'swift-swim', 'poison-point', '(None)', 65, 95, 75, 55, 55, 85),
  266. (212, 'Scizor', 'bug', 'steel', 18, 1180, 'swarm', 'technician', 'light-metal', '(None)', 70, 130, 100, 55, 80, 65),
  267. (213, 'Shuckle', 'rock', 'bug', 6, 205, 'sturdy', 'gluttony', 'contrary', '(None)', 20, 10, 230, 10, 230, 5),
  268. (214, 'Heracross', 'fighting', 'bug', 15, 540, 'guts', 'swarm', 'moxie', '(None)', 80, 125, 75, 40, 95, 85),
  269. (215, 'Sneasel', 'ice', 'dark', 9, 280, 'inner-focus', 'keen-eye', 'pickpocket', '(None)', 55, 95, 55, 35, 75, 115),
  270. (216, 'Teddiursa', 'normal', '(None)', 6, 88, 'pickup', 'quick-feet', 'honey-gather', '(None)', 60, 80, 50, 50, 50, 40),
  271. (217, 'Ursaring', 'normal', '(None)', 18, 1258, 'guts', 'quick-feet', 'unnerve', '(None)', 90, 130, 75, 75, 75, 55),
  272. (218, 'Slugma', 'fire', '(None)', 7, 350, 'magma-armor', 'flame-body', 'weak-armor', '(None)', 40, 40, 40, 70, 40, 20),
  273. (219, 'Magcargo', 'rock', 'fire', 8, 550, 'magma-armor', 'flame-body', 'weak-armor', '(None)', 50, 50, 120, 80, 80, 30),
  274. (220, 'Swinub', 'ground', 'ice', 4, 65, 'oblivious', 'thick-fat', 'snow-cloak', '(None)', 50, 50, 40, 30, 30, 50),
  275. (221, 'Piloswine', 'ground', 'ice', 11, 558, 'oblivious', 'thick-fat', 'snow-cloak', '(None)', 100, 100, 80, 60, 60, 50),
  276. (222, 'Corsola', 'rock', 'water', 6, 50, 'natural-cure', 'hustle', 'regenerator', '(None)', 55, 55, 85, 65, 85, 35),
  277. (223, 'Remoraid', 'water', '(None)', 6, 120, 'hustle', 'sniper', 'moody', '(None)', 35, 65, 35, 65, 35, 65),
  278. (224, 'Octillery', 'water', '(None)', 9, 285, 'suction-cups', 'sniper', 'moody', '(None)', 75, 105, 75, 105, 75, 45),
  279. (225, 'Delibird', 'flying', 'ice', 9, 160, 'insomnia', 'hustle', 'vital-spirit', '(None)', 45, 55, 45, 65, 45, 75),
  280. (226, 'Mantine', 'flying', 'water', 21, 2200, 'water-absorb', 'swift-swim', 'water-veil', '(None)', 65, 40, 70, 80, 140, 70),
  281. (227, 'Skarmory', 'flying', 'steel', 17, 505, 'sturdy', 'keen-eye', 'weak-armor', '(None)', 65, 80, 140, 40, 70, 70),
  282. (228, 'Houndour', 'fire', 'dark', 6, 108, 'flash-fire', 'early-bird', 'unnerve', '(None)', 45, 60, 30, 80, 50, 65),
  283. (229, 'Houndoom', 'fire', 'dark', 14, 350, 'flash-fire', 'early-bird', 'unnerve', '(None)', 75, 90, 50, 110, 80, 95),
  284. (230, 'Kingdra', 'water', 'dragon', 18, 1520, 'damp', 'swift-swim', 'sniper', '(None)', 75, 95, 95, 95, 95, 85),
  285. (231, 'Phanpy', 'ground', '(None)', 5, 335, 'sand-veil', 'pickup', '(None)', '(None)', 90, 60, 60, 40, 40, 40),
  286. (232, 'Donphan', 'ground', '(None)', 11, 1200, 'sturdy', 'sand-veil', '(None)', '(None)', 90, 120, 120, 60, 60, 50),
  287. (233, 'Porygon2', 'normal', '(None)', 6, 325, 'trace', 'download', 'analytic', '(None)', 85, 80, 90, 105, 95, 60),
  288. (234, 'Stantler', 'normal', '(None)', 14, 712, 'intimidate', 'frisk', 'sap-sipper', '(None)', 73, 95, 62, 85, 65, 85),
  289. (235, 'Smeargle', 'normal', '(None)', 12, 580, 'own-tempo', 'technician', 'moody', '(None)', 55, 20, 35, 20, 45, 75),
  290. (236, 'Tyrogue', 'fighting', '(None)', 7, 210, 'guts', 'vital-spirit', 'steadfast', '(None)', 35, 35, 35, 35, 35, 35),
  291. (237, 'Hitmontop', 'fighting', '(None)', 14, 480, 'intimidate', 'steadfast', 'technician', '(None)', 50, 95, 95, 35, 110, 70),
  292. (238, 'Smoochum', 'ice', 'psychic', 4, 60, 'oblivious', 'hydration', 'forewarn', '(None)', 45, 30, 15, 85, 65, 65),
  293. (239, 'Elekid', 'electric', '(None)', 6, 235, 'static', 'vital-spirit', '(None)', '(None)', 45, 63, 37, 65, 55, 95),
  294. (240, 'Magby', 'fire', '(None)', 7, 214, 'flame-body', 'vital-spirit', '(None)', '(None)', 45, 75, 37, 70, 55, 83),
  295. (241, 'Miltank', 'normal', '(None)', 12, 755, 'thick-fat', 'scrappy', 'sap-sipper', '(None)', 95, 80, 105, 40, 70, 100),
  296. (242, 'Blissey', 'normal', '(None)', 15, 468, 'natural-cure', 'serene-grace', 'healer', '(None)', 255, 10, 10, 75, 135, 55),
  297. (243, 'Raikou', 'electric', '(None)', 19, 1780, 'volt-absorb', 'pressure', '(None)', '(None)', 90, 85, 75, 115, 100, 115),
  298. (244, 'Entei', 'fire', '(None)', 21, 1980, 'flash-fire', 'pressure', '(None)', '(None)', 115, 115, 85, 90, 75, 100),
  299. (245, 'Suicune', 'water', '(None)', 20, 1870, 'water-absorb', 'pressure', '(None)', '(None)', 100, 75, 115, 90, 115, 85),
  300. (246, 'Larvitar', 'ground', 'rock', 6, 720, 'sand-veil', 'guts', '(None)', '(None)', 50, 64, 50, 45, 50, 41),
  301. (247, 'Pupitar', 'ground', 'rock', 12, 1520, 'shed-skin', '(None)', '(None)', '(None)', 70, 84, 70, 65, 70, 51),
  302. (248, 'Tyranitar', 'rock', 'dark', 20, 2020, 'sand-stream', 'unnerve', '(None)', '(None)', 100, 134, 110, 95, 100, 61),
  303. (249, 'Lugia', 'flying', 'psychic', 52, 2160, 'pressure', 'multiscale', '(None)', '(None)', 106, 90, 130, 90, 154, 110),
  304. (250, 'Ho-oh', 'flying', 'fire', 38, 1990, 'pressure', 'regenerator', '(None)', '(None)', 106, 130, 90, 110, 154, 90),
  305. (251, 'Celebi', 'grass', 'psychic', 6, 50, 'natural-cure', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  306. (252, 'Treecko', 'grass', '(None)', 5, 50, 'overgrow', 'unburden', '(None)', '(None)', 40, 45, 35, 65, 55, 70),
  307. (253, 'Grovyle', 'grass', '(None)', 9, 216, 'overgrow', 'unburden', '(None)', '(None)', 50, 65, 45, 85, 65, 95),
  308. (254, 'Sceptile', 'grass', '(None)', 17, 522, 'overgrow', 'unburden', '(None)', '(None)', 70, 85, 65, 105, 85, 120),
  309. (255, 'Torchic', 'fire', '(None)', 4, 25, 'speed-boost', 'blaze', '(None)', '(None)', 45, 60, 40, 70, 50, 45),
  310. (256, 'Combusken', 'fighting', 'fire', 9, 195, 'speed-boost', 'blaze', '(None)', '(None)', 60, 85, 60, 85, 60, 55),
  311. (257, 'Blaziken', 'fighting', 'fire', 19, 520, 'speed-boost', 'blaze', '(None)', '(None)', 80, 120, 70, 110, 70, 80),
  312. (258, 'Mudkip', 'water', '(None)', 4, 76, 'damp', 'torrent', '(None)', '(None)', 50, 70, 50, 50, 50, 40),
  313. (259, 'Marshtomp', 'ground', 'water', 7, 280, 'damp', 'torrent', '(None)', '(None)', 70, 85, 70, 60, 70, 50),
  314. (260, 'Swampert', 'ground', 'water', 15, 819, 'damp', 'torrent', '(None)', '(None)', 100, 110, 90, 85, 90, 60),
  315. (261, 'Poochyena', 'dark', '(None)', 5, 136, 'run-away', 'quick-feet', 'rattled', '(None)', 35, 55, 35, 30, 30, 35),
  316. (262, 'Mightyena', 'dark', '(None)', 10, 370, 'intimidate', 'quick-feet', 'moxie', '(None)', 70, 90, 70, 60, 60, 70),
  317. (263, 'Zigzagoon', 'normal', '(None)', 4, 175, 'pickup', 'gluttony', 'quick-feet', '(None)', 38, 30, 41, 30, 41, 60),
  318. (264, 'Linoone', 'normal', '(None)', 5, 325, 'pickup', 'gluttony', 'quick-feet', '(None)', 78, 70, 61, 50, 61, 100),
  319. (265, 'Wurmple', 'bug', '(None)', 3, 36, 'shield-dust', 'run-away', '(None)', '(None)', 45, 45, 35, 20, 30, 20),
  320. (266, 'Silcoon', 'bug', '(None)', 6, 100, 'shed-skin', '(None)', '(None)', '(None)', 50, 35, 55, 25, 25, 15),
  321. (267, 'Beautifly', 'flying', 'bug', 10, 284, 'swarm', 'rivalry', '(None)', '(None)', 60, 70, 50, 100, 50, 65),
  322. (268, 'Cascoon', 'bug', '(None)', 7, 115, 'shed-skin', '(None)', '(None)', '(None)', 50, 35, 55, 25, 25, 15),
  323. (269, 'Dustox', 'poison', 'bug', 12, 316, 'compoundeyes', 'shield-dust', '(None)', '(None)', 60, 50, 70, 50, 90, 65),
  324. (270, 'Lotad', 'water', 'grass', 5, 26, 'own-tempo', 'swift-swim', 'rain-dish', '(None)', 40, 30, 30, 40, 50, 30),
  325. (271, 'Lombre', 'water', 'grass', 12, 325, 'own-tempo', 'swift-swim', 'rain-dish', '(None)', 60, 50, 50, 60, 70, 50),
  326. (272, 'Ludicolo', 'water', 'grass', 15, 550, 'own-tempo', 'swift-swim', 'rain-dish', '(None)', 80, 70, 70, 90, 100, 70),
  327. (273, 'Seedot', 'grass', '(None)', 5, 40, 'chlorophyll', 'early-bird', 'pickpocket', '(None)', 40, 40, 50, 30, 30, 30),
  328. (274, 'Nuzleaf', 'grass', 'dark', 10, 280, 'chlorophyll', 'early-bird', 'pickpocket', '(None)', 70, 70, 40, 60, 40, 60),
  329. (275, 'Shiftry', 'grass', 'dark', 13, 596, 'chlorophyll', 'early-bird', 'pickpocket', '(None)', 90, 100, 60, 90, 60, 80),
  330. (276, 'Taillow', 'normal', 'flying', 3, 23, 'guts', 'scrappy', '(None)', '(None)', 40, 55, 30, 30, 30, 85),
  331. (277, 'Swellow', 'normal', 'flying', 7, 198, 'guts', 'scrappy', '(None)', '(None)', 60, 85, 60, 50, 50, 125),
  332. (278, 'Wingull', 'flying', 'water', 6, 95, 'rain-dish', 'keen-eye', '(None)', '(None)', 40, 30, 30, 55, 30, 85),
  333. (279, 'Pelipper', 'flying', 'water', 12, 280, 'rain-dish', 'keen-eye', '(None)', '(None)', 60, 50, 100, 85, 70, 65),
  334. (280, 'Ralts', 'fairy', 'psychic', 4, 66, 'synchronize', 'trace', 'telepathy', '(None)', 28, 25, 25, 45, 35, 40),
  335. (281, 'Kirlia', 'fairy', 'psychic', 8, 202, 'synchronize', 'trace', 'telepathy', '(None)', 38, 35, 35, 65, 55, 50),
  336. (282, 'Gardevoir', 'fairy', 'psychic', 16, 484, 'synchronize', 'trace', 'telepathy', '(None)', 68, 65, 65, 125, 115, 80),
  337. (283, 'Surskit', 'bug', 'water', 5, 17, 'swift-swim', 'rain-dish', '(None)', '(None)', 40, 30, 32, 50, 52, 65),
  338. (284, 'Masquerain', 'flying', 'bug', 8, 36, 'intimidate', 'unnerve', '(None)', '(None)', 70, 60, 62, 80, 82, 60),
  339. (285, 'Shroomish', 'grass', '(None)', 4, 45, 'effect-spore', 'poison-heal', 'quick-feet', '(None)', 60, 40, 60, 40, 60, 35),
  340. (286, 'Breloom', 'fighting', 'grass', 12, 392, 'effect-spore', 'poison-heal', 'technician', '(None)', 60, 130, 80, 60, 60, 70),
  341. (287, 'Slakoth', 'normal', '(None)', 8, 240, 'truant', '(None)', '(None)', '(None)', 60, 60, 60, 35, 35, 30),
  342. (288, 'Vigoroth', 'normal', '(None)', 14, 465, 'vital-spirit', '(None)', '(None)', '(None)', 80, 80, 80, 55, 55, 90),
  343. (289, 'Slaking', 'normal', '(None)', 20, 1305, 'truant', '(None)', '(None)', '(None)', 150, 160, 100, 95, 65, 100),
  344. (290, 'Nincada', 'ground', 'bug', 5, 55, 'compoundeyes', 'run-away', '(None)', '(None)', 31, 45, 90, 30, 30, 40),
  345. (291, 'Ninjask', 'flying', 'bug', 8, 120, 'speed-boost', 'infiltrator', '(None)', '(None)', 61, 90, 45, 50, 50, 160),
  346. (292, 'Shedinja', 'bug', 'ghost', 8, 12, 'wonder-guard', '(None)', '(None)', '(None)', 1, 90, 45, 30, 30, 40),
  347. (293, 'Whismur', 'normal', '(None)', 6, 163, 'soundproof', 'rattled', '(None)', '(None)', 64, 51, 23, 51, 23, 28),
  348. (294, 'Loudred', 'normal', '(None)', 10, 405, 'soundproof', 'scrappy', '(None)', '(None)', 84, 71, 43, 71, 43, 48),
  349. (295, 'Exploud', 'normal', '(None)', 15, 840, 'soundproof', 'scrappy', '(None)', '(None)', 104, 91, 63, 91, 73, 68),
  350. (296, 'Makuhita', 'fighting', '(None)', 10, 864, 'thick-fat', 'guts', 'sheer-force', '(None)', 72, 60, 30, 20, 30, 25),
  351. (297, 'Hariyama', 'fighting', '(None)', 23, 2538, 'thick-fat', 'guts', 'sheer-force', '(None)', 144, 120, 60, 40, 60, 50),
  352. (298, 'Azurill', 'normal', 'fairy', 2, 20, 'huge-power', 'thick-fat', 'sap-sipper', '(None)', 50, 20, 40, 20, 40, 20),
  353. (299, 'Nosepass', 'rock', '(None)', 10, 970, 'sturdy', 'magnet-pull', 'sand-force', '(None)', 30, 45, 135, 45, 90, 30),
  354. (300, 'Skitty', 'normal', '(None)', 6, 110, 'cute-charm', 'normalize', 'wonder-skin', '(None)', 50, 45, 45, 35, 35, 50),
  355. (301, 'Delcatty', 'normal', '(None)', 11, 326, 'cute-charm', 'normalize', 'wonder-skin', '(None)', 70, 65, 65, 55, 55, 70),
  356. (302, 'Sableye', 'ghost', 'dark', 5, 110, 'keen-eye', 'stall', 'prankster', '(None)', 50, 75, 75, 65, 65, 50),
  357. (303, 'Mawile', 'steel', 'fairy', 6, 115, 'intimidate', 'hyper-cutter', 'sheer-force', '(None)', 50, 85, 85, 55, 55, 50),
  358. (304, 'Aron', 'rock', 'steel', 4, 600, 'sturdy', 'rock-head', 'heavy-metal', '(None)', 50, 70, 100, 40, 40, 30),
  359. (305, 'Lairon', 'rock', 'steel', 9, 1200, 'sturdy', 'rock-head', 'heavy-metal', '(None)', 60, 90, 140, 50, 50, 40),
  360. (306, 'Aggron', 'rock', 'steel', 21, 3600, 'sturdy', 'rock-head', 'heavy-metal', '(None)', 70, 110, 180, 60, 60, 50),
  361. (307, 'Meditite', 'fighting', 'psychic', 6, 112, 'pure-power', 'telepathy', '(None)', '(None)', 30, 40, 55, 40, 55, 60),
  362. (308, 'Medicham', 'fighting', 'psychic', 13, 315, 'pure-power', 'telepathy', '(None)', '(None)', 60, 60, 75, 60, 75, 80),
  363. (309, 'Electrike', 'electric', '(None)', 6, 152, 'static', 'lightningrod', 'minus', '(None)', 40, 45, 40, 65, 40, 65),
  364. (310, 'Manectric', 'electric', '(None)', 15, 402, 'static', 'lightningrod', 'minus', '(None)', 70, 75, 60, 105, 60, 105),
  365. (311, 'Plusle', 'electric', '(None)', 4, 42, 'plus', '(None)', '(None)', '(None)', 60, 50, 40, 85, 75, 95),
  366. (312, 'Minun', 'electric', '(None)', 4, 42, 'minus', '(None)', '(None)', '(None)', 60, 40, 50, 75, 85, 95),
  367. (313, 'Volbeat', 'bug', '(None)', 7, 177, 'illuminate', 'swarm', 'prankster', '(None)', 65, 73, 55, 47, 75, 85),
  368. (314, 'Illumise', 'bug', '(None)', 6, 177, 'oblivious', 'tinted-lens', 'prankster', '(None)', 65, 47, 55, 73, 75, 85),
  369. (315, 'Roselia', 'poison', 'grass', 3, 20, 'natural-cure', 'poison-point', 'leaf-guard', '(None)', 50, 60, 45, 100, 80, 65),
  370. (316, 'Gulpin', 'poison', '(None)', 4, 103, 'sticky-hold', 'liquid-ooze', 'gluttony', '(None)', 70, 43, 53, 43, 53, 40),
  371. (317, 'Swalot', 'poison', '(None)', 17, 800, 'sticky-hold', 'liquid-ooze', 'gluttony', '(None)', 100, 73, 83, 73, 83, 55),
  372. (318, 'Carvanha', 'water', 'dark', 8, 208, 'speed-boost', 'rough-skin', '(None)', '(None)', 45, 90, 20, 65, 20, 65),
  373. (319, 'Sharpedo', 'water', 'dark', 18, 888, 'speed-boost', 'rough-skin', '(None)', '(None)', 70, 120, 40, 95, 40, 95),
  374. (320, 'Wailmer', 'water', '(None)', 20, 1300, 'oblivious', 'water-veil', 'pressure', '(None)', 130, 70, 35, 70, 35, 60),
  375. (321, 'Wailord', 'water', '(None)', 145, 3980, 'oblivious', 'water-veil', 'pressure', '(None)', 170, 90, 45, 90, 45, 60),
  376. (322, 'Numel', 'ground', 'fire', 7, 240, 'oblivious', 'own-tempo', 'simple', '(None)', 60, 60, 40, 65, 45, 35),
  377. (323, 'Camerupt', 'ground', 'fire', 19, 2200, 'magma-armor', 'anger-point', 'solid-rock', '(None)', 70, 100, 70, 105, 75, 40),
  378. (324, 'Torkoal', 'fire', '(None)', 5, 804, 'white-smoke', 'shell-armor', '(None)', '(None)', 70, 85, 140, 85, 70, 20),
  379. (325, 'Spoink', 'psychic', '(None)', 7, 306, 'own-tempo', 'thick-fat', 'gluttony', '(None)', 60, 25, 35, 70, 80, 60),
  380. (326, 'Grumpig', 'psychic', '(None)', 9, 715, 'own-tempo', 'thick-fat', 'gluttony', '(None)', 80, 45, 65, 90, 110, 80),
  381. (327, 'Spinda', 'normal', '(None)', 11, 50, 'own-tempo', 'tangled-feet', 'contrary', '(None)', 60, 60, 60, 60, 60, 60),
  382. (328, 'Trapinch', 'ground', '(None)', 7, 150, 'hyper-cutter', 'arena-trap', 'sheer-force', '(None)', 45, 100, 45, 45, 45, 10),
  383. (329, 'Vibrava', 'ground', 'dragon', 11, 153, 'levitate', '(None)', '(None)', '(None)', 50, 70, 50, 50, 50, 70),
  384. (330, 'Flygon', 'ground', 'dragon', 20, 820, 'levitate', '(None)', '(None)', '(None)', 80, 100, 80, 80, 80, 100),
  385. (331, 'Cacnea', 'grass', '(None)', 4, 513, 'sand-veil', 'water-absorb', '(None)', '(None)', 50, 85, 40, 85, 40, 35),
  386. (332, 'Cacturne', 'grass', 'dark', 13, 774, 'sand-veil', 'water-absorb', '(None)', '(None)', 70, 115, 60, 115, 60, 55),
  387. (333, 'Swablu', 'normal', 'flying', 4, 12, 'cloud-nine', 'natural-cure', '(None)', '(None)', 45, 40, 60, 40, 75, 50),
  388. (334, 'Altaria', 'flying', 'dragon', 11, 206, 'cloud-nine', 'natural-cure', '(None)', '(None)', 75, 70, 90, 70, 105, 80),
  389. (335, 'Zangoose', 'normal', '(None)', 13, 403, 'immunity', 'toxic-boost', '(None)', '(None)', 73, 115, 60, 60, 60, 90),
  390. (336, 'Seviper', 'poison', '(None)', 27, 525, 'shed-skin', 'infiltrator', '(None)', '(None)', 73, 100, 60, 100, 60, 65),
  391. (337, 'Lunatone', 'rock', 'psychic', 10, 1680, 'levitate', '(None)', '(None)', '(None)', 70, 55, 65, 95, 85, 70),
  392. (338, 'Solrock', 'rock', 'psychic', 12, 1540, 'levitate', '(None)', '(None)', '(None)', 70, 95, 85, 55, 65, 70),
  393. (339, 'Barboach', 'ground', 'water', 4, 19, 'oblivious', 'hydration', 'anticipation', '(None)', 50, 48, 43, 46, 41, 60),
  394. (340, 'Whiscash', 'ground', 'water', 9, 236, 'oblivious', 'hydration', 'anticipation', '(None)', 110, 78, 73, 76, 71, 60),
  395. (341, 'Corphish', 'water', '(None)', 6, 115, 'hyper-cutter', 'shell-armor', 'adaptability', '(None)', 43, 80, 65, 50, 35, 35),
  396. (342, 'Crawdaunt', 'water', 'dark', 11, 328, 'hyper-cutter', 'shell-armor', 'adaptability', '(None)', 63, 120, 85, 90, 55, 55),
  397. (343, 'Baltoy', 'ground', 'psychic', 5, 215, 'levitate', '(None)', '(None)', '(None)', 40, 40, 55, 40, 70, 55),
  398. (344, 'Claydol', 'ground', 'psychic', 15, 1080, 'levitate', '(None)', '(None)', '(None)', 60, 70, 105, 70, 120, 75),
  399. (345, 'Lileep', 'rock', 'grass', 10, 238, 'suction-cups', 'storm-drain', '(None)', '(None)', 66, 41, 77, 61, 87, 23),
  400. (346, 'Cradily', 'rock', 'grass', 15, 604, 'suction-cups', 'storm-drain', '(None)', '(None)', 86, 81, 97, 81, 107, 43),
  401. (347, 'Anorith', 'rock', 'bug', 7, 125, 'battle-armor', 'swift-swim', '(None)', '(None)', 45, 95, 50, 40, 50, 75),
  402. (348, 'Armaldo', 'rock', 'bug', 15, 682, 'battle-armor', 'swift-swim', '(None)', '(None)', 75, 125, 100, 70, 80, 45),
  403. (349, 'Feebas', 'water', '(None)', 6, 74, 'swift-swim', 'adaptability', '(None)', '(None)', 20, 15, 20, 10, 55, 80),
  404. (350, 'Milotic', 'water', '(None)', 62, 1620, 'cute-charm', 'marvel-scale', '(None)', '(None)', 95, 60, 79, 100, 125, 81),
  405. (351, 'Castform', 'normal', '(None)', 3, 8, 'forecast', '(None)', '(None)', '(None)', 70, 70, 70, 70, 70, 70),
  406. (352, 'Kecleon', 'normal', '(None)', 10, 220, 'color-change', '(None)', '(None)', '(None)', 60, 90, 70, 60, 120, 40),
  407. (353, 'Shuppet', 'ghost', '(None)', 6, 23, 'insomnia', 'frisk', 'cursed-body', '(None)', 44, 75, 35, 63, 33, 45),
  408. (354, 'Banette', 'ghost', '(None)', 11, 125, 'insomnia', 'frisk', 'cursed-body', '(None)', 64, 115, 65, 83, 63, 65),
  409. (355, 'Duskull', 'ghost', '(None)', 8, 150, 'levitate', '(None)', '(None)', '(None)', 20, 40, 90, 30, 90, 25),
  410. (356, 'Dusclops', 'ghost', '(None)', 16, 306, 'pressure', '(None)', '(None)', '(None)', 40, 70, 130, 60, 130, 25),
  411. (357, 'Tropius', 'flying', 'grass', 20, 1000, 'chlorophyll', 'solar-power', 'harvest', '(None)', 99, 68, 83, 72, 87, 51),
  412. (358, 'Chimecho', 'psychic', '(None)', 6, 10, 'levitate', '(None)', '(None)', '(None)', 65, 50, 70, 95, 80, 65),
  413. (359, 'Absol', 'dark', '(None)', 12, 470, 'pressure', 'super-luck', 'justified', '(None)', 65, 130, 60, 75, 60, 75),
  414. (360, 'Wynaut', 'psychic', '(None)', 6, 140, 'shadow-tag', 'telepathy', '(None)', '(None)', 95, 23, 48, 23, 48, 23),
  415. (361, 'Snorunt', 'ice', '(None)', 7, 168, 'inner-focus', 'ice-body', 'moody', '(None)', 50, 50, 50, 50, 50, 50),
  416. (362, 'Glalie', 'ice', '(None)', 15, 2565, 'inner-focus', 'ice-body', 'moody', '(None)', 80, 80, 80, 80, 80, 80),
  417. (363, 'Spheal', 'water', 'ice', 8, 395, 'oblivious', 'thick-fat', 'ice-body', '(None)', 70, 40, 50, 55, 50, 25),
  418. (364, 'Sealeo', 'water', 'ice', 11, 876, 'oblivious', 'thick-fat', 'ice-body', '(None)', 90, 60, 70, 75, 70, 45),
  419. (365, 'Walrein', 'water', 'ice', 14, 1506, 'oblivious', 'thick-fat', 'ice-body', '(None)', 110, 80, 90, 95, 90, 65),
  420. (366, 'Clamperl', 'water', '(None)', 4, 525, 'shell-armor', 'rattled', '(None)', '(None)', 35, 64, 85, 74, 55, 32),
  421. (367, 'Huntail', 'water', '(None)', 17, 270, 'swift-swim', 'water-veil', '(None)', '(None)', 55, 104, 105, 94, 75, 52),
  422. (368, 'Gorebyss', 'water', '(None)', 18, 226, 'swift-swim', 'hydration', '(None)', '(None)', 55, 84, 105, 114, 75, 52),
  423. (369, 'Relicanth', 'rock', 'water', 10, 234, 'sturdy', 'swift-swim', 'rock-head', '(None)', 100, 90, 130, 45, 65, 55),
  424. (370, 'Luvdisc', 'water', '(None)', 6, 87, 'swift-swim', 'hydration', '(None)', '(None)', 43, 30, 55, 40, 65, 97),
  425. (371, 'Bagon', 'dragon', '(None)', 6, 421, 'rock-head', 'sheer-force', '(None)', '(None)', 45, 75, 60, 40, 30, 50),
  426. (372, 'Shelgon', 'dragon', '(None)', 11, 1105, 'rock-head', 'overcoat', '(None)', '(None)', 65, 95, 100, 60, 50, 50),
  427. (373, 'Salamence', 'flying', 'dragon', 15, 1026, 'intimidate', 'moxie', '(None)', '(None)', 95, 135, 80, 110, 80, 100),
  428. (374, 'Beldum', 'steel', 'psychic', 6, 952, 'clear-body', 'light-metal', '(None)', '(None)', 40, 55, 80, 35, 60, 30),
  429. (375, 'Metang', 'steel', 'psychic', 12, 2025, 'clear-body', 'light-metal', '(None)', '(None)', 60, 75, 100, 55, 80, 50),
  430. (376, 'Metagross', 'steel', 'psychic', 16, 5500, 'clear-body', 'light-metal', '(None)', '(None)', 80, 135, 130, 95, 90, 70),
  431. (377, 'Regirock', 'rock', '(None)', 17, 2300, 'sturdy', 'clear-body', '(None)', '(None)', 80, 100, 200, 50, 100, 50),
  432. (378, 'Regice', 'ice', '(None)', 18, 1750, 'clear-body', 'ice-body', '(None)', '(None)', 80, 50, 100, 100, 200, 50),
  433. (379, 'Registeel', 'steel', '(None)', 19, 2050, 'clear-body', 'light-metal', '(None)', '(None)', 80, 75, 150, 75, 150, 50),
  434. (380, 'Latias', 'dragon', 'psychic', 14, 400, 'levitate', '(None)', '(None)', '(None)', 80, 80, 90, 110, 130, 110),
  435. (381, 'Latios', 'dragon', 'psychic', 20, 600, 'levitate', '(None)', '(None)', '(None)', 80, 90, 80, 130, 110, 110),
  436. (382, 'Kyogre', 'water', '(None)', 45, 3520, 'drizzle', '(None)', '(None)', '(None)', 100, 100, 90, 150, 140, 90),
  437. (383, 'Groudon', 'ground', '(None)', 35, 9500, 'drought', '(None)', '(None)', '(None)', 100, 150, 140, 100, 90, 90),
  438. (384, 'Rayquaza', 'flying', 'dragon', 70, 2065, 'air-lock', '(None)', '(None)', '(None)', 105, 150, 90, 150, 90, 95),
  439. (385, 'Jirachi', 'steel', 'psychic', 3, 11, 'serene-grace', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  440. (386, 'Deoxys-normal', 'psychic', '(None)', 17, 608, 'pressure', '(None)', '(None)', '(None)', 50, 150, 50, 150, 50, 150),
  441. (387, 'Turtwig', 'grass', '(None)', 4, 102, 'overgrow', 'shell-armor', '(None)', '(None)', 55, 68, 64, 45, 55, 31),
  442. (388, 'Grotle', 'grass', '(None)', 11, 970, 'overgrow', 'shell-armor', '(None)', '(None)', 75, 89, 85, 55, 65, 36),
  443. (389, 'Torterra', 'ground', 'grass', 22, 3100, 'overgrow', 'shell-armor', '(None)', '(None)', 95, 109, 105, 75, 85, 56),
  444. (390, 'Chimchar', 'fire', '(None)', 5, 62, 'blaze', 'iron-fist', '(None)', '(None)', 44, 58, 44, 58, 44, 61),
  445. (391, 'Monferno', 'fighting', 'fire', 9, 220, 'blaze', 'iron-fist', '(None)', '(None)', 64, 78, 52, 78, 52, 81),
  446. (392, 'Infernape', 'fighting', 'fire', 12, 550, 'blaze', 'iron-fist', '(None)', '(None)', 76, 104, 71, 104, 71, 108),
  447. (393, 'Piplup', 'water', '(None)', 4, 52, 'torrent', 'defiant', '(None)', '(None)', 53, 51, 53, 61, 56, 40),
  448. (394, 'Prinplup', 'water', '(None)', 8, 230, 'torrent', 'defiant', '(None)', '(None)', 64, 66, 68, 81, 76, 50),
  449. (395, 'Empoleon', 'steel', 'water', 17, 845, 'torrent', 'defiant', '(None)', '(None)', 84, 86, 88, 111, 101, 60),
  450. (396, 'Starly', 'normal', 'flying', 3, 20, 'keen-eye', '(None)', '(None)', '(None)', 40, 55, 30, 30, 30, 60),
  451. (397, 'Staravia', 'normal', 'flying', 6, 155, 'intimidate', 'reckless', '(None)', '(None)', 55, 75, 50, 40, 40, 80),
  452. (398, 'Staraptor', 'normal', 'flying', 12, 249, 'intimidate', 'reckless', '(None)', '(None)', 85, 120, 70, 50, 60, 100),
  453. (399, 'Bidoof', 'normal', '(None)', 5, 200, 'simple', 'unaware', 'moody', '(None)', 59, 45, 40, 35, 40, 31),
  454. (400, 'Bibarel', 'normal', 'water', 10, 315, 'simple', 'unaware', 'moody', '(None)', 79, 85, 60, 55, 60, 71),
  455. (401, 'Kricketot', 'bug', '(None)', 3, 22, 'run-away', 'shed-skin', '(None)', '(None)', 37, 25, 41, 25, 41, 25),
  456. (402, 'Kricketune', 'bug', '(None)', 10, 255, 'swarm', 'technician', '(None)', '(None)', 77, 85, 51, 55, 51, 65),
  457. (403, 'Shinx', 'electric', '(None)', 5, 95, 'intimidate', 'guts', 'rivalry', '(None)', 45, 65, 34, 40, 34, 45),
  458. (404, 'Luxio', 'electric', '(None)', 9, 305, 'intimidate', 'guts', 'rivalry', '(None)', 60, 85, 49, 60, 49, 60),
  459. (405, 'Luxray', 'electric', '(None)', 14, 420, 'intimidate', 'guts', 'rivalry', '(None)', 80, 120, 79, 95, 79, 70),
  460. (406, 'Budew', 'poison', 'grass', 2, 12, 'natural-cure', 'poison-point', 'leaf-guard', '(None)', 40, 30, 35, 50, 70, 55),
  461. (407, 'Roserade', 'poison', 'grass', 9, 145, 'natural-cure', 'poison-point', 'technician', '(None)', 60, 70, 65, 125, 105, 90),
  462. (408, 'Cranidos', 'rock', '(None)', 9, 315, 'mold-breaker', 'sheer-force', '(None)', '(None)', 67, 125, 40, 30, 30, 58),
  463. (409, 'Rampardos', 'rock', '(None)', 16, 1025, 'mold-breaker', 'sheer-force', '(None)', '(None)', 97, 165, 60, 65, 50, 58),
  464. (410, 'Shieldon', 'rock', 'steel', 5, 570, 'sturdy', 'soundproof', '(None)', '(None)', 30, 42, 118, 42, 88, 30),
  465. (411, 'Bastiodon', 'rock', 'steel', 13, 1495, 'sturdy', 'soundproof', '(None)', '(None)', 60, 52, 168, 47, 138, 30),
  466. (412, 'Burmy', 'bug', '(None)', 2, 34, 'shed-skin', 'overcoat', '(None)', '(None)', 40, 29, 45, 29, 45, 36),
  467. (413, 'Wormadam-plant', 'bug', 'grass', 5, 65, 'anticipation', 'overcoat', '(None)', '(None)', 60, 59, 85, 79, 105, 36),
  468. (414, 'Mothim', 'flying', 'bug', 9, 233, 'swarm', 'tinted-lens', '(None)', '(None)', 70, 94, 50, 94, 50, 66),
  469. (415, 'Combee', 'flying', 'bug', 3, 55, 'hustle', 'honey-gather', '(None)', '(None)', 30, 30, 42, 30, 42, 70),
  470. (416, 'Vespiquen', 'flying', 'bug', 12, 385, 'pressure', 'unnerve', '(None)', '(None)', 70, 80, 102, 80, 102, 40),
  471. (417, 'Pachirisu', 'electric', '(None)', 4, 39, 'volt-absorb', 'run-away', 'pickup', '(None)', 60, 45, 70, 45, 90, 95),
  472. (418, 'Buizel', 'water', '(None)', 7, 295, 'swift-swim', 'water-veil', '(None)', '(None)', 55, 65, 35, 60, 30, 85),
  473. (419, 'Floatzel', 'water', '(None)', 11, 335, 'swift-swim', 'water-veil', '(None)', '(None)', 85, 105, 55, 85, 50, 115),
  474. (420, 'Cherubi', 'grass', '(None)', 4, 33, 'chlorophyll', '(None)', '(None)', '(None)', 45, 35, 45, 62, 53, 35),
  475. (421, 'Cherrim', 'grass', '(None)', 5, 93, 'flower-gift', '(None)', '(None)', '(None)', 70, 60, 70, 87, 78, 85),
  476. (422, 'Shellos', 'water', '(None)', 3, 63, 'sticky-hold', 'storm-drain', 'sand-force', '(None)', 76, 48, 48, 57, 62, 34),
  477. (423, 'Gastrodon', 'ground', 'water', 9, 299, 'sticky-hold', 'storm-drain', 'sand-force', '(None)', 111, 83, 68, 92, 82, 39),
  478. (424, 'Ambipom', 'normal', '(None)', 12, 203, 'pickup', 'skill-link', 'technician', '(None)', 75, 100, 66, 60, 66, 115),
  479. (425, 'Drifloon', 'flying', 'ghost', 4, 12, 'unburden', 'aftermath', 'flare-boost', '(None)', 90, 50, 34, 60, 44, 70),
  480. (426, 'Drifblim', 'flying', 'ghost', 12, 150, 'unburden', 'aftermath', 'flare-boost', '(None)', 150, 80, 44, 90, 54, 80),
  481. (427, 'Buneary', 'normal', '(None)', 4, 55, 'limber', 'run-away', 'klutz', '(None)', 55, 66, 44, 44, 56, 85),
  482. (428, 'Lopunny', 'normal', '(None)', 12, 333, 'limber', 'cute-charm', 'klutz', '(None)', 65, 76, 84, 54, 96, 105),
  483. (429, 'Mismagius', 'ghost', '(None)', 9, 44, 'levitate', '(None)', '(None)', '(None)', 60, 60, 60, 105, 105, 105),
  484. (430, 'Honchkrow', 'flying', 'dark', 9, 273, 'insomnia', 'super-luck', 'moxie', '(None)', 100, 125, 52, 105, 52, 71);
  485. INSERT INTO `pokemons` (`id`, `name`, `type1`, `type2`, `height`, `weight`, `ability1`, `ability2`, `ability3`, `ability4`, `hp`, `attack`, `defense`, `spattack`, `spdefense`, `speed`) VALUES
  486. (431, 'Glameow', 'normal', '(None)', 5, 39, 'limber', 'own-tempo', 'keen-eye', '(None)', 49, 55, 42, 42, 37, 85),
  487. (432, 'Purugly', 'normal', '(None)', 10, 438, 'own-tempo', 'thick-fat', 'defiant', '(None)', 71, 82, 64, 64, 59, 112),
  488. (433, 'Chingling', 'psychic', '(None)', 2, 6, 'levitate', '(None)', '(None)', '(None)', 45, 30, 50, 65, 50, 45),
  489. (434, 'Stunky', 'poison', 'dark', 4, 192, 'stench', 'keen-eye', 'aftermath', '(None)', 63, 63, 47, 41, 41, 74),
  490. (435, 'Skuntank', 'poison', 'dark', 10, 380, 'stench', 'keen-eye', 'aftermath', '(None)', 103, 93, 67, 71, 61, 84),
  491. (436, 'Bronzor', 'steel', 'psychic', 5, 605, 'levitate', 'heatproof', 'heavy-metal', '(None)', 57, 24, 86, 24, 86, 23),
  492. (437, 'Bronzong', 'steel', 'psychic', 13, 1870, 'levitate', 'heatproof', 'heavy-metal', '(None)', 67, 89, 116, 79, 116, 33),
  493. (438, 'Bonsly', 'rock', '(None)', 5, 150, 'sturdy', 'rock-head', 'rattled', '(None)', 50, 80, 95, 10, 45, 10),
  494. (439, 'Mime-jr', 'fairy', 'psychic', 6, 130, 'soundproof', 'technician', 'filter', '(None)', 20, 25, 45, 70, 90, 60),
  495. (440, 'Happiny', 'normal', '(None)', 6, 244, 'natural-cure', 'serene-grace', 'friend-guard', '(None)', 100, 5, 5, 15, 65, 30),
  496. (441, 'Chatot', 'normal', 'flying', 5, 19, 'keen-eye', 'tangled-feet', 'big-pecks', '(None)', 76, 65, 45, 92, 42, 91),
  497. (442, 'Spiritomb', 'ghost', 'dark', 10, 1080, 'pressure', 'infiltrator', '(None)', '(None)', 50, 92, 108, 92, 108, 35),
  498. (443, 'Gible', 'ground', 'dragon', 7, 205, 'sand-veil', 'rough-skin', '(None)', '(None)', 58, 70, 45, 40, 45, 42),
  499. (444, 'Gabite', 'ground', 'dragon', 14, 560, 'sand-veil', 'rough-skin', '(None)', '(None)', 68, 90, 65, 50, 55, 82),
  500. (445, 'Garchomp', 'ground', 'dragon', 19, 950, 'sand-veil', 'rough-skin', '(None)', '(None)', 108, 130, 95, 80, 85, 102),
  501. (446, 'Munchlax', 'normal', '(None)', 6, 1050, 'thick-fat', 'pickup', 'gluttony', '(None)', 135, 85, 40, 40, 85, 5),
  502. (447, 'Riolu', 'fighting', '(None)', 7, 202, 'inner-focus', 'steadfast', 'prankster', '(None)', 40, 70, 40, 35, 40, 60),
  503. (448, 'Lucario', 'fighting', 'steel', 12, 540, 'inner-focus', 'steadfast', 'justified', '(None)', 70, 110, 70, 115, 70, 90),
  504. (449, 'Hippopotas', 'ground', '(None)', 8, 495, 'sand-stream', 'sand-force', '(None)', '(None)', 68, 72, 78, 38, 42, 32),
  505. (450, 'Hippowdon', 'ground', '(None)', 20, 3000, 'sand-stream', 'sand-force', '(None)', '(None)', 108, 112, 118, 68, 72, 47),
  506. (451, 'Skorupi', 'poison', 'bug', 8, 120, 'battle-armor', 'keen-eye', 'sniper', '(None)', 40, 50, 90, 30, 55, 65),
  507. (452, 'Drapion', 'poison', 'dark', 13, 615, 'battle-armor', 'keen-eye', 'sniper', '(None)', 70, 90, 110, 60, 75, 95),
  508. (453, 'Croagunk', 'fighting', 'poison', 7, 230, 'dry-skin', 'anticipation', 'poison-touch', '(None)', 48, 61, 40, 61, 40, 50),
  509. (454, 'Toxicroak', 'fighting', 'poison', 13, 444, 'dry-skin', 'anticipation', 'poison-touch', '(None)', 83, 106, 65, 86, 65, 85),
  510. (455, 'Carnivine', 'grass', '(None)', 14, 270, 'levitate', '(None)', '(None)', '(None)', 74, 100, 72, 90, 72, 46),
  511. (456, 'Finneon', 'water', '(None)', 4, 70, 'swift-swim', 'water-veil', 'storm-drain', '(None)', 49, 49, 56, 49, 61, 66),
  512. (457, 'Lumineon', 'water', '(None)', 12, 240, 'swift-swim', 'water-veil', 'storm-drain', '(None)', 69, 69, 76, 69, 86, 91),
  513. (458, 'Mantyke', 'flying', 'water', 10, 650, 'water-absorb', 'swift-swim', 'water-veil', '(None)', 45, 20, 50, 60, 120, 50),
  514. (459, 'Snover', 'grass', 'ice', 10, 505, 'soundproof', 'snow-warning', '(None)', '(None)', 60, 62, 50, 62, 60, 40),
  515. (460, 'Abomasnow', 'grass', 'ice', 22, 1355, 'soundproof', 'snow-warning', '(None)', '(None)', 90, 92, 75, 92, 85, 60),
  516. (461, 'Weavile', 'ice', 'dark', 11, 340, 'pressure', 'pickpocket', '(None)', '(None)', 70, 120, 65, 45, 85, 125),
  517. (462, 'Magnezone', 'steel', 'electric', 12, 1800, 'sturdy', 'magnet-pull', 'analytic', '(None)', 70, 70, 115, 130, 90, 60),
  518. (463, 'Lickilicky', 'normal', '(None)', 17, 1400, 'oblivious', 'cloud-nine', 'own-tempo', '(None)', 110, 85, 95, 80, 95, 50),
  519. (464, 'Rhyperior', 'ground', 'rock', 24, 2828, 'lightningrod', 'solid-rock', 'reckless', '(None)', 115, 140, 130, 55, 55, 40),
  520. (465, 'Tangrowth', 'grass', '(None)', 20, 1286, 'chlorophyll', 'leaf-guard', 'regenerator', '(None)', 100, 100, 125, 110, 50, 50),
  521. (466, 'Electivire', 'electric', '(None)', 18, 1386, 'vital-spirit', 'motor-drive', '(None)', '(None)', 75, 123, 67, 95, 85, 95),
  522. (467, 'Magmortar', 'fire', '(None)', 16, 680, 'flame-body', 'vital-spirit', '(None)', '(None)', 75, 95, 67, 125, 95, 83),
  523. (468, 'Togekiss', 'flying', 'fairy', 15, 380, 'serene-grace', 'hustle', 'super-luck', '(None)', 85, 50, 95, 120, 115, 80),
  524. (469, 'Yanmega', 'flying', 'bug', 19, 515, 'speed-boost', 'tinted-lens', 'frisk', '(None)', 86, 76, 86, 116, 56, 95),
  525. (470, 'Leafeon', 'grass', '(None)', 10, 255, 'chlorophyll', 'leaf-guard', '(None)', '(None)', 65, 110, 130, 60, 65, 95),
  526. (471, 'Glaceon', 'ice', '(None)', 8, 259, 'snow-cloak', 'ice-body', '(None)', '(None)', 65, 60, 110, 130, 95, 65),
  527. (472, 'Gliscor', 'flying', 'ground', 20, 425, 'sand-veil', 'hyper-cutter', 'poison-heal', '(None)', 75, 95, 125, 45, 75, 95),
  528. (473, 'Mamoswine', 'ground', 'ice', 25, 2910, 'oblivious', 'thick-fat', 'snow-cloak', '(None)', 110, 130, 80, 70, 60, 80),
  529. (474, 'Porygon-z', 'normal', '(None)', 9, 340, 'download', 'adaptability', 'analytic', '(None)', 85, 80, 70, 135, 75, 90),
  530. (475, 'Gallade', 'fighting', 'psychic', 16, 520, 'steadfast', 'justified', '(None)', '(None)', 68, 125, 65, 65, 115, 80),
  531. (476, 'Probopass', 'rock', 'steel', 14, 3400, 'sturdy', 'magnet-pull', 'sand-force', '(None)', 60, 55, 145, 75, 150, 40),
  532. (477, 'Dusknoir', 'ghost', '(None)', 22, 1066, 'pressure', '(None)', '(None)', '(None)', 45, 100, 135, 65, 135, 45),
  533. (478, 'Froslass', 'ghost', 'ice', 13, 266, 'snow-cloak', 'cursed-body', '(None)', '(None)', 70, 80, 70, 80, 70, 110),
  534. (479, 'Rotom', 'ghost', 'electric', 3, 3, 'levitate', '(None)', '(None)', '(None)', 50, 50, 77, 95, 77, 91),
  535. (480, 'Uxie', 'psychic', '(None)', 3, 3, 'levitate', '(None)', '(None)', '(None)', 75, 75, 130, 75, 130, 95),
  536. (481, 'Mesprit', 'psychic', '(None)', 3, 3, 'levitate', '(None)', '(None)', '(None)', 80, 105, 105, 105, 105, 80),
  537. (482, 'Azelf', 'psychic', '(None)', 3, 3, 'levitate', '(None)', '(None)', '(None)', 75, 125, 70, 125, 70, 115),
  538. (483, 'Dialga', 'steel', 'dragon', 54, 6830, 'pressure', 'telepathy', '(None)', '(None)', 100, 120, 120, 150, 100, 90),
  539. (484, 'Palkia', 'water', 'dragon', 42, 3360, 'pressure', 'telepathy', '(None)', '(None)', 90, 120, 100, 150, 120, 100),
  540. (485, 'Heatran', 'steel', 'fire', 17, 4300, 'flash-fire', 'flame-body', '(None)', '(None)', 91, 90, 106, 130, 106, 77),
  541. (486, 'Regigigas', 'normal', '(None)', 37, 4200, 'slow-start', '(None)', '(None)', '(None)', 110, 160, 110, 80, 110, 100),
  542. (487, 'Giratina-altered', 'ghost', 'dragon', 45, 7500, 'pressure', 'telepathy', '(None)', '(None)', 150, 100, 120, 100, 120, 90),
  543. (488, 'Cresselia', 'psychic', '(None)', 15, 856, 'levitate', '(None)', '(None)', '(None)', 120, 70, 120, 75, 130, 85),
  544. (489, 'Phione', 'water', '(None)', 4, 31, 'hydration', '(None)', '(None)', '(None)', 80, 80, 80, 80, 80, 80),
  545. (490, 'Manaphy', 'water', '(None)', 3, 14, 'hydration', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  546. (491, 'Darkrai', 'dark', '(None)', 15, 505, 'bad-dreams', '(None)', '(None)', '(None)', 70, 90, 90, 135, 90, 125),
  547. (492, 'Shaymin-land', 'grass', '(None)', 2, 21, 'natural-cure', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  548. (493, 'Arceus', 'normal', '(None)', 32, 3200, 'multitype', '(None)', '(None)', '(None)', 120, 120, 120, 120, 120, 120),
  549. (494, 'Victini', 'fire', 'psychic', 4, 40, 'victory-star', '(None)', '(None)', '(None)', 100, 100, 100, 100, 100, 100),
  550. (495, 'Snivy', 'grass', '(None)', 6, 81, 'overgrow', 'contrary', '(None)', '(None)', 45, 45, 55, 45, 55, 63),
  551. (496, 'Servine', 'grass', '(None)', 8, 160, 'overgrow', 'contrary', '(None)', '(None)', 60, 60, 75, 60, 75, 83),
  552. (497, 'Serperior', 'grass', '(None)', 33, 630, 'overgrow', 'contrary', '(None)', '(None)', 75, 75, 95, 75, 95, 113),
  553. (498, 'Tepig', 'fire', '(None)', 5, 99, 'thick-fat', 'blaze', '(None)', '(None)', 65, 63, 45, 45, 45, 45),
  554. (499, 'Pignite', 'fighting', 'fire', 10, 555, 'thick-fat', 'blaze', '(None)', '(None)', 90, 93, 55, 70, 55, 55),
  555. (500, 'Emboar', 'fighting', 'fire', 16, 1500, 'blaze', 'reckless', '(None)', '(None)', 110, 123, 65, 100, 65, 65),
  556. (501, 'Oshawott', 'water', '(None)', 5, 59, 'torrent', 'shell-armor', '(None)', '(None)', 55, 55, 45, 63, 45, 45),
  557. (502, 'Dewott', 'water', '(None)', 8, 245, 'torrent', 'shell-armor', '(None)', '(None)', 75, 75, 60, 83, 60, 60),
  558. (503, 'Samurott', 'water', '(None)', 15, 946, 'torrent', 'shell-armor', '(None)', '(None)', 95, 100, 85, 108, 70, 70),
  559. (504, 'Patrat', 'normal', '(None)', 5, 116, 'run-away', 'keen-eye', 'analytic', '(None)', 45, 55, 39, 35, 39, 42),
  560. (505, 'Watchog', 'normal', '(None)', 11, 270, 'illuminate', 'keen-eye', 'analytic', '(None)', 60, 85, 69, 60, 69, 77),
  561. (506, 'Lillipup', 'normal', '(None)', 4, 41, 'run-away', 'pickup', 'vital-spirit', '(None)', 45, 60, 45, 25, 45, 55),
  562. (507, 'Herdier', 'normal', '(None)', 9, 147, 'intimidate', 'scrappy', 'sand-rush', '(None)', 65, 80, 65, 35, 65, 60),
  563. (508, 'Stoutland', 'normal', '(None)', 12, 610, 'intimidate', 'scrappy', 'sand-rush', '(None)', 85, 110, 90, 45, 90, 80),
  564. (509, 'Purrloin', 'dark', '(None)', 4, 101, 'limber', 'unburden', 'prankster', '(None)', 41, 50, 37, 50, 37, 66),
  565. (510, 'Liepard', 'dark', '(None)', 11, 375, 'limber', 'unburden', 'prankster', '(None)', 64, 88, 50, 88, 50, 106),
  566. (511, 'Pansage', 'grass', '(None)', 6, 105, 'overgrow', 'gluttony', '(None)', '(None)', 50, 53, 48, 53, 48, 64),
  567. (512, 'Simisage', 'grass', '(None)', 11, 305, 'overgrow', 'gluttony', '(None)', '(None)', 75, 98, 63, 98, 63, 101),
  568. (513, 'Pansear', 'fire', '(None)', 6, 110, 'blaze', 'gluttony', '(None)', '(None)', 50, 53, 48, 53, 48, 64),
  569. (514, 'Simisear', 'fire', '(None)', 10, 280, 'blaze', 'gluttony', '(None)', '(None)', 75, 98, 63, 98, 63, 101),
  570. (515, 'Panpour', 'water', '(None)', 6, 135, 'torrent', 'gluttony', '(None)', '(None)', 50, 53, 48, 53, 48, 64),
  571. (516, 'Simipour', 'water', '(None)', 10, 290, 'torrent', 'gluttony', '(None)', '(None)', 75, 98, 63, 98, 63, 101),
  572. (517, 'Munna', 'psychic', '(None)', 6, 233, 'synchronize', 'forewarn', 'telepathy', '(None)', 76, 25, 45, 67, 55, 24),
  573. (518, 'Musharna', 'psychic', '(None)', 11, 605, 'synchronize', 'forewarn', 'telepathy', '(None)', 116, 55, 85, 107, 95, 29),
  574. (519, 'Pidove', 'normal', 'flying', 3, 21, 'rivalry', 'super-luck', 'big-pecks', '(None)', 50, 55, 50, 36, 30, 43),
  575. (520, 'Tranquill', 'normal', 'flying', 6, 150, 'rivalry', 'super-luck', 'big-pecks', '(None)', 62, 77, 62, 50, 42, 65),
  576. (521, 'Unfezant', 'normal', 'flying', 12, 290, 'rivalry', 'super-luck', 'big-pecks', '(None)', 80, 115, 80, 65, 55, 93),
  577. (522, 'Blitzle', 'electric', '(None)', 8, 298, 'lightningrod', 'motor-drive', 'sap-sipper', '(None)', 45, 60, 32, 50, 32, 76),
  578. (523, 'Zebstrika', 'electric', '(None)', 16, 795, 'lightningrod', 'motor-drive', 'sap-sipper', '(None)', 75, 100, 63, 80, 63, 116),
  579. (524, 'Roggenrola', 'rock', '(None)', 4, 180, 'sturdy', 'sand-force', '(None)', '(None)', 55, 75, 85, 25, 25, 15),
  580. (525, 'Boldore', 'rock', '(None)', 9, 1020, 'sturdy', 'sand-force', '(None)', '(None)', 70, 105, 105, 50, 40, 20),
  581. (526, 'Gigalith', 'rock', '(None)', 17, 2600, 'sturdy', 'sand-force', '(None)', '(None)', 85, 135, 130, 60, 80, 25),
  582. (527, 'Woobat', 'flying', 'psychic', 4, 21, 'simple', 'klutz', 'unaware', '(None)', 55, 45, 43, 55, 43, 72),
  583. (528, 'Swoobat', 'flying', 'psychic', 9, 105, 'simple', 'klutz', 'unaware', '(None)', 67, 57, 55, 77, 55, 114),
  584. (529, 'Drilbur', 'ground', '(None)', 3, 85, 'mold-breaker', 'sand-rush', 'sand-force', '(None)', 60, 85, 40, 30, 45, 68),
  585. (530, 'Excadrill', 'ground', 'steel', 7, 404, 'mold-breaker', 'sand-rush', 'sand-force', '(None)', 110, 135, 60, 50, 65, 88),
  586. (531, 'Audino', 'normal', '(None)', 11, 310, 'klutz', 'healer', 'regenerator', '(None)', 103, 60, 86, 60, 86, 50),
  587. (532, 'Timburr', 'fighting', '(None)', 6, 125, 'guts', 'iron-fist', 'sheer-force', '(None)', 75, 80, 55, 25, 35, 35),
  588. (533, 'Gurdurr', 'fighting', '(None)', 12, 400, 'guts', 'iron-fist', 'sheer-force', '(None)', 85, 105, 85, 40, 50, 40),
  589. (534, 'Conkeldurr', 'fighting', '(None)', 14, 870, 'guts', 'iron-fist', 'sheer-force', '(None)', 105, 140, 95, 55, 65, 45),
  590. (535, 'Tympole', 'water', '(None)', 5, 45, 'water-absorb', 'swift-swim', 'hydration', '(None)', 50, 50, 40, 50, 40, 64),
  591. (536, 'Palpitoad', 'ground', 'water', 8, 170, 'water-absorb', 'swift-swim', 'hydration', '(None)', 75, 65, 55, 65, 55, 69),
  592. (537, 'Seismitoad', 'ground', 'water', 15, 620, 'water-absorb', 'swift-swim', 'poison-touch', '(None)', 105, 95, 75, 85, 75, 74),
  593. (538, 'Throh', 'fighting', '(None)', 13, 555, 'inner-focus', 'guts', 'mold-breaker', '(None)', 120, 100, 85, 30, 85, 45),
  594. (539, 'Sawk', 'fighting', '(None)', 14, 510, 'sturdy', 'inner-focus', 'mold-breaker', '(None)', 75, 125, 75, 30, 75, 85),
  595. (540, 'Sewaddle', 'bug', 'grass', 3, 25, 'chlorophyll', 'swarm', 'overcoat', '(None)', 45, 53, 70, 40, 60, 42),
  596. (541, 'Swadloon', 'bug', 'grass', 5, 73, 'chlorophyll', 'leaf-guard', 'overcoat', '(None)', 55, 63, 90, 50, 80, 42),
  597. (542, 'Leavanny', 'bug', 'grass', 12, 205, 'chlorophyll', 'swarm', 'overcoat', '(None)', 75, 103, 80, 70, 80, 92),
  598. (543, 'Venipede', 'poison', 'bug', 4, 53, 'poison-point', 'swarm', 'quick-feet', '(None)', 30, 45, 59, 30, 39, 57),
  599. (544, 'Whirlipede', 'poison', 'bug', 12, 585, 'poison-point', 'swarm', 'quick-feet', '(None)', 40, 55, 99, 40, 79, 47),
  600. (545, 'Scolipede', 'poison', 'bug', 25, 2005, 'poison-point', 'swarm', 'quick-feet', '(None)', 60, 100, 89, 55, 69, 112),
  601. (546, 'Cottonee', 'grass', 'fairy', 3, 6, 'chlorophyll', 'infiltrator', 'prankster', '(None)', 40, 27, 60, 37, 50, 66),
  602. (547, 'Whimsicott', 'grass', 'fairy', 7, 66, 'chlorophyll', 'infiltrator', 'prankster', '(None)', 60, 67, 85, 77, 75, 116),
  603. (548, 'Petilil', 'grass', '(None)', 5, 66, 'own-tempo', 'chlorophyll', 'leaf-guard', '(None)', 45, 35, 50, 70, 50, 30),
  604. (549, 'Lilligant', 'grass', '(None)', 11, 163, 'own-tempo', 'chlorophyll', 'leaf-guard', '(None)', 70, 60, 75, 110, 75, 90),
  605. (550, 'Basculin-red-striped', 'water', '(None)', 10, 180, 'adaptability', 'mold-breaker', 'reckless', '(None)', 70, 92, 65, 80, 55, 98),
  606. (551, 'Sandile', 'ground', 'dark', 7, 152, 'intimidate', 'anger-point', 'moxie', '(None)', 50, 72, 35, 35, 35, 65),
  607. (552, 'Krokorok', 'ground', 'dark', 10, 334, 'intimidate', 'anger-point', 'moxie', '(None)', 60, 82, 45, 45, 45, 74),
  608. (553, 'Krookodile', 'ground', 'dark', 15, 963, 'intimidate', 'anger-point', 'moxie', '(None)', 95, 117, 80, 65, 70, 92),
  609. (554, 'Darumaka', 'fire', '(None)', 6, 375, 'inner-focus', 'hustle', '(None)', '(None)', 70, 90, 45, 15, 45, 50),
  610. (555, 'Darmanitan-standard', 'fire', '(None)', 13, 929, 'sheer-force', 'zen-mode', '(None)', '(None)', 105, 140, 55, 30, 55, 95),
  611. (556, 'Maractus', 'grass', '(None)', 10, 280, 'water-absorb', 'chlorophyll', 'storm-drain', '(None)', 75, 86, 67, 106, 67, 60),
  612. (557, 'Dwebble', 'rock', 'bug', 3, 145, 'sturdy', 'shell-armor', 'weak-armor', '(None)', 50, 65, 85, 35, 35, 55),
  613. (558, 'Crustle', 'rock', 'bug', 14, 2000, 'sturdy', 'shell-armor', 'weak-armor', '(None)', 70, 95, 125, 65, 75, 45),
  614. (559, 'Scraggy', 'fighting', 'dark', 6, 118, 'intimidate', 'shed-skin', 'moxie', '(None)', 50, 75, 70, 35, 70, 48),
  615. (560, 'Scrafty', 'fighting', 'dark', 11, 300, 'intimidate', 'shed-skin', 'moxie', '(None)', 65, 90, 115, 45, 115, 58),
  616. (561, 'Sigilyph', 'flying', 'psychic', 14, 140, 'magic-guard', 'tinted-lens', 'wonder-skin', '(None)', 72, 58, 80, 103, 80, 97),
  617. (562, 'Yamask', 'ghost', '(None)', 5, 15, 'mummy', '(None)', '(None)', '(None)', 38, 30, 85, 55, 65, 30),
  618. (563, 'Cofagrigus', 'ghost', '(None)', 17, 765, 'mummy', '(None)', '(None)', '(None)', 58, 50, 145, 95, 105, 30),
  619. (564, 'Tirtouga', 'rock', 'water', 7, 165, 'sturdy', 'swift-swim', 'solid-rock', '(None)', 54, 78, 103, 53, 45, 22),
  620. (565, 'Carracosta', 'rock', 'water', 12, 810, 'sturdy', 'swift-swim', 'solid-rock', '(None)', 74, 108, 133, 83, 65, 32),
  621. (566, 'Archen', 'flying', 'rock', 5, 95, 'defeatist', '(None)', '(None)', '(None)', 55, 112, 45, 74, 45, 70),
  622. (567, 'Archeops', 'flying', 'rock', 14, 320, 'defeatist', '(None)', '(None)', '(None)', 75, 140, 65, 112, 65, 110),
  623. (568, 'Trubbish', 'poison', '(None)', 6, 310, 'stench', 'sticky-hold', 'aftermath', '(None)', 50, 50, 62, 40, 62, 65),
  624. (569, 'Garbodor', 'poison', '(None)', 19, 1073, 'stench', 'aftermath', 'weak-armor', '(None)', 80, 95, 82, 60, 82, 75),
  625. (570, 'Zorua', 'dark', '(None)', 7, 125, 'illusion', '(None)', '(None)', '(None)', 40, 65, 40, 80, 40, 65),
  626. (571, 'Zoroark', 'dark', '(None)', 16, 811, 'illusion', '(None)', '(None)', '(None)', 60, 105, 60, 120, 60, 105),
  627. (572, 'Minccino', 'normal', '(None)', 4, 58, 'cute-charm', 'skill-link', 'technician', '(None)', 55, 50, 40, 40, 40, 75),
  628. (573, 'Cinccino', 'normal', '(None)', 5, 75, 'cute-charm', 'skill-link', 'technician', '(None)', 75, 95, 60, 65, 60, 115),
  629. (574, 'Gothita', 'psychic', '(None)', 4, 58, 'shadow-tag', 'frisk', '(None)', '(None)', 45, 30, 50, 55, 65, 45),
  630. (575, 'Gothorita', 'psychic', '(None)', 7, 180, 'shadow-tag', 'frisk', '(None)', '(None)', 60, 45, 70, 75, 85, 55),
  631. (576, 'Gothitelle', 'psychic', '(None)', 15, 440, 'shadow-tag', 'frisk', '(None)', '(None)', 70, 55, 95, 95, 110, 65),
  632. (577, 'Solosis', 'psychic', '(None)', 3, 10, 'magic-guard', 'overcoat', 'regenerator', '(None)', 45, 30, 40, 105, 50, 20),
  633. (578, 'Duosion', 'psychic', '(None)', 6, 80, 'magic-guard', 'overcoat', 'regenerator', '(None)', 65, 40, 50, 125, 60, 30),
  634. (579, 'Reuniclus', 'psychic', '(None)', 10, 201, 'magic-guard', 'overcoat', 'regenerator', '(None)', 110, 65, 75, 125, 85, 30),
  635. (580, 'Ducklett', 'flying', 'water', 5, 55, 'keen-eye', 'hydration', 'big-pecks', '(None)', 62, 44, 50, 44, 50, 55),
  636. (581, 'Swanna', 'flying', 'water', 13, 242, 'keen-eye', 'hydration', 'big-pecks', '(None)', 75, 87, 63, 87, 63, 98),
  637. (582, 'Vanillite', 'ice', '(None)', 4, 57, 'ice-body', 'weak-armor', '(None)', '(None)', 36, 50, 50, 65, 60, 44),
  638. (583, 'Vanillish', 'ice', '(None)', 11, 410, 'ice-body', 'weak-armor', '(None)', '(None)', 51, 65, 65, 80, 75, 59),
  639. (584, 'Vanilluxe', 'ice', '(None)', 13, 575, 'ice-body', 'weak-armor', '(None)', '(None)', 71, 95, 85, 110, 95, 79),
  640. (585, 'Deerling', 'normal', 'grass', 6, 195, 'serene-grace', 'chlorophyll', 'sap-sipper', '(None)', 60, 60, 50, 40, 50, 75),
  641. (586, 'Sawsbuck', 'normal', 'grass', 19, 925, 'serene-grace', 'chlorophyll', 'sap-sipper', '(None)', 80, 100, 70, 60, 70, 95),
  642. (587, 'Emolga', 'flying', 'electric', 4, 50, 'static', 'motor-drive', '(None)', '(None)', 55, 75, 60, 75, 60, 103),
  643. (588, 'Karrablast', 'bug', '(None)', 5, 59, 'shed-skin', 'swarm', 'no-guard', '(None)', 50, 75, 45, 40, 45, 60),
  644. (589, 'Escavalier', 'bug', 'steel', 10, 330, 'swarm', 'shell-armor', 'overcoat', '(None)', 70, 135, 105, 60, 105, 20),
  645. (590, 'Foongus', 'poison', 'grass', 2, 10, 'effect-spore', 'regenerator', '(None)', '(None)', 69, 55, 45, 55, 55, 15),
  646. (591, 'Amoonguss', 'poison', 'grass', 6, 105, 'effect-spore', 'regenerator', '(None)', '(None)', 114, 85, 70, 85, 80, 30),
  647. (592, 'Frillish', 'ghost', 'water', 12, 330, 'damp', 'water-absorb', 'cursed-body', '(None)', 55, 40, 50, 65, 85, 40),
  648. (593, 'Jellicent', 'ghost', 'water', 22, 1350, 'damp', 'water-absorb', 'cursed-body', '(None)', 100, 60, 70, 85, 105, 60),
  649. (594, 'Alomomola', 'water', '(None)', 12, 316, 'hydration', 'healer', 'regenerator', '(None)', 165, 75, 80, 40, 45, 65),
  650. (595, 'Joltik', 'bug', 'electric', 1, 6, 'compoundeyes', 'swarm', 'unnerve', '(None)', 50, 47, 50, 57, 50, 65),
  651. (596, 'Galvantula', 'bug', 'electric', 8, 143, 'compoundeyes', 'swarm', 'unnerve', '(None)', 70, 77, 60, 97, 60, 108),
  652. (597, 'Ferroseed', 'steel', 'grass', 6, 188, 'iron-barbs', '(None)', '(None)', '(None)', 44, 50, 91, 24, 86, 10),
  653. (598, 'Ferrothorn', 'steel', 'grass', 10, 1100, 'iron-barbs', '(None)', '(None)', '(None)', 74, 94, 131, 54, 116, 20),
  654. (599, 'Klink', 'steel', '(None)', 3, 210, 'clear-body', 'plus', 'minus', '(None)', 40, 55, 70, 45, 60, 30),
  655. (600, 'Klang', 'steel', '(None)', 6, 510, 'clear-body', 'plus', 'minus', '(None)', 60, 80, 95, 70, 85, 50),
  656. (601, 'Klinklang', 'steel', '(None)', 6, 810, 'clear-body', 'plus', 'minus', '(None)', 60, 100, 115, 70, 85, 90),
  657. (602, 'Tynamo', 'electric', '(None)', 2, 3, 'levitate', '(None)', '(None)', '(None)', 35, 55, 40, 45, 40, 60),
  658. (603, 'Eelektrik', 'electric', '(None)', 12, 220, 'levitate', '(None)', '(None)', '(None)', 65, 85, 70, 75, 70, 40),
  659. (604, 'Eelektross', 'electric', '(None)', 21, 805, 'levitate', '(None)', '(None)', '(None)', 85, 115, 80, 105, 80, 50),
  660. (605, 'Elgyem', 'psychic', '(None)', 5, 90, 'synchronize', 'telepathy', 'analytic', '(None)', 55, 55, 55, 85, 55, 30),
  661. (606, 'Beheeyem', 'psychic', '(None)', 10, 345, 'synchronize', 'telepathy', 'analytic', '(None)', 75, 75, 75, 125, 95, 40),
  662. (607, 'Litwick', 'ghost', 'fire', 3, 31, 'flash-fire', 'shadow-tag', 'flame-body', '(None)', 50, 30, 55, 65, 55, 20),
  663. (608, 'Lampent', 'ghost', 'fire', 6, 130, 'flash-fire', 'shadow-tag', 'flame-body', '(None)', 60, 40, 60, 95, 60, 55),
  664. (609, 'Chandelure', 'ghost', 'fire', 10, 343, 'flash-fire', 'shadow-tag', 'flame-body', '(None)', 60, 55, 90, 145, 90, 80),
  665. (610, 'Axew', 'dragon', '(None)', 6, 180, 'rivalry', 'mold-breaker', 'unnerve', '(None)', 46, 87, 60, 30, 40, 57),
  666. (611, 'Fraxure', 'dragon', '(None)', 10, 360, 'rivalry', 'mold-breaker', 'unnerve', '(None)', 66, 117, 70, 40, 50, 67),
  667. (612, 'Haxorus', 'dragon', '(None)', 18, 1055, 'rivalry', 'mold-breaker', 'unnerve', '(None)', 76, 147, 90, 60, 70, 97),
  668. (613, 'Cubchoo', 'ice', '(None)', 5, 85, 'snow-cloak', 'rattled', '(None)', '(None)', 55, 70, 40, 60, 40, 40),
  669. (614, 'Beartic', 'ice', '(None)', 26, 2600, 'swift-swim', 'snow-cloak', '(None)', '(None)', 95, 110, 80, 70, 80, 50),
  670. (615, 'Cryogonal', 'ice', '(None)', 11, 1480, 'levitate', '(None)', '(None)', '(None)', 70, 50, 30, 95, 135, 105),
  671. (616, 'Shelmet', 'bug', '(None)', 4, 77, 'shell-armor', 'hydration', 'overcoat', '(None)', 50, 40, 85, 40, 65, 25),
  672. (617, 'Accelgor', 'bug', '(None)', 8, 253, 'sticky-hold', 'unburden', 'hydration', '(None)', 80, 70, 40, 100, 60, 145),
  673. (618, 'Stunfisk', 'ground', 'electric', 7, 110, 'limber', 'sand-veil', 'static', '(None)', 109, 66, 84, 81, 99, 32),
  674. (619, 'Mienfoo', 'fighting', '(None)', 9, 200, 'inner-focus', 'reckless', 'regenerator', '(None)', 45, 85, 50, 55, 50, 65),
  675. (620, 'Mienshao', 'fighting', '(None)', 14, 355, 'inner-focus', 'reckless', 'regenerator', '(None)', 65, 125, 60, 95, 60, 105),
  676. (621, 'Druddigon', 'dragon', '(None)', 16, 1390, 'rough-skin', 'mold-breaker', 'sheer-force', '(None)', 77, 120, 90, 60, 90, 48),
  677. (622, 'Golett', 'ground', 'ghost', 10, 920, 'iron-fist', 'no-guard', 'klutz', '(None)', 59, 74, 50, 35, 50, 35),
  678. (623, 'Golurk', 'ground', 'ghost', 28, 3300, 'iron-fist', 'no-guard', 'klutz', '(None)', 89, 124, 80, 55, 80, 55),
  679. (624, 'Pawniard', 'steel', 'dark', 5, 102, 'inner-focus', 'pressure', 'defiant', '(None)', 45, 85, 70, 40, 40, 60),
  680. (625, 'Bisharp', 'steel', 'dark', 16, 700, 'inner-focus', 'pressure', 'defiant', '(None)', 65, 125, 100, 60, 70, 70),
  681. (626, 'Bouffalant', 'normal', '(None)', 16, 946, 'soundproof', 'reckless', 'sap-sipper', '(None)', 95, 110, 95, 40, 95, 55),
  682. (627, 'Rufflet', 'normal', 'flying', 5, 105, 'keen-eye', 'hustle', 'sheer-force', '(None)', 70, 83, 50, 37, 50, 60),
  683. (628, 'Braviary', 'normal', 'flying', 15, 410, 'keen-eye', 'sheer-force', 'defiant', '(None)', 100, 123, 75, 57, 75, 80),
  684. (629, 'Vullaby', 'flying', 'dark', 5, 90, 'weak-armor', 'overcoat', 'big-pecks', '(None)', 70, 55, 75, 45, 65, 60),
  685. (630, 'Mandibuzz', 'flying', 'dark', 12, 395, 'weak-armor', 'overcoat', 'big-pecks', '(None)', 110, 65, 105, 55, 95, 80),
  686. (631, 'Heatmor', 'fire', '(None)', 14, 580, 'flash-fire', 'white-smoke', 'gluttony', '(None)', 85, 97, 66, 105, 66, 65),
  687. (632, 'Durant', 'bug', 'steel', 3, 330, 'truant', 'hustle', 'swarm', '(None)', 58, 109, 112, 48, 48, 109),
  688. (633, 'Deino', 'dragon', 'dark', 8, 173, 'hustle', '(None)', '(None)', '(None)', 52, 65, 50, 45, 50, 38),
  689. (634, 'Zweilous', 'dragon', 'dark', 14, 500, 'hustle', '(None)', '(None)', '(None)', 72, 85, 70, 65, 70, 58),
  690. (635, 'Hydreigon', 'dragon', 'dark', 18, 1600, 'levitate', '(None)', '(None)', '(None)', 92, 105, 90, 125, 90, 98),
  691. (636, 'Larvesta', 'bug', 'fire', 11, 288, 'flame-body', 'swarm', '(None)', '(None)', 55, 85, 55, 50, 55, 60),
  692. (637, 'Volcarona', 'bug', 'fire', 16, 460, 'flame-body', 'swarm', '(None)', '(None)', 85, 60, 65, 135, 105, 100),
  693. (638, 'Cobalion', 'fighting', 'steel', 21, 2500, 'justified', '(None)', '(None)', '(None)', 91, 90, 129, 90, 72, 108),
  694. (639, 'Terrakion', 'fighting', 'rock', 19, 2600, 'justified', '(None)', '(None)', '(None)', 91, 129, 90, 72, 90, 108),
  695. (640, 'Virizion', 'fighting', 'grass', 20, 2000, 'justified', '(None)', '(None)', '(None)', 91, 90, 72, 90, 129, 108),
  696. (641, 'Tornadus-incarnate', 'flying', '(None)', 15, 630, 'defiant', 'prankster', '(None)', '(None)', 79, 115, 70, 125, 80, 111),
  697. (642, 'Thundurus-incarnate', 'flying', 'electric', 15, 610, 'defiant', 'prankster', '(None)', '(None)', 79, 115, 70, 125, 80, 111),
  698. (643, 'Reshiram', 'fire', 'dragon', 32, 3300, 'turboblaze', '(None)', '(None)', '(None)', 100, 120, 100, 150, 120, 90),
  699. (644, 'Zekrom', 'electric', 'dragon', 29, 3450, 'teravolt', '(None)', '(None)', '(None)', 100, 150, 120, 120, 100, 90),
  700. (645, 'Landorus-incarnate', 'flying', 'ground', 15, 680, 'sheer-force', 'sand-force', '(None)', '(None)', 89, 125, 90, 115, 80, 101),
  701. (646, 'Kyurem', 'ice', 'dragon', 30, 3250, 'pressure', '(None)', '(None)', '(None)', 125, 130, 90, 130, 90, 95),
  702. (647, 'Keldeo-ordinary', 'fighting', 'water', 14, 485, 'justified', '(None)', '(None)', '(None)', 91, 72, 90, 129, 90, 108),
  703. (648, 'Meloetta-aria', 'normal', 'psychic', 6, 65, 'serene-grace', '(None)', '(None)', '(None)', 100, 77, 77, 128, 128, 90),
  704. (649, 'Genesect', 'bug', 'steel', 15, 825, 'download', '(None)', '(None)', '(None)', 71, 120, 95, 120, 95, 99),
  705. (650, 'Chespin', 'grass', '(None)', 0, 0, 'overgrow', 'bulletproof', '(None)', '(None)', 56, 61, 65, 48, 45, 38),
  706. (651, 'Quilladin', 'grass', '(None)', 0, 0, 'overgrow', 'bulletproof', '(None)', '(None)', 61, 78, 95, 56, 58, 57),
  707. (652, 'Chesnaught', 'fighting', 'grass', 0, 0, 'overgrow', 'bulletproof', '(None)', '(None)', 88, 107, 122, 74, 75, 64),
  708. (653, 'Fennekin', 'fire', '(None)', 0, 0, 'blaze', 'magician', '(None)', '(None)', 40, 45, 40, 62, 60, 60),
  709. (654, 'Braixen', 'fire', '(None)', 0, 0, 'blaze', 'magician', '(None)', '(None)', 59, 59, 58, 90, 70, 73),
  710. (655, 'Delphox', 'fire', 'psychic', 0, 0, 'blaze', 'magician', '(None)', '(None)', 75, 69, 72, 114, 100, 104),
  711. (656, 'Froakie', 'water', '(None)', 0, 0, 'torrent', 'protean', '(None)', '(None)', 41, 56, 41, 62, 44, 71),
  712. (657, 'Frogadier', 'water', '(None)', 0, 0, 'torrent', 'protean', '(None)', '(None)', 54, 63, 52, 83, 56, 97),
  713. (658, 'Greninja', 'water', 'dark', 0, 0, 'torrent', 'protean', '(None)', '(None)', 72, 95, 67, 103, 71, 122),
  714. (659, 'Bunnelby', 'normal', '(None)', 0, 0, 'huge-power', 'pickup', 'cheek-pouch', '(None)', 38, 36, 38, 32, 36, 57),
  715. (660, 'Diggersby', 'normal', 'ground', 0, 0, 'huge-power', 'pickup', 'cheek-pouch', '(None)', 85, 56, 77, 50, 77, 78),
  716. (661, 'Fletchling', 'normal', 'flying', 0, 0, 'big-pecks', 'gale-wings', '(None)', '(None)', 45, 50, 43, 40, 38, 62),
  717. (662, 'Fletchinder', 'flying', 'fire', 0, 0, 'flame-body', 'gale-wings', '(None)', '(None)', 62, 73, 55, 56, 52, 84),
  718. (663, 'Talonflame', 'flying', 'fire', 0, 0, 'flame-body', 'gale-wings', '(None)', '(None)', 78, 81, 71, 74, 69, 126),
  719. (664, 'Scatterbug', 'bug', '(None)', 0, 0, 'compoundeyes', 'shield-dust', 'friend-guard', '(None)', 38, 35, 40, 27, 25, 35),
  720. (665, 'Spewpa', 'bug', '(None)', 0, 0, 'shed-skin', 'friend-guard', '(None)', '(None)', 45, 22, 60, 27, 30, 29),
  721. (666, 'Vivillon', 'flying', 'bug', 0, 0, 'compoundeyes', 'shield-dust', 'friend-guard', '(None)', 80, 52, 50, 90, 50, 89),
  722. (667, 'Litleo', 'normal', 'fire', 0, 0, 'rivalry', 'unnerve', 'moxie', '(None)', 62, 50, 58, 73, 54, 72),
  723. (668, 'Pyroar', 'normal', 'fire', 0, 0, 'rivalry', 'unnerve', 'moxie', '(None)', 86, 68, 72, 109, 66, 106),
  724. (669, 'Flabebe', 'fairy', '(None)', 0, 0, 'flower-veil', 'symbiosis', '(None)', '(None)', 44, 38, 39, 61, 79, 42),
  725. (670, 'Floette', 'fairy', '(None)', 0, 0, 'flower-veil', 'symbiosis', '(None)', '(None)', 54, 45, 47, 75, 98, 52),
  726. (671, 'Florges', 'fairy', '(None)', 0, 0, 'flower-veil', 'symbiosis', '(None)', '(None)', 78, 65, 68, 112, 154, 75),
  727. (672, 'Skiddo', 'grass', '(None)', 0, 0, 'sap-sipper', 'grass-pelt', '(None)', '(None)', 66, 65, 48, 62, 57, 52),
  728. (673, 'Gogoat', 'grass', '(None)', 0, 0, 'sap-sipper', 'grass-pelt', '(None)', '(None)', 123, 100, 62, 97, 81, 68),
  729. (674, 'Pancham', 'fighting', '(None)', 0, 0, 'iron-fist', 'mold-breaker', 'scrappy', '(None)', 67, 82, 62, 46, 48, 43),
  730. (675, 'Pangoro', 'fighting', 'dark', 0, 0, 'iron-fist', 'mold-breaker', 'scrappy', '(None)', 95, 124, 78, 69, 71, 58),
  731. (676, 'Furfrou', 'normal', '(None)', 0, 0, 'fur-coat', '(None)', '(None)', '(None)', 75, 80, 60, 65, 90, 102),
  732. (677, 'Espurr', 'psychic', '(None)', 0, 0, 'own-tempo', 'keen-eye', 'infiltrator', '(None)', 62, 48, 54, 63, 60, 68),
  733. (678, 'Meowstic-male', 'psychic', '(None)', 0, 0, 'keen-eye', 'infiltrator', 'prankster', '(None)', 74, 48, 76, 83, 81, 104),
  734. (679, 'Honedge', 'ghost', 'steel', 0, 0, 'no-guard', '(None)', '(None)', '(None)', 45, 80, 100, 35, 37, 28),
  735. (680, 'Doublade', 'ghost', 'steel', 0, 0, 'no-guard', '(None)', '(None)', '(None)', 59, 110, 150, 45, 49, 35),
  736. (681, 'Aegislash', 'ghost', 'steel', 0, 0, 'stance-change', '(None)', '(None)', '(None)', 60, 50, 150, 50, 150, 60),
  737. (682, 'Spritzee', 'fairy', '(None)', 0, 0, 'healer', 'aroma-veil', '(None)', '(None)', 78, 52, 60, 63, 65, 23),
  738. (683, 'Aromatisse', 'fairy', '(None)', 0, 0, 'healer', 'aroma-veil', '(None)', '(None)', 101, 72, 72, 99, 89, 29),
  739. (684, 'Swirlix', 'fairy', '(None)', 0, 0, 'unburden', 'sweet-veil', '(None)', '(None)', 62, 48, 66, 59, 57, 49),
  740. (685, 'Slurpuff', 'fairy', '(None)', 0, 0, 'unburden', 'sweet-veil', '(None)', '(None)', 82, 80, 86, 85, 75, 72),
  741. (686, 'Inkay', 'dark', 'psychic', 0, 0, 'suction-cups', 'contrary', 'infiltrator', '(None)', 53, 54, 53, 37, 46, 45),
  742. (687, 'Malamar', 'dark', 'psychic', 0, 0, 'suction-cups', 'contrary', 'infiltrator', '(None)', 86, 92, 88, 68, 75, 73),
  743. (688, 'Binacle', 'rock', 'water', 0, 0, 'sniper', 'pickpocket', 'tough-claws', '(None)', 42, 52, 67, 39, 56, 50),
  744. (689, 'Barbaracle', 'rock', 'water', 0, 0, 'sniper', 'pickpocket', 'tough-claws', '(None)', 72, 105, 115, 54, 86, 68),
  745. (690, 'Skrelp', 'poison', 'water', 0, 0, 'poison-point', 'adaptability', 'poison-touch', '(None)', 50, 60, 60, 60, 60, 30),
  746. (691, 'Dragalge', 'poison', 'dragon', 0, 0, 'poison-point', 'adaptability', 'poison-touch', '(None)', 65, 75, 90, 97, 123, 44),
  747. (692, 'Clauncher', 'water', '(None)', 0, 0, 'mega-launcher', '(None)', '(None)', '(None)', 50, 53, 62, 58, 63, 44),
  748. (693, 'Clawitzer', 'water', '(None)', 0, 0, 'mega-launcher', '(None)', '(None)', '(None)', 71, 73, 88, 120, 89, 63),
  749. (694, 'Helioptile', 'normal', 'electric', 0, 0, 'sand-veil', 'dry-skin', 'solar-power', '(None)', 44, 38, 33, 61, 43, 70),
  750. (695, 'Heliolisk', 'normal', 'electric', 0, 0, 'sand-veil', 'dry-skin', 'solar-power', '(None)', 62, 55, 52, 109, 94, 109),
  751. (696, 'Tyrunt', 'rock', 'dragon', 0, 0, 'rock-head', 'strong-jaw', '(None)', '(None)', 58, 89, 77, 45, 45, 48),
  752. (697, 'Tyrantrum', 'rock', 'dragon', 0, 0, 'rock-head', 'strong-jaw', '(None)', '(None)', 82, 121, 119, 69, 59, 71),
  753. (698, 'Amaura', 'rock', 'ice', 0, 0, 'snow-warning', 'refrigerate', '(None)', '(None)', 77, 59, 50, 67, 63, 46),
  754. (699, 'Aurorus', 'rock', 'ice', 0, 0, 'snow-warning', 'refrigerate', '(None)', '(None)', 123, 77, 72, 99, 92, 58),
  755. (700, 'Sylveon', 'fairy', '(None)', 0, 0, 'cute-charm', 'pixilate', '(None)', '(None)', 95, 65, 65, 110, 130, 60),
  756. (701, 'Hawlucha', 'fighting', 'flying', 0, 0, 'limber', 'unburden', 'mold-breaker', '(None)', 78, 92, 77, 74, 63, 118),
  757. (702, 'Dedenne', 'electric', 'fairy', 0, 0, 'pickup', 'plus', 'cheek-pouch', '(None)', 67, 58, 57, 81, 67, 101),
  758. (703, 'Carbink', 'rock', 'fairy', 0, 0, 'sturdy', 'clear-body', '(None)', '(None)', 50, 50, 150, 50, 150, 50),
  759. (704, 'Goomy', 'dragon', '(None)', 0, 0, 'hydration', 'sap-sipper', 'gooey', '(None)', 45, 50, 35, 55, 75, 40),
  760. (705, 'Sliggoo', 'dragon', '(None)', 0, 0, 'hydration', 'sap-sipper', 'gooey', '(None)', 68, 75, 53, 83, 113, 60),
  761. (706, 'Goodra', 'dragon', '(None)', 0, 0, 'hydration', 'sap-sipper', 'gooey', '(None)', 90, 100, 70, 110, 150, 80),
  762. (707, 'Klefki', 'steel', 'fairy', 0, 0, 'prankster', 'magician', '(None)', '(None)', 58, 81, 91, 81, 87, 76),
  763. (708, 'Phantump', 'ghost', 'grass', 0, 0, 'natural-cure', 'frisk', 'harvest', '(None)', 43, 70, 48, 50, 60, 38),
  764. (709, 'Trevenant', 'ghost', 'grass', 0, 0, 'natural-cure', 'frisk', 'harvest', '(None)', 85, 110, 76, 65, 82, 56),
  765. (710, 'Pumpkaboo-average', 'ghost', 'grass', 0, 0, 'insomnia', 'pickup', 'frisk', '(None)', 49, 66, 70, 44, 55, 51),
  766. (711, 'Gourgeist-average', 'ghost', 'grass', 0, 0, 'insomnia', 'pickup', 'frisk', '(None)', 65, 90, 122, 58, 75, 84),
  767. (712, 'Bergmite', 'ice', '(None)', 0, 0, 'sturdy', 'own-tempo', 'ice-body', '(None)', 56, 69, 86, 32, 36, 28),
  768. (713, 'Avalugg', 'ice', '(None)', 0, 0, 'sturdy', 'own-tempo', 'ice-body', '(None)', 95, 117, 184, 44, 46, 28),
  769. (714, 'Noibat', 'flying', 'dragon', 0, 0, 'frisk', 'telepathy', 'infiltrator', '(None)', 40, 30, 35, 45, 40, 55),
  770. (715, 'Noivern', 'flying', 'dragon', 0, 0, 'frisk', 'telepathy', 'infiltrator', '(None)', 85, 70, 80, 97, 80, 123),
  771. (716, 'Xerneas', 'fairy', '(None)', 0, 0, 'fairy-aura', '(None)', '(None)', '(None)', 126, 131, 95, 131, 98, 99),
  772. (717, 'Yveltal', 'flying', 'dark', 0, 0, 'dark-aura', '(None)', '(None)', '(None)', 126, 131, 95, 131, 98, 99),
  773. (718, 'Zygarde', 'ground', 'dragon', 0, 0, 'aura-break', '(None)', '(None)', '(None)', 108, 100, 121, 81, 95, 95);
  774.  
  775. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  776. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  777. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement