diff --git a/.gitignore b/.gitignore index 6704566..b17578f 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,5 @@ dist # TernJS port file .tern-port + +lib/ \ No newline at end of file diff --git a/package.json b/package.json index 9113346..0984173 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "test-datasets", - "version": "1.0.4", + "version": "1.0.5", "description": "A collection of dataset JSON objects that can be used to different projects", "homepage": "https://github.com/sarathm09/test-datasets#readme", "main": "./lib/index.js", @@ -9,19 +9,19 @@ "node": ">=12.0.0" }, "scripts": { - "postinstall": "tsc" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/sarathm09/test-datasets.git" + "postinstall": "tsc", + "test": "mocha tests/" }, + "repository": "git+https://github.com/sarathm09/test-datasets.git", "dependencies": { "lorem-ipsum": "^2.0.3", + "mocha": "^8.1.3", "randexp": "^0.5.3", "typescript": "^4.0.3" }, "devDependencies": {}, "keywords": [], "author": "sarathm09", - "license": "ISC" + "license": "ISC", + "private": false } diff --git a/src/datasets/data/pokemon.ts b/src/datasets/data/pokemon.ts new file mode 100644 index 0000000..1954df8 --- /dev/null +++ b/src/datasets/data/pokemon.ts @@ -0,0 +1,10417 @@ +import { Pokemon } from '../../types/Pokemon' + +export const pokemon: Pokemon[] = [ + { + abilities: ['Overgrow', 'Chlorophyll'], + attack: 49, + classfication: 'Seed Pokémon', + defense: 49, + hp: 45, + japaneseName: 'Fushigidaneフシギダネ', + name: 'Bulbasaur', + id: 1, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Overgrow', 'Chlorophyll'], + attack: 62, + classfication: 'Seed Pokémon', + defense: 63, + hp: 60, + japaneseName: 'Fushigisouフシギソウ', + name: 'Ivysaur', + id: 2, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Overgrow', 'Chlorophyll'], + attack: 100, + classfication: 'Seed Pokémon', + defense: 123, + hp: 80, + japaneseName: 'Fushigibanaフシギバナ', + name: 'Venusaur', + id: 3, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Blaze', 'Solar Power'], + attack: 52, + classfication: 'Lizard Pokémon', + defense: 43, + hp: 39, + japaneseName: 'Hitokageヒトカゲ', + name: 'Charmander', + id: 4, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Solar Power'], + attack: 64, + classfication: 'Flame Pokémon', + defense: 58, + hp: 58, + japaneseName: 'Lizardoリザード', + name: 'Charmeleon', + id: 5, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Solar Power'], + attack: 104, + classfication: 'Flame Pokémon', + defense: 78, + hp: 78, + japaneseName: 'Lizardonリザードン', + name: 'Charizard', + id: 6, + generation: 1, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Torrent', 'Rain Dish'], + attack: 48, + classfication: 'Tiny Turtle Pokémon', + defense: 65, + hp: 44, + japaneseName: 'Zenigameゼニガメ', + name: 'Squirtle', + id: 7, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Rain Dish'], + attack: 63, + classfication: 'Turtle Pokémon', + defense: 80, + hp: 59, + japaneseName: 'Kameilカメール', + name: 'Wartortle', + id: 8, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Rain Dish'], + attack: 103, + classfication: 'Shellfish Pokémon', + defense: 120, + hp: 79, + japaneseName: 'Kamexカメックス', + name: 'Blastoise', + id: 9, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Shield Dust', 'Run Away'], + attack: 30, + classfication: 'Worm Pokémon', + defense: 35, + hp: 45, + japaneseName: 'Caterpieキャタピー', + name: 'Caterpie', + id: 10, + generation: 1, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Shed Skin'], + attack: 20, + classfication: 'Cocoon Pokémon', + defense: 55, + hp: 50, + japaneseName: 'Transelトランセル', + name: 'Metapod', + id: 11, + generation: 1, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Compoundeyes', 'Tinted Lens'], + attack: 45, + classfication: 'Butterfly Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Butterfreeバタフリー', + name: 'Butterfree', + id: 12, + generation: 1, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Shield Dust', 'Run Away'], + attack: 35, + classfication: 'Hairy Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Beedleビードル', + name: 'Weedle', + id: 13, + generation: 1, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Shed Skin'], + attack: 25, + classfication: 'Cocoon Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Cocoonコクーン', + name: 'Kakuna', + id: 14, + generation: 1, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Swarm', 'Sniper'], + attack: 150, + classfication: 'Poison Bee Pokémon', + defense: 40, + hp: 65, + japaneseName: 'Spearスピアー', + name: 'Beedrill', + id: 15, + generation: 1, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], + attack: 45, + classfication: 'Tiny Bird Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Poppoポッポ', + name: 'Pidgey', + id: 16, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], + attack: 60, + classfication: 'Bird Pokémon', + defense: 55, + hp: 63, + japaneseName: 'Pigeonピジョン', + name: 'Pidgeotto', + id: 17, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], + attack: 80, + classfication: 'Bird Pokémon', + defense: 80, + hp: 83, + japaneseName: 'Pigeotピジョット', + name: 'Pidgeot', + id: 18, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Run Away', 'Guts', 'Hustle', 'Gluttony', 'Hustle', 'Thick Fat'], + attack: 56, + classfication: 'Mouse Pokémon', + defense: 35, + hp: 30, + japaneseName: 'Korattaコラッタ', + name: 'Rattata', + id: 19, + generation: 1, + isLegendary: false, + types: ['normal', 'dark'] + }, + { + abilities: ['Run Away', 'Guts', 'Hustle', 'Gluttony', 'Hustle', 'Thick Fat'], + attack: 71, + classfication: 'Mouse Pokémon', + defense: 70, + hp: 75, + japaneseName: 'Rattaラッタ', + name: 'Raticate', + id: 20, + generation: 1, + isLegendary: false, + types: ['normal', 'dark'] + }, + { + abilities: ['Keen Eye', 'Sniper'], + attack: 60, + classfication: 'Tiny Bird Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Onisuzumeオニスズメ', + name: 'Spearow', + id: 21, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Sniper'], + attack: 90, + classfication: 'Beak Pokémon', + defense: 65, + hp: 65, + japaneseName: 'Onidrillオニドリル', + name: 'Fearow', + id: 22, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Intimidate', 'Shed Skin', 'Unnerve'], + attack: 60, + classfication: 'Snake Pokémon', + defense: 44, + hp: 35, + japaneseName: 'Arboアーボ', + name: 'Ekans', + id: 23, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Intimidate', 'Shed Skin', 'Unnerve'], + attack: 95, + classfication: 'Cobra Pokémon', + defense: 69, + hp: 60, + japaneseName: 'Arbokアーボック', + name: 'Arbok', + id: 24, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Static', 'Lightningrod'], + attack: 55, + classfication: 'Mouse Pokémon', + defense: 40, + hp: 35, + japaneseName: 'Pikachuピカチュウ', + name: 'Pikachu', + id: 25, + generation: 1, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Static', 'Lightningrod', 'Surge Surfer'], + attack: 85, + classfication: 'Mouse Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Raichuライチュウ', + name: 'Raichu', + id: 26, + generation: 1, + isLegendary: false, + types: ['electric', 'electric'] + }, + { + abilities: ['Sand Veil', 'Sand Rush', 'Snow Cloak', 'Slush Rush'], + attack: 75, + classfication: 'Mouse Pokémon', + defense: 90, + hp: 50, + japaneseName: 'Sandサンド', + name: 'Sandshrew', + id: 27, + generation: 1, + isLegendary: false, + types: ['ground', 'ice'] + }, + { + abilities: ['Sand Veil', 'Sand Rush', 'Snow Cloak', 'Slush Rush'], + attack: 100, + classfication: 'Mouse Pokémon', + defense: 120, + hp: 75, + japaneseName: 'Sandpanサンドパン', + name: 'Sandslash', + id: 28, + generation: 1, + isLegendary: false, + types: ['ground', 'ice'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Hustle'], + attack: 47, + classfication: 'Poison Pin Pokémon', + defense: 52, + hp: 55, + japaneseName: 'Nidoran?ニドラン♀', + name: 'Nidoran♀', + id: 29, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Hustle'], + attack: 62, + classfication: 'Poison Pin Pokémon', + defense: 67, + hp: 70, + japaneseName: 'Nidorinaニドリーナ', + name: 'Nidorina', + id: 30, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Sheer Force'], + attack: 92, + classfication: 'Drill Pokémon', + defense: 87, + hp: 90, + japaneseName: 'Nidoqueenニドクイン', + name: 'Nidoqueen', + id: 31, + generation: 1, + isLegendary: false, + types: ['poison', 'ground'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Hustle'], + attack: 57, + classfication: 'Poison Pin Pokémon', + defense: 40, + hp: 46, + japaneseName: 'Nidoran?ニドラン♂', + name: 'Nidoran♂', + id: 32, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Hustle'], + attack: 72, + classfication: 'Poison Pin Pokémon', + defense: 57, + hp: 61, + japaneseName: 'Nidorinoニドリーノ', + name: 'Nidorino', + id: 33, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Poison Point', 'Rivalry', 'Sheer Force'], + attack: 102, + classfication: 'Drill Pokémon', + defense: 77, + hp: 81, + japaneseName: 'Nidokingニドキング', + name: 'Nidoking', + id: 34, + generation: 1, + isLegendary: false, + types: ['poison', 'ground'] + }, + { + abilities: ['Cute Charm', 'Magic Guard', 'Friend Guard'], + attack: 45, + classfication: 'Fairy Pokémon', + defense: 48, + hp: 70, + japaneseName: 'Pippiピッピ', + name: 'Clefairy', + id: 35, + generation: 1, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Cute Charm', 'Magic Guard', 'Unaware'], + attack: 70, + classfication: 'Fairy Pokémon', + defense: 73, + hp: 95, + japaneseName: 'Pixyピクシー', + name: 'Clefable', + id: 36, + generation: 1, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Flash Fire', 'Drought', 'Snow Cloak', 'Snow Warning'], + attack: 41, + classfication: 'Fox Pokémon', + defense: 40, + hp: 38, + japaneseName: 'Rokonロコン', + name: 'Vulpix', + id: 37, + generation: 1, + isLegendary: false, + types: ['fire', 'ice'] + }, + { + abilities: ['Flash Fire', 'Drought', 'Snow Cloak', 'Snow Warning'], + attack: 67, + classfication: 'Fox Pokémon', + defense: 75, + hp: 73, + japaneseName: 'Kyukonキュウコン', + name: 'Ninetales', + id: 38, + generation: 1, + isLegendary: false, + types: ['fire', 'ice'] + }, + { + abilities: ['Cute Charm', 'Competitive', 'Friend Guard'], + attack: 45, + classfication: 'Balloon Pokémon', + defense: 20, + hp: 115, + japaneseName: 'Purinプリン', + name: 'Jigglypuff', + id: 39, + generation: 1, + isLegendary: false, + types: ['normal', 'fairy'] + }, + { + abilities: ['Cute Charm', 'Competitive', 'Frisk'], + attack: 70, + classfication: 'Balloon Pokémon', + defense: 45, + hp: 140, + japaneseName: 'Pukurinプクリン', + name: 'Wigglytuff', + id: 40, + generation: 1, + isLegendary: false, + types: ['normal', 'fairy'] + }, + { + abilities: ['Inner Focus', 'Infiltrator'], + attack: 45, + classfication: 'Bat Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Zubatズバット', + name: 'Zubat', + id: 41, + generation: 1, + isLegendary: false, + types: ['poison', 'flying'] + }, + { + abilities: ['Inner Focus', 'Infiltrator'], + attack: 80, + classfication: 'Bat Pokémon', + defense: 70, + hp: 75, + japaneseName: 'Golbatゴルバット', + name: 'Golbat', + id: 42, + generation: 1, + isLegendary: false, + types: ['poison', 'flying'] + }, + { + abilities: ['Chlorophyll', 'Run Away'], + attack: 50, + classfication: 'Weed Pokémon', + defense: 55, + hp: 45, + japaneseName: 'Nazonokusaナゾノクサ', + name: 'Oddish', + id: 43, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Chlorophyll', 'Stench'], + attack: 65, + classfication: 'Weed Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Kusaihanaクサイハナ', + name: 'Gloom', + id: 44, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Chlorophyll', 'Effect Spore'], + attack: 80, + classfication: 'Flower Pokémon', + defense: 85, + hp: 75, + japaneseName: 'Ruffresiaラフレシア', + name: 'Vileplume', + id: 45, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Effect Spore', 'Dry Skin', 'Damp'], + attack: 70, + classfication: 'Mushroom Pokémon', + defense: 55, + hp: 35, + japaneseName: 'Parasパラス', + name: 'Paras', + id: 46, + generation: 1, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Effect Spore', 'Dry Skin', 'Damp'], + attack: 95, + classfication: 'Mushroom Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Parasectパラセクト', + name: 'Parasect', + id: 47, + generation: 1, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Compoundeyes', 'Tinted Lens', 'Run Away'], + attack: 55, + classfication: 'Insect Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Kongpangコンパン', + name: 'Venonat', + id: 48, + generation: 1, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Shield Dust', 'Tinted Lens', 'Wonder Skin '], + attack: 65, + classfication: 'Poison Moth Pokémon', + defense: 60, + hp: 70, + japaneseName: 'Morphonモルフォン', + name: 'Venomoth', + id: 49, + generation: 1, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Sand Veil', 'Arena Trap', 'Sand Force', 'Sand Veil', 'Tangling Hair', 'Sand Force'], + attack: 55, + classfication: 'Mole Pokémon', + defense: 30, + hp: 10, + japaneseName: 'Digdaディグダ', + name: 'Diglett', + id: 50, + generation: 1, + isLegendary: false, + types: ['ground', 'ground'] + }, + { + abilities: ['Sand Veil', 'Arena Trap', 'Sand Force', 'Sand Veil', 'Tangling Hair', 'Sand Force'], + attack: 100, + classfication: 'Mole Pokémon', + defense: 60, + hp: 35, + japaneseName: 'Dugtrioダグトリオ', + name: 'Dugtrio', + id: 51, + generation: 1, + isLegendary: false, + types: ['ground', 'ground'] + }, + { + abilities: ['Pickup', 'Technician', 'Unnerve', 'Pickup', 'Technician', 'Rattled'], + attack: 35, + classfication: 'Scratch Cat Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Nyarthニャース', + name: 'Meowth', + id: 52, + generation: 1, + isLegendary: false, + types: ['normal', 'dark'] + }, + { + abilities: ['Limber', 'Technician', 'Unnerve', 'Fur Coat', 'Technician', 'Rattled'], + attack: 60, + classfication: 'Classy Cat Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Persianペルシアン', + name: 'Persian', + id: 53, + generation: 1, + isLegendary: false, + types: ['normal', 'dark'] + }, + { + abilities: ['Damp', 'Cloud Nine', 'Swift Swim'], + attack: 52, + classfication: 'Duck Pokémon', + defense: 48, + hp: 50, + japaneseName: 'Koduckコダック', + name: 'Psyduck', + id: 54, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Damp', 'Cloud Nine', 'Swift Swim'], + attack: 82, + classfication: 'Duck Pokémon', + defense: 78, + hp: 80, + japaneseName: 'Golduckゴルダック', + name: 'Golduck', + id: 55, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Vital Spirit', 'Anger Point', 'Defiant'], + attack: 80, + classfication: 'Pig Monkey Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Mankeyマンキー', + name: 'Mankey', + id: 56, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Vital Spirit', 'Anger Point', 'Defiant'], + attack: 105, + classfication: 'Pig Monkey Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Okorizaruオコリザル', + name: 'Primeape', + id: 57, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Intimidate', 'Flash Fire', 'Justified'], + attack: 70, + classfication: 'Puppy Pokémon', + defense: 45, + hp: 55, + japaneseName: 'Gardieガーディ', + name: 'Growlithe', + id: 58, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Intimidate', 'Flash Fire', 'Justified'], + attack: 110, + classfication: 'Legendary Pokémon', + defense: 80, + hp: 90, + japaneseName: 'Windieウインディ', + name: 'Arcanine', + id: 59, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Water Absorb', 'Damp', 'Swift Swim'], + attack: 50, + classfication: 'Tadpole Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Nyoromoニョロモ', + name: 'Poliwag', + id: 60, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Water Absorb', 'Damp', 'Swift Swim'], + attack: 65, + classfication: 'Tadpole Pokémon', + defense: 65, + hp: 65, + japaneseName: 'Nyorozoニョロゾ', + name: 'Poliwhirl', + id: 61, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Water Absorb', 'Damp', 'Swift Swim'], + attack: 95, + classfication: 'Tadpole Pokémon', + defense: 95, + hp: 90, + japaneseName: 'Nyorobonニョロボン', + name: 'Poliwrath', + id: 62, + generation: 1, + isLegendary: false, + types: ['water', 'fighting'] + }, + { + abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], + attack: 20, + classfication: 'Psi Pokémon', + defense: 15, + hp: 25, + japaneseName: 'Caseyケーシィ', + name: 'Abra', + id: 63, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], + attack: 35, + classfication: 'Psi Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Yungererユンゲラー', + name: 'Kadabra', + id: 64, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], + attack: 50, + classfication: 'Psi Pokémon', + defense: 65, + hp: 55, + japaneseName: 'Foodinフーディン', + name: 'Alakazam', + id: 65, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Guts', 'No Guard', 'Steadfast'], + attack: 80, + classfication: 'Superpower Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Wanrikyワンリキー', + name: 'Machop', + id: 66, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Guts', 'No Guard', 'Steadfast'], + attack: 100, + classfication: 'Superpower Pokémon', + defense: 70, + hp: 80, + japaneseName: 'Gorikyゴーリキー', + name: 'Machoke', + id: 67, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Guts', 'No Guard', 'Steadfast'], + attack: 130, + classfication: 'Superpower Pokémon', + defense: 80, + hp: 90, + japaneseName: 'Kairikyカイリキー', + name: 'Machamp', + id: 68, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Chlorophyll', 'Gluttony'], + attack: 75, + classfication: 'Flower Pokémon', + defense: 35, + hp: 50, + japaneseName: 'Madatsubomiマダツボミ', + name: 'Bellsprout', + id: 69, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Chlorophyll', 'Gluttony'], + attack: 90, + classfication: 'Flycatcher Pokémon', + defense: 50, + hp: 65, + japaneseName: 'Utsudonウツドン', + name: 'Weepinbell', + id: 70, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Chlorophyll', 'Gluttony'], + attack: 105, + classfication: 'Flycatcher Pokémon', + defense: 65, + hp: 80, + japaneseName: 'Utsubotウツボット', + name: 'Victreebel', + id: 71, + generation: 1, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Clear Body', 'Liquid Ooze', 'Rain Dish'], + attack: 40, + classfication: 'Jellyfish Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Menokurageメノクラゲ', + name: 'Tentacool', + id: 72, + generation: 1, + isLegendary: false, + types: ['water', 'poison'] + }, + { + abilities: ['Clear Body', 'Liquid Ooze', 'Rain Dish'], + attack: 70, + classfication: 'Jellyfish Pokémon', + defense: 65, + hp: 80, + japaneseName: 'Dokukurageドククラゲ', + name: 'Tentacruel', + id: 73, + generation: 1, + isLegendary: false, + types: ['water', 'poison'] + }, + { + abilities: ['Rock Head', 'Sturdy', 'Sand Veil', 'Magnet Pull', 'Sturdy', 'Galvanize'], + attack: 80, + classfication: 'Rock Pokémon', + defense: 100, + hp: 40, + japaneseName: 'Isitsubuteイシツブテ', + name: 'Geodude', + id: 74, + generation: 1, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Rock Head', 'Sturdy', 'Sand Veil', 'Magnet Pull', 'Sturdy', 'Galvanize'], + attack: 95, + classfication: 'Rock Pokémon', + defense: 115, + hp: 55, + japaneseName: 'Goloneゴローン', + name: 'Graveler', + id: 75, + generation: 1, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Rock Head', 'Sturdy', 'Sand Veil', 'Magnet Pull', 'Sturdy', 'Galvanize'], + attack: 120, + classfication: 'Megaton Pokémon', + defense: 130, + hp: 80, + japaneseName: 'Golonyaゴローニャ', + name: 'Golem', + id: 76, + generation: 1, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Run Away', 'Flash Fire', 'Flame Body'], + attack: 85, + classfication: 'Fire Horse Pokémon', + defense: 55, + hp: 50, + japaneseName: 'Ponytaポニータ', + name: 'Ponyta', + id: 77, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Run Away', 'Flash Fire', 'Flame Body'], + attack: 100, + classfication: 'Fire Horse Pokémon', + defense: 70, + hp: 65, + japaneseName: 'Gallopギャロップ', + name: 'Rapidash', + id: 78, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], + attack: 65, + classfication: 'Dopey Pokémon', + defense: 65, + hp: 90, + japaneseName: 'Yadonヤドン', + name: 'Slowpoke', + id: 79, + generation: 1, + isLegendary: false, + types: ['water', 'psychic'] + }, + { + abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], + attack: 75, + classfication: 'Hermit Crab Pokémon', + defense: 180, + hp: 95, + japaneseName: 'Yadoranヤドラン', + name: 'Slowbro', + id: 80, + generation: 1, + isLegendary: false, + types: ['water', 'psychic'] + }, + { + abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], + attack: 35, + classfication: 'Magnet Pokémon', + defense: 70, + hp: 25, + japaneseName: 'Coilコイル', + name: 'Magnemite', + id: 81, + generation: 1, + isLegendary: false, + types: ['electric', 'steel'] + }, + { + abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], + attack: 60, + classfication: 'Magnet Pokémon', + defense: 95, + hp: 50, + japaneseName: 'Rarecoilレアコイル', + name: 'Magneton', + id: 82, + generation: 1, + isLegendary: false, + types: ['electric', 'steel'] + }, + { + abilities: ['Keen Eye', 'Inner Focus', 'Defiant'], + attack: 90, + classfication: 'Wild Duck Pokémon', + defense: 55, + hp: 52, + japaneseName: 'Kamonegiカモネギ', + name: "Farfetch'd", + id: 83, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Run Away', 'Early Bird', 'Tangled Feet'], + attack: 85, + classfication: 'Twin Bird Pokémon', + defense: 45, + hp: 35, + japaneseName: 'Dodoドードー', + name: 'Doduo', + id: 84, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Run Away', 'Early Bird', 'Tangled Feet'], + attack: 110, + classfication: 'Triple Bird Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Dodorioドードリオ', + name: 'Dodrio', + id: 85, + generation: 1, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Thick Fat', 'Hydration', 'Ice Body'], + attack: 45, + classfication: 'Sea Lion Pokémon', + defense: 55, + hp: 65, + japaneseName: 'Pawouパウワウ', + name: 'Seel', + id: 86, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Thick Fat', 'Hydration', 'Ice Body'], + attack: 70, + classfication: 'Sea Lion Pokémon', + defense: 80, + hp: 90, + japaneseName: 'Jugonジュゴン', + name: 'Dewgong', + id: 87, + generation: 1, + isLegendary: false, + types: ['water', 'ice'] + }, + { + abilities: ['Stench', 'Sticky Hold', 'Poison Touch', 'Poison Touch', 'Gluttony', 'Power of Alchemy'], + attack: 80, + classfication: 'Sludge Pokémon', + defense: 50, + hp: 80, + japaneseName: 'Betbeterベトベター', + name: 'Grimer', + id: 88, + generation: 1, + isLegendary: false, + types: ['poison', 'poison'] + }, + { + abilities: ['Stench', 'Sticky Hold', 'Poison Touch', 'Poison Touch', 'Gluttony', 'Power of Alchemy'], + attack: 105, + classfication: 'Sludge Pokémon', + defense: 75, + hp: 105, + japaneseName: 'Betbetonベトベトン', + name: 'Muk', + id: 89, + generation: 1, + isLegendary: false, + types: ['poison', 'poison'] + }, + { + abilities: ['Shell Armor', 'Skill Link', 'Overcoat'], + attack: 65, + classfication: 'Bivalve Pokémon', + defense: 100, + hp: 30, + japaneseName: 'Shellderシェルダー', + name: 'Shellder', + id: 90, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Shell Armor', 'Skill Link', 'Overcoat'], + attack: 95, + classfication: 'Bivalve Pokémon', + defense: 180, + hp: 50, + japaneseName: 'Parshenパルシェン', + name: 'Cloyster', + id: 91, + generation: 1, + isLegendary: false, + types: ['water', 'ice'] + }, + { + abilities: ['Levitate'], + attack: 35, + classfication: 'Gas Pokémon', + defense: 30, + hp: 30, + japaneseName: 'Ghosゴース', + name: 'Gastly', + id: 92, + generation: 1, + isLegendary: false, + types: ['ghost', 'poison'] + }, + { + abilities: ['Levitate'], + attack: 50, + classfication: 'Gas Pokémon', + defense: 45, + hp: 45, + japaneseName: 'Ghostゴースト', + name: 'Haunter', + id: 93, + generation: 1, + isLegendary: false, + types: ['ghost', 'poison'] + }, + { + abilities: ['Cursed Body'], + attack: 65, + classfication: 'Shadow Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Gangarゲンガー', + name: 'Gengar', + id: 94, + generation: 1, + isLegendary: false, + types: ['ghost', 'poison'] + }, + { + abilities: ['Rock Head', 'Sturdy', 'Weak Armor'], + attack: 45, + classfication: 'Rock Snake Pokémon', + defense: 160, + hp: 35, + japaneseName: 'Iwarkイワーク', + name: 'Onix', + id: 95, + generation: 1, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Insomnia', 'Forewarn', 'Inner Focus'], + attack: 48, + classfication: 'Hypnosis Pokémon', + defense: 45, + hp: 60, + japaneseName: 'Sleepeスリープ', + name: 'Drowzee', + id: 96, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Insomnia', 'Forewarn', 'Inner Focus'], + attack: 73, + classfication: 'Hypnosis Pokémon', + defense: 70, + hp: 85, + japaneseName: 'Sleeperスリーパー', + name: 'Hypno', + id: 97, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Hyper Cutter', 'Shell Armor', 'Sheer Force'], + attack: 105, + classfication: 'River Crab Pokémon', + defense: 90, + hp: 30, + japaneseName: 'Crabクラブ', + name: 'Krabby', + id: 98, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Hyper Cutter', 'Shell Armor', 'Sheer Force'], + attack: 130, + classfication: 'Pincer Pokémon', + defense: 115, + hp: 55, + japaneseName: 'Kinglerキングラー', + name: 'Kingler', + id: 99, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Soundproof', 'Static', 'Aftermath'], + attack: 30, + classfication: 'Ball Pokémon', + defense: 50, + hp: 40, + japaneseName: 'Biriridamaビリリダマ', + name: 'Voltorb', + id: 100, + generation: 1, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Soundproof', 'Static', 'Aftermath'], + attack: 50, + classfication: 'Ball Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Marumineマルマイン', + name: 'Electrode', + id: 101, + generation: 1, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Chlorophyll', 'Harvest'], + attack: 40, + classfication: 'Egg Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Tamatamaタマタマ', + name: 'Exeggcute', + id: 102, + generation: 1, + isLegendary: false, + types: ['grass', 'psychic'] + }, + { + abilities: ['Chlorophyll', 'Harvest', 'Frisk', 'Harvest'], + attack: 105, + classfication: 'Coconut Pokémon', + defense: 85, + hp: 95, + japaneseName: 'Nassyナッシー', + name: 'Exeggutor', + id: 103, + generation: 1, + isLegendary: false, + types: ['grass', 'psychic'] + }, + { + abilities: ['Rock Head', 'Lightningrod', 'Battle Armor'], + attack: 50, + classfication: 'Lonely Pokémon', + defense: 95, + hp: 50, + japaneseName: 'Karakaraカラカラ', + name: 'Cubone', + id: 104, + generation: 1, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Rock Head', 'Lightningrod', 'Battle Armor', 'Cursed Body', 'Lightningrod', 'Rock Head'], + attack: 80, + classfication: 'Bone Keeper Pokémon', + defense: 110, + hp: 60, + japaneseName: 'Garagaraガラガラ', + name: 'Marowak', + id: 105, + generation: 1, + isLegendary: false, + types: ['ground', 'fire'] + }, + { + abilities: ['Limber', 'Reckless', 'Unburden'], + attack: 120, + classfication: 'Kicking Pokémon', + defense: 53, + hp: 50, + japaneseName: 'Sawamularサワムラー', + name: 'Hitmonlee', + id: 106, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Keen Eye', 'Iron Fist', 'Inner Focus'], + attack: 105, + classfication: 'Punching Pokémon', + defense: 79, + hp: 50, + japaneseName: 'Ebiwalarエビワラー', + name: 'Hitmonchan', + id: 107, + generation: 1, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Own Tempo', 'Oblivious', 'Cloud Nine'], + attack: 55, + classfication: 'Licking Pokémon', + defense: 75, + hp: 90, + japaneseName: 'Beroringaベロリンガ', + name: 'Lickitung', + id: 108, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Levitate'], + attack: 65, + classfication: 'Poison Gas Pokémon', + defense: 95, + hp: 40, + japaneseName: 'Dogarsドガース', + name: 'Koffing', + id: 109, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Levitate'], + attack: 90, + classfication: 'Poison Gas Pokémon', + defense: 120, + hp: 65, + japaneseName: 'Matadogasマタドガス', + name: 'Weezing', + id: 110, + generation: 1, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Lightningrod', 'Rock Head', 'Reckless'], + attack: 85, + classfication: 'Spikes Pokémon', + defense: 95, + hp: 80, + japaneseName: 'Sihornサイホーン', + name: 'Rhyhorn', + id: 111, + generation: 1, + isLegendary: false, + types: ['ground', 'rock'] + }, + { + abilities: ['Lightningrod', 'Rock Head', 'Reckless'], + attack: 130, + classfication: 'Drill Pokémon', + defense: 120, + hp: 105, + japaneseName: 'Sidonサイドン', + name: 'Rhydon', + id: 112, + generation: 1, + isLegendary: false, + types: ['ground', 'rock'] + }, + { + abilities: ['Natural Cure', 'Serene Grace', 'Healer'], + attack: 5, + classfication: 'Egg Pokémon', + defense: 5, + hp: 250, + japaneseName: 'Luckyラッキー', + name: 'Chansey', + id: 113, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Chlorophyll', 'Leaf Guard', 'Regenerator'], + attack: 55, + classfication: 'Vine Pokémon', + defense: 115, + hp: 65, + japaneseName: 'Monjaraモンジャラ', + name: 'Tangela', + id: 114, + generation: 1, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Early Bird', 'Scrappy', 'Inner Focus'], + attack: 125, + classfication: 'Parent Pokémon', + defense: 100, + hp: 105, + japaneseName: 'Garuraガルーラ', + name: 'Kangaskhan', + id: 115, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Swift Swim', 'Sniper', 'Damp'], + attack: 40, + classfication: 'Dragon Pokémon', + defense: 70, + hp: 30, + japaneseName: 'Tattuタッツー', + name: 'Horsea', + id: 116, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Poison Point', 'Sniper', 'Damp'], + attack: 65, + classfication: 'Dragon Pokémon', + defense: 95, + hp: 55, + japaneseName: 'Seadraシードラ', + name: 'Seadra', + id: 117, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Water Veil', 'Lightningrod'], + attack: 67, + classfication: 'Goldfish Pokémon', + defense: 60, + hp: 45, + japaneseName: 'Tosakintoトサキント', + name: 'Goldeen', + id: 118, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Water Veil', 'Lightningrod'], + attack: 92, + classfication: 'Goldfish Pokémon', + defense: 65, + hp: 80, + japaneseName: 'Azumaoアズマオウ', + name: 'Seaking', + id: 119, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Illuminate', 'Natural Cure', 'Analytic'], + attack: 45, + classfication: 'Starshape Pokémon', + defense: 55, + hp: 30, + japaneseName: 'Hitodemanヒトデマン', + name: 'Staryu', + id: 120, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Illuminate', 'Natural Cure', 'Analytic'], + attack: 75, + classfication: 'Mysterious Pokémon', + defense: 85, + hp: 60, + japaneseName: 'Starmieスターミー', + name: 'Starmie', + id: 121, + generation: 1, + isLegendary: false, + types: ['water', 'psychic'] + }, + { + abilities: ['Soundproof', 'Filter', 'Technician'], + attack: 45, + classfication: 'Barrier Pokémon', + defense: 65, + hp: 40, + japaneseName: 'Barrierdバリヤード', + name: 'Mr. Mime', + id: 122, + generation: 1, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Swarm', 'Technician', 'Steadfast'], + attack: 110, + classfication: 'Mantis Pokémon', + defense: 80, + hp: 70, + japaneseName: 'Strikeストライク', + name: 'Scyther', + id: 123, + generation: 1, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Oblivious', 'Forewarn', 'Dry Skin'], + attack: 50, + classfication: 'Humanshape Pokémon', + defense: 35, + hp: 65, + japaneseName: 'Rougelaルージュラ', + name: 'Jynx', + id: 124, + generation: 1, + isLegendary: false, + types: ['ice', 'psychic'] + }, + { + abilities: ['Static', 'Vital Spirit'], + attack: 83, + classfication: 'Electric Pokémon', + defense: 57, + hp: 65, + japaneseName: 'Elebooエレブー', + name: 'Electabuzz', + id: 125, + generation: 1, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Flame Body', 'Vital Spirit'], + attack: 95, + classfication: 'Spitfire Pokémon', + defense: 57, + hp: 65, + japaneseName: 'Booberブーバー', + name: 'Magmar', + id: 126, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Hyper Cutter', 'Mold Breaker', 'Moxie'], + attack: 155, + classfication: 'Stagbeetle Pokémon', + defense: 120, + hp: 65, + japaneseName: 'Kailiosカイロス', + name: 'Pinsir', + id: 127, + generation: 1, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Intimidate', 'Anger Point', 'Sheer Force'], + attack: 100, + classfication: 'Wild Bull Pokémon', + defense: 95, + hp: 75, + japaneseName: 'Kentaurosケンタロス', + name: 'Tauros', + id: 128, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Swift Swim', 'Rattled'], + attack: 10, + classfication: 'Fish Pokémon', + defense: 55, + hp: 20, + japaneseName: 'Koikingコイキング', + name: 'Magikarp', + id: 129, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Intimidate', 'Moxie'], + attack: 155, + classfication: 'Atrocious Pokémon', + defense: 109, + hp: 95, + japaneseName: 'Gyaradosギャラドス', + name: 'Gyarados', + id: 130, + generation: 1, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Water Absorb', 'Shell Armor', 'Hydration'], + attack: 85, + classfication: 'Transport Pokémon', + defense: 80, + hp: 130, + japaneseName: 'Laplaceラプラス', + name: 'Lapras', + id: 131, + generation: 1, + isLegendary: false, + types: ['water', 'ice'] + }, + { + abilities: ['Limber', 'Imposter'], + attack: 48, + classfication: 'Transform Pokémon', + defense: 48, + hp: 48, + japaneseName: 'Metamonメタモン', + name: 'Ditto', + id: 132, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Run Away', 'Adaptability', 'Anticipation'], + attack: 55, + classfication: 'Evolution Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Eievuiイーブイ', + name: 'Eevee', + id: 133, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Water Absorb', 'Hydration'], + attack: 65, + classfication: 'Bubble Jet Pokémon', + defense: 60, + hp: 130, + japaneseName: 'Showersシャワーズ', + name: 'Vaporeon', + id: 134, + generation: 1, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Volt Absorb', 'Quick Feet'], + attack: 65, + classfication: 'Lightning Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Thundersサンダース', + name: 'Jolteon', + id: 135, + generation: 1, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Flash Fire', 'Guts'], + attack: 130, + classfication: 'Flame Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Boosterブースター', + name: 'Flareon', + id: 136, + generation: 1, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Trace', 'Download', 'Analytic'], + attack: 60, + classfication: 'Virtual Pokémon', + defense: 70, + hp: 65, + japaneseName: 'Porygonポリゴン', + name: 'Porygon', + id: 137, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Swift Swim', 'Shell Armor', 'Weak Armor'], + attack: 40, + classfication: 'Spiral Pokémon', + defense: 100, + hp: 35, + japaneseName: 'Omniteオムナイト', + name: 'Omanyte', + id: 138, + generation: 1, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Swift Swim', 'Shell Armor', 'Weak Armor'], + attack: 60, + classfication: 'Spiral Pokémon', + defense: 125, + hp: 70, + japaneseName: 'Omstarオムスター', + name: 'Omastar', + id: 139, + generation: 1, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Swift Swim', 'Battle Armor', 'Weak Armor'], + attack: 80, + classfication: 'Shellfish Pokémon', + defense: 90, + hp: 30, + japaneseName: 'Kabutoカブト', + name: 'Kabuto', + id: 140, + generation: 1, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Swift Swim', 'Battle Armor', 'Weak Armor'], + attack: 115, + classfication: 'Shellfish Pokémon', + defense: 105, + hp: 60, + japaneseName: 'Kabutopsカブトプス', + name: 'Kabutops', + id: 141, + generation: 1, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Rock Head', 'Pressure', 'Unnerve'], + attack: 135, + classfication: 'Fossil Pokémon', + defense: 85, + hp: 80, + japaneseName: 'Pteraプテラ', + name: 'Aerodactyl', + id: 142, + generation: 1, + isLegendary: false, + types: ['rock', 'flying'] + }, + { + abilities: ['Immunity', 'Thick Fat', 'Gluttony'], + attack: 110, + classfication: 'Sleeping Pokémon', + defense: 65, + hp: 160, + japaneseName: 'Kabigonカビゴン', + name: 'Snorlax', + id: 143, + generation: 1, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Pressure', 'Snow Cloak'], + attack: 85, + classfication: 'Freeze Pokémon', + defense: 100, + hp: 90, + japaneseName: 'Freezerフリーザー', + name: 'Articuno', + id: 144, + generation: 1, + isLegendary: false, + types: ['ice', 'flying'] + }, + { + abilities: ['Pressure', 'Static'], + attack: 90, + classfication: 'Electric Pokémon', + defense: 85, + hp: 90, + japaneseName: 'Thunderサンダー', + name: 'Zapdos', + id: 145, + generation: 1, + isLegendary: false, + types: ['electric', 'flying'] + }, + { + abilities: ['Pressure', 'Flame Body'], + attack: 100, + classfication: 'Flame Pokémon', + defense: 90, + hp: 90, + japaneseName: 'Fireファイヤー', + name: 'Moltres', + id: 146, + generation: 1, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Shed Skin', 'Marvel Scale'], + attack: 64, + classfication: 'Dragon Pokémon', + defense: 45, + hp: 41, + japaneseName: 'Miniryuミニリュウ', + name: 'Dratini', + id: 147, + generation: 1, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Shed Skin', 'Marvel Scale'], + attack: 84, + classfication: 'Dragon Pokémon', + defense: 65, + hp: 61, + japaneseName: 'Hakuryuハクリュー', + name: 'Dragonair', + id: 148, + generation: 1, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Inner Focus', 'Multiscale'], + attack: 134, + classfication: 'Dragon Pokémon', + defense: 95, + hp: 91, + japaneseName: 'Kairyuカイリュー', + name: 'Dragonite', + id: 149, + generation: 1, + isLegendary: false, + types: ['dragon', 'flying'] + }, + { + abilities: ['Pressure', 'Unnerve'], + attack: 150, + classfication: 'Genetic Pokémon', + defense: 70, + hp: 106, + japaneseName: 'Mewtwoミュウツー', + name: 'Mewtwo', + id: 150, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Synchronize'], + attack: 100, + classfication: 'New Species Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Mewミュウ', + name: 'Mew', + id: 151, + generation: 1, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Overgrow', 'Leaf Guard'], + attack: 49, + classfication: 'Leaf Pokémon', + defense: 65, + hp: 45, + japaneseName: 'Chicoritaチコリータ', + name: 'Chikorita', + id: 152, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Leaf Guard'], + attack: 62, + classfication: 'Leaf Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Bayleafベイリーフ', + name: 'Bayleef', + id: 153, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Leaf Guard'], + attack: 82, + classfication: 'Herb Pokémon', + defense: 100, + hp: 80, + japaneseName: 'Meganiumメガニウム', + name: 'Meganium', + id: 154, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Blaze', 'Flash Fire'], + attack: 52, + classfication: 'Fire Mouse Pokémon', + defense: 43, + hp: 39, + japaneseName: 'Hinoarashiヒノアラシ', + name: 'Cyndaquil', + id: 155, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Flash Fire'], + attack: 64, + classfication: 'Volcano Pokémon', + defense: 58, + hp: 58, + japaneseName: 'Magmarashiマグマラシ', + name: 'Quilava', + id: 156, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Flash Fire'], + attack: 84, + classfication: 'Volcano Pokémon', + defense: 78, + hp: 78, + japaneseName: 'Bakphoonバクフーン', + name: 'Typhlosion', + id: 157, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Torrent', 'Sheer Force'], + attack: 65, + classfication: 'Big Jaw Pokémon', + defense: 64, + hp: 50, + japaneseName: 'Waninokoワニノコ', + name: 'Totodile', + id: 158, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Sheer Force'], + attack: 80, + classfication: 'Big Jaw Pokémon', + defense: 80, + hp: 65, + japaneseName: 'Alligatesアリゲイツ', + name: 'Croconaw', + id: 159, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Sheer Force'], + attack: 105, + classfication: 'Big Jaw Pokémon', + defense: 100, + hp: 85, + japaneseName: 'Ordileオーダイル', + name: 'Feraligatr', + id: 160, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Run Away', 'Keen Eye', 'Frisk'], + attack: 46, + classfication: 'Scout Pokémon', + defense: 34, + hp: 35, + japaneseName: 'Otachiオタチ', + name: 'Sentret', + id: 161, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Run Away', 'Keen Eye', 'Frisk'], + attack: 76, + classfication: 'Long Body Pokémon', + defense: 64, + hp: 85, + japaneseName: 'Ootachiオオタチ', + name: 'Furret', + id: 162, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Insomnia', 'Keen Eye', 'Tinted Lens'], + attack: 30, + classfication: 'Owl Pokémon', + defense: 30, + hp: 60, + japaneseName: 'Hohoホーホー', + name: 'Hoothoot', + id: 163, + generation: 2, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Insomnia', 'Keen Eye', 'Tinted Lens'], + attack: 50, + classfication: 'Owl Pokémon', + defense: 50, + hp: 100, + japaneseName: 'Yorunozukuヨルノズク', + name: 'Noctowl', + id: 164, + generation: 2, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Swarm', 'Early Bird', 'Rattled'], + attack: 20, + classfication: 'Five Star Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Redibaレディバ', + name: 'Ledyba', + id: 165, + generation: 2, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Swarm', 'Early Bird', 'Iron Fist'], + attack: 35, + classfication: 'Five Star Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Redianレディアン', + name: 'Ledian', + id: 166, + generation: 2, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Swarm', 'Insomnia', 'Sniper'], + attack: 60, + classfication: 'String Spit Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Itomaruイトマル', + name: 'Spinarak', + id: 167, + generation: 2, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Swarm', 'Insomnia', 'Sniper'], + attack: 90, + classfication: 'Long Leg Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Ariadosアリアドス', + name: 'Ariados', + id: 168, + generation: 2, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Inner Focus', 'Infiltrator'], + attack: 90, + classfication: 'Bat Pokémon', + defense: 80, + hp: 85, + japaneseName: 'Crobatクロバット', + name: 'Crobat', + id: 169, + generation: 2, + isLegendary: false, + types: ['poison', 'flying'] + }, + { + abilities: ['Volt Absorb', 'Illuminate', 'Water Absorb'], + attack: 38, + classfication: 'Angler Pokémon', + defense: 38, + hp: 75, + japaneseName: 'Chonchieチョンチー', + name: 'Chinchou', + id: 170, + generation: 2, + isLegendary: false, + types: ['water', 'electric'] + }, + { + abilities: ['Volt Absorb', 'Illuminate', 'Water Absorb'], + attack: 58, + classfication: 'Light Pokémon', + defense: 58, + hp: 125, + japaneseName: 'Lanternランターン', + name: 'Lanturn', + id: 171, + generation: 2, + isLegendary: false, + types: ['water', 'electric'] + }, + { + abilities: ['Static', 'Lightningrod'], + attack: 40, + classfication: 'Tiny Mouse Pokémon', + defense: 15, + hp: 20, + japaneseName: 'Pichuピチュー', + name: 'Pichu', + id: 172, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Cute Charm', 'Magic Guard', 'Friend Guard'], + attack: 25, + classfication: 'Star Shape Pokémon', + defense: 28, + hp: 50, + japaneseName: 'Pyピィ', + name: 'Cleffa', + id: 173, + generation: 2, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Cute Charm', 'Competitive', 'Friend Guard'], + attack: 30, + classfication: 'Balloon Pokémon', + defense: 15, + hp: 90, + japaneseName: 'Pupurinププリン', + name: 'Igglybuff', + id: 174, + generation: 2, + isLegendary: false, + types: ['normal', 'fairy'] + }, + { + abilities: ['Hustle', 'Serene Grace', 'Super Luck'], + attack: 20, + classfication: 'Spike Ball Pokémon', + defense: 65, + hp: 35, + japaneseName: 'Togepyトゲピー', + name: 'Togepi', + id: 175, + generation: 2, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Hustle', 'Serene Grace', 'Super Luck'], + attack: 40, + classfication: 'Happiness Pokémon', + defense: 85, + hp: 55, + japaneseName: 'Togechickトゲチック', + name: 'Togetic', + id: 176, + generation: 2, + isLegendary: false, + types: ['fairy', 'flying'] + }, + { + abilities: ['Synchronize', 'Early Bird', 'Magic Bounce'], + attack: 50, + classfication: 'Little Bird Pokémon', + defense: 45, + hp: 40, + japaneseName: 'Natyネイティ', + name: 'Natu', + id: 177, + generation: 2, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Synchronize', 'Early Bird', 'Magic Bounce'], + attack: 75, + classfication: 'Mystic Pokémon', + defense: 70, + hp: 65, + japaneseName: 'Natioネイティオ', + name: 'Xatu', + id: 178, + generation: 2, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Static', 'Plus'], + attack: 40, + classfication: 'Wool Pokémon', + defense: 40, + hp: 55, + japaneseName: 'Merriepメリープ', + name: 'Mareep', + id: 179, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Static', 'Plus'], + attack: 55, + classfication: 'Wool Pokémon', + defense: 55, + hp: 70, + japaneseName: 'Mokokoモココ', + name: 'Flaaffy', + id: 180, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Static', 'Plus'], + attack: 95, + classfication: 'Light Pokémon', + defense: 105, + hp: 90, + japaneseName: 'Denryuデンリュウ', + name: 'Ampharos', + id: 181, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Chlorophyll', 'Healer'], + attack: 80, + classfication: 'Flower Pokémon', + defense: 95, + hp: 75, + japaneseName: 'Kireihanaキレイハナ', + name: 'Bellossom', + id: 182, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], + attack: 20, + classfication: 'Aquamouse Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Marilマリル', + name: 'Marill', + id: 183, + generation: 2, + isLegendary: false, + types: ['water', 'fairy'] + }, + { + abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], + attack: 50, + classfication: 'Aquarabbit Pokémon', + defense: 80, + hp: 100, + japaneseName: 'Marilliマリルリ', + name: 'Azumarill', + id: 184, + generation: 2, + isLegendary: false, + types: ['water', 'fairy'] + }, + { + abilities: ['Sturdy', 'Rock Head', 'Rattled'], + attack: 100, + classfication: 'Imitation Pokémon', + defense: 115, + hp: 70, + japaneseName: 'Usokkieウソッキー', + name: 'Sudowoodo', + id: 185, + generation: 2, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Water Absorb', 'Damp', 'Drizzle'], + attack: 75, + classfication: 'Frog Pokémon', + defense: 75, + hp: 90, + japaneseName: 'Nyorotonoニョロトノ', + name: 'Politoed', + id: 186, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], + attack: 35, + classfication: 'Cottonweed Pokémon', + defense: 40, + hp: 35, + japaneseName: 'Haneccoハネッコ', + name: 'Hoppip', + id: 187, + generation: 2, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], + attack: 45, + classfication: 'Cottonweed Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Popoccoポポッコ', + name: 'Skiploom', + id: 188, + generation: 2, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], + attack: 55, + classfication: 'Cottonweed Pokémon', + defense: 70, + hp: 75, + japaneseName: 'Wataccoワタッコ', + name: 'Jumpluff', + id: 189, + generation: 2, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Run Away', 'Pickup', 'Skill Link'], + attack: 70, + classfication: 'Long Tail Pokémon', + defense: 55, + hp: 55, + japaneseName: 'Eipamエイパム', + name: 'Aipom', + id: 190, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Chlorophyll', 'Solar Power', 'Early Bird'], + attack: 30, + classfication: 'Seed Pokémon', + defense: 30, + hp: 30, + japaneseName: 'Himanutsヒマナッツ', + name: 'Sunkern', + id: 191, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Chlorophyll', 'Solar Power', 'Early Bird'], + attack: 75, + classfication: 'Sun Pokémon', + defense: 55, + hp: 75, + japaneseName: 'Kimawariキマワリ', + name: 'Sunflora', + id: 192, + generation: 2, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Speed Boost', 'Compoundeyes', 'Frisk'], + attack: 65, + classfication: 'Clear Wing Pokémon', + defense: 45, + hp: 65, + japaneseName: 'Yanyanmaヤンヤンマ', + name: 'Yanma', + id: 193, + generation: 2, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Damp', 'Water Absorb', 'Unaware'], + attack: 45, + classfication: 'Water Fish Pokémon', + defense: 45, + hp: 55, + japaneseName: 'Upahウパー', + name: 'Wooper', + id: 194, + generation: 2, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Damp', 'Water Absorb', 'Unaware'], + attack: 85, + classfication: 'Water Fish Pokémon', + defense: 85, + hp: 95, + japaneseName: 'Nuohヌオー', + name: 'Quagsire', + id: 195, + generation: 2, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Synchronize', 'Magic Bounce'], + attack: 65, + classfication: 'Sun Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Eifieエーフィ', + name: 'Espeon', + id: 196, + generation: 2, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Synchronize', 'Inner Focus'], + attack: 65, + classfication: 'Moonlight Pokémon', + defense: 110, + hp: 95, + japaneseName: 'Blackyブラッキー', + name: 'Umbreon', + id: 197, + generation: 2, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Insomnia', 'Super Luck', 'Prankster'], + attack: 85, + classfication: 'Darkness Pokémon', + defense: 42, + hp: 60, + japaneseName: 'Yamikarasuヤミカラス', + name: 'Murkrow', + id: 198, + generation: 2, + isLegendary: false, + types: ['dark', 'flying'] + }, + { + abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], + attack: 75, + classfication: 'Royal Pokémon', + defense: 80, + hp: 95, + japaneseName: 'Yadokingヤドキング', + name: 'Slowking', + id: 199, + generation: 2, + isLegendary: false, + types: ['water', 'psychic'] + }, + { + abilities: ['Levitate'], + attack: 60, + classfication: 'Screech Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Mumaムウマ', + name: 'Misdreavus', + id: 200, + generation: 2, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Levitate'], + attack: 72, + classfication: 'Symbol Pokémon', + defense: 48, + hp: 48, + japaneseName: 'Unknownアンノーン', + name: 'Unown', + id: 201, + generation: 2, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Shadow Tag', 'Telepathy'], + attack: 33, + classfication: 'Patient Pokémon', + defense: 58, + hp: 190, + japaneseName: 'Sonansソーナンス', + name: 'Wobbuffet', + id: 202, + generation: 2, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Inner Focus', 'Early Bird', 'Sap Sipper'], + attack: 80, + classfication: 'Long Neck Pokémon', + defense: 65, + hp: 70, + japaneseName: 'Kirinrikiキリンリキ', + name: 'Girafarig', + id: 203, + generation: 2, + isLegendary: false, + types: ['normal', 'psychic'] + }, + { + abilities: ['Sturdy', 'Overcoat'], + attack: 65, + classfication: 'Bagworm Pokémon', + defense: 90, + hp: 50, + japaneseName: 'Kunugidamaクヌギダマ', + name: 'Pineco', + id: 204, + generation: 2, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Sturdy', 'Overcoat'], + attack: 90, + classfication: 'Bagworm Pokémon', + defense: 140, + hp: 75, + japaneseName: 'Foretosフォレトス', + name: 'Forretress', + id: 205, + generation: 2, + isLegendary: false, + types: ['bug', 'steel'] + }, + { + abilities: ['Serene Grace', 'Run Away', 'Rattled'], + attack: 70, + classfication: 'Land Snake Pokémon', + defense: 70, + hp: 100, + japaneseName: 'Nokocchiノコッチ', + name: 'Dunsparce', + id: 206, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Hyper Cutter', 'Sand Veil', 'Immunity'], + attack: 75, + classfication: 'Flyscorpion Pokémon', + defense: 105, + hp: 65, + japaneseName: 'Gligerグライガー', + name: 'Gligar', + id: 207, + generation: 2, + isLegendary: false, + types: ['ground', 'flying'] + }, + { + abilities: ['Rock Head', 'Sturdy', 'Sheer Force'], + attack: 125, + classfication: 'Iron Snake Pokémon', + defense: 230, + hp: 75, + japaneseName: 'Haganeilハガネール', + name: 'Steelix', + id: 208, + generation: 2, + isLegendary: false, + types: ['steel', 'ground'] + }, + { + abilities: ['Intimidate', 'Run Away', 'Rattled'], + attack: 80, + classfication: 'Fairy Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Buluブルー', + name: 'Snubbull', + id: 209, + generation: 2, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Intimidate', 'Quick Feet', 'Rattled'], + attack: 120, + classfication: 'Fairy Pokémon', + defense: 75, + hp: 90, + japaneseName: 'Granbuluグランブル', + name: 'Granbull', + id: 210, + generation: 2, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Poison Point', 'Swift Swim', 'Intimidate'], + attack: 95, + classfication: 'Balloon Pokémon', + defense: 85, + hp: 65, + japaneseName: 'Harysenハリーセン', + name: 'Qwilfish', + id: 211, + generation: 2, + isLegendary: false, + types: ['water', 'poison'] + }, + { + abilities: ['Swarm', 'Technician', 'Light Metal'], + attack: 150, + classfication: 'Pincer Pokémon', + defense: 140, + hp: 70, + japaneseName: 'Hassamハッサム', + name: 'Scizor', + id: 212, + generation: 2, + isLegendary: false, + types: ['bug', 'steel'] + }, + { + abilities: ['Sturdy', 'Gluttony', 'Contrary'], + attack: 10, + classfication: 'Mold Pokémon', + defense: 230, + hp: 20, + japaneseName: 'Tsubotsuboツボツボ', + name: 'Shuckle', + id: 213, + generation: 2, + isLegendary: false, + types: ['bug', 'rock'] + }, + { + abilities: ['Swarm', 'Guts', 'Moxie'], + attack: 185, + classfication: 'Singlehorn Pokémon', + defense: 115, + hp: 80, + japaneseName: 'Heracrosヘラクロス', + name: 'Heracross', + id: 214, + generation: 2, + isLegendary: false, + types: ['bug', 'fighting'] + }, + { + abilities: ['Inner Focus', 'Keen Eye', 'Pickpocket'], + attack: 95, + classfication: 'Sharp Claw Pokémon', + defense: 55, + hp: 55, + japaneseName: 'Nyulaニューラ', + name: 'Sneasel', + id: 215, + generation: 2, + isLegendary: false, + types: ['dark', 'ice'] + }, + { + abilities: ['Pickup', 'Quick Feet', 'Honey Gather'], + attack: 80, + classfication: 'Little Bear Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Himegumaヒメグマ', + name: 'Teddiursa', + id: 216, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Guts', 'Quick Feet', 'Unnerve'], + attack: 130, + classfication: 'Hibernator Pokémon', + defense: 75, + hp: 90, + japaneseName: 'Ringumaリングマ', + name: 'Ursaring', + id: 217, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Magma Armor', 'Flame Body', 'Weak Armor'], + attack: 40, + classfication: 'Lava Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Magmagマグマッグ', + name: 'Slugma', + id: 218, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Magma Armor', 'Flame Body', 'Weak Armor'], + attack: 50, + classfication: 'Lava Pokémon', + defense: 120, + hp: 60, + japaneseName: 'Magcargotマグカルゴ', + name: 'Magcargo', + id: 219, + generation: 2, + isLegendary: false, + types: ['fire', 'rock'] + }, + { + abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], + attack: 50, + classfication: 'Pig Pokémon', + defense: 40, + hp: 50, + japaneseName: 'Urimooウリムー', + name: 'Swinub', + id: 220, + generation: 2, + isLegendary: false, + types: ['ice', 'ground'] + }, + { + abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], + attack: 100, + classfication: 'Swine Pokémon', + defense: 80, + hp: 100, + japaneseName: 'Inomooイノムー', + name: 'Piloswine', + id: 221, + generation: 2, + isLegendary: false, + types: ['ice', 'ground'] + }, + { + abilities: ['Hustle', 'Natural Cure', 'Regenerator'], + attack: 55, + classfication: 'Coral Pokémon', + defense: 95, + hp: 65, + japaneseName: 'Sunnygoサニーゴ', + name: 'Corsola', + id: 222, + generation: 2, + isLegendary: false, + types: ['water', 'rock'] + }, + { + abilities: ['Hustle', 'Sniper', 'Moody'], + attack: 65, + classfication: 'Jet Pokémon', + defense: 35, + hp: 35, + japaneseName: 'Teppouoテッポウオ', + name: 'Remoraid', + id: 223, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Suction Cups', 'Sniper', 'Moody'], + attack: 105, + classfication: 'Jet Pokémon', + defense: 75, + hp: 75, + japaneseName: 'Okutankオクタン', + name: 'Octillery', + id: 224, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Vital Spirit', 'Hustle', 'Insomnia'], + attack: 55, + classfication: 'Delivery Pokémon', + defense: 45, + hp: 45, + japaneseName: 'Delibirdデリバード', + name: 'Delibird', + id: 225, + generation: 2, + isLegendary: false, + types: ['ice', 'flying'] + }, + { + abilities: ['Swift Swim', 'Water Absorb', 'Water Veil'], + attack: 40, + classfication: 'Kite Pokémon', + defense: 70, + hp: 85, + japaneseName: 'Mantainマンタイン', + name: 'Mantine', + id: 226, + generation: 2, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Keen Eye', 'Sturdy', 'Weak Armor'], + attack: 80, + classfication: 'Armor Bird Pokémon', + defense: 140, + hp: 65, + japaneseName: 'Airmdエアームド', + name: 'Skarmory', + id: 227, + generation: 2, + isLegendary: false, + types: ['steel', 'flying'] + }, + { + abilities: ['Early Bird', 'Flash Fire', 'Unnerve'], + attack: 60, + classfication: 'Dark Pokémon', + defense: 30, + hp: 45, + japaneseName: 'Delvilデルビル', + name: 'Houndour', + id: 228, + generation: 2, + isLegendary: false, + types: ['dark', 'fire'] + }, + { + abilities: ['Early Bird', 'Flash Fire', 'Unnerve'], + attack: 90, + classfication: 'Dark Pokémon', + defense: 90, + hp: 75, + japaneseName: 'Hellgarヘルガー', + name: 'Houndoom', + id: 229, + generation: 2, + isLegendary: false, + types: ['dark', 'fire'] + }, + { + abilities: ['Swift Swim', 'Sniper', 'Damp'], + attack: 95, + classfication: 'Dragon Pokémon', + defense: 95, + hp: 75, + japaneseName: 'Kingdraキングドラ', + name: 'Kingdra', + id: 230, + generation: 2, + isLegendary: false, + types: ['water', 'dragon'] + }, + { + abilities: ['Pickup', 'Sand Veil'], + attack: 60, + classfication: 'Long Nose Pokémon', + defense: 60, + hp: 90, + japaneseName: 'Gomazouゴマゾウ', + name: 'Phanpy', + id: 231, + generation: 2, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Sturdy', 'Sand Veil'], + attack: 120, + classfication: 'Armor Pokémon', + defense: 120, + hp: 90, + japaneseName: 'Donfanドンファン', + name: 'Donphan', + id: 232, + generation: 2, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Trace', 'Download', 'Analytic'], + attack: 80, + classfication: 'Virtual Pokémon', + defense: 90, + hp: 85, + japaneseName: 'Porygon2ポリゴン2', + name: 'Porygon2', + id: 233, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Intimidate', 'Frisk', 'Sap Sipper'], + attack: 95, + classfication: 'Big Horn Pokémon', + defense: 62, + hp: 73, + japaneseName: 'Odoshishiオドシシ', + name: 'Stantler', + id: 234, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Own Tempo', 'Technician', 'Moody'], + attack: 20, + classfication: 'Painter Pokémon', + defense: 35, + hp: 55, + japaneseName: 'Dobleドーブル', + name: 'Smeargle', + id: 235, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Guts', 'Steadfast', 'Vital Spirit'], + attack: 35, + classfication: 'Scuffle Pokémon', + defense: 35, + hp: 35, + japaneseName: 'Balkieバルキー', + name: 'Tyrogue', + id: 236, + generation: 2, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Intimidate', 'Technician', 'Steadfast'], + attack: 95, + classfication: 'Handstand Pokémon', + defense: 95, + hp: 50, + japaneseName: 'Kapoererカポエラー', + name: 'Hitmontop', + id: 237, + generation: 2, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Oblivious', 'Forewarn', 'Hydration'], + attack: 30, + classfication: 'Kiss Pokémon', + defense: 15, + hp: 45, + japaneseName: 'Muchulムチュール', + name: 'Smoochum', + id: 238, + generation: 2, + isLegendary: false, + types: ['ice', 'psychic'] + }, + { + abilities: ['Static', 'Vital Spirit'], + attack: 63, + classfication: 'Electric Pokémon', + defense: 37, + hp: 45, + japaneseName: 'Elekidエレキッド', + name: 'Elekid', + id: 239, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Flame Body', 'Vital Spirit'], + attack: 75, + classfication: 'Live Coal Pokémon', + defense: 37, + hp: 45, + japaneseName: 'Bubyブビィ', + name: 'Magby', + id: 240, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Thick Fat', 'Scrappy', 'Sap Sipper'], + attack: 80, + classfication: 'Milk Cow Pokémon', + defense: 105, + hp: 95, + japaneseName: 'Miltankミルタンク', + name: 'Miltank', + id: 241, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Natural Cure', 'Serene Grace', 'Healer'], + attack: 10, + classfication: 'Happiness Pokémon', + defense: 10, + hp: 255, + japaneseName: 'Happinasハピナス', + name: 'Blissey', + id: 242, + generation: 2, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Pressure', 'Inner Focus'], + attack: 85, + classfication: 'Thunder Pokémon', + defense: 75, + hp: 90, + japaneseName: 'Raikouライコウ', + name: 'Raikou', + id: 243, + generation: 2, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Pressure', 'Inner Focus'], + attack: 115, + classfication: 'Volcano Pokémon', + defense: 85, + hp: 115, + japaneseName: 'Enteiエンテイ', + name: 'Entei', + id: 244, + generation: 2, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Pressure', 'Inner Focus'], + attack: 75, + classfication: 'Aurora Pokémon', + defense: 115, + hp: 100, + japaneseName: 'Suicuneスイクン', + name: 'Suicune', + id: 245, + generation: 2, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Guts', 'Sand Veil'], + attack: 64, + classfication: 'Rock Skin Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Yogirasヨーギラス', + name: 'Larvitar', + id: 246, + generation: 2, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Shed Skin'], + attack: 84, + classfication: 'Hard Shell Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Sanagirasサナギラス', + name: 'Pupitar', + id: 247, + generation: 2, + isLegendary: false, + types: ['rock', 'ground'] + }, + { + abilities: ['Sand Stream', 'Unnerve'], + attack: 164, + classfication: 'Armor Pokémon', + defense: 150, + hp: 100, + japaneseName: 'Bangirasバンギラス', + name: 'Tyranitar', + id: 248, + generation: 2, + isLegendary: false, + types: ['rock', 'dark'] + }, + { + abilities: ['Pressure', 'Multiscale'], + attack: 90, + classfication: 'Diving Pokémon', + defense: 130, + hp: 106, + japaneseName: 'Lugiaルギア', + name: 'Lugia', + id: 249, + generation: 2, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Pressure', 'Regenerator'], + attack: 130, + classfication: 'Rainbow Pokémon', + defense: 90, + hp: 106, + japaneseName: 'Hououホウオウ', + name: 'Ho-Oh', + id: 250, + generation: 2, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Natural Cure'], + attack: 100, + classfication: 'Time Travel Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Celebiセレビィ', + name: 'Celebi', + id: 251, + generation: 2, + isLegendary: false, + types: ['psychic', 'grass'] + }, + { + abilities: ['Overgrow', 'Unburden'], + attack: 45, + classfication: 'Wood Gecko Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Kimoriキモリ', + name: 'Treecko', + id: 252, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Unburden'], + attack: 65, + classfication: 'Wood Gecko Pokémon', + defense: 45, + hp: 50, + japaneseName: 'Juptileジュプトル', + name: 'Grovyle', + id: 253, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Unburden'], + attack: 110, + classfication: 'Forest Pokémon', + defense: 75, + hp: 70, + japaneseName: 'Jukainジュカイン', + name: 'Sceptile', + id: 254, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Blaze', 'Speed Boost'], + attack: 60, + classfication: 'Chick Pokémon', + defense: 40, + hp: 45, + japaneseName: 'Achamoアチャモ', + name: 'Torchic', + id: 255, + generation: 3, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Speed Boost'], + attack: 85, + classfication: 'Young Fowl Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Wakasyamoワカシャモ', + name: 'Combusken', + id: 256, + generation: 3, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Blaze', 'Speed Boost'], + attack: 160, + classfication: 'Blaze Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Bursyamoバシャーモ', + name: 'Blaziken', + id: 257, + generation: 3, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Torrent', 'Damp'], + attack: 70, + classfication: 'Mud Fish Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Mizugorouミズゴロウ', + name: 'Mudkip', + id: 258, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Damp'], + attack: 85, + classfication: 'Mud Fish Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Numacrawヌマクロー', + name: 'Marshtomp', + id: 259, + generation: 3, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Torrent', 'Damp'], + attack: 150, + classfication: 'Mud Fish Pokémon', + defense: 110, + hp: 100, + japaneseName: 'Laglargeラグラージ', + name: 'Swampert', + id: 260, + generation: 3, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Run Away', 'Quick Feet', 'Rattled'], + attack: 55, + classfication: 'Bite Pokémon', + defense: 35, + hp: 35, + japaneseName: 'Pochienaポチエナ', + name: 'Poochyena', + id: 261, + generation: 3, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Intimidate', 'Quick Feet', 'Moxie'], + attack: 90, + classfication: 'Bite Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Graenaグラエナ', + name: 'Mightyena', + id: 262, + generation: 3, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Pickup', 'Gluttony', 'Quick Feet'], + attack: 30, + classfication: 'Tiny Racoon Pokémon', + defense: 41, + hp: 38, + japaneseName: 'Jiguzagumaジグザグマ', + name: 'Zigzagoon', + id: 263, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Pickup', 'Gluttony', 'Quick Feet'], + attack: 70, + classfication: 'Rush Pokémon', + defense: 61, + hp: 78, + japaneseName: 'Massugumaマッスグマ', + name: 'Linoone', + id: 264, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Shield Dust', 'Run Away'], + attack: 45, + classfication: 'Worm Pokémon', + defense: 35, + hp: 45, + japaneseName: 'Kemussoケムッソ', + name: 'Wurmple', + id: 265, + generation: 3, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Shed Skin'], + attack: 35, + classfication: 'Cocoon Pokémon', + defense: 55, + hp: 50, + japaneseName: 'Karasalisカラサリス', + name: 'Silcoon', + id: 266, + generation: 3, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Swarm', 'Rivalry'], + attack: 70, + classfication: 'Butterfly Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Agehuntアゲハント', + name: 'Beautifly', + id: 267, + generation: 3, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Shed Skin'], + attack: 35, + classfication: 'Cocoon Pokémon', + defense: 55, + hp: 50, + japaneseName: 'Mayuldマユルド', + name: 'Cascoon', + id: 268, + generation: 3, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Shield Dust', 'Compoundeyes'], + attack: 50, + classfication: 'Poison Moth Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Dokucaleドクケイル', + name: 'Dustox', + id: 269, + generation: 3, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], + attack: 30, + classfication: 'Water Weed Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Hassbohハスボー', + name: 'Lotad', + id: 270, + generation: 3, + isLegendary: false, + types: ['water', 'grass'] + }, + { + abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], + attack: 50, + classfication: 'Jolly Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Hasubreroハスブレロ', + name: 'Lombre', + id: 271, + generation: 3, + isLegendary: false, + types: ['water', 'grass'] + }, + { + abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], + attack: 70, + classfication: 'Carefree Pokémon', + defense: 70, + hp: 80, + japaneseName: 'Runpappaルンパッパ', + name: 'Ludicolo', + id: 272, + generation: 3, + isLegendary: false, + types: ['water', 'grass'] + }, + { + abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], + attack: 40, + classfication: 'Acorn Pokémon', + defense: 50, + hp: 40, + japaneseName: 'Tanebohタネボー', + name: 'Seedot', + id: 273, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], + attack: 70, + classfication: 'Wily Pokémon', + defense: 40, + hp: 70, + japaneseName: 'Konohanaコノハナ', + name: 'Nuzleaf', + id: 274, + generation: 3, + isLegendary: false, + types: ['grass', 'dark'] + }, + { + abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], + attack: 100, + classfication: 'Wickid Pokémon', + defense: 60, + hp: 90, + japaneseName: 'Dirtengダーテング', + name: 'Shiftry', + id: 275, + generation: 3, + isLegendary: false, + types: ['grass', 'dark'] + }, + { + abilities: ['Guts', 'Scrappy'], + attack: 55, + classfication: 'TinySwallow Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Subameスバメ', + name: 'Taillow', + id: 276, + generation: 3, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Guts', 'Scrappy'], + attack: 85, + classfication: 'Swallow Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Ohsubameオオスバメ', + name: 'Swellow', + id: 277, + generation: 3, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Hydration', 'Rain Dish'], + attack: 30, + classfication: 'Seagull Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Camomeキャモメ', + name: 'Wingull', + id: 278, + generation: 3, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Keen Eye', 'Drizzle', 'Rain Dish'], + attack: 50, + classfication: 'Water Bird Pokémon', + defense: 100, + hp: 60, + japaneseName: 'Pelipperペリッパー', + name: 'Pelipper', + id: 279, + generation: 3, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Synchronize', 'Trace', 'Telepathy'], + attack: 25, + classfication: 'Feeling Pokémon', + defense: 25, + hp: 28, + japaneseName: 'Raltsラルトス', + name: 'Ralts', + id: 280, + generation: 3, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Synchronize', 'Trace', 'Telepathy'], + attack: 35, + classfication: 'Emotion Pokémon', + defense: 35, + hp: 38, + japaneseName: 'Kirliaキルリア', + name: 'Kirlia', + id: 281, + generation: 3, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Synchronize', 'Trace', 'Telepathy'], + attack: 85, + classfication: 'Embrace Pokémon', + defense: 65, + hp: 68, + japaneseName: 'Sirnightサーナイト', + name: 'Gardevoir', + id: 282, + generation: 3, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Swift Swim', 'Rain Dish'], + attack: 30, + classfication: 'Pond Skater Pokémon', + defense: 32, + hp: 40, + japaneseName: 'Ametamaアメタマ', + name: 'Surskit', + id: 283, + generation: 3, + isLegendary: false, + types: ['bug', 'water'] + }, + { + abilities: ['Intimidate', 'Unnerve'], + attack: 60, + classfication: 'Eyeball Pokémon', + defense: 62, + hp: 70, + japaneseName: 'Amemothアメモース', + name: 'Masquerain', + id: 284, + generation: 3, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Effect Spore', 'Poison Heal', 'Quick Feet'], + attack: 40, + classfication: 'Mushroom Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Kinococoキノココ', + name: 'Shroomish', + id: 285, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Effect Spore', 'Poison Heal', 'Technician'], + attack: 130, + classfication: 'Mushroom Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Kinogassaキノガッサ', + name: 'Breloom', + id: 286, + generation: 3, + isLegendary: false, + types: ['grass', 'fighting'] + }, + { + abilities: ['Truant'], + attack: 60, + classfication: 'Slacker Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Namakeroナマケロ', + name: 'Slakoth', + id: 287, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Vital Spirit'], + attack: 80, + classfication: 'Wild Monkey Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Yarukimonoヤルキモノ', + name: 'Vigoroth', + id: 288, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Truant'], + attack: 160, + classfication: 'Lazy Pokémon', + defense: 100, + hp: 150, + japaneseName: 'Kekkingケッキング', + name: 'Slaking', + id: 289, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Compoundeyes', 'Run Away'], + attack: 45, + classfication: 'Trainee Pokémon', + defense: 90, + hp: 31, + japaneseName: 'Tutininツチニン', + name: 'Nincada', + id: 290, + generation: 3, + isLegendary: false, + types: ['bug', 'ground'] + }, + { + abilities: ['Speed Boost', 'Infiltrator'], + attack: 90, + classfication: 'Ninja Pokémon', + defense: 45, + hp: 61, + japaneseName: 'Tekkaninテッカニン', + name: 'Ninjask', + id: 291, + generation: 3, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Wonder Guard'], + attack: 90, + classfication: 'Shed Pokémon', + defense: 45, + hp: 1, + japaneseName: 'Nukeninヌケニン', + name: 'Shedinja', + id: 292, + generation: 3, + isLegendary: false, + types: ['bug', 'ghost'] + }, + { + abilities: ['Soundproof', 'Rattled'], + attack: 51, + classfication: 'Whisper Pokémon', + defense: 23, + hp: 64, + japaneseName: 'Gonyonyoゴニョニョ', + name: 'Whismur', + id: 293, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Soundproof', 'Scrappy'], + attack: 71, + classfication: 'Big Voice Pokémon', + defense: 43, + hp: 84, + japaneseName: 'Dogohmbドゴーム', + name: 'Loudred', + id: 294, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Soundproof', 'Scrappy'], + attack: 91, + classfication: 'Loud Noise Pokémon', + defense: 63, + hp: 104, + japaneseName: 'Bakuongバクオング', + name: 'Exploud', + id: 295, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Thick Fat', 'Guts', 'Sheer Force'], + attack: 60, + classfication: 'Guts Pokémon', + defense: 30, + hp: 72, + japaneseName: 'Makunoshitaマクノシタ', + name: 'Makuhita', + id: 296, + generation: 3, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Thick Fat', 'Guts', 'Sheer Force'], + attack: 120, + classfication: 'Arm Thrust Pokémon', + defense: 60, + hp: 144, + japaneseName: 'Hariteyamaハリテヤマ', + name: 'Hariyama', + id: 297, + generation: 3, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], + attack: 20, + classfication: 'Polka Dot Pokémon', + defense: 40, + hp: 50, + japaneseName: 'Ruririルリリ', + name: 'Azurill', + id: 298, + generation: 3, + isLegendary: false, + types: ['normal', 'fairy'] + }, + { + abilities: ['Sturdy', 'Magnet Pull', 'Sand Force'], + attack: 45, + classfication: 'Compass Pokémon', + defense: 135, + hp: 30, + japaneseName: 'Nosepassノズパス', + name: 'Nosepass', + id: 299, + generation: 3, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Cute Charm', 'Normalize', 'Wonder Skin '], + attack: 45, + classfication: 'Kitten Pokémon', + defense: 45, + hp: 50, + japaneseName: 'Enecoエネコ', + name: 'Skitty', + id: 300, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Cute Charm', 'Normalize', 'Wonder Skin '], + attack: 65, + classfication: 'Prim Pokémon', + defense: 65, + hp: 70, + japaneseName: 'Enekororoエネコロロ', + name: 'Delcatty', + id: 301, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Keen Eye', 'Stall', 'Prankster'], + attack: 85, + classfication: 'Darkness Pokémon', + defense: 125, + hp: 50, + japaneseName: 'Yamiramiヤミラミ', + name: 'Sableye', + id: 302, + generation: 3, + isLegendary: false, + types: ['dark', 'ghost'] + }, + { + abilities: ['Hyper Cutter', 'Intimidate', 'Sheer Force'], + attack: 105, + classfication: 'Deceiver Pokémon', + defense: 125, + hp: 50, + japaneseName: 'Kucheatクチート', + name: 'Mawile', + id: 303, + generation: 3, + isLegendary: false, + types: ['steel', 'fairy'] + }, + { + abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], + attack: 70, + classfication: 'Iron Armor Pokémon', + defense: 100, + hp: 50, + japaneseName: 'Cokodoraココドラ', + name: 'Aron', + id: 304, + generation: 3, + isLegendary: false, + types: ['steel', 'rock'] + }, + { + abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], + attack: 90, + classfication: 'Iron Armor Pokémon', + defense: 140, + hp: 60, + japaneseName: 'Kodoraコドラ', + name: 'Lairon', + id: 305, + generation: 3, + isLegendary: false, + types: ['steel', 'rock'] + }, + { + abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], + attack: 140, + classfication: 'Iron Armor Pokémon', + defense: 230, + hp: 70, + japaneseName: 'Bossgodoraボスゴドラ', + name: 'Aggron', + id: 306, + generation: 3, + isLegendary: false, + types: ['steel', 'rock'] + }, + { + abilities: ['Pure Power', 'Telepathy'], + attack: 40, + classfication: 'Meditate Pokémon', + defense: 55, + hp: 30, + japaneseName: 'Asananアサナン', + name: 'Meditite', + id: 307, + generation: 3, + isLegendary: false, + types: ['fighting', 'psychic'] + }, + { + abilities: ['Pure Power', 'Telepathy'], + attack: 100, + classfication: 'Meditate Pokémon', + defense: 85, + hp: 60, + japaneseName: 'Charemチャーレム', + name: 'Medicham', + id: 308, + generation: 3, + isLegendary: false, + types: ['fighting', 'psychic'] + }, + { + abilities: ['Static', 'Lightningrod', 'Minus'], + attack: 45, + classfication: 'Lightning Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Rakuraiラクライ', + name: 'Electrike', + id: 309, + generation: 3, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Static', 'Lightningrod', 'Minus'], + attack: 75, + classfication: 'Discharge Pokémon', + defense: 80, + hp: 70, + japaneseName: 'Livoltライボルト', + name: 'Manectric', + id: 310, + generation: 3, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Plus', 'Lightningrod'], + attack: 50, + classfication: 'Cheering Pokémon', + defense: 40, + hp: 60, + japaneseName: 'Prasleプラスル', + name: 'Plusle', + id: 311, + generation: 3, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Minus', 'Volt Absorb'], + attack: 40, + classfication: 'Cheering Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Minunマイナン', + name: 'Minun', + id: 312, + generation: 3, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Illuminate', 'Swarm', 'Prankster'], + attack: 73, + classfication: 'Firefly Pokémon', + defense: 75, + hp: 65, + japaneseName: 'Barubeatバルビート', + name: 'Volbeat', + id: 313, + generation: 3, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Oblivious', 'Tinted Lens', 'Prankster'], + attack: 47, + classfication: 'Firefly Pokémon', + defense: 75, + hp: 65, + japaneseName: 'Illumiseイルミーゼ', + name: 'Illumise', + id: 314, + generation: 3, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Natural Cure', 'Poison Point', 'Leaf Guard'], + attack: 60, + classfication: 'Thorn Pokémon', + defense: 45, + hp: 50, + japaneseName: 'Roseliaロゼリア', + name: 'Roselia', + id: 315, + generation: 3, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Liquid Ooze', 'Sticky Hold', 'Gluttony'], + attack: 43, + classfication: 'Stomach Pokémon', + defense: 53, + hp: 70, + japaneseName: 'Gokulinゴクリン', + name: 'Gulpin', + id: 316, + generation: 3, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Liquid Ooze', 'Sticky Hold', 'Gluttony'], + attack: 73, + classfication: 'Poison Bag Pokémon', + defense: 83, + hp: 100, + japaneseName: 'Marunoomマルノーム', + name: 'Swalot', + id: 317, + generation: 3, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Rough Skin', 'Speed Boost'], + attack: 90, + classfication: 'Savage Pokémon', + defense: 20, + hp: 45, + japaneseName: 'Kibanhaキバニア', + name: 'Carvanha', + id: 318, + generation: 3, + isLegendary: false, + types: ['water', 'dark'] + }, + { + abilities: ['Rough Skin', 'Speed Boost'], + attack: 140, + classfication: 'Brutal Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Samehaderサメハダー', + name: 'Sharpedo', + id: 319, + generation: 3, + isLegendary: false, + types: ['water', 'dark'] + }, + { + abilities: ['Water Veil', 'Oblivious', 'Pressure'], + attack: 70, + classfication: 'Ball Whale Pokémon', + defense: 35, + hp: 130, + japaneseName: 'Hoerukoホエルコ', + name: 'Wailmer', + id: 320, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Water Veil', 'Oblivious', 'Pressure'], + attack: 90, + classfication: 'Float Whale Pokémon', + defense: 45, + hp: 170, + japaneseName: 'Whalohホエルオー', + name: 'Wailord', + id: 321, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Oblivious', 'Simple', 'Own Tempo'], + attack: 60, + classfication: 'Numb Pokémon', + defense: 40, + hp: 60, + japaneseName: 'Donmelドンメル', + name: 'Numel', + id: 322, + generation: 3, + isLegendary: false, + types: ['fire', 'ground'] + }, + { + abilities: ['Magma Armor', 'Solid Rock', 'Anger Point'], + attack: 120, + classfication: 'Eruption Pokémon', + defense: 100, + hp: 70, + japaneseName: 'Bakuudaバクーダ', + name: 'Camerupt', + id: 323, + generation: 3, + isLegendary: false, + types: ['fire', 'ground'] + }, + { + abilities: ['White Smoke', 'Drought', 'Shell Armor'], + attack: 85, + classfication: 'Coal Pokémon', + defense: 140, + hp: 70, + japaneseName: 'Cotoiseコータス', + name: 'Torkoal', + id: 324, + generation: 3, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Thick Fat', 'Own Tempo', 'Gluttony'], + attack: 25, + classfication: 'Bounce Pokémon', + defense: 35, + hp: 60, + japaneseName: 'Banebooバネブー', + name: 'Spoink', + id: 325, + generation: 3, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Thick Fat', 'Own Tempo', 'Gluttony'], + attack: 45, + classfication: 'Manipulate Pokémon', + defense: 65, + hp: 80, + japaneseName: 'Boopigブーピッグ', + name: 'Grumpig', + id: 326, + generation: 3, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Own Tempo', 'Tangled Feet', 'Contrary'], + attack: 60, + classfication: 'Spot Panda Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Patcheelパッチール', + name: 'Spinda', + id: 327, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Hyper Cutter', 'Arena Trap', 'Sheer Force'], + attack: 100, + classfication: 'Ant Pit Pokémon', + defense: 45, + hp: 45, + japaneseName: 'Nuckrarナックラー', + name: 'Trapinch', + id: 328, + generation: 3, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Levitate'], + attack: 70, + classfication: 'Vibration Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Vibravaビブラーバ', + name: 'Vibrava', + id: 329, + generation: 3, + isLegendary: false, + types: ['ground', 'dragon'] + }, + { + abilities: ['Levitate'], + attack: 100, + classfication: 'Mystic Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Flygonフライゴン', + name: 'Flygon', + id: 330, + generation: 3, + isLegendary: false, + types: ['ground', 'dragon'] + }, + { + abilities: ['Sand Veil', 'Water Absorb'], + attack: 85, + classfication: 'Cactus Pokémon', + defense: 40, + hp: 50, + japaneseName: 'Saboneaサボネア', + name: 'Cacnea', + id: 331, + generation: 3, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Sand Veil', 'Water Absorb'], + attack: 115, + classfication: 'Scarecrow Pokémon', + defense: 60, + hp: 70, + japaneseName: 'Noctusノクタス', + name: 'Cacturne', + id: 332, + generation: 3, + isLegendary: false, + types: ['grass', 'dark'] + }, + { + abilities: ['Natural Cure', 'Cloud Nine'], + attack: 40, + classfication: 'Cotton Bird Pokémon', + defense: 60, + hp: 45, + japaneseName: 'Tylttoチルット', + name: 'Swablu', + id: 333, + generation: 3, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Natural Cure', 'Cloud Nine'], + attack: 110, + classfication: 'Humming Pokémon', + defense: 110, + hp: 75, + japaneseName: 'Tyltalisチルタリス', + name: 'Altaria', + id: 334, + generation: 3, + isLegendary: false, + types: ['dragon', 'flying'] + }, + { + abilities: ['Immunity', 'Toxic Boost'], + attack: 115, + classfication: 'Cat Ferret Pokémon', + defense: 60, + hp: 73, + japaneseName: 'Zangooseザングース', + name: 'Zangoose', + id: 335, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Shed Skin', 'Infiltrator'], + attack: 100, + classfication: 'Fang Snake Pokémon', + defense: 60, + hp: 73, + japaneseName: 'Habunakeハブネーク', + name: 'Seviper', + id: 336, + generation: 3, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Levitate'], + attack: 55, + classfication: 'Meteorite Pokémon', + defense: 65, + hp: 90, + japaneseName: 'Lunatoneルナトーン', + name: 'Lunatone', + id: 337, + generation: 3, + isLegendary: false, + types: ['rock', 'psychic'] + }, + { + abilities: ['Levitate'], + attack: 95, + classfication: 'Meteorite Pokémon', + defense: 85, + hp: 90, + japaneseName: 'Solrockソルロック', + name: 'Solrock', + id: 338, + generation: 3, + isLegendary: false, + types: ['rock', 'psychic'] + }, + { + abilities: ['Oblivious', 'Anticipation', 'Hydration'], + attack: 48, + classfication: 'Whiskers Pokémon', + defense: 43, + hp: 50, + japaneseName: 'Dojoachドジョッチ', + name: 'Barboach', + id: 339, + generation: 3, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Oblivious', 'Anticipation', 'Hydration'], + attack: 78, + classfication: 'Whiskers Pokémon', + defense: 73, + hp: 110, + japaneseName: 'Namazunナマズン', + name: 'Whiscash', + id: 340, + generation: 3, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Hyper Cutter', 'Shell Armor', 'Adaptability'], + attack: 80, + classfication: 'Ruffian Pokémon', + defense: 65, + hp: 43, + japaneseName: 'Heiganiヘイガニ', + name: 'Corphish', + id: 341, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Hyper Cutter', 'Shell Armor', 'Adaptability'], + attack: 120, + classfication: 'Rogue Pokémon', + defense: 85, + hp: 63, + japaneseName: 'Shizarigerシザリガー', + name: 'Crawdaunt', + id: 342, + generation: 3, + isLegendary: false, + types: ['water', 'dark'] + }, + { + abilities: ['Levitate'], + attack: 40, + classfication: 'Clay Doll Pokémon', + defense: 55, + hp: 40, + japaneseName: 'Yajilonヤジロン', + name: 'Baltoy', + id: 343, + generation: 3, + isLegendary: false, + types: ['ground', 'psychic'] + }, + { + abilities: ['Levitate'], + attack: 70, + classfication: 'Clay Doll Pokémon', + defense: 105, + hp: 60, + japaneseName: 'Nendollネンドール', + name: 'Claydol', + id: 344, + generation: 3, + isLegendary: false, + types: ['ground', 'psychic'] + }, + { + abilities: ['Suction Cups', 'Storm Drain'], + attack: 41, + classfication: 'Sea Lily Pokémon', + defense: 77, + hp: 66, + japaneseName: 'Lilylaリリーラ', + name: 'Lileep', + id: 345, + generation: 3, + isLegendary: false, + types: ['rock', 'grass'] + }, + { + abilities: ['Suction Cups', 'Storm Drain'], + attack: 81, + classfication: 'Barnacle Pokémon', + defense: 97, + hp: 86, + japaneseName: 'Yuradleユレイドル', + name: 'Cradily', + id: 346, + generation: 3, + isLegendary: false, + types: ['rock', 'grass'] + }, + { + abilities: ['Battle Armor', 'Swift Swim'], + attack: 95, + classfication: 'Old Shrimp Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Anopthアノプス', + name: 'Anorith', + id: 347, + generation: 3, + isLegendary: false, + types: ['rock', 'bug'] + }, + { + abilities: ['Battle Armor', 'Swift Swim'], + attack: 125, + classfication: 'Plate Pokémon', + defense: 100, + hp: 75, + japaneseName: 'Armaldoアーマルド', + name: 'Armaldo', + id: 348, + generation: 3, + isLegendary: false, + types: ['rock', 'bug'] + }, + { + abilities: ['Swift Swim', 'Oblivious', 'Adaptability'], + attack: 15, + classfication: 'Fish Pokémon', + defense: 20, + hp: 20, + japaneseName: 'Hinbassヒンバス', + name: 'Feebas', + id: 349, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Marvel Scale', 'Competitive', 'Cute Charm'], + attack: 60, + classfication: 'Tender Pokémon', + defense: 79, + hp: 95, + japaneseName: 'Milokarossミロカロス', + name: 'Milotic', + id: 350, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Forecast'], + attack: 70, + classfication: 'Weather Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Powalenポワルン', + name: 'Castform', + id: 351, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Color Change', 'Protean'], + attack: 90, + classfication: 'Color Swap Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Kakureonカクレオン', + name: 'Kecleon', + id: 352, + generation: 3, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Insomnia', 'Frisk', 'Cursed Body'], + attack: 75, + classfication: 'Puppet Pokémon', + defense: 35, + hp: 44, + japaneseName: 'Kagebouzuカゲボウズ', + name: 'Shuppet', + id: 353, + generation: 3, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Insomnia', 'Frisk', 'Cursed Body'], + attack: 165, + classfication: 'Marionette Pokémon', + defense: 75, + hp: 64, + japaneseName: 'Juppetaジュペッタ', + name: 'Banette', + id: 354, + generation: 3, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Levitate', 'Frisk'], + attack: 40, + classfication: 'Requiem Pokémon', + defense: 90, + hp: 20, + japaneseName: 'Yomawaruヨマワル', + name: 'Duskull', + id: 355, + generation: 3, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Pressure', 'Frisk'], + attack: 70, + classfication: 'Beckon Pokémon', + defense: 130, + hp: 40, + japaneseName: 'Samayouruサマヨール', + name: 'Dusclops', + id: 356, + generation: 3, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Chlorophyll', 'Solar Power', 'Harvest'], + attack: 68, + classfication: 'Fruit Pokémon', + defense: 83, + hp: 99, + japaneseName: 'Tropiusトロピウス', + name: 'Tropius', + id: 357, + generation: 3, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Levitate'], + attack: 50, + classfication: 'Wind Chime Pokémon', + defense: 80, + hp: 75, + japaneseName: 'Chireanチリーン', + name: 'Chimecho', + id: 358, + generation: 3, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Pressure', 'Super Luck', 'Justified'], + attack: 150, + classfication: 'Disaster Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Absolアブソル', + name: 'Absol', + id: 359, + generation: 3, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Shadow Tag', 'Telepathy'], + attack: 23, + classfication: 'Bright Pokémon', + defense: 48, + hp: 95, + japaneseName: 'Sohnanoソーナノ', + name: 'Wynaut', + id: 360, + generation: 3, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Inner Focus', 'Ice Body', 'Moody'], + attack: 50, + classfication: 'Snow Hat Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Yukiwarashiユキワラシ', + name: 'Snorunt', + id: 361, + generation: 3, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Inner Focus', 'Ice Body', 'Moody'], + attack: 120, + classfication: 'Face Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Onigohriオニゴーリ', + name: 'Glalie', + id: 362, + generation: 3, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], + attack: 40, + classfication: 'Clap Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Tamazarashiタマザラシ', + name: 'Spheal', + id: 363, + generation: 3, + isLegendary: false, + types: ['ice', 'water'] + }, + { + abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], + attack: 60, + classfication: 'Ball Roll Pokémon', + defense: 70, + hp: 90, + japaneseName: 'Todogglerトドグラー', + name: 'Sealeo', + id: 364, + generation: 3, + isLegendary: false, + types: ['ice', 'water'] + }, + { + abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], + attack: 80, + classfication: 'Ice Break Pokémon', + defense: 90, + hp: 110, + japaneseName: 'Todoserugaトドゼルガ', + name: 'Walrein', + id: 365, + generation: 3, + isLegendary: false, + types: ['ice', 'water'] + }, + { + abilities: ['Shell Armor', 'Rattled'], + attack: 64, + classfication: 'Bivalve Pokémon', + defense: 85, + hp: 35, + japaneseName: 'Pearluluパールル', + name: 'Clamperl', + id: 366, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Water Veil'], + attack: 104, + classfication: 'Deep Sea Pokémon', + defense: 105, + hp: 55, + japaneseName: 'Huntailハンテール', + name: 'Huntail', + id: 367, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Hydration'], + attack: 84, + classfication: 'South Sea Pokémon', + defense: 105, + hp: 55, + japaneseName: 'Sakurabyssサクラビス', + name: 'Gorebyss', + id: 368, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Rock Head', 'Sturdy'], + attack: 90, + classfication: 'Longevity Pokémon', + defense: 130, + hp: 100, + japaneseName: 'Glanthジーランス', + name: 'Relicanth', + id: 369, + generation: 3, + isLegendary: false, + types: ['water', 'rock'] + }, + { + abilities: ['Swift Swim', 'Hydration'], + attack: 30, + classfication: 'Rendezvous Pokémon', + defense: 55, + hp: 43, + japaneseName: 'Lovecusラブカス', + name: 'Luvdisc', + id: 370, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Rock Head', 'Sheer Force'], + attack: 75, + classfication: 'Rock Head Pokémon', + defense: 60, + hp: 45, + japaneseName: 'Tatsubayタツベイ', + name: 'Bagon', + id: 371, + generation: 3, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Rock Head', 'Overcoat'], + attack: 95, + classfication: 'Endurance Pokémon', + defense: 100, + hp: 65, + japaneseName: 'Komoruuコモルー', + name: 'Shelgon', + id: 372, + generation: 3, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Intimidate', 'Moxie'], + attack: 145, + classfication: 'Dragon Pokémon', + defense: 130, + hp: 95, + japaneseName: 'Bohmanderボーマンダ', + name: 'Salamence', + id: 373, + generation: 3, + isLegendary: false, + types: ['dragon', 'flying'] + }, + { + abilities: ['Clear Body', 'Light Metal'], + attack: 55, + classfication: 'Iron Ball Pokémon', + defense: 80, + hp: 40, + japaneseName: 'Dumbberダンバル', + name: 'Beldum', + id: 374, + generation: 3, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Clear Body', 'Light Metal'], + attack: 75, + classfication: 'Iron Claw Pokémon', + defense: 100, + hp: 60, + japaneseName: 'Metangメタング', + name: 'Metang', + id: 375, + generation: 3, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Clear Body', 'Light Metal'], + attack: 145, + classfication: 'Iron Leg Pokémon', + defense: 150, + hp: 80, + japaneseName: 'Metagrossメタグロス', + name: 'Metagross', + id: 376, + generation: 3, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Clear Body', 'Sturdy'], + attack: 100, + classfication: 'Rock Peak Pokémon', + defense: 200, + hp: 80, + japaneseName: 'Regirockレジロック', + name: 'Regirock', + id: 377, + generation: 3, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Clear Body', 'Ice Body'], + attack: 50, + classfication: 'Iceberg Pokémon', + defense: 100, + hp: 80, + japaneseName: 'Regiceレジアイス', + name: 'Regice', + id: 378, + generation: 3, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Clear Body', 'Light Metal'], + attack: 75, + classfication: 'Iron Pokémon', + defense: 150, + hp: 80, + japaneseName: 'Registeelレジスチル', + name: 'Registeel', + id: 379, + generation: 3, + isLegendary: false, + types: ['steel'] + }, + { + abilities: ['Levitate'], + attack: 100, + classfication: 'Eon Pokémon', + defense: 120, + hp: 80, + japaneseName: 'Latiasラティアス', + name: 'Latias', + id: 380, + generation: 3, + isLegendary: false, + types: ['dragon', 'psychic'] + }, + { + abilities: ['Levitate'], + attack: 130, + classfication: 'Eon Pokémon', + defense: 100, + hp: 80, + japaneseName: 'Latiosラティオス', + name: 'Latios', + id: 381, + generation: 3, + isLegendary: false, + types: ['dragon', 'psychic'] + }, + { + abilities: ['Drizzle'], + attack: 150, + classfication: 'Sea Basin Pokémon', + defense: 90, + hp: 100, + japaneseName: 'Kyogreカイオーガ', + name: 'Kyogre', + id: 382, + generation: 3, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Drought'], + attack: 180, + classfication: 'Continent Pokémon', + defense: 160, + hp: 100, + japaneseName: 'Groudonグラードン', + name: 'Groudon', + id: 383, + generation: 3, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Air Lock'], + attack: 180, + classfication: 'Sky High Pokémon', + defense: 100, + hp: 105, + japaneseName: 'Rayquazaレックウザ', + name: 'Rayquaza', + id: 384, + generation: 3, + isLegendary: false, + types: ['dragon', 'flying'] + }, + { + abilities: ['Serene Grace'], + attack: 100, + classfication: 'Wish Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Jirachiジラーチ', + name: 'Jirachi', + id: 385, + generation: 3, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Pressure'], + attack: 95, + classfication: 'DNA Pokémon', + defense: 90, + hp: 50, + japaneseName: 'Deoxysデオキシス', + name: 'Deoxys', + id: 386, + generation: 3, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Overgrow', 'Shell Armor'], + attack: 68, + classfication: 'Tiny Leaf Pokémon', + defense: 64, + hp: 55, + japaneseName: 'Naetleナエトル', + name: 'Turtwig', + id: 387, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Shell Armor'], + attack: 89, + classfication: 'Grove Pokémon', + defense: 85, + hp: 75, + japaneseName: 'Hayashigameハヤシガメ', + name: 'Grotle', + id: 388, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Shell Armor'], + attack: 109, + classfication: 'Continent Pokémon', + defense: 105, + hp: 95, + japaneseName: 'Dodaitoseドダイトス', + name: 'Torterra', + id: 389, + generation: 4, + isLegendary: false, + types: ['grass', 'ground'] + }, + { + abilities: ['Blaze', 'Iron Fist'], + attack: 58, + classfication: 'Chimp Pokémon', + defense: 44, + hp: 44, + japaneseName: 'Hikozaruヒコザル', + name: 'Chimchar', + id: 390, + generation: 4, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Iron Fist'], + attack: 78, + classfication: 'Playful Pokémon', + defense: 52, + hp: 64, + japaneseName: 'Moukazaruモウカザル', + name: 'Monferno', + id: 391, + generation: 4, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Blaze', 'Iron Fist'], + attack: 104, + classfication: 'Flame Pokémon', + defense: 71, + hp: 76, + japaneseName: 'Goukazaruゴウカザル', + name: 'Infernape', + id: 392, + generation: 4, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Torrent', 'Defiant'], + attack: 51, + classfication: 'Penguin Pokémon', + defense: 53, + hp: 53, + japaneseName: 'Pochamaポッチャマ', + name: 'Piplup', + id: 393, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Defiant'], + attack: 66, + classfication: 'Penguin Pokémon', + defense: 68, + hp: 64, + japaneseName: 'Pottaishiポッタイシ', + name: 'Prinplup', + id: 394, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Defiant'], + attack: 86, + classfication: 'Emperor Pokémon', + defense: 88, + hp: 84, + japaneseName: 'Emperteエンペルト', + name: 'Empoleon', + id: 395, + generation: 4, + isLegendary: false, + types: ['water', 'steel'] + }, + { + abilities: ['Keen Eye', 'Reckless'], + attack: 55, + classfication: 'Starling Pokémon', + defense: 30, + hp: 40, + japaneseName: 'Mukkuruムックル', + name: 'Starly', + id: 396, + generation: 4, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Intimidate', 'Reckless'], + attack: 75, + classfication: 'Starling Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Mukubirdムクバード', + name: 'Staravia', + id: 397, + generation: 4, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Intimidate', 'Reckless'], + attack: 120, + classfication: 'Predator Pokémon', + defense: 70, + hp: 85, + japaneseName: 'Mukuhawkムクホーク', + name: 'Staraptor', + id: 398, + generation: 4, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Simple', 'Unaware', 'Moody'], + attack: 45, + classfication: 'Plump Mouse Pokémon', + defense: 40, + hp: 59, + japaneseName: 'Bippaビッパ', + name: 'Bidoof', + id: 399, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Simple', 'Unaware', 'Moody'], + attack: 85, + classfication: 'Beaver Pokémon', + defense: 60, + hp: 79, + japaneseName: 'Beadaruビーダル', + name: 'Bibarel', + id: 400, + generation: 4, + isLegendary: false, + types: ['normal', 'water'] + }, + { + abilities: ['Shed Skin', 'Run Away'], + attack: 25, + classfication: 'Cricket Pokémon', + defense: 41, + hp: 37, + japaneseName: 'Korobohshiコロボーシ', + name: 'Kricketot', + id: 401, + generation: 4, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Swarm', 'Technician'], + attack: 85, + classfication: 'Cricket Pokémon', + defense: 51, + hp: 77, + japaneseName: 'Korotockコロトック', + name: 'Kricketune', + id: 402, + generation: 4, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Rivalry', 'Intimidate', 'Guts'], + attack: 65, + classfication: 'Flash Pokémon', + defense: 34, + hp: 45, + japaneseName: 'Kolinkコリンク', + name: 'Shinx', + id: 403, + generation: 4, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Rivalry', 'Intimidate', 'Guts'], + attack: 85, + classfication: 'Spark Pokémon', + defense: 49, + hp: 60, + japaneseName: 'Luxioルクシオ', + name: 'Luxio', + id: 404, + generation: 4, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Rivalry', 'Intimidate', 'Guts'], + attack: 120, + classfication: 'Gleam Eyes Pokémon', + defense: 79, + hp: 80, + japaneseName: 'Rentorarレントラー', + name: 'Luxray', + id: 405, + generation: 4, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Natural Cure', 'Poison Point', 'Leaf Guard'], + attack: 30, + classfication: 'Bud Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Subomieスボミー', + name: 'Budew', + id: 406, + generation: 4, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Natural Cure', 'Poison Point', 'Technician'], + attack: 70, + classfication: 'Bouquet Pokémon', + defense: 65, + hp: 60, + japaneseName: 'Roseradeロズレイド', + name: 'Roserade', + id: 407, + generation: 4, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Mold Breaker', 'Sheer Force'], + attack: 125, + classfication: 'Head Butt Pokémon', + defense: 40, + hp: 67, + japaneseName: 'Zugaidosズガイドス', + name: 'Cranidos', + id: 408, + generation: 4, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Mold Breaker', 'Sheer Force'], + attack: 165, + classfication: 'Head Butt Pokémon', + defense: 60, + hp: 97, + japaneseName: 'Rampaldラムパルド', + name: 'Rampardos', + id: 409, + generation: 4, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Sturdy', 'Soundproof'], + attack: 42, + classfication: 'Shield Pokémon', + defense: 118, + hp: 30, + japaneseName: 'Tatetopsタテトプス', + name: 'Shieldon', + id: 410, + generation: 4, + isLegendary: false, + types: ['rock', 'steel'] + }, + { + abilities: ['Sturdy', 'Soundproof'], + attack: 52, + classfication: 'Shield Pokémon', + defense: 168, + hp: 60, + japaneseName: 'Toridepsトリデプス', + name: 'Bastiodon', + id: 411, + generation: 4, + isLegendary: false, + types: ['rock', 'steel'] + }, + { + abilities: ['Shed Skin', 'Overcoat'], + attack: 29, + classfication: 'Bagworm Pokémon', + defense: 45, + hp: 40, + japaneseName: 'Minomucchiミノムッチ', + name: 'Burmy', + id: 412, + generation: 4, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Anticipation', 'Overcoat'], + attack: 69, + classfication: 'Bagworm Pokémon', + defense: 95, + hp: 60, + japaneseName: 'Minomadam (kusaki No Mino)ミノマダム', + name: 'Wormadam', + id: 413, + generation: 4, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Swarm', 'Tinted Lens'], + attack: 94, + classfication: 'Moth Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Gamaleガーメイル', + name: 'Mothim', + id: 414, + generation: 4, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Honey Gather', 'Hustle'], + attack: 30, + classfication: 'Tiny Bee Pokémon', + defense: 42, + hp: 30, + japaneseName: 'Mitsuhoneyミツハニー', + name: 'Combee', + id: 415, + generation: 4, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Pressure', 'Unnerve'], + attack: 80, + classfication: 'Beehive Pokémon', + defense: 102, + hp: 70, + japaneseName: 'Beequenビークイン', + name: 'Vespiquen', + id: 416, + generation: 4, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Run Away', 'Pickup', 'Volt Absorb'], + attack: 45, + classfication: 'EleSquirrel Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Pachirisuパチリス', + name: 'Pachirisu', + id: 417, + generation: 4, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Swift Swim', 'Water Veil'], + attack: 65, + classfication: 'Sea Weasel Pokémon', + defense: 35, + hp: 55, + japaneseName: 'Buoyselブイゼル', + name: 'Buizel', + id: 418, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Water Veil'], + attack: 105, + classfication: 'Sea Weasel Pokémon', + defense: 55, + hp: 85, + japaneseName: 'Floazelフローゼル', + name: 'Floatzel', + id: 419, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Chlorophyll'], + attack: 35, + classfication: 'Cherry Pokémon', + defense: 45, + hp: 45, + japaneseName: 'Cherinboチェリンボ', + name: 'Cherubi', + id: 420, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Flower Gift'], + attack: 60, + classfication: 'Blossom Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Cherrimチェリム', + name: 'Cherrim', + id: 421, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Sticky Hold', 'Storm Drain', 'Sand Force'], + attack: 48, + classfication: 'Sea Slug Pokémon', + defense: 48, + hp: 76, + japaneseName: 'Karanakushiカラナクシ', + name: 'Shellos', + id: 422, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Sticky Hold', 'Storm Drain', 'Sand Force'], + attack: 83, + classfication: 'Sea Slug Pokémon', + defense: 68, + hp: 111, + japaneseName: 'Tritodonトリトドン', + name: 'Gastrodon', + id: 423, + generation: 4, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Technician', 'Pickup', 'Skill Link'], + attack: 100, + classfication: 'Long Tail Pokémon', + defense: 66, + hp: 75, + japaneseName: 'Etebothエテボース', + name: 'Ambipom', + id: 424, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Aftermath', 'Unburden', 'Flare Boost'], + attack: 50, + classfication: 'Balloon Pokémon', + defense: 34, + hp: 90, + japaneseName: 'Fuwanteフワンテ', + name: 'Drifloon', + id: 425, + generation: 4, + isLegendary: false, + types: ['ghost', 'flying'] + }, + { + abilities: ['Aftermath', 'Unburden', 'Flare Boost'], + attack: 80, + classfication: 'Blimp Pokémon', + defense: 44, + hp: 150, + japaneseName: 'Fuwarideフワライド', + name: 'Drifblim', + id: 426, + generation: 4, + isLegendary: false, + types: ['ghost', 'flying'] + }, + { + abilities: ['Run Away', 'Klutz', 'Limber'], + attack: 66, + classfication: 'Rabbit Pokémon', + defense: 44, + hp: 55, + japaneseName: 'Mimirolミミロル', + name: 'Buneary', + id: 427, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Cute Charm', 'Klutz', 'Limber'], + attack: 136, + classfication: 'Rabbit Pokémon', + defense: 94, + hp: 65, + japaneseName: 'Mimilopミミロップ', + name: 'Lopunny', + id: 428, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Levitate'], + attack: 60, + classfication: 'Magical Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Mumargiムウマージ', + name: 'Mismagius', + id: 429, + generation: 4, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Insomnia', 'Super Luck', 'Moxie'], + attack: 125, + classfication: 'Big Boss Pokémon', + defense: 52, + hp: 100, + japaneseName: 'Dongkarasuドンカラス', + name: 'Honchkrow', + id: 430, + generation: 4, + isLegendary: false, + types: ['dark', 'flying'] + }, + { + abilities: ['Limber', 'Own Tempo', 'Keen Eye'], + attack: 55, + classfication: 'Catty Pokémon', + defense: 42, + hp: 49, + japaneseName: 'Nyarmarニャルマー', + name: 'Glameow', + id: 431, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Thick Fat', 'Own Tempo', 'Defiant'], + attack: 82, + classfication: 'Tiger Cat Pokémon', + defense: 64, + hp: 71, + japaneseName: 'Bunyattoブニャット', + name: 'Purugly', + id: 432, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Levitate'], + attack: 30, + classfication: 'Bell Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Lisyanリーシャン', + name: 'Chingling', + id: 433, + generation: 4, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Stench', 'Aftermath', 'Keen Eye'], + attack: 63, + classfication: 'Skunk Pokémon', + defense: 47, + hp: 63, + japaneseName: 'Skunpuuスカンプー', + name: 'Stunky', + id: 434, + generation: 4, + isLegendary: false, + types: ['poison', 'dark'] + }, + { + abilities: ['Stench', 'Aftermath', 'Keen Eye'], + attack: 93, + classfication: 'Skunk Pokémon', + defense: 67, + hp: 103, + japaneseName: 'Skutankスカタンク', + name: 'Skuntank', + id: 435, + generation: 4, + isLegendary: false, + types: ['poison', 'dark'] + }, + { + abilities: ['Levitate', 'Heatproof', 'Heavy Metal'], + attack: 24, + classfication: 'Bronze Pokémon', + defense: 86, + hp: 57, + japaneseName: 'Dohmirrorドーミラー', + name: 'Bronzor', + id: 436, + generation: 4, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Levitate', 'Heatproof', 'Heavy Metal'], + attack: 89, + classfication: 'Bronze Bell Pokémon', + defense: 116, + hp: 67, + japaneseName: 'Dohtakunドータクン', + name: 'Bronzong', + id: 437, + generation: 4, + isLegendary: false, + types: ['steel', 'psychic'] + }, + { + abilities: ['Sturdy', 'Rock Head', 'Rattled'], + attack: 80, + classfication: 'Bonsai Pokémon', + defense: 95, + hp: 50, + japaneseName: 'Usohachiウソハチ', + name: 'Bonsly', + id: 438, + generation: 4, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Soundproof', 'Filter', 'Technician'], + attack: 25, + classfication: 'Mime Pokémon', + defense: 45, + hp: 20, + japaneseName: 'Maneneマネネ', + name: 'Mime Jr.', + id: 439, + generation: 4, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Natural Cure', 'Serene Grace', 'Friend Guard'], + attack: 5, + classfication: 'Playhouse Pokémon', + defense: 5, + hp: 100, + japaneseName: 'Pinpukuピンプク', + name: 'Happiny', + id: 440, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], + attack: 65, + classfication: 'Music Note Pokémon', + defense: 45, + hp: 76, + japaneseName: 'Perapペラップ', + name: 'Chatot', + id: 441, + generation: 4, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Pressure', 'Infiltrator'], + attack: 92, + classfication: 'Forbidden Pokémon', + defense: 108, + hp: 50, + japaneseName: 'Mikarugeミカルゲ', + name: 'Spiritomb', + id: 442, + generation: 4, + isLegendary: false, + types: ['ghost', 'dark'] + }, + { + abilities: ['Sand Veil', 'Rough Skin'], + attack: 70, + classfication: 'Land Shark Pokémon', + defense: 45, + hp: 58, + japaneseName: 'Fukamaruフカマル', + name: 'Gible', + id: 443, + generation: 4, + isLegendary: false, + types: ['dragon', 'ground'] + }, + { + abilities: ['Sand Veil', 'Rough Skin'], + attack: 90, + classfication: 'Cave Pokémon', + defense: 65, + hp: 68, + japaneseName: 'Gabiteガバイト', + name: 'Gabite', + id: 444, + generation: 4, + isLegendary: false, + types: ['dragon', 'ground'] + }, + { + abilities: ['Sand Veil', 'Rough Skin'], + attack: 170, + classfication: 'Mach Pokémon', + defense: 115, + hp: 108, + japaneseName: 'Gaburiasガブリアス', + name: 'Garchomp', + id: 445, + generation: 4, + isLegendary: false, + types: ['dragon', 'ground'] + }, + { + abilities: ['Pickup', 'Thick Fat', 'Gluttony'], + attack: 85, + classfication: 'Big Eater Pokémon', + defense: 40, + hp: 135, + japaneseName: 'Gonbeゴンベ', + name: 'Munchlax', + id: 446, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Steadfast', 'Inner Focus', 'Prankster'], + attack: 70, + classfication: 'Emanation Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Rioluリオル', + name: 'Riolu', + id: 447, + generation: 4, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Steadfast', 'Inner Focus', 'Justified'], + attack: 145, + classfication: 'Aura Pokémon', + defense: 88, + hp: 70, + japaneseName: 'Lucarioルカリオ', + name: 'Lucario', + id: 448, + generation: 4, + isLegendary: false, + types: ['fighting', 'steel'] + }, + { + abilities: ['Sand Stream', 'Sand Force'], + attack: 72, + classfication: 'Hippo Pokémon', + defense: 78, + hp: 68, + japaneseName: 'Hippopotasヒポポタス', + name: 'Hippopotas', + id: 449, + generation: 4, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Sand Stream', 'Sand Force'], + attack: 112, + classfication: 'Heavyweight Pokémon', + defense: 118, + hp: 108, + japaneseName: 'Kabaldonカバルドン', + name: 'Hippowdon', + id: 450, + generation: 4, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Battle Armor', 'Sniper', 'Keen Eye'], + attack: 50, + classfication: 'Scorpion Pokémon', + defense: 90, + hp: 40, + japaneseName: 'Scorupiスコルピ', + name: 'Skorupi', + id: 451, + generation: 4, + isLegendary: false, + types: ['poison', 'bug'] + }, + { + abilities: ['Battle Armor', 'Sniper', 'Keen Eye'], + attack: 90, + classfication: 'Ogre Scorp Pokémon', + defense: 110, + hp: 70, + japaneseName: 'Dorapionドラピオン', + name: 'Drapion', + id: 452, + generation: 4, + isLegendary: false, + types: ['poison', 'dark'] + }, + { + abilities: ['Anticipation', 'Dry Skin', 'Poison Touch'], + attack: 61, + classfication: 'Toxic Mouth Pokémon', + defense: 40, + hp: 48, + japaneseName: 'Gureggruグレッグル', + name: 'Croagunk', + id: 453, + generation: 4, + isLegendary: false, + types: ['poison', 'fighting'] + }, + { + abilities: ['Anticipation', 'Dry Skin', 'Poison Touch'], + attack: 106, + classfication: 'Toxic Mouth Pokémon', + defense: 65, + hp: 83, + japaneseName: 'Dokurogドクロッグ', + name: 'Toxicroak', + id: 454, + generation: 4, + isLegendary: false, + types: ['poison', 'fighting'] + }, + { + abilities: ['Levitate'], + attack: 100, + classfication: 'Bug Catcher Pokémon', + defense: 72, + hp: 74, + japaneseName: 'Muskippaマスキッパ', + name: 'Carnivine', + id: 455, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Swift Swim', 'Storm Drain', 'Water Veil'], + attack: 49, + classfication: 'Wing Fish Pokémon', + defense: 56, + hp: 49, + japaneseName: 'Keikouoケイコウオ', + name: 'Finneon', + id: 456, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Storm Drain', 'Water Veil'], + attack: 69, + classfication: 'Neon Pokémon', + defense: 76, + hp: 69, + japaneseName: 'Neolantネオラント', + name: 'Lumineon', + id: 457, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Water Absorb', 'Water Veil'], + attack: 20, + classfication: 'Kite Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Tamantaタマンタ', + name: 'Mantyke', + id: 458, + generation: 4, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Snow Warning', 'Soundproof'], + attack: 62, + classfication: 'Frosted Tree Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Yukikaburiユキカブリ', + name: 'Snover', + id: 459, + generation: 4, + isLegendary: false, + types: ['grass', 'ice'] + }, + { + abilities: ['Snow Warning', 'Soundproof'], + attack: 132, + classfication: 'Frosted Tree Pokémon', + defense: 105, + hp: 90, + japaneseName: 'Yukinoohユキノオー', + name: 'Abomasnow', + id: 460, + generation: 4, + isLegendary: false, + types: ['grass', 'ice'] + }, + { + abilities: ['Pressure', 'Pickpocket'], + attack: 120, + classfication: 'Sharp Claw Pokémon', + defense: 65, + hp: 70, + japaneseName: 'Manyulaマニューラ', + name: 'Weavile', + id: 461, + generation: 4, + isLegendary: false, + types: ['dark', 'ice'] + }, + { + abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], + attack: 70, + classfication: 'Magnet Area Pokémon', + defense: 115, + hp: 70, + japaneseName: 'Jibacoilジバコイル', + name: 'Magnezone', + id: 462, + generation: 4, + isLegendary: false, + types: ['electric', 'steel'] + }, + { + abilities: ['Own Tempo', 'Oblivious', 'Cloud Nine'], + attack: 85, + classfication: 'Licking Pokémon', + defense: 95, + hp: 110, + japaneseName: 'Berobeltベロベルト', + name: 'Lickilicky', + id: 463, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Lightningrod', 'Solid Rock', 'Reckless'], + attack: 140, + classfication: 'Drill Pokémon', + defense: 130, + hp: 115, + japaneseName: 'Dosidonドサイドン', + name: 'Rhyperior', + id: 464, + generation: 4, + isLegendary: false, + types: ['ground', 'rock'] + }, + { + abilities: ['Chlorophyll', 'Leaf Guard', 'Regenerator'], + attack: 100, + classfication: 'Vine Pokémon', + defense: 125, + hp: 100, + japaneseName: 'Mojumboモジャンボ', + name: 'Tangrowth', + id: 465, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Motor Drive', 'Vital Spirit'], + attack: 123, + classfication: 'Thunderbolt Pokémon', + defense: 67, + hp: 75, + japaneseName: 'Elekibleエレキブル', + name: 'Electivire', + id: 466, + generation: 4, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Flame Body', 'Vital Spirit'], + attack: 95, + classfication: 'Blast Pokémon', + defense: 67, + hp: 75, + japaneseName: 'Booburnブーバーン', + name: 'Magmortar', + id: 467, + generation: 4, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Hustle', 'Serene Grace', 'Super Luck'], + attack: 50, + classfication: 'Jubilee Pokémon', + defense: 95, + hp: 85, + japaneseName: 'Togekissトゲキッス', + name: 'Togekiss', + id: 468, + generation: 4, + isLegendary: false, + types: ['fairy', 'flying'] + }, + { + abilities: ['Speed Boost', 'Tinted Lens', 'Frisk'], + attack: 76, + classfication: 'Ogre Darner Pokémon', + defense: 86, + hp: 86, + japaneseName: 'Megayanmaメガヤンマ', + name: 'Yanmega', + id: 469, + generation: 4, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Leaf Guard', 'Chlorophyll'], + attack: 110, + classfication: 'Verdant Pokémon', + defense: 130, + hp: 65, + japaneseName: 'Leafiaリーフィア', + name: 'Leafeon', + id: 470, + generation: 4, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Snow Cloak', 'Ice Body'], + attack: 60, + classfication: 'Fresh Snow Pokémon', + defense: 110, + hp: 65, + japaneseName: 'Glaciaグレイシア', + name: 'Glaceon', + id: 471, + generation: 4, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Hyper Cutter', 'Sand Veil', 'Poison Heal'], + attack: 95, + classfication: 'Fang Scorp Pokémon', + defense: 125, + hp: 75, + japaneseName: 'Glionグライオン', + name: 'Gliscor', + id: 472, + generation: 4, + isLegendary: false, + types: ['ground', 'flying'] + }, + { + abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], + attack: 130, + classfication: 'Twin Tusk Pokémon', + defense: 80, + hp: 110, + japaneseName: 'Mammooマンムー', + name: 'Mamoswine', + id: 473, + generation: 4, + isLegendary: false, + types: ['ice', 'ground'] + }, + { + abilities: ['Adaptability', 'Download', 'Analytic'], + attack: 80, + classfication: 'Virtual Pokémon', + defense: 70, + hp: 85, + japaneseName: 'Porygon-zポリゴンZ', + name: 'Porygon-Z', + id: 474, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Steadfast', 'Justified'], + attack: 165, + classfication: 'Blade Pokémon', + defense: 95, + hp: 68, + japaneseName: 'Erureidoエルレイド', + name: 'Gallade', + id: 475, + generation: 4, + isLegendary: false, + types: ['psychic', 'fighting'] + }, + { + abilities: ['Sturdy', 'Magnet Pull', 'Sand Force'], + attack: 55, + classfication: 'Compass Pokémon', + defense: 145, + hp: 60, + japaneseName: 'Dainoseダイノーズ', + name: 'Probopass', + id: 476, + generation: 4, + isLegendary: false, + types: ['rock', 'steel'] + }, + { + abilities: ['Pressure', 'Frisk'], + attack: 100, + classfication: 'Gripper Pokémon', + defense: 135, + hp: 45, + japaneseName: 'Yonoirヨノワール', + name: 'Dusknoir', + id: 477, + generation: 4, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Snow Cloak', 'Cursed Body'], + attack: 80, + classfication: 'Snow Land Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Yukimenokoユキメノコ', + name: 'Froslass', + id: 478, + generation: 4, + isLegendary: false, + types: ['ice', 'ghost'] + }, + { + abilities: ['Levitate'], + attack: 65, + classfication: 'Plasma Pokémon', + defense: 107, + hp: 50, + japaneseName: 'Rotomロトム', + name: 'Rotom', + id: 479, + generation: 4, + isLegendary: false, + types: ['electric', 'ghost'] + }, + { + abilities: ['Levitate'], + attack: 75, + classfication: 'Knowledge Pokémon', + defense: 130, + hp: 75, + japaneseName: 'Yuxieユクシー', + name: 'Uxie', + id: 480, + generation: 4, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Levitate'], + attack: 105, + classfication: 'Emotion Pokémon', + defense: 105, + hp: 80, + japaneseName: 'Emritエムリット', + name: 'Mesprit', + id: 481, + generation: 4, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Levitate'], + attack: 125, + classfication: 'Willpower Pokémon', + defense: 70, + hp: 75, + japaneseName: 'Agnomeアグノム', + name: 'Azelf', + id: 482, + generation: 4, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Pressure', 'Telepathy'], + attack: 120, + classfication: 'Temporal Pokémon', + defense: 120, + hp: 100, + japaneseName: 'Dialgaディアルガ', + name: 'Dialga', + id: 483, + generation: 4, + isLegendary: false, + types: ['steel', 'dragon'] + }, + { + abilities: ['Pressure', 'Telepathy'], + attack: 120, + classfication: 'Spatial Pokémon', + defense: 100, + hp: 90, + japaneseName: 'Palkiaパルキア', + name: 'Palkia', + id: 484, + generation: 4, + isLegendary: false, + types: ['water', 'dragon'] + }, + { + abilities: ['Flash Fire', 'Flame Body'], + attack: 90, + classfication: 'Lava Dome Pokémon', + defense: 106, + hp: 91, + japaneseName: 'Heatranヒードラン', + name: 'Heatran', + id: 485, + generation: 4, + isLegendary: false, + types: ['fire', 'steel'] + }, + { + abilities: ['Slow Start'], + attack: 160, + classfication: 'Colossal Pokémon', + defense: 110, + hp: 110, + japaneseName: 'Regigigasレジギガス', + name: 'Regigigas', + id: 486, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Pressure', 'Telepathy', 'Levitate'], + attack: 120, + classfication: 'Renegade Pokémon', + defense: 100, + hp: 150, + japaneseName: 'Giratina (another Forme)ギラティナ', + name: 'Giratina', + id: 487, + generation: 4, + isLegendary: false, + types: ['ghost', 'dragon'] + }, + { + abilities: ['Levitate'], + attack: 70, + classfication: 'Lunar Pokémon', + defense: 120, + hp: 120, + japaneseName: 'Cresseliaクレセリア', + name: 'Cresselia', + id: 488, + generation: 4, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Hydration'], + attack: 80, + classfication: 'Sea Drifter Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Phioneフィオネ', + name: 'Phione', + id: 489, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Hydration'], + attack: 100, + classfication: 'Seafaring Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Manaphyマナフィ', + name: 'Manaphy', + id: 490, + generation: 4, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Bad Dreams'], + attack: 90, + classfication: 'Pitch-Black Pokémon', + defense: 90, + hp: 70, + japaneseName: 'Darkraiダークライ', + name: 'Darkrai', + id: 491, + generation: 4, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Natural Cure', 'Serene Grace'], + attack: 103, + classfication: 'Gratitude Pokémon', + defense: 75, + hp: 100, + japaneseName: 'Shaymin (sky Forme)シェイミ', + name: 'Shaymin', + id: 492, + generation: 4, + isLegendary: false, + types: ['grass', 'grass'] + }, + { + abilities: ['Multitype'], + attack: 120, + classfication: 'Alpha Pokémon', + defense: 120, + hp: 120, + japaneseName: 'Arceusアルセウス', + name: 'Arceus', + id: 493, + generation: 4, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Victory Star'], + attack: 100, + classfication: 'Victory Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Victiniビクティニ', + name: 'Victini', + id: 494, + generation: 5, + isLegendary: false, + types: ['psychic', 'fire'] + }, + { + abilities: ['Overgrow', 'Contrary'], + attack: 45, + classfication: 'Grass Snake Pokémon', + defense: 55, + hp: 45, + japaneseName: 'Tsutarjaツタージャ', + name: 'Snivy', + id: 495, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Contrary'], + attack: 60, + classfication: 'Grass Snake Pokémon', + defense: 75, + hp: 60, + japaneseName: 'Janovyジャノビー', + name: 'Servine', + id: 496, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Contrary'], + attack: 75, + classfication: 'Regal Pokémon', + defense: 95, + hp: 75, + japaneseName: 'Jalordaジャローダ', + name: 'Serperior', + id: 497, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Blaze', 'Thick Fat'], + attack: 63, + classfication: 'Fire Pig Pokémon', + defense: 45, + hp: 65, + japaneseName: 'Pokabuポカブ', + name: 'Tepig', + id: 498, + generation: 5, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Thick Fat'], + attack: 93, + classfication: 'Fire Pig Pokémon', + defense: 55, + hp: 90, + japaneseName: 'Chaobooチャオブー', + name: 'Pignite', + id: 499, + generation: 5, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Blaze', 'Reckless'], + attack: 123, + classfication: 'Mega Fire Pig Pokémon', + defense: 65, + hp: 110, + japaneseName: 'Enbuohエンブオー', + name: 'Emboar', + id: 500, + generation: 5, + isLegendary: false, + types: ['fire', 'fighting'] + }, + { + abilities: ['Torrent', 'Shell Armor'], + attack: 55, + classfication: 'Sea Otter Pokémon', + defense: 45, + hp: 55, + japaneseName: 'Mijumaruミジュマル', + name: 'Oshawott', + id: 501, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Shell Armor'], + attack: 75, + classfication: 'Discipline Pokémon', + defense: 60, + hp: 75, + japaneseName: 'Futachimaruフタチマル', + name: 'Dewott', + id: 502, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Shell Armor'], + attack: 100, + classfication: 'Formidable Pokémon', + defense: 85, + hp: 95, + japaneseName: 'Daikenkiダイケンキ', + name: 'Samurott', + id: 503, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Run Away', 'Keen Eye', 'Analytic'], + attack: 55, + classfication: 'Scout Pokémon', + defense: 39, + hp: 45, + japaneseName: 'Minezumiミネズミ', + name: 'Patrat', + id: 504, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Illuminate', 'Keen Eye', 'Analytic'], + attack: 85, + classfication: 'Lookout Pokémon', + defense: 69, + hp: 60, + japaneseName: 'Miruhogミルホッグ', + name: 'Watchog', + id: 505, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Vital Spirit', 'Pickup', 'Run Away'], + attack: 60, + classfication: 'Puppy Pokémon', + defense: 45, + hp: 45, + japaneseName: 'Yorterrieヨーテリー', + name: 'Lillipup', + id: 506, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Intimidate', 'Sand Rush', 'Scrappy'], + attack: 80, + classfication: 'Loyal Dog Pokémon', + defense: 65, + hp: 65, + japaneseName: 'Herderrieハーデリア', + name: 'Herdier', + id: 507, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Intimidate', 'Sand Rush', 'Scrappy'], + attack: 110, + classfication: 'Big-Hearted Pokémon', + defense: 90, + hp: 85, + japaneseName: 'Moolandムーランド', + name: 'Stoutland', + id: 508, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Limber', 'Unburden', 'Prankster'], + attack: 50, + classfication: 'Devious Pokémon', + defense: 37, + hp: 41, + japaneseName: 'Choronekoチョロネコ', + name: 'Purrloin', + id: 509, + generation: 5, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Limber', 'Unburden', 'Prankster'], + attack: 88, + classfication: 'Cruel Pokémon', + defense: 50, + hp: 64, + japaneseName: 'Lepardasレパルダス', + name: 'Liepard', + id: 510, + generation: 5, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Gluttony', 'Overgrow'], + attack: 53, + classfication: 'Grass Monkey Pokémon', + defense: 48, + hp: 50, + japaneseName: 'Yanappuヤナップ', + name: 'Pansage', + id: 511, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Gluttony', 'Overgrow'], + attack: 98, + classfication: 'Thorn Monkey Pokémon', + defense: 63, + hp: 75, + japaneseName: 'Yanakkieヤナッキー', + name: 'Simisage', + id: 512, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Gluttony', 'Blaze'], + attack: 53, + classfication: 'High Temp Pokémon', + defense: 48, + hp: 50, + japaneseName: 'Baoppuバオップ', + name: 'Pansear', + id: 513, + generation: 5, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Gluttony', 'Blaze'], + attack: 98, + classfication: 'Ember Pokémon', + defense: 63, + hp: 75, + japaneseName: 'Baokkieバオッキー', + name: 'Simisear', + id: 514, + generation: 5, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Gluttony', 'Torrent'], + attack: 53, + classfication: 'Spray Pokémon', + defense: 48, + hp: 50, + japaneseName: 'Hiyappuヒヤップ', + name: 'Panpour', + id: 515, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Gluttony', 'Torrent'], + attack: 98, + classfication: 'Geyser Pokémon', + defense: 63, + hp: 75, + japaneseName: 'Hiyakkieヒヤッキー', + name: 'Simipour', + id: 516, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Forewarn', 'Synchronize', 'Telepathy'], + attack: 25, + classfication: 'Dream Eater Pokémon', + defense: 45, + hp: 76, + japaneseName: 'Munnaムンナ', + name: 'Munna', + id: 517, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Forewarn', 'Synchronize', 'Telepathy'], + attack: 55, + classfication: 'Drowsing Pokémon', + defense: 85, + hp: 116, + japaneseName: 'Musharnaムシャーナ', + name: 'Musharna', + id: 518, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], + attack: 55, + classfication: 'Tiny Pigeon Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Mamepatoマメパト', + name: 'Pidove', + id: 519, + generation: 5, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], + attack: 77, + classfication: 'Wild Pigeon Pokémon', + defense: 62, + hp: 62, + japaneseName: 'Hatobohハトーボー', + name: 'Tranquill', + id: 520, + generation: 5, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], + attack: 115, + classfication: 'Proud Pokémon', + defense: 80, + hp: 80, + japaneseName: 'Kenhallowケンホロウ', + name: 'Unfezant', + id: 521, + generation: 5, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Lightningrod', 'Motor Drive', 'Sap Sipper'], + attack: 60, + classfication: 'Electrified Pokémon', + defense: 32, + hp: 45, + japaneseName: 'Shimamaシママ', + name: 'Blitzle', + id: 522, + generation: 5, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Lightningrod', 'Motor Drive', 'Sap Sipper'], + attack: 100, + classfication: 'Thunderbolt Pokémon', + defense: 63, + hp: 75, + japaneseName: 'Zebraikaゼブライカ', + name: 'Zebstrika', + id: 523, + generation: 5, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Sturdy', 'Weak Armor', 'Sand Force'], + attack: 75, + classfication: 'Mantle Pokémon', + defense: 85, + hp: 55, + japaneseName: 'Dangoroダンゴロ', + name: 'Roggenrola', + id: 524, + generation: 5, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Sturdy', 'Weak Armor', 'Sand Force'], + attack: 105, + classfication: 'Ore Pokémon', + defense: 105, + hp: 70, + japaneseName: 'Gantleガントル', + name: 'Boldore', + id: 525, + generation: 5, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Sturdy', 'Sand Stream', 'Sand Force'], + attack: 135, + classfication: 'Compressed Pokémon', + defense: 130, + hp: 85, + japaneseName: 'Gigaiathギガイアス', + name: 'Gigalith', + id: 526, + generation: 5, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Unaware', 'Klutz', 'Simple'], + attack: 45, + classfication: 'Bat Pokémon', + defense: 43, + hp: 65, + japaneseName: 'Koromoriコロモリ', + name: 'Woobat', + id: 527, + generation: 5, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Unaware', 'Klutz', 'Simple'], + attack: 57, + classfication: 'Courting Pokémon', + defense: 55, + hp: 67, + japaneseName: 'Kokoromoriココロモリ', + name: 'Swoobat', + id: 528, + generation: 5, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Sand Rush', 'Sand Force', 'Mold Breaker'], + attack: 85, + classfication: 'Mole Pokémon', + defense: 40, + hp: 60, + japaneseName: 'Mogurewモグリュー', + name: 'Drilbur', + id: 529, + generation: 5, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Sand Rush', 'Sand Force', 'Mold Breaker'], + attack: 135, + classfication: 'Subterrene Pokémon', + defense: 60, + hp: 110, + japaneseName: 'Doryuzuドリュウズ', + name: 'Excadrill', + id: 530, + generation: 5, + isLegendary: false, + types: ['ground', 'steel'] + }, + { + abilities: ['Healer', 'Regenerator', 'Klutz'], + attack: 60, + classfication: 'Hearing Pokémon', + defense: 126, + hp: 103, + japaneseName: 'Tabunneタブンネ', + name: 'Audino', + id: 531, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Guts', 'Sheer Force', 'Iron Fist'], + attack: 80, + classfication: 'Muscular Pokémon', + defense: 55, + hp: 75, + japaneseName: 'Dokkorerドッコラー', + name: 'Timburr', + id: 532, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Guts', 'Sheer Force', 'Iron Fist'], + attack: 105, + classfication: 'Muscular Pokémon', + defense: 85, + hp: 85, + japaneseName: 'Dotekkotsuドテッコツ', + name: 'Gurdurr', + id: 533, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Guts', 'Sheer Force', 'Iron Fist'], + attack: 140, + classfication: 'Muscular Pokémon', + defense: 95, + hp: 105, + japaneseName: 'Roubushinローブシン', + name: 'Conkeldurr', + id: 534, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Swift Swim', 'Hydration', 'Water Absorb'], + attack: 50, + classfication: 'Tadpole Pokémon', + defense: 40, + hp: 50, + japaneseName: 'Otamaroオタマロ', + name: 'Tympole', + id: 535, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Swift Swim', 'Hydration', 'Water Absorb'], + attack: 65, + classfication: 'Vibration Pokémon', + defense: 55, + hp: 75, + japaneseName: 'Gamagaruガマガル', + name: 'Palpitoad', + id: 536, + generation: 5, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Swift Swim', 'Poison Touch', 'Water Absorb'], + attack: 95, + classfication: 'Vibration Pokémon', + defense: 75, + hp: 105, + japaneseName: 'Gamagerogeガマゲロゲ', + name: 'Seismitoad', + id: 537, + generation: 5, + isLegendary: false, + types: ['water', 'ground'] + }, + { + abilities: ['Guts', 'Inner Focus', 'Mold Breaker'], + attack: 100, + classfication: 'Judo Pokémon', + defense: 85, + hp: 120, + japaneseName: 'Nagekiナゲキ', + name: 'Throh', + id: 538, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Sturdy', 'Inner Focus', 'Mold Breaker'], + attack: 125, + classfication: 'Karate Pokémon', + defense: 75, + hp: 75, + japaneseName: 'Dagekiダゲキ', + name: 'Sawk', + id: 539, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Swarm', 'Chlorophyll', 'Overcoat'], + attack: 53, + classfication: 'Sewing Pokémon', + defense: 70, + hp: 45, + japaneseName: 'Kurumiruクルミル', + name: 'Sewaddle', + id: 540, + generation: 5, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Leaf Guard', 'Chlorophyll', 'Overcoat'], + attack: 63, + classfication: 'Leaf-Wrapped Pokémon', + defense: 90, + hp: 55, + japaneseName: 'Kurumayuクルマユ', + name: 'Swadloon', + id: 541, + generation: 5, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Swarm', 'Chlorophyll', 'Overcoat'], + attack: 103, + classfication: 'Nurturing Pokémon', + defense: 80, + hp: 75, + japaneseName: 'Hahakomoriハハコモリ', + name: 'Leavanny', + id: 542, + generation: 5, + isLegendary: false, + types: ['bug', 'grass'] + }, + { + abilities: ['Poison Point', 'Swarm', 'Speed Boost'], + attack: 45, + classfication: 'Centipede Pokémon', + defense: 59, + hp: 30, + japaneseName: 'Fushideフシデ', + name: 'Venipede', + id: 543, + generation: 5, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Poison Point', 'Swarm', 'Speed Boost'], + attack: 55, + classfication: 'Curlipede Pokémon', + defense: 99, + hp: 40, + japaneseName: 'Wheegaホイーガ', + name: 'Whirlipede', + id: 544, + generation: 5, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Poison Point', 'Swarm', 'Speed Boost'], + attack: 100, + classfication: 'Megapede Pokémon', + defense: 89, + hp: 60, + japaneseName: 'Pendrorペンドラー', + name: 'Scolipede', + id: 545, + generation: 5, + isLegendary: false, + types: ['bug', 'poison'] + }, + { + abilities: ['Prankster', 'Infiltrator', 'Chlorophyll'], + attack: 27, + classfication: 'Cotton Puff Pokémon', + defense: 60, + hp: 40, + japaneseName: 'Monmenモンメン', + name: 'Cottonee', + id: 546, + generation: 5, + isLegendary: false, + types: ['grass', 'fairy'] + }, + { + abilities: ['Prankster', 'Infiltrator', 'Chlorophyll'], + attack: 67, + classfication: 'Windveiled Pokémon', + defense: 85, + hp: 60, + japaneseName: 'Elfuunエルフーン', + name: 'Whimsicott', + id: 547, + generation: 5, + isLegendary: false, + types: ['grass', 'fairy'] + }, + { + abilities: ['Chlorophyll', 'Own Tempo', 'Leaf Guard'], + attack: 35, + classfication: 'Bulb Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Churineチュリネ', + name: 'Petilil', + id: 548, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Chlorophyll', 'Own Tempo', 'Leaf Guard'], + attack: 60, + classfication: 'Flowering Pokémon', + defense: 75, + hp: 70, + japaneseName: 'Dredearドレディア', + name: 'Lilligant', + id: 549, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Reckless', 'Rock Head', 'Adaptability', 'Mold Breaker'], + attack: 92, + classfication: 'Hostile Pokémon', + defense: 65, + hp: 70, + japaneseName: 'Bassraoバスラオ', + name: 'Basculin', + id: 550, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Intimidate', 'Moxie', 'Anger Point'], + attack: 72, + classfication: 'Desert Croc Pokémon', + defense: 35, + hp: 50, + japaneseName: 'Megurocoメグロコ', + name: 'Sandile', + id: 551, + generation: 5, + isLegendary: false, + types: ['ground', 'dark'] + }, + { + abilities: ['Intimidate', 'Moxie', 'Anger Point'], + attack: 82, + classfication: 'Desert Croc Pokémon', + defense: 45, + hp: 60, + japaneseName: 'Waruvileワルビル', + name: 'Krokorok', + id: 552, + generation: 5, + isLegendary: false, + types: ['ground', 'dark'] + }, + { + abilities: ['Intimidate', 'Moxie', 'Anger Point'], + attack: 117, + classfication: 'Intimidation Pokémon', + defense: 80, + hp: 95, + japaneseName: 'Waruvialワルビアル', + name: 'Krookodile', + id: 553, + generation: 5, + isLegendary: false, + types: ['ground', 'dark'] + }, + { + abilities: ['Hustle', 'Inner Focus'], + attack: 90, + classfication: 'Zen Charm Pokémon', + defense: 45, + hp: 70, + japaneseName: 'Darumakkaダルマッカ', + name: 'Darumaka', + id: 554, + generation: 5, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Sheer Force', 'Zen Mode'], + attack: 30, + classfication: 'Blazing Pokémon', + defense: 105, + hp: 105, + japaneseName: 'Hihidarumaヒヒダルマ', + name: 'Darmanitan', + id: 555, + generation: 5, + isLegendary: false, + types: ['fire', 'fire'] + }, + { + abilities: ['Water Absorb', 'Chlorophyll', 'Storm Drain'], + attack: 86, + classfication: 'Cactus Pokémon', + defense: 67, + hp: 75, + japaneseName: 'Maracacchiマラカッチ', + name: 'Maractus', + id: 556, + generation: 5, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Sturdy', 'Shell Armor', 'Weak Armor'], + attack: 65, + classfication: 'Rock Inn Pokémon', + defense: 85, + hp: 50, + japaneseName: 'Ishizumaiイシズマイ', + name: 'Dwebble', + id: 557, + generation: 5, + isLegendary: false, + types: ['bug', 'rock'] + }, + { + abilities: ['Sturdy', 'Shell Armor', 'Weak Armor'], + attack: 105, + classfication: 'Stone Home Pokémon', + defense: 125, + hp: 70, + japaneseName: 'Iwapalaceイワパレス', + name: 'Crustle', + id: 558, + generation: 5, + isLegendary: false, + types: ['bug', 'rock'] + }, + { + abilities: ['Shed Skin', 'Moxie', 'Intimidate'], + attack: 75, + classfication: 'Shedding Pokémon', + defense: 70, + hp: 50, + japaneseName: 'Zurugguズルッグ', + name: 'Scraggy', + id: 559, + generation: 5, + isLegendary: false, + types: ['dark', 'fighting'] + }, + { + abilities: ['Shed Skin', 'Moxie', 'Intimidate'], + attack: 90, + classfication: 'Hoodlum Pokémon', + defense: 115, + hp: 65, + japaneseName: 'Zuruzukinズルズキン', + name: 'Scrafty', + id: 560, + generation: 5, + isLegendary: false, + types: ['dark', 'fighting'] + }, + { + abilities: ['Wonder Skin ', 'Magic Guard', 'Tinted Lens'], + attack: 58, + classfication: 'Avianoid Pokémon', + defense: 80, + hp: 72, + japaneseName: 'Symbolerシンボラー', + name: 'Sigilyph', + id: 561, + generation: 5, + isLegendary: false, + types: ['psychic', 'flying'] + }, + { + abilities: ['Mummy'], + attack: 30, + classfication: 'Spirit Pokémon', + defense: 85, + hp: 38, + japaneseName: 'Desumasuデスマス', + name: 'Yamask', + id: 562, + generation: 5, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Mummy'], + attack: 50, + classfication: 'Coffin Pokémon', + defense: 145, + hp: 58, + japaneseName: 'Desukarnデスカーン', + name: 'Cofagrigus', + id: 563, + generation: 5, + isLegendary: false, + types: ['ghost'] + }, + { + abilities: ['Solid Rock', 'Sturdy', 'Swift Swim'], + attack: 78, + classfication: 'Prototurtle Pokémon', + defense: 103, + hp: 54, + japaneseName: 'Protogaプロトーガ', + name: 'Tirtouga', + id: 564, + generation: 5, + isLegendary: false, + types: ['water', 'rock'] + }, + { + abilities: ['Solid Rock', 'Sturdy', 'Swift Swim'], + attack: 108, + classfication: 'Prototurtle Pokémon', + defense: 133, + hp: 74, + japaneseName: 'Abagouraアバゴーラ', + name: 'Carracosta', + id: 565, + generation: 5, + isLegendary: false, + types: ['water', 'rock'] + }, + { + abilities: ['Defeatist'], + attack: 112, + classfication: 'First Bird Pokémon', + defense: 45, + hp: 55, + japaneseName: 'Archenアーケン', + name: 'Archen', + id: 566, + generation: 5, + isLegendary: false, + types: ['rock', 'flying'] + }, + { + abilities: ['Defeatist'], + attack: 140, + classfication: 'First Bird Pokémon', + defense: 65, + hp: 75, + japaneseName: 'Archeosアーケオス', + name: 'Archeops', + id: 567, + generation: 5, + isLegendary: false, + types: ['rock', 'flying'] + }, + { + abilities: ['Stench', 'Sticky Hold', 'Aftermath'], + attack: 50, + classfication: 'Trash Bag Pokémon', + defense: 62, + hp: 50, + japaneseName: 'Yabukuronヤブクロン', + name: 'Trubbish', + id: 568, + generation: 5, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Stench', 'Weak Armor', 'Aftermath'], + attack: 95, + classfication: 'Trash Heap Pokémon', + defense: 82, + hp: 80, + japaneseName: 'Dustdasダストダス', + name: 'Garbodor', + id: 569, + generation: 5, + isLegendary: false, + types: ['poison'] + }, + { + abilities: ['Illusion'], + attack: 65, + classfication: 'Tricky Fox Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Zoruaゾロア', + name: 'Zorua', + id: 570, + generation: 5, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Illusion'], + attack: 105, + classfication: 'Illusion Fox Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Zoroarkゾロアーク', + name: 'Zoroark', + id: 571, + generation: 5, + isLegendary: false, + types: ['dark'] + }, + { + abilities: ['Cute Charm', 'Technician', 'Skill Link'], + attack: 50, + classfication: 'Chinchilla Pokémon', + defense: 40, + hp: 55, + japaneseName: 'Chillarmyチラーミィ', + name: 'Minccino', + id: 572, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Cute Charm', 'Technician', 'Skill Link'], + attack: 95, + classfication: 'Scarf Pokémon', + defense: 60, + hp: 75, + japaneseName: 'Chillaccinoチラチーノ', + name: 'Cinccino', + id: 573, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Frisk', 'Competitive', 'Shadow Tag'], + attack: 30, + classfication: 'Fixation Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Gothimuゴチム', + name: 'Gothita', + id: 574, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Frisk', 'Competitive', 'Shadow Tag'], + attack: 45, + classfication: 'Manipulate Pokémon', + defense: 70, + hp: 60, + japaneseName: 'Gothimiruゴチミル', + name: 'Gothorita', + id: 575, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Frisk', 'Competitive', 'Shadow Tag'], + attack: 55, + classfication: 'Astral Body Pokémon', + defense: 95, + hp: 70, + japaneseName: 'Gothiruselleゴチルゼル', + name: 'Gothitelle', + id: 576, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], + attack: 30, + classfication: 'Cell Pokémon', + defense: 40, + hp: 45, + japaneseName: 'Uniranユニラン', + name: 'Solosis', + id: 577, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], + attack: 40, + classfication: 'Mitosis Pokémon', + defense: 50, + hp: 65, + japaneseName: 'Doublanダブラン', + name: 'Duosion', + id: 578, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], + attack: 65, + classfication: 'Multiplying Pokémon', + defense: 75, + hp: 110, + japaneseName: 'Lanculusランクルス', + name: 'Reuniclus', + id: 579, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Keen Eye', 'Big Pecks', 'Hydration'], + attack: 44, + classfication: 'Water Bird Pokémon', + defense: 50, + hp: 62, + japaneseName: 'Koaruhieコアルヒー', + name: 'Ducklett', + id: 580, + generation: 5, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Keen Eye', 'Big Pecks', 'Hydration'], + attack: 87, + classfication: 'White Bird Pokémon', + defense: 63, + hp: 75, + japaneseName: 'Swannaスワンナ', + name: 'Swanna', + id: 581, + generation: 5, + isLegendary: false, + types: ['water', 'flying'] + }, + { + abilities: ['Ice Body', 'Snow Cloak', 'Weak Armor'], + attack: 50, + classfication: 'Fresh Snow Pokémon', + defense: 50, + hp: 36, + japaneseName: 'Vanipetiバニプッチ', + name: 'Vanillite', + id: 582, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Ice Body', 'Snow Cloak', 'Weak Armor'], + attack: 65, + classfication: 'Icy Snow Pokémon', + defense: 65, + hp: 51, + japaneseName: 'Vanirichバニリッチ', + name: 'Vanillish', + id: 583, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Ice Body', 'Snow Warning', 'Weak Armor'], + attack: 95, + classfication: 'Snowstorm Pokémon', + defense: 85, + hp: 71, + japaneseName: 'Baivanillaバイバニラ', + name: 'Vanilluxe', + id: 584, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Chlorophyll', 'Sap Sipper', 'Serene Grace'], + attack: 60, + classfication: 'Season Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Shikijikaシキジカ', + name: 'Deerling', + id: 585, + generation: 5, + isLegendary: false, + types: ['normal', 'grass'] + }, + { + abilities: ['Chlorophyll', 'Sap Sipper', 'Serene Grace'], + attack: 100, + classfication: 'Season Pokémon', + defense: 70, + hp: 80, + japaneseName: 'Mebukijikaメブキジカ', + name: 'Sawsbuck', + id: 586, + generation: 5, + isLegendary: false, + types: ['normal', 'grass'] + }, + { + abilities: ['Static', 'Motor Drive'], + attack: 75, + classfication: 'Sky Squirrel Pokémon', + defense: 60, + hp: 55, + japaneseName: 'Emongaエモンガ', + name: 'Emolga', + id: 587, + generation: 5, + isLegendary: false, + types: ['electric', 'flying'] + }, + { + abilities: ['Swarm', 'Shed Skin', 'No Guard'], + attack: 75, + classfication: 'Clamping Pokémon', + defense: 45, + hp: 50, + japaneseName: 'Kaburumoカブルモ', + name: 'Karrablast', + id: 588, + generation: 5, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Swarm', 'Shell Armor', 'Overcoat'], + attack: 135, + classfication: 'Cavalry Pokémon', + defense: 105, + hp: 70, + japaneseName: 'Chevargoシュバルゴ', + name: 'Escavalier', + id: 589, + generation: 5, + isLegendary: false, + types: ['bug', 'steel'] + }, + { + abilities: ['Effect Spore', 'Regenerator'], + attack: 55, + classfication: 'Mushroom Pokémon', + defense: 45, + hp: 69, + japaneseName: 'Tamagetakeタマゲタケ', + name: 'Foongus', + id: 590, + generation: 5, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Effect Spore', 'Regenerator'], + attack: 85, + classfication: 'Mushroom Pokémon', + defense: 70, + hp: 114, + japaneseName: 'Morobareruモロバレル', + name: 'Amoonguss', + id: 591, + generation: 5, + isLegendary: false, + types: ['grass', 'poison'] + }, + { + abilities: ['Water Absorb', 'Cursed Body', 'Damp'], + attack: 40, + classfication: 'Floating Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Pururillプルリル', + name: 'Frillish', + id: 592, + generation: 5, + isLegendary: false, + types: ['water', 'ghost'] + }, + { + abilities: ['Water Absorb', 'Cursed Body', 'Damp'], + attack: 60, + classfication: 'Floating Pokémon', + defense: 70, + hp: 100, + japaneseName: 'Burungelブルンゲル', + name: 'Jellicent', + id: 593, + generation: 5, + isLegendary: false, + types: ['water', 'ghost'] + }, + { + abilities: ['Healer', 'Hydration', 'Regenerator'], + attack: 75, + classfication: 'Caring Pokémon', + defense: 80, + hp: 165, + japaneseName: 'Mamanbouママンボウ', + name: 'Alomomola', + id: 594, + generation: 5, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Compoundeyes', 'Unnerve', 'Swarm'], + attack: 47, + classfication: 'Attaching Pokémon', + defense: 50, + hp: 50, + japaneseName: 'Bachuruバチュル', + name: 'Joltik', + id: 595, + generation: 5, + isLegendary: false, + types: ['bug', 'electric'] + }, + { + abilities: ['Compoundeyes', 'Unnerve', 'Swarm'], + attack: 77, + classfication: 'EleSpider Pokémon', + defense: 60, + hp: 70, + japaneseName: 'Dentulaデンチュラ', + name: 'Galvantula', + id: 596, + generation: 5, + isLegendary: false, + types: ['bug', 'electric'] + }, + { + abilities: ['Iron Barbs'], + attack: 50, + classfication: 'Thorn Seed Pokémon', + defense: 91, + hp: 44, + japaneseName: 'Tesseedテッシード', + name: 'Ferroseed', + id: 597, + generation: 5, + isLegendary: false, + types: ['grass', 'steel'] + }, + { + abilities: ['Iron Barbs', 'Anticipation'], + attack: 94, + classfication: 'Thorn Pod Pokémon', + defense: 131, + hp: 74, + japaneseName: 'Nutreyナットレイ', + name: 'Ferrothorn', + id: 598, + generation: 5, + isLegendary: false, + types: ['grass', 'steel'] + }, + { + abilities: ['Plus', 'Minus', 'Clear Body'], + attack: 55, + classfication: 'Gear Pokémon', + defense: 70, + hp: 40, + japaneseName: 'Giaruギアル', + name: 'Klink', + id: 599, + generation: 5, + isLegendary: false, + types: ['steel'] + }, + { + abilities: ['Plus', 'Minus', 'Clear Body'], + attack: 80, + classfication: 'Gear Pokémon', + defense: 95, + hp: 60, + japaneseName: 'Gigiaruギギアル', + name: 'Klang', + id: 600, + generation: 5, + isLegendary: false, + types: ['steel'] + }, + { + abilities: ['Plus', 'Minus', 'Clear Body'], + attack: 100, + classfication: 'Gear Pokémon', + defense: 115, + hp: 60, + japaneseName: 'Gigigiaruギギギアル', + name: 'Klinklang', + id: 601, + generation: 5, + isLegendary: false, + types: ['steel'] + }, + { + abilities: ['Levitate'], + attack: 55, + classfication: 'EleFish Pokémon', + defense: 40, + hp: 35, + japaneseName: 'Shibishirasuシビシラス', + name: 'Tynamo', + id: 602, + generation: 5, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Levitate'], + attack: 85, + classfication: 'EleFish Pokémon', + defense: 70, + hp: 65, + japaneseName: 'Shibibeelシビビール', + name: 'Eelektrik', + id: 603, + generation: 5, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Levitate'], + attack: 115, + classfication: 'EleFish Pokémon', + defense: 80, + hp: 85, + japaneseName: 'Shibirudonシビルドン', + name: 'Eelektross', + id: 604, + generation: 5, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Telepathy', 'Synchronize', 'Analytic'], + attack: 55, + classfication: 'Cerebral Pokémon', + defense: 55, + hp: 55, + japaneseName: 'Ligrayリグレー', + name: 'Elgyem', + id: 605, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Telepathy', 'Synchronize', 'Analytic'], + attack: 75, + classfication: 'Cerebral Pokémon', + defense: 75, + hp: 75, + japaneseName: 'Ohbemオーベム', + name: 'Beheeyem', + id: 606, + generation: 5, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], + attack: 30, + classfication: 'Candle Pokémon', + defense: 55, + hp: 50, + japaneseName: 'Hitomoshiヒトモシ', + name: 'Litwick', + id: 607, + generation: 5, + isLegendary: false, + types: ['ghost', 'fire'] + }, + { + abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], + attack: 40, + classfication: 'Lamp Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Lamplerランプラー', + name: 'Lampent', + id: 608, + generation: 5, + isLegendary: false, + types: ['ghost', 'fire'] + }, + { + abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], + attack: 55, + classfication: 'Luring Pokémon', + defense: 90, + hp: 60, + japaneseName: 'Chandelaシャンデラ', + name: 'Chandelure', + id: 609, + generation: 5, + isLegendary: false, + types: ['ghost', 'fire'] + }, + { + abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], + attack: 87, + classfication: 'Tusk Pokémon', + defense: 60, + hp: 46, + japaneseName: 'Kibagoキバゴ', + name: 'Axew', + id: 610, + generation: 5, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], + attack: 117, + classfication: 'Axe Jaw Pokémon', + defense: 70, + hp: 66, + japaneseName: 'Onondoオノンド', + name: 'Fraxure', + id: 611, + generation: 5, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], + attack: 147, + classfication: 'Axe Jaw Pokémon', + defense: 90, + hp: 76, + japaneseName: 'Ononokusオノノクス', + name: 'Haxorus', + id: 612, + generation: 5, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Snow Cloak', 'Slush Rush', 'Rattled'], + attack: 70, + classfication: 'Chill Pokémon', + defense: 40, + hp: 55, + japaneseName: 'Kumasyunクマシュン', + name: 'Cubchoo', + id: 613, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Snow Cloak', 'Slush Rush', 'Swift Swim'], + attack: 130, + classfication: 'Freezing Pokémon', + defense: 80, + hp: 95, + japaneseName: 'Tunbearツンベアー', + name: 'Beartic', + id: 614, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Levitate'], + attack: 50, + classfication: 'Crystallizing Pokémon', + defense: 50, + hp: 80, + japaneseName: 'Freegeoフリージオ', + name: 'Cryogonal', + id: 615, + generation: 5, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Hydration', 'Shell Armor', 'Overcoat'], + attack: 40, + classfication: 'Snail Pokémon', + defense: 85, + hp: 50, + japaneseName: 'Chobomakiチョボマキ', + name: 'Shelmet', + id: 616, + generation: 5, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Hydration', 'Sticky Hold', 'Unburden'], + attack: 70, + classfication: 'Shell Out Pokémon', + defense: 40, + hp: 80, + japaneseName: 'Agilderアギルダー', + name: 'Accelgor', + id: 617, + generation: 5, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Static', 'Limber', 'Sand Veil'], + attack: 66, + classfication: 'Trap Pokémon', + defense: 84, + hp: 109, + japaneseName: 'Maggyoマッギョ', + name: 'Stunfisk', + id: 618, + generation: 5, + isLegendary: false, + types: ['ground', 'electric'] + }, + { + abilities: ['Inner Focus', 'Regenerator', 'Reckless'], + attack: 85, + classfication: 'Martial Arts Pokémon', + defense: 50, + hp: 45, + japaneseName: 'Kojofuコジョフー', + name: 'Mienfoo', + id: 619, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Inner Focus', 'Regenerator', 'Reckless'], + attack: 125, + classfication: 'Martial Arts Pokémon', + defense: 60, + hp: 65, + japaneseName: 'Kojondoコジョンド', + name: 'Mienshao', + id: 620, + generation: 5, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Rough Skin', 'Sheer Force', 'Mold Breaker'], + attack: 120, + classfication: 'Cave Pokémon', + defense: 90, + hp: 77, + japaneseName: 'Crimganクリムガン', + name: 'Druddigon', + id: 621, + generation: 5, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Iron Fist', 'Klutz', 'No Guard'], + attack: 74, + classfication: 'Automaton Pokémon', + defense: 50, + hp: 59, + japaneseName: 'Gobitゴビット', + name: 'Golett', + id: 622, + generation: 5, + isLegendary: false, + types: ['ground', 'ghost'] + }, + { + abilities: ['Iron Fist', 'Klutz', 'No Guard'], + attack: 124, + classfication: 'Automaton Pokémon', + defense: 80, + hp: 89, + japaneseName: 'Goloogゴルーグ', + name: 'Golurk', + id: 623, + generation: 5, + isLegendary: false, + types: ['ground', 'ghost'] + }, + { + abilities: ['Defiant', 'Inner Focus', 'Pressure'], + attack: 85, + classfication: 'Sharp Blade Pokémon', + defense: 70, + hp: 45, + japaneseName: 'Komatanaコマタナ', + name: 'Pawniard', + id: 624, + generation: 5, + isLegendary: false, + types: ['dark', 'steel'] + }, + { + abilities: ['Defiant', 'Inner Focus', 'Pressure'], + attack: 125, + classfication: 'Sword Blade Pokémon', + defense: 100, + hp: 65, + japaneseName: 'Kirikizanキリキザン', + name: 'Bisharp', + id: 625, + generation: 5, + isLegendary: false, + types: ['dark', 'steel'] + }, + { + abilities: ['Reckless', 'Sap Sipper', 'Soundproof'], + attack: 110, + classfication: 'Bash Buffalo Pokémon', + defense: 95, + hp: 95, + japaneseName: 'Buffronバッフロン', + name: 'Bouffalant', + id: 626, + generation: 5, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Keen Eye', 'Sheer Force', 'Hustle'], + attack: 83, + classfication: 'Eaglet Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Washibonワシボン', + name: 'Rufflet', + id: 627, + generation: 5, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Sheer Force', 'Defiant'], + attack: 123, + classfication: 'Valiant Pokémon', + defense: 75, + hp: 100, + japaneseName: 'Warrgleウォーグル', + name: 'Braviary', + id: 628, + generation: 5, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Big Pecks', 'Overcoat', 'Weak Armor'], + attack: 55, + classfication: 'Diapered Pokémon', + defense: 75, + hp: 70, + japaneseName: 'Valchaiバルチャイ', + name: 'Vullaby', + id: 629, + generation: 5, + isLegendary: false, + types: ['dark', 'flying'] + }, + { + abilities: ['Big Pecks', 'Overcoat', 'Weak Armor'], + attack: 65, + classfication: 'Bone Vulture Pokémon', + defense: 105, + hp: 110, + japaneseName: 'Vulginaバルジーナ', + name: 'Mandibuzz', + id: 630, + generation: 5, + isLegendary: false, + types: ['dark', 'flying'] + }, + { + abilities: ['Gluttony', 'Flash Fire', 'White Smoke'], + attack: 97, + classfication: 'Anteater Pokémon', + defense: 66, + hp: 85, + japaneseName: 'Kuitaranクイタラン', + name: 'Heatmor', + id: 631, + generation: 5, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Swarm', 'Hustle', 'Truant'], + attack: 109, + classfication: 'Iron Ant Pokémon', + defense: 112, + hp: 58, + japaneseName: 'Aiantアイアント', + name: 'Durant', + id: 632, + generation: 5, + isLegendary: false, + types: ['bug', 'steel'] + }, + { + abilities: ['Hustle'], + attack: 65, + classfication: 'Irate Pokémon', + defense: 50, + hp: 52, + japaneseName: 'Monozuモノズ', + name: 'Deino', + id: 633, + generation: 5, + isLegendary: false, + types: ['dark', 'dragon'] + }, + { + abilities: ['Hustle'], + attack: 85, + classfication: 'Hostile Pokémon', + defense: 70, + hp: 72, + japaneseName: 'Diheadジヘッド', + name: 'Zweilous', + id: 634, + generation: 5, + isLegendary: false, + types: ['dark', 'dragon'] + }, + { + abilities: ['Levitate'], + attack: 105, + classfication: 'Brutal Pokémon', + defense: 90, + hp: 92, + japaneseName: 'Sazandoraサザンドラ', + name: 'Hydreigon', + id: 635, + generation: 5, + isLegendary: false, + types: ['dark', 'dragon'] + }, + { + abilities: ['Flame Body', 'Swarm'], + attack: 85, + classfication: 'Torch Pokémon', + defense: 55, + hp: 55, + japaneseName: 'Merlarvaメラルバ', + name: 'Larvesta', + id: 636, + generation: 5, + isLegendary: false, + types: ['bug', 'fire'] + }, + { + abilities: ['Flame Body', 'Swarm'], + attack: 60, + classfication: 'Sun Pokémon', + defense: 65, + hp: 85, + japaneseName: 'Ulgamothウルガモス', + name: 'Volcarona', + id: 637, + generation: 5, + isLegendary: false, + types: ['bug', 'fire'] + }, + { + abilities: ['Justified'], + attack: 90, + classfication: 'Iron Will Pokémon', + defense: 129, + hp: 91, + japaneseName: 'Cobalonコバルオン', + name: 'Cobalion', + id: 638, + generation: 5, + isLegendary: false, + types: ['steel', 'fighting'] + }, + { + abilities: ['Justified'], + attack: 129, + classfication: 'Cavern Pokémon', + defense: 90, + hp: 91, + japaneseName: 'Terrakionテラキオン', + name: 'Terrakion', + id: 639, + generation: 5, + isLegendary: false, + types: ['rock', 'fighting'] + }, + { + abilities: ['Justified'], + attack: 90, + classfication: 'Grassland Pokémon', + defense: 72, + hp: 91, + japaneseName: 'Virizionビリジオン', + name: 'Virizion', + id: 640, + generation: 5, + isLegendary: false, + types: ['grass', 'fighting'] + }, + { + abilities: ['Prankster', 'Defiant', 'Regenerator'], + attack: 100, + classfication: 'Cyclone Pokémon', + defense: 80, + hp: 79, + japaneseName: 'Tornelos (keshin Forme)トルネロス', + name: 'Tornadus', + id: 641, + generation: 5, + isLegendary: false, + types: ['flying'] + }, + { + abilities: ['Prankster', 'Defiant', 'Volt Absorb'], + attack: 105, + classfication: 'Bolt Strike Pokémon', + defense: 70, + hp: 79, + japaneseName: 'Voltolos (keshin Forme)ボルトロス', + name: 'Thundurus', + id: 642, + generation: 5, + isLegendary: false, + types: ['electric', 'flying'] + }, + { + abilities: ['Turboblaze'], + attack: 120, + classfication: 'Vast White Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Reshiramレシラム', + name: 'Reshiram', + id: 643, + generation: 5, + isLegendary: false, + types: ['dragon', 'fire'] + }, + { + abilities: ['Teravolt'], + attack: 150, + classfication: 'Deep Black Pokémon', + defense: 120, + hp: 100, + japaneseName: 'Zekromゼクロム', + name: 'Zekrom', + id: 644, + generation: 5, + isLegendary: false, + types: ['dragon', 'electric'] + }, + { + abilities: ['Sand Force', 'Sheer Force', 'Intimidate'], + attack: 145, + classfication: 'Abundance Pokémon', + defense: 90, + hp: 89, + japaneseName: 'Landlos (keshin Forme)ランドロス', + name: 'Landorus', + id: 645, + generation: 5, + isLegendary: false, + types: ['ground', 'flying'] + }, + { + abilities: ['Pressure', 'Teravolt', 'Turboblaze'], + attack: 120, + classfication: 'Boundary Pokémon', + defense: 90, + hp: 125, + japaneseName: 'Kyuremキュレム', + name: 'Kyurem', + id: 646, + generation: 5, + isLegendary: false, + types: ['dragon', 'ice'] + }, + { + abilities: ['Justified'], + attack: 72, + classfication: 'Colt Pokémon', + defense: 90, + hp: 91, + japaneseName: 'Keldeo (itsumo No Sugata)ケルディオ', + name: 'Keldeo', + id: 647, + generation: 5, + isLegendary: false, + types: ['water', 'fighting'] + }, + { + abilities: ['Serene Grace'], + attack: 128, + classfication: 'Melody Pokémon', + defense: 90, + hp: 100, + japaneseName: 'Meloetta (step Forme)メロエッタ', + name: 'Meloetta', + id: 648, + generation: 5, + isLegendary: false, + types: ['normal', 'psychic'] + }, + { + abilities: ['Download'], + attack: 120, + classfication: 'Paleozoic Pokémon', + defense: 95, + hp: 71, + japaneseName: 'Genesectゲノセクト', + name: 'Genesect', + id: 649, + generation: 5, + isLegendary: false, + types: ['bug', 'steel'] + }, + { + abilities: ['Overgrow', 'Bulletproof'], + attack: 61, + classfication: 'Spiky Nut Pokémon', + defense: 65, + hp: 56, + japaneseName: 'Harimaronハリマロン', + name: 'Chespin', + id: 650, + generation: 6, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Bulletproof'], + attack: 78, + classfication: 'Spiny Armor Pokémon', + defense: 95, + hp: 61, + japaneseName: 'Hariborgハリボーグ', + name: 'Quilladin', + id: 651, + generation: 6, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Overgrow', 'Bulletproof'], + attack: 107, + classfication: 'Spiny Armor Pokémon', + defense: 122, + hp: 88, + japaneseName: 'Brigarronブリガロン', + name: 'Chesnaught', + id: 652, + generation: 6, + isLegendary: false, + types: ['grass', 'fighting'] + }, + { + abilities: ['Blaze', 'Magician'], + attack: 45, + classfication: 'Fox Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Fokkoフォッコ', + name: 'Fennekin', + id: 653, + generation: 6, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Magician'], + attack: 59, + classfication: 'Fox Pokémon', + defense: 58, + hp: 59, + japaneseName: 'Tairenarテールナー', + name: 'Braixen', + id: 654, + generation: 6, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Magician'], + attack: 69, + classfication: 'Fox Pokémon', + defense: 72, + hp: 75, + japaneseName: 'Mahoxyマフォクシー', + name: 'Delphox', + id: 655, + generation: 6, + isLegendary: false, + types: ['fire', 'psychic'] + }, + { + abilities: ['Torrent', 'Protean'], + attack: 56, + classfication: 'Bubble Frog Pokémon', + defense: 40, + hp: 41, + japaneseName: 'Keromatsuケロマツ', + name: 'Froakie', + id: 656, + generation: 6, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Protean'], + attack: 63, + classfication: 'Bubble Frog Pokémon', + defense: 52, + hp: 54, + japaneseName: 'Gekogashiraゲコガシラ', + name: 'Frogadier', + id: 657, + generation: 6, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Protean', 'Battle Bond'], + attack: 145, + classfication: 'Ninja Pokémon', + defense: 67, + hp: 72, + japaneseName: 'Gekkougaゲッコウガ', + name: 'Greninja', + id: 658, + generation: 6, + isLegendary: false, + types: ['water', 'dark'] + }, + { + abilities: ['Pickup', 'Cheek Pouch', 'Huge Power'], + attack: 36, + classfication: 'Digging Pokémon', + defense: 38, + hp: 38, + japaneseName: 'Horubeeホルビー', + name: 'Bunnelby', + id: 659, + generation: 6, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Pickup', 'Cheek Pouch', 'Huge Power'], + attack: 56, + classfication: 'Digging Pokémon', + defense: 77, + hp: 85, + japaneseName: 'Horudoホルード', + name: 'Diggersby', + id: 660, + generation: 6, + isLegendary: false, + types: ['normal', 'ground'] + }, + { + abilities: ['Big Pecks', 'Gale Wings'], + attack: 50, + classfication: 'Tiny Robin Pokémon', + defense: 43, + hp: 45, + japaneseName: 'Yayakomaヤヤコマ', + name: 'Fletchling', + id: 661, + generation: 6, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Flame Body', 'Gale Wings'], + attack: 73, + classfication: 'Ember Pokémon', + defense: 55, + hp: 62, + japaneseName: 'Hinoyakomaヒノヤコマ', + name: 'Fletchinder', + id: 662, + generation: 6, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Flame Body', 'Gale Wings'], + attack: 81, + classfication: 'Scorching Pokémon', + defense: 71, + hp: 78, + japaneseName: 'Fiarrowファイアロー', + name: 'Talonflame', + id: 663, + generation: 6, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Shield Dust', 'Compoundeyes', 'Friend Guard'], + attack: 35, + classfication: 'Scatterdust Pokémon', + defense: 40, + hp: 38, + japaneseName: 'Kofukimushiコフキムシ', + name: 'Scatterbug', + id: 664, + generation: 6, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Shed Skin', 'Friend Guard'], + attack: 22, + classfication: 'Scatterdust Pokémon', + defense: 60, + hp: 45, + japaneseName: 'Kofuuraiコフーライ', + name: 'Spewpa', + id: 665, + generation: 6, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Shield Dust', 'Compoundeyes', 'Friend Guard'], + attack: 52, + classfication: 'Scale Pokémon', + defense: 50, + hp: 80, + japaneseName: 'Viviyonビビヨン', + name: 'Vivillon', + id: 666, + generation: 6, + isLegendary: false, + types: ['bug', 'flying'] + }, + { + abilities: ['Rivalry', 'Unnerve', 'Moxie'], + attack: 50, + classfication: 'Lion Cub Pokémon', + defense: 58, + hp: 62, + japaneseName: 'Shishikoシシコ', + name: 'Litleo', + id: 667, + generation: 6, + isLegendary: false, + types: ['fire', 'normal'] + }, + { + abilities: ['Rivalry', 'Unnerve', 'Moxie'], + attack: 68, + classfication: 'Royal Pokémon', + defense: 72, + hp: 86, + japaneseName: 'Kaenjishiカエンジシ', + name: 'Pyroar', + id: 668, + generation: 6, + isLegendary: false, + types: ['fire', 'normal'] + }, + { + abilities: ['Flower Veil', 'Symbiosis'], + attack: 38, + classfication: 'Single Bloom Pokémon', + defense: 39, + hp: 44, + japaneseName: 'Flabebeフラベベ', + name: 'Flabébé', + id: 669, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Flower Veil', 'Symbiosis'], + attack: 65, + classfication: 'Fairy Pokémon', + defense: 67, + hp: 74, + japaneseName: 'Floetteフラエッテ', + name: 'Floette', + id: 670, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Flower Veil', 'Symbiosis'], + attack: 65, + classfication: 'Garden Pokémon', + defense: 68, + hp: 78, + japaneseName: 'Florgesフラージェス', + name: 'Florges', + id: 671, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Sap Sipper', 'Grass Pelt'], + attack: 65, + classfication: 'Mount Pokémon', + defense: 48, + hp: 66, + japaneseName: 'Meecleメェークル', + name: 'Skiddo', + id: 672, + generation: 6, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Sap Sipper', 'Grass Pelt'], + attack: 100, + classfication: 'Mount Pokémon', + defense: 62, + hp: 123, + japaneseName: 'Gogoatゴーゴート', + name: 'Gogoat', + id: 673, + generation: 6, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Iron Fist', 'Mold Breaker', 'Scrappy'], + attack: 82, + classfication: 'Playful Pokémon', + defense: 62, + hp: 67, + japaneseName: 'Yanchamヤンチャム', + name: 'Pancham', + id: 674, + generation: 6, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Iron Fist', 'Mold Breaker', 'Scrappy'], + attack: 124, + classfication: 'Daunting Pokémon', + defense: 78, + hp: 95, + japaneseName: 'Gorondaゴロンダ', + name: 'Pangoro', + id: 675, + generation: 6, + isLegendary: false, + types: ['fighting', 'dark'] + }, + { + abilities: ['Fur Coat'], + attack: 80, + classfication: 'Poodle Pokémon', + defense: 60, + hp: 75, + japaneseName: 'Trimmienトリミアン', + name: 'Furfrou', + id: 676, + generation: 6, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Keen Eye', 'Infiltrator', 'Own Tempo'], + attack: 48, + classfication: 'Restraint Pokémon', + defense: 54, + hp: 62, + japaneseName: 'Nyasperニャスパー', + name: 'Espurr', + id: 677, + generation: 6, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Keen Eye', 'Infiltrator', 'Prankster', 'Competitive'], + attack: 48, + classfication: 'Constraint Pokémon', + defense: 76, + hp: 74, + japaneseName: 'Nyaonixニャオニクス', + name: 'Meowstic', + id: 678, + generation: 6, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['No Guard'], + attack: 80, + classfication: 'Sword Pokémon', + defense: 100, + hp: 45, + japaneseName: 'Hitotsukiヒトツキ', + name: 'Honedge', + id: 679, + generation: 6, + isLegendary: false, + types: ['steel', 'ghost'] + }, + { + abilities: ['No Guard'], + attack: 110, + classfication: 'Sword Pokémon', + defense: 150, + hp: 59, + japaneseName: 'Nidangillニダンギル', + name: 'Doublade', + id: 680, + generation: 6, + isLegendary: false, + types: ['steel', 'ghost'] + }, + { + abilities: ['Stance Change'], + attack: 150, + classfication: 'Royal Sword Pokémon', + defense: 50, + hp: 60, + japaneseName: 'Gillgardギルガルド', + name: 'Aegislash', + id: 681, + generation: 6, + isLegendary: false, + types: ['steel', 'ghost'] + }, + { + abilities: ['Healer', 'Aroma Veil'], + attack: 52, + classfication: 'Perfume Pokémon', + defense: 60, + hp: 78, + japaneseName: 'Shushupuシュシュプ', + name: 'Spritzee', + id: 682, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Healer', 'Aroma Veil'], + attack: 72, + classfication: 'Fragrance Pokémon', + defense: 72, + hp: 101, + japaneseName: 'Frefuwanフレフワン', + name: 'Aromatisse', + id: 683, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Sweet Veil', 'Unburden'], + attack: 48, + classfication: 'Cotton Candy Pokémon', + defense: 66, + hp: 62, + japaneseName: 'Peroppafuペロッパフ', + name: 'Swirlix', + id: 684, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Sweet Veil', 'Unburden'], + attack: 80, + classfication: 'Meringue Pokémon', + defense: 86, + hp: 82, + japaneseName: 'Peroreamペロリーム', + name: 'Slurpuff', + id: 685, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Contrary', 'Suction Cups', 'Infiltrator'], + attack: 54, + classfication: 'Revolving Pokémon', + defense: 53, + hp: 53, + japaneseName: 'Maaiikaマーイーカ', + name: 'Inkay', + id: 686, + generation: 6, + isLegendary: false, + types: ['dark', 'psychic'] + }, + { + abilities: ['Contrary', 'Suction Cups', 'Infiltrator'], + attack: 92, + classfication: 'Overturning Pokémon', + defense: 88, + hp: 86, + japaneseName: 'Calamaneroカラマネロ', + name: 'Malamar', + id: 687, + generation: 6, + isLegendary: false, + types: ['dark', 'psychic'] + }, + { + abilities: ['Tough Claws', 'Sniper', 'Pickpocket'], + attack: 52, + classfication: 'Two-Handed Pokémon', + defense: 67, + hp: 42, + japaneseName: 'Kameteteカメテテ', + name: 'Binacle', + id: 688, + generation: 6, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Tough Claws', 'Sniper', 'Pickpocket'], + attack: 105, + classfication: 'Collective Pokémon', + defense: 115, + hp: 72, + japaneseName: 'Gamenodesガメノデス', + name: 'Barbaracle', + id: 689, + generation: 6, + isLegendary: false, + types: ['rock', 'water'] + }, + { + abilities: ['Poison Point', 'Poison Touch', 'Adaptability'], + attack: 60, + classfication: 'Mock Kelp Pokémon', + defense: 60, + hp: 50, + japaneseName: 'Kuzumoクズモー', + name: 'Skrelp', + id: 690, + generation: 6, + isLegendary: false, + types: ['poison', 'water'] + }, + { + abilities: ['Poison Point', 'Poison Touch', 'Adaptability'], + attack: 75, + classfication: 'Mock Kelp Pokémon', + defense: 90, + hp: 65, + japaneseName: 'Dramidoroドラミドロ', + name: 'Dragalge', + id: 691, + generation: 6, + isLegendary: false, + types: ['poison', 'dragon'] + }, + { + abilities: ['Mega Launcher'], + attack: 53, + classfication: 'Water Gun Pokémon', + defense: 62, + hp: 50, + japaneseName: 'Udeppouウデッポウ', + name: 'Clauncher', + id: 692, + generation: 6, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Mega Launcher'], + attack: 73, + classfication: 'Howitzer Pokémon', + defense: 88, + hp: 71, + japaneseName: 'Blosterブロスター', + name: 'Clawitzer', + id: 693, + generation: 6, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Dry Skin', 'Sand Veil', 'Solar Power'], + attack: 38, + classfication: 'Generator Pokémon', + defense: 33, + hp: 44, + japaneseName: 'Erikiteruエリキテル', + name: 'Helioptile', + id: 694, + generation: 6, + isLegendary: false, + types: ['electric', 'normal'] + }, + { + abilities: ['Dry Skin', 'Sand Veil', 'Solar Power'], + attack: 55, + classfication: 'Generator Pokémon', + defense: 52, + hp: 62, + japaneseName: 'Elezardエレザード', + name: 'Heliolisk', + id: 695, + generation: 6, + isLegendary: false, + types: ['electric', 'normal'] + }, + { + abilities: ['Strong Jaw', 'Sturdy'], + attack: 89, + classfication: 'Royal Heir Pokémon', + defense: 77, + hp: 58, + japaneseName: 'Chigorasチゴラス', + name: 'Tyrunt', + id: 696, + generation: 6, + isLegendary: false, + types: ['rock', 'dragon'] + }, + { + abilities: ['Strong Jaw', 'Rock Head'], + attack: 121, + classfication: 'Despot Pokémon', + defense: 119, + hp: 82, + japaneseName: 'Gachigorasガチゴラス', + name: 'Tyrantrum', + id: 697, + generation: 6, + isLegendary: false, + types: ['rock', 'dragon'] + }, + { + abilities: ['Refrigerate', 'Snow Warning'], + attack: 59, + classfication: 'Tundra Pokémon', + defense: 50, + hp: 77, + japaneseName: 'Amarusアマルス', + name: 'Amaura', + id: 698, + generation: 6, + isLegendary: false, + types: ['rock', 'ice'] + }, + { + abilities: ['Refrigerate', 'Snow Warning'], + attack: 77, + classfication: 'Tundra Pokémon', + defense: 72, + hp: 123, + japaneseName: 'Amarurugaアマルルガ', + name: 'Aurorus', + id: 699, + generation: 6, + isLegendary: false, + types: ['rock', 'ice'] + }, + { + abilities: ['Cute Charm', 'Pixilate'], + attack: 65, + classfication: 'Intertwining Pokémon', + defense: 65, + hp: 95, + japaneseName: 'Nymphiaニンフィア', + name: 'Sylveon', + id: 700, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Limber', 'Unburden', 'Mold Breaker'], + attack: 92, + classfication: 'Wrestling Pokémon', + defense: 75, + hp: 78, + japaneseName: 'Luchabullルチャブル', + name: 'Hawlucha', + id: 701, + generation: 6, + isLegendary: false, + types: ['fighting', 'flying'] + }, + { + abilities: ['Cheek Pouch', 'Pickup', 'Plus'], + attack: 58, + classfication: 'Antenna Pokémon', + defense: 57, + hp: 67, + japaneseName: 'Dedenneデデンネ', + name: 'Dedenne', + id: 702, + generation: 6, + isLegendary: false, + types: ['electric', 'fairy'] + }, + { + abilities: ['Clear Body', 'Sturdy'], + attack: 50, + classfication: 'Jewel Pokémon', + defense: 150, + hp: 50, + japaneseName: 'Melecieメレシー', + name: 'Carbink', + id: 703, + generation: 6, + isLegendary: false, + types: ['rock', 'fairy'] + }, + { + abilities: ['Sap Sipper', 'Hydration', 'Gooey'], + attack: 50, + classfication: 'Soft Tissue Pokémon', + defense: 35, + hp: 45, + japaneseName: 'Numeraヌメラ', + name: 'Goomy', + id: 704, + generation: 6, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Sap Sipper', 'Hydration', 'Gooey'], + attack: 75, + classfication: 'Soft Tissue Pokémon', + defense: 53, + hp: 68, + japaneseName: 'Numeilヌメイル', + name: 'Sliggoo', + id: 705, + generation: 6, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Sap Sipper', 'Hydration', 'Gooey'], + attack: 100, + classfication: 'Dragon Pokémon', + defense: 70, + hp: 90, + japaneseName: 'Numelgonヌメルゴン', + name: 'Goodra', + id: 706, + generation: 6, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Prankster', 'Magician'], + attack: 80, + classfication: 'Key Ring Pokémon', + defense: 91, + hp: 57, + japaneseName: 'Cleffyクレッフィ', + name: 'Klefki', + id: 707, + generation: 6, + isLegendary: false, + types: ['steel', 'fairy'] + }, + { + abilities: ['Natural Cure', 'Frisk', 'Harvest'], + attack: 70, + classfication: 'Stump Pokémon', + defense: 48, + hp: 43, + japaneseName: 'Bokureiボクレー', + name: 'Phantump', + id: 708, + generation: 6, + isLegendary: false, + types: ['ghost', 'grass'] + }, + { + abilities: ['Natural Cure', 'Frisk', 'Harvest'], + attack: 110, + classfication: 'Elder Tree Pokémon', + defense: 76, + hp: 85, + japaneseName: 'Ohrotオーロット', + name: 'Trevenant', + id: 709, + generation: 6, + isLegendary: false, + types: ['ghost', 'grass'] + }, + { + abilities: ['Pickup', 'Frisk', 'Insomnia'], + attack: 66, + classfication: 'Pumpkin Pokémon', + defense: 70, + hp: 59, + japaneseName: 'Bakecchaバケッチャ', + name: 'Pumpkaboo', + id: 710, + generation: 6, + isLegendary: false, + types: ['ghost', 'grass'] + }, + { + abilities: ['Pickup', 'Frisk', 'Insomnia'], + attack: 100, + classfication: 'Pumpkin Pokémon', + defense: 122, + hp: 85, + japaneseName: 'Pumpjinパンプジン', + name: 'Gourgeist', + id: 711, + generation: 6, + isLegendary: false, + types: ['ghost', 'grass'] + }, + { + abilities: ['Own Tempo', 'Ice Body', 'Sturdy'], + attack: 69, + classfication: 'Ice Chunk Pokémon', + defense: 85, + hp: 55, + japaneseName: 'Kachikohruカチコール', + name: 'Bergmite', + id: 712, + generation: 6, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Own Tempo', 'Ice Body', 'Sturdy'], + attack: 117, + classfication: 'Iceberg Pokémon', + defense: 184, + hp: 95, + japaneseName: 'Crebaseクレベース', + name: 'Avalugg', + id: 713, + generation: 6, + isLegendary: false, + types: ['ice'] + }, + { + abilities: ['Frisk', 'Infiltrator', 'Telepathy'], + attack: 30, + classfication: 'Sound Wave Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Onbatオンバット', + name: 'Noibat', + id: 714, + generation: 6, + isLegendary: false, + types: ['flying', 'dragon'] + }, + { + abilities: ['Frisk', 'Infiltrator', 'Telepathy'], + attack: 70, + classfication: 'Sound Wave Pokémon', + defense: 80, + hp: 85, + japaneseName: 'Onvernオンバーン', + name: 'Noivern', + id: 715, + generation: 6, + isLegendary: false, + types: ['flying', 'dragon'] + }, + { + abilities: ['Fairy Aura'], + attack: 131, + classfication: 'Life Pokémon', + defense: 95, + hp: 126, + japaneseName: 'Xerneasゼルネアス', + name: 'Xerneas', + id: 716, + generation: 6, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Dark Aura'], + attack: 131, + classfication: 'Destruction Pokémon', + defense: 95, + hp: 126, + japaneseName: 'Yveltalイベルタル', + name: 'Yveltal', + id: 717, + generation: 6, + isLegendary: false, + types: ['dark', 'flying'] + }, + { + abilities: ['Aura Break', 'Power Construct'], + attack: 100, + classfication: 'Order Pokémon', + defense: 121, + hp: 216, + japaneseName: 'Zygarde (10% Forme)ジガルデ', + name: 'Zygarde', + id: 718, + generation: 6, + isLegendary: false, + types: ['dragon', 'ground'] + }, + { + abilities: ['Clear Body'], + attack: 160, + classfication: 'Jewel Pokémon', + defense: 110, + hp: 50, + japaneseName: 'Diancieディアンシー', + name: 'Diancie', + id: 719, + generation: 6, + isLegendary: false, + types: ['rock', 'fairy'] + }, + { + abilities: ['Magician'], + attack: 160, + classfication: 'Mischief Pokémon (Confined)Djinn Pokémonn (Unbound)', + defense: 60, + hp: 80, + japaneseName: 'Hoopa (imashimerareshi Hoopa)フーパ', + name: 'Hoopa', + id: 720, + generation: 6, + isLegendary: false, + types: ['psychic', 'ghost'] + }, + { + abilities: ['Water Absorb'], + attack: 110, + classfication: 'Steam Pokémon', + defense: 120, + hp: 80, + japaneseName: 'Volcanionボルケニオン', + name: 'Volcanion', + id: 721, + generation: 6, + isLegendary: false, + types: ['fire', 'water'] + }, + { + abilities: ['Overgrow', 'Long Reach'], + attack: 55, + classfication: 'Grass Quill Pokémon', + defense: 55, + hp: 68, + japaneseName: 'Mokurohモクロー', + name: 'Rowlet', + id: 722, + generation: 7, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Overgrow', 'Long Reach'], + attack: 75, + classfication: 'Blade Quill Pokémon', + defense: 75, + hp: 78, + japaneseName: 'Fukuthrowフクスロー', + name: 'Dartrix', + id: 723, + generation: 7, + isLegendary: false, + types: ['grass', 'flying'] + }, + { + abilities: ['Overgrow', 'Long Reach'], + attack: 107, + classfication: 'Arrow Quill Pokémon', + defense: 75, + hp: 78, + japaneseName: 'Junaiperジュナイパー', + name: 'Decidueye', + id: 724, + generation: 7, + isLegendary: false, + types: ['grass', 'ghost'] + }, + { + abilities: ['Blaze', 'Intimidate'], + attack: 65, + classfication: 'Fire Cat Pokémon', + defense: 40, + hp: 45, + japaneseName: 'Nyabbyニャビー', + name: 'Litten', + id: 725, + generation: 7, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Intimidate'], + attack: 85, + classfication: 'Fire Cat Pokémon', + defense: 50, + hp: 65, + japaneseName: 'Nyaheatニャヒート', + name: 'Torracat', + id: 726, + generation: 7, + isLegendary: false, + types: ['fire'] + }, + { + abilities: ['Blaze', 'Intimidate'], + attack: 115, + classfication: 'Heel Pokémon', + defense: 90, + hp: 95, + japaneseName: 'Gaogaenガオガエン', + name: 'Incineroar', + id: 727, + generation: 7, + isLegendary: false, + types: ['fire', 'dark'] + }, + { + abilities: ['Torrent', 'Liquid Voice'], + attack: 54, + classfication: 'Sea Lion Pokémon', + defense: 54, + hp: 50, + japaneseName: 'Ashimariアシマリ', + name: 'Popplio', + id: 728, + generation: 7, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Liquid Voice'], + attack: 69, + classfication: 'Pop Star Pokémon', + defense: 69, + hp: 60, + japaneseName: 'Osyamariオシャマリ', + name: 'Brionne', + id: 729, + generation: 7, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Torrent', 'Liquid Voice'], + attack: 74, + classfication: 'Soloist Pokémon', + defense: 74, + hp: 80, + japaneseName: 'Ashireneアシレーヌ', + name: 'Primarina', + id: 730, + generation: 7, + isLegendary: false, + types: ['water', 'fairy'] + }, + { + abilities: ['Keen Eye', 'Skill Link', 'Pickup'], + attack: 75, + classfication: 'Woodpecker Pokémon', + defense: 30, + hp: 35, + japaneseName: 'Tsutsukeraツツケラ', + name: 'Pikipek', + id: 731, + generation: 7, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Skill Link', 'Pickup'], + attack: 85, + classfication: 'Bugle Beak Pokémon', + defense: 50, + hp: 55, + japaneseName: 'Kerarappaケララッパ', + name: 'Trumbeak', + id: 732, + generation: 7, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Keen Eye', 'Skill Link', 'Sheer Force'], + attack: 120, + classfication: 'Cannon Pokémon', + defense: 75, + hp: 80, + japaneseName: 'Dodekabashiドデカバシ', + name: 'Toucannon', + id: 733, + generation: 7, + isLegendary: false, + types: ['normal', 'flying'] + }, + { + abilities: ['Stakeout', 'Strong Jaw', 'Adaptability'], + attack: 70, + classfication: 'Loitering Pokémon', + defense: 30, + hp: 48, + japaneseName: 'Youngooseヤングース', + name: 'Yungoos', + id: 734, + generation: 7, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Stakeout', 'Strong Jaw', 'Adaptability'], + attack: 110, + classfication: 'Stakeout Pokémon', + defense: 60, + hp: 88, + japaneseName: 'Dekagooseデカグース', + name: 'Gumshoos', + id: 735, + generation: 7, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Swarm'], + attack: 62, + classfication: 'Larva Pokémon', + defense: 45, + hp: 47, + japaneseName: 'Agojimushiアゴジムシ', + name: 'Grubbin', + id: 736, + generation: 7, + isLegendary: false, + types: ['bug'] + }, + { + abilities: ['Battery'], + attack: 82, + classfication: 'Battery Pokémon', + defense: 95, + hp: 57, + japaneseName: 'Dendimushiデンヂムシ', + name: 'Charjabug', + id: 737, + generation: 7, + isLegendary: false, + types: ['bug', 'electric'] + }, + { + abilities: ['Levitate'], + attack: 70, + classfication: 'Stag Beetle Pokémon', + defense: 90, + hp: 77, + japaneseName: 'Kuwagannonクワガノン', + name: 'Vikavolt', + id: 738, + generation: 7, + isLegendary: false, + types: ['bug', 'electric'] + }, + { + abilities: ['Hyper Cutter', 'Iron Fist', 'Anger Point'], + attack: 82, + classfication: 'Boxing Pokémon', + defense: 57, + hp: 47, + japaneseName: 'Makenkaniマケンカニ', + name: 'Crabrawler', + id: 739, + generation: 7, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Hyper Cutter', 'Iron Fist', 'Anger Point'], + attack: 132, + classfication: 'Woolly Crab Pokémon', + defense: 77, + hp: 97, + japaneseName: 'Kekenkaniケケンカニ', + name: 'Crabominable', + id: 740, + generation: 7, + isLegendary: false, + types: ['fighting', 'ice'] + }, + { + abilities: ['Dancer'], + attack: 70, + classfication: 'Dancing Pokémon', + defense: 70, + hp: 75, + japaneseName: 'Odoridori (pachipachi Style)オドリドリ', + name: 'Oricorio', + id: 741, + generation: 7, + isLegendary: false, + types: ['fire', 'flying'] + }, + { + abilities: ['Honey Gather', 'Shield Dust', 'Sweet Veil'], + attack: 45, + classfication: 'Bee Fly Pokémon', + defense: 40, + hp: 40, + japaneseName: 'Abulyアブリー', + name: 'Cutiefly', + id: 742, + generation: 7, + isLegendary: false, + types: ['bug', 'fairy'] + }, + { + abilities: ['Honey Gather', 'Shield Dust', 'Sweet Veil'], + attack: 55, + classfication: 'Bee Fly Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Aburibbonアブリボン', + name: 'Ribombee', + id: 743, + generation: 7, + isLegendary: false, + types: ['bug', 'fairy'] + }, + { + abilities: ['Keen Eye', 'Vital Spirit', 'Steadfast'], + attack: 65, + classfication: 'Puppy Pokémon', + defense: 40, + hp: 45, + japaneseName: 'Iwankoイワンコ', + name: 'Rockruff', + id: 744, + generation: 7, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Keen Eye', 'Sand Rush', 'Steadfast', 'Keen Eye', 'Vital Spirit', 'No Guard'], + attack: 115, + classfication: 'Wolf Pokémon', + defense: 75, + hp: 85, + japaneseName: 'Lugarugan (mahiru No Sugata)ルガルガン', + name: 'Lycanroc', + id: 745, + generation: 7, + isLegendary: false, + types: ['rock'] + }, + { + abilities: ['Schooling'], + attack: 140, + classfication: 'Small Fry Pokémon', + defense: 130, + hp: 45, + japaneseName: 'Yowashi (tandoku No Sugata)ヨワシ', + name: 'Wishiwashi', + id: 746, + generation: 7, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Merciless', 'Limber', 'Regenerator'], + attack: 53, + classfication: 'Brutal Star Pokémon', + defense: 62, + hp: 50, + japaneseName: 'Hidoideヒドイデ', + name: 'Mareanie', + id: 747, + generation: 7, + isLegendary: false, + types: ['poison', 'water'] + }, + { + abilities: ['Merciless', 'Limber', 'Regenerator'], + attack: 63, + classfication: 'Brutal Star Pokémon', + defense: 152, + hp: 50, + japaneseName: 'Dohidoideドヒドイデ', + name: 'Toxapex', + id: 748, + generation: 7, + isLegendary: false, + types: ['poison', 'water'] + }, + { + abilities: ['Own Tempo', 'Stamina', 'Inner Focus'], + attack: 100, + classfication: 'Donkey Pokémon', + defense: 70, + hp: 70, + japaneseName: 'Dorobankoドロバンコ', + name: 'Mudbray', + id: 749, + generation: 7, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Own Tempo', 'Stamina', 'Inner Focus'], + attack: 125, + classfication: 'Draft Horse Pokémon', + defense: 100, + hp: 100, + japaneseName: 'Banbadoroバンバドロ', + name: 'Mudsdale', + id: 750, + generation: 7, + isLegendary: false, + types: ['ground'] + }, + { + abilities: ['Water Bubble', 'Water Absorb'], + attack: 40, + classfication: 'Water Bubble Pokémon', + defense: 52, + hp: 38, + japaneseName: 'Shizukumoシズクモ', + name: 'Dewpider', + id: 751, + generation: 7, + isLegendary: false, + types: ['water', 'bug'] + }, + { + abilities: ['Water Bubble', 'Water Absorb'], + attack: 70, + classfication: 'Water Bubble Pokémon', + defense: 92, + hp: 68, + japaneseName: 'Onishizukumoオニシズクモ', + name: 'Araquanid', + id: 752, + generation: 7, + isLegendary: false, + types: ['water', 'bug'] + }, + { + abilities: ['Leaf Guard', 'Contrary'], + attack: 55, + classfication: 'Sickle Grass Pokémon', + defense: 35, + hp: 40, + japaneseName: 'Karikiriカリキリ', + name: 'Fomantis', + id: 753, + generation: 7, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Leaf Guard', 'Contrary'], + attack: 105, + classfication: 'Bloom Sickle Pokémon', + defense: 90, + hp: 70, + japaneseName: 'Lalantesラランテス', + name: 'Lurantis', + id: 754, + generation: 7, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Illuminate', 'Effect Spore', 'Rain Dish'], + attack: 35, + classfication: 'Illuminating Pokémon', + defense: 55, + hp: 40, + japaneseName: 'Nemasyuネマシュ', + name: 'Morelull', + id: 755, + generation: 7, + isLegendary: false, + types: ['grass', 'fairy'] + }, + { + abilities: ['Illuminate', 'Effect Spore', 'Rain Dish'], + attack: 45, + classfication: 'Illuminating Pokémon', + defense: 80, + hp: 60, + japaneseName: 'Mashadeマシェード', + name: 'Shiinotic', + id: 756, + generation: 7, + isLegendary: false, + types: ['grass', 'fairy'] + }, + { + abilities: ['Corrosion', 'Oblivious'], + attack: 44, + classfication: 'Toxic Lizard Pokémon', + defense: 40, + hp: 48, + japaneseName: 'Yatoumoriヤトウモリ', + name: 'Salandit', + id: 757, + generation: 7, + isLegendary: false, + types: ['poison', 'fire'] + }, + { + abilities: ['Corrosion', 'Oblivious'], + attack: 64, + classfication: 'Toxic Lizard Pokémon', + defense: 60, + hp: 68, + japaneseName: 'Ennewtエンニュート', + name: 'Salazzle', + id: 758, + generation: 7, + isLegendary: false, + types: ['poison', 'fire'] + }, + { + abilities: ['Fluffy', 'Klutz', 'Cute Charm'], + attack: 75, + classfication: 'Flailing Pokémon', + defense: 50, + hp: 70, + japaneseName: 'Nuikogumaヌイコグマ', + name: 'Stufful', + id: 759, + generation: 7, + isLegendary: false, + types: ['normal', 'fighting'] + }, + { + abilities: ['Fluffy', 'Klutz', 'Unnerve'], + attack: 125, + classfication: 'Strong Arm Pokémon', + defense: 80, + hp: 120, + japaneseName: 'Kiterugumaキテルグマ', + name: 'Bewear', + id: 760, + generation: 7, + isLegendary: false, + types: ['normal', 'fighting'] + }, + { + abilities: ['Leaf Guard', 'Oblivious', 'Sweet Veil'], + attack: 30, + classfication: 'Fruit Pokémon', + defense: 38, + hp: 42, + japaneseName: 'Amakajiアマカジ', + name: 'Bounsweet', + id: 761, + generation: 7, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Leaf Guard', 'Oblivious', 'Sweet Veil'], + attack: 40, + classfication: 'Fruit Pokémon', + defense: 48, + hp: 52, + japaneseName: 'Amamaikoアママイコ', + name: 'Steenee', + id: 762, + generation: 7, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Leaf Guard', 'Queenly Majesty', 'Sweet Veil'], + attack: 120, + classfication: 'Fruit Pokémon', + defense: 98, + hp: 72, + japaneseName: 'Amajoアマージョ', + name: 'Tsareena', + id: 763, + generation: 7, + isLegendary: false, + types: ['grass'] + }, + { + abilities: ['Flower Veil', 'Triage', 'Natural Cure'], + attack: 52, + classfication: 'Posy Picker Pokémon', + defense: 90, + hp: 51, + japaneseName: 'Cuwawaキュワワー', + name: 'Comfey', + id: 764, + generation: 7, + isLegendary: false, + types: ['fairy'] + }, + { + abilities: ['Inner Focus', 'Telepathy', 'Symbiosis'], + attack: 60, + classfication: 'Sage Pokémon', + defense: 80, + hp: 90, + japaneseName: 'Yareyuutanヤレユータン', + name: 'Oranguru', + id: 765, + generation: 7, + isLegendary: false, + types: ['normal', 'psychic'] + }, + { + abilities: ['Receiver', 'Defiant'], + attack: 120, + classfication: 'Teamwork Pokémon', + defense: 90, + hp: 100, + japaneseName: 'Nagetukesaruナゲツケサル', + name: 'Passimian', + id: 766, + generation: 7, + isLegendary: false, + types: ['fighting'] + }, + { + abilities: ['Wimp Out'], + attack: 35, + classfication: 'Turn Tail Pokémon', + defense: 40, + hp: 25, + japaneseName: 'Kosokumushiコソクムシ', + name: 'Wimpod', + id: 767, + generation: 7, + isLegendary: false, + types: ['bug', 'water'] + }, + { + abilities: ['Emergency Exit'], + attack: 125, + classfication: 'Hard Scale Pokémon', + defense: 140, + hp: 75, + japaneseName: 'Gusokumushaグソクムシャ', + name: 'Golisopod', + id: 768, + generation: 7, + isLegendary: false, + types: ['bug', 'water'] + }, + { + abilities: ['Water Compaction', 'Sand Veil'], + attack: 55, + classfication: 'Sand Heap Pokémon', + defense: 80, + hp: 55, + japaneseName: 'Sunabaスナバァ', + name: 'Sandygast', + id: 769, + generation: 7, + isLegendary: false, + types: ['ghost', 'ground'] + }, + { + abilities: ['Water Compaction', 'Sand Veil'], + attack: 75, + classfication: 'Sand Castle Pokémon', + defense: 110, + hp: 85, + japaneseName: 'Sirodethnaシロデスナ', + name: 'Palossand', + id: 770, + generation: 7, + isLegendary: false, + types: ['ghost', 'ground'] + }, + { + abilities: ['Innards Out', 'Unaware'], + attack: 60, + classfication: 'Sea Cucumber Pokémon', + defense: 130, + hp: 55, + japaneseName: 'Namakobushiナマコブシ', + name: 'Pyukumuku', + id: 771, + generation: 7, + isLegendary: false, + types: ['water'] + }, + { + abilities: ['Battle Armor'], + attack: 95, + classfication: 'Synthetic Pokémon', + defense: 95, + hp: 95, + japaneseName: 'Type: Nullタイプ:ヌル', + name: 'Type: Null', + id: 772, + generation: 7, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['RKS System'], + attack: 95, + classfication: 'Synthetic Pokémon', + defense: 95, + hp: 95, + japaneseName: 'Silvadyシルヴァディ', + name: 'Silvally', + id: 773, + generation: 7, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Shields Down'], + attack: 100, + classfication: 'Meteor Pokémon', + defense: 60, + hp: 60, + japaneseName: 'Metenoメテノ', + name: 'Minior', + id: 774, + generation: 7, + isLegendary: false, + types: ['rock', 'flying'] + }, + { + abilities: ['Comatose'], + attack: 115, + classfication: 'Drowsing Pokémon', + defense: 65, + hp: 65, + japaneseName: 'Nekkoaraネッコアラ', + name: 'Komala', + id: 775, + generation: 7, + isLegendary: false, + types: ['normal'] + }, + { + abilities: ['Shell Armor'], + attack: 78, + classfication: 'Blast Turtle Pokémon', + defense: 135, + hp: 60, + japaneseName: 'Bakugamesバクガメス', + name: 'Turtonator', + id: 776, + generation: 7, + isLegendary: false, + types: ['fire', 'dragon'] + }, + { + abilities: ['Iron Barbs', 'Lightningrod', 'Sturdy'], + attack: 98, + classfication: 'Roly-Poly Pokémon', + defense: 63, + hp: 65, + japaneseName: 'Togedemaruトゲデマル', + name: 'Togedemaru', + id: 777, + generation: 7, + isLegendary: false, + types: ['electric', 'steel'] + }, + { + abilities: ['Disguise'], + attack: 90, + classfication: 'Disguise Pokémon', + defense: 80, + hp: 55, + japaneseName: 'Mimikkyuミミッキュ', + name: 'Mimikyu', + id: 778, + generation: 7, + isLegendary: false, + types: ['ghost', 'fairy'] + }, + { + abilities: ['Dazzling', 'Strong Jaw', 'Wonder Skin '], + attack: 105, + classfication: 'Gnash Teeth Pokémon', + defense: 70, + hp: 68, + japaneseName: 'Hagigishiriハギギシリ', + name: 'Bruxish', + id: 779, + generation: 7, + isLegendary: false, + types: ['water', 'psychic'] + }, + { + abilities: ['Berserk', 'Sap Sipper', 'Cloud Nine'], + attack: 60, + classfication: 'Placid Pokémon', + defense: 85, + hp: 78, + japaneseName: 'Jijilongジジーロン', + name: 'Drampa', + id: 780, + generation: 7, + isLegendary: false, + types: ['normal', 'dragon'] + }, + { + abilities: ['Steelworker'], + attack: 131, + classfication: 'Sea Creeper Pokémon', + defense: 100, + hp: 70, + japaneseName: 'Dadarinダダリン', + name: 'Dhelmise', + id: 781, + generation: 7, + isLegendary: false, + types: ['ghost', 'grass'] + }, + { + abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], + attack: 55, + classfication: 'Scaly Pokémon', + defense: 65, + hp: 45, + japaneseName: 'Jyarakoジャラコ', + name: 'Jangmo-o', + id: 782, + generation: 7, + isLegendary: false, + types: ['dragon'] + }, + { + abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], + attack: 75, + classfication: 'Scaly Pokémon', + defense: 90, + hp: 55, + japaneseName: 'Jyarangoジャランゴ', + name: 'Hakamo-o', + id: 783, + generation: 7, + isLegendary: false, + types: ['dragon', 'fighting'] + }, + { + abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], + attack: 110, + classfication: 'Scaly Pokémon', + defense: 125, + hp: 75, + japaneseName: 'Jyararangaジャラランガ', + name: 'Kommo-o', + id: 784, + generation: 7, + isLegendary: false, + types: ['dragon', 'fighting'] + }, + { + abilities: ['Electric Surge', 'Telepathy'], + attack: 115, + classfication: 'Land Spirit Pokémon', + defense: 85, + hp: 70, + japaneseName: 'Kapu-kokekoカプ・コケコ', + name: 'Tapu Koko', + id: 785, + generation: 7, + isLegendary: false, + types: ['electric', 'fairy'] + }, + { + abilities: ['Psychic Surge', 'Telepathy'], + attack: 85, + classfication: 'Land Spirit Pokémon', + defense: 75, + hp: 70, + japaneseName: 'Kapu-tetefuカプ・テテフ', + name: 'Tapu Lele', + id: 786, + generation: 7, + isLegendary: false, + types: ['psychic', 'fairy'] + }, + { + abilities: ['Grassy Surge', 'Telepathy'], + attack: 130, + classfication: 'Land Spirit Pokémon', + defense: 115, + hp: 70, + japaneseName: 'Kapu-bululカプ・ブルル', + name: 'Tapu Bulu', + id: 787, + generation: 7, + isLegendary: false, + types: ['grass', 'fairy'] + }, + { + abilities: ['Misty Surge', 'Telepathy'], + attack: 75, + classfication: 'Land Spirit Pokémon', + defense: 115, + hp: 70, + japaneseName: 'Kapu-rehireカプ・レヒレ', + name: 'Tapu Fini', + id: 788, + generation: 7, + isLegendary: false, + types: ['water', 'fairy'] + }, + { + abilities: ['Unaware'], + attack: 29, + classfication: 'Nebula Pokémon', + defense: 31, + hp: 43, + japaneseName: 'Cosmogコスモッグ', + name: 'Cosmog', + id: 789, + generation: 7, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Sturdy'], + attack: 29, + classfication: 'Protostar Pokémon', + defense: 131, + hp: 43, + japaneseName: 'Cosmovumコスモウム', + name: 'Cosmoem', + id: 790, + generation: 7, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Full Metal Body'], + attack: 137, + classfication: 'Sunne Pokémon', + defense: 107, + hp: 137, + japaneseName: 'Solgaleoソルガレオ', + name: 'Solgaleo', + id: 791, + generation: 7, + isLegendary: false, + types: ['psychic', 'steel'] + }, + { + abilities: ['Shadow Shield'], + attack: 113, + classfication: 'Moone Pokémon', + defense: 89, + hp: 137, + japaneseName: 'Lunalaルナアーラ', + name: 'Lunala', + id: 792, + generation: 7, + isLegendary: false, + types: ['psychic', 'ghost'] + }, + { + abilities: ['Beast Boost'], + attack: 53, + classfication: 'Parasite Pokémon', + defense: 47, + hp: 109, + japaneseName: 'Uturoidウツロイド', + name: 'Nihilego', + id: 793, + generation: 7, + isLegendary: false, + types: ['rock', 'poison'] + }, + { + abilities: ['Beast Boost'], + attack: 139, + classfication: 'Swollen Pokémon', + defense: 139, + hp: 107, + japaneseName: 'Massivoonマッシブーン', + name: 'Buzzwole', + id: 794, + generation: 7, + isLegendary: false, + types: ['bug', 'fighting'] + }, + { + abilities: ['Beast Boost'], + attack: 137, + classfication: 'Lissome Pokémon', + defense: 37, + hp: 71, + japaneseName: 'Pheroacheフェローチェ', + name: 'Pheromosa', + id: 795, + generation: 7, + isLegendary: false, + types: ['bug', 'fighting'] + }, + { + abilities: ['Beast Boost'], + attack: 89, + classfication: 'Glowing Pokémon', + defense: 71, + hp: 83, + japaneseName: 'Denjyumokuデンジュモク', + name: 'Xurkitree', + id: 796, + generation: 7, + isLegendary: false, + types: ['electric'] + }, + { + abilities: ['Beast Boost'], + attack: 101, + classfication: 'Launch Pokémon', + defense: 103, + hp: 97, + japaneseName: 'Tekkaguyaテッカグヤ', + name: 'Celesteela', + id: 797, + generation: 7, + isLegendary: false, + types: ['steel', 'flying'] + }, + { + abilities: ['Beast Boost'], + attack: 181, + classfication: 'Drawn Sword Pokémon', + defense: 131, + hp: 59, + japaneseName: 'Kamiturugiカミツルギ', + name: 'Kartana', + id: 798, + generation: 7, + isLegendary: false, + types: ['grass', 'steel'] + }, + { + abilities: ['Beast Boost'], + attack: 101, + classfication: 'Junkivore Pokémon', + defense: 53, + hp: 223, + japaneseName: 'Akuzikingアクジキング', + name: 'Guzzlord', + id: 799, + generation: 7, + isLegendary: false, + types: ['dark', 'dragon'] + }, + { + abilities: ['Prism Armor'], + attack: 107, + classfication: 'Prism Pokémon', + defense: 101, + hp: 97, + japaneseName: 'Necrozmaネクロズマ', + name: 'Necrozma', + id: 800, + generation: 7, + isLegendary: false, + types: ['psychic'] + }, + { + abilities: ['Soul-Heart'], + attack: 95, + classfication: 'Artificial Pokémon', + defense: 115, + hp: 80, + japaneseName: 'Magearnaマギアナ', + name: 'Magearna', + id: 801, + generation: 7, + isLegendary: false, + types: ['steel', 'fairy'] + } +] diff --git a/src/datasets/pokemon.ts b/src/datasets/pokemon.ts index 9f168f6..e71ff81 100644 --- a/src/datasets/pokemon.ts +++ b/src/datasets/pokemon.ts @@ -1,28 +1,37 @@ // Data from: https://www.kaggle.com/rounakbanik/pokemon -import { pokemon } from './pokemonData'; +import { pokemon } from './data/pokemon' -const NUMBER_OF_POKEMON = pokemon.length; +const NUMBER_OF_POKEMON = pokemon.length -const getRandomPokemon = () => - pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)]; +const getAllPokemon = (id?: number, generations: number[] = [1, 2, 3, 4, 5, 6, 7]) => { + if (!!id) return pokemon[id] + let filteredPokemon = pokemon.filter(p => generations.includes(p.generation)) + return filteredPokemon +} + +const getRandomPokemon = (id?: number, generations: number[] = [1, 2, 3, 4, 5, 6, 7]) => { + if (!!id) return pokemon[id] + let filteredPokemon = pokemon.filter(p => generations.includes(p.generation)) + return filteredPokemon[Math.floor(Math.random() * filteredPokemon.length)] +} const getRandomPokemons = (n = 1) => - Array(n) - .fill('') - .map(() => pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)]); + Array(n) + .fill('') + .map(() => pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)]) -const getRandomName = () => - pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)].name; +const getRandomName = (id?: number, generations: number[] = [1, 2, 3, 4, 5, 6, 7]) => getRandomPokemon(id, generations).name const getRandomNames = (n = 1) => - Array(n) - .fill('') - .map(() => pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)].name); + Array(n) + .fill('') + .map(() => pokemon[Math.floor(Math.random() * NUMBER_OF_POKEMON)].name) -export { getRandomName, getRandomNames, getRandomPokemon, getRandomPokemons }; +export { getRandomName, getRandomNames, getRandomPokemon, getRandomPokemons } export default { - getRandomName, - getRandomNames, - getRandomPokemon, - getRandomPokemons, -}; + getAllPokemon, + getRandomName, + getRandomNames, + getRandomPokemon, + getRandomPokemons +} diff --git a/src/datasets/pokemonData.ts b/src/datasets/pokemonData.ts deleted file mode 100644 index bd5cbea..0000000 --- a/src/datasets/pokemonData.ts +++ /dev/null @@ -1,10520 +0,0 @@ -export type Pokemon = { - abilities: string[]; - attack: number; - classfication: string; - defense: number; - hp: number; - japaneseName: string; - name: string; - id: number; - generation: number; - isLegendary: boolean; - types: string[]; -}; - -export const pokemon: Pokemon[] = [ - { - abilities: ['Overgrow', 'Chlorophyll'], - attack: 49, - classfication: 'Seed Pokémon', - defense: 49, - hp: 45, - japaneseName: 'Fushigidaneフシギダネ', - name: 'Bulbasaur', - id: 1, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Overgrow', 'Chlorophyll'], - attack: 62, - classfication: 'Seed Pokémon', - defense: 63, - hp: 60, - japaneseName: 'Fushigisouフシギソウ', - name: 'Ivysaur', - id: 2, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Overgrow', 'Chlorophyll'], - attack: 100, - classfication: 'Seed Pokémon', - defense: 123, - hp: 80, - japaneseName: 'Fushigibanaフシギバナ', - name: 'Venusaur', - id: 3, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Blaze', 'Solar Power'], - attack: 52, - classfication: 'Lizard Pokémon', - defense: 43, - hp: 39, - japaneseName: 'Hitokageヒトカゲ', - name: 'Charmander', - id: 4, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Solar Power'], - attack: 64, - classfication: 'Flame Pokémon', - defense: 58, - hp: 58, - japaneseName: 'Lizardoリザード', - name: 'Charmeleon', - id: 5, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Solar Power'], - attack: 104, - classfication: 'Flame Pokémon', - defense: 78, - hp: 78, - japaneseName: 'Lizardonリザードン', - name: 'Charizard', - id: 6, - generation: 1, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Torrent', 'Rain Dish'], - attack: 48, - classfication: 'Tiny Turtle Pokémon', - defense: 65, - hp: 44, - japaneseName: 'Zenigameゼニガメ', - name: 'Squirtle', - id: 7, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Rain Dish'], - attack: 63, - classfication: 'Turtle Pokémon', - defense: 80, - hp: 59, - japaneseName: 'Kameilカメール', - name: 'Wartortle', - id: 8, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Rain Dish'], - attack: 103, - classfication: 'Shellfish Pokémon', - defense: 120, - hp: 79, - japaneseName: 'Kamexカメックス', - name: 'Blastoise', - id: 9, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Shield Dust', 'Run Away'], - attack: 30, - classfication: 'Worm Pokémon', - defense: 35, - hp: 45, - japaneseName: 'Caterpieキャタピー', - name: 'Caterpie', - id: 10, - generation: 1, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Shed Skin'], - attack: 20, - classfication: 'Cocoon Pokémon', - defense: 55, - hp: 50, - japaneseName: 'Transelトランセル', - name: 'Metapod', - id: 11, - generation: 1, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Compoundeyes', 'Tinted Lens'], - attack: 45, - classfication: 'Butterfly Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Butterfreeバタフリー', - name: 'Butterfree', - id: 12, - generation: 1, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Shield Dust', 'Run Away'], - attack: 35, - classfication: 'Hairy Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Beedleビードル', - name: 'Weedle', - id: 13, - generation: 1, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Shed Skin'], - attack: 25, - classfication: 'Cocoon Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Cocoonコクーン', - name: 'Kakuna', - id: 14, - generation: 1, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Swarm', 'Sniper'], - attack: 150, - classfication: 'Poison Bee Pokémon', - defense: 40, - hp: 65, - japaneseName: 'Spearスピアー', - name: 'Beedrill', - id: 15, - generation: 1, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], - attack: 45, - classfication: 'Tiny Bird Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Poppoポッポ', - name: 'Pidgey', - id: 16, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], - attack: 60, - classfication: 'Bird Pokémon', - defense: 55, - hp: 63, - japaneseName: 'Pigeonピジョン', - name: 'Pidgeotto', - id: 17, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], - attack: 80, - classfication: 'Bird Pokémon', - defense: 80, - hp: 83, - japaneseName: 'Pigeotピジョット', - name: 'Pidgeot', - id: 18, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: [ - 'Run Away', - 'Guts', - 'Hustle', - 'Gluttony', - 'Hustle', - 'Thick Fat', - ], - attack: 56, - classfication: 'Mouse Pokémon', - defense: 35, - hp: 30, - japaneseName: 'Korattaコラッタ', - name: 'Rattata', - id: 19, - generation: 1, - isLegendary: false, - types: ['normal', 'dark'], - }, - { - abilities: [ - 'Run Away', - 'Guts', - 'Hustle', - 'Gluttony', - 'Hustle', - 'Thick Fat', - ], - attack: 71, - classfication: 'Mouse Pokémon', - defense: 70, - hp: 75, - japaneseName: 'Rattaラッタ', - name: 'Raticate', - id: 20, - generation: 1, - isLegendary: false, - types: ['normal', 'dark'], - }, - { - abilities: ['Keen Eye', 'Sniper'], - attack: 60, - classfication: 'Tiny Bird Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Onisuzumeオニスズメ', - name: 'Spearow', - id: 21, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Sniper'], - attack: 90, - classfication: 'Beak Pokémon', - defense: 65, - hp: 65, - japaneseName: 'Onidrillオニドリル', - name: 'Fearow', - id: 22, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Intimidate', 'Shed Skin', 'Unnerve'], - attack: 60, - classfication: 'Snake Pokémon', - defense: 44, - hp: 35, - japaneseName: 'Arboアーボ', - name: 'Ekans', - id: 23, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Intimidate', 'Shed Skin', 'Unnerve'], - attack: 95, - classfication: 'Cobra Pokémon', - defense: 69, - hp: 60, - japaneseName: 'Arbokアーボック', - name: 'Arbok', - id: 24, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Static', 'Lightningrod'], - attack: 55, - classfication: 'Mouse Pokémon', - defense: 40, - hp: 35, - japaneseName: 'Pikachuピカチュウ', - name: 'Pikachu', - id: 25, - generation: 1, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Static', 'Lightningrod', 'Surge Surfer'], - attack: 85, - classfication: 'Mouse Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Raichuライチュウ', - name: 'Raichu', - id: 26, - generation: 1, - isLegendary: false, - types: ['electric', 'electric'], - }, - { - abilities: ['Sand Veil', 'Sand Rush', 'Snow Cloak', 'Slush Rush'], - attack: 75, - classfication: 'Mouse Pokémon', - defense: 90, - hp: 50, - japaneseName: 'Sandサンド', - name: 'Sandshrew', - id: 27, - generation: 1, - isLegendary: false, - types: ['ground', 'ice'], - }, - { - abilities: ['Sand Veil', 'Sand Rush', 'Snow Cloak', 'Slush Rush'], - attack: 100, - classfication: 'Mouse Pokémon', - defense: 120, - hp: 75, - japaneseName: 'Sandpanサンドパン', - name: 'Sandslash', - id: 28, - generation: 1, - isLegendary: false, - types: ['ground', 'ice'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Hustle'], - attack: 47, - classfication: 'Poison Pin Pokémon', - defense: 52, - hp: 55, - japaneseName: 'Nidoran?ニドラン♀', - name: 'Nidoran♀', - id: 29, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Hustle'], - attack: 62, - classfication: 'Poison Pin Pokémon', - defense: 67, - hp: 70, - japaneseName: 'Nidorinaニドリーナ', - name: 'Nidorina', - id: 30, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Sheer Force'], - attack: 92, - classfication: 'Drill Pokémon', - defense: 87, - hp: 90, - japaneseName: 'Nidoqueenニドクイン', - name: 'Nidoqueen', - id: 31, - generation: 1, - isLegendary: false, - types: ['poison', 'ground'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Hustle'], - attack: 57, - classfication: 'Poison Pin Pokémon', - defense: 40, - hp: 46, - japaneseName: 'Nidoran?ニドラン♂', - name: 'Nidoran♂', - id: 32, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Hustle'], - attack: 72, - classfication: 'Poison Pin Pokémon', - defense: 57, - hp: 61, - japaneseName: 'Nidorinoニドリーノ', - name: 'Nidorino', - id: 33, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Poison Point', 'Rivalry', 'Sheer Force'], - attack: 102, - classfication: 'Drill Pokémon', - defense: 77, - hp: 81, - japaneseName: 'Nidokingニドキング', - name: 'Nidoking', - id: 34, - generation: 1, - isLegendary: false, - types: ['poison', 'ground'], - }, - { - abilities: ['Cute Charm', 'Magic Guard', 'Friend Guard'], - attack: 45, - classfication: 'Fairy Pokémon', - defense: 48, - hp: 70, - japaneseName: 'Pippiピッピ', - name: 'Clefairy', - id: 35, - generation: 1, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Cute Charm', 'Magic Guard', 'Unaware'], - attack: 70, - classfication: 'Fairy Pokémon', - defense: 73, - hp: 95, - japaneseName: 'Pixyピクシー', - name: 'Clefable', - id: 36, - generation: 1, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Flash Fire', 'Drought', 'Snow Cloak', 'Snow Warning'], - attack: 41, - classfication: 'Fox Pokémon', - defense: 40, - hp: 38, - japaneseName: 'Rokonロコン', - name: 'Vulpix', - id: 37, - generation: 1, - isLegendary: false, - types: ['fire', 'ice'], - }, - { - abilities: ['Flash Fire', 'Drought', 'Snow Cloak', 'Snow Warning'], - attack: 67, - classfication: 'Fox Pokémon', - defense: 75, - hp: 73, - japaneseName: 'Kyukonキュウコン', - name: 'Ninetales', - id: 38, - generation: 1, - isLegendary: false, - types: ['fire', 'ice'], - }, - { - abilities: ['Cute Charm', 'Competitive', 'Friend Guard'], - attack: 45, - classfication: 'Balloon Pokémon', - defense: 20, - hp: 115, - japaneseName: 'Purinプリン', - name: 'Jigglypuff', - id: 39, - generation: 1, - isLegendary: false, - types: ['normal', 'fairy'], - }, - { - abilities: ['Cute Charm', 'Competitive', 'Frisk'], - attack: 70, - classfication: 'Balloon Pokémon', - defense: 45, - hp: 140, - japaneseName: 'Pukurinプクリン', - name: 'Wigglytuff', - id: 40, - generation: 1, - isLegendary: false, - types: ['normal', 'fairy'], - }, - { - abilities: ['Inner Focus', 'Infiltrator'], - attack: 45, - classfication: 'Bat Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Zubatズバット', - name: 'Zubat', - id: 41, - generation: 1, - isLegendary: false, - types: ['poison', 'flying'], - }, - { - abilities: ['Inner Focus', 'Infiltrator'], - attack: 80, - classfication: 'Bat Pokémon', - defense: 70, - hp: 75, - japaneseName: 'Golbatゴルバット', - name: 'Golbat', - id: 42, - generation: 1, - isLegendary: false, - types: ['poison', 'flying'], - }, - { - abilities: ['Chlorophyll', 'Run Away'], - attack: 50, - classfication: 'Weed Pokémon', - defense: 55, - hp: 45, - japaneseName: 'Nazonokusaナゾノクサ', - name: 'Oddish', - id: 43, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Chlorophyll', 'Stench'], - attack: 65, - classfication: 'Weed Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Kusaihanaクサイハナ', - name: 'Gloom', - id: 44, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Chlorophyll', 'Effect Spore'], - attack: 80, - classfication: 'Flower Pokémon', - defense: 85, - hp: 75, - japaneseName: 'Ruffresiaラフレシア', - name: 'Vileplume', - id: 45, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Effect Spore', 'Dry Skin', 'Damp'], - attack: 70, - classfication: 'Mushroom Pokémon', - defense: 55, - hp: 35, - japaneseName: 'Parasパラス', - name: 'Paras', - id: 46, - generation: 1, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Effect Spore', 'Dry Skin', 'Damp'], - attack: 95, - classfication: 'Mushroom Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Parasectパラセクト', - name: 'Parasect', - id: 47, - generation: 1, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Compoundeyes', 'Tinted Lens', 'Run Away'], - attack: 55, - classfication: 'Insect Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Kongpangコンパン', - name: 'Venonat', - id: 48, - generation: 1, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Shield Dust', 'Tinted Lens', 'Wonder Skin '], - attack: 65, - classfication: 'Poison Moth Pokémon', - defense: 60, - hp: 70, - japaneseName: 'Morphonモルフォン', - name: 'Venomoth', - id: 49, - generation: 1, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: [ - 'Sand Veil', - 'Arena Trap', - 'Sand Force', - 'Sand Veil', - 'Tangling Hair', - 'Sand Force', - ], - attack: 55, - classfication: 'Mole Pokémon', - defense: 30, - hp: 10, - japaneseName: 'Digdaディグダ', - name: 'Diglett', - id: 50, - generation: 1, - isLegendary: false, - types: ['ground', 'ground'], - }, - { - abilities: [ - 'Sand Veil', - 'Arena Trap', - 'Sand Force', - 'Sand Veil', - 'Tangling Hair', - 'Sand Force', - ], - attack: 100, - classfication: 'Mole Pokémon', - defense: 60, - hp: 35, - japaneseName: 'Dugtrioダグトリオ', - name: 'Dugtrio', - id: 51, - generation: 1, - isLegendary: false, - types: ['ground', 'ground'], - }, - { - abilities: [ - 'Pickup', - 'Technician', - 'Unnerve', - 'Pickup', - 'Technician', - 'Rattled', - ], - attack: 35, - classfication: 'Scratch Cat Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Nyarthニャース', - name: 'Meowth', - id: 52, - generation: 1, - isLegendary: false, - types: ['normal', 'dark'], - }, - { - abilities: [ - 'Limber', - 'Technician', - 'Unnerve', - 'Fur Coat', - 'Technician', - 'Rattled', - ], - attack: 60, - classfication: 'Classy Cat Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Persianペルシアン', - name: 'Persian', - id: 53, - generation: 1, - isLegendary: false, - types: ['normal', 'dark'], - }, - { - abilities: ['Damp', 'Cloud Nine', 'Swift Swim'], - attack: 52, - classfication: 'Duck Pokémon', - defense: 48, - hp: 50, - japaneseName: 'Koduckコダック', - name: 'Psyduck', - id: 54, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Damp', 'Cloud Nine', 'Swift Swim'], - attack: 82, - classfication: 'Duck Pokémon', - defense: 78, - hp: 80, - japaneseName: 'Golduckゴルダック', - name: 'Golduck', - id: 55, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Vital Spirit', 'Anger Point', 'Defiant'], - attack: 80, - classfication: 'Pig Monkey Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Mankeyマンキー', - name: 'Mankey', - id: 56, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Vital Spirit', 'Anger Point', 'Defiant'], - attack: 105, - classfication: 'Pig Monkey Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Okorizaruオコリザル', - name: 'Primeape', - id: 57, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Intimidate', 'Flash Fire', 'Justified'], - attack: 70, - classfication: 'Puppy Pokémon', - defense: 45, - hp: 55, - japaneseName: 'Gardieガーディ', - name: 'Growlithe', - id: 58, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Intimidate', 'Flash Fire', 'Justified'], - attack: 110, - classfication: 'Legendary Pokémon', - defense: 80, - hp: 90, - japaneseName: 'Windieウインディ', - name: 'Arcanine', - id: 59, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Water Absorb', 'Damp', 'Swift Swim'], - attack: 50, - classfication: 'Tadpole Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Nyoromoニョロモ', - name: 'Poliwag', - id: 60, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Water Absorb', 'Damp', 'Swift Swim'], - attack: 65, - classfication: 'Tadpole Pokémon', - defense: 65, - hp: 65, - japaneseName: 'Nyorozoニョロゾ', - name: 'Poliwhirl', - id: 61, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Water Absorb', 'Damp', 'Swift Swim'], - attack: 95, - classfication: 'Tadpole Pokémon', - defense: 95, - hp: 90, - japaneseName: 'Nyorobonニョロボン', - name: 'Poliwrath', - id: 62, - generation: 1, - isLegendary: false, - types: ['water', 'fighting'], - }, - { - abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], - attack: 20, - classfication: 'Psi Pokémon', - defense: 15, - hp: 25, - japaneseName: 'Caseyケーシィ', - name: 'Abra', - id: 63, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], - attack: 35, - classfication: 'Psi Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Yungererユンゲラー', - name: 'Kadabra', - id: 64, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Synchronize', 'Inner Focus', 'Magic Guard'], - attack: 50, - classfication: 'Psi Pokémon', - defense: 65, - hp: 55, - japaneseName: 'Foodinフーディン', - name: 'Alakazam', - id: 65, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Guts', 'No Guard', 'Steadfast'], - attack: 80, - classfication: 'Superpower Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Wanrikyワンリキー', - name: 'Machop', - id: 66, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Guts', 'No Guard', 'Steadfast'], - attack: 100, - classfication: 'Superpower Pokémon', - defense: 70, - hp: 80, - japaneseName: 'Gorikyゴーリキー', - name: 'Machoke', - id: 67, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Guts', 'No Guard', 'Steadfast'], - attack: 130, - classfication: 'Superpower Pokémon', - defense: 80, - hp: 90, - japaneseName: 'Kairikyカイリキー', - name: 'Machamp', - id: 68, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Chlorophyll', 'Gluttony'], - attack: 75, - classfication: 'Flower Pokémon', - defense: 35, - hp: 50, - japaneseName: 'Madatsubomiマダツボミ', - name: 'Bellsprout', - id: 69, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Chlorophyll', 'Gluttony'], - attack: 90, - classfication: 'Flycatcher Pokémon', - defense: 50, - hp: 65, - japaneseName: 'Utsudonウツドン', - name: 'Weepinbell', - id: 70, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Chlorophyll', 'Gluttony'], - attack: 105, - classfication: 'Flycatcher Pokémon', - defense: 65, - hp: 80, - japaneseName: 'Utsubotウツボット', - name: 'Victreebel', - id: 71, - generation: 1, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Clear Body', 'Liquid Ooze', 'Rain Dish'], - attack: 40, - classfication: 'Jellyfish Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Menokurageメノクラゲ', - name: 'Tentacool', - id: 72, - generation: 1, - isLegendary: false, - types: ['water', 'poison'], - }, - { - abilities: ['Clear Body', 'Liquid Ooze', 'Rain Dish'], - attack: 70, - classfication: 'Jellyfish Pokémon', - defense: 65, - hp: 80, - japaneseName: 'Dokukurageドククラゲ', - name: 'Tentacruel', - id: 73, - generation: 1, - isLegendary: false, - types: ['water', 'poison'], - }, - { - abilities: [ - 'Rock Head', - 'Sturdy', - 'Sand Veil', - 'Magnet Pull', - 'Sturdy', - 'Galvanize', - ], - attack: 80, - classfication: 'Rock Pokémon', - defense: 100, - hp: 40, - japaneseName: 'Isitsubuteイシツブテ', - name: 'Geodude', - id: 74, - generation: 1, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: [ - 'Rock Head', - 'Sturdy', - 'Sand Veil', - 'Magnet Pull', - 'Sturdy', - 'Galvanize', - ], - attack: 95, - classfication: 'Rock Pokémon', - defense: 115, - hp: 55, - japaneseName: 'Goloneゴローン', - name: 'Graveler', - id: 75, - generation: 1, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: [ - 'Rock Head', - 'Sturdy', - 'Sand Veil', - 'Magnet Pull', - 'Sturdy', - 'Galvanize', - ], - attack: 120, - classfication: 'Megaton Pokémon', - defense: 130, - hp: 80, - japaneseName: 'Golonyaゴローニャ', - name: 'Golem', - id: 76, - generation: 1, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: ['Run Away', 'Flash Fire', 'Flame Body'], - attack: 85, - classfication: 'Fire Horse Pokémon', - defense: 55, - hp: 50, - japaneseName: 'Ponytaポニータ', - name: 'Ponyta', - id: 77, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Run Away', 'Flash Fire', 'Flame Body'], - attack: 100, - classfication: 'Fire Horse Pokémon', - defense: 70, - hp: 65, - japaneseName: 'Gallopギャロップ', - name: 'Rapidash', - id: 78, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], - attack: 65, - classfication: 'Dopey Pokémon', - defense: 65, - hp: 90, - japaneseName: 'Yadonヤドン', - name: 'Slowpoke', - id: 79, - generation: 1, - isLegendary: false, - types: ['water', 'psychic'], - }, - { - abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], - attack: 75, - classfication: 'Hermit Crab Pokémon', - defense: 180, - hp: 95, - japaneseName: 'Yadoranヤドラン', - name: 'Slowbro', - id: 80, - generation: 1, - isLegendary: false, - types: ['water', 'psychic'], - }, - { - abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], - attack: 35, - classfication: 'Magnet Pokémon', - defense: 70, - hp: 25, - japaneseName: 'Coilコイル', - name: 'Magnemite', - id: 81, - generation: 1, - isLegendary: false, - types: ['electric', 'steel'], - }, - { - abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], - attack: 60, - classfication: 'Magnet Pokémon', - defense: 95, - hp: 50, - japaneseName: 'Rarecoilレアコイル', - name: 'Magneton', - id: 82, - generation: 1, - isLegendary: false, - types: ['electric', 'steel'], - }, - { - abilities: ['Keen Eye', 'Inner Focus', 'Defiant'], - attack: 90, - classfication: 'Wild Duck Pokémon', - defense: 55, - hp: 52, - japaneseName: 'Kamonegiカモネギ', - name: "Farfetch'd", - id: 83, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Run Away', 'Early Bird', 'Tangled Feet'], - attack: 85, - classfication: 'Twin Bird Pokémon', - defense: 45, - hp: 35, - japaneseName: 'Dodoドードー', - name: 'Doduo', - id: 84, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Run Away', 'Early Bird', 'Tangled Feet'], - attack: 110, - classfication: 'Triple Bird Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Dodorioドードリオ', - name: 'Dodrio', - id: 85, - generation: 1, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Thick Fat', 'Hydration', 'Ice Body'], - attack: 45, - classfication: 'Sea Lion Pokémon', - defense: 55, - hp: 65, - japaneseName: 'Pawouパウワウ', - name: 'Seel', - id: 86, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Thick Fat', 'Hydration', 'Ice Body'], - attack: 70, - classfication: 'Sea Lion Pokémon', - defense: 80, - hp: 90, - japaneseName: 'Jugonジュゴン', - name: 'Dewgong', - id: 87, - generation: 1, - isLegendary: false, - types: ['water', 'ice'], - }, - { - abilities: [ - 'Stench', - 'Sticky Hold', - 'Poison Touch', - 'Poison Touch', - 'Gluttony', - 'Power of Alchemy', - ], - attack: 80, - classfication: 'Sludge Pokémon', - defense: 50, - hp: 80, - japaneseName: 'Betbeterベトベター', - name: 'Grimer', - id: 88, - generation: 1, - isLegendary: false, - types: ['poison', 'poison'], - }, - { - abilities: [ - 'Stench', - 'Sticky Hold', - 'Poison Touch', - 'Poison Touch', - 'Gluttony', - 'Power of Alchemy', - ], - attack: 105, - classfication: 'Sludge Pokémon', - defense: 75, - hp: 105, - japaneseName: 'Betbetonベトベトン', - name: 'Muk', - id: 89, - generation: 1, - isLegendary: false, - types: ['poison', 'poison'], - }, - { - abilities: ['Shell Armor', 'Skill Link', 'Overcoat'], - attack: 65, - classfication: 'Bivalve Pokémon', - defense: 100, - hp: 30, - japaneseName: 'Shellderシェルダー', - name: 'Shellder', - id: 90, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Shell Armor', 'Skill Link', 'Overcoat'], - attack: 95, - classfication: 'Bivalve Pokémon', - defense: 180, - hp: 50, - japaneseName: 'Parshenパルシェン', - name: 'Cloyster', - id: 91, - generation: 1, - isLegendary: false, - types: ['water', 'ice'], - }, - { - abilities: ['Levitate'], - attack: 35, - classfication: 'Gas Pokémon', - defense: 30, - hp: 30, - japaneseName: 'Ghosゴース', - name: 'Gastly', - id: 92, - generation: 1, - isLegendary: false, - types: ['ghost', 'poison'], - }, - { - abilities: ['Levitate'], - attack: 50, - classfication: 'Gas Pokémon', - defense: 45, - hp: 45, - japaneseName: 'Ghostゴースト', - name: 'Haunter', - id: 93, - generation: 1, - isLegendary: false, - types: ['ghost', 'poison'], - }, - { - abilities: ['Cursed Body'], - attack: 65, - classfication: 'Shadow Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Gangarゲンガー', - name: 'Gengar', - id: 94, - generation: 1, - isLegendary: false, - types: ['ghost', 'poison'], - }, - { - abilities: ['Rock Head', 'Sturdy', 'Weak Armor'], - attack: 45, - classfication: 'Rock Snake Pokémon', - defense: 160, - hp: 35, - japaneseName: 'Iwarkイワーク', - name: 'Onix', - id: 95, - generation: 1, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: ['Insomnia', 'Forewarn', 'Inner Focus'], - attack: 48, - classfication: 'Hypnosis Pokémon', - defense: 45, - hp: 60, - japaneseName: 'Sleepeスリープ', - name: 'Drowzee', - id: 96, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Insomnia', 'Forewarn', 'Inner Focus'], - attack: 73, - classfication: 'Hypnosis Pokémon', - defense: 70, - hp: 85, - japaneseName: 'Sleeperスリーパー', - name: 'Hypno', - id: 97, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Hyper Cutter', 'Shell Armor', 'Sheer Force'], - attack: 105, - classfication: 'River Crab Pokémon', - defense: 90, - hp: 30, - japaneseName: 'Crabクラブ', - name: 'Krabby', - id: 98, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Hyper Cutter', 'Shell Armor', 'Sheer Force'], - attack: 130, - classfication: 'Pincer Pokémon', - defense: 115, - hp: 55, - japaneseName: 'Kinglerキングラー', - name: 'Kingler', - id: 99, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Soundproof', 'Static', 'Aftermath'], - attack: 30, - classfication: 'Ball Pokémon', - defense: 50, - hp: 40, - japaneseName: 'Biriridamaビリリダマ', - name: 'Voltorb', - id: 100, - generation: 1, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Soundproof', 'Static', 'Aftermath'], - attack: 50, - classfication: 'Ball Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Marumineマルマイン', - name: 'Electrode', - id: 101, - generation: 1, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Chlorophyll', 'Harvest'], - attack: 40, - classfication: 'Egg Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Tamatamaタマタマ', - name: 'Exeggcute', - id: 102, - generation: 1, - isLegendary: false, - types: ['grass', 'psychic'], - }, - { - abilities: ['Chlorophyll', 'Harvest', 'Frisk', 'Harvest'], - attack: 105, - classfication: 'Coconut Pokémon', - defense: 85, - hp: 95, - japaneseName: 'Nassyナッシー', - name: 'Exeggutor', - id: 103, - generation: 1, - isLegendary: false, - types: ['grass', 'psychic'], - }, - { - abilities: ['Rock Head', 'Lightningrod', 'Battle Armor'], - attack: 50, - classfication: 'Lonely Pokémon', - defense: 95, - hp: 50, - japaneseName: 'Karakaraカラカラ', - name: 'Cubone', - id: 104, - generation: 1, - isLegendary: false, - types: ['ground'], - }, - { - abilities: [ - 'Rock Head', - 'Lightningrod', - 'Battle Armor', - 'Cursed Body', - 'Lightningrod', - 'Rock Head', - ], - attack: 80, - classfication: 'Bone Keeper Pokémon', - defense: 110, - hp: 60, - japaneseName: 'Garagaraガラガラ', - name: 'Marowak', - id: 105, - generation: 1, - isLegendary: false, - types: ['ground', 'fire'], - }, - { - abilities: ['Limber', 'Reckless', 'Unburden'], - attack: 120, - classfication: 'Kicking Pokémon', - defense: 53, - hp: 50, - japaneseName: 'Sawamularサワムラー', - name: 'Hitmonlee', - id: 106, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Keen Eye', 'Iron Fist', 'Inner Focus'], - attack: 105, - classfication: 'Punching Pokémon', - defense: 79, - hp: 50, - japaneseName: 'Ebiwalarエビワラー', - name: 'Hitmonchan', - id: 107, - generation: 1, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Own Tempo', 'Oblivious', 'Cloud Nine'], - attack: 55, - classfication: 'Licking Pokémon', - defense: 75, - hp: 90, - japaneseName: 'Beroringaベロリンガ', - name: 'Lickitung', - id: 108, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Levitate'], - attack: 65, - classfication: 'Poison Gas Pokémon', - defense: 95, - hp: 40, - japaneseName: 'Dogarsドガース', - name: 'Koffing', - id: 109, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Levitate'], - attack: 90, - classfication: 'Poison Gas Pokémon', - defense: 120, - hp: 65, - japaneseName: 'Matadogasマタドガス', - name: 'Weezing', - id: 110, - generation: 1, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Lightningrod', 'Rock Head', 'Reckless'], - attack: 85, - classfication: 'Spikes Pokémon', - defense: 95, - hp: 80, - japaneseName: 'Sihornサイホーン', - name: 'Rhyhorn', - id: 111, - generation: 1, - isLegendary: false, - types: ['ground', 'rock'], - }, - { - abilities: ['Lightningrod', 'Rock Head', 'Reckless'], - attack: 130, - classfication: 'Drill Pokémon', - defense: 120, - hp: 105, - japaneseName: 'Sidonサイドン', - name: 'Rhydon', - id: 112, - generation: 1, - isLegendary: false, - types: ['ground', 'rock'], - }, - { - abilities: ['Natural Cure', 'Serene Grace', 'Healer'], - attack: 5, - classfication: 'Egg Pokémon', - defense: 5, - hp: 250, - japaneseName: 'Luckyラッキー', - name: 'Chansey', - id: 113, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Chlorophyll', 'Leaf Guard', 'Regenerator'], - attack: 55, - classfication: 'Vine Pokémon', - defense: 115, - hp: 65, - japaneseName: 'Monjaraモンジャラ', - name: 'Tangela', - id: 114, - generation: 1, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Early Bird', 'Scrappy', 'Inner Focus'], - attack: 125, - classfication: 'Parent Pokémon', - defense: 100, - hp: 105, - japaneseName: 'Garuraガルーラ', - name: 'Kangaskhan', - id: 115, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Swift Swim', 'Sniper', 'Damp'], - attack: 40, - classfication: 'Dragon Pokémon', - defense: 70, - hp: 30, - japaneseName: 'Tattuタッツー', - name: 'Horsea', - id: 116, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Poison Point', 'Sniper', 'Damp'], - attack: 65, - classfication: 'Dragon Pokémon', - defense: 95, - hp: 55, - japaneseName: 'Seadraシードラ', - name: 'Seadra', - id: 117, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Water Veil', 'Lightningrod'], - attack: 67, - classfication: 'Goldfish Pokémon', - defense: 60, - hp: 45, - japaneseName: 'Tosakintoトサキント', - name: 'Goldeen', - id: 118, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Water Veil', 'Lightningrod'], - attack: 92, - classfication: 'Goldfish Pokémon', - defense: 65, - hp: 80, - japaneseName: 'Azumaoアズマオウ', - name: 'Seaking', - id: 119, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Illuminate', 'Natural Cure', 'Analytic'], - attack: 45, - classfication: 'Starshape Pokémon', - defense: 55, - hp: 30, - japaneseName: 'Hitodemanヒトデマン', - name: 'Staryu', - id: 120, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Illuminate', 'Natural Cure', 'Analytic'], - attack: 75, - classfication: 'Mysterious Pokémon', - defense: 85, - hp: 60, - japaneseName: 'Starmieスターミー', - name: 'Starmie', - id: 121, - generation: 1, - isLegendary: false, - types: ['water', 'psychic'], - }, - { - abilities: ['Soundproof', 'Filter', 'Technician'], - attack: 45, - classfication: 'Barrier Pokémon', - defense: 65, - hp: 40, - japaneseName: 'Barrierdバリヤード', - name: 'Mr. Mime', - id: 122, - generation: 1, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Swarm', 'Technician', 'Steadfast'], - attack: 110, - classfication: 'Mantis Pokémon', - defense: 80, - hp: 70, - japaneseName: 'Strikeストライク', - name: 'Scyther', - id: 123, - generation: 1, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Oblivious', 'Forewarn', 'Dry Skin'], - attack: 50, - classfication: 'Humanshape Pokémon', - defense: 35, - hp: 65, - japaneseName: 'Rougelaルージュラ', - name: 'Jynx', - id: 124, - generation: 1, - isLegendary: false, - types: ['ice', 'psychic'], - }, - { - abilities: ['Static', 'Vital Spirit'], - attack: 83, - classfication: 'Electric Pokémon', - defense: 57, - hp: 65, - japaneseName: 'Elebooエレブー', - name: 'Electabuzz', - id: 125, - generation: 1, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Flame Body', 'Vital Spirit'], - attack: 95, - classfication: 'Spitfire Pokémon', - defense: 57, - hp: 65, - japaneseName: 'Booberブーバー', - name: 'Magmar', - id: 126, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Hyper Cutter', 'Mold Breaker', 'Moxie'], - attack: 155, - classfication: 'Stagbeetle Pokémon', - defense: 120, - hp: 65, - japaneseName: 'Kailiosカイロス', - name: 'Pinsir', - id: 127, - generation: 1, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Intimidate', 'Anger Point', 'Sheer Force'], - attack: 100, - classfication: 'Wild Bull Pokémon', - defense: 95, - hp: 75, - japaneseName: 'Kentaurosケンタロス', - name: 'Tauros', - id: 128, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Swift Swim', 'Rattled'], - attack: 10, - classfication: 'Fish Pokémon', - defense: 55, - hp: 20, - japaneseName: 'Koikingコイキング', - name: 'Magikarp', - id: 129, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Intimidate', 'Moxie'], - attack: 155, - classfication: 'Atrocious Pokémon', - defense: 109, - hp: 95, - japaneseName: 'Gyaradosギャラドス', - name: 'Gyarados', - id: 130, - generation: 1, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Water Absorb', 'Shell Armor', 'Hydration'], - attack: 85, - classfication: 'Transport Pokémon', - defense: 80, - hp: 130, - japaneseName: 'Laplaceラプラス', - name: 'Lapras', - id: 131, - generation: 1, - isLegendary: false, - types: ['water', 'ice'], - }, - { - abilities: ['Limber', 'Imposter'], - attack: 48, - classfication: 'Transform Pokémon', - defense: 48, - hp: 48, - japaneseName: 'Metamonメタモン', - name: 'Ditto', - id: 132, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Run Away', 'Adaptability', 'Anticipation'], - attack: 55, - classfication: 'Evolution Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Eievuiイーブイ', - name: 'Eevee', - id: 133, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Water Absorb', 'Hydration'], - attack: 65, - classfication: 'Bubble Jet Pokémon', - defense: 60, - hp: 130, - japaneseName: 'Showersシャワーズ', - name: 'Vaporeon', - id: 134, - generation: 1, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Volt Absorb', 'Quick Feet'], - attack: 65, - classfication: 'Lightning Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Thundersサンダース', - name: 'Jolteon', - id: 135, - generation: 1, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Flash Fire', 'Guts'], - attack: 130, - classfication: 'Flame Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Boosterブースター', - name: 'Flareon', - id: 136, - generation: 1, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Trace', 'Download', 'Analytic'], - attack: 60, - classfication: 'Virtual Pokémon', - defense: 70, - hp: 65, - japaneseName: 'Porygonポリゴン', - name: 'Porygon', - id: 137, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Swift Swim', 'Shell Armor', 'Weak Armor'], - attack: 40, - classfication: 'Spiral Pokémon', - defense: 100, - hp: 35, - japaneseName: 'Omniteオムナイト', - name: 'Omanyte', - id: 138, - generation: 1, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Swift Swim', 'Shell Armor', 'Weak Armor'], - attack: 60, - classfication: 'Spiral Pokémon', - defense: 125, - hp: 70, - japaneseName: 'Omstarオムスター', - name: 'Omastar', - id: 139, - generation: 1, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Swift Swim', 'Battle Armor', 'Weak Armor'], - attack: 80, - classfication: 'Shellfish Pokémon', - defense: 90, - hp: 30, - japaneseName: 'Kabutoカブト', - name: 'Kabuto', - id: 140, - generation: 1, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Swift Swim', 'Battle Armor', 'Weak Armor'], - attack: 115, - classfication: 'Shellfish Pokémon', - defense: 105, - hp: 60, - japaneseName: 'Kabutopsカブトプス', - name: 'Kabutops', - id: 141, - generation: 1, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Rock Head', 'Pressure', 'Unnerve'], - attack: 135, - classfication: 'Fossil Pokémon', - defense: 85, - hp: 80, - japaneseName: 'Pteraプテラ', - name: 'Aerodactyl', - id: 142, - generation: 1, - isLegendary: false, - types: ['rock', 'flying'], - }, - { - abilities: ['Immunity', 'Thick Fat', 'Gluttony'], - attack: 110, - classfication: 'Sleeping Pokémon', - defense: 65, - hp: 160, - japaneseName: 'Kabigonカビゴン', - name: 'Snorlax', - id: 143, - generation: 1, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Pressure', 'Snow Cloak'], - attack: 85, - classfication: 'Freeze Pokémon', - defense: 100, - hp: 90, - japaneseName: 'Freezerフリーザー', - name: 'Articuno', - id: 144, - generation: 1, - isLegendary: false, - types: ['ice', 'flying'], - }, - { - abilities: ['Pressure', 'Static'], - attack: 90, - classfication: 'Electric Pokémon', - defense: 85, - hp: 90, - japaneseName: 'Thunderサンダー', - name: 'Zapdos', - id: 145, - generation: 1, - isLegendary: false, - types: ['electric', 'flying'], - }, - { - abilities: ['Pressure', 'Flame Body'], - attack: 100, - classfication: 'Flame Pokémon', - defense: 90, - hp: 90, - japaneseName: 'Fireファイヤー', - name: 'Moltres', - id: 146, - generation: 1, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Shed Skin', 'Marvel Scale'], - attack: 64, - classfication: 'Dragon Pokémon', - defense: 45, - hp: 41, - japaneseName: 'Miniryuミニリュウ', - name: 'Dratini', - id: 147, - generation: 1, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Shed Skin', 'Marvel Scale'], - attack: 84, - classfication: 'Dragon Pokémon', - defense: 65, - hp: 61, - japaneseName: 'Hakuryuハクリュー', - name: 'Dragonair', - id: 148, - generation: 1, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Inner Focus', 'Multiscale'], - attack: 134, - classfication: 'Dragon Pokémon', - defense: 95, - hp: 91, - japaneseName: 'Kairyuカイリュー', - name: 'Dragonite', - id: 149, - generation: 1, - isLegendary: false, - types: ['dragon', 'flying'], - }, - { - abilities: ['Pressure', 'Unnerve'], - attack: 150, - classfication: 'Genetic Pokémon', - defense: 70, - hp: 106, - japaneseName: 'Mewtwoミュウツー', - name: 'Mewtwo', - id: 150, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Synchronize'], - attack: 100, - classfication: 'New Species Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Mewミュウ', - name: 'Mew', - id: 151, - generation: 1, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Overgrow', 'Leaf Guard'], - attack: 49, - classfication: 'Leaf Pokémon', - defense: 65, - hp: 45, - japaneseName: 'Chicoritaチコリータ', - name: 'Chikorita', - id: 152, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Leaf Guard'], - attack: 62, - classfication: 'Leaf Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Bayleafベイリーフ', - name: 'Bayleef', - id: 153, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Leaf Guard'], - attack: 82, - classfication: 'Herb Pokémon', - defense: 100, - hp: 80, - japaneseName: 'Meganiumメガニウム', - name: 'Meganium', - id: 154, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Blaze', 'Flash Fire'], - attack: 52, - classfication: 'Fire Mouse Pokémon', - defense: 43, - hp: 39, - japaneseName: 'Hinoarashiヒノアラシ', - name: 'Cyndaquil', - id: 155, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Flash Fire'], - attack: 64, - classfication: 'Volcano Pokémon', - defense: 58, - hp: 58, - japaneseName: 'Magmarashiマグマラシ', - name: 'Quilava', - id: 156, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Flash Fire'], - attack: 84, - classfication: 'Volcano Pokémon', - defense: 78, - hp: 78, - japaneseName: 'Bakphoonバクフーン', - name: 'Typhlosion', - id: 157, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Torrent', 'Sheer Force'], - attack: 65, - classfication: 'Big Jaw Pokémon', - defense: 64, - hp: 50, - japaneseName: 'Waninokoワニノコ', - name: 'Totodile', - id: 158, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Sheer Force'], - attack: 80, - classfication: 'Big Jaw Pokémon', - defense: 80, - hp: 65, - japaneseName: 'Alligatesアリゲイツ', - name: 'Croconaw', - id: 159, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Sheer Force'], - attack: 105, - classfication: 'Big Jaw Pokémon', - defense: 100, - hp: 85, - japaneseName: 'Ordileオーダイル', - name: 'Feraligatr', - id: 160, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Run Away', 'Keen Eye', 'Frisk'], - attack: 46, - classfication: 'Scout Pokémon', - defense: 34, - hp: 35, - japaneseName: 'Otachiオタチ', - name: 'Sentret', - id: 161, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Run Away', 'Keen Eye', 'Frisk'], - attack: 76, - classfication: 'Long Body Pokémon', - defense: 64, - hp: 85, - japaneseName: 'Ootachiオオタチ', - name: 'Furret', - id: 162, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Insomnia', 'Keen Eye', 'Tinted Lens'], - attack: 30, - classfication: 'Owl Pokémon', - defense: 30, - hp: 60, - japaneseName: 'Hohoホーホー', - name: 'Hoothoot', - id: 163, - generation: 2, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Insomnia', 'Keen Eye', 'Tinted Lens'], - attack: 50, - classfication: 'Owl Pokémon', - defense: 50, - hp: 100, - japaneseName: 'Yorunozukuヨルノズク', - name: 'Noctowl', - id: 164, - generation: 2, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Swarm', 'Early Bird', 'Rattled'], - attack: 20, - classfication: 'Five Star Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Redibaレディバ', - name: 'Ledyba', - id: 165, - generation: 2, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Swarm', 'Early Bird', 'Iron Fist'], - attack: 35, - classfication: 'Five Star Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Redianレディアン', - name: 'Ledian', - id: 166, - generation: 2, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Swarm', 'Insomnia', 'Sniper'], - attack: 60, - classfication: 'String Spit Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Itomaruイトマル', - name: 'Spinarak', - id: 167, - generation: 2, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Swarm', 'Insomnia', 'Sniper'], - attack: 90, - classfication: 'Long Leg Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Ariadosアリアドス', - name: 'Ariados', - id: 168, - generation: 2, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Inner Focus', 'Infiltrator'], - attack: 90, - classfication: 'Bat Pokémon', - defense: 80, - hp: 85, - japaneseName: 'Crobatクロバット', - name: 'Crobat', - id: 169, - generation: 2, - isLegendary: false, - types: ['poison', 'flying'], - }, - { - abilities: ['Volt Absorb', 'Illuminate', 'Water Absorb'], - attack: 38, - classfication: 'Angler Pokémon', - defense: 38, - hp: 75, - japaneseName: 'Chonchieチョンチー', - name: 'Chinchou', - id: 170, - generation: 2, - isLegendary: false, - types: ['water', 'electric'], - }, - { - abilities: ['Volt Absorb', 'Illuminate', 'Water Absorb'], - attack: 58, - classfication: 'Light Pokémon', - defense: 58, - hp: 125, - japaneseName: 'Lanternランターン', - name: 'Lanturn', - id: 171, - generation: 2, - isLegendary: false, - types: ['water', 'electric'], - }, - { - abilities: ['Static', 'Lightningrod'], - attack: 40, - classfication: 'Tiny Mouse Pokémon', - defense: 15, - hp: 20, - japaneseName: 'Pichuピチュー', - name: 'Pichu', - id: 172, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Cute Charm', 'Magic Guard', 'Friend Guard'], - attack: 25, - classfication: 'Star Shape Pokémon', - defense: 28, - hp: 50, - japaneseName: 'Pyピィ', - name: 'Cleffa', - id: 173, - generation: 2, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Cute Charm', 'Competitive', 'Friend Guard'], - attack: 30, - classfication: 'Balloon Pokémon', - defense: 15, - hp: 90, - japaneseName: 'Pupurinププリン', - name: 'Igglybuff', - id: 174, - generation: 2, - isLegendary: false, - types: ['normal', 'fairy'], - }, - { - abilities: ['Hustle', 'Serene Grace', 'Super Luck'], - attack: 20, - classfication: 'Spike Ball Pokémon', - defense: 65, - hp: 35, - japaneseName: 'Togepyトゲピー', - name: 'Togepi', - id: 175, - generation: 2, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Hustle', 'Serene Grace', 'Super Luck'], - attack: 40, - classfication: 'Happiness Pokémon', - defense: 85, - hp: 55, - japaneseName: 'Togechickトゲチック', - name: 'Togetic', - id: 176, - generation: 2, - isLegendary: false, - types: ['fairy', 'flying'], - }, - { - abilities: ['Synchronize', 'Early Bird', 'Magic Bounce'], - attack: 50, - classfication: 'Little Bird Pokémon', - defense: 45, - hp: 40, - japaneseName: 'Natyネイティ', - name: 'Natu', - id: 177, - generation: 2, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Synchronize', 'Early Bird', 'Magic Bounce'], - attack: 75, - classfication: 'Mystic Pokémon', - defense: 70, - hp: 65, - japaneseName: 'Natioネイティオ', - name: 'Xatu', - id: 178, - generation: 2, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Static', 'Plus'], - attack: 40, - classfication: 'Wool Pokémon', - defense: 40, - hp: 55, - japaneseName: 'Merriepメリープ', - name: 'Mareep', - id: 179, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Static', 'Plus'], - attack: 55, - classfication: 'Wool Pokémon', - defense: 55, - hp: 70, - japaneseName: 'Mokokoモココ', - name: 'Flaaffy', - id: 180, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Static', 'Plus'], - attack: 95, - classfication: 'Light Pokémon', - defense: 105, - hp: 90, - japaneseName: 'Denryuデンリュウ', - name: 'Ampharos', - id: 181, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Chlorophyll', 'Healer'], - attack: 80, - classfication: 'Flower Pokémon', - defense: 95, - hp: 75, - japaneseName: 'Kireihanaキレイハナ', - name: 'Bellossom', - id: 182, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], - attack: 20, - classfication: 'Aquamouse Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Marilマリル', - name: 'Marill', - id: 183, - generation: 2, - isLegendary: false, - types: ['water', 'fairy'], - }, - { - abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], - attack: 50, - classfication: 'Aquarabbit Pokémon', - defense: 80, - hp: 100, - japaneseName: 'Marilliマリルリ', - name: 'Azumarill', - id: 184, - generation: 2, - isLegendary: false, - types: ['water', 'fairy'], - }, - { - abilities: ['Sturdy', 'Rock Head', 'Rattled'], - attack: 100, - classfication: 'Imitation Pokémon', - defense: 115, - hp: 70, - japaneseName: 'Usokkieウソッキー', - name: 'Sudowoodo', - id: 185, - generation: 2, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Water Absorb', 'Damp', 'Drizzle'], - attack: 75, - classfication: 'Frog Pokémon', - defense: 75, - hp: 90, - japaneseName: 'Nyorotonoニョロトノ', - name: 'Politoed', - id: 186, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], - attack: 35, - classfication: 'Cottonweed Pokémon', - defense: 40, - hp: 35, - japaneseName: 'Haneccoハネッコ', - name: 'Hoppip', - id: 187, - generation: 2, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], - attack: 45, - classfication: 'Cottonweed Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Popoccoポポッコ', - name: 'Skiploom', - id: 188, - generation: 2, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Chlorophyll', 'Leaf Guard', 'Infiltrator'], - attack: 55, - classfication: 'Cottonweed Pokémon', - defense: 70, - hp: 75, - japaneseName: 'Wataccoワタッコ', - name: 'Jumpluff', - id: 189, - generation: 2, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Run Away', 'Pickup', 'Skill Link'], - attack: 70, - classfication: 'Long Tail Pokémon', - defense: 55, - hp: 55, - japaneseName: 'Eipamエイパム', - name: 'Aipom', - id: 190, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Chlorophyll', 'Solar Power', 'Early Bird'], - attack: 30, - classfication: 'Seed Pokémon', - defense: 30, - hp: 30, - japaneseName: 'Himanutsヒマナッツ', - name: 'Sunkern', - id: 191, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Chlorophyll', 'Solar Power', 'Early Bird'], - attack: 75, - classfication: 'Sun Pokémon', - defense: 55, - hp: 75, - japaneseName: 'Kimawariキマワリ', - name: 'Sunflora', - id: 192, - generation: 2, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Speed Boost', 'Compoundeyes', 'Frisk'], - attack: 65, - classfication: 'Clear Wing Pokémon', - defense: 45, - hp: 65, - japaneseName: 'Yanyanmaヤンヤンマ', - name: 'Yanma', - id: 193, - generation: 2, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Damp', 'Water Absorb', 'Unaware'], - attack: 45, - classfication: 'Water Fish Pokémon', - defense: 45, - hp: 55, - japaneseName: 'Upahウパー', - name: 'Wooper', - id: 194, - generation: 2, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Damp', 'Water Absorb', 'Unaware'], - attack: 85, - classfication: 'Water Fish Pokémon', - defense: 85, - hp: 95, - japaneseName: 'Nuohヌオー', - name: 'Quagsire', - id: 195, - generation: 2, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Synchronize', 'Magic Bounce'], - attack: 65, - classfication: 'Sun Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Eifieエーフィ', - name: 'Espeon', - id: 196, - generation: 2, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Synchronize', 'Inner Focus'], - attack: 65, - classfication: 'Moonlight Pokémon', - defense: 110, - hp: 95, - japaneseName: 'Blackyブラッキー', - name: 'Umbreon', - id: 197, - generation: 2, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Insomnia', 'Super Luck', 'Prankster'], - attack: 85, - classfication: 'Darkness Pokémon', - defense: 42, - hp: 60, - japaneseName: 'Yamikarasuヤミカラス', - name: 'Murkrow', - id: 198, - generation: 2, - isLegendary: false, - types: ['dark', 'flying'], - }, - { - abilities: ['Oblivious', 'Own Tempo', 'Regenerator'], - attack: 75, - classfication: 'Royal Pokémon', - defense: 80, - hp: 95, - japaneseName: 'Yadokingヤドキング', - name: 'Slowking', - id: 199, - generation: 2, - isLegendary: false, - types: ['water', 'psychic'], - }, - { - abilities: ['Levitate'], - attack: 60, - classfication: 'Screech Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Mumaムウマ', - name: 'Misdreavus', - id: 200, - generation: 2, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Levitate'], - attack: 72, - classfication: 'Symbol Pokémon', - defense: 48, - hp: 48, - japaneseName: 'Unknownアンノーン', - name: 'Unown', - id: 201, - generation: 2, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Shadow Tag', 'Telepathy'], - attack: 33, - classfication: 'Patient Pokémon', - defense: 58, - hp: 190, - japaneseName: 'Sonansソーナンス', - name: 'Wobbuffet', - id: 202, - generation: 2, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Inner Focus', 'Early Bird', 'Sap Sipper'], - attack: 80, - classfication: 'Long Neck Pokémon', - defense: 65, - hp: 70, - japaneseName: 'Kirinrikiキリンリキ', - name: 'Girafarig', - id: 203, - generation: 2, - isLegendary: false, - types: ['normal', 'psychic'], - }, - { - abilities: ['Sturdy', 'Overcoat'], - attack: 65, - classfication: 'Bagworm Pokémon', - defense: 90, - hp: 50, - japaneseName: 'Kunugidamaクヌギダマ', - name: 'Pineco', - id: 204, - generation: 2, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Sturdy', 'Overcoat'], - attack: 90, - classfication: 'Bagworm Pokémon', - defense: 140, - hp: 75, - japaneseName: 'Foretosフォレトス', - name: 'Forretress', - id: 205, - generation: 2, - isLegendary: false, - types: ['bug', 'steel'], - }, - { - abilities: ['Serene Grace', 'Run Away', 'Rattled'], - attack: 70, - classfication: 'Land Snake Pokémon', - defense: 70, - hp: 100, - japaneseName: 'Nokocchiノコッチ', - name: 'Dunsparce', - id: 206, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Hyper Cutter', 'Sand Veil', 'Immunity'], - attack: 75, - classfication: 'Flyscorpion Pokémon', - defense: 105, - hp: 65, - japaneseName: 'Gligerグライガー', - name: 'Gligar', - id: 207, - generation: 2, - isLegendary: false, - types: ['ground', 'flying'], - }, - { - abilities: ['Rock Head', 'Sturdy', 'Sheer Force'], - attack: 125, - classfication: 'Iron Snake Pokémon', - defense: 230, - hp: 75, - japaneseName: 'Haganeilハガネール', - name: 'Steelix', - id: 208, - generation: 2, - isLegendary: false, - types: ['steel', 'ground'], - }, - { - abilities: ['Intimidate', 'Run Away', 'Rattled'], - attack: 80, - classfication: 'Fairy Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Buluブルー', - name: 'Snubbull', - id: 209, - generation: 2, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Intimidate', 'Quick Feet', 'Rattled'], - attack: 120, - classfication: 'Fairy Pokémon', - defense: 75, - hp: 90, - japaneseName: 'Granbuluグランブル', - name: 'Granbull', - id: 210, - generation: 2, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Poison Point', 'Swift Swim', 'Intimidate'], - attack: 95, - classfication: 'Balloon Pokémon', - defense: 85, - hp: 65, - japaneseName: 'Harysenハリーセン', - name: 'Qwilfish', - id: 211, - generation: 2, - isLegendary: false, - types: ['water', 'poison'], - }, - { - abilities: ['Swarm', 'Technician', 'Light Metal'], - attack: 150, - classfication: 'Pincer Pokémon', - defense: 140, - hp: 70, - japaneseName: 'Hassamハッサム', - name: 'Scizor', - id: 212, - generation: 2, - isLegendary: false, - types: ['bug', 'steel'], - }, - { - abilities: ['Sturdy', 'Gluttony', 'Contrary'], - attack: 10, - classfication: 'Mold Pokémon', - defense: 230, - hp: 20, - japaneseName: 'Tsubotsuboツボツボ', - name: 'Shuckle', - id: 213, - generation: 2, - isLegendary: false, - types: ['bug', 'rock'], - }, - { - abilities: ['Swarm', 'Guts', 'Moxie'], - attack: 185, - classfication: 'Singlehorn Pokémon', - defense: 115, - hp: 80, - japaneseName: 'Heracrosヘラクロス', - name: 'Heracross', - id: 214, - generation: 2, - isLegendary: false, - types: ['bug', 'fighting'], - }, - { - abilities: ['Inner Focus', 'Keen Eye', 'Pickpocket'], - attack: 95, - classfication: 'Sharp Claw Pokémon', - defense: 55, - hp: 55, - japaneseName: 'Nyulaニューラ', - name: 'Sneasel', - id: 215, - generation: 2, - isLegendary: false, - types: ['dark', 'ice'], - }, - { - abilities: ['Pickup', 'Quick Feet', 'Honey Gather'], - attack: 80, - classfication: 'Little Bear Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Himegumaヒメグマ', - name: 'Teddiursa', - id: 216, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Guts', 'Quick Feet', 'Unnerve'], - attack: 130, - classfication: 'Hibernator Pokémon', - defense: 75, - hp: 90, - japaneseName: 'Ringumaリングマ', - name: 'Ursaring', - id: 217, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Magma Armor', 'Flame Body', 'Weak Armor'], - attack: 40, - classfication: 'Lava Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Magmagマグマッグ', - name: 'Slugma', - id: 218, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Magma Armor', 'Flame Body', 'Weak Armor'], - attack: 50, - classfication: 'Lava Pokémon', - defense: 120, - hp: 60, - japaneseName: 'Magcargotマグカルゴ', - name: 'Magcargo', - id: 219, - generation: 2, - isLegendary: false, - types: ['fire', 'rock'], - }, - { - abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], - attack: 50, - classfication: 'Pig Pokémon', - defense: 40, - hp: 50, - japaneseName: 'Urimooウリムー', - name: 'Swinub', - id: 220, - generation: 2, - isLegendary: false, - types: ['ice', 'ground'], - }, - { - abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], - attack: 100, - classfication: 'Swine Pokémon', - defense: 80, - hp: 100, - japaneseName: 'Inomooイノムー', - name: 'Piloswine', - id: 221, - generation: 2, - isLegendary: false, - types: ['ice', 'ground'], - }, - { - abilities: ['Hustle', 'Natural Cure', 'Regenerator'], - attack: 55, - classfication: 'Coral Pokémon', - defense: 95, - hp: 65, - japaneseName: 'Sunnygoサニーゴ', - name: 'Corsola', - id: 222, - generation: 2, - isLegendary: false, - types: ['water', 'rock'], - }, - { - abilities: ['Hustle', 'Sniper', 'Moody'], - attack: 65, - classfication: 'Jet Pokémon', - defense: 35, - hp: 35, - japaneseName: 'Teppouoテッポウオ', - name: 'Remoraid', - id: 223, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Suction Cups', 'Sniper', 'Moody'], - attack: 105, - classfication: 'Jet Pokémon', - defense: 75, - hp: 75, - japaneseName: 'Okutankオクタン', - name: 'Octillery', - id: 224, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Vital Spirit', 'Hustle', 'Insomnia'], - attack: 55, - classfication: 'Delivery Pokémon', - defense: 45, - hp: 45, - japaneseName: 'Delibirdデリバード', - name: 'Delibird', - id: 225, - generation: 2, - isLegendary: false, - types: ['ice', 'flying'], - }, - { - abilities: ['Swift Swim', 'Water Absorb', 'Water Veil'], - attack: 40, - classfication: 'Kite Pokémon', - defense: 70, - hp: 85, - japaneseName: 'Mantainマンタイン', - name: 'Mantine', - id: 226, - generation: 2, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Keen Eye', 'Sturdy', 'Weak Armor'], - attack: 80, - classfication: 'Armor Bird Pokémon', - defense: 140, - hp: 65, - japaneseName: 'Airmdエアームド', - name: 'Skarmory', - id: 227, - generation: 2, - isLegendary: false, - types: ['steel', 'flying'], - }, - { - abilities: ['Early Bird', 'Flash Fire', 'Unnerve'], - attack: 60, - classfication: 'Dark Pokémon', - defense: 30, - hp: 45, - japaneseName: 'Delvilデルビル', - name: 'Houndour', - id: 228, - generation: 2, - isLegendary: false, - types: ['dark', 'fire'], - }, - { - abilities: ['Early Bird', 'Flash Fire', 'Unnerve'], - attack: 90, - classfication: 'Dark Pokémon', - defense: 90, - hp: 75, - japaneseName: 'Hellgarヘルガー', - name: 'Houndoom', - id: 229, - generation: 2, - isLegendary: false, - types: ['dark', 'fire'], - }, - { - abilities: ['Swift Swim', 'Sniper', 'Damp'], - attack: 95, - classfication: 'Dragon Pokémon', - defense: 95, - hp: 75, - japaneseName: 'Kingdraキングドラ', - name: 'Kingdra', - id: 230, - generation: 2, - isLegendary: false, - types: ['water', 'dragon'], - }, - { - abilities: ['Pickup', 'Sand Veil'], - attack: 60, - classfication: 'Long Nose Pokémon', - defense: 60, - hp: 90, - japaneseName: 'Gomazouゴマゾウ', - name: 'Phanpy', - id: 231, - generation: 2, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Sturdy', 'Sand Veil'], - attack: 120, - classfication: 'Armor Pokémon', - defense: 120, - hp: 90, - japaneseName: 'Donfanドンファン', - name: 'Donphan', - id: 232, - generation: 2, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Trace', 'Download', 'Analytic'], - attack: 80, - classfication: 'Virtual Pokémon', - defense: 90, - hp: 85, - japaneseName: 'Porygon2ポリゴン2', - name: 'Porygon2', - id: 233, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Intimidate', 'Frisk', 'Sap Sipper'], - attack: 95, - classfication: 'Big Horn Pokémon', - defense: 62, - hp: 73, - japaneseName: 'Odoshishiオドシシ', - name: 'Stantler', - id: 234, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Own Tempo', 'Technician', 'Moody'], - attack: 20, - classfication: 'Painter Pokémon', - defense: 35, - hp: 55, - japaneseName: 'Dobleドーブル', - name: 'Smeargle', - id: 235, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Guts', 'Steadfast', 'Vital Spirit'], - attack: 35, - classfication: 'Scuffle Pokémon', - defense: 35, - hp: 35, - japaneseName: 'Balkieバルキー', - name: 'Tyrogue', - id: 236, - generation: 2, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Intimidate', 'Technician', 'Steadfast'], - attack: 95, - classfication: 'Handstand Pokémon', - defense: 95, - hp: 50, - japaneseName: 'Kapoererカポエラー', - name: 'Hitmontop', - id: 237, - generation: 2, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Oblivious', 'Forewarn', 'Hydration'], - attack: 30, - classfication: 'Kiss Pokémon', - defense: 15, - hp: 45, - japaneseName: 'Muchulムチュール', - name: 'Smoochum', - id: 238, - generation: 2, - isLegendary: false, - types: ['ice', 'psychic'], - }, - { - abilities: ['Static', 'Vital Spirit'], - attack: 63, - classfication: 'Electric Pokémon', - defense: 37, - hp: 45, - japaneseName: 'Elekidエレキッド', - name: 'Elekid', - id: 239, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Flame Body', 'Vital Spirit'], - attack: 75, - classfication: 'Live Coal Pokémon', - defense: 37, - hp: 45, - japaneseName: 'Bubyブビィ', - name: 'Magby', - id: 240, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Thick Fat', 'Scrappy', 'Sap Sipper'], - attack: 80, - classfication: 'Milk Cow Pokémon', - defense: 105, - hp: 95, - japaneseName: 'Miltankミルタンク', - name: 'Miltank', - id: 241, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Natural Cure', 'Serene Grace', 'Healer'], - attack: 10, - classfication: 'Happiness Pokémon', - defense: 10, - hp: 255, - japaneseName: 'Happinasハピナス', - name: 'Blissey', - id: 242, - generation: 2, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Pressure', 'Inner Focus'], - attack: 85, - classfication: 'Thunder Pokémon', - defense: 75, - hp: 90, - japaneseName: 'Raikouライコウ', - name: 'Raikou', - id: 243, - generation: 2, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Pressure', 'Inner Focus'], - attack: 115, - classfication: 'Volcano Pokémon', - defense: 85, - hp: 115, - japaneseName: 'Enteiエンテイ', - name: 'Entei', - id: 244, - generation: 2, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Pressure', 'Inner Focus'], - attack: 75, - classfication: 'Aurora Pokémon', - defense: 115, - hp: 100, - japaneseName: 'Suicuneスイクン', - name: 'Suicune', - id: 245, - generation: 2, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Guts', 'Sand Veil'], - attack: 64, - classfication: 'Rock Skin Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Yogirasヨーギラス', - name: 'Larvitar', - id: 246, - generation: 2, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: ['Shed Skin'], - attack: 84, - classfication: 'Hard Shell Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Sanagirasサナギラス', - name: 'Pupitar', - id: 247, - generation: 2, - isLegendary: false, - types: ['rock', 'ground'], - }, - { - abilities: ['Sand Stream', 'Unnerve'], - attack: 164, - classfication: 'Armor Pokémon', - defense: 150, - hp: 100, - japaneseName: 'Bangirasバンギラス', - name: 'Tyranitar', - id: 248, - generation: 2, - isLegendary: false, - types: ['rock', 'dark'], - }, - { - abilities: ['Pressure', 'Multiscale'], - attack: 90, - classfication: 'Diving Pokémon', - defense: 130, - hp: 106, - japaneseName: 'Lugiaルギア', - name: 'Lugia', - id: 249, - generation: 2, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Pressure', 'Regenerator'], - attack: 130, - classfication: 'Rainbow Pokémon', - defense: 90, - hp: 106, - japaneseName: 'Hououホウオウ', - name: 'Ho-Oh', - id: 250, - generation: 2, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Natural Cure'], - attack: 100, - classfication: 'Time Travel Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Celebiセレビィ', - name: 'Celebi', - id: 251, - generation: 2, - isLegendary: false, - types: ['psychic', 'grass'], - }, - { - abilities: ['Overgrow', 'Unburden'], - attack: 45, - classfication: 'Wood Gecko Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Kimoriキモリ', - name: 'Treecko', - id: 252, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Unburden'], - attack: 65, - classfication: 'Wood Gecko Pokémon', - defense: 45, - hp: 50, - japaneseName: 'Juptileジュプトル', - name: 'Grovyle', - id: 253, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Unburden'], - attack: 110, - classfication: 'Forest Pokémon', - defense: 75, - hp: 70, - japaneseName: 'Jukainジュカイン', - name: 'Sceptile', - id: 254, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Blaze', 'Speed Boost'], - attack: 60, - classfication: 'Chick Pokémon', - defense: 40, - hp: 45, - japaneseName: 'Achamoアチャモ', - name: 'Torchic', - id: 255, - generation: 3, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Speed Boost'], - attack: 85, - classfication: 'Young Fowl Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Wakasyamoワカシャモ', - name: 'Combusken', - id: 256, - generation: 3, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Blaze', 'Speed Boost'], - attack: 160, - classfication: 'Blaze Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Bursyamoバシャーモ', - name: 'Blaziken', - id: 257, - generation: 3, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Torrent', 'Damp'], - attack: 70, - classfication: 'Mud Fish Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Mizugorouミズゴロウ', - name: 'Mudkip', - id: 258, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Damp'], - attack: 85, - classfication: 'Mud Fish Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Numacrawヌマクロー', - name: 'Marshtomp', - id: 259, - generation: 3, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Torrent', 'Damp'], - attack: 150, - classfication: 'Mud Fish Pokémon', - defense: 110, - hp: 100, - japaneseName: 'Laglargeラグラージ', - name: 'Swampert', - id: 260, - generation: 3, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Run Away', 'Quick Feet', 'Rattled'], - attack: 55, - classfication: 'Bite Pokémon', - defense: 35, - hp: 35, - japaneseName: 'Pochienaポチエナ', - name: 'Poochyena', - id: 261, - generation: 3, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Intimidate', 'Quick Feet', 'Moxie'], - attack: 90, - classfication: 'Bite Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Graenaグラエナ', - name: 'Mightyena', - id: 262, - generation: 3, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Pickup', 'Gluttony', 'Quick Feet'], - attack: 30, - classfication: 'Tiny Racoon Pokémon', - defense: 41, - hp: 38, - japaneseName: 'Jiguzagumaジグザグマ', - name: 'Zigzagoon', - id: 263, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Pickup', 'Gluttony', 'Quick Feet'], - attack: 70, - classfication: 'Rush Pokémon', - defense: 61, - hp: 78, - japaneseName: 'Massugumaマッスグマ', - name: 'Linoone', - id: 264, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Shield Dust', 'Run Away'], - attack: 45, - classfication: 'Worm Pokémon', - defense: 35, - hp: 45, - japaneseName: 'Kemussoケムッソ', - name: 'Wurmple', - id: 265, - generation: 3, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Shed Skin'], - attack: 35, - classfication: 'Cocoon Pokémon', - defense: 55, - hp: 50, - japaneseName: 'Karasalisカラサリス', - name: 'Silcoon', - id: 266, - generation: 3, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Swarm', 'Rivalry'], - attack: 70, - classfication: 'Butterfly Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Agehuntアゲハント', - name: 'Beautifly', - id: 267, - generation: 3, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Shed Skin'], - attack: 35, - classfication: 'Cocoon Pokémon', - defense: 55, - hp: 50, - japaneseName: 'Mayuldマユルド', - name: 'Cascoon', - id: 268, - generation: 3, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Shield Dust', 'Compoundeyes'], - attack: 50, - classfication: 'Poison Moth Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Dokucaleドクケイル', - name: 'Dustox', - id: 269, - generation: 3, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], - attack: 30, - classfication: 'Water Weed Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Hassbohハスボー', - name: 'Lotad', - id: 270, - generation: 3, - isLegendary: false, - types: ['water', 'grass'], - }, - { - abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], - attack: 50, - classfication: 'Jolly Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Hasubreroハスブレロ', - name: 'Lombre', - id: 271, - generation: 3, - isLegendary: false, - types: ['water', 'grass'], - }, - { - abilities: ['Swift Swim', 'Rain Dish', 'Own Tempo'], - attack: 70, - classfication: 'Carefree Pokémon', - defense: 70, - hp: 80, - japaneseName: 'Runpappaルンパッパ', - name: 'Ludicolo', - id: 272, - generation: 3, - isLegendary: false, - types: ['water', 'grass'], - }, - { - abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], - attack: 40, - classfication: 'Acorn Pokémon', - defense: 50, - hp: 40, - japaneseName: 'Tanebohタネボー', - name: 'Seedot', - id: 273, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], - attack: 70, - classfication: 'Wily Pokémon', - defense: 40, - hp: 70, - japaneseName: 'Konohanaコノハナ', - name: 'Nuzleaf', - id: 274, - generation: 3, - isLegendary: false, - types: ['grass', 'dark'], - }, - { - abilities: ['Chlorophyll', 'Early Bird', 'Pickpocket'], - attack: 100, - classfication: 'Wickid Pokémon', - defense: 60, - hp: 90, - japaneseName: 'Dirtengダーテング', - name: 'Shiftry', - id: 275, - generation: 3, - isLegendary: false, - types: ['grass', 'dark'], - }, - { - abilities: ['Guts', 'Scrappy'], - attack: 55, - classfication: 'TinySwallow Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Subameスバメ', - name: 'Taillow', - id: 276, - generation: 3, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Guts', 'Scrappy'], - attack: 85, - classfication: 'Swallow Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Ohsubameオオスバメ', - name: 'Swellow', - id: 277, - generation: 3, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Hydration', 'Rain Dish'], - attack: 30, - classfication: 'Seagull Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Camomeキャモメ', - name: 'Wingull', - id: 278, - generation: 3, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Keen Eye', 'Drizzle', 'Rain Dish'], - attack: 50, - classfication: 'Water Bird Pokémon', - defense: 100, - hp: 60, - japaneseName: 'Pelipperペリッパー', - name: 'Pelipper', - id: 279, - generation: 3, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Synchronize', 'Trace', 'Telepathy'], - attack: 25, - classfication: 'Feeling Pokémon', - defense: 25, - hp: 28, - japaneseName: 'Raltsラルトス', - name: 'Ralts', - id: 280, - generation: 3, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Synchronize', 'Trace', 'Telepathy'], - attack: 35, - classfication: 'Emotion Pokémon', - defense: 35, - hp: 38, - japaneseName: 'Kirliaキルリア', - name: 'Kirlia', - id: 281, - generation: 3, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Synchronize', 'Trace', 'Telepathy'], - attack: 85, - classfication: 'Embrace Pokémon', - defense: 65, - hp: 68, - japaneseName: 'Sirnightサーナイト', - name: 'Gardevoir', - id: 282, - generation: 3, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Swift Swim', 'Rain Dish'], - attack: 30, - classfication: 'Pond Skater Pokémon', - defense: 32, - hp: 40, - japaneseName: 'Ametamaアメタマ', - name: 'Surskit', - id: 283, - generation: 3, - isLegendary: false, - types: ['bug', 'water'], - }, - { - abilities: ['Intimidate', 'Unnerve'], - attack: 60, - classfication: 'Eyeball Pokémon', - defense: 62, - hp: 70, - japaneseName: 'Amemothアメモース', - name: 'Masquerain', - id: 284, - generation: 3, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Effect Spore', 'Poison Heal', 'Quick Feet'], - attack: 40, - classfication: 'Mushroom Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Kinococoキノココ', - name: 'Shroomish', - id: 285, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Effect Spore', 'Poison Heal', 'Technician'], - attack: 130, - classfication: 'Mushroom Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Kinogassaキノガッサ', - name: 'Breloom', - id: 286, - generation: 3, - isLegendary: false, - types: ['grass', 'fighting'], - }, - { - abilities: ['Truant'], - attack: 60, - classfication: 'Slacker Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Namakeroナマケロ', - name: 'Slakoth', - id: 287, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Vital Spirit'], - attack: 80, - classfication: 'Wild Monkey Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Yarukimonoヤルキモノ', - name: 'Vigoroth', - id: 288, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Truant'], - attack: 160, - classfication: 'Lazy Pokémon', - defense: 100, - hp: 150, - japaneseName: 'Kekkingケッキング', - name: 'Slaking', - id: 289, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Compoundeyes', 'Run Away'], - attack: 45, - classfication: 'Trainee Pokémon', - defense: 90, - hp: 31, - japaneseName: 'Tutininツチニン', - name: 'Nincada', - id: 290, - generation: 3, - isLegendary: false, - types: ['bug', 'ground'], - }, - { - abilities: ['Speed Boost', 'Infiltrator'], - attack: 90, - classfication: 'Ninja Pokémon', - defense: 45, - hp: 61, - japaneseName: 'Tekkaninテッカニン', - name: 'Ninjask', - id: 291, - generation: 3, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Wonder Guard'], - attack: 90, - classfication: 'Shed Pokémon', - defense: 45, - hp: 1, - japaneseName: 'Nukeninヌケニン', - name: 'Shedinja', - id: 292, - generation: 3, - isLegendary: false, - types: ['bug', 'ghost'], - }, - { - abilities: ['Soundproof', 'Rattled'], - attack: 51, - classfication: 'Whisper Pokémon', - defense: 23, - hp: 64, - japaneseName: 'Gonyonyoゴニョニョ', - name: 'Whismur', - id: 293, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Soundproof', 'Scrappy'], - attack: 71, - classfication: 'Big Voice Pokémon', - defense: 43, - hp: 84, - japaneseName: 'Dogohmbドゴーム', - name: 'Loudred', - id: 294, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Soundproof', 'Scrappy'], - attack: 91, - classfication: 'Loud Noise Pokémon', - defense: 63, - hp: 104, - japaneseName: 'Bakuongバクオング', - name: 'Exploud', - id: 295, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Thick Fat', 'Guts', 'Sheer Force'], - attack: 60, - classfication: 'Guts Pokémon', - defense: 30, - hp: 72, - japaneseName: 'Makunoshitaマクノシタ', - name: 'Makuhita', - id: 296, - generation: 3, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Thick Fat', 'Guts', 'Sheer Force'], - attack: 120, - classfication: 'Arm Thrust Pokémon', - defense: 60, - hp: 144, - japaneseName: 'Hariteyamaハリテヤマ', - name: 'Hariyama', - id: 297, - generation: 3, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Thick Fat', 'Huge Power', 'Sap Sipper'], - attack: 20, - classfication: 'Polka Dot Pokémon', - defense: 40, - hp: 50, - japaneseName: 'Ruririルリリ', - name: 'Azurill', - id: 298, - generation: 3, - isLegendary: false, - types: ['normal', 'fairy'], - }, - { - abilities: ['Sturdy', 'Magnet Pull', 'Sand Force'], - attack: 45, - classfication: 'Compass Pokémon', - defense: 135, - hp: 30, - japaneseName: 'Nosepassノズパス', - name: 'Nosepass', - id: 299, - generation: 3, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Cute Charm', 'Normalize', 'Wonder Skin '], - attack: 45, - classfication: 'Kitten Pokémon', - defense: 45, - hp: 50, - japaneseName: 'Enecoエネコ', - name: 'Skitty', - id: 300, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Cute Charm', 'Normalize', 'Wonder Skin '], - attack: 65, - classfication: 'Prim Pokémon', - defense: 65, - hp: 70, - japaneseName: 'Enekororoエネコロロ', - name: 'Delcatty', - id: 301, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Keen Eye', 'Stall', 'Prankster'], - attack: 85, - classfication: 'Darkness Pokémon', - defense: 125, - hp: 50, - japaneseName: 'Yamiramiヤミラミ', - name: 'Sableye', - id: 302, - generation: 3, - isLegendary: false, - types: ['dark', 'ghost'], - }, - { - abilities: ['Hyper Cutter', 'Intimidate', 'Sheer Force'], - attack: 105, - classfication: 'Deceiver Pokémon', - defense: 125, - hp: 50, - japaneseName: 'Kucheatクチート', - name: 'Mawile', - id: 303, - generation: 3, - isLegendary: false, - types: ['steel', 'fairy'], - }, - { - abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], - attack: 70, - classfication: 'Iron Armor Pokémon', - defense: 100, - hp: 50, - japaneseName: 'Cokodoraココドラ', - name: 'Aron', - id: 304, - generation: 3, - isLegendary: false, - types: ['steel', 'rock'], - }, - { - abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], - attack: 90, - classfication: 'Iron Armor Pokémon', - defense: 140, - hp: 60, - japaneseName: 'Kodoraコドラ', - name: 'Lairon', - id: 305, - generation: 3, - isLegendary: false, - types: ['steel', 'rock'], - }, - { - abilities: ['Sturdy', 'Rock Head', 'Heavy Metal'], - attack: 140, - classfication: 'Iron Armor Pokémon', - defense: 230, - hp: 70, - japaneseName: 'Bossgodoraボスゴドラ', - name: 'Aggron', - id: 306, - generation: 3, - isLegendary: false, - types: ['steel', 'rock'], - }, - { - abilities: ['Pure Power', 'Telepathy'], - attack: 40, - classfication: 'Meditate Pokémon', - defense: 55, - hp: 30, - japaneseName: 'Asananアサナン', - name: 'Meditite', - id: 307, - generation: 3, - isLegendary: false, - types: ['fighting', 'psychic'], - }, - { - abilities: ['Pure Power', 'Telepathy'], - attack: 100, - classfication: 'Meditate Pokémon', - defense: 85, - hp: 60, - japaneseName: 'Charemチャーレム', - name: 'Medicham', - id: 308, - generation: 3, - isLegendary: false, - types: ['fighting', 'psychic'], - }, - { - abilities: ['Static', 'Lightningrod', 'Minus'], - attack: 45, - classfication: 'Lightning Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Rakuraiラクライ', - name: 'Electrike', - id: 309, - generation: 3, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Static', 'Lightningrod', 'Minus'], - attack: 75, - classfication: 'Discharge Pokémon', - defense: 80, - hp: 70, - japaneseName: 'Livoltライボルト', - name: 'Manectric', - id: 310, - generation: 3, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Plus', 'Lightningrod'], - attack: 50, - classfication: 'Cheering Pokémon', - defense: 40, - hp: 60, - japaneseName: 'Prasleプラスル', - name: 'Plusle', - id: 311, - generation: 3, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Minus', 'Volt Absorb'], - attack: 40, - classfication: 'Cheering Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Minunマイナン', - name: 'Minun', - id: 312, - generation: 3, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Illuminate', 'Swarm', 'Prankster'], - attack: 73, - classfication: 'Firefly Pokémon', - defense: 75, - hp: 65, - japaneseName: 'Barubeatバルビート', - name: 'Volbeat', - id: 313, - generation: 3, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Oblivious', 'Tinted Lens', 'Prankster'], - attack: 47, - classfication: 'Firefly Pokémon', - defense: 75, - hp: 65, - japaneseName: 'Illumiseイルミーゼ', - name: 'Illumise', - id: 314, - generation: 3, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Natural Cure', 'Poison Point', 'Leaf Guard'], - attack: 60, - classfication: 'Thorn Pokémon', - defense: 45, - hp: 50, - japaneseName: 'Roseliaロゼリア', - name: 'Roselia', - id: 315, - generation: 3, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Liquid Ooze', 'Sticky Hold', 'Gluttony'], - attack: 43, - classfication: 'Stomach Pokémon', - defense: 53, - hp: 70, - japaneseName: 'Gokulinゴクリン', - name: 'Gulpin', - id: 316, - generation: 3, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Liquid Ooze', 'Sticky Hold', 'Gluttony'], - attack: 73, - classfication: 'Poison Bag Pokémon', - defense: 83, - hp: 100, - japaneseName: 'Marunoomマルノーム', - name: 'Swalot', - id: 317, - generation: 3, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Rough Skin', 'Speed Boost'], - attack: 90, - classfication: 'Savage Pokémon', - defense: 20, - hp: 45, - japaneseName: 'Kibanhaキバニア', - name: 'Carvanha', - id: 318, - generation: 3, - isLegendary: false, - types: ['water', 'dark'], - }, - { - abilities: ['Rough Skin', 'Speed Boost'], - attack: 140, - classfication: 'Brutal Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Samehaderサメハダー', - name: 'Sharpedo', - id: 319, - generation: 3, - isLegendary: false, - types: ['water', 'dark'], - }, - { - abilities: ['Water Veil', 'Oblivious', 'Pressure'], - attack: 70, - classfication: 'Ball Whale Pokémon', - defense: 35, - hp: 130, - japaneseName: 'Hoerukoホエルコ', - name: 'Wailmer', - id: 320, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Water Veil', 'Oblivious', 'Pressure'], - attack: 90, - classfication: 'Float Whale Pokémon', - defense: 45, - hp: 170, - japaneseName: 'Whalohホエルオー', - name: 'Wailord', - id: 321, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Oblivious', 'Simple', 'Own Tempo'], - attack: 60, - classfication: 'Numb Pokémon', - defense: 40, - hp: 60, - japaneseName: 'Donmelドンメル', - name: 'Numel', - id: 322, - generation: 3, - isLegendary: false, - types: ['fire', 'ground'], - }, - { - abilities: ['Magma Armor', 'Solid Rock', 'Anger Point'], - attack: 120, - classfication: 'Eruption Pokémon', - defense: 100, - hp: 70, - japaneseName: 'Bakuudaバクーダ', - name: 'Camerupt', - id: 323, - generation: 3, - isLegendary: false, - types: ['fire', 'ground'], - }, - { - abilities: ['White Smoke', 'Drought', 'Shell Armor'], - attack: 85, - classfication: 'Coal Pokémon', - defense: 140, - hp: 70, - japaneseName: 'Cotoiseコータス', - name: 'Torkoal', - id: 324, - generation: 3, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Thick Fat', 'Own Tempo', 'Gluttony'], - attack: 25, - classfication: 'Bounce Pokémon', - defense: 35, - hp: 60, - japaneseName: 'Banebooバネブー', - name: 'Spoink', - id: 325, - generation: 3, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Thick Fat', 'Own Tempo', 'Gluttony'], - attack: 45, - classfication: 'Manipulate Pokémon', - defense: 65, - hp: 80, - japaneseName: 'Boopigブーピッグ', - name: 'Grumpig', - id: 326, - generation: 3, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Own Tempo', 'Tangled Feet', 'Contrary'], - attack: 60, - classfication: 'Spot Panda Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Patcheelパッチール', - name: 'Spinda', - id: 327, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Hyper Cutter', 'Arena Trap', 'Sheer Force'], - attack: 100, - classfication: 'Ant Pit Pokémon', - defense: 45, - hp: 45, - japaneseName: 'Nuckrarナックラー', - name: 'Trapinch', - id: 328, - generation: 3, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Levitate'], - attack: 70, - classfication: 'Vibration Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Vibravaビブラーバ', - name: 'Vibrava', - id: 329, - generation: 3, - isLegendary: false, - types: ['ground', 'dragon'], - }, - { - abilities: ['Levitate'], - attack: 100, - classfication: 'Mystic Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Flygonフライゴン', - name: 'Flygon', - id: 330, - generation: 3, - isLegendary: false, - types: ['ground', 'dragon'], - }, - { - abilities: ['Sand Veil', 'Water Absorb'], - attack: 85, - classfication: 'Cactus Pokémon', - defense: 40, - hp: 50, - japaneseName: 'Saboneaサボネア', - name: 'Cacnea', - id: 331, - generation: 3, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Sand Veil', 'Water Absorb'], - attack: 115, - classfication: 'Scarecrow Pokémon', - defense: 60, - hp: 70, - japaneseName: 'Noctusノクタス', - name: 'Cacturne', - id: 332, - generation: 3, - isLegendary: false, - types: ['grass', 'dark'], - }, - { - abilities: ['Natural Cure', 'Cloud Nine'], - attack: 40, - classfication: 'Cotton Bird Pokémon', - defense: 60, - hp: 45, - japaneseName: 'Tylttoチルット', - name: 'Swablu', - id: 333, - generation: 3, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Natural Cure', 'Cloud Nine'], - attack: 110, - classfication: 'Humming Pokémon', - defense: 110, - hp: 75, - japaneseName: 'Tyltalisチルタリス', - name: 'Altaria', - id: 334, - generation: 3, - isLegendary: false, - types: ['dragon', 'flying'], - }, - { - abilities: ['Immunity', 'Toxic Boost'], - attack: 115, - classfication: 'Cat Ferret Pokémon', - defense: 60, - hp: 73, - japaneseName: 'Zangooseザングース', - name: 'Zangoose', - id: 335, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Shed Skin', 'Infiltrator'], - attack: 100, - classfication: 'Fang Snake Pokémon', - defense: 60, - hp: 73, - japaneseName: 'Habunakeハブネーク', - name: 'Seviper', - id: 336, - generation: 3, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Levitate'], - attack: 55, - classfication: 'Meteorite Pokémon', - defense: 65, - hp: 90, - japaneseName: 'Lunatoneルナトーン', - name: 'Lunatone', - id: 337, - generation: 3, - isLegendary: false, - types: ['rock', 'psychic'], - }, - { - abilities: ['Levitate'], - attack: 95, - classfication: 'Meteorite Pokémon', - defense: 85, - hp: 90, - japaneseName: 'Solrockソルロック', - name: 'Solrock', - id: 338, - generation: 3, - isLegendary: false, - types: ['rock', 'psychic'], - }, - { - abilities: ['Oblivious', 'Anticipation', 'Hydration'], - attack: 48, - classfication: 'Whiskers Pokémon', - defense: 43, - hp: 50, - japaneseName: 'Dojoachドジョッチ', - name: 'Barboach', - id: 339, - generation: 3, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Oblivious', 'Anticipation', 'Hydration'], - attack: 78, - classfication: 'Whiskers Pokémon', - defense: 73, - hp: 110, - japaneseName: 'Namazunナマズン', - name: 'Whiscash', - id: 340, - generation: 3, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Hyper Cutter', 'Shell Armor', 'Adaptability'], - attack: 80, - classfication: 'Ruffian Pokémon', - defense: 65, - hp: 43, - japaneseName: 'Heiganiヘイガニ', - name: 'Corphish', - id: 341, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Hyper Cutter', 'Shell Armor', 'Adaptability'], - attack: 120, - classfication: 'Rogue Pokémon', - defense: 85, - hp: 63, - japaneseName: 'Shizarigerシザリガー', - name: 'Crawdaunt', - id: 342, - generation: 3, - isLegendary: false, - types: ['water', 'dark'], - }, - { - abilities: ['Levitate'], - attack: 40, - classfication: 'Clay Doll Pokémon', - defense: 55, - hp: 40, - japaneseName: 'Yajilonヤジロン', - name: 'Baltoy', - id: 343, - generation: 3, - isLegendary: false, - types: ['ground', 'psychic'], - }, - { - abilities: ['Levitate'], - attack: 70, - classfication: 'Clay Doll Pokémon', - defense: 105, - hp: 60, - japaneseName: 'Nendollネンドール', - name: 'Claydol', - id: 344, - generation: 3, - isLegendary: false, - types: ['ground', 'psychic'], - }, - { - abilities: ['Suction Cups', 'Storm Drain'], - attack: 41, - classfication: 'Sea Lily Pokémon', - defense: 77, - hp: 66, - japaneseName: 'Lilylaリリーラ', - name: 'Lileep', - id: 345, - generation: 3, - isLegendary: false, - types: ['rock', 'grass'], - }, - { - abilities: ['Suction Cups', 'Storm Drain'], - attack: 81, - classfication: 'Barnacle Pokémon', - defense: 97, - hp: 86, - japaneseName: 'Yuradleユレイドル', - name: 'Cradily', - id: 346, - generation: 3, - isLegendary: false, - types: ['rock', 'grass'], - }, - { - abilities: ['Battle Armor', 'Swift Swim'], - attack: 95, - classfication: 'Old Shrimp Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Anopthアノプス', - name: 'Anorith', - id: 347, - generation: 3, - isLegendary: false, - types: ['rock', 'bug'], - }, - { - abilities: ['Battle Armor', 'Swift Swim'], - attack: 125, - classfication: 'Plate Pokémon', - defense: 100, - hp: 75, - japaneseName: 'Armaldoアーマルド', - name: 'Armaldo', - id: 348, - generation: 3, - isLegendary: false, - types: ['rock', 'bug'], - }, - { - abilities: ['Swift Swim', 'Oblivious', 'Adaptability'], - attack: 15, - classfication: 'Fish Pokémon', - defense: 20, - hp: 20, - japaneseName: 'Hinbassヒンバス', - name: 'Feebas', - id: 349, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Marvel Scale', 'Competitive', 'Cute Charm'], - attack: 60, - classfication: 'Tender Pokémon', - defense: 79, - hp: 95, - japaneseName: 'Milokarossミロカロス', - name: 'Milotic', - id: 350, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Forecast'], - attack: 70, - classfication: 'Weather Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Powalenポワルン', - name: 'Castform', - id: 351, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Color Change', 'Protean'], - attack: 90, - classfication: 'Color Swap Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Kakureonカクレオン', - name: 'Kecleon', - id: 352, - generation: 3, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Insomnia', 'Frisk', 'Cursed Body'], - attack: 75, - classfication: 'Puppet Pokémon', - defense: 35, - hp: 44, - japaneseName: 'Kagebouzuカゲボウズ', - name: 'Shuppet', - id: 353, - generation: 3, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Insomnia', 'Frisk', 'Cursed Body'], - attack: 165, - classfication: 'Marionette Pokémon', - defense: 75, - hp: 64, - japaneseName: 'Juppetaジュペッタ', - name: 'Banette', - id: 354, - generation: 3, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Levitate', 'Frisk'], - attack: 40, - classfication: 'Requiem Pokémon', - defense: 90, - hp: 20, - japaneseName: 'Yomawaruヨマワル', - name: 'Duskull', - id: 355, - generation: 3, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Pressure', 'Frisk'], - attack: 70, - classfication: 'Beckon Pokémon', - defense: 130, - hp: 40, - japaneseName: 'Samayouruサマヨール', - name: 'Dusclops', - id: 356, - generation: 3, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Chlorophyll', 'Solar Power', 'Harvest'], - attack: 68, - classfication: 'Fruit Pokémon', - defense: 83, - hp: 99, - japaneseName: 'Tropiusトロピウス', - name: 'Tropius', - id: 357, - generation: 3, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Levitate'], - attack: 50, - classfication: 'Wind Chime Pokémon', - defense: 80, - hp: 75, - japaneseName: 'Chireanチリーン', - name: 'Chimecho', - id: 358, - generation: 3, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Pressure', 'Super Luck', 'Justified'], - attack: 150, - classfication: 'Disaster Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Absolアブソル', - name: 'Absol', - id: 359, - generation: 3, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Shadow Tag', 'Telepathy'], - attack: 23, - classfication: 'Bright Pokémon', - defense: 48, - hp: 95, - japaneseName: 'Sohnanoソーナノ', - name: 'Wynaut', - id: 360, - generation: 3, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Inner Focus', 'Ice Body', 'Moody'], - attack: 50, - classfication: 'Snow Hat Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Yukiwarashiユキワラシ', - name: 'Snorunt', - id: 361, - generation: 3, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Inner Focus', 'Ice Body', 'Moody'], - attack: 120, - classfication: 'Face Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Onigohriオニゴーリ', - name: 'Glalie', - id: 362, - generation: 3, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], - attack: 40, - classfication: 'Clap Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Tamazarashiタマザラシ', - name: 'Spheal', - id: 363, - generation: 3, - isLegendary: false, - types: ['ice', 'water'], - }, - { - abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], - attack: 60, - classfication: 'Ball Roll Pokémon', - defense: 70, - hp: 90, - japaneseName: 'Todogglerトドグラー', - name: 'Sealeo', - id: 364, - generation: 3, - isLegendary: false, - types: ['ice', 'water'], - }, - { - abilities: ['Thick Fat', 'Ice Body', 'Oblivious'], - attack: 80, - classfication: 'Ice Break Pokémon', - defense: 90, - hp: 110, - japaneseName: 'Todoserugaトドゼルガ', - name: 'Walrein', - id: 365, - generation: 3, - isLegendary: false, - types: ['ice', 'water'], - }, - { - abilities: ['Shell Armor', 'Rattled'], - attack: 64, - classfication: 'Bivalve Pokémon', - defense: 85, - hp: 35, - japaneseName: 'Pearluluパールル', - name: 'Clamperl', - id: 366, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Water Veil'], - attack: 104, - classfication: 'Deep Sea Pokémon', - defense: 105, - hp: 55, - japaneseName: 'Huntailハンテール', - name: 'Huntail', - id: 367, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Hydration'], - attack: 84, - classfication: 'South Sea Pokémon', - defense: 105, - hp: 55, - japaneseName: 'Sakurabyssサクラビス', - name: 'Gorebyss', - id: 368, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Rock Head', 'Sturdy'], - attack: 90, - classfication: 'Longevity Pokémon', - defense: 130, - hp: 100, - japaneseName: 'Glanthジーランス', - name: 'Relicanth', - id: 369, - generation: 3, - isLegendary: false, - types: ['water', 'rock'], - }, - { - abilities: ['Swift Swim', 'Hydration'], - attack: 30, - classfication: 'Rendezvous Pokémon', - defense: 55, - hp: 43, - japaneseName: 'Lovecusラブカス', - name: 'Luvdisc', - id: 370, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Rock Head', 'Sheer Force'], - attack: 75, - classfication: 'Rock Head Pokémon', - defense: 60, - hp: 45, - japaneseName: 'Tatsubayタツベイ', - name: 'Bagon', - id: 371, - generation: 3, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Rock Head', 'Overcoat'], - attack: 95, - classfication: 'Endurance Pokémon', - defense: 100, - hp: 65, - japaneseName: 'Komoruuコモルー', - name: 'Shelgon', - id: 372, - generation: 3, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Intimidate', 'Moxie'], - attack: 145, - classfication: 'Dragon Pokémon', - defense: 130, - hp: 95, - japaneseName: 'Bohmanderボーマンダ', - name: 'Salamence', - id: 373, - generation: 3, - isLegendary: false, - types: ['dragon', 'flying'], - }, - { - abilities: ['Clear Body', 'Light Metal'], - attack: 55, - classfication: 'Iron Ball Pokémon', - defense: 80, - hp: 40, - japaneseName: 'Dumbberダンバル', - name: 'Beldum', - id: 374, - generation: 3, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Clear Body', 'Light Metal'], - attack: 75, - classfication: 'Iron Claw Pokémon', - defense: 100, - hp: 60, - japaneseName: 'Metangメタング', - name: 'Metang', - id: 375, - generation: 3, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Clear Body', 'Light Metal'], - attack: 145, - classfication: 'Iron Leg Pokémon', - defense: 150, - hp: 80, - japaneseName: 'Metagrossメタグロス', - name: 'Metagross', - id: 376, - generation: 3, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Clear Body', 'Sturdy'], - attack: 100, - classfication: 'Rock Peak Pokémon', - defense: 200, - hp: 80, - japaneseName: 'Regirockレジロック', - name: 'Regirock', - id: 377, - generation: 3, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Clear Body', 'Ice Body'], - attack: 50, - classfication: 'Iceberg Pokémon', - defense: 100, - hp: 80, - japaneseName: 'Regiceレジアイス', - name: 'Regice', - id: 378, - generation: 3, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Clear Body', 'Light Metal'], - attack: 75, - classfication: 'Iron Pokémon', - defense: 150, - hp: 80, - japaneseName: 'Registeelレジスチル', - name: 'Registeel', - id: 379, - generation: 3, - isLegendary: false, - types: ['steel'], - }, - { - abilities: ['Levitate'], - attack: 100, - classfication: 'Eon Pokémon', - defense: 120, - hp: 80, - japaneseName: 'Latiasラティアス', - name: 'Latias', - id: 380, - generation: 3, - isLegendary: false, - types: ['dragon', 'psychic'], - }, - { - abilities: ['Levitate'], - attack: 130, - classfication: 'Eon Pokémon', - defense: 100, - hp: 80, - japaneseName: 'Latiosラティオス', - name: 'Latios', - id: 381, - generation: 3, - isLegendary: false, - types: ['dragon', 'psychic'], - }, - { - abilities: ['Drizzle'], - attack: 150, - classfication: 'Sea Basin Pokémon', - defense: 90, - hp: 100, - japaneseName: 'Kyogreカイオーガ', - name: 'Kyogre', - id: 382, - generation: 3, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Drought'], - attack: 180, - classfication: 'Continent Pokémon', - defense: 160, - hp: 100, - japaneseName: 'Groudonグラードン', - name: 'Groudon', - id: 383, - generation: 3, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Air Lock'], - attack: 180, - classfication: 'Sky High Pokémon', - defense: 100, - hp: 105, - japaneseName: 'Rayquazaレックウザ', - name: 'Rayquaza', - id: 384, - generation: 3, - isLegendary: false, - types: ['dragon', 'flying'], - }, - { - abilities: ['Serene Grace'], - attack: 100, - classfication: 'Wish Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Jirachiジラーチ', - name: 'Jirachi', - id: 385, - generation: 3, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Pressure'], - attack: 95, - classfication: 'DNA Pokémon', - defense: 90, - hp: 50, - japaneseName: 'Deoxysデオキシス', - name: 'Deoxys', - id: 386, - generation: 3, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Overgrow', 'Shell Armor'], - attack: 68, - classfication: 'Tiny Leaf Pokémon', - defense: 64, - hp: 55, - japaneseName: 'Naetleナエトル', - name: 'Turtwig', - id: 387, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Shell Armor'], - attack: 89, - classfication: 'Grove Pokémon', - defense: 85, - hp: 75, - japaneseName: 'Hayashigameハヤシガメ', - name: 'Grotle', - id: 388, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Shell Armor'], - attack: 109, - classfication: 'Continent Pokémon', - defense: 105, - hp: 95, - japaneseName: 'Dodaitoseドダイトス', - name: 'Torterra', - id: 389, - generation: 4, - isLegendary: false, - types: ['grass', 'ground'], - }, - { - abilities: ['Blaze', 'Iron Fist'], - attack: 58, - classfication: 'Chimp Pokémon', - defense: 44, - hp: 44, - japaneseName: 'Hikozaruヒコザル', - name: 'Chimchar', - id: 390, - generation: 4, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Iron Fist'], - attack: 78, - classfication: 'Playful Pokémon', - defense: 52, - hp: 64, - japaneseName: 'Moukazaruモウカザル', - name: 'Monferno', - id: 391, - generation: 4, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Blaze', 'Iron Fist'], - attack: 104, - classfication: 'Flame Pokémon', - defense: 71, - hp: 76, - japaneseName: 'Goukazaruゴウカザル', - name: 'Infernape', - id: 392, - generation: 4, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Torrent', 'Defiant'], - attack: 51, - classfication: 'Penguin Pokémon', - defense: 53, - hp: 53, - japaneseName: 'Pochamaポッチャマ', - name: 'Piplup', - id: 393, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Defiant'], - attack: 66, - classfication: 'Penguin Pokémon', - defense: 68, - hp: 64, - japaneseName: 'Pottaishiポッタイシ', - name: 'Prinplup', - id: 394, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Defiant'], - attack: 86, - classfication: 'Emperor Pokémon', - defense: 88, - hp: 84, - japaneseName: 'Emperteエンペルト', - name: 'Empoleon', - id: 395, - generation: 4, - isLegendary: false, - types: ['water', 'steel'], - }, - { - abilities: ['Keen Eye', 'Reckless'], - attack: 55, - classfication: 'Starling Pokémon', - defense: 30, - hp: 40, - japaneseName: 'Mukkuruムックル', - name: 'Starly', - id: 396, - generation: 4, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Intimidate', 'Reckless'], - attack: 75, - classfication: 'Starling Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Mukubirdムクバード', - name: 'Staravia', - id: 397, - generation: 4, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Intimidate', 'Reckless'], - attack: 120, - classfication: 'Predator Pokémon', - defense: 70, - hp: 85, - japaneseName: 'Mukuhawkムクホーク', - name: 'Staraptor', - id: 398, - generation: 4, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Simple', 'Unaware', 'Moody'], - attack: 45, - classfication: 'Plump Mouse Pokémon', - defense: 40, - hp: 59, - japaneseName: 'Bippaビッパ', - name: 'Bidoof', - id: 399, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Simple', 'Unaware', 'Moody'], - attack: 85, - classfication: 'Beaver Pokémon', - defense: 60, - hp: 79, - japaneseName: 'Beadaruビーダル', - name: 'Bibarel', - id: 400, - generation: 4, - isLegendary: false, - types: ['normal', 'water'], - }, - { - abilities: ['Shed Skin', 'Run Away'], - attack: 25, - classfication: 'Cricket Pokémon', - defense: 41, - hp: 37, - japaneseName: 'Korobohshiコロボーシ', - name: 'Kricketot', - id: 401, - generation: 4, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Swarm', 'Technician'], - attack: 85, - classfication: 'Cricket Pokémon', - defense: 51, - hp: 77, - japaneseName: 'Korotockコロトック', - name: 'Kricketune', - id: 402, - generation: 4, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Rivalry', 'Intimidate', 'Guts'], - attack: 65, - classfication: 'Flash Pokémon', - defense: 34, - hp: 45, - japaneseName: 'Kolinkコリンク', - name: 'Shinx', - id: 403, - generation: 4, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Rivalry', 'Intimidate', 'Guts'], - attack: 85, - classfication: 'Spark Pokémon', - defense: 49, - hp: 60, - japaneseName: 'Luxioルクシオ', - name: 'Luxio', - id: 404, - generation: 4, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Rivalry', 'Intimidate', 'Guts'], - attack: 120, - classfication: 'Gleam Eyes Pokémon', - defense: 79, - hp: 80, - japaneseName: 'Rentorarレントラー', - name: 'Luxray', - id: 405, - generation: 4, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Natural Cure', 'Poison Point', 'Leaf Guard'], - attack: 30, - classfication: 'Bud Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Subomieスボミー', - name: 'Budew', - id: 406, - generation: 4, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Natural Cure', 'Poison Point', 'Technician'], - attack: 70, - classfication: 'Bouquet Pokémon', - defense: 65, - hp: 60, - japaneseName: 'Roseradeロズレイド', - name: 'Roserade', - id: 407, - generation: 4, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Mold Breaker', 'Sheer Force'], - attack: 125, - classfication: 'Head Butt Pokémon', - defense: 40, - hp: 67, - japaneseName: 'Zugaidosズガイドス', - name: 'Cranidos', - id: 408, - generation: 4, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Mold Breaker', 'Sheer Force'], - attack: 165, - classfication: 'Head Butt Pokémon', - defense: 60, - hp: 97, - japaneseName: 'Rampaldラムパルド', - name: 'Rampardos', - id: 409, - generation: 4, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Sturdy', 'Soundproof'], - attack: 42, - classfication: 'Shield Pokémon', - defense: 118, - hp: 30, - japaneseName: 'Tatetopsタテトプス', - name: 'Shieldon', - id: 410, - generation: 4, - isLegendary: false, - types: ['rock', 'steel'], - }, - { - abilities: ['Sturdy', 'Soundproof'], - attack: 52, - classfication: 'Shield Pokémon', - defense: 168, - hp: 60, - japaneseName: 'Toridepsトリデプス', - name: 'Bastiodon', - id: 411, - generation: 4, - isLegendary: false, - types: ['rock', 'steel'], - }, - { - abilities: ['Shed Skin', 'Overcoat'], - attack: 29, - classfication: 'Bagworm Pokémon', - defense: 45, - hp: 40, - japaneseName: 'Minomucchiミノムッチ', - name: 'Burmy', - id: 412, - generation: 4, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Anticipation', 'Overcoat'], - attack: 69, - classfication: 'Bagworm Pokémon', - defense: 95, - hp: 60, - japaneseName: 'Minomadam (kusaki No Mino)ミノマダム', - name: 'Wormadam', - id: 413, - generation: 4, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Swarm', 'Tinted Lens'], - attack: 94, - classfication: 'Moth Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Gamaleガーメイル', - name: 'Mothim', - id: 414, - generation: 4, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Honey Gather', 'Hustle'], - attack: 30, - classfication: 'Tiny Bee Pokémon', - defense: 42, - hp: 30, - japaneseName: 'Mitsuhoneyミツハニー', - name: 'Combee', - id: 415, - generation: 4, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Pressure', 'Unnerve'], - attack: 80, - classfication: 'Beehive Pokémon', - defense: 102, - hp: 70, - japaneseName: 'Beequenビークイン', - name: 'Vespiquen', - id: 416, - generation: 4, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Run Away', 'Pickup', 'Volt Absorb'], - attack: 45, - classfication: 'EleSquirrel Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Pachirisuパチリス', - name: 'Pachirisu', - id: 417, - generation: 4, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Swift Swim', 'Water Veil'], - attack: 65, - classfication: 'Sea Weasel Pokémon', - defense: 35, - hp: 55, - japaneseName: 'Buoyselブイゼル', - name: 'Buizel', - id: 418, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Water Veil'], - attack: 105, - classfication: 'Sea Weasel Pokémon', - defense: 55, - hp: 85, - japaneseName: 'Floazelフローゼル', - name: 'Floatzel', - id: 419, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Chlorophyll'], - attack: 35, - classfication: 'Cherry Pokémon', - defense: 45, - hp: 45, - japaneseName: 'Cherinboチェリンボ', - name: 'Cherubi', - id: 420, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Flower Gift'], - attack: 60, - classfication: 'Blossom Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Cherrimチェリム', - name: 'Cherrim', - id: 421, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Sticky Hold', 'Storm Drain', 'Sand Force'], - attack: 48, - classfication: 'Sea Slug Pokémon', - defense: 48, - hp: 76, - japaneseName: 'Karanakushiカラナクシ', - name: 'Shellos', - id: 422, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Sticky Hold', 'Storm Drain', 'Sand Force'], - attack: 83, - classfication: 'Sea Slug Pokémon', - defense: 68, - hp: 111, - japaneseName: 'Tritodonトリトドン', - name: 'Gastrodon', - id: 423, - generation: 4, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Technician', 'Pickup', 'Skill Link'], - attack: 100, - classfication: 'Long Tail Pokémon', - defense: 66, - hp: 75, - japaneseName: 'Etebothエテボース', - name: 'Ambipom', - id: 424, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Aftermath', 'Unburden', 'Flare Boost'], - attack: 50, - classfication: 'Balloon Pokémon', - defense: 34, - hp: 90, - japaneseName: 'Fuwanteフワンテ', - name: 'Drifloon', - id: 425, - generation: 4, - isLegendary: false, - types: ['ghost', 'flying'], - }, - { - abilities: ['Aftermath', 'Unburden', 'Flare Boost'], - attack: 80, - classfication: 'Blimp Pokémon', - defense: 44, - hp: 150, - japaneseName: 'Fuwarideフワライド', - name: 'Drifblim', - id: 426, - generation: 4, - isLegendary: false, - types: ['ghost', 'flying'], - }, - { - abilities: ['Run Away', 'Klutz', 'Limber'], - attack: 66, - classfication: 'Rabbit Pokémon', - defense: 44, - hp: 55, - japaneseName: 'Mimirolミミロル', - name: 'Buneary', - id: 427, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Cute Charm', 'Klutz', 'Limber'], - attack: 136, - classfication: 'Rabbit Pokémon', - defense: 94, - hp: 65, - japaneseName: 'Mimilopミミロップ', - name: 'Lopunny', - id: 428, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Levitate'], - attack: 60, - classfication: 'Magical Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Mumargiムウマージ', - name: 'Mismagius', - id: 429, - generation: 4, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Insomnia', 'Super Luck', 'Moxie'], - attack: 125, - classfication: 'Big Boss Pokémon', - defense: 52, - hp: 100, - japaneseName: 'Dongkarasuドンカラス', - name: 'Honchkrow', - id: 430, - generation: 4, - isLegendary: false, - types: ['dark', 'flying'], - }, - { - abilities: ['Limber', 'Own Tempo', 'Keen Eye'], - attack: 55, - classfication: 'Catty Pokémon', - defense: 42, - hp: 49, - japaneseName: 'Nyarmarニャルマー', - name: 'Glameow', - id: 431, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Thick Fat', 'Own Tempo', 'Defiant'], - attack: 82, - classfication: 'Tiger Cat Pokémon', - defense: 64, - hp: 71, - japaneseName: 'Bunyattoブニャット', - name: 'Purugly', - id: 432, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Levitate'], - attack: 30, - classfication: 'Bell Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Lisyanリーシャン', - name: 'Chingling', - id: 433, - generation: 4, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Stench', 'Aftermath', 'Keen Eye'], - attack: 63, - classfication: 'Skunk Pokémon', - defense: 47, - hp: 63, - japaneseName: 'Skunpuuスカンプー', - name: 'Stunky', - id: 434, - generation: 4, - isLegendary: false, - types: ['poison', 'dark'], - }, - { - abilities: ['Stench', 'Aftermath', 'Keen Eye'], - attack: 93, - classfication: 'Skunk Pokémon', - defense: 67, - hp: 103, - japaneseName: 'Skutankスカタンク', - name: 'Skuntank', - id: 435, - generation: 4, - isLegendary: false, - types: ['poison', 'dark'], - }, - { - abilities: ['Levitate', 'Heatproof', 'Heavy Metal'], - attack: 24, - classfication: 'Bronze Pokémon', - defense: 86, - hp: 57, - japaneseName: 'Dohmirrorドーミラー', - name: 'Bronzor', - id: 436, - generation: 4, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Levitate', 'Heatproof', 'Heavy Metal'], - attack: 89, - classfication: 'Bronze Bell Pokémon', - defense: 116, - hp: 67, - japaneseName: 'Dohtakunドータクン', - name: 'Bronzong', - id: 437, - generation: 4, - isLegendary: false, - types: ['steel', 'psychic'], - }, - { - abilities: ['Sturdy', 'Rock Head', 'Rattled'], - attack: 80, - classfication: 'Bonsai Pokémon', - defense: 95, - hp: 50, - japaneseName: 'Usohachiウソハチ', - name: 'Bonsly', - id: 438, - generation: 4, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Soundproof', 'Filter', 'Technician'], - attack: 25, - classfication: 'Mime Pokémon', - defense: 45, - hp: 20, - japaneseName: 'Maneneマネネ', - name: 'Mime Jr.', - id: 439, - generation: 4, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Natural Cure', 'Serene Grace', 'Friend Guard'], - attack: 5, - classfication: 'Playhouse Pokémon', - defense: 5, - hp: 100, - japaneseName: 'Pinpukuピンプク', - name: 'Happiny', - id: 440, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Keen Eye', 'Tangled Feet', 'Big Pecks'], - attack: 65, - classfication: 'Music Note Pokémon', - defense: 45, - hp: 76, - japaneseName: 'Perapペラップ', - name: 'Chatot', - id: 441, - generation: 4, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Pressure', 'Infiltrator'], - attack: 92, - classfication: 'Forbidden Pokémon', - defense: 108, - hp: 50, - japaneseName: 'Mikarugeミカルゲ', - name: 'Spiritomb', - id: 442, - generation: 4, - isLegendary: false, - types: ['ghost', 'dark'], - }, - { - abilities: ['Sand Veil', 'Rough Skin'], - attack: 70, - classfication: 'Land Shark Pokémon', - defense: 45, - hp: 58, - japaneseName: 'Fukamaruフカマル', - name: 'Gible', - id: 443, - generation: 4, - isLegendary: false, - types: ['dragon', 'ground'], - }, - { - abilities: ['Sand Veil', 'Rough Skin'], - attack: 90, - classfication: 'Cave Pokémon', - defense: 65, - hp: 68, - japaneseName: 'Gabiteガバイト', - name: 'Gabite', - id: 444, - generation: 4, - isLegendary: false, - types: ['dragon', 'ground'], - }, - { - abilities: ['Sand Veil', 'Rough Skin'], - attack: 170, - classfication: 'Mach Pokémon', - defense: 115, - hp: 108, - japaneseName: 'Gaburiasガブリアス', - name: 'Garchomp', - id: 445, - generation: 4, - isLegendary: false, - types: ['dragon', 'ground'], - }, - { - abilities: ['Pickup', 'Thick Fat', 'Gluttony'], - attack: 85, - classfication: 'Big Eater Pokémon', - defense: 40, - hp: 135, - japaneseName: 'Gonbeゴンベ', - name: 'Munchlax', - id: 446, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Steadfast', 'Inner Focus', 'Prankster'], - attack: 70, - classfication: 'Emanation Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Rioluリオル', - name: 'Riolu', - id: 447, - generation: 4, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Steadfast', 'Inner Focus', 'Justified'], - attack: 145, - classfication: 'Aura Pokémon', - defense: 88, - hp: 70, - japaneseName: 'Lucarioルカリオ', - name: 'Lucario', - id: 448, - generation: 4, - isLegendary: false, - types: ['fighting', 'steel'], - }, - { - abilities: ['Sand Stream', 'Sand Force'], - attack: 72, - classfication: 'Hippo Pokémon', - defense: 78, - hp: 68, - japaneseName: 'Hippopotasヒポポタス', - name: 'Hippopotas', - id: 449, - generation: 4, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Sand Stream', 'Sand Force'], - attack: 112, - classfication: 'Heavyweight Pokémon', - defense: 118, - hp: 108, - japaneseName: 'Kabaldonカバルドン', - name: 'Hippowdon', - id: 450, - generation: 4, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Battle Armor', 'Sniper', 'Keen Eye'], - attack: 50, - classfication: 'Scorpion Pokémon', - defense: 90, - hp: 40, - japaneseName: 'Scorupiスコルピ', - name: 'Skorupi', - id: 451, - generation: 4, - isLegendary: false, - types: ['poison', 'bug'], - }, - { - abilities: ['Battle Armor', 'Sniper', 'Keen Eye'], - attack: 90, - classfication: 'Ogre Scorp Pokémon', - defense: 110, - hp: 70, - japaneseName: 'Dorapionドラピオン', - name: 'Drapion', - id: 452, - generation: 4, - isLegendary: false, - types: ['poison', 'dark'], - }, - { - abilities: ['Anticipation', 'Dry Skin', 'Poison Touch'], - attack: 61, - classfication: 'Toxic Mouth Pokémon', - defense: 40, - hp: 48, - japaneseName: 'Gureggruグレッグル', - name: 'Croagunk', - id: 453, - generation: 4, - isLegendary: false, - types: ['poison', 'fighting'], - }, - { - abilities: ['Anticipation', 'Dry Skin', 'Poison Touch'], - attack: 106, - classfication: 'Toxic Mouth Pokémon', - defense: 65, - hp: 83, - japaneseName: 'Dokurogドクロッグ', - name: 'Toxicroak', - id: 454, - generation: 4, - isLegendary: false, - types: ['poison', 'fighting'], - }, - { - abilities: ['Levitate'], - attack: 100, - classfication: 'Bug Catcher Pokémon', - defense: 72, - hp: 74, - japaneseName: 'Muskippaマスキッパ', - name: 'Carnivine', - id: 455, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Swift Swim', 'Storm Drain', 'Water Veil'], - attack: 49, - classfication: 'Wing Fish Pokémon', - defense: 56, - hp: 49, - japaneseName: 'Keikouoケイコウオ', - name: 'Finneon', - id: 456, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Storm Drain', 'Water Veil'], - attack: 69, - classfication: 'Neon Pokémon', - defense: 76, - hp: 69, - japaneseName: 'Neolantネオラント', - name: 'Lumineon', - id: 457, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Water Absorb', 'Water Veil'], - attack: 20, - classfication: 'Kite Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Tamantaタマンタ', - name: 'Mantyke', - id: 458, - generation: 4, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Snow Warning', 'Soundproof'], - attack: 62, - classfication: 'Frosted Tree Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Yukikaburiユキカブリ', - name: 'Snover', - id: 459, - generation: 4, - isLegendary: false, - types: ['grass', 'ice'], - }, - { - abilities: ['Snow Warning', 'Soundproof'], - attack: 132, - classfication: 'Frosted Tree Pokémon', - defense: 105, - hp: 90, - japaneseName: 'Yukinoohユキノオー', - name: 'Abomasnow', - id: 460, - generation: 4, - isLegendary: false, - types: ['grass', 'ice'], - }, - { - abilities: ['Pressure', 'Pickpocket'], - attack: 120, - classfication: 'Sharp Claw Pokémon', - defense: 65, - hp: 70, - japaneseName: 'Manyulaマニューラ', - name: 'Weavile', - id: 461, - generation: 4, - isLegendary: false, - types: ['dark', 'ice'], - }, - { - abilities: ['Magnet Pull', 'Sturdy', 'Analytic'], - attack: 70, - classfication: 'Magnet Area Pokémon', - defense: 115, - hp: 70, - japaneseName: 'Jibacoilジバコイル', - name: 'Magnezone', - id: 462, - generation: 4, - isLegendary: false, - types: ['electric', 'steel'], - }, - { - abilities: ['Own Tempo', 'Oblivious', 'Cloud Nine'], - attack: 85, - classfication: 'Licking Pokémon', - defense: 95, - hp: 110, - japaneseName: 'Berobeltベロベルト', - name: 'Lickilicky', - id: 463, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Lightningrod', 'Solid Rock', 'Reckless'], - attack: 140, - classfication: 'Drill Pokémon', - defense: 130, - hp: 115, - japaneseName: 'Dosidonドサイドン', - name: 'Rhyperior', - id: 464, - generation: 4, - isLegendary: false, - types: ['ground', 'rock'], - }, - { - abilities: ['Chlorophyll', 'Leaf Guard', 'Regenerator'], - attack: 100, - classfication: 'Vine Pokémon', - defense: 125, - hp: 100, - japaneseName: 'Mojumboモジャンボ', - name: 'Tangrowth', - id: 465, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Motor Drive', 'Vital Spirit'], - attack: 123, - classfication: 'Thunderbolt Pokémon', - defense: 67, - hp: 75, - japaneseName: 'Elekibleエレキブル', - name: 'Electivire', - id: 466, - generation: 4, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Flame Body', 'Vital Spirit'], - attack: 95, - classfication: 'Blast Pokémon', - defense: 67, - hp: 75, - japaneseName: 'Booburnブーバーン', - name: 'Magmortar', - id: 467, - generation: 4, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Hustle', 'Serene Grace', 'Super Luck'], - attack: 50, - classfication: 'Jubilee Pokémon', - defense: 95, - hp: 85, - japaneseName: 'Togekissトゲキッス', - name: 'Togekiss', - id: 468, - generation: 4, - isLegendary: false, - types: ['fairy', 'flying'], - }, - { - abilities: ['Speed Boost', 'Tinted Lens', 'Frisk'], - attack: 76, - classfication: 'Ogre Darner Pokémon', - defense: 86, - hp: 86, - japaneseName: 'Megayanmaメガヤンマ', - name: 'Yanmega', - id: 469, - generation: 4, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Leaf Guard', 'Chlorophyll'], - attack: 110, - classfication: 'Verdant Pokémon', - defense: 130, - hp: 65, - japaneseName: 'Leafiaリーフィア', - name: 'Leafeon', - id: 470, - generation: 4, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Snow Cloak', 'Ice Body'], - attack: 60, - classfication: 'Fresh Snow Pokémon', - defense: 110, - hp: 65, - japaneseName: 'Glaciaグレイシア', - name: 'Glaceon', - id: 471, - generation: 4, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Hyper Cutter', 'Sand Veil', 'Poison Heal'], - attack: 95, - classfication: 'Fang Scorp Pokémon', - defense: 125, - hp: 75, - japaneseName: 'Glionグライオン', - name: 'Gliscor', - id: 472, - generation: 4, - isLegendary: false, - types: ['ground', 'flying'], - }, - { - abilities: ['Oblivious', 'Snow Cloak', 'Thick Fat'], - attack: 130, - classfication: 'Twin Tusk Pokémon', - defense: 80, - hp: 110, - japaneseName: 'Mammooマンムー', - name: 'Mamoswine', - id: 473, - generation: 4, - isLegendary: false, - types: ['ice', 'ground'], - }, - { - abilities: ['Adaptability', 'Download', 'Analytic'], - attack: 80, - classfication: 'Virtual Pokémon', - defense: 70, - hp: 85, - japaneseName: 'Porygon-zポリゴンZ', - name: 'Porygon-Z', - id: 474, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Steadfast', 'Justified'], - attack: 165, - classfication: 'Blade Pokémon', - defense: 95, - hp: 68, - japaneseName: 'Erureidoエルレイド', - name: 'Gallade', - id: 475, - generation: 4, - isLegendary: false, - types: ['psychic', 'fighting'], - }, - { - abilities: ['Sturdy', 'Magnet Pull', 'Sand Force'], - attack: 55, - classfication: 'Compass Pokémon', - defense: 145, - hp: 60, - japaneseName: 'Dainoseダイノーズ', - name: 'Probopass', - id: 476, - generation: 4, - isLegendary: false, - types: ['rock', 'steel'], - }, - { - abilities: ['Pressure', 'Frisk'], - attack: 100, - classfication: 'Gripper Pokémon', - defense: 135, - hp: 45, - japaneseName: 'Yonoirヨノワール', - name: 'Dusknoir', - id: 477, - generation: 4, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Snow Cloak', 'Cursed Body'], - attack: 80, - classfication: 'Snow Land Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Yukimenokoユキメノコ', - name: 'Froslass', - id: 478, - generation: 4, - isLegendary: false, - types: ['ice', 'ghost'], - }, - { - abilities: ['Levitate'], - attack: 65, - classfication: 'Plasma Pokémon', - defense: 107, - hp: 50, - japaneseName: 'Rotomロトム', - name: 'Rotom', - id: 479, - generation: 4, - isLegendary: false, - types: ['electric', 'ghost'], - }, - { - abilities: ['Levitate'], - attack: 75, - classfication: 'Knowledge Pokémon', - defense: 130, - hp: 75, - japaneseName: 'Yuxieユクシー', - name: 'Uxie', - id: 480, - generation: 4, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Levitate'], - attack: 105, - classfication: 'Emotion Pokémon', - defense: 105, - hp: 80, - japaneseName: 'Emritエムリット', - name: 'Mesprit', - id: 481, - generation: 4, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Levitate'], - attack: 125, - classfication: 'Willpower Pokémon', - defense: 70, - hp: 75, - japaneseName: 'Agnomeアグノム', - name: 'Azelf', - id: 482, - generation: 4, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Pressure', 'Telepathy'], - attack: 120, - classfication: 'Temporal Pokémon', - defense: 120, - hp: 100, - japaneseName: 'Dialgaディアルガ', - name: 'Dialga', - id: 483, - generation: 4, - isLegendary: false, - types: ['steel', 'dragon'], - }, - { - abilities: ['Pressure', 'Telepathy'], - attack: 120, - classfication: 'Spatial Pokémon', - defense: 100, - hp: 90, - japaneseName: 'Palkiaパルキア', - name: 'Palkia', - id: 484, - generation: 4, - isLegendary: false, - types: ['water', 'dragon'], - }, - { - abilities: ['Flash Fire', 'Flame Body'], - attack: 90, - classfication: 'Lava Dome Pokémon', - defense: 106, - hp: 91, - japaneseName: 'Heatranヒードラン', - name: 'Heatran', - id: 485, - generation: 4, - isLegendary: false, - types: ['fire', 'steel'], - }, - { - abilities: ['Slow Start'], - attack: 160, - classfication: 'Colossal Pokémon', - defense: 110, - hp: 110, - japaneseName: 'Regigigasレジギガス', - name: 'Regigigas', - id: 486, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Pressure', 'Telepathy', 'Levitate'], - attack: 120, - classfication: 'Renegade Pokémon', - defense: 100, - hp: 150, - japaneseName: 'Giratina (another Forme)ギラティナ', - name: 'Giratina', - id: 487, - generation: 4, - isLegendary: false, - types: ['ghost', 'dragon'], - }, - { - abilities: ['Levitate'], - attack: 70, - classfication: 'Lunar Pokémon', - defense: 120, - hp: 120, - japaneseName: 'Cresseliaクレセリア', - name: 'Cresselia', - id: 488, - generation: 4, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Hydration'], - attack: 80, - classfication: 'Sea Drifter Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Phioneフィオネ', - name: 'Phione', - id: 489, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Hydration'], - attack: 100, - classfication: 'Seafaring Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Manaphyマナフィ', - name: 'Manaphy', - id: 490, - generation: 4, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Bad Dreams'], - attack: 90, - classfication: 'Pitch-Black Pokémon', - defense: 90, - hp: 70, - japaneseName: 'Darkraiダークライ', - name: 'Darkrai', - id: 491, - generation: 4, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Natural Cure', 'Serene Grace'], - attack: 103, - classfication: 'Gratitude Pokémon', - defense: 75, - hp: 100, - japaneseName: 'Shaymin (sky Forme)シェイミ', - name: 'Shaymin', - id: 492, - generation: 4, - isLegendary: false, - types: ['grass', 'grass'], - }, - { - abilities: ['Multitype'], - attack: 120, - classfication: 'Alpha Pokémon', - defense: 120, - hp: 120, - japaneseName: 'Arceusアルセウス', - name: 'Arceus', - id: 493, - generation: 4, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Victory Star'], - attack: 100, - classfication: 'Victory Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Victiniビクティニ', - name: 'Victini', - id: 494, - generation: 5, - isLegendary: false, - types: ['psychic', 'fire'], - }, - { - abilities: ['Overgrow', 'Contrary'], - attack: 45, - classfication: 'Grass Snake Pokémon', - defense: 55, - hp: 45, - japaneseName: 'Tsutarjaツタージャ', - name: 'Snivy', - id: 495, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Contrary'], - attack: 60, - classfication: 'Grass Snake Pokémon', - defense: 75, - hp: 60, - japaneseName: 'Janovyジャノビー', - name: 'Servine', - id: 496, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Contrary'], - attack: 75, - classfication: 'Regal Pokémon', - defense: 95, - hp: 75, - japaneseName: 'Jalordaジャローダ', - name: 'Serperior', - id: 497, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Blaze', 'Thick Fat'], - attack: 63, - classfication: 'Fire Pig Pokémon', - defense: 45, - hp: 65, - japaneseName: 'Pokabuポカブ', - name: 'Tepig', - id: 498, - generation: 5, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Thick Fat'], - attack: 93, - classfication: 'Fire Pig Pokémon', - defense: 55, - hp: 90, - japaneseName: 'Chaobooチャオブー', - name: 'Pignite', - id: 499, - generation: 5, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Blaze', 'Reckless'], - attack: 123, - classfication: 'Mega Fire Pig Pokémon', - defense: 65, - hp: 110, - japaneseName: 'Enbuohエンブオー', - name: 'Emboar', - id: 500, - generation: 5, - isLegendary: false, - types: ['fire', 'fighting'], - }, - { - abilities: ['Torrent', 'Shell Armor'], - attack: 55, - classfication: 'Sea Otter Pokémon', - defense: 45, - hp: 55, - japaneseName: 'Mijumaruミジュマル', - name: 'Oshawott', - id: 501, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Shell Armor'], - attack: 75, - classfication: 'Discipline Pokémon', - defense: 60, - hp: 75, - japaneseName: 'Futachimaruフタチマル', - name: 'Dewott', - id: 502, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Shell Armor'], - attack: 100, - classfication: 'Formidable Pokémon', - defense: 85, - hp: 95, - japaneseName: 'Daikenkiダイケンキ', - name: 'Samurott', - id: 503, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Run Away', 'Keen Eye', 'Analytic'], - attack: 55, - classfication: 'Scout Pokémon', - defense: 39, - hp: 45, - japaneseName: 'Minezumiミネズミ', - name: 'Patrat', - id: 504, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Illuminate', 'Keen Eye', 'Analytic'], - attack: 85, - classfication: 'Lookout Pokémon', - defense: 69, - hp: 60, - japaneseName: 'Miruhogミルホッグ', - name: 'Watchog', - id: 505, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Vital Spirit', 'Pickup', 'Run Away'], - attack: 60, - classfication: 'Puppy Pokémon', - defense: 45, - hp: 45, - japaneseName: 'Yorterrieヨーテリー', - name: 'Lillipup', - id: 506, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Intimidate', 'Sand Rush', 'Scrappy'], - attack: 80, - classfication: 'Loyal Dog Pokémon', - defense: 65, - hp: 65, - japaneseName: 'Herderrieハーデリア', - name: 'Herdier', - id: 507, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Intimidate', 'Sand Rush', 'Scrappy'], - attack: 110, - classfication: 'Big-Hearted Pokémon', - defense: 90, - hp: 85, - japaneseName: 'Moolandムーランド', - name: 'Stoutland', - id: 508, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Limber', 'Unburden', 'Prankster'], - attack: 50, - classfication: 'Devious Pokémon', - defense: 37, - hp: 41, - japaneseName: 'Choronekoチョロネコ', - name: 'Purrloin', - id: 509, - generation: 5, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Limber', 'Unburden', 'Prankster'], - attack: 88, - classfication: 'Cruel Pokémon', - defense: 50, - hp: 64, - japaneseName: 'Lepardasレパルダス', - name: 'Liepard', - id: 510, - generation: 5, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Gluttony', 'Overgrow'], - attack: 53, - classfication: 'Grass Monkey Pokémon', - defense: 48, - hp: 50, - japaneseName: 'Yanappuヤナップ', - name: 'Pansage', - id: 511, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Gluttony', 'Overgrow'], - attack: 98, - classfication: 'Thorn Monkey Pokémon', - defense: 63, - hp: 75, - japaneseName: 'Yanakkieヤナッキー', - name: 'Simisage', - id: 512, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Gluttony', 'Blaze'], - attack: 53, - classfication: 'High Temp Pokémon', - defense: 48, - hp: 50, - japaneseName: 'Baoppuバオップ', - name: 'Pansear', - id: 513, - generation: 5, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Gluttony', 'Blaze'], - attack: 98, - classfication: 'Ember Pokémon', - defense: 63, - hp: 75, - japaneseName: 'Baokkieバオッキー', - name: 'Simisear', - id: 514, - generation: 5, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Gluttony', 'Torrent'], - attack: 53, - classfication: 'Spray Pokémon', - defense: 48, - hp: 50, - japaneseName: 'Hiyappuヒヤップ', - name: 'Panpour', - id: 515, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Gluttony', 'Torrent'], - attack: 98, - classfication: 'Geyser Pokémon', - defense: 63, - hp: 75, - japaneseName: 'Hiyakkieヒヤッキー', - name: 'Simipour', - id: 516, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Forewarn', 'Synchronize', 'Telepathy'], - attack: 25, - classfication: 'Dream Eater Pokémon', - defense: 45, - hp: 76, - japaneseName: 'Munnaムンナ', - name: 'Munna', - id: 517, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Forewarn', 'Synchronize', 'Telepathy'], - attack: 55, - classfication: 'Drowsing Pokémon', - defense: 85, - hp: 116, - japaneseName: 'Musharnaムシャーナ', - name: 'Musharna', - id: 518, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], - attack: 55, - classfication: 'Tiny Pigeon Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Mamepatoマメパト', - name: 'Pidove', - id: 519, - generation: 5, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], - attack: 77, - classfication: 'Wild Pigeon Pokémon', - defense: 62, - hp: 62, - japaneseName: 'Hatobohハトーボー', - name: 'Tranquill', - id: 520, - generation: 5, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Big Pecks', 'Super Luck', 'Rivalry'], - attack: 115, - classfication: 'Proud Pokémon', - defense: 80, - hp: 80, - japaneseName: 'Kenhallowケンホロウ', - name: 'Unfezant', - id: 521, - generation: 5, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Lightningrod', 'Motor Drive', 'Sap Sipper'], - attack: 60, - classfication: 'Electrified Pokémon', - defense: 32, - hp: 45, - japaneseName: 'Shimamaシママ', - name: 'Blitzle', - id: 522, - generation: 5, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Lightningrod', 'Motor Drive', 'Sap Sipper'], - attack: 100, - classfication: 'Thunderbolt Pokémon', - defense: 63, - hp: 75, - japaneseName: 'Zebraikaゼブライカ', - name: 'Zebstrika', - id: 523, - generation: 5, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Sturdy', 'Weak Armor', 'Sand Force'], - attack: 75, - classfication: 'Mantle Pokémon', - defense: 85, - hp: 55, - japaneseName: 'Dangoroダンゴロ', - name: 'Roggenrola', - id: 524, - generation: 5, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Sturdy', 'Weak Armor', 'Sand Force'], - attack: 105, - classfication: 'Ore Pokémon', - defense: 105, - hp: 70, - japaneseName: 'Gantleガントル', - name: 'Boldore', - id: 525, - generation: 5, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Sturdy', 'Sand Stream', 'Sand Force'], - attack: 135, - classfication: 'Compressed Pokémon', - defense: 130, - hp: 85, - japaneseName: 'Gigaiathギガイアス', - name: 'Gigalith', - id: 526, - generation: 5, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Unaware', 'Klutz', 'Simple'], - attack: 45, - classfication: 'Bat Pokémon', - defense: 43, - hp: 65, - japaneseName: 'Koromoriコロモリ', - name: 'Woobat', - id: 527, - generation: 5, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Unaware', 'Klutz', 'Simple'], - attack: 57, - classfication: 'Courting Pokémon', - defense: 55, - hp: 67, - japaneseName: 'Kokoromoriココロモリ', - name: 'Swoobat', - id: 528, - generation: 5, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Sand Rush', 'Sand Force', 'Mold Breaker'], - attack: 85, - classfication: 'Mole Pokémon', - defense: 40, - hp: 60, - japaneseName: 'Mogurewモグリュー', - name: 'Drilbur', - id: 529, - generation: 5, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Sand Rush', 'Sand Force', 'Mold Breaker'], - attack: 135, - classfication: 'Subterrene Pokémon', - defense: 60, - hp: 110, - japaneseName: 'Doryuzuドリュウズ', - name: 'Excadrill', - id: 530, - generation: 5, - isLegendary: false, - types: ['ground', 'steel'], - }, - { - abilities: ['Healer', 'Regenerator', 'Klutz'], - attack: 60, - classfication: 'Hearing Pokémon', - defense: 126, - hp: 103, - japaneseName: 'Tabunneタブンネ', - name: 'Audino', - id: 531, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Guts', 'Sheer Force', 'Iron Fist'], - attack: 80, - classfication: 'Muscular Pokémon', - defense: 55, - hp: 75, - japaneseName: 'Dokkorerドッコラー', - name: 'Timburr', - id: 532, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Guts', 'Sheer Force', 'Iron Fist'], - attack: 105, - classfication: 'Muscular Pokémon', - defense: 85, - hp: 85, - japaneseName: 'Dotekkotsuドテッコツ', - name: 'Gurdurr', - id: 533, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Guts', 'Sheer Force', 'Iron Fist'], - attack: 140, - classfication: 'Muscular Pokémon', - defense: 95, - hp: 105, - japaneseName: 'Roubushinローブシン', - name: 'Conkeldurr', - id: 534, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Swift Swim', 'Hydration', 'Water Absorb'], - attack: 50, - classfication: 'Tadpole Pokémon', - defense: 40, - hp: 50, - japaneseName: 'Otamaroオタマロ', - name: 'Tympole', - id: 535, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Swift Swim', 'Hydration', 'Water Absorb'], - attack: 65, - classfication: 'Vibration Pokémon', - defense: 55, - hp: 75, - japaneseName: 'Gamagaruガマガル', - name: 'Palpitoad', - id: 536, - generation: 5, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Swift Swim', 'Poison Touch', 'Water Absorb'], - attack: 95, - classfication: 'Vibration Pokémon', - defense: 75, - hp: 105, - japaneseName: 'Gamagerogeガマゲロゲ', - name: 'Seismitoad', - id: 537, - generation: 5, - isLegendary: false, - types: ['water', 'ground'], - }, - { - abilities: ['Guts', 'Inner Focus', 'Mold Breaker'], - attack: 100, - classfication: 'Judo Pokémon', - defense: 85, - hp: 120, - japaneseName: 'Nagekiナゲキ', - name: 'Throh', - id: 538, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Sturdy', 'Inner Focus', 'Mold Breaker'], - attack: 125, - classfication: 'Karate Pokémon', - defense: 75, - hp: 75, - japaneseName: 'Dagekiダゲキ', - name: 'Sawk', - id: 539, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Swarm', 'Chlorophyll', 'Overcoat'], - attack: 53, - classfication: 'Sewing Pokémon', - defense: 70, - hp: 45, - japaneseName: 'Kurumiruクルミル', - name: 'Sewaddle', - id: 540, - generation: 5, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Leaf Guard', 'Chlorophyll', 'Overcoat'], - attack: 63, - classfication: 'Leaf-Wrapped Pokémon', - defense: 90, - hp: 55, - japaneseName: 'Kurumayuクルマユ', - name: 'Swadloon', - id: 541, - generation: 5, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Swarm', 'Chlorophyll', 'Overcoat'], - attack: 103, - classfication: 'Nurturing Pokémon', - defense: 80, - hp: 75, - japaneseName: 'Hahakomoriハハコモリ', - name: 'Leavanny', - id: 542, - generation: 5, - isLegendary: false, - types: ['bug', 'grass'], - }, - { - abilities: ['Poison Point', 'Swarm', 'Speed Boost'], - attack: 45, - classfication: 'Centipede Pokémon', - defense: 59, - hp: 30, - japaneseName: 'Fushideフシデ', - name: 'Venipede', - id: 543, - generation: 5, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Poison Point', 'Swarm', 'Speed Boost'], - attack: 55, - classfication: 'Curlipede Pokémon', - defense: 99, - hp: 40, - japaneseName: 'Wheegaホイーガ', - name: 'Whirlipede', - id: 544, - generation: 5, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Poison Point', 'Swarm', 'Speed Boost'], - attack: 100, - classfication: 'Megapede Pokémon', - defense: 89, - hp: 60, - japaneseName: 'Pendrorペンドラー', - name: 'Scolipede', - id: 545, - generation: 5, - isLegendary: false, - types: ['bug', 'poison'], - }, - { - abilities: ['Prankster', 'Infiltrator', 'Chlorophyll'], - attack: 27, - classfication: 'Cotton Puff Pokémon', - defense: 60, - hp: 40, - japaneseName: 'Monmenモンメン', - name: 'Cottonee', - id: 546, - generation: 5, - isLegendary: false, - types: ['grass', 'fairy'], - }, - { - abilities: ['Prankster', 'Infiltrator', 'Chlorophyll'], - attack: 67, - classfication: 'Windveiled Pokémon', - defense: 85, - hp: 60, - japaneseName: 'Elfuunエルフーン', - name: 'Whimsicott', - id: 547, - generation: 5, - isLegendary: false, - types: ['grass', 'fairy'], - }, - { - abilities: ['Chlorophyll', 'Own Tempo', 'Leaf Guard'], - attack: 35, - classfication: 'Bulb Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Churineチュリネ', - name: 'Petilil', - id: 548, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Chlorophyll', 'Own Tempo', 'Leaf Guard'], - attack: 60, - classfication: 'Flowering Pokémon', - defense: 75, - hp: 70, - japaneseName: 'Dredearドレディア', - name: 'Lilligant', - id: 549, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Reckless', 'Rock Head', 'Adaptability', 'Mold Breaker'], - attack: 92, - classfication: 'Hostile Pokémon', - defense: 65, - hp: 70, - japaneseName: 'Bassraoバスラオ', - name: 'Basculin', - id: 550, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Intimidate', 'Moxie', 'Anger Point'], - attack: 72, - classfication: 'Desert Croc Pokémon', - defense: 35, - hp: 50, - japaneseName: 'Megurocoメグロコ', - name: 'Sandile', - id: 551, - generation: 5, - isLegendary: false, - types: ['ground', 'dark'], - }, - { - abilities: ['Intimidate', 'Moxie', 'Anger Point'], - attack: 82, - classfication: 'Desert Croc Pokémon', - defense: 45, - hp: 60, - japaneseName: 'Waruvileワルビル', - name: 'Krokorok', - id: 552, - generation: 5, - isLegendary: false, - types: ['ground', 'dark'], - }, - { - abilities: ['Intimidate', 'Moxie', 'Anger Point'], - attack: 117, - classfication: 'Intimidation Pokémon', - defense: 80, - hp: 95, - japaneseName: 'Waruvialワルビアル', - name: 'Krookodile', - id: 553, - generation: 5, - isLegendary: false, - types: ['ground', 'dark'], - }, - { - abilities: ['Hustle', 'Inner Focus'], - attack: 90, - classfication: 'Zen Charm Pokémon', - defense: 45, - hp: 70, - japaneseName: 'Darumakkaダルマッカ', - name: 'Darumaka', - id: 554, - generation: 5, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Sheer Force', 'Zen Mode'], - attack: 30, - classfication: 'Blazing Pokémon', - defense: 105, - hp: 105, - japaneseName: 'Hihidarumaヒヒダルマ', - name: 'Darmanitan', - id: 555, - generation: 5, - isLegendary: false, - types: ['fire', 'fire'], - }, - { - abilities: ['Water Absorb', 'Chlorophyll', 'Storm Drain'], - attack: 86, - classfication: 'Cactus Pokémon', - defense: 67, - hp: 75, - japaneseName: 'Maracacchiマラカッチ', - name: 'Maractus', - id: 556, - generation: 5, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Sturdy', 'Shell Armor', 'Weak Armor'], - attack: 65, - classfication: 'Rock Inn Pokémon', - defense: 85, - hp: 50, - japaneseName: 'Ishizumaiイシズマイ', - name: 'Dwebble', - id: 557, - generation: 5, - isLegendary: false, - types: ['bug', 'rock'], - }, - { - abilities: ['Sturdy', 'Shell Armor', 'Weak Armor'], - attack: 105, - classfication: 'Stone Home Pokémon', - defense: 125, - hp: 70, - japaneseName: 'Iwapalaceイワパレス', - name: 'Crustle', - id: 558, - generation: 5, - isLegendary: false, - types: ['bug', 'rock'], - }, - { - abilities: ['Shed Skin', 'Moxie', 'Intimidate'], - attack: 75, - classfication: 'Shedding Pokémon', - defense: 70, - hp: 50, - japaneseName: 'Zurugguズルッグ', - name: 'Scraggy', - id: 559, - generation: 5, - isLegendary: false, - types: ['dark', 'fighting'], - }, - { - abilities: ['Shed Skin', 'Moxie', 'Intimidate'], - attack: 90, - classfication: 'Hoodlum Pokémon', - defense: 115, - hp: 65, - japaneseName: 'Zuruzukinズルズキン', - name: 'Scrafty', - id: 560, - generation: 5, - isLegendary: false, - types: ['dark', 'fighting'], - }, - { - abilities: ['Wonder Skin ', 'Magic Guard', 'Tinted Lens'], - attack: 58, - classfication: 'Avianoid Pokémon', - defense: 80, - hp: 72, - japaneseName: 'Symbolerシンボラー', - name: 'Sigilyph', - id: 561, - generation: 5, - isLegendary: false, - types: ['psychic', 'flying'], - }, - { - abilities: ['Mummy'], - attack: 30, - classfication: 'Spirit Pokémon', - defense: 85, - hp: 38, - japaneseName: 'Desumasuデスマス', - name: 'Yamask', - id: 562, - generation: 5, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Mummy'], - attack: 50, - classfication: 'Coffin Pokémon', - defense: 145, - hp: 58, - japaneseName: 'Desukarnデスカーン', - name: 'Cofagrigus', - id: 563, - generation: 5, - isLegendary: false, - types: ['ghost'], - }, - { - abilities: ['Solid Rock', 'Sturdy', 'Swift Swim'], - attack: 78, - classfication: 'Prototurtle Pokémon', - defense: 103, - hp: 54, - japaneseName: 'Protogaプロトーガ', - name: 'Tirtouga', - id: 564, - generation: 5, - isLegendary: false, - types: ['water', 'rock'], - }, - { - abilities: ['Solid Rock', 'Sturdy', 'Swift Swim'], - attack: 108, - classfication: 'Prototurtle Pokémon', - defense: 133, - hp: 74, - japaneseName: 'Abagouraアバゴーラ', - name: 'Carracosta', - id: 565, - generation: 5, - isLegendary: false, - types: ['water', 'rock'], - }, - { - abilities: ['Defeatist'], - attack: 112, - classfication: 'First Bird Pokémon', - defense: 45, - hp: 55, - japaneseName: 'Archenアーケン', - name: 'Archen', - id: 566, - generation: 5, - isLegendary: false, - types: ['rock', 'flying'], - }, - { - abilities: ['Defeatist'], - attack: 140, - classfication: 'First Bird Pokémon', - defense: 65, - hp: 75, - japaneseName: 'Archeosアーケオス', - name: 'Archeops', - id: 567, - generation: 5, - isLegendary: false, - types: ['rock', 'flying'], - }, - { - abilities: ['Stench', 'Sticky Hold', 'Aftermath'], - attack: 50, - classfication: 'Trash Bag Pokémon', - defense: 62, - hp: 50, - japaneseName: 'Yabukuronヤブクロン', - name: 'Trubbish', - id: 568, - generation: 5, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Stench', 'Weak Armor', 'Aftermath'], - attack: 95, - classfication: 'Trash Heap Pokémon', - defense: 82, - hp: 80, - japaneseName: 'Dustdasダストダス', - name: 'Garbodor', - id: 569, - generation: 5, - isLegendary: false, - types: ['poison'], - }, - { - abilities: ['Illusion'], - attack: 65, - classfication: 'Tricky Fox Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Zoruaゾロア', - name: 'Zorua', - id: 570, - generation: 5, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Illusion'], - attack: 105, - classfication: 'Illusion Fox Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Zoroarkゾロアーク', - name: 'Zoroark', - id: 571, - generation: 5, - isLegendary: false, - types: ['dark'], - }, - { - abilities: ['Cute Charm', 'Technician', 'Skill Link'], - attack: 50, - classfication: 'Chinchilla Pokémon', - defense: 40, - hp: 55, - japaneseName: 'Chillarmyチラーミィ', - name: 'Minccino', - id: 572, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Cute Charm', 'Technician', 'Skill Link'], - attack: 95, - classfication: 'Scarf Pokémon', - defense: 60, - hp: 75, - japaneseName: 'Chillaccinoチラチーノ', - name: 'Cinccino', - id: 573, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Frisk', 'Competitive', 'Shadow Tag'], - attack: 30, - classfication: 'Fixation Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Gothimuゴチム', - name: 'Gothita', - id: 574, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Frisk', 'Competitive', 'Shadow Tag'], - attack: 45, - classfication: 'Manipulate Pokémon', - defense: 70, - hp: 60, - japaneseName: 'Gothimiruゴチミル', - name: 'Gothorita', - id: 575, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Frisk', 'Competitive', 'Shadow Tag'], - attack: 55, - classfication: 'Astral Body Pokémon', - defense: 95, - hp: 70, - japaneseName: 'Gothiruselleゴチルゼル', - name: 'Gothitelle', - id: 576, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], - attack: 30, - classfication: 'Cell Pokémon', - defense: 40, - hp: 45, - japaneseName: 'Uniranユニラン', - name: 'Solosis', - id: 577, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], - attack: 40, - classfication: 'Mitosis Pokémon', - defense: 50, - hp: 65, - japaneseName: 'Doublanダブラン', - name: 'Duosion', - id: 578, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Overcoat', 'Magic Guard', 'Regenerator'], - attack: 65, - classfication: 'Multiplying Pokémon', - defense: 75, - hp: 110, - japaneseName: 'Lanculusランクルス', - name: 'Reuniclus', - id: 579, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Keen Eye', 'Big Pecks', 'Hydration'], - attack: 44, - classfication: 'Water Bird Pokémon', - defense: 50, - hp: 62, - japaneseName: 'Koaruhieコアルヒー', - name: 'Ducklett', - id: 580, - generation: 5, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Keen Eye', 'Big Pecks', 'Hydration'], - attack: 87, - classfication: 'White Bird Pokémon', - defense: 63, - hp: 75, - japaneseName: 'Swannaスワンナ', - name: 'Swanna', - id: 581, - generation: 5, - isLegendary: false, - types: ['water', 'flying'], - }, - { - abilities: ['Ice Body', 'Snow Cloak', 'Weak Armor'], - attack: 50, - classfication: 'Fresh Snow Pokémon', - defense: 50, - hp: 36, - japaneseName: 'Vanipetiバニプッチ', - name: 'Vanillite', - id: 582, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Ice Body', 'Snow Cloak', 'Weak Armor'], - attack: 65, - classfication: 'Icy Snow Pokémon', - defense: 65, - hp: 51, - japaneseName: 'Vanirichバニリッチ', - name: 'Vanillish', - id: 583, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Ice Body', 'Snow Warning', 'Weak Armor'], - attack: 95, - classfication: 'Snowstorm Pokémon', - defense: 85, - hp: 71, - japaneseName: 'Baivanillaバイバニラ', - name: 'Vanilluxe', - id: 584, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Chlorophyll', 'Sap Sipper', 'Serene Grace'], - attack: 60, - classfication: 'Season Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Shikijikaシキジカ', - name: 'Deerling', - id: 585, - generation: 5, - isLegendary: false, - types: ['normal', 'grass'], - }, - { - abilities: ['Chlorophyll', 'Sap Sipper', 'Serene Grace'], - attack: 100, - classfication: 'Season Pokémon', - defense: 70, - hp: 80, - japaneseName: 'Mebukijikaメブキジカ', - name: 'Sawsbuck', - id: 586, - generation: 5, - isLegendary: false, - types: ['normal', 'grass'], - }, - { - abilities: ['Static', 'Motor Drive'], - attack: 75, - classfication: 'Sky Squirrel Pokémon', - defense: 60, - hp: 55, - japaneseName: 'Emongaエモンガ', - name: 'Emolga', - id: 587, - generation: 5, - isLegendary: false, - types: ['electric', 'flying'], - }, - { - abilities: ['Swarm', 'Shed Skin', 'No Guard'], - attack: 75, - classfication: 'Clamping Pokémon', - defense: 45, - hp: 50, - japaneseName: 'Kaburumoカブルモ', - name: 'Karrablast', - id: 588, - generation: 5, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Swarm', 'Shell Armor', 'Overcoat'], - attack: 135, - classfication: 'Cavalry Pokémon', - defense: 105, - hp: 70, - japaneseName: 'Chevargoシュバルゴ', - name: 'Escavalier', - id: 589, - generation: 5, - isLegendary: false, - types: ['bug', 'steel'], - }, - { - abilities: ['Effect Spore', 'Regenerator'], - attack: 55, - classfication: 'Mushroom Pokémon', - defense: 45, - hp: 69, - japaneseName: 'Tamagetakeタマゲタケ', - name: 'Foongus', - id: 590, - generation: 5, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Effect Spore', 'Regenerator'], - attack: 85, - classfication: 'Mushroom Pokémon', - defense: 70, - hp: 114, - japaneseName: 'Morobareruモロバレル', - name: 'Amoonguss', - id: 591, - generation: 5, - isLegendary: false, - types: ['grass', 'poison'], - }, - { - abilities: ['Water Absorb', 'Cursed Body', 'Damp'], - attack: 40, - classfication: 'Floating Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Pururillプルリル', - name: 'Frillish', - id: 592, - generation: 5, - isLegendary: false, - types: ['water', 'ghost'], - }, - { - abilities: ['Water Absorb', 'Cursed Body', 'Damp'], - attack: 60, - classfication: 'Floating Pokémon', - defense: 70, - hp: 100, - japaneseName: 'Burungelブルンゲル', - name: 'Jellicent', - id: 593, - generation: 5, - isLegendary: false, - types: ['water', 'ghost'], - }, - { - abilities: ['Healer', 'Hydration', 'Regenerator'], - attack: 75, - classfication: 'Caring Pokémon', - defense: 80, - hp: 165, - japaneseName: 'Mamanbouママンボウ', - name: 'Alomomola', - id: 594, - generation: 5, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Compoundeyes', 'Unnerve', 'Swarm'], - attack: 47, - classfication: 'Attaching Pokémon', - defense: 50, - hp: 50, - japaneseName: 'Bachuruバチュル', - name: 'Joltik', - id: 595, - generation: 5, - isLegendary: false, - types: ['bug', 'electric'], - }, - { - abilities: ['Compoundeyes', 'Unnerve', 'Swarm'], - attack: 77, - classfication: 'EleSpider Pokémon', - defense: 60, - hp: 70, - japaneseName: 'Dentulaデンチュラ', - name: 'Galvantula', - id: 596, - generation: 5, - isLegendary: false, - types: ['bug', 'electric'], - }, - { - abilities: ['Iron Barbs'], - attack: 50, - classfication: 'Thorn Seed Pokémon', - defense: 91, - hp: 44, - japaneseName: 'Tesseedテッシード', - name: 'Ferroseed', - id: 597, - generation: 5, - isLegendary: false, - types: ['grass', 'steel'], - }, - { - abilities: ['Iron Barbs', 'Anticipation'], - attack: 94, - classfication: 'Thorn Pod Pokémon', - defense: 131, - hp: 74, - japaneseName: 'Nutreyナットレイ', - name: 'Ferrothorn', - id: 598, - generation: 5, - isLegendary: false, - types: ['grass', 'steel'], - }, - { - abilities: ['Plus', 'Minus', 'Clear Body'], - attack: 55, - classfication: 'Gear Pokémon', - defense: 70, - hp: 40, - japaneseName: 'Giaruギアル', - name: 'Klink', - id: 599, - generation: 5, - isLegendary: false, - types: ['steel'], - }, - { - abilities: ['Plus', 'Minus', 'Clear Body'], - attack: 80, - classfication: 'Gear Pokémon', - defense: 95, - hp: 60, - japaneseName: 'Gigiaruギギアル', - name: 'Klang', - id: 600, - generation: 5, - isLegendary: false, - types: ['steel'], - }, - { - abilities: ['Plus', 'Minus', 'Clear Body'], - attack: 100, - classfication: 'Gear Pokémon', - defense: 115, - hp: 60, - japaneseName: 'Gigigiaruギギギアル', - name: 'Klinklang', - id: 601, - generation: 5, - isLegendary: false, - types: ['steel'], - }, - { - abilities: ['Levitate'], - attack: 55, - classfication: 'EleFish Pokémon', - defense: 40, - hp: 35, - japaneseName: 'Shibishirasuシビシラス', - name: 'Tynamo', - id: 602, - generation: 5, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Levitate'], - attack: 85, - classfication: 'EleFish Pokémon', - defense: 70, - hp: 65, - japaneseName: 'Shibibeelシビビール', - name: 'Eelektrik', - id: 603, - generation: 5, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Levitate'], - attack: 115, - classfication: 'EleFish Pokémon', - defense: 80, - hp: 85, - japaneseName: 'Shibirudonシビルドン', - name: 'Eelektross', - id: 604, - generation: 5, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Telepathy', 'Synchronize', 'Analytic'], - attack: 55, - classfication: 'Cerebral Pokémon', - defense: 55, - hp: 55, - japaneseName: 'Ligrayリグレー', - name: 'Elgyem', - id: 605, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Telepathy', 'Synchronize', 'Analytic'], - attack: 75, - classfication: 'Cerebral Pokémon', - defense: 75, - hp: 75, - japaneseName: 'Ohbemオーベム', - name: 'Beheeyem', - id: 606, - generation: 5, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], - attack: 30, - classfication: 'Candle Pokémon', - defense: 55, - hp: 50, - japaneseName: 'Hitomoshiヒトモシ', - name: 'Litwick', - id: 607, - generation: 5, - isLegendary: false, - types: ['ghost', 'fire'], - }, - { - abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], - attack: 40, - classfication: 'Lamp Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Lamplerランプラー', - name: 'Lampent', - id: 608, - generation: 5, - isLegendary: false, - types: ['ghost', 'fire'], - }, - { - abilities: ['Flash Fire', 'Flame Body', 'Infiltrator'], - attack: 55, - classfication: 'Luring Pokémon', - defense: 90, - hp: 60, - japaneseName: 'Chandelaシャンデラ', - name: 'Chandelure', - id: 609, - generation: 5, - isLegendary: false, - types: ['ghost', 'fire'], - }, - { - abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], - attack: 87, - classfication: 'Tusk Pokémon', - defense: 60, - hp: 46, - japaneseName: 'Kibagoキバゴ', - name: 'Axew', - id: 610, - generation: 5, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], - attack: 117, - classfication: 'Axe Jaw Pokémon', - defense: 70, - hp: 66, - japaneseName: 'Onondoオノンド', - name: 'Fraxure', - id: 611, - generation: 5, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Rivalry', 'Mold Breaker', 'Unnerve'], - attack: 147, - classfication: 'Axe Jaw Pokémon', - defense: 90, - hp: 76, - japaneseName: 'Ononokusオノノクス', - name: 'Haxorus', - id: 612, - generation: 5, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Snow Cloak', 'Slush Rush', 'Rattled'], - attack: 70, - classfication: 'Chill Pokémon', - defense: 40, - hp: 55, - japaneseName: 'Kumasyunクマシュン', - name: 'Cubchoo', - id: 613, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Snow Cloak', 'Slush Rush', 'Swift Swim'], - attack: 130, - classfication: 'Freezing Pokémon', - defense: 80, - hp: 95, - japaneseName: 'Tunbearツンベアー', - name: 'Beartic', - id: 614, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Levitate'], - attack: 50, - classfication: 'Crystallizing Pokémon', - defense: 50, - hp: 80, - japaneseName: 'Freegeoフリージオ', - name: 'Cryogonal', - id: 615, - generation: 5, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Hydration', 'Shell Armor', 'Overcoat'], - attack: 40, - classfication: 'Snail Pokémon', - defense: 85, - hp: 50, - japaneseName: 'Chobomakiチョボマキ', - name: 'Shelmet', - id: 616, - generation: 5, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Hydration', 'Sticky Hold', 'Unburden'], - attack: 70, - classfication: 'Shell Out Pokémon', - defense: 40, - hp: 80, - japaneseName: 'Agilderアギルダー', - name: 'Accelgor', - id: 617, - generation: 5, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Static', 'Limber', 'Sand Veil'], - attack: 66, - classfication: 'Trap Pokémon', - defense: 84, - hp: 109, - japaneseName: 'Maggyoマッギョ', - name: 'Stunfisk', - id: 618, - generation: 5, - isLegendary: false, - types: ['ground', 'electric'], - }, - { - abilities: ['Inner Focus', 'Regenerator', 'Reckless'], - attack: 85, - classfication: 'Martial Arts Pokémon', - defense: 50, - hp: 45, - japaneseName: 'Kojofuコジョフー', - name: 'Mienfoo', - id: 619, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Inner Focus', 'Regenerator', 'Reckless'], - attack: 125, - classfication: 'Martial Arts Pokémon', - defense: 60, - hp: 65, - japaneseName: 'Kojondoコジョンド', - name: 'Mienshao', - id: 620, - generation: 5, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Rough Skin', 'Sheer Force', 'Mold Breaker'], - attack: 120, - classfication: 'Cave Pokémon', - defense: 90, - hp: 77, - japaneseName: 'Crimganクリムガン', - name: 'Druddigon', - id: 621, - generation: 5, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Iron Fist', 'Klutz', 'No Guard'], - attack: 74, - classfication: 'Automaton Pokémon', - defense: 50, - hp: 59, - japaneseName: 'Gobitゴビット', - name: 'Golett', - id: 622, - generation: 5, - isLegendary: false, - types: ['ground', 'ghost'], - }, - { - abilities: ['Iron Fist', 'Klutz', 'No Guard'], - attack: 124, - classfication: 'Automaton Pokémon', - defense: 80, - hp: 89, - japaneseName: 'Goloogゴルーグ', - name: 'Golurk', - id: 623, - generation: 5, - isLegendary: false, - types: ['ground', 'ghost'], - }, - { - abilities: ['Defiant', 'Inner Focus', 'Pressure'], - attack: 85, - classfication: 'Sharp Blade Pokémon', - defense: 70, - hp: 45, - japaneseName: 'Komatanaコマタナ', - name: 'Pawniard', - id: 624, - generation: 5, - isLegendary: false, - types: ['dark', 'steel'], - }, - { - abilities: ['Defiant', 'Inner Focus', 'Pressure'], - attack: 125, - classfication: 'Sword Blade Pokémon', - defense: 100, - hp: 65, - japaneseName: 'Kirikizanキリキザン', - name: 'Bisharp', - id: 625, - generation: 5, - isLegendary: false, - types: ['dark', 'steel'], - }, - { - abilities: ['Reckless', 'Sap Sipper', 'Soundproof'], - attack: 110, - classfication: 'Bash Buffalo Pokémon', - defense: 95, - hp: 95, - japaneseName: 'Buffronバッフロン', - name: 'Bouffalant', - id: 626, - generation: 5, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Keen Eye', 'Sheer Force', 'Hustle'], - attack: 83, - classfication: 'Eaglet Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Washibonワシボン', - name: 'Rufflet', - id: 627, - generation: 5, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Sheer Force', 'Defiant'], - attack: 123, - classfication: 'Valiant Pokémon', - defense: 75, - hp: 100, - japaneseName: 'Warrgleウォーグル', - name: 'Braviary', - id: 628, - generation: 5, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Big Pecks', 'Overcoat', 'Weak Armor'], - attack: 55, - classfication: 'Diapered Pokémon', - defense: 75, - hp: 70, - japaneseName: 'Valchaiバルチャイ', - name: 'Vullaby', - id: 629, - generation: 5, - isLegendary: false, - types: ['dark', 'flying'], - }, - { - abilities: ['Big Pecks', 'Overcoat', 'Weak Armor'], - attack: 65, - classfication: 'Bone Vulture Pokémon', - defense: 105, - hp: 110, - japaneseName: 'Vulginaバルジーナ', - name: 'Mandibuzz', - id: 630, - generation: 5, - isLegendary: false, - types: ['dark', 'flying'], - }, - { - abilities: ['Gluttony', 'Flash Fire', 'White Smoke'], - attack: 97, - classfication: 'Anteater Pokémon', - defense: 66, - hp: 85, - japaneseName: 'Kuitaranクイタラン', - name: 'Heatmor', - id: 631, - generation: 5, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Swarm', 'Hustle', 'Truant'], - attack: 109, - classfication: 'Iron Ant Pokémon', - defense: 112, - hp: 58, - japaneseName: 'Aiantアイアント', - name: 'Durant', - id: 632, - generation: 5, - isLegendary: false, - types: ['bug', 'steel'], - }, - { - abilities: ['Hustle'], - attack: 65, - classfication: 'Irate Pokémon', - defense: 50, - hp: 52, - japaneseName: 'Monozuモノズ', - name: 'Deino', - id: 633, - generation: 5, - isLegendary: false, - types: ['dark', 'dragon'], - }, - { - abilities: ['Hustle'], - attack: 85, - classfication: 'Hostile Pokémon', - defense: 70, - hp: 72, - japaneseName: 'Diheadジヘッド', - name: 'Zweilous', - id: 634, - generation: 5, - isLegendary: false, - types: ['dark', 'dragon'], - }, - { - abilities: ['Levitate'], - attack: 105, - classfication: 'Brutal Pokémon', - defense: 90, - hp: 92, - japaneseName: 'Sazandoraサザンドラ', - name: 'Hydreigon', - id: 635, - generation: 5, - isLegendary: false, - types: ['dark', 'dragon'], - }, - { - abilities: ['Flame Body', 'Swarm'], - attack: 85, - classfication: 'Torch Pokémon', - defense: 55, - hp: 55, - japaneseName: 'Merlarvaメラルバ', - name: 'Larvesta', - id: 636, - generation: 5, - isLegendary: false, - types: ['bug', 'fire'], - }, - { - abilities: ['Flame Body', 'Swarm'], - attack: 60, - classfication: 'Sun Pokémon', - defense: 65, - hp: 85, - japaneseName: 'Ulgamothウルガモス', - name: 'Volcarona', - id: 637, - generation: 5, - isLegendary: false, - types: ['bug', 'fire'], - }, - { - abilities: ['Justified'], - attack: 90, - classfication: 'Iron Will Pokémon', - defense: 129, - hp: 91, - japaneseName: 'Cobalonコバルオン', - name: 'Cobalion', - id: 638, - generation: 5, - isLegendary: false, - types: ['steel', 'fighting'], - }, - { - abilities: ['Justified'], - attack: 129, - classfication: 'Cavern Pokémon', - defense: 90, - hp: 91, - japaneseName: 'Terrakionテラキオン', - name: 'Terrakion', - id: 639, - generation: 5, - isLegendary: false, - types: ['rock', 'fighting'], - }, - { - abilities: ['Justified'], - attack: 90, - classfication: 'Grassland Pokémon', - defense: 72, - hp: 91, - japaneseName: 'Virizionビリジオン', - name: 'Virizion', - id: 640, - generation: 5, - isLegendary: false, - types: ['grass', 'fighting'], - }, - { - abilities: ['Prankster', 'Defiant', 'Regenerator'], - attack: 100, - classfication: 'Cyclone Pokémon', - defense: 80, - hp: 79, - japaneseName: 'Tornelos (keshin Forme)トルネロス', - name: 'Tornadus', - id: 641, - generation: 5, - isLegendary: false, - types: ['flying'], - }, - { - abilities: ['Prankster', 'Defiant', 'Volt Absorb'], - attack: 105, - classfication: 'Bolt Strike Pokémon', - defense: 70, - hp: 79, - japaneseName: 'Voltolos (keshin Forme)ボルトロス', - name: 'Thundurus', - id: 642, - generation: 5, - isLegendary: false, - types: ['electric', 'flying'], - }, - { - abilities: ['Turboblaze'], - attack: 120, - classfication: 'Vast White Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Reshiramレシラム', - name: 'Reshiram', - id: 643, - generation: 5, - isLegendary: false, - types: ['dragon', 'fire'], - }, - { - abilities: ['Teravolt'], - attack: 150, - classfication: 'Deep Black Pokémon', - defense: 120, - hp: 100, - japaneseName: 'Zekromゼクロム', - name: 'Zekrom', - id: 644, - generation: 5, - isLegendary: false, - types: ['dragon', 'electric'], - }, - { - abilities: ['Sand Force', 'Sheer Force', 'Intimidate'], - attack: 145, - classfication: 'Abundance Pokémon', - defense: 90, - hp: 89, - japaneseName: 'Landlos (keshin Forme)ランドロス', - name: 'Landorus', - id: 645, - generation: 5, - isLegendary: false, - types: ['ground', 'flying'], - }, - { - abilities: ['Pressure', 'Teravolt', 'Turboblaze'], - attack: 120, - classfication: 'Boundary Pokémon', - defense: 90, - hp: 125, - japaneseName: 'Kyuremキュレム', - name: 'Kyurem', - id: 646, - generation: 5, - isLegendary: false, - types: ['dragon', 'ice'], - }, - { - abilities: ['Justified'], - attack: 72, - classfication: 'Colt Pokémon', - defense: 90, - hp: 91, - japaneseName: 'Keldeo (itsumo No Sugata)ケルディオ', - name: 'Keldeo', - id: 647, - generation: 5, - isLegendary: false, - types: ['water', 'fighting'], - }, - { - abilities: ['Serene Grace'], - attack: 128, - classfication: 'Melody Pokémon', - defense: 90, - hp: 100, - japaneseName: 'Meloetta (step Forme)メロエッタ', - name: 'Meloetta', - id: 648, - generation: 5, - isLegendary: false, - types: ['normal', 'psychic'], - }, - { - abilities: ['Download'], - attack: 120, - classfication: 'Paleozoic Pokémon', - defense: 95, - hp: 71, - japaneseName: 'Genesectゲノセクト', - name: 'Genesect', - id: 649, - generation: 5, - isLegendary: false, - types: ['bug', 'steel'], - }, - { - abilities: ['Overgrow', 'Bulletproof'], - attack: 61, - classfication: 'Spiky Nut Pokémon', - defense: 65, - hp: 56, - japaneseName: 'Harimaronハリマロン', - name: 'Chespin', - id: 650, - generation: 6, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Bulletproof'], - attack: 78, - classfication: 'Spiny Armor Pokémon', - defense: 95, - hp: 61, - japaneseName: 'Hariborgハリボーグ', - name: 'Quilladin', - id: 651, - generation: 6, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Overgrow', 'Bulletproof'], - attack: 107, - classfication: 'Spiny Armor Pokémon', - defense: 122, - hp: 88, - japaneseName: 'Brigarronブリガロン', - name: 'Chesnaught', - id: 652, - generation: 6, - isLegendary: false, - types: ['grass', 'fighting'], - }, - { - abilities: ['Blaze', 'Magician'], - attack: 45, - classfication: 'Fox Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Fokkoフォッコ', - name: 'Fennekin', - id: 653, - generation: 6, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Magician'], - attack: 59, - classfication: 'Fox Pokémon', - defense: 58, - hp: 59, - japaneseName: 'Tairenarテールナー', - name: 'Braixen', - id: 654, - generation: 6, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Magician'], - attack: 69, - classfication: 'Fox Pokémon', - defense: 72, - hp: 75, - japaneseName: 'Mahoxyマフォクシー', - name: 'Delphox', - id: 655, - generation: 6, - isLegendary: false, - types: ['fire', 'psychic'], - }, - { - abilities: ['Torrent', 'Protean'], - attack: 56, - classfication: 'Bubble Frog Pokémon', - defense: 40, - hp: 41, - japaneseName: 'Keromatsuケロマツ', - name: 'Froakie', - id: 656, - generation: 6, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Protean'], - attack: 63, - classfication: 'Bubble Frog Pokémon', - defense: 52, - hp: 54, - japaneseName: 'Gekogashiraゲコガシラ', - name: 'Frogadier', - id: 657, - generation: 6, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Protean', 'Battle Bond'], - attack: 145, - classfication: 'Ninja Pokémon', - defense: 67, - hp: 72, - japaneseName: 'Gekkougaゲッコウガ', - name: 'Greninja', - id: 658, - generation: 6, - isLegendary: false, - types: ['water', 'dark'], - }, - { - abilities: ['Pickup', 'Cheek Pouch', 'Huge Power'], - attack: 36, - classfication: 'Digging Pokémon', - defense: 38, - hp: 38, - japaneseName: 'Horubeeホルビー', - name: 'Bunnelby', - id: 659, - generation: 6, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Pickup', 'Cheek Pouch', 'Huge Power'], - attack: 56, - classfication: 'Digging Pokémon', - defense: 77, - hp: 85, - japaneseName: 'Horudoホルード', - name: 'Diggersby', - id: 660, - generation: 6, - isLegendary: false, - types: ['normal', 'ground'], - }, - { - abilities: ['Big Pecks', 'Gale Wings'], - attack: 50, - classfication: 'Tiny Robin Pokémon', - defense: 43, - hp: 45, - japaneseName: 'Yayakomaヤヤコマ', - name: 'Fletchling', - id: 661, - generation: 6, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Flame Body', 'Gale Wings'], - attack: 73, - classfication: 'Ember Pokémon', - defense: 55, - hp: 62, - japaneseName: 'Hinoyakomaヒノヤコマ', - name: 'Fletchinder', - id: 662, - generation: 6, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Flame Body', 'Gale Wings'], - attack: 81, - classfication: 'Scorching Pokémon', - defense: 71, - hp: 78, - japaneseName: 'Fiarrowファイアロー', - name: 'Talonflame', - id: 663, - generation: 6, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Shield Dust', 'Compoundeyes', 'Friend Guard'], - attack: 35, - classfication: 'Scatterdust Pokémon', - defense: 40, - hp: 38, - japaneseName: 'Kofukimushiコフキムシ', - name: 'Scatterbug', - id: 664, - generation: 6, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Shed Skin', 'Friend Guard'], - attack: 22, - classfication: 'Scatterdust Pokémon', - defense: 60, - hp: 45, - japaneseName: 'Kofuuraiコフーライ', - name: 'Spewpa', - id: 665, - generation: 6, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Shield Dust', 'Compoundeyes', 'Friend Guard'], - attack: 52, - classfication: 'Scale Pokémon', - defense: 50, - hp: 80, - japaneseName: 'Viviyonビビヨン', - name: 'Vivillon', - id: 666, - generation: 6, - isLegendary: false, - types: ['bug', 'flying'], - }, - { - abilities: ['Rivalry', 'Unnerve', 'Moxie'], - attack: 50, - classfication: 'Lion Cub Pokémon', - defense: 58, - hp: 62, - japaneseName: 'Shishikoシシコ', - name: 'Litleo', - id: 667, - generation: 6, - isLegendary: false, - types: ['fire', 'normal'], - }, - { - abilities: ['Rivalry', 'Unnerve', 'Moxie'], - attack: 68, - classfication: 'Royal Pokémon', - defense: 72, - hp: 86, - japaneseName: 'Kaenjishiカエンジシ', - name: 'Pyroar', - id: 668, - generation: 6, - isLegendary: false, - types: ['fire', 'normal'], - }, - { - abilities: ['Flower Veil', 'Symbiosis'], - attack: 38, - classfication: 'Single Bloom Pokémon', - defense: 39, - hp: 44, - japaneseName: 'Flabebeフラベベ', - name: 'Flabébé', - id: 669, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Flower Veil', 'Symbiosis'], - attack: 65, - classfication: 'Fairy Pokémon', - defense: 67, - hp: 74, - japaneseName: 'Floetteフラエッテ', - name: 'Floette', - id: 670, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Flower Veil', 'Symbiosis'], - attack: 65, - classfication: 'Garden Pokémon', - defense: 68, - hp: 78, - japaneseName: 'Florgesフラージェス', - name: 'Florges', - id: 671, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Sap Sipper', 'Grass Pelt'], - attack: 65, - classfication: 'Mount Pokémon', - defense: 48, - hp: 66, - japaneseName: 'Meecleメェークル', - name: 'Skiddo', - id: 672, - generation: 6, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Sap Sipper', 'Grass Pelt'], - attack: 100, - classfication: 'Mount Pokémon', - defense: 62, - hp: 123, - japaneseName: 'Gogoatゴーゴート', - name: 'Gogoat', - id: 673, - generation: 6, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Iron Fist', 'Mold Breaker', 'Scrappy'], - attack: 82, - classfication: 'Playful Pokémon', - defense: 62, - hp: 67, - japaneseName: 'Yanchamヤンチャム', - name: 'Pancham', - id: 674, - generation: 6, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Iron Fist', 'Mold Breaker', 'Scrappy'], - attack: 124, - classfication: 'Daunting Pokémon', - defense: 78, - hp: 95, - japaneseName: 'Gorondaゴロンダ', - name: 'Pangoro', - id: 675, - generation: 6, - isLegendary: false, - types: ['fighting', 'dark'], - }, - { - abilities: ['Fur Coat'], - attack: 80, - classfication: 'Poodle Pokémon', - defense: 60, - hp: 75, - japaneseName: 'Trimmienトリミアン', - name: 'Furfrou', - id: 676, - generation: 6, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Keen Eye', 'Infiltrator', 'Own Tempo'], - attack: 48, - classfication: 'Restraint Pokémon', - defense: 54, - hp: 62, - japaneseName: 'Nyasperニャスパー', - name: 'Espurr', - id: 677, - generation: 6, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Keen Eye', 'Infiltrator', 'Prankster', 'Competitive'], - attack: 48, - classfication: 'Constraint Pokémon', - defense: 76, - hp: 74, - japaneseName: 'Nyaonixニャオニクス', - name: 'Meowstic', - id: 678, - generation: 6, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['No Guard'], - attack: 80, - classfication: 'Sword Pokémon', - defense: 100, - hp: 45, - japaneseName: 'Hitotsukiヒトツキ', - name: 'Honedge', - id: 679, - generation: 6, - isLegendary: false, - types: ['steel', 'ghost'], - }, - { - abilities: ['No Guard'], - attack: 110, - classfication: 'Sword Pokémon', - defense: 150, - hp: 59, - japaneseName: 'Nidangillニダンギル', - name: 'Doublade', - id: 680, - generation: 6, - isLegendary: false, - types: ['steel', 'ghost'], - }, - { - abilities: ['Stance Change'], - attack: 150, - classfication: 'Royal Sword Pokémon', - defense: 50, - hp: 60, - japaneseName: 'Gillgardギルガルド', - name: 'Aegislash', - id: 681, - generation: 6, - isLegendary: false, - types: ['steel', 'ghost'], - }, - { - abilities: ['Healer', 'Aroma Veil'], - attack: 52, - classfication: 'Perfume Pokémon', - defense: 60, - hp: 78, - japaneseName: 'Shushupuシュシュプ', - name: 'Spritzee', - id: 682, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Healer', 'Aroma Veil'], - attack: 72, - classfication: 'Fragrance Pokémon', - defense: 72, - hp: 101, - japaneseName: 'Frefuwanフレフワン', - name: 'Aromatisse', - id: 683, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Sweet Veil', 'Unburden'], - attack: 48, - classfication: 'Cotton Candy Pokémon', - defense: 66, - hp: 62, - japaneseName: 'Peroppafuペロッパフ', - name: 'Swirlix', - id: 684, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Sweet Veil', 'Unburden'], - attack: 80, - classfication: 'Meringue Pokémon', - defense: 86, - hp: 82, - japaneseName: 'Peroreamペロリーム', - name: 'Slurpuff', - id: 685, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Contrary', 'Suction Cups', 'Infiltrator'], - attack: 54, - classfication: 'Revolving Pokémon', - defense: 53, - hp: 53, - japaneseName: 'Maaiikaマーイーカ', - name: 'Inkay', - id: 686, - generation: 6, - isLegendary: false, - types: ['dark', 'psychic'], - }, - { - abilities: ['Contrary', 'Suction Cups', 'Infiltrator'], - attack: 92, - classfication: 'Overturning Pokémon', - defense: 88, - hp: 86, - japaneseName: 'Calamaneroカラマネロ', - name: 'Malamar', - id: 687, - generation: 6, - isLegendary: false, - types: ['dark', 'psychic'], - }, - { - abilities: ['Tough Claws', 'Sniper', 'Pickpocket'], - attack: 52, - classfication: 'Two-Handed Pokémon', - defense: 67, - hp: 42, - japaneseName: 'Kameteteカメテテ', - name: 'Binacle', - id: 688, - generation: 6, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Tough Claws', 'Sniper', 'Pickpocket'], - attack: 105, - classfication: 'Collective Pokémon', - defense: 115, - hp: 72, - japaneseName: 'Gamenodesガメノデス', - name: 'Barbaracle', - id: 689, - generation: 6, - isLegendary: false, - types: ['rock', 'water'], - }, - { - abilities: ['Poison Point', 'Poison Touch', 'Adaptability'], - attack: 60, - classfication: 'Mock Kelp Pokémon', - defense: 60, - hp: 50, - japaneseName: 'Kuzumoクズモー', - name: 'Skrelp', - id: 690, - generation: 6, - isLegendary: false, - types: ['poison', 'water'], - }, - { - abilities: ['Poison Point', 'Poison Touch', 'Adaptability'], - attack: 75, - classfication: 'Mock Kelp Pokémon', - defense: 90, - hp: 65, - japaneseName: 'Dramidoroドラミドロ', - name: 'Dragalge', - id: 691, - generation: 6, - isLegendary: false, - types: ['poison', 'dragon'], - }, - { - abilities: ['Mega Launcher'], - attack: 53, - classfication: 'Water Gun Pokémon', - defense: 62, - hp: 50, - japaneseName: 'Udeppouウデッポウ', - name: 'Clauncher', - id: 692, - generation: 6, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Mega Launcher'], - attack: 73, - classfication: 'Howitzer Pokémon', - defense: 88, - hp: 71, - japaneseName: 'Blosterブロスター', - name: 'Clawitzer', - id: 693, - generation: 6, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Dry Skin', 'Sand Veil', 'Solar Power'], - attack: 38, - classfication: 'Generator Pokémon', - defense: 33, - hp: 44, - japaneseName: 'Erikiteruエリキテル', - name: 'Helioptile', - id: 694, - generation: 6, - isLegendary: false, - types: ['electric', 'normal'], - }, - { - abilities: ['Dry Skin', 'Sand Veil', 'Solar Power'], - attack: 55, - classfication: 'Generator Pokémon', - defense: 52, - hp: 62, - japaneseName: 'Elezardエレザード', - name: 'Heliolisk', - id: 695, - generation: 6, - isLegendary: false, - types: ['electric', 'normal'], - }, - { - abilities: ['Strong Jaw', 'Sturdy'], - attack: 89, - classfication: 'Royal Heir Pokémon', - defense: 77, - hp: 58, - japaneseName: 'Chigorasチゴラス', - name: 'Tyrunt', - id: 696, - generation: 6, - isLegendary: false, - types: ['rock', 'dragon'], - }, - { - abilities: ['Strong Jaw', 'Rock Head'], - attack: 121, - classfication: 'Despot Pokémon', - defense: 119, - hp: 82, - japaneseName: 'Gachigorasガチゴラス', - name: 'Tyrantrum', - id: 697, - generation: 6, - isLegendary: false, - types: ['rock', 'dragon'], - }, - { - abilities: ['Refrigerate', 'Snow Warning'], - attack: 59, - classfication: 'Tundra Pokémon', - defense: 50, - hp: 77, - japaneseName: 'Amarusアマルス', - name: 'Amaura', - id: 698, - generation: 6, - isLegendary: false, - types: ['rock', 'ice'], - }, - { - abilities: ['Refrigerate', 'Snow Warning'], - attack: 77, - classfication: 'Tundra Pokémon', - defense: 72, - hp: 123, - japaneseName: 'Amarurugaアマルルガ', - name: 'Aurorus', - id: 699, - generation: 6, - isLegendary: false, - types: ['rock', 'ice'], - }, - { - abilities: ['Cute Charm', 'Pixilate'], - attack: 65, - classfication: 'Intertwining Pokémon', - defense: 65, - hp: 95, - japaneseName: 'Nymphiaニンフィア', - name: 'Sylveon', - id: 700, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Limber', 'Unburden', 'Mold Breaker'], - attack: 92, - classfication: 'Wrestling Pokémon', - defense: 75, - hp: 78, - japaneseName: 'Luchabullルチャブル', - name: 'Hawlucha', - id: 701, - generation: 6, - isLegendary: false, - types: ['fighting', 'flying'], - }, - { - abilities: ['Cheek Pouch', 'Pickup', 'Plus'], - attack: 58, - classfication: 'Antenna Pokémon', - defense: 57, - hp: 67, - japaneseName: 'Dedenneデデンネ', - name: 'Dedenne', - id: 702, - generation: 6, - isLegendary: false, - types: ['electric', 'fairy'], - }, - { - abilities: ['Clear Body', 'Sturdy'], - attack: 50, - classfication: 'Jewel Pokémon', - defense: 150, - hp: 50, - japaneseName: 'Melecieメレシー', - name: 'Carbink', - id: 703, - generation: 6, - isLegendary: false, - types: ['rock', 'fairy'], - }, - { - abilities: ['Sap Sipper', 'Hydration', 'Gooey'], - attack: 50, - classfication: 'Soft Tissue Pokémon', - defense: 35, - hp: 45, - japaneseName: 'Numeraヌメラ', - name: 'Goomy', - id: 704, - generation: 6, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Sap Sipper', 'Hydration', 'Gooey'], - attack: 75, - classfication: 'Soft Tissue Pokémon', - defense: 53, - hp: 68, - japaneseName: 'Numeilヌメイル', - name: 'Sliggoo', - id: 705, - generation: 6, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Sap Sipper', 'Hydration', 'Gooey'], - attack: 100, - classfication: 'Dragon Pokémon', - defense: 70, - hp: 90, - japaneseName: 'Numelgonヌメルゴン', - name: 'Goodra', - id: 706, - generation: 6, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Prankster', 'Magician'], - attack: 80, - classfication: 'Key Ring Pokémon', - defense: 91, - hp: 57, - japaneseName: 'Cleffyクレッフィ', - name: 'Klefki', - id: 707, - generation: 6, - isLegendary: false, - types: ['steel', 'fairy'], - }, - { - abilities: ['Natural Cure', 'Frisk', 'Harvest'], - attack: 70, - classfication: 'Stump Pokémon', - defense: 48, - hp: 43, - japaneseName: 'Bokureiボクレー', - name: 'Phantump', - id: 708, - generation: 6, - isLegendary: false, - types: ['ghost', 'grass'], - }, - { - abilities: ['Natural Cure', 'Frisk', 'Harvest'], - attack: 110, - classfication: 'Elder Tree Pokémon', - defense: 76, - hp: 85, - japaneseName: 'Ohrotオーロット', - name: 'Trevenant', - id: 709, - generation: 6, - isLegendary: false, - types: ['ghost', 'grass'], - }, - { - abilities: ['Pickup', 'Frisk', 'Insomnia'], - attack: 66, - classfication: 'Pumpkin Pokémon', - defense: 70, - hp: 59, - japaneseName: 'Bakecchaバケッチャ', - name: 'Pumpkaboo', - id: 710, - generation: 6, - isLegendary: false, - types: ['ghost', 'grass'], - }, - { - abilities: ['Pickup', 'Frisk', 'Insomnia'], - attack: 100, - classfication: 'Pumpkin Pokémon', - defense: 122, - hp: 85, - japaneseName: 'Pumpjinパンプジン', - name: 'Gourgeist', - id: 711, - generation: 6, - isLegendary: false, - types: ['ghost', 'grass'], - }, - { - abilities: ['Own Tempo', 'Ice Body', 'Sturdy'], - attack: 69, - classfication: 'Ice Chunk Pokémon', - defense: 85, - hp: 55, - japaneseName: 'Kachikohruカチコール', - name: 'Bergmite', - id: 712, - generation: 6, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Own Tempo', 'Ice Body', 'Sturdy'], - attack: 117, - classfication: 'Iceberg Pokémon', - defense: 184, - hp: 95, - japaneseName: 'Crebaseクレベース', - name: 'Avalugg', - id: 713, - generation: 6, - isLegendary: false, - types: ['ice'], - }, - { - abilities: ['Frisk', 'Infiltrator', 'Telepathy'], - attack: 30, - classfication: 'Sound Wave Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Onbatオンバット', - name: 'Noibat', - id: 714, - generation: 6, - isLegendary: false, - types: ['flying', 'dragon'], - }, - { - abilities: ['Frisk', 'Infiltrator', 'Telepathy'], - attack: 70, - classfication: 'Sound Wave Pokémon', - defense: 80, - hp: 85, - japaneseName: 'Onvernオンバーン', - name: 'Noivern', - id: 715, - generation: 6, - isLegendary: false, - types: ['flying', 'dragon'], - }, - { - abilities: ['Fairy Aura'], - attack: 131, - classfication: 'Life Pokémon', - defense: 95, - hp: 126, - japaneseName: 'Xerneasゼルネアス', - name: 'Xerneas', - id: 716, - generation: 6, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Dark Aura'], - attack: 131, - classfication: 'Destruction Pokémon', - defense: 95, - hp: 126, - japaneseName: 'Yveltalイベルタル', - name: 'Yveltal', - id: 717, - generation: 6, - isLegendary: false, - types: ['dark', 'flying'], - }, - { - abilities: ['Aura Break', 'Power Construct'], - attack: 100, - classfication: 'Order Pokémon', - defense: 121, - hp: 216, - japaneseName: 'Zygarde (10% Forme)ジガルデ', - name: 'Zygarde', - id: 718, - generation: 6, - isLegendary: false, - types: ['dragon', 'ground'], - }, - { - abilities: ['Clear Body'], - attack: 160, - classfication: 'Jewel Pokémon', - defense: 110, - hp: 50, - japaneseName: 'Diancieディアンシー', - name: 'Diancie', - id: 719, - generation: 6, - isLegendary: false, - types: ['rock', 'fairy'], - }, - { - abilities: ['Magician'], - attack: 160, - classfication: 'Mischief Pokémon (Confined)Djinn Pokémonn (Unbound)', - defense: 60, - hp: 80, - japaneseName: 'Hoopa (imashimerareshi Hoopa)フーパ', - name: 'Hoopa', - id: 720, - generation: 6, - isLegendary: false, - types: ['psychic', 'ghost'], - }, - { - abilities: ['Water Absorb'], - attack: 110, - classfication: 'Steam Pokémon', - defense: 120, - hp: 80, - japaneseName: 'Volcanionボルケニオン', - name: 'Volcanion', - id: 721, - generation: 6, - isLegendary: false, - types: ['fire', 'water'], - }, - { - abilities: ['Overgrow', 'Long Reach'], - attack: 55, - classfication: 'Grass Quill Pokémon', - defense: 55, - hp: 68, - japaneseName: 'Mokurohモクロー', - name: 'Rowlet', - id: 722, - generation: 7, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Overgrow', 'Long Reach'], - attack: 75, - classfication: 'Blade Quill Pokémon', - defense: 75, - hp: 78, - japaneseName: 'Fukuthrowフクスロー', - name: 'Dartrix', - id: 723, - generation: 7, - isLegendary: false, - types: ['grass', 'flying'], - }, - { - abilities: ['Overgrow', 'Long Reach'], - attack: 107, - classfication: 'Arrow Quill Pokémon', - defense: 75, - hp: 78, - japaneseName: 'Junaiperジュナイパー', - name: 'Decidueye', - id: 724, - generation: 7, - isLegendary: false, - types: ['grass', 'ghost'], - }, - { - abilities: ['Blaze', 'Intimidate'], - attack: 65, - classfication: 'Fire Cat Pokémon', - defense: 40, - hp: 45, - japaneseName: 'Nyabbyニャビー', - name: 'Litten', - id: 725, - generation: 7, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Intimidate'], - attack: 85, - classfication: 'Fire Cat Pokémon', - defense: 50, - hp: 65, - japaneseName: 'Nyaheatニャヒート', - name: 'Torracat', - id: 726, - generation: 7, - isLegendary: false, - types: ['fire'], - }, - { - abilities: ['Blaze', 'Intimidate'], - attack: 115, - classfication: 'Heel Pokémon', - defense: 90, - hp: 95, - japaneseName: 'Gaogaenガオガエン', - name: 'Incineroar', - id: 727, - generation: 7, - isLegendary: false, - types: ['fire', 'dark'], - }, - { - abilities: ['Torrent', 'Liquid Voice'], - attack: 54, - classfication: 'Sea Lion Pokémon', - defense: 54, - hp: 50, - japaneseName: 'Ashimariアシマリ', - name: 'Popplio', - id: 728, - generation: 7, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Liquid Voice'], - attack: 69, - classfication: 'Pop Star Pokémon', - defense: 69, - hp: 60, - japaneseName: 'Osyamariオシャマリ', - name: 'Brionne', - id: 729, - generation: 7, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Torrent', 'Liquid Voice'], - attack: 74, - classfication: 'Soloist Pokémon', - defense: 74, - hp: 80, - japaneseName: 'Ashireneアシレーヌ', - name: 'Primarina', - id: 730, - generation: 7, - isLegendary: false, - types: ['water', 'fairy'], - }, - { - abilities: ['Keen Eye', 'Skill Link', 'Pickup'], - attack: 75, - classfication: 'Woodpecker Pokémon', - defense: 30, - hp: 35, - japaneseName: 'Tsutsukeraツツケラ', - name: 'Pikipek', - id: 731, - generation: 7, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Skill Link', 'Pickup'], - attack: 85, - classfication: 'Bugle Beak Pokémon', - defense: 50, - hp: 55, - japaneseName: 'Kerarappaケララッパ', - name: 'Trumbeak', - id: 732, - generation: 7, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Keen Eye', 'Skill Link', 'Sheer Force'], - attack: 120, - classfication: 'Cannon Pokémon', - defense: 75, - hp: 80, - japaneseName: 'Dodekabashiドデカバシ', - name: 'Toucannon', - id: 733, - generation: 7, - isLegendary: false, - types: ['normal', 'flying'], - }, - { - abilities: ['Stakeout', 'Strong Jaw', 'Adaptability'], - attack: 70, - classfication: 'Loitering Pokémon', - defense: 30, - hp: 48, - japaneseName: 'Youngooseヤングース', - name: 'Yungoos', - id: 734, - generation: 7, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Stakeout', 'Strong Jaw', 'Adaptability'], - attack: 110, - classfication: 'Stakeout Pokémon', - defense: 60, - hp: 88, - japaneseName: 'Dekagooseデカグース', - name: 'Gumshoos', - id: 735, - generation: 7, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Swarm'], - attack: 62, - classfication: 'Larva Pokémon', - defense: 45, - hp: 47, - japaneseName: 'Agojimushiアゴジムシ', - name: 'Grubbin', - id: 736, - generation: 7, - isLegendary: false, - types: ['bug'], - }, - { - abilities: ['Battery'], - attack: 82, - classfication: 'Battery Pokémon', - defense: 95, - hp: 57, - japaneseName: 'Dendimushiデンヂムシ', - name: 'Charjabug', - id: 737, - generation: 7, - isLegendary: false, - types: ['bug', 'electric'], - }, - { - abilities: ['Levitate'], - attack: 70, - classfication: 'Stag Beetle Pokémon', - defense: 90, - hp: 77, - japaneseName: 'Kuwagannonクワガノン', - name: 'Vikavolt', - id: 738, - generation: 7, - isLegendary: false, - types: ['bug', 'electric'], - }, - { - abilities: ['Hyper Cutter', 'Iron Fist', 'Anger Point'], - attack: 82, - classfication: 'Boxing Pokémon', - defense: 57, - hp: 47, - japaneseName: 'Makenkaniマケンカニ', - name: 'Crabrawler', - id: 739, - generation: 7, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Hyper Cutter', 'Iron Fist', 'Anger Point'], - attack: 132, - classfication: 'Woolly Crab Pokémon', - defense: 77, - hp: 97, - japaneseName: 'Kekenkaniケケンカニ', - name: 'Crabominable', - id: 740, - generation: 7, - isLegendary: false, - types: ['fighting', 'ice'], - }, - { - abilities: ['Dancer'], - attack: 70, - classfication: 'Dancing Pokémon', - defense: 70, - hp: 75, - japaneseName: 'Odoridori (pachipachi Style)オドリドリ', - name: 'Oricorio', - id: 741, - generation: 7, - isLegendary: false, - types: ['fire', 'flying'], - }, - { - abilities: ['Honey Gather', 'Shield Dust', 'Sweet Veil'], - attack: 45, - classfication: 'Bee Fly Pokémon', - defense: 40, - hp: 40, - japaneseName: 'Abulyアブリー', - name: 'Cutiefly', - id: 742, - generation: 7, - isLegendary: false, - types: ['bug', 'fairy'], - }, - { - abilities: ['Honey Gather', 'Shield Dust', 'Sweet Veil'], - attack: 55, - classfication: 'Bee Fly Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Aburibbonアブリボン', - name: 'Ribombee', - id: 743, - generation: 7, - isLegendary: false, - types: ['bug', 'fairy'], - }, - { - abilities: ['Keen Eye', 'Vital Spirit', 'Steadfast'], - attack: 65, - classfication: 'Puppy Pokémon', - defense: 40, - hp: 45, - japaneseName: 'Iwankoイワンコ', - name: 'Rockruff', - id: 744, - generation: 7, - isLegendary: false, - types: ['rock'], - }, - { - abilities: [ - 'Keen Eye', - 'Sand Rush', - 'Steadfast', - 'Keen Eye', - 'Vital Spirit', - 'No Guard', - ], - attack: 115, - classfication: 'Wolf Pokémon', - defense: 75, - hp: 85, - japaneseName: 'Lugarugan (mahiru No Sugata)ルガルガン', - name: 'Lycanroc', - id: 745, - generation: 7, - isLegendary: false, - types: ['rock'], - }, - { - abilities: ['Schooling'], - attack: 140, - classfication: 'Small Fry Pokémon', - defense: 130, - hp: 45, - japaneseName: 'Yowashi (tandoku No Sugata)ヨワシ', - name: 'Wishiwashi', - id: 746, - generation: 7, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Merciless', 'Limber', 'Regenerator'], - attack: 53, - classfication: 'Brutal Star Pokémon', - defense: 62, - hp: 50, - japaneseName: 'Hidoideヒドイデ', - name: 'Mareanie', - id: 747, - generation: 7, - isLegendary: false, - types: ['poison', 'water'], - }, - { - abilities: ['Merciless', 'Limber', 'Regenerator'], - attack: 63, - classfication: 'Brutal Star Pokémon', - defense: 152, - hp: 50, - japaneseName: 'Dohidoideドヒドイデ', - name: 'Toxapex', - id: 748, - generation: 7, - isLegendary: false, - types: ['poison', 'water'], - }, - { - abilities: ['Own Tempo', 'Stamina', 'Inner Focus'], - attack: 100, - classfication: 'Donkey Pokémon', - defense: 70, - hp: 70, - japaneseName: 'Dorobankoドロバンコ', - name: 'Mudbray', - id: 749, - generation: 7, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Own Tempo', 'Stamina', 'Inner Focus'], - attack: 125, - classfication: 'Draft Horse Pokémon', - defense: 100, - hp: 100, - japaneseName: 'Banbadoroバンバドロ', - name: 'Mudsdale', - id: 750, - generation: 7, - isLegendary: false, - types: ['ground'], - }, - { - abilities: ['Water Bubble', 'Water Absorb'], - attack: 40, - classfication: 'Water Bubble Pokémon', - defense: 52, - hp: 38, - japaneseName: 'Shizukumoシズクモ', - name: 'Dewpider', - id: 751, - generation: 7, - isLegendary: false, - types: ['water', 'bug'], - }, - { - abilities: ['Water Bubble', 'Water Absorb'], - attack: 70, - classfication: 'Water Bubble Pokémon', - defense: 92, - hp: 68, - japaneseName: 'Onishizukumoオニシズクモ', - name: 'Araquanid', - id: 752, - generation: 7, - isLegendary: false, - types: ['water', 'bug'], - }, - { - abilities: ['Leaf Guard', 'Contrary'], - attack: 55, - classfication: 'Sickle Grass Pokémon', - defense: 35, - hp: 40, - japaneseName: 'Karikiriカリキリ', - name: 'Fomantis', - id: 753, - generation: 7, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Leaf Guard', 'Contrary'], - attack: 105, - classfication: 'Bloom Sickle Pokémon', - defense: 90, - hp: 70, - japaneseName: 'Lalantesラランテス', - name: 'Lurantis', - id: 754, - generation: 7, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Illuminate', 'Effect Spore', 'Rain Dish'], - attack: 35, - classfication: 'Illuminating Pokémon', - defense: 55, - hp: 40, - japaneseName: 'Nemasyuネマシュ', - name: 'Morelull', - id: 755, - generation: 7, - isLegendary: false, - types: ['grass', 'fairy'], - }, - { - abilities: ['Illuminate', 'Effect Spore', 'Rain Dish'], - attack: 45, - classfication: 'Illuminating Pokémon', - defense: 80, - hp: 60, - japaneseName: 'Mashadeマシェード', - name: 'Shiinotic', - id: 756, - generation: 7, - isLegendary: false, - types: ['grass', 'fairy'], - }, - { - abilities: ['Corrosion', 'Oblivious'], - attack: 44, - classfication: 'Toxic Lizard Pokémon', - defense: 40, - hp: 48, - japaneseName: 'Yatoumoriヤトウモリ', - name: 'Salandit', - id: 757, - generation: 7, - isLegendary: false, - types: ['poison', 'fire'], - }, - { - abilities: ['Corrosion', 'Oblivious'], - attack: 64, - classfication: 'Toxic Lizard Pokémon', - defense: 60, - hp: 68, - japaneseName: 'Ennewtエンニュート', - name: 'Salazzle', - id: 758, - generation: 7, - isLegendary: false, - types: ['poison', 'fire'], - }, - { - abilities: ['Fluffy', 'Klutz', 'Cute Charm'], - attack: 75, - classfication: 'Flailing Pokémon', - defense: 50, - hp: 70, - japaneseName: 'Nuikogumaヌイコグマ', - name: 'Stufful', - id: 759, - generation: 7, - isLegendary: false, - types: ['normal', 'fighting'], - }, - { - abilities: ['Fluffy', 'Klutz', 'Unnerve'], - attack: 125, - classfication: 'Strong Arm Pokémon', - defense: 80, - hp: 120, - japaneseName: 'Kiterugumaキテルグマ', - name: 'Bewear', - id: 760, - generation: 7, - isLegendary: false, - types: ['normal', 'fighting'], - }, - { - abilities: ['Leaf Guard', 'Oblivious', 'Sweet Veil'], - attack: 30, - classfication: 'Fruit Pokémon', - defense: 38, - hp: 42, - japaneseName: 'Amakajiアマカジ', - name: 'Bounsweet', - id: 761, - generation: 7, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Leaf Guard', 'Oblivious', 'Sweet Veil'], - attack: 40, - classfication: 'Fruit Pokémon', - defense: 48, - hp: 52, - japaneseName: 'Amamaikoアママイコ', - name: 'Steenee', - id: 762, - generation: 7, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Leaf Guard', 'Queenly Majesty', 'Sweet Veil'], - attack: 120, - classfication: 'Fruit Pokémon', - defense: 98, - hp: 72, - japaneseName: 'Amajoアマージョ', - name: 'Tsareena', - id: 763, - generation: 7, - isLegendary: false, - types: ['grass'], - }, - { - abilities: ['Flower Veil', 'Triage', 'Natural Cure'], - attack: 52, - classfication: 'Posy Picker Pokémon', - defense: 90, - hp: 51, - japaneseName: 'Cuwawaキュワワー', - name: 'Comfey', - id: 764, - generation: 7, - isLegendary: false, - types: ['fairy'], - }, - { - abilities: ['Inner Focus', 'Telepathy', 'Symbiosis'], - attack: 60, - classfication: 'Sage Pokémon', - defense: 80, - hp: 90, - japaneseName: 'Yareyuutanヤレユータン', - name: 'Oranguru', - id: 765, - generation: 7, - isLegendary: false, - types: ['normal', 'psychic'], - }, - { - abilities: ['Receiver', 'Defiant'], - attack: 120, - classfication: 'Teamwork Pokémon', - defense: 90, - hp: 100, - japaneseName: 'Nagetukesaruナゲツケサル', - name: 'Passimian', - id: 766, - generation: 7, - isLegendary: false, - types: ['fighting'], - }, - { - abilities: ['Wimp Out'], - attack: 35, - classfication: 'Turn Tail Pokémon', - defense: 40, - hp: 25, - japaneseName: 'Kosokumushiコソクムシ', - name: 'Wimpod', - id: 767, - generation: 7, - isLegendary: false, - types: ['bug', 'water'], - }, - { - abilities: ['Emergency Exit'], - attack: 125, - classfication: 'Hard Scale Pokémon', - defense: 140, - hp: 75, - japaneseName: 'Gusokumushaグソクムシャ', - name: 'Golisopod', - id: 768, - generation: 7, - isLegendary: false, - types: ['bug', 'water'], - }, - { - abilities: ['Water Compaction', 'Sand Veil'], - attack: 55, - classfication: 'Sand Heap Pokémon', - defense: 80, - hp: 55, - japaneseName: 'Sunabaスナバァ', - name: 'Sandygast', - id: 769, - generation: 7, - isLegendary: false, - types: ['ghost', 'ground'], - }, - { - abilities: ['Water Compaction', 'Sand Veil'], - attack: 75, - classfication: 'Sand Castle Pokémon', - defense: 110, - hp: 85, - japaneseName: 'Sirodethnaシロデスナ', - name: 'Palossand', - id: 770, - generation: 7, - isLegendary: false, - types: ['ghost', 'ground'], - }, - { - abilities: ['Innards Out', 'Unaware'], - attack: 60, - classfication: 'Sea Cucumber Pokémon', - defense: 130, - hp: 55, - japaneseName: 'Namakobushiナマコブシ', - name: 'Pyukumuku', - id: 771, - generation: 7, - isLegendary: false, - types: ['water'], - }, - { - abilities: ['Battle Armor'], - attack: 95, - classfication: 'Synthetic Pokémon', - defense: 95, - hp: 95, - japaneseName: 'Type: Nullタイプ:ヌル', - name: 'Type: Null', - id: 772, - generation: 7, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['RKS System'], - attack: 95, - classfication: 'Synthetic Pokémon', - defense: 95, - hp: 95, - japaneseName: 'Silvadyシルヴァディ', - name: 'Silvally', - id: 773, - generation: 7, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Shields Down'], - attack: 100, - classfication: 'Meteor Pokémon', - defense: 60, - hp: 60, - japaneseName: 'Metenoメテノ', - name: 'Minior', - id: 774, - generation: 7, - isLegendary: false, - types: ['rock', 'flying'], - }, - { - abilities: ['Comatose'], - attack: 115, - classfication: 'Drowsing Pokémon', - defense: 65, - hp: 65, - japaneseName: 'Nekkoaraネッコアラ', - name: 'Komala', - id: 775, - generation: 7, - isLegendary: false, - types: ['normal'], - }, - { - abilities: ['Shell Armor'], - attack: 78, - classfication: 'Blast Turtle Pokémon', - defense: 135, - hp: 60, - japaneseName: 'Bakugamesバクガメス', - name: 'Turtonator', - id: 776, - generation: 7, - isLegendary: false, - types: ['fire', 'dragon'], - }, - { - abilities: ['Iron Barbs', 'Lightningrod', 'Sturdy'], - attack: 98, - classfication: 'Roly-Poly Pokémon', - defense: 63, - hp: 65, - japaneseName: 'Togedemaruトゲデマル', - name: 'Togedemaru', - id: 777, - generation: 7, - isLegendary: false, - types: ['electric', 'steel'], - }, - { - abilities: ['Disguise'], - attack: 90, - classfication: 'Disguise Pokémon', - defense: 80, - hp: 55, - japaneseName: 'Mimikkyuミミッキュ', - name: 'Mimikyu', - id: 778, - generation: 7, - isLegendary: false, - types: ['ghost', 'fairy'], - }, - { - abilities: ['Dazzling', 'Strong Jaw', 'Wonder Skin '], - attack: 105, - classfication: 'Gnash Teeth Pokémon', - defense: 70, - hp: 68, - japaneseName: 'Hagigishiriハギギシリ', - name: 'Bruxish', - id: 779, - generation: 7, - isLegendary: false, - types: ['water', 'psychic'], - }, - { - abilities: ['Berserk', 'Sap Sipper', 'Cloud Nine'], - attack: 60, - classfication: 'Placid Pokémon', - defense: 85, - hp: 78, - japaneseName: 'Jijilongジジーロン', - name: 'Drampa', - id: 780, - generation: 7, - isLegendary: false, - types: ['normal', 'dragon'], - }, - { - abilities: ['Steelworker'], - attack: 131, - classfication: 'Sea Creeper Pokémon', - defense: 100, - hp: 70, - japaneseName: 'Dadarinダダリン', - name: 'Dhelmise', - id: 781, - generation: 7, - isLegendary: false, - types: ['ghost', 'grass'], - }, - { - abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], - attack: 55, - classfication: 'Scaly Pokémon', - defense: 65, - hp: 45, - japaneseName: 'Jyarakoジャラコ', - name: 'Jangmo-o', - id: 782, - generation: 7, - isLegendary: false, - types: ['dragon'], - }, - { - abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], - attack: 75, - classfication: 'Scaly Pokémon', - defense: 90, - hp: 55, - japaneseName: 'Jyarangoジャランゴ', - name: 'Hakamo-o', - id: 783, - generation: 7, - isLegendary: false, - types: ['dragon', 'fighting'], - }, - { - abilities: ['Bulletproof', 'Soundproof', 'Overcoat'], - attack: 110, - classfication: 'Scaly Pokémon', - defense: 125, - hp: 75, - japaneseName: 'Jyararangaジャラランガ', - name: 'Kommo-o', - id: 784, - generation: 7, - isLegendary: false, - types: ['dragon', 'fighting'], - }, - { - abilities: ['Electric Surge', 'Telepathy'], - attack: 115, - classfication: 'Land Spirit Pokémon', - defense: 85, - hp: 70, - japaneseName: 'Kapu-kokekoカプ・コケコ', - name: 'Tapu Koko', - id: 785, - generation: 7, - isLegendary: false, - types: ['electric', 'fairy'], - }, - { - abilities: ['Psychic Surge', 'Telepathy'], - attack: 85, - classfication: 'Land Spirit Pokémon', - defense: 75, - hp: 70, - japaneseName: 'Kapu-tetefuカプ・テテフ', - name: 'Tapu Lele', - id: 786, - generation: 7, - isLegendary: false, - types: ['psychic', 'fairy'], - }, - { - abilities: ['Grassy Surge', 'Telepathy'], - attack: 130, - classfication: 'Land Spirit Pokémon', - defense: 115, - hp: 70, - japaneseName: 'Kapu-bululカプ・ブルル', - name: 'Tapu Bulu', - id: 787, - generation: 7, - isLegendary: false, - types: ['grass', 'fairy'], - }, - { - abilities: ['Misty Surge', 'Telepathy'], - attack: 75, - classfication: 'Land Spirit Pokémon', - defense: 115, - hp: 70, - japaneseName: 'Kapu-rehireカプ・レヒレ', - name: 'Tapu Fini', - id: 788, - generation: 7, - isLegendary: false, - types: ['water', 'fairy'], - }, - { - abilities: ['Unaware'], - attack: 29, - classfication: 'Nebula Pokémon', - defense: 31, - hp: 43, - japaneseName: 'Cosmogコスモッグ', - name: 'Cosmog', - id: 789, - generation: 7, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Sturdy'], - attack: 29, - classfication: 'Protostar Pokémon', - defense: 131, - hp: 43, - japaneseName: 'Cosmovumコスモウム', - name: 'Cosmoem', - id: 790, - generation: 7, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Full Metal Body'], - attack: 137, - classfication: 'Sunne Pokémon', - defense: 107, - hp: 137, - japaneseName: 'Solgaleoソルガレオ', - name: 'Solgaleo', - id: 791, - generation: 7, - isLegendary: false, - types: ['psychic', 'steel'], - }, - { - abilities: ['Shadow Shield'], - attack: 113, - classfication: 'Moone Pokémon', - defense: 89, - hp: 137, - japaneseName: 'Lunalaルナアーラ', - name: 'Lunala', - id: 792, - generation: 7, - isLegendary: false, - types: ['psychic', 'ghost'], - }, - { - abilities: ['Beast Boost'], - attack: 53, - classfication: 'Parasite Pokémon', - defense: 47, - hp: 109, - japaneseName: 'Uturoidウツロイド', - name: 'Nihilego', - id: 793, - generation: 7, - isLegendary: false, - types: ['rock', 'poison'], - }, - { - abilities: ['Beast Boost'], - attack: 139, - classfication: 'Swollen Pokémon', - defense: 139, - hp: 107, - japaneseName: 'Massivoonマッシブーン', - name: 'Buzzwole', - id: 794, - generation: 7, - isLegendary: false, - types: ['bug', 'fighting'], - }, - { - abilities: ['Beast Boost'], - attack: 137, - classfication: 'Lissome Pokémon', - defense: 37, - hp: 71, - japaneseName: 'Pheroacheフェローチェ', - name: 'Pheromosa', - id: 795, - generation: 7, - isLegendary: false, - types: ['bug', 'fighting'], - }, - { - abilities: ['Beast Boost'], - attack: 89, - classfication: 'Glowing Pokémon', - defense: 71, - hp: 83, - japaneseName: 'Denjyumokuデンジュモク', - name: 'Xurkitree', - id: 796, - generation: 7, - isLegendary: false, - types: ['electric'], - }, - { - abilities: ['Beast Boost'], - attack: 101, - classfication: 'Launch Pokémon', - defense: 103, - hp: 97, - japaneseName: 'Tekkaguyaテッカグヤ', - name: 'Celesteela', - id: 797, - generation: 7, - isLegendary: false, - types: ['steel', 'flying'], - }, - { - abilities: ['Beast Boost'], - attack: 181, - classfication: 'Drawn Sword Pokémon', - defense: 131, - hp: 59, - japaneseName: 'Kamiturugiカミツルギ', - name: 'Kartana', - id: 798, - generation: 7, - isLegendary: false, - types: ['grass', 'steel'], - }, - { - abilities: ['Beast Boost'], - attack: 101, - classfication: 'Junkivore Pokémon', - defense: 53, - hp: 223, - japaneseName: 'Akuzikingアクジキング', - name: 'Guzzlord', - id: 799, - generation: 7, - isLegendary: false, - types: ['dark', 'dragon'], - }, - { - abilities: ['Prism Armor'], - attack: 107, - classfication: 'Prism Pokémon', - defense: 101, - hp: 97, - japaneseName: 'Necrozmaネクロズマ', - name: 'Necrozma', - id: 800, - generation: 7, - isLegendary: false, - types: ['psychic'], - }, - { - abilities: ['Soul-Heart'], - attack: 95, - classfication: 'Artificial Pokémon', - defense: 115, - hp: 80, - japaneseName: 'Magearnaマギアナ', - name: 'Magearna', - id: 801, - generation: 7, - isLegendary: false, - types: ['steel', 'fairy'], - }, -]; diff --git a/src/types/Pokemon.d.ts b/src/types/Pokemon.d.ts new file mode 100644 index 0000000..1143fcb --- /dev/null +++ b/src/types/Pokemon.d.ts @@ -0,0 +1,13 @@ +export interface Pokemon { + abilities: string[] + attack: number + classfication: string + defense: number + hp: number + japaneseName: string + name: string + id: number + generation: number + isLegendary: boolean + types: string[] +} diff --git a/tests/datasets/pokemon.spec.ts b/tests/datasets/pokemon.spec.ts new file mode 100644 index 0000000..e69de29 diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..22ebe49 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,909 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +ansi-colors@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-styles@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +array.prototype.map@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.2.tgz#9a4159f416458a23e9483078de1106b2ef68f8ec" + integrity sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + es-array-method-boxes-properly "^1.0.0" + is-string "^1.0.4" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +binary-extensions@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" + integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +chalk@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chokidar@3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d" + integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.4.0" + optionalDependencies: + fsevents "~2.1.2" + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +commander@^2.17.1: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +debug@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +diff@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +drange@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/drange/-/drange-1.1.1.tgz#b2aecec2aab82fcef11dbbd7b9e32b83f8f6c0b8" + integrity sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA== + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +es-abstract@^1.17.0-next.1, es-abstract@^1.17.4, es-abstract@^1.17.5: + version "1.17.7" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" + integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== + dependencies: + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + is-callable "^1.2.2" + is-regex "^1.1.1" + object-inspect "^1.8.0" + object-keys "^1.1.1" + object.assign "^4.1.1" + string.prototype.trimend "^1.0.1" + string.prototype.trimstart "^1.0.1" + +es-abstract@^1.18.0-next.0: + version "1.18.0-next.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" + integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== + dependencies: + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + is-callable "^1.2.2" + is-negative-zero "^2.0.0" + is-regex "^1.1.1" + object-inspect "^1.8.0" + object-keys "^1.1.1" + object.assign "^4.1.1" + string.prototype.trimend "^1.0.1" + string.prototype.trimstart "^1.0.1" + +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-get-iterator@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8" + integrity sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ== + dependencies: + es-abstract "^1.17.4" + has-symbols "^1.0.1" + is-arguments "^1.0.4" + is-map "^2.0.1" + is-set "^2.0.1" + is-string "^1.0.5" + isarray "^2.0.5" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escape-string-regexp@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +flat@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/flat/-/flat-4.1.0.tgz#090bec8b05e39cba309747f1d588f04dbaf98db2" + integrity sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw== + dependencies: + is-buffer "~2.0.3" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@~2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" + integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.0, has-symbols@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +he@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-arguments@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" + integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" + integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== + +is-callable@^1.1.4, is-callable@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" + integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== + +is-date-object@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" + integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-map@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1" + integrity sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw== + +is-negative-zero@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz#9553b121b0fac28869da9ed459e20c7543788461" + integrity sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE= + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + +is-regex@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" + integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== + dependencies: + has-symbols "^1.0.1" + +is-set@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" + integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== + +is-string@^1.0.4, is-string@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== + +is-symbol@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + dependencies: + has-symbols "^1.0.1" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +iterate-iterator@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6" + integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw== + +iterate-value@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57" + integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ== + dependencies: + es-get-iterator "^1.0.2" + iterate-iterator "^1.0.1" + +js-yaml@3.14.0: + version "3.14.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" + integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +log-symbols@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" + integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== + dependencies: + chalk "^4.0.0" + +lorem-ipsum@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/lorem-ipsum/-/lorem-ipsum-2.0.3.tgz#9f1fa634780c9f58a349d4e091c3ba74f733164e" + integrity sha512-CX2r84DMWjW/DWiuzicTI9aRaJPAw2cvAGMJYZh/nx12OkTGqloj8y8FU0S8ZkKwOdqhfxEA6Ly8CW2P6Yxjwg== + dependencies: + commander "^2.17.1" + +minimatch@3.0.4, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +mocha@^8.1.3: + version "8.1.3" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.1.3.tgz#5e93f873e35dfdd69617ea75f9c68c2ca61c2ac5" + integrity sha512-ZbaYib4hT4PpF4bdSO2DohooKXIn4lDeiYqB+vTmCdr6l2woW0b6H3pf5x4sM5nwQMru9RvjjHYWVGltR50ZBw== + dependencies: + ansi-colors "4.1.1" + browser-stdout "1.3.1" + chokidar "3.4.2" + debug "4.1.1" + diff "4.0.2" + escape-string-regexp "4.0.0" + find-up "5.0.0" + glob "7.1.6" + growl "1.10.5" + he "1.2.0" + js-yaml "3.14.0" + log-symbols "4.0.0" + minimatch "3.0.4" + ms "2.1.2" + object.assign "4.1.0" + promise.allsettled "1.0.2" + serialize-javascript "4.0.0" + strip-json-comments "3.0.1" + supports-color "7.1.0" + which "2.0.2" + wide-align "1.1.3" + workerpool "6.0.0" + yargs "13.3.2" + yargs-parser "13.1.2" + yargs-unparser "1.6.1" + +ms@2.1.2, ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +object-inspect@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" + integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== + +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.1" + has-symbols "^1.0.0" + object-keys "^1.0.11" + +object.assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd" + integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.18.0-next.0" + has-symbols "^1.0.1" + object-keys "^1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +p-limit@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe" + integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg== + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== + +promise.allsettled@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.2.tgz#d66f78fbb600e83e863d893e98b3d4376a9c47c9" + integrity sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg== + dependencies: + array.prototype.map "^1.0.1" + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + function-bind "^1.1.1" + iterate-value "^1.0.0" + +randexp@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.5.3.tgz#f31c2de3148b30bdeb84b7c3f59b0ebb9fec3738" + integrity sha512-U+5l2KrcMNOUPYvazA3h5ekF80FHTUG+87SEAmHZmolh1M+i/WyTCxVzmi+tidIa1tM4BSe8g2Y/D3loWDjj+w== + dependencies: + drange "^1.0.2" + ret "^0.2.0" + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +readdirp@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" + integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== + dependencies: + picomatch "^2.2.1" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +ret@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.2.2.tgz#b6861782a1f4762dce43402a71eb7a283f44573c" + integrity sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ== + +safe-buffer@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +serialize-javascript@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + dependencies: + randombytes "^2.1.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +"string-width@^1.0.2 || 2": + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string.prototype.trimend@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" + integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.trimstart@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" + integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-json-comments@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" + integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== + +supports-color@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +typescript@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.3.tgz#153bbd468ef07725c1df9c77e8b453f8d36abba5" + integrity sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg== + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +workerpool@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.0.0.tgz#85aad67fa1a2c8ef9386a1b43539900f61d03d58" + integrity sha512-fU2OcNA/GVAJLLyKUoHkAgIhKb0JoCpSjLC/G2vYKxUjVmQwGbRVeoPJ1a8U4pnVofz4AQV5Y/NEw8oKqxEBtA== + +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + +yargs-parser@13.1.2, yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" + integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-unparser@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.1.tgz#bd4b0ee05b4c94d058929c32cb09e3fce71d3c5f" + integrity sha512-qZV14lK9MWsGCmcr7u5oXGH0dbGqZAIxTDrWXZDo5zUr6b6iUmelNKO6x6R1dQT24AH3LgRxJpr8meWy2unolA== + dependencies: + camelcase "^5.3.1" + decamelize "^1.2.0" + flat "^4.1.0" + is-plain-obj "^1.1.0" + yargs "^14.2.3" + +yargs@13.3.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.2" + +yargs@^14.2.3: + version "14.2.3" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" + integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== + dependencies: + cliui "^5.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^15.0.1"