diff --git a/.gitignore b/.gitignore index 65ca5ca2..9e7b6a04 100644 --- a/.gitignore +++ b/.gitignore @@ -125,3 +125,6 @@ static/locales/* # No docker-compose.yml files docker-compose.yml + +# Ignore Masterfile +masterfile.json \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index f2bb7b78..63f34fef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mapjs", - "version": "1.9.2", + "version": "1.10.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1294,10 +1294,6 @@ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" }, - "pogo-translations": { - "version": "git+https://github.com/bschultz/pogo-translations.git#df73839fcfce17e4b599358af242ad039c80a9a6", - "from": "git+https://github.com/bschultz/pogo-translations.git" - }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", diff --git a/package.json b/package.json index 45ab4a99..9c7e6827 100644 --- a/package.json +++ b/package.json @@ -6,11 +6,12 @@ "scripts": { "convert": "node src/geofenceToGeoJSON.js", "convert-poracle": "node src/poracleToGeoJSON.js", - "create-locales": "node src/createLocales.js", + "create-locales": "node -e 'require(\"./src/createLocales\").locales()'", + "generate": "node -e 'require(\"./src/generateMasterfile\").generate()'", "start": "node src/index.js", "test": "npx eslint src/ --ext .js,.jsx,.ts,.tsx", "test-fix": "npx eslint src/ --ext .js,.jsx,.ts,.tsx --fix", - "update": "npm install && npm update pogo-translations && npm run create-locales" + "update": "npm install && npm run generate && npm run create-locales" }, "repository": { "type": "git", @@ -39,7 +40,6 @@ "mustache-express": "^1.3.0", "mysql": "^2.18.1", "nodes2ts": "^2.0.0", - "pogo-translations": "git+https://github.com/bschultz/pogo-translations.git", "require-from-string": "^2.0.2", "sanitizer": "^0.1.3" } diff --git a/src/createLocales.js b/src/createLocales.js index 8eeffb3a..2dfe25e9 100644 --- a/src/createLocales.js +++ b/src/createLocales.js @@ -2,52 +2,44 @@ const fs = require('fs'); const path = require('path'); +const axios = require('axios'); const appLocalesFolder = path.resolve(__dirname, '../static/locales'); -const pogoLocalesFolder = path.resolve(__dirname, '../node_modules/pogo-translations/static/locales'); -fs.readdir(appLocalesFolder, (err, files) => { - let pogoLocalesFiles = []; - - if (fs.existsSync(pogoLocalesFolder)) { - pogoLocalesFiles = fs.readdirSync(pogoLocalesFolder); - } - - files.filter(file => { return file.startsWith('_'); }).forEach(file => { - const locale = path.basename(file, '.json').replace('_', ''); - const localeFile = locale + '.json'; - let translations = {}; - - console.log('Creating locale', locale); - - if (pogoLocalesFiles.includes(localeFile)) { - console.log('Found pogo-translations for locale', locale); - - const pogoTranslations = fs.readFileSync( - path.resolve(pogoLocalesFolder, localeFile), - { encoding: 'utf8', flag: 'r' } +module.exports.locales = async function locales() { + const localTranslations = await fs.promises.readdir(appLocalesFolder); + const englishRef = fs.readFileSync(path.resolve(appLocalesFolder, '_en.json'), { encoding: 'utf8', flag: 'r' }); + + await Promise.all(localTranslations.map(async locale => { + if (locale.startsWith('_')) { + const mapJsTranslations = fs.readFileSync(path.resolve(appLocalesFolder, locale), { encoding: 'utf8', flag: 'r' }); + const baseName = locale.replace('.json', '').replace('_', ''); + const trimmedRemoteFiles = {}; + + try { + const { data } = await axios.get(`https://raw.githubusercontent.com/WatWowMap/pogo-translations/master/static/locales/${baseName}.json`); + + Object.keys(data).forEach(key => { + if (!key.startsWith('desc_') && !key.startsWith('pokemon_category_')) { + trimmedRemoteFiles[key] = data[key]; + } + }); + } catch (e) { + console.warn(e, '\n', locale); + } + + const finalTranslations = { + ...JSON.parse(englishRef), + ...JSON.parse(mapJsTranslations), + ...trimmedRemoteFiles, + }; + fs.writeFile( + path.resolve(appLocalesFolder, `${baseName}.json`), + JSON.stringify(finalTranslations, null, 2), + 'utf8', + () => { }, ); - translations = JSON.parse(pogoTranslations.toString()); + console.log('localeFile', 'file saved.'); } - - if (locale !== 'en') { - // include en as fallback first - const appTransFallback = fs.readFileSync( - path.resolve(appLocalesFolder, '_en.json'), - { encoding: 'utf8', flag: 'r' } - ); - translations = Object.assign(translations, JSON.parse(appTransFallback.toString())); - } - - const appTranslations = fs.readFileSync(path.resolve(appLocalesFolder, file), { encoding: 'utf8', flag: 'r' }); - translations = Object.assign(translations, JSON.parse(appTranslations.toString())); - - fs.writeFile( - path.resolve(appLocalesFolder, localeFile), - JSON.stringify(translations, null, 2), - 'utf8', - () => {} - ); - console.log(localeFile, 'file saved.'); - }); -}); + })); +}; diff --git a/src/generateMasterfile.js b/src/generateMasterfile.js new file mode 100644 index 00000000..8613b1da --- /dev/null +++ b/src/generateMasterfile.js @@ -0,0 +1,18 @@ +const fs = require('fs'); +const axios = require('axios'); + +module.exports.generate = async function generate() { + try { + const { data } = await axios.get('https://raw.githubusercontent.com/WatWowMap/Masterfile-Generator/master/master-latest.json'); + + fs.writeFile( + 'static/data/masterfile.json', + JSON.stringify(data, null, 2), + 'utf8', + () => { }, + ); + console.log('New masterfile generated'); + } catch (e) { + console.warn('Unable to generate new masterfile, using existing.'); + } +}; diff --git a/static/data/masterfile.json b/static/data/masterfile.json deleted file mode 100644 index e7904548..00000000 --- a/static/data/masterfile.json +++ /dev/null @@ -1,44887 +0,0 @@ -{ - "pokemon": { - "1": { - "name": "Bulbasaur", - "forms": { - "163": { - "name": "Normal", - "proto": "BULBASAUR_NORMAL", - "evolutions": [ - { - "pokemon": 2, - "form": 166 - } - ] - }, - "164": { - "name": "Shadow", - "proto": "BULBASAUR_SHADOW", - "evolutions": [ - { - "pokemon": 2, - "form": 167 - } - ] - }, - "165": { - "name": "Purified", - "proto": "BULBASAUR_PURIFIED", - "evolutions": [ - { - "pokemon": 2, - "form": 168 - } - ] - }, - "897": { - "name": "Fall 2019", - "proto": "BULBASAUR_FALL_2019" - } - }, - "default_form_id": 163, - "pokedex_id": 1, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 118, - "defense": 111, - "stamina": 128, - "height": 0.7, - "weight": 6.9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Vine Whip", - "Tackle" - ], - "charged_moves": [ - "Sludge Bomb", - "Seed Bomb", - "Power Whip" - ], - "evolutions": [ - { - "pokemon": 2, - "form": 166 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 1, - "little": true - }, - "2": { - "name": "Ivysaur", - "forms": { - "166": { - "name": "Normal", - "proto": "IVYSAUR_NORMAL", - "evolutions": [ - { - "pokemon": 3, - "form": 169 - } - ] - }, - "167": { - "name": "Shadow", - "proto": "IVYSAUR_SHADOW", - "evolutions": [ - { - "pokemon": 3, - "form": 170 - } - ] - }, - "168": { - "name": "Purified", - "proto": "IVYSAUR_PURIFIED", - "evolutions": [ - { - "pokemon": 3, - "form": 171 - } - ] - } - }, - "default_form_id": 166, - "pokedex_id": 2, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 151, - "defense": 143, - "stamina": 155, - "height": 1, - "weight": 13, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Razor Leaf", - "Vine Whip" - ], - "charged_moves": [ - "Sludge Bomb", - "Solar Beam", - "Power Whip" - ], - "evolutions": [ - { - "pokemon": 3, - "form": 169 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 1 - }, - "3": { - "name": "Venusaur", - "forms": { - "169": { - "name": "Normal", - "proto": "VENUSAUR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "170": { - "name": "Shadow", - "proto": "VENUSAUR_SHADOW" - }, - "171": { - "name": "Purified", - "proto": "VENUSAUR_PURIFIED", - "temp_evolutions": { - "1": {} - } - }, - "950": { - "name": "Copy 2019", - "proto": "VENUSAUR_COPY_2019" - } - }, - "default_form_id": 169, - "pokedex_id": 3, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 198, - "defense": 189, - "stamina": 190, - "height": 2, - "weight": 100, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Razor Leaf", - "Vine Whip" - ], - "charged_moves": [ - "Sludge Bomb", - "Petal Blizzard", - "Solar Beam" - ], - "temp_evolutions": { - "1": { - "attack": 241, - "defense": 246, - "stamina": 190, - "height": 2.4, - "weight": 155.5 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 1 - }, - "4": { - "name": "Charmander", - "forms": { - "172": { - "name": "Normal", - "proto": "CHARMANDER_NORMAL", - "evolutions": [ - { - "pokemon": 5, - "form": 175 - } - ] - }, - "173": { - "name": "Shadow", - "proto": "CHARMANDER_SHADOW", - "evolutions": [ - { - "pokemon": 5, - "form": 176 - } - ] - }, - "174": { - "name": "Purified", - "proto": "CHARMANDER_PURIFIED", - "evolutions": [ - { - "pokemon": 5, - "form": 177 - } - ] - }, - "896": { - "name": "Fall 2019", - "proto": "CHARMANDER_FALL_2019" - } - }, - "default_form_id": 172, - "pokedex_id": 4, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 116, - "defense": 93, - "stamina": 118, - "height": 0.6, - "weight": 8.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Ember", - "Scratch" - ], - "charged_moves": [ - "Flame Charge", - "Flame Burst", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 5, - "form": 175 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 4, - "little": true - }, - "5": { - "name": "Charmeleon", - "forms": { - "175": { - "name": "Normal", - "proto": "CHARMELEON_NORMAL", - "evolutions": [ - { - "pokemon": 6, - "form": 178 - } - ] - }, - "176": { - "name": "Shadow", - "proto": "CHARMELEON_SHADOW", - "evolutions": [ - { - "pokemon": 6, - "form": 179 - } - ] - }, - "177": { - "name": "Purified", - "proto": "CHARMELEON_PURIFIED", - "evolutions": [ - { - "pokemon": 6, - "form": 180 - } - ] - } - }, - "default_form_id": 175, - "pokedex_id": 5, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 158, - "defense": 126, - "stamina": 151, - "height": 1.1, - "weight": 19, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Ember", - "Fire Fang" - ], - "charged_moves": [ - "Fire Punch", - "Flame Burst", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 6, - "form": 178 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 4 - }, - "6": { - "name": "Charizard", - "forms": { - "178": { - "name": "Normal", - "proto": "CHARIZARD_NORMAL", - "temp_evolutions": { - "2": {}, - "3": {} - } - }, - "179": { - "name": "Shadow", - "proto": "CHARIZARD_SHADOW" - }, - "180": { - "name": "Purified", - "proto": "CHARIZARD_PURIFIED", - "temp_evolutions": { - "2": {}, - "3": {} - } - }, - "951": { - "name": "Copy 2019", - "proto": "CHARIZARD_COPY_2019" - } - }, - "default_form_id": 178, - "pokedex_id": 6, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire", - "Flying" - ], - "attack": 223, - "defense": 173, - "stamina": 186, - "height": 1.7, - "weight": 90.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Fire Spin", - "Air Slash" - ], - "charged_moves": [ - "Fire Blast", - "Dragon Claw", - "Overheat" - ], - "temp_evolutions": { - "2": { - "attack": 273, - "defense": 213, - "stamina": 186, - "weight": 110.5, - "types": [ - "Fire", - "Dragon" - ] - }, - "3": { - "attack": 319, - "defense": 212, - "stamina": 186, - "weight": 100.5 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 4 - }, - "7": { - "name": "Squirtle", - "forms": { - "181": { - "name": "Normal", - "proto": "SQUIRTLE_NORMAL", - "evolutions": [ - { - "pokemon": 8, - "form": 184 - } - ] - }, - "182": { - "name": "Shadow", - "proto": "SQUIRTLE_SHADOW", - "evolutions": [ - { - "pokemon": 8, - "form": 185 - } - ] - }, - "183": { - "name": "Purified", - "proto": "SQUIRTLE_PURIFIED", - "evolutions": [ - { - "pokemon": 8, - "form": 186 - } - ] - }, - "895": { - "name": "Fall 2019", - "proto": "SQUIRTLE_FALL_2019" - } - }, - "default_form_id": 181, - "pokedex_id": 7, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 94, - "defense": 121, - "stamina": 127, - "height": 0.5, - "weight": 9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Bubble", - "Tackle" - ], - "charged_moves": [ - "Aqua Jet", - "Aqua Tail", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 8, - "form": 184 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 7, - "little": true - }, - "8": { - "name": "Wartortle", - "forms": { - "184": { - "name": "Normal", - "proto": "WARTORTLE_NORMAL", - "evolutions": [ - { - "pokemon": 9, - "form": 187 - } - ] - }, - "185": { - "name": "Shadow", - "proto": "WARTORTLE_SHADOW", - "evolutions": [ - { - "pokemon": 9, - "form": 188 - } - ] - }, - "186": { - "name": "Purified", - "proto": "WARTORTLE_PURIFIED", - "evolutions": [ - { - "pokemon": 9, - "form": 189 - } - ] - } - }, - "default_form_id": 184, - "pokedex_id": 8, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 126, - "defense": 155, - "stamina": 153, - "height": 1, - "weight": 22.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Water Gun", - "Bite" - ], - "charged_moves": [ - "Aqua Jet", - "Ice Beam", - "Hydro Pump" - ], - "evolutions": [ - { - "pokemon": 9, - "form": 187 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 7 - }, - "9": { - "name": "Blastoise", - "forms": { - "187": { - "name": "Normal", - "proto": "BLASTOISE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "188": { - "name": "Shadow", - "proto": "BLASTOISE_SHADOW" - }, - "189": { - "name": "Purified", - "proto": "BLASTOISE_PURIFIED", - "temp_evolutions": { - "1": {} - } - }, - "952": { - "name": "Copy 2019", - "proto": "BLASTOISE_COPY_2019" - } - }, - "default_form_id": 187, - "pokedex_id": 9, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 171, - "defense": 207, - "stamina": 188, - "height": 1.6, - "weight": 85.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Water Gun", - "Bite" - ], - "charged_moves": [ - "Flash Cannon", - "Ice Beam", - "Hydro Pump", - "Skull Bash" - ], - "temp_evolutions": { - "1": { - "attack": 264, - "defense": 237, - "stamina": 188, - "weight": 101.1 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 7 - }, - "10": { - "name": "Caterpie", - "forms": { - "953": { - "name": "Normal", - "proto": "CATERPIE_NORMAL" - }, - "954": { - "name": "Shadow", - "proto": "CATERPIE_SHADOW" - }, - "955": { - "name": "Purified", - "proto": "CATERPIE_PURIFIED" - } - }, - "default_form_id": 953, - "pokedex_id": 10, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug" - ], - "attack": 55, - "defense": 55, - "stamina": 128, - "height": 0.3, - "weight": 2.9, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Bug Bite", - "Tackle" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 11 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 10, - "little": true - }, - "11": { - "name": "Metapod", - "forms": { - "956": { - "name": "Normal", - "proto": "METAPOD_NORMAL" - }, - "957": { - "name": "Shadow", - "proto": "METAPOD_SHADOW" - }, - "958": { - "name": "Purified", - "proto": "METAPOD_PURIFIED" - } - }, - "default_form_id": 956, - "pokedex_id": 11, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug" - ], - "attack": 45, - "defense": 80, - "stamina": 137, - "height": 0.7, - "weight": 9.9, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Bug Bite", - "Tackle" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 12 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 10 - }, - "12": { - "name": "Butterfree", - "forms": { - "959": { - "name": "Normal", - "proto": "BUTTERFREE_NORMAL" - }, - "960": { - "name": "Shadow", - "proto": "BUTTERFREE_SHADOW" - }, - "961": { - "name": "Purified", - "proto": "BUTTERFREE_PURIFIED" - } - }, - "default_form_id": 959, - "pokedex_id": 12, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Flying" - ], - "attack": 167, - "defense": 137, - "stamina": 155, - "height": 1.1, - "weight": 32, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Struggle Bug", - "Confusion" - ], - "charged_moves": [ - "Bug Buzz", - "Psychic", - "Signal Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 10 - }, - "13": { - "name": "Weedle", - "forms": { - "616": { - "name": "Normal", - "proto": "WEEDLE_NORMAL", - "evolutions": [ - { - "pokemon": 14, - "form": 619 - } - ] - }, - "617": { - "name": "Shadow", - "proto": "WEEDLE_SHADOW", - "evolutions": [ - { - "pokemon": 14, - "form": 620 - } - ] - }, - "618": { - "name": "Purified", - "proto": "WEEDLE_PURIFIED", - "evolutions": [ - { - "pokemon": 14, - "form": 621 - } - ] - } - }, - "default_form_id": 616, - "pokedex_id": 13, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Poison" - ], - "attack": 63, - "defense": 50, - "stamina": 120, - "height": 0.3, - "weight": 3.2, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Bug Bite", - "Poison Sting" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 14, - "form": 619 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 13, - "little": true - }, - "14": { - "name": "Kakuna", - "forms": { - "619": { - "name": "Normal", - "proto": "KAKUNA_NORMAL", - "evolutions": [ - { - "pokemon": 15, - "form": 622 - } - ] - }, - "620": { - "name": "Shadow", - "proto": "KAKUNA_SHADOW", - "evolutions": [ - { - "pokemon": 15, - "form": 623 - } - ] - }, - "621": { - "name": "Purified", - "proto": "KAKUNA_PURIFIED", - "evolutions": [ - { - "pokemon": 15, - "form": 624 - } - ] - } - }, - "default_form_id": 619, - "pokedex_id": 14, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Poison" - ], - "attack": 46, - "defense": 75, - "stamina": 128, - "height": 0.6, - "weight": 10, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Bug Bite", - "Poison Sting" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 15, - "form": 622 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 13 - }, - "15": { - "name": "Beedrill", - "forms": { - "622": { - "name": "Normal", - "proto": "BEEDRILL_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "623": { - "name": "Shadow", - "proto": "BEEDRILL_SHADOW" - }, - "624": { - "name": "Purified", - "proto": "BEEDRILL_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 622, - "pokedex_id": 15, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Poison" - ], - "attack": 169, - "defense": 130, - "stamina": 163, - "height": 1, - "weight": 29.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Infestation", - "Poison Jab" - ], - "charged_moves": [ - "Sludge Bomb", - "Aerial Ace", - "X Scissor", - "Fell Stinger" - ], - "temp_evolutions": { - "1": { - "attack": 303, - "defense": 148, - "stamina": 163, - "height": 1.4, - "weight": 40.5 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 13 - }, - "16": { - "name": "Pidgey", - "forms": { - "962": { - "name": "Normal", - "proto": "PIDGEY_NORMAL" - }, - "963": { - "name": "Shadow", - "proto": "PIDGEY_SHADOW" - }, - "964": { - "name": "Purified", - "proto": "PIDGEY_PURIFIED" - } - }, - "default_form_id": 962, - "pokedex_id": 16, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 85, - "defense": 73, - "stamina": 120, - "height": 0.3, - "weight": 1.8, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Quick Attack", - "Tackle" - ], - "charged_moves": [ - "Twister", - "Aerial Ace", - "Air Cutter" - ], - "evolutions": [ - { - "pokemon": 17 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 16, - "little": true - }, - "17": { - "name": "Pidgeotto", - "forms": { - "965": { - "name": "Normal", - "proto": "PIDGEOTTO_NORMAL" - }, - "966": { - "name": "Shadow", - "proto": "PIDGEOTTO_SHADOW" - }, - "967": { - "name": "Purified", - "proto": "PIDGEOTTO_PURIFIED" - } - }, - "default_form_id": 965, - "pokedex_id": 17, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 117, - "defense": 105, - "stamina": 160, - "height": 1.1, - "weight": 30, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Wing Attack", - "Steel Wing" - ], - "charged_moves": [ - "Twister", - "Aerial Ace", - "Air Cutter" - ], - "evolutions": [ - { - "pokemon": 18 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 16 - }, - "18": { - "name": "Pidgeot", - "forms": { - "968": { - "name": "Normal", - "proto": "PIDGEOT_NORMAL" - }, - "969": { - "name": "Shadow", - "proto": "PIDGEOT_SHADOW" - }, - "970": { - "name": "Purified", - "proto": "PIDGEOT_PURIFIED" - } - }, - "default_form_id": 968, - "pokedex_id": 18, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 166, - "defense": 154, - "stamina": 195, - "height": 1.5, - "weight": 39.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Air Slash", - "Steel Wing" - ], - "charged_moves": [ - "Hurricane", - "Aerial Ace", - "Brave Bird", - "Feather Dance" - ], - "temp_evolutions": { - "1": { - "attack": 280, - "defense": 175, - "stamina": 195, - "height": 2.2, - "weight": 50.5 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 16 - }, - "19": { - "name": "Rattata", - "forms": { - "45": { - "name": "Normal", - "proto": "RATTATA_NORMAL", - "evolutions": [ - { - "pokemon": 20, - "form": 47 - } - ] - }, - "46": { - "name": "Alola", - "proto": "RATTATA_ALOLA", - "evolutions": [ - { - "pokemon": 20, - "form": 48 - } - ], - "height": 0.3, - "weight": 3.8, - "charged_moves": [ - "Crunch", - "Hyper Fang", - "Shadow Ball" - ], - "types": [ - "Dark", - "Normal" - ] - }, - "153": { - "name": "Shadow", - "proto": "RATTATA_SHADOW", - "evolutions": [ - { - "pokemon": 20, - "form": 155 - } - ] - }, - "154": { - "name": "Purified", - "proto": "RATTATA_PURIFIED", - "evolutions": [ - { - "pokemon": 20, - "form": 156 - } - ] - } - }, - "default_form_id": 45, - "pokedex_id": 19, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 103, - "defense": 70, - "stamina": 102, - "height": 0.3, - "weight": 3.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Quick Attack" - ], - "charged_moves": [ - "Dig", - "Hyper Fang", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 20, - "form": 47 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 19, - "little": true - }, - "20": { - "name": "Raticate", - "forms": { - "47": { - "name": "Normal", - "proto": "RATICATE_NORMAL" - }, - "48": { - "name": "Alola", - "proto": "RATICATE_ALOLA", - "attack": 135, - "defense": 154, - "stamina": 181, - "height": 0.7, - "weight": 25.5, - "charged_moves": [ - "Crunch", - "Hyper Fang", - "Hyper Beam" - ], - "types": [ - "Dark", - "Normal" - ] - }, - "155": { - "name": "Shadow", - "proto": "RATICATE_SHADOW" - }, - "156": { - "name": "Purified", - "proto": "RATICATE_PURIFIED" - }, - "2329": { - "name": "Spring 2020", - "proto": "RATICATE_SPRING_2020" - } - }, - "default_form_id": 47, - "pokedex_id": 20, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 161, - "defense": 139, - "stamina": 146, - "height": 0.7, - "weight": 18.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Quick Attack" - ], - "charged_moves": [ - "Dig", - "Hyper Fang", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 19 - }, - "21": { - "name": "Spearow", - "forms": { - "971": { - "name": "Normal", - "proto": "SPEAROW_NORMAL" - }, - "972": { - "name": "Shadow", - "proto": "SPEAROW_SHADOW" - }, - "973": { - "name": "Purified", - "proto": "SPEAROW_PURIFIED" - } - }, - "default_form_id": 971, - "pokedex_id": 21, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 112, - "defense": 60, - "stamina": 120, - "height": 0.3, - "weight": 2, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Quick Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Drill Peck", - "Sky Attack" - ], - "evolutions": [ - { - "pokemon": 22 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 21, - "little": true - }, - "22": { - "name": "Fearow", - "forms": { - "974": { - "name": "Normal", - "proto": "FEAROW_NORMAL" - }, - "975": { - "name": "Shadow", - "proto": "FEAROW_SHADOW" - }, - "976": { - "name": "Purified", - "proto": "FEAROW_PURIFIED" - } - }, - "default_form_id": 974, - "pokedex_id": 22, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 182, - "defense": 133, - "stamina": 163, - "height": 1.2, - "weight": 38, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Steel Wing" - ], - "charged_moves": [ - "Aerial Ace", - "Drill Run", - "Sky Attack" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 21 - }, - "23": { - "name": "Ekans", - "forms": { - "697": { - "name": "Normal", - "proto": "EKANS_NORMAL", - "evolutions": [ - { - "pokemon": 24, - "form": 700 - } - ] - }, - "698": { - "name": "Shadow", - "proto": "EKANS_SHADOW", - "evolutions": [ - { - "pokemon": 24, - "form": 701 - } - ] - }, - "699": { - "name": "Purified", - "proto": "EKANS_PURIFIED", - "evolutions": [ - { - "pokemon": 24, - "form": 702 - } - ] - } - }, - "default_form_id": 697, - "pokedex_id": 23, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 110, - "defense": 97, - "stamina": 111, - "height": 2, - "weight": 6.9, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Poison Sting", - "Acid" - ], - "charged_moves": [ - "Wrap", - "Poison Fang", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 24, - "form": 700 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 23, - "little": true - }, - "24": { - "name": "Arbok", - "forms": { - "700": { - "name": "Normal", - "proto": "ARBOK_NORMAL" - }, - "701": { - "name": "Shadow", - "proto": "ARBOK_SHADOW" - }, - "702": { - "name": "Purified", - "proto": "ARBOK_PURIFIED" - } - }, - "default_form_id": 700, - "pokedex_id": 24, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 167, - "defense": 153, - "stamina": 155, - "height": 3.5, - "weight": 65, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Acid", - "Dragon Tail" - ], - "charged_moves": [ - "Dark Pulse", - "Sludge Wave", - "Gunk Shot", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 23 - }, - "25": { - "name": "Pikachu", - "forms": { - "598": { - "name": "Normal", - "proto": "PIKACHU_NORMAL", - "evolutions": [ - { - "pokemon": 26 - } - ] - }, - "894": { - "name": "Fall 2019", - "proto": "PIKACHU_FALL_2019" - }, - "901": { - "name": "Vs 2019", - "proto": "PIKACHU_VS_2019", - "quick_moves": [ - "Thunder Shock", - "Charm" - ], - "charged_moves": [ - "Flying Press", - "Thunder Punch", - "Play Rough" - ] - }, - "949": { - "name": "Copy 2019", - "proto": "PIKACHU_COPY_2019" - }, - "977": { - "name": "Shadow", - "proto": "PIKACHU_SHADOW" - }, - "978": { - "name": "Purified", - "proto": "PIKACHU_PURIFIED" - }, - "2332": { - "name": "Costume 2020", - "proto": "PIKACHU_COSTUME_2020", - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Wild Charge", - "Fly" - ] - }, - "2669": { - "name": "Adventure Hat 2020", - "proto": "PIKACHU_ADVENTURE_HAT_2020" - }, - "2670": { - "name": "Winter 2020", - "proto": "PIKACHU_WINTER_2020" - }, - "2675": { - "name": "Kariyushi", - "proto": "PIKACHU_KARIYUSHI" - }, - "2676": { - "name": "Pop Star", - "proto": "PIKACHU_POP_STAR" - }, - "2677": { - "name": "Rock Star", - "proto": "PIKACHU_ROCK_STAR" - }, - "2678": { - "name": "Flying 5th Anniv", - "proto": "PIKACHU_FLYING_5TH_ANNIV" - } - }, - "default_form_id": 598, - "pokedex_id": 25, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 112, - "defense": 96, - "stamina": 111, - "height": 0.4, - "weight": 6, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Thunder Shock", - "Quick Attack" - ], - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Wild Charge" - ], - "evolutions": [ - { - "pokemon": 26 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 25 - }, - "26": { - "name": "Raichu", - "forms": { - "49": { - "name": "Normal", - "proto": "RAICHU_NORMAL" - }, - "50": { - "name": "Alola", - "proto": "RAICHU_ALOLA", - "attack": 201, - "defense": 154, - "stamina": 155, - "height": 0.7, - "weight": 21, - "quick_moves": [ - "Volt Switch", - "Spark", - "Thunder Shock" - ], - "charged_moves": [ - "Psychic", - "Thunder Punch", - "Wild Charge", - "Grass Knot" - ], - "types": [ - "Electric", - "Psychic" - ] - }, - "979": { - "name": "Shadow", - "proto": "RAICHU_SHADOW" - }, - "980": { - "name": "Purified", - "proto": "RAICHU_PURIFIED" - } - }, - "default_form_id": 49, - "pokedex_id": 26, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 193, - "defense": 151, - "stamina": 155, - "height": 0.8, - "weight": 30, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Volt Switch", - "Spark", - "Charm", - "Thunder Shock" - ], - "charged_moves": [ - "Brick Break", - "Thunder Punch", - "Wild Charge", - "Skull Bash" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 25 - }, - "27": { - "name": "Sandshrew", - "forms": { - "51": { - "name": "Normal", - "proto": "SANDSHREW_NORMAL", - "evolutions": [ - { - "pokemon": 28, - "form": 53 - } - ] - }, - "52": { - "name": "Alola", - "proto": "SANDSHREW_ALOLA", - "evolutions": [ - { - "pokemon": 28, - "form": 54 - } - ], - "attack": 125, - "defense": 129, - "stamina": 137, - "height": 0.7, - "weight": 40, - "quick_moves": [ - "Metal Claw", - "Powder Snow" - ], - "charged_moves": [ - "Blizzard", - "Gyro Ball", - "Night Slash" - ], - "types": [ - "Ice", - "Steel" - ] - }, - "673": { - "name": "Shadow", - "proto": "SANDSHREW_SHADOW", - "evolutions": [ - { - "pokemon": 28, - "form": 675 - } - ] - }, - "674": { - "name": "Purified", - "proto": "SANDSHREW_PURIFIED", - "evolutions": [ - { - "pokemon": 28, - "form": 676 - } - ] - } - }, - "default_form_id": 51, - "pokedex_id": 27, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 126, - "defense": 120, - "stamina": 137, - "height": 0.6, - "weight": 12, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Mud Shot" - ], - "charged_moves": [ - "Dig", - "Rock Slide", - "Sand Tomb" - ], - "evolutions": [ - { - "pokemon": 28, - "form": 53 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 27, - "little": true - }, - "28": { - "name": "Sandslash", - "forms": { - "53": { - "name": "Normal", - "proto": "SANDSLASH_NORMAL" - }, - "54": { - "name": "Alola", - "proto": "SANDSLASH_ALOLA", - "attack": 177, - "defense": 195, - "stamina": 181, - "height": 1.2, - "weight": 55, - "quick_moves": [ - "Metal Claw", - "Powder Snow" - ], - "charged_moves": [ - "Blizzard", - "Gyro Ball", - "Bulldoze", - "Ice Punch" - ], - "types": [ - "Ice", - "Steel" - ] - }, - "675": { - "name": "Shadow", - "proto": "SANDSLASH_SHADOW" - }, - "676": { - "name": "Purified", - "proto": "SANDSLASH_PURIFIED" - } - }, - "default_form_id": 53, - "pokedex_id": 28, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 182, - "defense": 175, - "stamina": 181, - "height": 1, - "weight": 29.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Metal Claw", - "Mud Shot" - ], - "charged_moves": [ - "Earthquake", - "Rock Tomb", - "Bulldoze" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 27 - }, - "29": { - "name": "Nidoran♀", - "forms": { - "776": { - "name": "Normal", - "proto": "NIDORAN_NORMAL", - "evolutions": [ - { - "pokemon": 30, - "form": 779 - } - ] - }, - "777": { - "name": "Shadow", - "proto": "NIDORAN_SHADOW", - "evolutions": [ - { - "pokemon": 30, - "form": 780 - } - ] - }, - "778": { - "name": "Purified", - "proto": "NIDORAN_PURIFIED", - "evolutions": [ - { - "pokemon": 30, - "form": 781 - } - ] - } - }, - "default_form_id": 776, - "pokedex_id": 29, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 86, - "defense": 89, - "stamina": 146, - "height": 0.4, - "weight": 7, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bite", - "Poison Sting" - ], - "charged_moves": [ - "Poison Fang", - "Body Slam", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 30, - "form": 779 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 29, - "little": true - }, - "30": { - "name": "Nidorina", - "forms": { - "779": { - "name": "Normal", - "proto": "NIDORINA_NORMAL", - "evolutions": [ - { - "pokemon": 31, - "form": 782 - } - ] - }, - "780": { - "name": "Shadow", - "proto": "NIDORINA_SHADOW", - "evolutions": [ - { - "pokemon": 31, - "form": 783 - } - ] - }, - "781": { - "name": "Purified", - "proto": "NIDORINA_PURIFIED", - "evolutions": [ - { - "pokemon": 31, - "form": 784 - } - ] - } - }, - "default_form_id": 779, - "pokedex_id": 30, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 117, - "defense": 120, - "stamina": 172, - "height": 0.8, - "weight": 20, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Bite", - "Poison Sting" - ], - "charged_moves": [ - "Poison Fang", - "Dig", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 31, - "form": 782 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 29 - }, - "31": { - "name": "Nidoqueen", - "forms": { - "782": { - "name": "Normal", - "proto": "NIDOQUEEN_NORMAL" - }, - "783": { - "name": "Shadow", - "proto": "NIDOQUEEN_SHADOW" - }, - "784": { - "name": "Purified", - "proto": "NIDOQUEEN_PURIFIED" - } - }, - "default_form_id": 782, - "pokedex_id": 31, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison", - "Ground" - ], - "attack": 180, - "defense": 173, - "stamina": 207, - "height": 1.3, - "weight": 60, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Poison Jab", - "Bite" - ], - "charged_moves": [ - "Earthquake", - "Sludge Wave", - "Stone Edge", - "Earth Power", - "Poison Fang" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 29 - }, - "32": { - "name": "Nidoran♂", - "forms": { - "776": { - "name": "Normal", - "proto": "NIDORAN_NORMAL", - "evolutions": [ - { - "pokemon": 33, - "form": 785 - } - ] - }, - "777": { - "name": "Shadow", - "proto": "NIDORAN_SHADOW", - "evolutions": [ - { - "pokemon": 33, - "form": 786 - } - ] - }, - "778": { - "name": "Purified", - "proto": "NIDORAN_PURIFIED", - "evolutions": [ - { - "pokemon": 33, - "form": 787 - } - ] - } - }, - "default_form_id": 776, - "pokedex_id": 32, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 105, - "defense": 76, - "stamina": 130, - "height": 0.5, - "weight": 9, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Poison Sting" - ], - "charged_moves": [ - "Horn Attack", - "Body Slam", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 33, - "form": 785 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 32, - "little": true - }, - "33": { - "name": "Nidorino", - "forms": { - "785": { - "name": "Normal", - "proto": "NIDORINO_NORMAL", - "evolutions": [ - { - "pokemon": 34, - "form": 788 - } - ] - }, - "786": { - "name": "Shadow", - "proto": "NIDORINO_SHADOW", - "evolutions": [ - { - "pokemon": 34, - "form": 789 - } - ] - }, - "787": { - "name": "Purified", - "proto": "NIDORINO_PURIFIED", - "evolutions": [ - { - "pokemon": 34, - "form": 790 - } - ] - } - }, - "default_form_id": 785, - "pokedex_id": 33, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 137, - "defense": 111, - "stamina": 156, - "height": 0.9, - "weight": 19.5, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Poison Jab", - "Poison Sting" - ], - "charged_moves": [ - "Horn Attack", - "Dig", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 34, - "form": 788 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 32 - }, - "34": { - "name": "Nidoking", - "forms": { - "788": { - "name": "Normal", - "proto": "NIDOKING_NORMAL" - }, - "789": { - "name": "Shadow", - "proto": "NIDOKING_SHADOW" - }, - "790": { - "name": "Purified", - "proto": "NIDOKING_PURIFIED" - } - }, - "default_form_id": 788, - "pokedex_id": 34, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison", - "Ground" - ], - "attack": 204, - "defense": 156, - "stamina": 191, - "height": 1.4, - "weight": 62, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Poison Jab", - "Iron Tail" - ], - "charged_moves": [ - "Earthquake", - "Sludge Wave", - "Megahorn", - "Earth Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 32 - }, - "35": { - "name": "Clefairy", - "forms": { - "981": { - "name": "Normal", - "proto": "CLEFAIRY_NORMAL" - }, - "982": { - "name": "Shadow", - "proto": "CLEFAIRY_SHADOW" - }, - "983": { - "name": "Purified", - "proto": "CLEFAIRY_PURIFIED" - } - }, - "default_form_id": 981, - "pokedex_id": 35, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fairy" - ], - "attack": 107, - "defense": 108, - "stamina": 172, - "height": 0.6, - "weight": 7.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Disarming Voice", - "Body Slam", - "Moonblast" - ], - "evolutions": [ - { - "pokemon": 36 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 35 - }, - "36": { - "name": "Clefable", - "forms": { - "984": { - "name": "Normal", - "proto": "CLEFABLE_NORMAL" - }, - "985": { - "name": "Shadow", - "proto": "CLEFABLE_SHADOW" - }, - "986": { - "name": "Purified", - "proto": "CLEFABLE_PURIFIED" - } - }, - "default_form_id": 984, - "pokedex_id": 36, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fairy" - ], - "attack": 178, - "defense": 162, - "stamina": 216, - "height": 1.3, - "weight": 40, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Charge Beam", - "Zen Headbutt", - "Charm" - ], - "charged_moves": [ - "Dazzling Gleam", - "Psychic", - "Moonblast", - "Meteor Mash" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 35 - }, - "37": { - "name": "Vulpix", - "forms": { - "55": { - "name": "Normal", - "proto": "VULPIX_NORMAL", - "evolutions": [ - { - "pokemon": 38, - "form": 57 - } - ] - }, - "56": { - "name": "Alola", - "proto": "VULPIX_ALOLA", - "evolutions": [ - { - "pokemon": 38, - "form": 58 - } - ], - "quick_moves": [ - "Zen Headbutt", - "Powder Snow" - ], - "charged_moves": [ - "Dark Pulse", - "Ice Beam", - "Blizzard", - "Weather Ball" - ], - "types": [ - "Ice" - ] - }, - "725": { - "name": "Shadow", - "proto": "VULPIX_SHADOW", - "evolutions": [ - { - "pokemon": 38, - "form": 727 - } - ] - }, - "726": { - "name": "Purified", - "proto": "VULPIX_PURIFIED", - "evolutions": [ - { - "pokemon": 38, - "form": 728 - } - ] - } - }, - "default_form_id": 55, - "pokedex_id": 37, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 96, - "defense": 109, - "stamina": 116, - "height": 0.6, - "weight": 9.9, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Quick Attack", - "Ember" - ], - "charged_moves": [ - "Body Slam", - "Flamethrower", - "Flame Charge", - "Weather Ball" - ], - "evolutions": [ - { - "pokemon": 38, - "form": 57 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 37, - "little": true - }, - "38": { - "name": "Ninetales", - "forms": { - "57": { - "name": "Normal", - "proto": "NINETALES_NORMAL" - }, - "58": { - "name": "Alola", - "proto": "NINETALES_ALOLA", - "attack": 170, - "defense": 193, - "stamina": 177, - "quick_moves": [ - "Feint Attack", - "Powder Snow", - "Charm" - ], - "charged_moves": [ - "Dazzling Gleam", - "Ice Beam", - "Blizzard", - "Psyshock", - "Weather Ball" - ], - "types": [ - "Ice", - "Fairy" - ] - }, - "727": { - "name": "Shadow", - "proto": "NINETALES_SHADOW" - }, - "728": { - "name": "Purified", - "proto": "NINETALES_PURIFIED" - } - }, - "default_form_id": 57, - "pokedex_id": 38, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 169, - "defense": 190, - "stamina": 177, - "height": 1.1, - "weight": 19.9, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Feint Attack", - "Fire Spin" - ], - "charged_moves": [ - "Heat Wave", - "Overheat", - "Solar Beam", - "Psyshock", - "Weather Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 37 - }, - "39": { - "name": "Jigglypuff", - "forms": { - "987": { - "name": "Normal", - "proto": "JIGGLYPUFF_NORMAL" - }, - "988": { - "name": "Shadow", - "proto": "JIGGLYPUFF_SHADOW" - }, - "989": { - "name": "Purified", - "proto": "JIGGLYPUFF_PURIFIED" - } - }, - "default_form_id": 987, - "pokedex_id": 39, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Fairy" - ], - "attack": 80, - "defense": 41, - "stamina": 251, - "height": 0.5, - "weight": 5.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Feint Attack" - ], - "charged_moves": [ - "Disarming Voice", - "Gyro Ball", - "Dazzling Gleam" - ], - "evolutions": [ - { - "pokemon": 40 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 39 - }, - "40": { - "name": "Wigglytuff", - "forms": { - "990": { - "name": "Normal", - "proto": "WIGGLYTUFF_NORMAL" - }, - "991": { - "name": "Shadow", - "proto": "WIGGLYTUFF_SHADOW" - }, - "992": { - "name": "Purified", - "proto": "WIGGLYTUFF_PURIFIED" - } - }, - "default_form_id": 990, - "pokedex_id": 40, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Fairy" - ], - "attack": 156, - "defense": 90, - "stamina": 295, - "height": 1, - "weight": 12, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Pound", - "Feint Attack", - "Charm" - ], - "charged_moves": [ - "Dazzling Gleam", - "Hyper Beam", - "Play Rough", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 39 - }, - "41": { - "name": "Zubat", - "forms": { - "157": { - "name": "Normal", - "proto": "ZUBAT_NORMAL", - "evolutions": [ - { - "pokemon": 42, - "form": 160 - } - ] - }, - "158": { - "name": "Shadow", - "proto": "ZUBAT_SHADOW", - "evolutions": [ - { - "pokemon": 42, - "form": 161 - } - ] - }, - "159": { - "name": "Purified", - "proto": "ZUBAT_PURIFIED", - "evolutions": [ - { - "pokemon": 42, - "form": 162 - } - ] - } - }, - "default_form_id": 157, - "pokedex_id": 41, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison", - "Flying" - ], - "attack": 83, - "defense": 73, - "stamina": 120, - "height": 0.8, - "weight": 7.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Quick Attack", - "Bite" - ], - "charged_moves": [ - "Poison Fang", - "Air Cutter", - "Swift" - ], - "evolutions": [ - { - "pokemon": 42, - "form": 160 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 41, - "little": true - }, - "42": { - "name": "Golbat", - "forms": { - "160": { - "name": "Normal", - "proto": "GOLBAT_NORMAL", - "evolutions": [ - { - "pokemon": 169, - "form": 202 - } - ] - }, - "161": { - "name": "Shadow", - "proto": "GOLBAT_SHADOW", - "evolutions": [ - { - "pokemon": 169, - "form": 203 - } - ] - }, - "162": { - "name": "Purified", - "proto": "GOLBAT_PURIFIED", - "evolutions": [ - { - "pokemon": 169, - "form": 204 - } - ] - } - }, - "default_form_id": 160, - "pokedex_id": 42, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison", - "Flying" - ], - "attack": 161, - "defense": 150, - "stamina": 181, - "height": 1.6, - "weight": 55, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Wing Attack", - "Bite" - ], - "charged_moves": [ - "Shadow Ball", - "Air Cutter", - "Poison Fang" - ], - "evolutions": [ - { - "pokemon": 169, - "form": 202 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 41 - }, - "43": { - "name": "Oddish", - "forms": { - "265": { - "name": "Normal", - "proto": "ODDISH_NORMAL", - "evolutions": [ - { - "pokemon": 44, - "form": 268 - } - ] - }, - "266": { - "name": "Shadow", - "proto": "ODDISH_SHADOW", - "evolutions": [ - { - "pokemon": 44, - "form": 269 - } - ] - }, - "267": { - "name": "Purified", - "proto": "ODDISH_PURIFIED", - "evolutions": [ - { - "pokemon": 44, - "form": 270 - } - ] - } - }, - "default_form_id": 265, - "pokedex_id": 43, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 131, - "defense": 112, - "stamina": 128, - "height": 0.5, - "weight": 5.4, - "flee_rate": 0.15, - "capture_rate": 0.6, - "quick_moves": [ - "Razor Leaf", - "Acid" - ], - "charged_moves": [ - "Seed Bomb", - "Sludge Bomb", - "Moonblast" - ], - "evolutions": [ - { - "pokemon": 44, - "form": 268 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 43, - "little": true - }, - "44": { - "name": "Gloom", - "forms": { - "268": { - "name": "Normal", - "proto": "GLOOM_NORMAL", - "evolutions": [ - { - "pokemon": 45, - "form": 271 - }, - { - "pokemon": 182, - "form": 274 - } - ] - }, - "269": { - "name": "Shadow", - "proto": "GLOOM_SHADOW", - "evolutions": [ - { - "pokemon": 45, - "form": 272 - }, - { - "pokemon": 182, - "form": 275 - } - ] - }, - "270": { - "name": "Purified", - "proto": "GLOOM_PURIFIED", - "evolutions": [ - { - "pokemon": 45, - "form": 273 - }, - { - "pokemon": 182, - "form": 276 - } - ] - } - }, - "default_form_id": 268, - "pokedex_id": 44, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 153, - "defense": 136, - "stamina": 155, - "height": 0.8, - "weight": 8.6, - "flee_rate": 0.07, - "capture_rate": 0.3, - "quick_moves": [ - "Razor Leaf", - "Acid" - ], - "charged_moves": [ - "Petal Blizzard", - "Sludge Bomb", - "Moonblast" - ], - "evolutions": [ - { - "pokemon": 45, - "form": 271 - }, - { - "pokemon": 182, - "form": 274 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 43 - }, - "45": { - "name": "Vileplume", - "forms": { - "271": { - "name": "Normal", - "proto": "VILEPLUME_NORMAL" - }, - "272": { - "name": "Shadow", - "proto": "VILEPLUME_SHADOW" - }, - "273": { - "name": "Purified", - "proto": "VILEPLUME_PURIFIED" - } - }, - "default_form_id": 271, - "pokedex_id": 45, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 202, - "defense": 167, - "stamina": 181, - "height": 1.2, - "weight": 18.6, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Razor Leaf", - "Acid" - ], - "charged_moves": [ - "Petal Blizzard", - "Solar Beam", - "Moonblast", - "Sludge Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 43 - }, - "46": { - "name": "Paras", - "forms": { - "993": { - "name": "Normal", - "proto": "PARAS_NORMAL" - }, - "994": { - "name": "Shadow", - "proto": "PARAS_SHADOW" - }, - "995": { - "name": "Purified", - "proto": "PARAS_PURIFIED" - } - }, - "default_form_id": 993, - "pokedex_id": 46, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Grass" - ], - "attack": 121, - "defense": 99, - "stamina": 111, - "height": 0.3, - "weight": 5.4, - "flee_rate": 0.15, - "capture_rate": 0.4, - "quick_moves": [ - "Scratch", - "Bug Bite" - ], - "charged_moves": [ - "Cross Poison", - "X Scissor", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 47 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 46, - "little": true - }, - "47": { - "name": "Parasect", - "forms": { - "996": { - "name": "Normal", - "proto": "PARASECT_NORMAL" - }, - "997": { - "name": "Shadow", - "proto": "PARASECT_SHADOW" - }, - "998": { - "name": "Purified", - "proto": "PARASECT_PURIFIED" - } - }, - "default_form_id": 996, - "pokedex_id": 47, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Grass" - ], - "attack": 165, - "defense": 146, - "stamina": 155, - "height": 1, - "weight": 29.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Struggle Bug", - "Fury Cutter" - ], - "charged_moves": [ - "Cross Poison", - "X Scissor", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 46 - }, - "48": { - "name": "Venonat", - "forms": { - "259": { - "name": "Normal", - "proto": "VENONAT_NORMAL", - "evolutions": [ - { - "pokemon": 49, - "form": 262 - } - ] - }, - "260": { - "name": "Shadow", - "proto": "VENONAT_SHADOW", - "evolutions": [ - { - "pokemon": 49, - "form": 263 - } - ] - }, - "261": { - "name": "Purified", - "proto": "VENONAT_PURIFIED", - "evolutions": [ - { - "pokemon": 49, - "form": 264 - } - ] - } - }, - "default_form_id": 259, - "pokedex_id": 48, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Poison" - ], - "attack": 100, - "defense": 100, - "stamina": 155, - "height": 1, - "weight": 30, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bug Bite", - "Confusion" - ], - "charged_moves": [ - "Poison Fang", - "Psybeam", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 49, - "form": 262 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 48, - "little": true - }, - "49": { - "name": "Venomoth", - "forms": { - "262": { - "name": "Normal", - "proto": "VENOMOTH_NORMAL" - }, - "263": { - "name": "Shadow", - "proto": "VENOMOTH_SHADOW" - }, - "264": { - "name": "Purified", - "proto": "VENOMOTH_PURIFIED" - } - }, - "default_form_id": 262, - "pokedex_id": 49, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Poison" - ], - "attack": 179, - "defense": 143, - "stamina": 172, - "height": 1.5, - "weight": 12.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Infestation", - "Confusion" - ], - "charged_moves": [ - "Silver Wind", - "Psychic", - "Bug Buzz", - "Poison Fang" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 48 - }, - "50": { - "name": "Diglett", - "forms": { - "59": { - "name": "Normal", - "proto": "DIGLETT_NORMAL", - "evolutions": [ - { - "pokemon": 51, - "form": 61 - } - ] - }, - "60": { - "name": "Alola", - "proto": "DIGLETT_ALOLA", - "evolutions": [ - { - "pokemon": 51, - "form": 62 - } - ], - "attack": 108, - "defense": 81, - "stamina": 67, - "height": 0.2, - "weight": 1, - "quick_moves": [ - "Mud Slap", - "Metal Claw" - ], - "types": [ - "Ground", - "Steel" - ] - }, - "842": { - "name": "Shadow", - "proto": "DIGLETT_SHADOW", - "evolutions": [ - { - "pokemon": 51, - "form": 844 - } - ] - }, - "843": { - "name": "Purified", - "proto": "DIGLETT_PURIFIED", - "evolutions": [ - { - "pokemon": 51, - "form": 845 - } - ] - } - }, - "default_form_id": 59, - "pokedex_id": 50, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 109, - "defense": 78, - "stamina": 67, - "height": 0.2, - "weight": 0.8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Mud Slap", - "Scratch" - ], - "charged_moves": [ - "Dig", - "Mud Bomb", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 51, - "form": 61 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 50, - "little": true - }, - "51": { - "name": "Dugtrio", - "forms": { - "61": { - "name": "Normal", - "proto": "DUGTRIO_NORMAL", - "attack": 167, - "defense": 136, - "stamina": 111 - }, - "62": { - "name": "Alola", - "proto": "DUGTRIO_ALOLA", - "attack": 201, - "defense": 142, - "stamina": 111, - "height": 0.7, - "weight": 66.6, - "quick_moves": [ - "Metal Claw", - "Mud Slap" - ], - "charged_moves": [ - "Earthquake", - "Mud Bomb", - "Iron Head" - ], - "types": [ - "Ground", - "Steel" - ] - }, - "844": { - "name": "Shadow", - "proto": "DUGTRIO_SHADOW" - }, - "845": { - "name": "Purified", - "proto": "DUGTRIO_PURIFIED" - } - }, - "default_form_id": 61, - "pokedex_id": 51, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 167, - "defense": 134, - "stamina": 111, - "height": 0.7, - "weight": 33.3, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Sucker Punch", - "Mud Slap" - ], - "charged_moves": [ - "Earthquake", - "Mud Bomb", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 50 - }, - "52": { - "name": "Meowth", - "forms": { - "63": { - "name": "Normal", - "proto": "MEOWTH_NORMAL", - "evolutions": [ - { - "pokemon": 53, - "form": 65 - } - ] - }, - "64": { - "name": "Alola", - "proto": "MEOWTH_ALOLA", - "evolutions": [ - { - "pokemon": 53, - "form": 66 - } - ], - "attack": 99, - "defense": 78, - "stamina": 120, - "types": [ - "Dark" - ] - }, - "709": { - "name": "Shadow", - "proto": "MEOWTH_SHADOW", - "evolutions": [ - { - "pokemon": 53, - "form": 711 - } - ] - }, - "710": { - "name": "Purified", - "proto": "MEOWTH_PURIFIED", - "evolutions": [ - { - "pokemon": 53, - "form": 712 - } - ] - }, - "2335": { - "name": "Galarian", - "proto": "MEOWTH_GALARIAN", - "evolutions": [ - { - "pokemon": 863, - "form": 2504 - } - ], - "attack": 115, - "defense": 92, - "stamina": 137, - "height": 0.4, - "weight": 7.5, - "quick_moves": [ - "Scratch", - "Metal Claw" - ], - "charged_moves": [ - "Night Slash", - "Gyro Ball", - "Dig" - ], - "types": [ - "Steel" - ] - } - }, - "default_form_id": 63, - "pokedex_id": 52, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 92, - "defense": 78, - "stamina": 120, - "height": 0.4, - "weight": 4.2, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Bite" - ], - "charged_moves": [ - "Night Slash", - "Dark Pulse", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 53, - "form": 65 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 52, - "little": true - }, - "53": { - "name": "Persian", - "forms": { - "65": { - "name": "Normal", - "proto": "PERSIAN_NORMAL" - }, - "66": { - "name": "Alola", - "proto": "PERSIAN_ALOLA", - "attack": 158, - "defense": 136, - "stamina": 163, - "height": 1.1, - "weight": 33, - "charged_moves": [ - "Foul Play", - "Dark Pulse", - "Play Rough", - "Payback" - ], - "types": [ - "Dark" - ] - }, - "711": { - "name": "Shadow", - "proto": "PERSIAN_SHADOW" - }, - "712": { - "name": "Purified", - "proto": "PERSIAN_PURIFIED" - } - }, - "default_form_id": 65, - "pokedex_id": 53, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 150, - "defense": 136, - "stamina": 163, - "height": 1, - "weight": 32, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Feint Attack" - ], - "charged_moves": [ - "Foul Play", - "Power Gem", - "Play Rough", - "Payback" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 52 - }, - "54": { - "name": "Psyduck", - "forms": { - "286": { - "name": "Normal", - "proto": "PSYDUCK_NORMAL", - "evolutions": [ - { - "pokemon": 55, - "form": 289 - } - ] - }, - "287": { - "name": "Shadow", - "proto": "PSYDUCK_SHADOW", - "evolutions": [ - { - "pokemon": 55, - "form": 290 - } - ] - }, - "288": { - "name": "Purified", - "proto": "PSYDUCK_PURIFIED", - "evolutions": [ - { - "pokemon": 55, - "form": 291 - } - ] - } - }, - "default_form_id": 286, - "pokedex_id": 54, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 122, - "defense": 95, - "stamina": 137, - "height": 0.8, - "weight": 19.6, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Zen Headbutt" - ], - "charged_moves": [ - "Psybeam", - "Aqua Tail", - "Cross Chop" - ], - "evolutions": [ - { - "pokemon": 55, - "form": 289 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 54, - "little": true - }, - "55": { - "name": "Golduck", - "forms": { - "289": { - "name": "Normal", - "proto": "GOLDUCK_NORMAL" - }, - "290": { - "name": "Shadow", - "proto": "GOLDUCK_SHADOW" - }, - "291": { - "name": "Purified", - "proto": "GOLDUCK_PURIFIED" - } - }, - "default_form_id": 289, - "pokedex_id": 55, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 191, - "defense": 162, - "stamina": 190, - "height": 1.7, - "weight": 76.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Confusion" - ], - "charged_moves": [ - "Psychic", - "Hydro Pump", - "Ice Beam", - "Bubble Beam", - "Synchronoise", - "Cross Chop" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 54 - }, - "56": { - "name": "Mankey", - "forms": { - "999": { - "name": "Normal", - "proto": "MANKEY_NORMAL" - }, - "1000": { - "name": "Shadow", - "proto": "MANKEY_SHADOW" - }, - "1001": { - "name": "Purified", - "proto": "MANKEY_PURIFIED" - } - }, - "default_form_id": 999, - "pokedex_id": 56, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 148, - "defense": 82, - "stamina": 120, - "height": 0.5, - "weight": 28, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Karate Chop", - "Scratch" - ], - "charged_moves": [ - "Cross Chop", - "Low Sweep", - "Brick Break" - ], - "evolutions": [ - { - "pokemon": 57 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 56, - "little": true - }, - "57": { - "name": "Primeape", - "forms": { - "1002": { - "name": "Normal", - "proto": "PRIMEAPE_NORMAL" - }, - "1003": { - "name": "Shadow", - "proto": "PRIMEAPE_SHADOW" - }, - "1004": { - "name": "Purified", - "proto": "PRIMEAPE_PURIFIED" - } - }, - "default_form_id": 1002, - "pokedex_id": 57, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 207, - "defense": 138, - "stamina": 163, - "height": 1, - "weight": 32, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Low Kick", - "Counter" - ], - "charged_moves": [ - "Close Combat", - "Low Sweep", - "Night Slash", - "Ice Punch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 56 - }, - "58": { - "name": "Growlithe", - "forms": { - "280": { - "name": "Normal", - "proto": "GROWLITHE_NORMAL", - "evolutions": [ - { - "pokemon": 59, - "form": 283 - } - ] - }, - "281": { - "name": "Shadow", - "proto": "GROWLITHE_SHADOW", - "evolutions": [ - { - "pokemon": 59, - "form": 284 - } - ] - }, - "282": { - "name": "Purified", - "proto": "GROWLITHE_PURIFIED", - "evolutions": [ - { - "pokemon": 59, - "form": 285 - } - ] - } - }, - "default_form_id": 280, - "pokedex_id": 58, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 136, - "defense": 93, - "stamina": 146, - "height": 0.7, - "weight": 19, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Ember", - "Bite" - ], - "charged_moves": [ - "Flame Wheel", - "Body Slam", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 59, - "form": 283 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 58, - "little": true - }, - "59": { - "name": "Arcanine", - "forms": { - "283": { - "name": "Normal", - "proto": "ARCANINE_NORMAL" - }, - "284": { - "name": "Shadow", - "proto": "ARCANINE_SHADOW" - }, - "285": { - "name": "Purified", - "proto": "ARCANINE_PURIFIED" - } - }, - "default_form_id": 283, - "pokedex_id": 59, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 227, - "defense": 166, - "stamina": 207, - "height": 1.9, - "weight": 155, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Fire Fang", - "Snarl", - "Thunder Fang" - ], - "charged_moves": [ - "Fire Blast", - "Wild Charge", - "Crunch", - "Flamethrower" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 58 - }, - "60": { - "name": "Poliwag", - "forms": { - "235": { - "name": "Normal", - "proto": "POLIWAG_NORMAL", - "evolutions": [ - { - "pokemon": 61, - "form": 238 - } - ] - }, - "236": { - "name": "Shadow", - "proto": "POLIWAG_SHADOW", - "evolutions": [ - { - "pokemon": 61, - "form": 239 - } - ] - }, - "237": { - "name": "Purified", - "proto": "POLIWAG_PURIFIED", - "evolutions": [ - { - "pokemon": 61, - "form": 240 - } - ] - } - }, - "default_form_id": 235, - "pokedex_id": 60, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 101, - "defense": 82, - "stamina": 120, - "height": 0.6, - "weight": 12.4, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bubble", - "Mud Shot" - ], - "charged_moves": [ - "Bubble Beam", - "Mud Bomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 61, - "form": 238 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 60, - "little": true - }, - "61": { - "name": "Poliwhirl", - "forms": { - "238": { - "name": "Normal", - "proto": "POLIWHIRL_NORMAL", - "evolutions": [ - { - "pokemon": 62, - "form": 241 - }, - { - "pokemon": 186, - "form": 244 - } - ] - }, - "239": { - "name": "Shadow", - "proto": "POLIWHIRL_SHADOW", - "evolutions": [ - { - "pokemon": 62, - "form": 242 - }, - { - "pokemon": 186, - "form": 245 - } - ] - }, - "240": { - "name": "Purified", - "proto": "POLIWHIRL_PURIFIED", - "evolutions": [ - { - "pokemon": 62, - "form": 243 - }, - { - "pokemon": 186, - "form": 246 - } - ] - } - }, - "default_form_id": 238, - "pokedex_id": 61, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 130, - "defense": 123, - "stamina": 163, - "height": 1, - "weight": 20, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Bubble", - "Mud Shot" - ], - "charged_moves": [ - "Water Pulse", - "Mud Bomb", - "Bubble Beam" - ], - "evolutions": [ - { - "pokemon": 62, - "form": 241 - }, - { - "pokemon": 186, - "form": 244 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 60 - }, - "62": { - "name": "Poliwrath", - "forms": { - "241": { - "name": "Normal", - "proto": "POLIWRATH_NORMAL" - }, - "242": { - "name": "Shadow", - "proto": "POLIWRATH_SHADOW" - }, - "243": { - "name": "Purified", - "proto": "POLIWRATH_PURIFIED" - } - }, - "default_form_id": 241, - "pokedex_id": 62, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Fighting" - ], - "attack": 182, - "defense": 184, - "stamina": 207, - "height": 1.3, - "weight": 54, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Bubble", - "Rock Smash", - "Mud Shot" - ], - "charged_moves": [ - "Hydro Pump", - "Dynamic Punch", - "Ice Punch", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 60 - }, - "63": { - "name": "Abra", - "forms": { - "304": { - "name": "Normal", - "proto": "ABRA_NORMAL", - "evolutions": [ - { - "pokemon": 64, - "form": 307 - } - ] - }, - "305": { - "name": "Shadow", - "proto": "ABRA_SHADOW", - "evolutions": [ - { - "pokemon": 64, - "form": 308 - } - ] - }, - "306": { - "name": "Purified", - "proto": "ABRA_PURIFIED", - "evolutions": [ - { - "pokemon": 64, - "form": 309 - } - ] - } - }, - "default_form_id": 304, - "pokedex_id": 63, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 195, - "defense": 82, - "stamina": 93, - "height": 0.9, - "weight": 19.5, - "flee_rate": 0.99, - "capture_rate": 0.5, - "quick_moves": [ - "Zen Headbutt", - "Charge Beam" - ], - "charged_moves": [ - "Psyshock", - "Signal Beam", - "Shadow Ball" - ], - "evolutions": [ - { - "pokemon": 64, - "form": 307 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 63, - "little": true - }, - "64": { - "name": "Kadabra", - "forms": { - "307": { - "name": "Normal", - "proto": "KADABRA_NORMAL", - "evolutions": [ - { - "pokemon": 65, - "form": 310 - } - ] - }, - "308": { - "name": "Shadow", - "proto": "KADABRA_SHADOW", - "evolutions": [ - { - "pokemon": 65, - "form": 311 - } - ] - }, - "309": { - "name": "Purified", - "proto": "KADABRA_PURIFIED", - "evolutions": [ - { - "pokemon": 65, - "form": 312 - } - ] - } - }, - "default_form_id": 307, - "pokedex_id": 64, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 232, - "defense": 117, - "stamina": 120, - "height": 1.3, - "weight": 56.5, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Psycho Cut", - "Confusion" - ], - "charged_moves": [ - "Psybeam", - "Dazzling Gleam", - "Shadow Ball" - ], - "evolutions": [ - { - "pokemon": 65, - "form": 310 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 63 - }, - "65": { - "name": "Alakazam", - "forms": { - "310": { - "name": "Normal", - "proto": "ALAKAZAM_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "311": { - "name": "Shadow", - "proto": "ALAKAZAM_SHADOW" - }, - "312": { - "name": "Purified", - "proto": "ALAKAZAM_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 310, - "pokedex_id": 65, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 271, - "defense": 167, - "stamina": 146, - "height": 1.5, - "weight": 48, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Psycho Cut", - "Confusion" - ], - "charged_moves": [ - "Futuresight", - "Focus Blast", - "Shadow Ball", - "Fire Punch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 63, - "temp_evolutions": { - "1": { - "attack": 367, - "defense": 207, - "stamina": 146, - "unreleased": true - } - } - }, - "66": { - "name": "Machop", - "forms": { - "809": { - "name": "Normal", - "proto": "MACHOP_NORMAL", - "evolutions": [ - { - "pokemon": 67, - "form": 812 - } - ] - }, - "810": { - "name": "Shadow", - "proto": "MACHOP_SHADOW", - "evolutions": [ - { - "pokemon": 67, - "form": 813 - } - ] - }, - "811": { - "name": "Purified", - "proto": "MACHOP_PURIFIED", - "evolutions": [ - { - "pokemon": 67, - "form": 814 - } - ] - } - }, - "default_form_id": 809, - "pokedex_id": 66, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 137, - "defense": 82, - "stamina": 172, - "height": 0.8, - "weight": 19.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Rock Smash", - "Karate Chop" - ], - "charged_moves": [ - "Low Sweep", - "Brick Break", - "Cross Chop" - ], - "evolutions": [ - { - "pokemon": 67, - "form": 812 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 66, - "little": true - }, - "67": { - "name": "Machoke", - "forms": { - "812": { - "name": "Normal", - "proto": "MACHOKE_NORMAL", - "evolutions": [ - { - "pokemon": 68, - "form": 815 - } - ] - }, - "813": { - "name": "Shadow", - "proto": "MACHOKE_SHADOW", - "evolutions": [ - { - "pokemon": 68, - "form": 816 - } - ] - }, - "814": { - "name": "Purified", - "proto": "MACHOKE_PURIFIED", - "evolutions": [ - { - "pokemon": 68, - "form": 817 - } - ] - } - }, - "default_form_id": 812, - "pokedex_id": 67, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 177, - "defense": 125, - "stamina": 190, - "height": 1.5, - "weight": 70.5, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Low Kick", - "Karate Chop" - ], - "charged_moves": [ - "Submission", - "Brick Break", - "Dynamic Punch" - ], - "evolutions": [ - { - "pokemon": 68, - "form": 815 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 66 - }, - "68": { - "name": "Machamp", - "forms": { - "815": { - "name": "Normal", - "proto": "MACHAMP_NORMAL" - }, - "816": { - "name": "Shadow", - "proto": "MACHAMP_SHADOW" - }, - "817": { - "name": "Purified", - "proto": "MACHAMP_PURIFIED" - } - }, - "default_form_id": 815, - "pokedex_id": 68, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 234, - "defense": 159, - "stamina": 207, - "height": 1.6, - "weight": 130, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Bullet Punch", - "Counter" - ], - "charged_moves": [ - "Heavy Slam", - "Dynamic Punch", - "Close Combat", - "Rock Slide", - "Cross Chop" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 66 - }, - "69": { - "name": "Bellsprout", - "forms": { - "664": { - "name": "Normal", - "proto": "BELLSPROUT_NORMAL", - "evolutions": [ - { - "pokemon": 70, - "form": 667 - } - ] - }, - "665": { - "name": "Shadow", - "proto": "BELLSPROUT_SHADOW", - "evolutions": [ - { - "pokemon": 70, - "form": 668 - } - ] - }, - "666": { - "name": "Purified", - "proto": "BELLSPROUT_PURIFIED", - "evolutions": [ - { - "pokemon": 70, - "form": 669 - } - ] - } - }, - "default_form_id": 664, - "pokedex_id": 69, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 139, - "defense": 61, - "stamina": 137, - "height": 0.7, - "weight": 4, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Vine Whip", - "Acid" - ], - "charged_moves": [ - "Power Whip", - "Sludge Bomb", - "Wrap" - ], - "evolutions": [ - { - "pokemon": 70, - "form": 667 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 69, - "little": true - }, - "70": { - "name": "Weepinbell", - "forms": { - "667": { - "name": "Normal", - "proto": "WEEPINBELL_NORMAL", - "evolutions": [ - { - "pokemon": 71, - "form": 670 - } - ] - }, - "668": { - "name": "Shadow", - "proto": "WEEPINBELL_SHADOW", - "evolutions": [ - { - "pokemon": 71, - "form": 671 - } - ] - }, - "669": { - "name": "Purified", - "proto": "WEEPINBELL_PURIFIED", - "evolutions": [ - { - "pokemon": 71, - "form": 672 - } - ] - } - }, - "default_form_id": 667, - "pokedex_id": 70, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 172, - "defense": 92, - "stamina": 163, - "height": 1, - "weight": 6.4, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Bullet Seed", - "Acid" - ], - "charged_moves": [ - "Power Whip", - "Sludge Bomb", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 71, - "form": 670 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 69 - }, - "71": { - "name": "Victreebel", - "forms": { - "670": { - "name": "Normal", - "proto": "VICTREEBEL_NORMAL" - }, - "671": { - "name": "Shadow", - "proto": "VICTREEBEL_SHADOW" - }, - "672": { - "name": "Purified", - "proto": "VICTREEBEL_PURIFIED" - } - }, - "default_form_id": 670, - "pokedex_id": 71, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Poison" - ], - "attack": 207, - "defense": 135, - "stamina": 190, - "height": 1.7, - "weight": 15.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Razor Leaf", - "Acid" - ], - "charged_moves": [ - "Leaf Blade", - "Sludge Bomb", - "Solar Beam", - "Leaf Tornado", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 69 - }, - "72": { - "name": "Tentacool", - "forms": { - "1005": { - "name": "Normal", - "proto": "TENTACOOL_NORMAL" - }, - "1006": { - "name": "Shadow", - "proto": "TENTACOOL_SHADOW" - }, - "1007": { - "name": "Purified", - "proto": "TENTACOOL_PURIFIED" - } - }, - "default_form_id": 1005, - "pokedex_id": 72, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Poison" - ], - "attack": 97, - "defense": 149, - "stamina": 120, - "height": 0.9, - "weight": 45.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bubble", - "Poison Sting" - ], - "charged_moves": [ - "Bubble Beam", - "Water Pulse", - "Wrap" - ], - "evolutions": [ - { - "pokemon": 73 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 72, - "little": true - }, - "73": { - "name": "Tentacruel", - "forms": { - "1008": { - "name": "Normal", - "proto": "TENTACRUEL_NORMAL" - }, - "1009": { - "name": "Shadow", - "proto": "TENTACRUEL_SHADOW" - }, - "1010": { - "name": "Purified", - "proto": "TENTACRUEL_PURIFIED" - } - }, - "default_form_id": 1008, - "pokedex_id": 73, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Poison" - ], - "attack": 166, - "defense": 209, - "stamina": 190, - "height": 1.6, - "weight": 55, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Acid", - "Poison Jab" - ], - "charged_moves": [ - "Hydro Pump", - "Sludge Wave", - "Blizzard", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 72 - }, - "74": { - "name": "Geodude", - "forms": { - "67": { - "name": "Normal", - "proto": "GEODUDE_NORMAL", - "evolutions": [ - { - "pokemon": 75, - "form": 69 - } - ] - }, - "68": { - "name": "Alola", - "proto": "GEODUDE_ALOLA", - "evolutions": [ - { - "pokemon": 75, - "form": 70 - } - ], - "height": 0.4, - "weight": 20.3, - "quick_moves": [ - "Rock Throw", - "Volt Switch" - ], - "charged_moves": [ - "Rock Slide", - "Rock Tomb", - "Thunderbolt" - ], - "types": [ - "Rock", - "Electric" - ] - }, - "882": { - "name": "Shadow", - "proto": "GEODUDE_SHADOW", - "evolutions": [ - { - "pokemon": 75, - "form": 884 - } - ] - }, - "883": { - "name": "Purified", - "proto": "GEODUDE_PURIFIED", - "evolutions": [ - { - "pokemon": 75, - "form": 885 - } - ] - } - }, - "default_form_id": 67, - "pokedex_id": 74, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Ground" - ], - "attack": 132, - "defense": 132, - "stamina": 120, - "height": 0.4, - "weight": 20, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Rock Throw", - "Tackle" - ], - "charged_moves": [ - "Rock Slide", - "Rock Tomb", - "Dig" - ], - "evolutions": [ - { - "pokemon": 75, - "form": 69 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 74, - "little": true - }, - "75": { - "name": "Graveler", - "forms": { - "69": { - "name": "Normal", - "proto": "GRAVELER_NORMAL", - "evolutions": [ - { - "pokemon": 76, - "form": 71 - } - ] - }, - "70": { - "name": "Alola", - "proto": "GRAVELER_ALOLA", - "evolutions": [ - { - "pokemon": 76, - "form": 72 - } - ], - "height": 1, - "weight": 110, - "quick_moves": [ - "Rock Throw", - "Volt Switch" - ], - "charged_moves": [ - "Thunderbolt", - "Stone Edge", - "Rock Blast" - ], - "types": [ - "Rock", - "Electric" - ] - }, - "884": { - "name": "Shadow", - "proto": "GRAVELER_SHADOW", - "evolutions": [ - { - "pokemon": 76, - "form": 886 - } - ] - }, - "885": { - "name": "Purified", - "proto": "GRAVELER_PURIFIED", - "evolutions": [ - { - "pokemon": 76, - "form": 887 - } - ] - } - }, - "default_form_id": 69, - "pokedex_id": 75, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Ground" - ], - "attack": 164, - "defense": 164, - "stamina": 146, - "height": 1, - "weight": 105, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Rock Throw", - "Mud Slap" - ], - "charged_moves": [ - "Dig", - "Stone Edge", - "Rock Blast" - ], - "evolutions": [ - { - "pokemon": 76, - "form": 71 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 74 - }, - "76": { - "name": "Golem", - "forms": { - "71": { - "name": "Normal", - "proto": "GOLEM_NORMAL" - }, - "72": { - "name": "Alola", - "proto": "GOLEM_ALOLA", - "height": 1.7, - "weight": 316, - "quick_moves": [ - "Rock Throw", - "Volt Switch" - ], - "charged_moves": [ - "Stone Edge", - "Rock Blast", - "Wild Charge" - ], - "types": [ - "Rock", - "Electric" - ] - }, - "886": { - "name": "Shadow", - "proto": "GOLEM_SHADOW" - }, - "887": { - "name": "Purified", - "proto": "GOLEM_PURIFIED" - } - }, - "default_form_id": 71, - "pokedex_id": 76, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Ground" - ], - "attack": 211, - "defense": 198, - "stamina": 190, - "height": 1.4, - "weight": 300, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Rock Throw", - "Mud Slap" - ], - "charged_moves": [ - "Stone Edge", - "Rock Blast", - "Earthquake", - "Ancient Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 74 - }, - "77": { - "name": "Ponyta", - "forms": { - "1011": { - "name": "Normal", - "proto": "PONYTA_NORMAL", - "evolutions": [ - { - "pokemon": 78, - "form": 1014 - } - ] - }, - "1012": { - "name": "Shadow", - "proto": "PONYTA_SHADOW", - "evolutions": [ - { - "pokemon": 78, - "form": 1015 - } - ] - }, - "1013": { - "name": "Purified", - "proto": "PONYTA_PURIFIED", - "evolutions": [ - { - "pokemon": 78, - "form": 1016 - } - ] - }, - "2336": { - "name": "Galarian", - "proto": "PONYTA_GALARIAN", - "evolutions": [ - { - "pokemon": 78, - "form": 2337 - } - ], - "height": 0.8, - "weight": 24, - "quick_moves": [ - "Low Kick", - "Psycho Cut" - ], - "charged_moves": [ - "Play Rough", - "Psybeam", - "Swift" - ], - "types": [ - "Psychic" - ] - } - }, - "default_form_id": 1011, - "pokedex_id": 77, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 170, - "defense": 127, - "stamina": 137, - "height": 1, - "weight": 30, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flame Wheel", - "Stomp" - ], - "evolutions": [ - { - "pokemon": 78, - "form": 1014 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 77, - "little": true - }, - "78": { - "name": "Rapidash", - "forms": { - "1014": { - "name": "Normal", - "proto": "RAPIDASH_NORMAL" - }, - "1015": { - "name": "Shadow", - "proto": "RAPIDASH_SHADOW" - }, - "1016": { - "name": "Purified", - "proto": "RAPIDASH_PURIFIED" - }, - "2337": { - "name": "Galarian", - "proto": "RAPIDASH_GALARIAN", - "height": 1.7, - "weight": 80, - "quick_moves": [ - "Low Kick", - "Psycho Cut" - ], - "charged_moves": [ - "Play Rough", - "Psychic", - "Body Slam", - "Megahorn" - ], - "types": [ - "Psychic", - "Fairy" - ] - } - }, - "default_form_id": 1014, - "pokedex_id": 78, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 207, - "defense": 162, - "stamina": 163, - "height": 1.7, - "weight": 95, - "flee_rate": 0.06, - "capture_rate": 0.15, - "quick_moves": [ - "Low Kick", - "Fire Spin", - "Incinerate" - ], - "charged_moves": [ - "Fire Blast", - "Drill Run", - "Heat Wave", - "Flame Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 77 - }, - "79": { - "name": "Slowpoke", - "forms": { - "1017": { - "name": "Normal", - "proto": "SLOWPOKE_NORMAL", - "evolutions": [ - { - "pokemon": 80, - "form": 1020 - }, - { - "pokemon": 199, - "form": 1238 - } - ] - }, - "1018": { - "name": "Shadow", - "proto": "SLOWPOKE_SHADOW", - "evolutions": [ - { - "pokemon": 80, - "form": 1021 - }, - { - "pokemon": 199, - "form": 1239 - } - ] - }, - "1019": { - "name": "Purified", - "proto": "SLOWPOKE_PURIFIED", - "evolutions": [ - { - "pokemon": 80, - "form": 1022 - }, - { - "pokemon": 199, - "form": 1240 - } - ] - }, - "2582": { - "name": "Galarian", - "proto": "SLOWPOKE_GALARIAN", - "evolutions": [ - { - "pokemon": 80, - "form": 2583 - } - ], - "quick_moves": [ - "Confusion", - "Iron Tail" - ], - "charged_moves": [ - "Surf", - "Psyshock", - "Psychic" - ], - "types": [ - "Psychic" - ] - }, - "2673": { - "name": "2020", - "proto": "SLOWPOKE_2020", - "evolutions": [ - { - "pokemon": 80, - "form": 2674 - } - ] - } - }, - "default_form_id": 1017, - "pokedex_id": 79, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Psychic" - ], - "attack": 109, - "defense": 98, - "stamina": 207, - "height": 1.2, - "weight": 36, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Confusion" - ], - "charged_moves": [ - "Water Pulse", - "Psyshock", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 80, - "form": 1020 - }, - { - "pokemon": 199, - "form": 1238 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 79, - "little": true - }, - "80": { - "name": "Slowbro", - "forms": { - "1020": { - "name": "Normal", - "proto": "SLOWBRO_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1021": { - "name": "Shadow", - "proto": "SLOWBRO_SHADOW" - }, - "1022": { - "name": "Purified", - "proto": "SLOWBRO_PURIFIED", - "temp_evolutions": { - "1": {} - } - }, - "2583": { - "name": "Galarian", - "proto": "SLOWBRO_GALARIAN", - "attack": 182, - "defense": 156, - "stamina": 216, - "height": 1.6, - "weight": 70.5, - "quick_moves": [ - "Confusion", - "Poison Jab" - ], - "charged_moves": [ - "Focus Blast", - "Psychic", - "Sludge Bomb" - ], - "types": [ - "Poison", - "Psychic" - ] - }, - "2674": { - "name": "2021", - "proto": "SLOWBRO_2021", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1020, - "pokedex_id": 80, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Psychic" - ], - "attack": 177, - "defense": 180, - "stamina": 216, - "height": 1.6, - "weight": 78.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Confusion" - ], - "charged_moves": [ - "Water Pulse", - "Psychic", - "Ice Beam" - ], - "temp_evolutions": { - "1": { - "attack": 224, - "defense": 259, - "stamina": 216, - "height": 2, - "weight": 120 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 79 - }, - "81": { - "name": "Magnemite", - "forms": { - "655": { - "name": "Normal", - "proto": "MAGNEMITE_NORMAL", - "evolutions": [ - { - "pokemon": 82, - "form": 658 - } - ] - }, - "656": { - "name": "Shadow", - "proto": "MAGNEMITE_SHADOW", - "evolutions": [ - { - "pokemon": 82, - "form": 659 - } - ] - }, - "657": { - "name": "Purified", - "proto": "MAGNEMITE_PURIFIED", - "evolutions": [ - { - "pokemon": 82, - "form": 660 - } - ] - } - }, - "default_form_id": 655, - "pokedex_id": 81, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric", - "Steel" - ], - "attack": 165, - "defense": 121, - "stamina": 93, - "height": 0.3, - "weight": 6, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Spark", - "Thunder Shock" - ], - "charged_moves": [ - "Discharge", - "Magnet Bomb", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 82, - "form": 658 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 81, - "little": true - }, - "82": { - "name": "Magneton", - "forms": { - "658": { - "name": "Normal", - "proto": "MAGNETON_NORMAL", - "evolutions": [ - { - "pokemon": 462, - "form": 661 - } - ] - }, - "659": { - "name": "Shadow", - "proto": "MAGNETON_SHADOW", - "evolutions": [ - { - "pokemon": 462, - "form": 662 - } - ] - }, - "660": { - "name": "Purified", - "proto": "MAGNETON_PURIFIED", - "evolutions": [ - { - "pokemon": 462, - "form": 663 - } - ] - } - }, - "default_form_id": 658, - "pokedex_id": 82, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric", - "Steel" - ], - "attack": 223, - "defense": 169, - "stamina": 137, - "height": 1, - "weight": 60, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Spark", - "Charge Beam", - "Thunder Shock" - ], - "charged_moves": [ - "Zap Cannon", - "Magnet Bomb", - "Flash Cannon", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 462 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 81 - }, - "83": { - "name": "Farfetchd", - "forms": { - "1023": { - "name": "Normal", - "proto": "FARFETCHD_NORMAL" - }, - "1024": { - "name": "Shadow", - "proto": "FARFETCHD_SHADOW" - }, - "1025": { - "name": "Purified", - "proto": "FARFETCHD_PURIFIED" - }, - "2338": { - "name": "Galarian", - "proto": "FARFETCHD_GALARIAN", - "evolutions": [ - { - "pokemon": 865, - "form": 2510 - } - ], - "attack": 174, - "defense": 114, - "stamina": 141, - "height": 0.8, - "weight": 42, - "quick_moves": [ - "Rock Smash", - "Fury Cutter" - ], - "charged_moves": [ - "Brick Break", - "Brave Bird", - "Leaf Blade" - ], - "types": [ - "Fighting" - ], - "little": true - } - }, - "default_form_id": 1023, - "pokedex_id": 83, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 124, - "defense": 115, - "stamina": 141, - "height": 0.8, - "weight": 15, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Air Slash", - "Fury Cutter" - ], - "charged_moves": [ - "Aerial Ace", - "Air Cutter", - "Leaf Blade" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 83 - }, - "84": { - "name": "Doduo", - "forms": { - "1026": { - "name": "Normal", - "proto": "DODUO_NORMAL" - }, - "1027": { - "name": "Shadow", - "proto": "DODUO_SHADOW" - }, - "1028": { - "name": "Purified", - "proto": "DODUO_PURIFIED" - } - }, - "default_form_id": 1026, - "pokedex_id": 84, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 158, - "defense": 83, - "stamina": 111, - "height": 1.4, - "weight": 39.2, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Quick Attack" - ], - "charged_moves": [ - "Drill Peck", - "Aerial Ace", - "Brave Bird" - ], - "evolutions": [ - { - "pokemon": 85 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 84, - "little": true - }, - "85": { - "name": "Dodrio", - "forms": { - "1029": { - "name": "Normal", - "proto": "DODRIO_NORMAL" - }, - "1030": { - "name": "Shadow", - "proto": "DODRIO_SHADOW" - }, - "1031": { - "name": "Purified", - "proto": "DODRIO_PURIFIED" - } - }, - "default_form_id": 1029, - "pokedex_id": 85, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal", - "Flying" - ], - "attack": 218, - "defense": 140, - "stamina": 155, - "height": 1.8, - "weight": 85.2, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Feint Attack", - "Steel Wing" - ], - "charged_moves": [ - "Drill Peck", - "Aerial Ace", - "Brave Bird" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 84 - }, - "86": { - "name": "Seel", - "forms": { - "1032": { - "name": "Normal", - "proto": "SEEL_NORMAL" - }, - "1033": { - "name": "Shadow", - "proto": "SEEL_SHADOW" - }, - "1034": { - "name": "Purified", - "proto": "SEEL_PURIFIED" - } - }, - "default_form_id": 1032, - "pokedex_id": 86, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 85, - "defense": 121, - "stamina": 163, - "height": 1.1, - "weight": 90, - "flee_rate": 0.09, - "capture_rate": 0.5, - "quick_moves": [ - "Ice Shard", - "Lick" - ], - "charged_moves": [ - "Aurora Beam", - "Icy Wind", - "Aqua Tail" - ], - "evolutions": [ - { - "pokemon": 87 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 86, - "little": true - }, - "87": { - "name": "Dewgong", - "forms": { - "1035": { - "name": "Normal", - "proto": "DEWGONG_NORMAL" - }, - "1036": { - "name": "Shadow", - "proto": "DEWGONG_SHADOW" - }, - "1037": { - "name": "Purified", - "proto": "DEWGONG_PURIFIED" - } - }, - "default_form_id": 1035, - "pokedex_id": 87, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Ice" - ], - "attack": 139, - "defense": 177, - "stamina": 207, - "height": 1.7, - "weight": 120, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Frost Breath", - "Iron Tail" - ], - "charged_moves": [ - "Aurora Beam", - "Water Pulse", - "Blizzard" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 86 - }, - "88": { - "name": "Grimer", - "forms": { - "73": { - "name": "Normal", - "proto": "GRIMER_NORMAL", - "evolutions": [ - { - "pokemon": 89, - "form": 75 - } - ] - }, - "74": { - "name": "Alola", - "proto": "GRIMER_ALOLA", - "evolutions": [ - { - "pokemon": 89, - "form": 76 - } - ], - "height": 0.7, - "weight": 42, - "quick_moves": [ - "Poison Jab", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Gunk Shot", - "Sludge Bomb" - ], - "types": [ - "Poison", - "Dark" - ] - }, - "220": { - "name": "Shadow", - "proto": "GRIMER_SHADOW", - "evolutions": [ - { - "pokemon": 89, - "form": 222 - } - ] - }, - "221": { - "name": "Purified", - "proto": "GRIMER_PURIFIED", - "evolutions": [ - { - "pokemon": 89, - "form": 223 - } - ] - } - }, - "default_form_id": 73, - "pokedex_id": 88, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 135, - "defense": 90, - "stamina": 190, - "height": 0.9, - "weight": 30, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Poison Jab", - "Mud Slap" - ], - "charged_moves": [ - "Sludge", - "Mud Bomb", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 89, - "form": 75 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 88, - "little": true - }, - "89": { - "name": "Muk", - "forms": { - "75": { - "name": "Normal", - "proto": "MUK_NORMAL" - }, - "76": { - "name": "Alola", - "proto": "MUK_ALOLA", - "height": 1, - "weight": 52, - "quick_moves": [ - "Bite", - "Poison Jab", - "Snarl" - ], - "charged_moves": [ - "Dark Pulse", - "Gunk Shot", - "Sludge Wave", - "Acid Spray" - ], - "types": [ - "Poison", - "Dark" - ] - }, - "222": { - "name": "Shadow", - "proto": "MUK_SHADOW" - }, - "223": { - "name": "Purified", - "proto": "MUK_PURIFIED" - } - }, - "default_form_id": 75, - "pokedex_id": 89, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 190, - "defense": 172, - "stamina": 233, - "height": 1.2, - "weight": 30, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Infestation", - "Poison Jab" - ], - "charged_moves": [ - "Dark Pulse", - "Gunk Shot", - "Sludge Wave", - "Thunder Punch", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 88 - }, - "90": { - "name": "Shellder", - "forms": { - "876": { - "name": "Normal", - "proto": "SHELLDER_NORMAL", - "evolutions": [ - { - "pokemon": 91, - "form": 879 - } - ] - }, - "877": { - "name": "Shadow", - "proto": "SHELLDER_SHADOW", - "evolutions": [ - { - "pokemon": 91, - "form": 880 - } - ] - }, - "878": { - "name": "Purified", - "proto": "SHELLDER_PURIFIED", - "evolutions": [ - { - "pokemon": 91, - "form": 881 - } - ] - } - }, - "default_form_id": 876, - "pokedex_id": 90, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 116, - "defense": 134, - "stamina": 102, - "height": 0.3, - "weight": 4, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Ice Shard", - "Tackle" - ], - "charged_moves": [ - "Bubble Beam", - "Water Pulse", - "Icy Wind" - ], - "evolutions": [ - { - "pokemon": 91, - "form": 879 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 90, - "little": true - }, - "91": { - "name": "Cloyster", - "forms": { - "879": { - "name": "Normal", - "proto": "CLOYSTER_NORMAL" - }, - "880": { - "name": "Shadow", - "proto": "CLOYSTER_SHADOW" - }, - "881": { - "name": "Purified", - "proto": "CLOYSTER_PURIFIED" - } - }, - "default_form_id": 879, - "pokedex_id": 91, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Ice" - ], - "attack": 186, - "defense": 256, - "stamina": 137, - "height": 1.5, - "weight": 132.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Frost Breath", - "Ice Shard" - ], - "charged_moves": [ - "Aurora Beam", - "Hydro Pump", - "Avalanche", - "Icy Wind" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 90 - }, - "92": { - "name": "Gastly", - "forms": { - "1038": { - "name": "Normal", - "proto": "GASTLY_NORMAL" - }, - "1039": { - "name": "Shadow", - "proto": "GASTLY_SHADOW" - }, - "1040": { - "name": "Purified", - "proto": "GASTLY_PURIFIED" - } - }, - "default_form_id": 1038, - "pokedex_id": 92, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ghost", - "Poison" - ], - "attack": 186, - "defense": 67, - "stamina": 102, - "height": 1.3, - "weight": 0.1, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Lick", - "Astonish" - ], - "charged_moves": [ - "Night Shade", - "Dark Pulse", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 93 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 92, - "little": true - }, - "93": { - "name": "Haunter", - "forms": { - "1041": { - "name": "Normal", - "proto": "HAUNTER_NORMAL" - }, - "1042": { - "name": "Shadow", - "proto": "HAUNTER_SHADOW" - }, - "1043": { - "name": "Purified", - "proto": "HAUNTER_PURIFIED" - } - }, - "default_form_id": 1041, - "pokedex_id": 93, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ghost", - "Poison" - ], - "attack": 223, - "defense": 107, - "stamina": 128, - "height": 1.6, - "weight": 0.1, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Shadow Claw", - "Astonish" - ], - "charged_moves": [ - "Shadow Punch", - "Dark Pulse", - "Sludge Bomb", - "Shadow Ball" - ], - "evolutions": [ - { - "pokemon": 94 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 92 - }, - "94": { - "name": "Gengar", - "forms": { - "1044": { - "name": "Normal", - "proto": "GENGAR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1045": { - "name": "Shadow", - "proto": "GENGAR_SHADOW" - }, - "1046": { - "name": "Purified", - "proto": "GENGAR_PURIFIED" - }, - "2586": { - "name": "Costume 2020", - "proto": "GENGAR_COSTUME_2020", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1044, - "pokedex_id": 94, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ghost", - "Poison" - ], - "attack": 261, - "defense": 149, - "stamina": 155, - "height": 1.5, - "weight": 40.5, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Sucker Punch", - "Hex", - "Shadow Claw" - ], - "charged_moves": [ - "Shadow Ball", - "Focus Blast", - "Sludge Bomb" - ], - "temp_evolutions": { - "1": { - "attack": 349, - "defense": 199, - "stamina": 155, - "height": 1.4 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 92 - }, - "95": { - "name": "Onix", - "forms": { - "902": { - "name": "Normal", - "proto": "ONIX_NORMAL", - "evolutions": [ - { - "pokemon": 208, - "form": 905 - } - ] - }, - "903": { - "name": "Shadow", - "proto": "ONIX_SHADOW", - "evolutions": [ - { - "pokemon": 208, - "form": 906 - } - ] - }, - "904": { - "name": "Purified", - "proto": "ONIX_PURIFIED", - "evolutions": [ - { - "pokemon": 208, - "form": 907 - } - ] - }, - "2334": { - "name": "Costume 2020", - "proto": "ONIX_COSTUME_2020" - } - }, - "default_form_id": 902, - "pokedex_id": 95, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Ground" - ], - "attack": 85, - "defense": 232, - "stamina": 111, - "height": 8.8, - "weight": 210, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Rock Throw", - "Tackle" - ], - "charged_moves": [ - "Sand Tomb", - "Stone Edge", - "Heavy Slam" - ], - "evolutions": [ - { - "pokemon": 208, - "form": 905 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 95, - "little": true - }, - "96": { - "name": "Drowzee", - "forms": { - "214": { - "name": "Normal", - "proto": "DROWZEE_NORMAL", - "evolutions": [ - { - "pokemon": 97, - "form": 217 - } - ] - }, - "215": { - "name": "Shadow", - "proto": "DROWZEE_SHADOW", - "evolutions": [ - { - "pokemon": 97, - "form": 218 - } - ] - }, - "216": { - "name": "Purified", - "proto": "DROWZEE_PURIFIED", - "evolutions": [ - { - "pokemon": 97, - "form": 219 - } - ] - } - }, - "default_form_id": 214, - "pokedex_id": 96, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 89, - "defense": 136, - "stamina": 155, - "height": 1, - "weight": 32.4, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Confusion" - ], - "charged_moves": [ - "Psybeam", - "Psyshock", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 97, - "form": 217 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 96, - "little": true - }, - "97": { - "name": "Hypno", - "forms": { - "217": { - "name": "Normal", - "proto": "HYPNO_NORMAL" - }, - "218": { - "name": "Shadow", - "proto": "HYPNO_SHADOW" - }, - "219": { - "name": "Purified", - "proto": "HYPNO_PURIFIED" - } - }, - "default_form_id": 217, - "pokedex_id": 97, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 144, - "defense": 193, - "stamina": 198, - "height": 1.6, - "weight": 75.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Confusion" - ], - "charged_moves": [ - "Futuresight", - "Psychic", - "Focus Blast", - "Fire Punch", - "Ice Punch", - "Thunder Punch", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 96 - }, - "98": { - "name": "Krabby", - "forms": { - "870": { - "name": "Normal", - "proto": "KRABBY_NORMAL", - "evolutions": [ - { - "pokemon": 99, - "form": 873 - } - ] - }, - "871": { - "name": "Shadow", - "proto": "KRABBY_SHADOW", - "evolutions": [ - { - "pokemon": 99, - "form": 874 - } - ] - }, - "872": { - "name": "Purified", - "proto": "KRABBY_PURIFIED", - "evolutions": [ - { - "pokemon": 99, - "form": 875 - } - ] - } - }, - "default_form_id": 870, - "pokedex_id": 98, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 181, - "defense": 124, - "stamina": 102, - "height": 0.4, - "weight": 6.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bubble", - "Mud Shot" - ], - "charged_moves": [ - "Vice Grip", - "Bubble Beam", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 99, - "form": 873 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 98, - "little": true - }, - "99": { - "name": "Kingler", - "forms": { - "873": { - "name": "Normal", - "proto": "KINGLER_NORMAL" - }, - "874": { - "name": "Shadow", - "proto": "KINGLER_SHADOW" - }, - "875": { - "name": "Purified", - "proto": "KINGLER_PURIFIED" - } - }, - "default_form_id": 873, - "pokedex_id": 99, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 240, - "defense": 181, - "stamina": 146, - "height": 1.3, - "weight": 60, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bubble", - "Metal Claw" - ], - "charged_moves": [ - "Vice Grip", - "X Scissor", - "Water Pulse", - "Crabhammer" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 98 - }, - "100": { - "name": "Voltorb", - "forms": { - "1047": { - "name": "Normal", - "proto": "VOLTORB_NORMAL" - }, - "1048": { - "name": "Shadow", - "proto": "VOLTORB_SHADOW" - }, - "1049": { - "name": "Purified", - "proto": "VOLTORB_PURIFIED" - } - }, - "default_form_id": 1047, - "pokedex_id": 100, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 109, - "defense": 111, - "stamina": 120, - "height": 0.5, - "weight": 10.4, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Spark", - "Tackle" - ], - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Gyro Ball" - ], - "evolutions": [ - { - "pokemon": 101 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 100, - "little": true - }, - "101": { - "name": "Electrode", - "forms": { - "1050": { - "name": "Normal", - "proto": "ELECTRODE_NORMAL" - }, - "1051": { - "name": "Shadow", - "proto": "ELECTRODE_SHADOW" - }, - "1052": { - "name": "Purified", - "proto": "ELECTRODE_PURIFIED" - } - }, - "default_form_id": 1050, - "pokedex_id": 101, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 173, - "defense": 173, - "stamina": 155, - "height": 1.2, - "weight": 66.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Spark", - "Volt Switch" - ], - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Hyper Beam", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 100 - }, - "102": { - "name": "Exeggcute", - "forms": { - "729": { - "name": "Normal", - "proto": "EXEGGCUTE_NORMAL", - "evolutions": [ - { - "pokemon": 103, - "form": 77 - } - ] - }, - "730": { - "name": "Shadow", - "proto": "EXEGGCUTE_SHADOW", - "evolutions": [ - { - "pokemon": 103, - "form": 732 - } - ] - }, - "731": { - "name": "Purified", - "proto": "EXEGGCUTE_PURIFIED", - "evolutions": [ - { - "pokemon": 103, - "form": 733 - } - ] - } - }, - "default_form_id": 729, - "pokedex_id": 102, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Psychic" - ], - "attack": 107, - "defense": 125, - "stamina": 155, - "height": 0.4, - "weight": 2.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Confusion", - "Bullet Seed" - ], - "charged_moves": [ - "Seed Bomb", - "Psychic", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 103, - "form": 77 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 102, - "little": true - }, - "103": { - "name": "Exeggutor", - "forms": { - "77": { - "name": "Normal", - "proto": "EXEGGUTOR_NORMAL" - }, - "78": { - "name": "Alola", - "proto": "EXEGGUTOR_ALOLA", - "attack": 230, - "defense": 153, - "stamina": 216, - "height": 10.9, - "weight": 415.6, - "quick_moves": [ - "Bullet Seed", - "Dragon Tail" - ], - "charged_moves": [ - "Seed Bomb", - "Dragon Pulse", - "Solar Beam" - ], - "types": [ - "Grass", - "Dragon" - ] - }, - "732": { - "name": "Shadow", - "proto": "EXEGGUTOR_SHADOW" - }, - "733": { - "name": "Purified", - "proto": "EXEGGUTOR_PURIFIED" - } - }, - "default_form_id": 77, - "pokedex_id": 103, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass", - "Psychic" - ], - "attack": 233, - "defense": 149, - "stamina": 216, - "height": 2, - "weight": 120, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Bullet Seed", - "Extrasensory", - "Confusion" - ], - "charged_moves": [ - "Seed Bomb", - "Psychic", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 102 - }, - "104": { - "name": "Cubone", - "forms": { - "224": { - "name": "Normal", - "proto": "CUBONE_NORMAL", - "evolutions": [ - { - "pokemon": 105, - "form": 79 - } - ] - }, - "225": { - "name": "Shadow", - "proto": "CUBONE_SHADOW", - "evolutions": [ - { - "pokemon": 105, - "form": 227 - } - ] - }, - "226": { - "name": "Purified", - "proto": "CUBONE_PURIFIED", - "evolutions": [ - { - "pokemon": 105, - "form": 228 - } - ] - } - }, - "default_form_id": 224, - "pokedex_id": 104, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 90, - "defense": 144, - "stamina": 137, - "height": 0.4, - "weight": 6.5, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Mud Slap", - "Rock Smash" - ], - "charged_moves": [ - "Bone Club", - "Dig", - "Bulldoze" - ], - "evolutions": [ - { - "pokemon": 105, - "form": 79 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 104, - "little": true - }, - "105": { - "name": "Marowak", - "forms": { - "79": { - "name": "Normal", - "proto": "MAROWAK_NORMAL" - }, - "80": { - "name": "Alola", - "proto": "MAROWAK_ALOLA", - "height": 1, - "weight": 34, - "quick_moves": [ - "Hex", - "Rock Smash", - "Fire Spin" - ], - "charged_moves": [ - "Bone Club", - "Shadow Ball", - "Fire Blast", - "Flame Wheel" - ], - "types": [ - "Fire", - "Ghost" - ] - }, - "227": { - "name": "Shadow", - "proto": "MAROWAK_SHADOW" - }, - "228": { - "name": "Purified", - "proto": "MAROWAK_PURIFIED" - } - }, - "default_form_id": 79, - "pokedex_id": 105, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground" - ], - "attack": 144, - "defense": 186, - "stamina": 155, - "height": 1, - "weight": 45, - "flee_rate": 0.06, - "capture_rate": 0.15, - "quick_moves": [ - "Mud Slap", - "Rock Smash" - ], - "charged_moves": [ - "Bone Club", - "Dig", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 104 - }, - "106": { - "name": "Hitmonlee", - "forms": { - "713": { - "name": "Normal", - "proto": "HITMONLEE_NORMAL" - }, - "714": { - "name": "Shadow", - "proto": "HITMONLEE_SHADOW" - }, - "715": { - "name": "Purified", - "proto": "HITMONLEE_PURIFIED" - } - }, - "default_form_id": 713, - "pokedex_id": 106, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 224, - "defense": 181, - "stamina": 137, - "height": 1.5, - "weight": 49.8, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Low Kick", - "Rock Smash" - ], - "charged_moves": [ - "Close Combat", - "Low Sweep", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 236 - }, - "107": { - "name": "Hitmonchan", - "forms": { - "277": { - "name": "Normal", - "proto": "HITMONCHAN_NORMAL" - }, - "278": { - "name": "Shadow", - "proto": "HITMONCHAN_SHADOW" - }, - "279": { - "name": "Purified", - "proto": "HITMONCHAN_PURIFIED" - } - }, - "default_form_id": 277, - "pokedex_id": 107, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fighting" - ], - "attack": 193, - "defense": 197, - "stamina": 137, - "height": 1.4, - "weight": 50.2, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Bullet Punch", - "Counter" - ], - "charged_moves": [ - "Fire Punch", - "Ice Punch", - "Thunder Punch", - "Close Combat", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 236 - }, - "108": { - "name": "Lickitung", - "forms": { - "1053": { - "name": "Normal", - "proto": "LICKITUNG_NORMAL" - }, - "1054": { - "name": "Shadow", - "proto": "LICKITUNG_SHADOW" - }, - "1055": { - "name": "Purified", - "proto": "LICKITUNG_PURIFIED" - } - }, - "default_form_id": 1053, - "pokedex_id": 108, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 108, - "defense": 137, - "stamina": 207, - "height": 1.2, - "weight": 65.5, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Lick", - "Zen Headbutt" - ], - "charged_moves": [ - "Hyper Beam", - "Stomp", - "Power Whip" - ], - "evolutions": [ - { - "pokemon": 463 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 108, - "little": true - }, - "109": { - "name": "Koffing", - "forms": { - "703": { - "name": "Normal", - "proto": "KOFFING_NORMAL", - "evolutions": [ - { - "pokemon": 110, - "form": 706 - } - ] - }, - "704": { - "name": "Shadow", - "proto": "KOFFING_SHADOW", - "evolutions": [ - { - "pokemon": 110, - "form": 707 - } - ] - }, - "705": { - "name": "Purified", - "proto": "KOFFING_PURIFIED", - "evolutions": [ - { - "pokemon": 110, - "form": 708 - } - ] - } - }, - "default_form_id": 703, - "pokedex_id": 109, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 119, - "defense": 141, - "stamina": 120, - "height": 0.6, - "weight": 1, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Infestation" - ], - "charged_moves": [ - "Sludge", - "Sludge Bomb", - "Dark Pulse" - ], - "evolutions": [ - { - "pokemon": 110, - "form": 706 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 109, - "little": true - }, - "110": { - "name": "Weezing", - "forms": { - "706": { - "name": "Normal", - "proto": "WEEZING_NORMAL" - }, - "707": { - "name": "Shadow", - "proto": "WEEZING_SHADOW" - }, - "708": { - "name": "Purified", - "proto": "WEEZING_PURIFIED" - }, - "944": { - "name": "Galarian", - "proto": "WEEZING_GALARIAN", - "height": 3, - "weight": 16, - "quick_moves": [ - "Tackle" - ], - "charged_moves": [ - "Sludge", - "Hyper Beam", - "Play Rough", - "Hyper Beam", - "Overheat" - ], - "types": [ - "Poison", - "Fairy" - ] - } - }, - "default_form_id": 706, - "pokedex_id": 110, - "genId": "1", - "generation": "Kanto", - "types": [ - "Poison" - ], - "attack": 174, - "defense": 197, - "stamina": 163, - "height": 1.2, - "weight": 9.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Infestation" - ], - "charged_moves": [ - "Sludge Bomb", - "Shadow Ball", - "Dark Pulse", - "Thunderbolt" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 109 - }, - "111": { - "name": "Rhyhorn", - "forms": { - "846": { - "name": "Normal", - "proto": "RHYHORN_NORMAL", - "evolutions": [ - { - "pokemon": 112, - "form": 849 - } - ] - }, - "847": { - "name": "Shadow", - "proto": "RHYHORN_SHADOW", - "evolutions": [ - { - "pokemon": 112, - "form": 850 - } - ] - }, - "848": { - "name": "Purified", - "proto": "RHYHORN_PURIFIED", - "evolutions": [ - { - "pokemon": 112, - "form": 851 - } - ] - } - }, - "default_form_id": 846, - "pokedex_id": 111, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground", - "Rock" - ], - "attack": 140, - "defense": 127, - "stamina": 190, - "height": 1, - "weight": 115, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Mud Slap", - "Rock Smash" - ], - "charged_moves": [ - "Bulldoze", - "Horn Attack", - "Stomp" - ], - "evolutions": [ - { - "pokemon": 112, - "form": 849 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 111, - "little": true - }, - "112": { - "name": "Rhydon", - "forms": { - "849": { - "name": "Normal", - "proto": "RHYDON_NORMAL", - "evolutions": [ - { - "pokemon": 464, - "form": 852 - } - ] - }, - "850": { - "name": "Shadow", - "proto": "RHYDON_SHADOW", - "evolutions": [ - { - "pokemon": 464, - "form": 853 - } - ] - }, - "851": { - "name": "Purified", - "proto": "RHYDON_PURIFIED", - "evolutions": [ - { - "pokemon": 464, - "form": 854 - } - ] - } - }, - "default_form_id": 849, - "pokedex_id": 112, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ground", - "Rock" - ], - "attack": 222, - "defense": 171, - "stamina": 233, - "height": 1.9, - "weight": 120, - "flee_rate": 0.06, - "capture_rate": 0.05, - "quick_moves": [ - "Mud Slap", - "Rock Smash" - ], - "charged_moves": [ - "Surf", - "Earthquake", - "Stone Edge" - ], - "evolutions": [ - { - "pokemon": 464, - "form": 852 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 111 - }, - "113": { - "name": "Chansey", - "forms": { - "1056": { - "name": "Normal", - "proto": "CHANSEY_NORMAL" - }, - "1057": { - "name": "Shadow", - "proto": "CHANSEY_SHADOW" - }, - "1058": { - "name": "Purified", - "proto": "CHANSEY_PURIFIED" - } - }, - "default_form_id": 1056, - "pokedex_id": 113, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 60, - "defense": 128, - "stamina": 487, - "height": 1.1, - "weight": 34.6, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic", - "Hyper Beam", - "Dazzling Gleam" - ], - "evolutions": [ - { - "pokemon": 242 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 113 - }, - "114": { - "name": "Tangela", - "forms": { - "1059": { - "name": "Normal", - "proto": "TANGELA_NORMAL", - "evolutions": [ - { - "pokemon": 465, - "form": 1823 - } - ] - }, - "1060": { - "name": "Shadow", - "proto": "TANGELA_SHADOW", - "evolutions": [ - { - "pokemon": 465, - "form": 1824 - } - ] - }, - "1061": { - "name": "Purified", - "proto": "TANGELA_PURIFIED", - "evolutions": [ - { - "pokemon": 465, - "form": 1825 - } - ] - } - }, - "default_form_id": 1059, - "pokedex_id": 114, - "genId": "1", - "generation": "Kanto", - "types": [ - "Grass" - ], - "attack": 183, - "defense": 169, - "stamina": 163, - "height": 1, - "weight": 35, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Vine Whip", - "Infestation" - ], - "charged_moves": [ - "Grass Knot", - "Sludge Bomb", - "Solar Beam" - ], - "evolutions": [ - { - "pokemon": 465, - "form": 1823 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 114, - "little": true - }, - "115": { - "name": "Kangaskhan", - "forms": { - "839": { - "name": "Normal", - "proto": "KANGASKHAN_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "840": { - "name": "Shadow", - "proto": "KANGASKHAN_SHADOW" - }, - "841": { - "name": "Purified", - "proto": "KANGASKHAN_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 839, - "pokedex_id": 115, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 181, - "defense": 165, - "stamina": 233, - "height": 2.2, - "weight": 80, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Mud Slap", - "Low Kick" - ], - "charged_moves": [ - "Crunch", - "Earthquake", - "Outrage", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 115, - "temp_evolutions": { - "1": { - "attack": 246, - "defense": 210, - "stamina": 233, - "unreleased": true - } - } - }, - "116": { - "name": "Horsea", - "forms": { - "1062": { - "name": "Normal", - "proto": "HORSEA_NORMAL", - "evolutions": [ - { - "pokemon": 117, - "form": 1065 - } - ] - }, - "1063": { - "name": "Shadow", - "proto": "HORSEA_SHADOW", - "evolutions": [ - { - "pokemon": 117, - "form": 1066 - } - ] - }, - "1064": { - "name": "Purified", - "proto": "HORSEA_PURIFIED", - "evolutions": [ - { - "pokemon": 117, - "form": 1067 - } - ] - } - }, - "default_form_id": 1062, - "pokedex_id": 116, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 129, - "defense": 103, - "stamina": 102, - "height": 0.4, - "weight": 8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Bubble" - ], - "charged_moves": [ - "Bubble Beam", - "Dragon Pulse", - "Flash Cannon" - ], - "evolutions": [ - { - "pokemon": 117, - "form": 1065 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 116, - "little": true - }, - "117": { - "name": "Seadra", - "forms": { - "1065": { - "name": "Normal", - "proto": "SEADRA_NORMAL", - "evolutions": [ - { - "pokemon": 230, - "form": 1298 - } - ] - }, - "1066": { - "name": "Shadow", - "proto": "SEADRA_SHADOW", - "evolutions": [ - { - "pokemon": 230, - "form": 1299 - } - ] - }, - "1067": { - "name": "Purified", - "proto": "SEADRA_PURIFIED", - "evolutions": [ - { - "pokemon": 230, - "form": 1300 - } - ] - } - }, - "default_form_id": 1065, - "pokedex_id": 117, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 187, - "defense": 156, - "stamina": 146, - "height": 1.2, - "weight": 25, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Dragon Breath" - ], - "charged_moves": [ - "Aurora Beam", - "Dragon Pulse", - "Hydro Pump" - ], - "evolutions": [ - { - "pokemon": 230, - "form": 1298 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 116 - }, - "118": { - "name": "Goldeen", - "forms": { - "1068": { - "name": "Normal", - "proto": "GOLDEEN_NORMAL" - }, - "1069": { - "name": "Shadow", - "proto": "GOLDEEN_SHADOW" - }, - "1070": { - "name": "Purified", - "proto": "GOLDEEN_PURIFIED" - } - }, - "default_form_id": 1068, - "pokedex_id": 118, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 123, - "defense": 110, - "stamina": 128, - "height": 0.6, - "weight": 15, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Mud Shot" - ], - "charged_moves": [ - "Water Pulse", - "Horn Attack", - "Aqua Tail" - ], - "evolutions": [ - { - "pokemon": 119 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 118, - "little": true - }, - "119": { - "name": "Seaking", - "forms": { - "1071": { - "name": "Normal", - "proto": "SEAKING_NORMAL" - }, - "1072": { - "name": "Shadow", - "proto": "SEAKING_SHADOW" - }, - "1073": { - "name": "Purified", - "proto": "SEAKING_PURIFIED" - } - }, - "default_form_id": 1071, - "pokedex_id": 119, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 175, - "defense": 147, - "stamina": 190, - "height": 1.3, - "weight": 39, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Waterfall" - ], - "charged_moves": [ - "Ice Beam", - "Water Pulse", - "Megahorn" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 118 - }, - "120": { - "name": "Staryu", - "forms": { - "1074": { - "name": "Normal", - "proto": "STARYU_NORMAL" - }, - "1075": { - "name": "Shadow", - "proto": "STARYU_SHADOW" - }, - "1076": { - "name": "Purified", - "proto": "STARYU_PURIFIED" - } - }, - "default_form_id": 1074, - "pokedex_id": 120, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 137, - "defense": 112, - "stamina": 102, - "height": 0.8, - "weight": 34.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Water Gun" - ], - "charged_moves": [ - "Swift", - "Bubble Beam", - "Power Gem" - ], - "evolutions": [ - { - "pokemon": 121 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 120, - "little": true - }, - "121": { - "name": "Starmie", - "forms": { - "1077": { - "name": "Normal", - "proto": "STARMIE_NORMAL" - }, - "1078": { - "name": "Shadow", - "proto": "STARMIE_SHADOW" - }, - "1079": { - "name": "Purified", - "proto": "STARMIE_PURIFIED" - } - }, - "default_form_id": 1077, - "pokedex_id": 121, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Psychic" - ], - "attack": 210, - "defense": 184, - "stamina": 155, - "height": 1.1, - "weight": 80, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Hidden Power", - "Water Gun" - ], - "charged_moves": [ - "Hydro Pump", - "Power Gem", - "Psychic", - "Thunder", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 120 - }, - "122": { - "name": "Mr Mime", - "forms": { - "1080": { - "name": "Normal", - "proto": "MR_MIME_NORMAL" - }, - "1081": { - "name": "Shadow", - "proto": "MR_MIME_SHADOW" - }, - "1082": { - "name": "Purified", - "proto": "MR_MIME_PURIFIED" - }, - "2339": { - "name": "Galarian", - "proto": "MR_MIME_GALARIAN", - "evolutions": [ - { - "pokemon": 866, - "form": 2513 - } - ], - "attack": 183, - "defense": 169, - "stamina": 137, - "height": 1.4, - "weight": 56.8, - "charged_moves": [ - "Psybeam", - "Psychic", - "Ice Punch" - ], - "types": [ - "Ice", - "Psychic" - ] - } - }, - "default_form_id": 1080, - "pokedex_id": 122, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic", - "Fairy" - ], - "attack": 192, - "defense": 205, - "stamina": 120, - "height": 1.3, - "weight": 54.5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Confusion", - "Zen Headbutt" - ], - "charged_moves": [ - "Psybeam", - "Psychic", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 122 - }, - "123": { - "name": "Scyther", - "forms": { - "247": { - "name": "Normal", - "proto": "SCYTHER_NORMAL", - "evolutions": [ - { - "pokemon": 212, - "form": 250 - } - ] - }, - "248": { - "name": "Shadow", - "proto": "SCYTHER_SHADOW", - "evolutions": [ - { - "pokemon": 212, - "form": 251 - } - ] - }, - "249": { - "name": "Purified", - "proto": "SCYTHER_PURIFIED", - "evolutions": [ - { - "pokemon": 212, - "form": 252 - } - ] - } - }, - "default_form_id": 247, - "pokedex_id": 123, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug", - "Flying" - ], - "attack": 218, - "defense": 170, - "stamina": 172, - "height": 1.5, - "weight": 56, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Fury Cutter", - "Air Slash" - ], - "charged_moves": [ - "Night Slash", - "X Scissor", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 212, - "form": 250 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 123, - "little": true - }, - "124": { - "name": "Jynx", - "forms": { - "1083": { - "name": "Normal", - "proto": "JYNX_NORMAL" - }, - "1084": { - "name": "Shadow", - "proto": "JYNX_SHADOW" - }, - "1085": { - "name": "Purified", - "proto": "JYNX_PURIFIED" - } - }, - "default_form_id": 1083, - "pokedex_id": 124, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ice", - "Psychic" - ], - "attack": 223, - "defense": 151, - "stamina": 163, - "height": 1.4, - "weight": 40.6, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Frost Breath", - "Confusion" - ], - "charged_moves": [ - "Draining Kiss", - "Avalanche", - "Psyshock", - "Focus Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 124 - }, - "125": { - "name": "Electabuzz", - "forms": { - "640": { - "name": "Normal", - "proto": "ELECTABUZZ_NORMAL", - "evolutions": [ - { - "pokemon": 466, - "form": 643 - } - ] - }, - "641": { - "name": "Shadow", - "proto": "ELECTABUZZ_SHADOW", - "evolutions": [ - { - "pokemon": 466, - "form": 644 - } - ] - }, - "642": { - "name": "Purified", - "proto": "ELECTABUZZ_PURIFIED", - "evolutions": [ - { - "pokemon": 466, - "form": 645 - } - ] - } - }, - "default_form_id": 640, - "pokedex_id": 125, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 198, - "defense": 158, - "stamina": 163, - "height": 1.1, - "weight": 30, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Thunder Shock", - "Low Kick" - ], - "charged_moves": [ - "Thunder Punch", - "Thunderbolt", - "Thunder" - ], - "evolutions": [ - { - "pokemon": 466, - "form": 643 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 125 - }, - "126": { - "name": "Magmar", - "forms": { - "634": { - "name": "Normal", - "proto": "MAGMAR_NORMAL", - "evolutions": [ - { - "pokemon": 467, - "form": 637 - } - ] - }, - "635": { - "name": "Shadow", - "proto": "MAGMAR_SHADOW", - "evolutions": [ - { - "pokemon": 467, - "form": 638 - } - ] - }, - "636": { - "name": "Purified", - "proto": "MAGMAR_PURIFIED", - "evolutions": [ - { - "pokemon": 467, - "form": 639 - } - ] - } - }, - "default_form_id": 634, - "pokedex_id": 126, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 206, - "defense": 154, - "stamina": 163, - "height": 1.3, - "weight": 44.5, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Ember", - "Karate Chop" - ], - "charged_moves": [ - "Fire Blast", - "Fire Punch", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 467, - "form": 637 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 126 - }, - "127": { - "name": "Pinsir", - "forms": { - "898": { - "name": "Normal", - "proto": "PINSIR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "899": { - "name": "Shadow", - "proto": "PINSIR_SHADOW" - }, - "900": { - "name": "Purified", - "proto": "PINSIR_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 898, - "pokedex_id": 127, - "genId": "1", - "generation": "Kanto", - "types": [ - "Bug" - ], - "attack": 238, - "defense": 182, - "stamina": 163, - "height": 1.5, - "weight": 55, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Rock Smash", - "Bug Bite", - "Fury Cutter" - ], - "charged_moves": [ - "Vice Grip", - "X Scissor", - "Close Combat", - "Super Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 127, - "temp_evolutions": { - "1": { - "attack": 305, - "defense": 231, - "stamina": 163, - "unreleased": true, - "types": [ - "Bug", - "Flying" - ] - } - } - }, - "128": { - "name": "Tauros", - "forms": { - "1086": { - "name": "Normal", - "proto": "TAUROS_NORMAL" - }, - "1087": { - "name": "Shadow", - "proto": "TAUROS_SHADOW" - }, - "1088": { - "name": "Purified", - "proto": "TAUROS_PURIFIED" - } - }, - "default_form_id": 1086, - "pokedex_id": 128, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 198, - "defense": 183, - "stamina": 181, - "height": 1.4, - "weight": 88.4, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Zen Headbutt" - ], - "charged_moves": [ - "Horn Attack", - "Iron Head", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 128 - }, - "129": { - "name": "Magikarp", - "forms": { - "253": { - "name": "Normal", - "proto": "MAGIKARP_NORMAL", - "evolutions": [ - { - "pokemon": 130, - "form": 256 - } - ] - }, - "254": { - "name": "Shadow", - "proto": "MAGIKARP_SHADOW", - "evolutions": [ - { - "pokemon": 130, - "form": 257 - } - ] - }, - "255": { - "name": "Purified", - "proto": "MAGIKARP_PURIFIED", - "evolutions": [ - { - "pokemon": 130, - "form": 258 - } - ] - } - }, - "default_form_id": 253, - "pokedex_id": 129, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 29, - "defense": 85, - "stamina": 85, - "height": 0.9, - "weight": 10, - "flee_rate": 0.15, - "capture_rate": 0.7, - "quick_moves": [ - "Splash" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 130, - "form": 256 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 129, - "little": true - }, - "130": { - "name": "Gyarados", - "forms": { - "256": { - "name": "Normal", - "proto": "GYARADOS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "257": { - "name": "Shadow", - "proto": "GYARADOS_SHADOW" - }, - "258": { - "name": "Purified", - "proto": "GYARADOS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 256, - "pokedex_id": 130, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Flying" - ], - "attack": 237, - "defense": 186, - "stamina": 216, - "height": 6.5, - "weight": 235, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Bite", - "Waterfall", - "Dragon Breath" - ], - "charged_moves": [ - "Hydro Pump", - "Crunch", - "Outrage", - "Twister" - ], - "temp_evolutions": { - "1": { - "attack": 292, - "defense": 247, - "stamina": 216, - "weight": 305, - "types": [ - "Water", - "Dark" - ] - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 129 - }, - "131": { - "name": "Lapras", - "forms": { - "322": { - "name": "Normal", - "proto": "LAPRAS_NORMAL" - }, - "323": { - "name": "Shadow", - "proto": "LAPRAS_SHADOW" - }, - "324": { - "name": "Purified", - "proto": "LAPRAS_PURIFIED" - }, - "2585": { - "name": "Costume 2020", - "proto": "LAPRAS_COSTUME_2020" - } - }, - "default_form_id": 322, - "pokedex_id": 131, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water", - "Ice" - ], - "attack": 165, - "defense": 174, - "stamina": 277, - "height": 2.5, - "weight": 220, - "flee_rate": 0.09, - "capture_rate": 0.05, - "quick_moves": [ - "Frost Breath", - "Water Gun" - ], - "charged_moves": [ - "Hydro Pump", - "Surf", - "Blizzard", - "Skull Bash" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 131 - }, - "132": { - "name": "Ditto", - "forms": { - "1089": { - "name": "Normal", - "proto": "DITTO_NORMAL" - }, - "1090": { - "name": "Shadow", - "proto": "DITTO_SHADOW" - }, - "1091": { - "name": "Purified", - "proto": "DITTO_PURIFIED" - } - }, - "default_form_id": 1089, - "pokedex_id": 132, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 91, - "defense": 91, - "stamina": 134, - "height": 0.3, - "weight": 4, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Transform" - ], - "charged_moves": [ - "Struggle" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 132 - }, - "133": { - "name": "Eevee", - "forms": { - "1092": { - "name": "Normal", - "proto": "EEVEE_NORMAL" - }, - "1093": { - "name": "Shadow", - "proto": "EEVEE_SHADOW" - }, - "1094": { - "name": "Purified", - "proto": "EEVEE_PURIFIED" - } - }, - "default_form_id": 1092, - "pokedex_id": 133, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 104, - "defense": 114, - "stamina": 146, - "height": 0.3, - "weight": 6.5, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Quick Attack", - "Tackle" - ], - "charged_moves": [ - "Dig", - "Swift" - ], - "evolutions": [ - { - "pokemon": 134 - }, - { - "pokemon": 135 - }, - { - "pokemon": 136 - }, - { - "pokemon": 196 - }, - { - "pokemon": 197 - }, - { - "pokemon": 470 - }, - { - "pokemon": 471 - }, - { - "pokemon": 700 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133, - "little": true - }, - "134": { - "name": "Vaporeon", - "forms": { - "1095": { - "name": "Normal", - "proto": "VAPOREON_NORMAL" - }, - "1096": { - "name": "Shadow", - "proto": "VAPOREON_SHADOW" - }, - "1097": { - "name": "Purified", - "proto": "VAPOREON_PURIFIED" - } - }, - "default_form_id": 1095, - "pokedex_id": 134, - "genId": "1", - "generation": "Kanto", - "types": [ - "Water" - ], - "attack": 205, - "defense": 161, - "stamina": 277, - "height": 1, - "weight": 29, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Water Gun" - ], - "charged_moves": [ - "Water Pulse", - "Hydro Pump", - "Aqua Tail" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133 - }, - "135": { - "name": "Jolteon", - "forms": { - "1098": { - "name": "Normal", - "proto": "JOLTEON_NORMAL" - }, - "1099": { - "name": "Shadow", - "proto": "JOLTEON_SHADOW" - }, - "1100": { - "name": "Purified", - "proto": "JOLTEON_PURIFIED" - } - }, - "default_form_id": 1098, - "pokedex_id": 135, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric" - ], - "attack": 232, - "defense": 182, - "stamina": 163, - "height": 0.8, - "weight": 24.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Thunder Shock", - "Volt Switch" - ], - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133 - }, - "136": { - "name": "Flareon", - "forms": { - "1101": { - "name": "Normal", - "proto": "FLAREON_NORMAL" - }, - "1102": { - "name": "Shadow", - "proto": "FLAREON_SHADOW" - }, - "1103": { - "name": "Purified", - "proto": "FLAREON_PURIFIED" - } - }, - "default_form_id": 1101, - "pokedex_id": 136, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire" - ], - "attack": 246, - "defense": 179, - "stamina": 163, - "height": 0.9, - "weight": 25, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Ember", - "Fire Spin" - ], - "charged_moves": [ - "Fire Blast", - "Flamethrower", - "Overheat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133 - }, - "137": { - "name": "Porygon", - "forms": { - "677": { - "name": "Normal", - "proto": "PORYGON_NORMAL", - "evolutions": [ - { - "pokemon": 233, - "form": 680 - } - ] - }, - "678": { - "name": "Shadow", - "proto": "PORYGON_SHADOW", - "evolutions": [ - { - "pokemon": 233, - "form": 681 - } - ] - }, - "679": { - "name": "Purified", - "proto": "PORYGON_PURIFIED", - "evolutions": [ - { - "pokemon": 233, - "form": 682 - } - ] - } - }, - "default_form_id": 677, - "pokedex_id": 137, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 153, - "defense": 136, - "stamina": 163, - "height": 0.8, - "weight": 36.5, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Charge Beam", - "Hidden Power" - ], - "charged_moves": [ - "Solar Beam", - "Hyper Beam", - "Zap Cannon" - ], - "evolutions": [ - { - "pokemon": 233, - "form": 680 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 137, - "little": true - }, - "138": { - "name": "Omanyte", - "forms": { - "740": { - "name": "Normal", - "proto": "OMANYTE_NORMAL", - "evolutions": [ - { - "pokemon": 139, - "form": 743 - } - ] - }, - "741": { - "name": "Shadow", - "proto": "OMANYTE_SHADOW", - "evolutions": [ - { - "pokemon": 139, - "form": 744 - } - ] - }, - "742": { - "name": "Purified", - "proto": "OMANYTE_PURIFIED", - "evolutions": [ - { - "pokemon": 139, - "form": 745 - } - ] - } - }, - "default_form_id": 740, - "pokedex_id": 138, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Water" - ], - "attack": 155, - "defense": 153, - "stamina": 111, - "height": 0.4, - "weight": 7.5, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Ancient Power", - "Bubble Beam", - "Rock Blast" - ], - "evolutions": [ - { - "pokemon": 139, - "form": 743 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 138, - "little": true - }, - "139": { - "name": "Omastar", - "forms": { - "743": { - "name": "Normal", - "proto": "OMASTAR_NORMAL" - }, - "744": { - "name": "Shadow", - "proto": "OMASTAR_SHADOW" - }, - "745": { - "name": "Purified", - "proto": "OMASTAR_PURIFIED" - } - }, - "default_form_id": 743, - "pokedex_id": 139, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Water" - ], - "attack": 207, - "defense": 201, - "stamina": 172, - "height": 1, - "weight": 35, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Mud Shot", - "Water Gun" - ], - "charged_moves": [ - "Ancient Power", - "Hydro Pump", - "Rock Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 138 - }, - "140": { - "name": "Kabuto", - "forms": { - "1104": { - "name": "Normal", - "proto": "KABUTO_NORMAL", - "evolutions": [ - { - "pokemon": 141, - "form": 1107 - } - ] - }, - "1105": { - "name": "Shadow", - "proto": "KABUTO_SHADOW", - "evolutions": [ - { - "pokemon": 141, - "form": 1108 - } - ] - }, - "1106": { - "name": "Purified", - "proto": "KABUTO_PURIFIED", - "evolutions": [ - { - "pokemon": 141, - "form": 1109 - } - ] - } - }, - "default_form_id": 1104, - "pokedex_id": 140, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Water" - ], - "attack": 148, - "defense": 140, - "stamina": 102, - "height": 0.5, - "weight": 11.5, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Scratch", - "Mud Shot" - ], - "charged_moves": [ - "Ancient Power", - "Aqua Jet", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 141, - "form": 1107 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 140, - "little": true - }, - "141": { - "name": "Kabutops", - "forms": { - "1107": { - "name": "Normal", - "proto": "KABUTOPS_NORMAL" - }, - "1108": { - "name": "Shadow", - "proto": "KABUTOPS_SHADOW" - }, - "1109": { - "name": "Purified", - "proto": "KABUTOPS_PURIFIED" - } - }, - "default_form_id": 1107, - "pokedex_id": 141, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Water" - ], - "attack": 220, - "defense": 186, - "stamina": 155, - "height": 1.3, - "weight": 40.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Mud Shot", - "Rock Smash", - "Waterfall" - ], - "charged_moves": [ - "Ancient Power", - "Water Pulse", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 140 - }, - "142": { - "name": "Aerodactyl", - "forms": { - "1110": { - "name": "Normal", - "proto": "AERODACTYL_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1111": { - "name": "Shadow", - "proto": "AERODACTYL_SHADOW" - }, - "1112": { - "name": "Purified", - "proto": "AERODACTYL_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1110, - "pokedex_id": 142, - "genId": "1", - "generation": "Kanto", - "types": [ - "Rock", - "Flying" - ], - "attack": 221, - "defense": 159, - "stamina": 190, - "height": 1.8, - "weight": 59, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Steel Wing", - "Bite", - "Rock Throw" - ], - "charged_moves": [ - "Ancient Power", - "Iron Head", - "Hyper Beam", - "Rock Slide", - "Earth Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 142, - "temp_evolutions": { - "1": { - "attack": 292, - "defense": 210, - "stamina": 190, - "unreleased": true - } - } - }, - "143": { - "name": "Snorlax", - "forms": { - "199": { - "name": "Normal", - "proto": "SNORLAX_NORMAL" - }, - "200": { - "name": "Shadow", - "proto": "SNORLAX_SHADOW" - }, - "201": { - "name": "Purified", - "proto": "SNORLAX_PURIFIED" - } - }, - "default_form_id": 199, - "pokedex_id": 143, - "genId": "1", - "generation": "Kanto", - "types": [ - "Normal" - ], - "attack": 190, - "defense": 169, - "stamina": 330, - "height": 2.1, - "weight": 460, - "flee_rate": 0.09, - "capture_rate": 0.05, - "quick_moves": [ - "Zen Headbutt", - "Lick" - ], - "charged_moves": [ - "Heavy Slam", - "Hyper Beam", - "Earthquake", - "Outrage", - "Skull Bash", - "Body Slam", - "Super Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 143 - }, - "144": { - "name": "Articuno", - "forms": { - "716": { - "name": "Normal", - "proto": "ARTICUNO_NORMAL" - }, - "717": { - "name": "Shadow", - "proto": "ARTICUNO_SHADOW" - }, - "718": { - "name": "Purified", - "proto": "ARTICUNO_PURIFIED" - } - }, - "default_form_id": 716, - "pokedex_id": 144, - "genId": "1", - "generation": "Kanto", - "types": [ - "Ice", - "Flying" - ], - "attack": 192, - "defense": 236, - "stamina": 207, - "height": 1.7, - "weight": 55.4, - "flee_rate": 0.1, - "capture_rate": 0.03, - "quick_moves": [ - "Frost Breath", - "Ice Shard" - ], - "charged_moves": [ - "Ice Beam", - "Icy Wind", - "Blizzard", - "Ancient Power" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 144 - }, - "145": { - "name": "Zapdos", - "forms": { - "773": { - "name": "Normal", - "proto": "ZAPDOS_NORMAL" - }, - "774": { - "name": "Shadow", - "proto": "ZAPDOS_SHADOW" - }, - "775": { - "name": "Purified", - "proto": "ZAPDOS_PURIFIED" - } - }, - "default_form_id": 773, - "pokedex_id": 145, - "genId": "1", - "generation": "Kanto", - "types": [ - "Electric", - "Flying" - ], - "attack": 253, - "defense": 185, - "stamina": 207, - "height": 1.6, - "weight": 52.6, - "flee_rate": 0.1, - "capture_rate": 0.03, - "quick_moves": [ - "Charge Beam" - ], - "charged_moves": [ - "Zap Cannon", - "Thunderbolt", - "Thunder", - "Ancient Power", - "Drill Peck" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 145 - }, - "146": { - "name": "Moltres", - "forms": { - "836": { - "name": "Normal", - "proto": "MOLTRES_NORMAL" - }, - "837": { - "name": "Shadow", - "proto": "MOLTRES_SHADOW" - }, - "838": { - "name": "Purified", - "proto": "MOLTRES_PURIFIED" - } - }, - "default_form_id": 836, - "pokedex_id": 146, - "genId": "1", - "generation": "Kanto", - "types": [ - "Fire", - "Flying" - ], - "attack": 251, - "defense": 181, - "stamina": 207, - "height": 2, - "weight": 60, - "flee_rate": 0.1, - "capture_rate": 0.03, - "quick_moves": [ - "Fire Spin", - "Wing Attack" - ], - "charged_moves": [ - "Fire Blast", - "Heat Wave", - "Overheat", - "Ancient Power" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 146 - }, - "147": { - "name": "Dratini", - "forms": { - "190": { - "name": "Normal", - "proto": "DRATINI_NORMAL", - "evolutions": [ - { - "pokemon": 148, - "form": 193 - } - ] - }, - "191": { - "name": "Shadow", - "proto": "DRATINI_SHADOW", - "evolutions": [ - { - "pokemon": 148, - "form": 194 - } - ] - }, - "192": { - "name": "Purified", - "proto": "DRATINI_PURIFIED", - "evolutions": [ - { - "pokemon": 148, - "form": 195 - } - ] - } - }, - "default_form_id": 190, - "pokedex_id": 147, - "genId": "1", - "generation": "Kanto", - "types": [ - "Dragon" - ], - "attack": 119, - "defense": 91, - "stamina": 121, - "height": 1.8, - "weight": 3.3, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Dragon Breath", - "Iron Tail" - ], - "charged_moves": [ - "Wrap", - "Twister", - "Aqua Tail" - ], - "evolutions": [ - { - "pokemon": 148, - "form": 193 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 147, - "little": true - }, - "148": { - "name": "Dragonair", - "forms": { - "193": { - "name": "Normal", - "proto": "DRAGONAIR_NORMAL", - "evolutions": [ - { - "pokemon": 149, - "form": 196 - } - ] - }, - "194": { - "name": "Shadow", - "proto": "DRAGONAIR_SHADOW", - "evolutions": [ - { - "pokemon": 149, - "form": 197 - } - ] - }, - "195": { - "name": "Purified", - "proto": "DRAGONAIR_PURIFIED", - "evolutions": [ - { - "pokemon": 149, - "form": 198 - } - ] - } - }, - "default_form_id": 193, - "pokedex_id": 148, - "genId": "1", - "generation": "Kanto", - "types": [ - "Dragon" - ], - "attack": 163, - "defense": 135, - "stamina": 156, - "height": 4, - "weight": 16.5, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Dragon Breath", - "Iron Tail" - ], - "charged_moves": [ - "Wrap", - "Aqua Tail", - "Dragon Pulse" - ], - "evolutions": [ - { - "pokemon": 149, - "form": 196 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 147 - }, - "149": { - "name": "Dragonite", - "forms": { - "196": { - "name": "Normal", - "proto": "DRAGONITE_NORMAL" - }, - "197": { - "name": "Shadow", - "proto": "DRAGONITE_SHADOW" - }, - "198": { - "name": "Purified", - "proto": "DRAGONITE_PURIFIED" - }, - "2333": { - "name": "Costume 2020", - "proto": "DRAGONITE_COSTUME_2020" - } - }, - "default_form_id": 196, - "pokedex_id": 149, - "genId": "1", - "generation": "Kanto", - "types": [ - "Dragon", - "Flying" - ], - "attack": 263, - "defense": 198, - "stamina": 209, - "height": 2.2, - "weight": 210, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Dragon Tail", - "Steel Wing", - "Dragon Breath" - ], - "charged_moves": [ - "Hurricane", - "Hyper Beam", - "Outrage", - "Dragon Claw" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 147 - }, - "150": { - "name": "Mewtwo", - "forms": { - "133": { - "name": "A", - "proto": "MEWTWO_A", - "attack": 182, - "defense": 278, - "stamina": 214, - "quick_moves": [ - "Confusion", - "Iron Tail" - ], - "charged_moves": [ - "Rock Slide", - "Dynamic Punch", - "Earthquake", - "Futuresight" - ] - }, - "135": { - "name": "Normal", - "proto": "MEWTWO_NORMAL", - "temp_evolutions": { - "2": {}, - "3": {} - } - }, - "1113": { - "name": "Shadow", - "proto": "MEWTWO_SHADOW" - }, - "1114": { - "name": "Purified", - "proto": "MEWTWO_PURIFIED", - "temp_evolutions": { - "2": {}, - "3": {} - } - } - }, - "default_form_id": 135, - "pokedex_id": 150, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 300, - "defense": 182, - "stamina": 214, - "height": 2, - "weight": 122, - "flee_rate": 0.1, - "capture_rate": 0.02, - "quick_moves": [ - "Psycho Cut", - "Confusion" - ], - "charged_moves": [ - "Psychic", - "Thunderbolt", - "Ice Beam", - "Focus Blast", - "Flamethrower" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 150, - "temp_evolutions": { - "2": { - "attack": 412, - "defense": 222, - "stamina": 235, - "unreleased": true, - "types": [ - "Psychic", - "Fighting" - ] - }, - "3": { - "attack": 426, - "defense": 229, - "stamina": 235, - "unreleased": true - } - } - }, - "151": { - "name": "Mew", - "forms": { - "1115": { - "name": "Normal", - "proto": "MEW_NORMAL" - }, - "1116": { - "name": "Shadow", - "proto": "MEW_SHADOW" - }, - "1117": { - "name": "Purified", - "proto": "MEW_PURIFIED" - } - }, - "default_form_id": 1115, - "pokedex_id": 151, - "genId": "1", - "generation": "Kanto", - "types": [ - "Psychic" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.4, - "weight": 4, - "capture_rate": 100, - "quick_moves": [ - "Pound", - "Steel Wing", - "Charge Beam", - "Shadow Claw", - "Volt Switch", - "Struggle Bug", - "Frost Breath", - "Dragon Tail", - "Infestation", - "Poison Jab", - "Rock Smash", - "Snarl", - "Cut", - "Waterfall" - ], - "charged_moves": [ - "Psychic", - "Ancient Power", - "Dragon Claw", - "Psyshock", - "Ice Beam", - "Blizzard", - "Hyper Beam", - "Solar Beam", - "Thunderbolt", - "Thunder", - "Flame Charge", - "Low Sweep", - "Overheat", - "Focus Blast", - "Energy Ball", - "Stone Edge", - "Gyro Ball", - "Bulldoze", - "Rock Slide", - "Grass Knot", - "Flash Cannon", - "Wild Charge", - "Dark Pulse", - "Dazzling Gleam", - "Surf" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 4, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 151 - }, - "152": { - "name": "Chikorita", - "forms": { - "1118": { - "name": "Normal", - "proto": "CHIKORITA_NORMAL" - }, - "1119": { - "name": "Shadow", - "proto": "CHIKORITA_SHADOW" - }, - "1120": { - "name": "Purified", - "proto": "CHIKORITA_PURIFIED" - } - }, - "default_form_id": 1118, - "pokedex_id": 152, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 92, - "defense": 122, - "stamina": 128, - "height": 0.89, - "weight": 6.4, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Vine Whip", - "Tackle" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 153 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 152, - "little": true - }, - "153": { - "name": "Bayleef", - "forms": { - "1121": { - "name": "Normal", - "proto": "BAYLEEF_NORMAL" - }, - "1122": { - "name": "Shadow", - "proto": "BAYLEEF_SHADOW" - }, - "1123": { - "name": "Purified", - "proto": "BAYLEEF_PURIFIED" - } - }, - "default_form_id": 1121, - "pokedex_id": 153, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 122, - "defense": 155, - "stamina": 155, - "height": 1.19, - "weight": 15.8, - "flee_rate": 0.07, - "capture_rate": 0.125, - "quick_moves": [ - "Razor Leaf", - "Tackle" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 154 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 152 - }, - "154": { - "name": "Meganium", - "forms": { - "1124": { - "name": "Normal", - "proto": "MEGANIUM_NORMAL" - }, - "1125": { - "name": "Shadow", - "proto": "MEGANIUM_SHADOW" - }, - "1126": { - "name": "Purified", - "proto": "MEGANIUM_PURIFIED" - } - }, - "default_form_id": 1124, - "pokedex_id": 154, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 168, - "defense": 202, - "stamina": 190, - "height": 1.8, - "weight": 100.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Razor Leaf", - "Vine Whip" - ], - "charged_moves": [ - "Petal Blizzard", - "Solar Beam", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 152 - }, - "155": { - "name": "Cyndaquil", - "forms": { - "1127": { - "name": "Normal", - "proto": "CYNDAQUIL_NORMAL" - }, - "1128": { - "name": "Shadow", - "proto": "CYNDAQUIL_SHADOW" - }, - "1129": { - "name": "Purified", - "proto": "CYNDAQUIL_PURIFIED" - } - }, - "default_form_id": 1127, - "pokedex_id": 155, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 116, - "defense": 93, - "stamina": 118, - "height": 0.51, - "weight": 7.9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Ember", - "Tackle" - ], - "charged_moves": [ - "Flame Charge", - "Swift", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 156 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 155, - "little": true - }, - "156": { - "name": "Quilava", - "forms": { - "1130": { - "name": "Normal", - "proto": "QUILAVA_NORMAL" - }, - "1131": { - "name": "Shadow", - "proto": "QUILAVA_SHADOW" - }, - "1132": { - "name": "Purified", - "proto": "QUILAVA_PURIFIED" - } - }, - "default_form_id": 1130, - "pokedex_id": 156, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 158, - "defense": 126, - "stamina": 151, - "height": 0.89, - "weight": 19, - "flee_rate": 0.07, - "capture_rate": 0.125, - "quick_moves": [ - "Ember", - "Tackle" - ], - "charged_moves": [ - "Flame Charge", - "Dig", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 157 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 155 - }, - "157": { - "name": "Typhlosion", - "forms": { - "1133": { - "name": "Normal", - "proto": "TYPHLOSION_NORMAL" - }, - "1134": { - "name": "Shadow", - "proto": "TYPHLOSION_SHADOW" - }, - "1135": { - "name": "Purified", - "proto": "TYPHLOSION_PURIFIED" - } - }, - "default_form_id": 1133, - "pokedex_id": 157, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 223, - "defense": 173, - "stamina": 186, - "height": 1.7, - "weight": 79.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Ember", - "Shadow Claw", - "Incinerate" - ], - "charged_moves": [ - "Fire Blast", - "Overheat", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 155 - }, - "158": { - "name": "Totodile", - "forms": { - "1136": { - "name": "Normal", - "proto": "TOTODILE_NORMAL" - }, - "1137": { - "name": "Shadow", - "proto": "TOTODILE_SHADOW" - }, - "1138": { - "name": "Purified", - "proto": "TOTODILE_PURIFIED" - } - }, - "default_form_id": 1136, - "pokedex_id": 158, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 117, - "defense": 109, - "stamina": 137, - "height": 0.61, - "weight": 9.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Scratch" - ], - "charged_moves": [ - "Crunch", - "Aqua Jet", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 159 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 158, - "little": true - }, - "159": { - "name": "Croconaw", - "forms": { - "1139": { - "name": "Normal", - "proto": "CROCONAW_NORMAL" - }, - "1140": { - "name": "Shadow", - "proto": "CROCONAW_SHADOW" - }, - "1141": { - "name": "Purified", - "proto": "CROCONAW_PURIFIED" - } - }, - "default_form_id": 1139, - "pokedex_id": 159, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 150, - "defense": 142, - "stamina": 163, - "height": 1.09, - "weight": 25, - "flee_rate": 0.07, - "capture_rate": 0.125, - "quick_moves": [ - "Water Gun", - "Scratch" - ], - "charged_moves": [ - "Crunch", - "Ice Punch", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 160 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 158 - }, - "160": { - "name": "Feraligatr", - "forms": { - "1142": { - "name": "Normal", - "proto": "FERALIGATR_NORMAL" - }, - "1143": { - "name": "Shadow", - "proto": "FERALIGATR_SHADOW" - }, - "1144": { - "name": "Purified", - "proto": "FERALIGATR_PURIFIED" - } - }, - "default_form_id": 1142, - "pokedex_id": 160, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 205, - "defense": 188, - "stamina": 198, - "height": 2.31, - "weight": 88.8, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Waterfall", - "Bite", - "Ice Fang" - ], - "charged_moves": [ - "Crunch", - "Hydro Pump", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 158 - }, - "161": { - "name": "Sentret", - "forms": { - "1145": { - "name": "Normal", - "proto": "SENTRET_NORMAL" - }, - "1146": { - "name": "Shadow", - "proto": "SENTRET_SHADOW" - }, - "1147": { - "name": "Purified", - "proto": "SENTRET_PURIFIED" - } - }, - "default_form_id": 1145, - "pokedex_id": 161, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 79, - "defense": 73, - "stamina": 111, - "height": 0.79, - "weight": 6, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Quick Attack" - ], - "charged_moves": [ - "Dig", - "Brick Break", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 162 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 161, - "little": true - }, - "162": { - "name": "Furret", - "forms": { - "1148": { - "name": "Normal", - "proto": "FURRET_NORMAL" - }, - "1149": { - "name": "Shadow", - "proto": "FURRET_SHADOW" - }, - "1150": { - "name": "Purified", - "proto": "FURRET_PURIFIED" - } - }, - "default_form_id": 1148, - "pokedex_id": 162, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 148, - "defense": 125, - "stamina": 198, - "height": 1.8, - "weight": 32.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Quick Attack", - "Sucker Punch" - ], - "charged_moves": [ - "Dig", - "Brick Break", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 161 - }, - "163": { - "name": "Hoothoot", - "forms": { - "1151": { - "name": "Normal", - "proto": "HOOTHOOT_NORMAL" - }, - "1152": { - "name": "Shadow", - "proto": "HOOTHOOT_SHADOW" - }, - "1153": { - "name": "Purified", - "proto": "HOOTHOOT_PURIFIED" - } - }, - "default_form_id": 1151, - "pokedex_id": 163, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal", - "Flying" - ], - "attack": 67, - "defense": 88, - "stamina": 155, - "height": 0.71, - "weight": 21.2, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Feint Attack", - "Peck" - ], - "charged_moves": [ - "Aerial Ace", - "Sky Attack", - "Night Shade" - ], - "evolutions": [ - { - "pokemon": 164 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 163, - "little": true - }, - "164": { - "name": "Noctowl", - "forms": { - "1154": { - "name": "Normal", - "proto": "NOCTOWL_NORMAL" - }, - "1155": { - "name": "Shadow", - "proto": "NOCTOWL_SHADOW" - }, - "1156": { - "name": "Purified", - "proto": "NOCTOWL_PURIFIED" - } - }, - "default_form_id": 1154, - "pokedex_id": 164, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal", - "Flying" - ], - "attack": 145, - "defense": 156, - "stamina": 225, - "height": 1.6, - "weight": 40.8, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Wing Attack", - "Extrasensory" - ], - "charged_moves": [ - "Psychic", - "Sky Attack", - "Night Shade" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 163 - }, - "165": { - "name": "Ledyba", - "forms": { - "1157": { - "name": "Normal", - "proto": "LEDYBA_NORMAL" - }, - "1158": { - "name": "Shadow", - "proto": "LEDYBA_SHADOW" - }, - "1159": { - "name": "Purified", - "proto": "LEDYBA_PURIFIED" - } - }, - "default_form_id": 1157, - "pokedex_id": 165, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Flying" - ], - "attack": 72, - "defense": 118, - "stamina": 120, - "height": 0.99, - "weight": 10.8, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bug Bite" - ], - "charged_moves": [ - "Silver Wind", - "Swift", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 166 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 165, - "little": true - }, - "166": { - "name": "Ledian", - "forms": { - "1160": { - "name": "Normal", - "proto": "LEDIAN_NORMAL" - }, - "1161": { - "name": "Shadow", - "proto": "LEDIAN_SHADOW" - }, - "1162": { - "name": "Purified", - "proto": "LEDIAN_PURIFIED" - } - }, - "default_form_id": 1160, - "pokedex_id": 166, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Flying" - ], - "attack": 107, - "defense": 179, - "stamina": 146, - "height": 1.4, - "weight": 35.6, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Struggle Bug", - "Bug Bite" - ], - "charged_moves": [ - "Bug Buzz", - "Silver Wind", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 165 - }, - "167": { - "name": "Spinarak", - "forms": { - "1163": { - "name": "Normal", - "proto": "SPINARAK_NORMAL" - }, - "1164": { - "name": "Shadow", - "proto": "SPINARAK_SHADOW" - }, - "1165": { - "name": "Purified", - "proto": "SPINARAK_PURIFIED" - } - }, - "default_form_id": 1163, - "pokedex_id": 167, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Poison" - ], - "attack": 105, - "defense": 73, - "stamina": 120, - "height": 0.51, - "weight": 8.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Poison Sting", - "Bug Bite" - ], - "charged_moves": [ - "Night Slash", - "Signal Beam", - "Cross Poison" - ], - "evolutions": [ - { - "pokemon": 168 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 167, - "little": true - }, - "168": { - "name": "Ariados", - "forms": { - "1166": { - "name": "Normal", - "proto": "ARIADOS_NORMAL" - }, - "1167": { - "name": "Shadow", - "proto": "ARIADOS_SHADOW" - }, - "1168": { - "name": "Purified", - "proto": "ARIADOS_PURIFIED" - } - }, - "default_form_id": 1166, - "pokedex_id": 168, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Poison" - ], - "attack": 161, - "defense": 124, - "stamina": 172, - "height": 1.09, - "weight": 33.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Poison Sting", - "Infestation" - ], - "charged_moves": [ - "Shadow Sneak", - "Megahorn", - "Cross Poison", - "Lunge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 167 - }, - "169": { - "name": "Crobat", - "forms": { - "202": { - "name": "Normal", - "proto": "CROBAT_NORMAL" - }, - "203": { - "name": "Shadow", - "proto": "CROBAT_SHADOW" - }, - "204": { - "name": "Purified", - "proto": "CROBAT_PURIFIED" - } - }, - "default_form_id": 202, - "pokedex_id": 169, - "genId": "2", - "generation": "Johto", - "types": [ - "Poison", - "Flying" - ], - "attack": 194, - "defense": 178, - "stamina": 198, - "height": 1.8, - "weight": 75, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Air Slash", - "Bite" - ], - "charged_moves": [ - "Shadow Ball", - "Air Cutter", - "Sludge Bomb", - "Poison Fang", - "Cross Poison" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 41 - }, - "170": { - "name": "Chinchou", - "forms": { - "1169": { - "name": "Normal", - "proto": "CHINCHOU_NORMAL" - }, - "1170": { - "name": "Shadow", - "proto": "CHINCHOU_SHADOW" - }, - "1171": { - "name": "Purified", - "proto": "CHINCHOU_PURIFIED" - } - }, - "default_form_id": 1169, - "pokedex_id": 170, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Electric" - ], - "attack": 106, - "defense": 97, - "stamina": 181, - "height": 0.51, - "weight": 12, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Bubble", - "Spark" - ], - "charged_moves": [ - "Water Pulse", - "Thunderbolt", - "Bubble Beam" - ], - "evolutions": [ - { - "pokemon": 171 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 170, - "little": true - }, - "171": { - "name": "Lanturn", - "forms": { - "1172": { - "name": "Normal", - "proto": "LANTURN_NORMAL" - }, - "1173": { - "name": "Shadow", - "proto": "LANTURN_SHADOW" - }, - "1174": { - "name": "Purified", - "proto": "LANTURN_PURIFIED" - } - }, - "default_form_id": 1172, - "pokedex_id": 171, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Electric" - ], - "attack": 146, - "defense": 137, - "stamina": 268, - "height": 1.19, - "weight": 22.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Water Gun", - "Charge Beam", - "Spark" - ], - "charged_moves": [ - "Hydro Pump", - "Thunderbolt", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 170 - }, - "172": { - "name": "Pichu", - "forms": { - "1175": { - "name": "Normal", - "proto": "PICHU_NORMAL" - }, - "1176": { - "name": "Shadow", - "proto": "PICHU_SHADOW" - }, - "1177": { - "name": "Purified", - "proto": "PICHU_PURIFIED" - } - }, - "default_form_id": 1175, - "pokedex_id": 172, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 77, - "defense": 53, - "stamina": 85, - "height": 0.3, - "weight": 2, - "flee_rate": 0.05, - "quick_moves": [ - "Thunder Shock" - ], - "charged_moves": [ - "Thunderbolt", - "Disarming Voice", - "Thunder Punch" - ], - "evolutions": [ - { - "pokemon": 25 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 25, - "little": true - }, - "173": { - "name": "Cleffa", - "forms": { - "1178": { - "name": "Normal", - "proto": "CLEFFA_NORMAL" - }, - "1179": { - "name": "Shadow", - "proto": "CLEFFA_SHADOW" - }, - "1180": { - "name": "Purified", - "proto": "CLEFFA_PURIFIED" - } - }, - "default_form_id": 1178, - "pokedex_id": 173, - "genId": "2", - "generation": "Johto", - "types": [ - "Fairy" - ], - "attack": 75, - "defense": 79, - "stamina": 137, - "height": 0.3, - "weight": 3, - "flee_rate": 0.05, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Grass Knot", - "Psyshock", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 35 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 35, - "little": true - }, - "174": { - "name": "Igglybuff", - "forms": { - "1181": { - "name": "Normal", - "proto": "IGGLYBUFF_NORMAL" - }, - "1182": { - "name": "Shadow", - "proto": "IGGLYBUFF_SHADOW" - }, - "1183": { - "name": "Purified", - "proto": "IGGLYBUFF_PURIFIED" - } - }, - "default_form_id": 1181, - "pokedex_id": 174, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal", - "Fairy" - ], - "attack": 69, - "defense": 32, - "stamina": 207, - "height": 0.3, - "weight": 1, - "flee_rate": 0.05, - "quick_moves": [ - "Pound", - "Feint Attack" - ], - "charged_moves": [ - "Wild Charge", - "Shadow Ball", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 39 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 39, - "little": true - }, - "175": { - "name": "Togepi", - "forms": { - "1184": { - "name": "Normal", - "proto": "TOGEPI_NORMAL" - }, - "1185": { - "name": "Shadow", - "proto": "TOGEPI_SHADOW" - }, - "1186": { - "name": "Purified", - "proto": "TOGEPI_PURIFIED" - } - }, - "default_form_id": 1184, - "pokedex_id": 175, - "genId": "2", - "generation": "Johto", - "types": [ - "Fairy" - ], - "attack": 67, - "defense": 116, - "stamina": 111, - "height": 0.3, - "weight": 1.5, - "flee_rate": 0.05, - "quick_moves": [ - "Hidden Power", - "Peck" - ], - "charged_moves": [ - "Ancient Power", - "Psyshock", - "Dazzling Gleam" - ], - "evolutions": [ - { - "pokemon": 176 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 175, - "little": true - }, - "176": { - "name": "Togetic", - "forms": { - "1187": { - "name": "Normal", - "proto": "TOGETIC_NORMAL" - }, - "1188": { - "name": "Shadow", - "proto": "TOGETIC_SHADOW" - }, - "1189": { - "name": "Purified", - "proto": "TOGETIC_PURIFIED" - } - }, - "default_form_id": 1187, - "pokedex_id": 176, - "genId": "2", - "generation": "Johto", - "types": [ - "Fairy", - "Flying" - ], - "attack": 139, - "defense": 181, - "stamina": 146, - "height": 0.61, - "weight": 3.2, - "flee_rate": 0.05, - "capture_rate": 0.2, - "quick_moves": [ - "Extrasensory", - "Hidden Power" - ], - "charged_moves": [ - "Ancient Power", - "Dazzling Gleam", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 468 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 175 - }, - "177": { - "name": "Natu", - "forms": { - "1190": { - "name": "Normal", - "proto": "NATU_NORMAL" - }, - "1191": { - "name": "Shadow", - "proto": "NATU_SHADOW" - }, - "1192": { - "name": "Purified", - "proto": "NATU_PURIFIED" - } - }, - "default_form_id": 1190, - "pokedex_id": 177, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic", - "Flying" - ], - "attack": 134, - "defense": 89, - "stamina": 120, - "height": 0.2, - "weight": 2, - "flee_rate": 0.15, - "capture_rate": 0.4, - "quick_moves": [ - "Peck", - "Quick Attack" - ], - "charged_moves": [ - "Night Shade", - "Psyshock", - "Drill Peck" - ], - "evolutions": [ - { - "pokemon": 178 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 177, - "little": true - }, - "178": { - "name": "Xatu", - "forms": { - "1193": { - "name": "Normal", - "proto": "XATU_NORMAL" - }, - "1194": { - "name": "Shadow", - "proto": "XATU_SHADOW" - }, - "1195": { - "name": "Purified", - "proto": "XATU_PURIFIED" - } - }, - "default_form_id": 1193, - "pokedex_id": 178, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic", - "Flying" - ], - "attack": 192, - "defense": 146, - "stamina": 163, - "height": 1.5, - "weight": 15, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Air Slash", - "Feint Attack" - ], - "charged_moves": [ - "Ominous Wind", - "Futuresight", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 177 - }, - "179": { - "name": "Mareep", - "forms": { - "646": { - "name": "Normal", - "proto": "MAREEP_NORMAL", - "evolutions": [ - { - "pokemon": 180, - "form": 649 - } - ] - }, - "647": { - "name": "Shadow", - "proto": "MAREEP_SHADOW", - "evolutions": [ - { - "pokemon": 180, - "form": 650 - } - ] - }, - "648": { - "name": "Purified", - "proto": "MAREEP_PURIFIED", - "evolutions": [ - { - "pokemon": 180, - "form": 651 - } - ] - } - }, - "default_form_id": 646, - "pokedex_id": 179, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 114, - "defense": 79, - "stamina": 146, - "height": 0.61, - "weight": 7.8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Thunder Shock" - ], - "charged_moves": [ - "Body Slam", - "Thunderbolt", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 180, - "form": 649 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 179, - "little": true - }, - "180": { - "name": "Flaaffy", - "forms": { - "649": { - "name": "Normal", - "proto": "FLAAFFY_NORMAL", - "evolutions": [ - { - "pokemon": 181, - "form": 652 - } - ] - }, - "650": { - "name": "Shadow", - "proto": "FLAAFFY_SHADOW", - "evolutions": [ - { - "pokemon": 181, - "form": 653 - } - ] - }, - "651": { - "name": "Purified", - "proto": "FLAAFFY_PURIFIED", - "evolutions": [ - { - "pokemon": 181, - "form": 654 - } - ] - } - }, - "default_form_id": 649, - "pokedex_id": 180, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 145, - "defense": 109, - "stamina": 172, - "height": 0.79, - "weight": 13.3, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Tackle", - "Charge Beam" - ], - "charged_moves": [ - "Power Gem", - "Thunderbolt", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 181, - "form": 652 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 179 - }, - "181": { - "name": "Ampharos", - "forms": { - "652": { - "name": "Normal", - "proto": "AMPHAROS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "653": { - "name": "Shadow", - "proto": "AMPHAROS_SHADOW" - }, - "654": { - "name": "Purified", - "proto": "AMPHAROS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 652, - "pokedex_id": 181, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 211, - "defense": 169, - "stamina": 207, - "height": 1.4, - "weight": 61.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Charge Beam", - "Volt Switch" - ], - "charged_moves": [ - "Zap Cannon", - "Focus Blast", - "Thunder", - "Power Gem", - "Thunder Punch" - ], - "temp_evolutions": { - "1": { - "attack": 294, - "defense": 203, - "stamina": 207, - "types": [ - "Electric", - "Dragon" - ] - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 179 - }, - "182": { - "name": "Bellossom", - "forms": { - "274": { - "name": "Normal", - "proto": "BELLOSSOM_NORMAL" - }, - "275": { - "name": "Shadow", - "proto": "BELLOSSOM_SHADOW" - }, - "276": { - "name": "Purified", - "proto": "BELLOSSOM_PURIFIED" - } - }, - "default_form_id": 274, - "pokedex_id": 182, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 169, - "defense": 186, - "stamina": 181, - "height": 0.41, - "weight": 5.8, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Razor Leaf", - "Acid", - "Bullet Seed" - ], - "charged_moves": [ - "Leaf Blade", - "Petal Blizzard", - "Dazzling Gleam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 43 - }, - "183": { - "name": "Marill", - "forms": { - "1196": { - "name": "Normal", - "proto": "MARILL_NORMAL" - }, - "1197": { - "name": "Shadow", - "proto": "MARILL_SHADOW" - }, - "1198": { - "name": "Purified", - "proto": "MARILL_PURIFIED" - } - }, - "default_form_id": 1196, - "pokedex_id": 183, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Fairy" - ], - "attack": 37, - "defense": 93, - "stamina": 172, - "height": 0.41, - "weight": 8.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bubble" - ], - "charged_moves": [ - "Bubble Beam", - "Aqua Tail", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 184 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 183 - }, - "184": { - "name": "Azumarill", - "forms": { - "1199": { - "name": "Normal", - "proto": "AZUMARILL_NORMAL" - }, - "1200": { - "name": "Shadow", - "proto": "AZUMARILL_SHADOW" - }, - "1201": { - "name": "Purified", - "proto": "AZUMARILL_PURIFIED" - } - }, - "default_form_id": 1199, - "pokedex_id": 184, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Fairy" - ], - "attack": 112, - "defense": 152, - "stamina": 225, - "height": 0.79, - "weight": 28.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Rock Smash", - "Bubble" - ], - "charged_moves": [ - "Play Rough", - "Hydro Pump", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 183 - }, - "185": { - "name": "Sudowoodo", - "forms": { - "1202": { - "name": "Normal", - "proto": "SUDOWOODO_NORMAL" - }, - "1203": { - "name": "Shadow", - "proto": "SUDOWOODO_SHADOW" - }, - "1204": { - "name": "Purified", - "proto": "SUDOWOODO_PURIFIED" - } - }, - "default_form_id": 1202, - "pokedex_id": 185, - "genId": "2", - "generation": "Johto", - "types": [ - "Rock" - ], - "attack": 167, - "defense": 176, - "stamina": 172, - "height": 1.19, - "weight": 38, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Rock Throw", - "Counter" - ], - "charged_moves": [ - "Stone Edge", - "Earthquake", - "Rock Slide" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 185 - }, - "186": { - "name": "Politoed", - "forms": { - "244": { - "name": "Normal", - "proto": "POLITOED_NORMAL" - }, - "245": { - "name": "Shadow", - "proto": "POLITOED_SHADOW" - }, - "246": { - "name": "Purified", - "proto": "POLITOED_PURIFIED" - } - }, - "default_form_id": 244, - "pokedex_id": 186, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 174, - "defense": 179, - "stamina": 207, - "height": 1.09, - "weight": 33.9, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Mud Shot", - "Bubble" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Surf", - "Weather Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 60 - }, - "187": { - "name": "Hoppip", - "forms": { - "1205": { - "name": "Normal", - "proto": "HOPPIP_NORMAL", - "evolutions": [ - { - "pokemon": 188, - "form": 1208 - } - ] - }, - "1206": { - "name": "Shadow", - "proto": "HOPPIP_SHADOW", - "evolutions": [ - { - "pokemon": 188, - "form": 1209 - } - ] - }, - "1207": { - "name": "Purified", - "proto": "HOPPIP_PURIFIED", - "evolutions": [ - { - "pokemon": 188, - "form": 1210 - } - ] - } - }, - "default_form_id": 1205, - "pokedex_id": 187, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass", - "Flying" - ], - "attack": 67, - "defense": 94, - "stamina": 111, - "height": 0.41, - "weight": 0.5, - "flee_rate": 0.12, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bullet Seed" - ], - "charged_moves": [ - "Grass Knot", - "Dazzling Gleam", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 188, - "form": 1208 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 187, - "little": true - }, - "188": { - "name": "Skiploom", - "forms": { - "1208": { - "name": "Normal", - "proto": "SKIPLOOM_NORMAL", - "evolutions": [ - { - "pokemon": 189, - "form": 1211 - } - ] - }, - "1209": { - "name": "Shadow", - "proto": "SKIPLOOM_SHADOW", - "evolutions": [ - { - "pokemon": 189, - "form": 1212 - } - ] - }, - "1210": { - "name": "Purified", - "proto": "SKIPLOOM_PURIFIED", - "evolutions": [ - { - "pokemon": 189, - "form": 1213 - } - ] - } - }, - "default_form_id": 1208, - "pokedex_id": 188, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass", - "Flying" - ], - "attack": 91, - "defense": 120, - "stamina": 146, - "height": 0.61, - "weight": 1, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Tackle", - "Bullet Seed" - ], - "charged_moves": [ - "Grass Knot", - "Dazzling Gleam", - "Energy Ball" - ], - "evolutions": [ - { - "pokemon": 189, - "form": 1211 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 187 - }, - "189": { - "name": "Jumpluff", - "forms": { - "1211": { - "name": "Normal", - "proto": "JUMPLUFF_NORMAL" - }, - "1212": { - "name": "Shadow", - "proto": "JUMPLUFF_SHADOW" - }, - "1213": { - "name": "Purified", - "proto": "JUMPLUFF_PURIFIED" - } - }, - "default_form_id": 1211, - "pokedex_id": 189, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass", - "Flying" - ], - "attack": 118, - "defense": 183, - "stamina": 181, - "height": 0.79, - "weight": 3, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Infestation", - "Bullet Seed" - ], - "charged_moves": [ - "Energy Ball", - "Dazzling Gleam", - "Solar Beam", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 187 - }, - "190": { - "name": "Aipom", - "forms": { - "1214": { - "name": "Normal", - "proto": "AIPOM_NORMAL", - "evolutions": [ - { - "pokemon": 424, - "form": 1742 - } - ] - }, - "1215": { - "name": "Shadow", - "proto": "AIPOM_SHADOW", - "evolutions": [ - { - "pokemon": 424, - "form": 1743 - } - ] - }, - "1216": { - "name": "Purified", - "proto": "AIPOM_PURIFIED", - "evolutions": [ - { - "pokemon": 424, - "form": 1744 - } - ] - } - }, - "default_form_id": 1214, - "pokedex_id": 190, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 136, - "defense": 112, - "stamina": 146, - "height": 0.79, - "weight": 11.5, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Astonish" - ], - "charged_moves": [ - "Low Sweep", - "Swift", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 424, - "form": 1742 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 190, - "little": true - }, - "191": { - "name": "Sunkern", - "forms": { - "1217": { - "name": "Normal", - "proto": "SUNKERN_NORMAL" - }, - "1218": { - "name": "Shadow", - "proto": "SUNKERN_SHADOW" - }, - "1219": { - "name": "Purified", - "proto": "SUNKERN_PURIFIED" - } - }, - "default_form_id": 1217, - "pokedex_id": 191, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 55, - "defense": 55, - "stamina": 102, - "height": 0.3, - "weight": 1.8, - "flee_rate": 0.09, - "capture_rate": 0.5, - "quick_moves": [ - "Razor Leaf", - "Cut" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 192 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 191, - "little": true - }, - "192": { - "name": "Sunflora", - "forms": { - "1220": { - "name": "Normal", - "proto": "SUNFLORA_NORMAL" - }, - "1221": { - "name": "Shadow", - "proto": "SUNFLORA_SHADOW" - }, - "1222": { - "name": "Purified", - "proto": "SUNFLORA_PURIFIED" - } - }, - "default_form_id": 1220, - "pokedex_id": 192, - "genId": "2", - "generation": "Johto", - "types": [ - "Grass" - ], - "attack": 185, - "defense": 135, - "stamina": 181, - "height": 0.79, - "weight": 8.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Razor Leaf", - "Bullet Seed" - ], - "charged_moves": [ - "Solar Beam", - "Petal Blizzard", - "Sludge Bomb", - "Leaf Storm" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 191 - }, - "193": { - "name": "Yanma", - "forms": { - "1223": { - "name": "Normal", - "proto": "YANMA_NORMAL" - }, - "1224": { - "name": "Shadow", - "proto": "YANMA_SHADOW" - }, - "1225": { - "name": "Purified", - "proto": "YANMA_PURIFIED" - } - }, - "default_form_id": 1223, - "pokedex_id": 193, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Flying" - ], - "attack": 154, - "defense": 94, - "stamina": 163, - "height": 1.19, - "weight": 38, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Quick Attack", - "Wing Attack" - ], - "charged_moves": [ - "Ancient Power", - "Aerial Ace", - "Silver Wind" - ], - "evolutions": [ - { - "pokemon": 469 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 193, - "little": true - }, - "194": { - "name": "Wooper", - "forms": { - "1226": { - "name": "Normal", - "proto": "WOOPER_NORMAL", - "evolutions": [ - { - "pokemon": 195, - "form": 1229 - } - ] - }, - "1227": { - "name": "Shadow", - "proto": "WOOPER_SHADOW", - "evolutions": [ - { - "pokemon": 195, - "form": 1230 - } - ] - }, - "1228": { - "name": "Purified", - "proto": "WOOPER_PURIFIED", - "evolutions": [ - { - "pokemon": 195, - "form": 1231 - } - ] - } - }, - "default_form_id": 1226, - "pokedex_id": 194, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Ground" - ], - "attack": 75, - "defense": 66, - "stamina": 146, - "height": 0.41, - "weight": 8.5, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Mud Bomb", - "Dig", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 195, - "form": 1229 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 194, - "little": true - }, - "195": { - "name": "Quagsire", - "forms": { - "1229": { - "name": "Normal", - "proto": "QUAGSIRE_NORMAL" - }, - "1230": { - "name": "Shadow", - "proto": "QUAGSIRE_SHADOW" - }, - "1231": { - "name": "Purified", - "proto": "QUAGSIRE_PURIFIED" - } - }, - "default_form_id": 1229, - "pokedex_id": 195, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Ground" - ], - "attack": 152, - "defense": 143, - "stamina": 216, - "height": 1.4, - "weight": 75, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Sludge Bomb", - "Earthquake", - "Stone Edge", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 194 - }, - "196": { - "name": "Espeon", - "forms": { - "1232": { - "name": "Normal", - "proto": "ESPEON_NORMAL" - }, - "1233": { - "name": "Shadow", - "proto": "ESPEON_SHADOW" - }, - "1234": { - "name": "Purified", - "proto": "ESPEON_PURIFIED" - } - }, - "default_form_id": 1232, - "pokedex_id": 196, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic" - ], - "attack": 261, - "defense": 175, - "stamina": 163, - "height": 0.89, - "weight": 26.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Confusion", - "Zen Headbutt" - ], - "charged_moves": [ - "Psybeam", - "Psychic", - "Futuresight" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133 - }, - "197": { - "name": "Umbreon", - "forms": { - "1235": { - "name": "Normal", - "proto": "UMBREON_NORMAL" - }, - "1236": { - "name": "Shadow", - "proto": "UMBREON_SHADOW" - }, - "1237": { - "name": "Purified", - "proto": "UMBREON_PURIFIED" - } - }, - "default_form_id": 1235, - "pokedex_id": 197, - "genId": "2", - "generation": "Johto", - "types": [ - "Dark" - ], - "attack": 126, - "defense": 240, - "stamina": 216, - "height": 0.99, - "weight": 27, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Feint Attack", - "Snarl" - ], - "charged_moves": [ - "Dark Pulse", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 133 - }, - "198": { - "name": "Murkrow", - "forms": { - "855": { - "name": "Normal", - "proto": "MURKROW_NORMAL", - "evolutions": [ - { - "pokemon": 430, - "form": 858 - } - ] - }, - "856": { - "name": "Shadow", - "proto": "MURKROW_SHADOW", - "evolutions": [ - { - "pokemon": 430, - "form": 859 - } - ] - }, - "857": { - "name": "Purified", - "proto": "MURKROW_PURIFIED", - "evolutions": [ - { - "pokemon": 430, - "form": 860 - } - ] - } - }, - "default_form_id": 855, - "pokedex_id": 198, - "genId": "2", - "generation": "Johto", - "types": [ - "Dark", - "Flying" - ], - "attack": 175, - "defense": 87, - "stamina": 155, - "height": 0.51, - "weight": 2.1, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Feint Attack" - ], - "charged_moves": [ - "Drill Peck", - "Foul Play", - "Dark Pulse" - ], - "evolutions": [ - { - "pokemon": 430, - "form": 858 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 198, - "little": true - }, - "199": { - "name": "Slowking", - "forms": { - "1238": { - "name": "Normal", - "proto": "SLOWKING_NORMAL" - }, - "1239": { - "name": "Shadow", - "proto": "SLOWKING_SHADOW" - }, - "1240": { - "name": "Purified", - "proto": "SLOWKING_PURIFIED" - }, - "2584": { - "name": "Galarian", - "proto": "SLOWKING_GALARIAN", - "attack": 190, - "defense": 180, - "stamina": 216, - "height": 1.8, - "weight": 79.5, - "quick_moves": [ - "Hex", - "Confusion", - "Acid" - ], - "charged_moves": [ - "Futuresight", - "Shadow Ball", - "Sludge Wave" - ], - "types": [ - "Poison", - "Psychic" - ] - } - }, - "default_form_id": 1238, - "pokedex_id": 199, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Psychic" - ], - "attack": 177, - "defense": 180, - "stamina": 216, - "height": 2.01, - "weight": 79.5, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Water Gun", - "Confusion" - ], - "charged_moves": [ - "Blizzard", - "Psychic", - "Fire Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 79 - }, - "200": { - "name": "Misdreavus", - "forms": { - "719": { - "name": "Normal", - "proto": "MISDREAVUS_NORMAL", - "evolutions": [ - { - "pokemon": 429, - "form": 722 - } - ] - }, - "720": { - "name": "Shadow", - "proto": "MISDREAVUS_SHADOW", - "evolutions": [ - { - "pokemon": 429, - "form": 723 - } - ] - }, - "721": { - "name": "Purified", - "proto": "MISDREAVUS_PURIFIED", - "evolutions": [ - { - "pokemon": 429, - "form": 724 - } - ] - } - }, - "default_form_id": 719, - "pokedex_id": 200, - "genId": "2", - "generation": "Johto", - "types": [ - "Ghost" - ], - "attack": 167, - "defense": 154, - "stamina": 155, - "height": 0.71, - "weight": 1, - "flee_rate": 0.07, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Hex" - ], - "charged_moves": [ - "Shadow Sneak", - "Dark Pulse", - "Ominous Wind" - ], - "evolutions": [ - { - "pokemon": 429 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 200, - "little": true - }, - "201": { - "name": "Unown", - "forms": { - "1": { - "name": "A", - "proto": "UNOWN_A" - }, - "2": { - "name": "B", - "proto": "UNOWN_B" - }, - "3": { - "name": "C", - "proto": "UNOWN_C" - }, - "4": { - "name": "D", - "proto": "UNOWN_D" - }, - "5": { - "name": "E", - "proto": "UNOWN_E" - }, - "6": { - "name": "F", - "proto": "UNOWN_F" - }, - "7": { - "name": "G", - "proto": "UNOWN_G" - }, - "8": { - "name": "H", - "proto": "UNOWN_H" - }, - "9": { - "name": "I", - "proto": "UNOWN_I" - }, - "10": { - "name": "J", - "proto": "UNOWN_J" - }, - "11": { - "name": "K", - "proto": "UNOWN_K" - }, - "12": { - "name": "L", - "proto": "UNOWN_L" - }, - "13": { - "name": "M", - "proto": "UNOWN_M" - }, - "14": { - "name": "N", - "proto": "UNOWN_N" - }, - "15": { - "name": "O", - "proto": "UNOWN_O" - }, - "16": { - "name": "P", - "proto": "UNOWN_P" - }, - "17": { - "name": "Q", - "proto": "UNOWN_Q" - }, - "18": { - "name": "R", - "proto": "UNOWN_R" - }, - "19": { - "name": "S", - "proto": "UNOWN_S" - }, - "20": { - "name": "T", - "proto": "UNOWN_T" - }, - "21": { - "name": "U", - "proto": "UNOWN_U" - }, - "22": { - "name": "V", - "proto": "UNOWN_V" - }, - "23": { - "name": "W", - "proto": "UNOWN_W" - }, - "24": { - "name": "X", - "proto": "UNOWN_X" - }, - "25": { - "name": "Y", - "proto": "UNOWN_Y" - }, - "26": { - "name": "Z", - "proto": "UNOWN_Z" - }, - "27": { - "name": "Exclamation Point", - "proto": "UNOWN_EXCLAMATION_POINT" - }, - "28": { - "name": "Question Mark", - "proto": "UNOWN_QUESTION_MARK" - } - }, - "default_form_id": 6, - "pokedex_id": 201, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic" - ], - "attack": 136, - "defense": 91, - "stamina": 134, - "height": 0.51, - "weight": 5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Hidden Power" - ], - "charged_moves": [ - "Struggle" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 201 - }, - "202": { - "name": "Wobbuffet", - "forms": { - "602": { - "name": "Normal", - "proto": "WOBBUFFET_NORMAL" - }, - "686": { - "name": "Shadow", - "proto": "WOBBUFFET_SHADOW" - }, - "687": { - "name": "Purified", - "proto": "WOBBUFFET_PURIFIED" - }, - "2328": { - "name": "Spring 2020", - "proto": "WOBBUFFET_SPRING_2020" - } - }, - "default_form_id": 602, - "pokedex_id": 202, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic" - ], - "attack": 60, - "defense": 106, - "stamina": 382, - "height": 1.3, - "weight": 28.5, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Counter", - "Splash", - "Charm" - ], - "charged_moves": [ - "Mirror Coat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 202 - }, - "203": { - "name": "Girafarig", - "forms": { - "1241": { - "name": "Normal", - "proto": "GIRAFARIG_NORMAL" - }, - "1242": { - "name": "Shadow", - "proto": "GIRAFARIG_SHADOW" - }, - "1243": { - "name": "Purified", - "proto": "GIRAFARIG_PURIFIED" - } - }, - "default_form_id": 1241, - "pokedex_id": 203, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal", - "Psychic" - ], - "attack": 182, - "defense": 133, - "stamina": 172, - "height": 1.5, - "weight": 41.5, - "flee_rate": 0.07, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Confusion" - ], - "charged_moves": [ - "Psychic", - "Thunderbolt", - "Mirror Coat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 203 - }, - "204": { - "name": "Pineco", - "forms": { - "1244": { - "name": "Normal", - "proto": "PINECO_NORMAL", - "evolutions": [ - { - "pokemon": 205, - "form": 1247 - } - ] - }, - "1245": { - "name": "Shadow", - "proto": "PINECO_SHADOW", - "evolutions": [ - { - "pokemon": 205, - "form": 1248 - } - ] - }, - "1246": { - "name": "Purified", - "proto": "PINECO_PURIFIED", - "evolutions": [ - { - "pokemon": 205, - "form": 1249 - } - ] - } - }, - "default_form_id": 1244, - "pokedex_id": 204, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug" - ], - "attack": 108, - "defense": 122, - "stamina": 137, - "height": 0.61, - "weight": 7.2, - "flee_rate": 0.12, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Bug Bite" - ], - "charged_moves": [ - "Gyro Ball", - "Rock Tomb", - "Sand Tomb" - ], - "evolutions": [ - { - "pokemon": 205, - "form": 1247 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 204, - "little": true - }, - "205": { - "name": "Forretress", - "forms": { - "1247": { - "name": "Normal", - "proto": "FORRETRESS_NORMAL" - }, - "1248": { - "name": "Shadow", - "proto": "FORRETRESS_SHADOW" - }, - "1249": { - "name": "Purified", - "proto": "FORRETRESS_PURIFIED" - } - }, - "default_form_id": 1247, - "pokedex_id": 205, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Steel" - ], - "attack": 161, - "defense": 205, - "stamina": 181, - "height": 1.19, - "weight": 125.8, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Bug Bite", - "Struggle Bug" - ], - "charged_moves": [ - "Heavy Slam", - "Earthquake", - "Rock Tomb", - "Sand Tomb", - "Mirror Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 204 - }, - "206": { - "name": "Dunsparce", - "forms": { - "1250": { - "name": "Normal", - "proto": "DUNSPARCE_NORMAL" - }, - "1251": { - "name": "Shadow", - "proto": "DUNSPARCE_SHADOW" - }, - "1252": { - "name": "Purified", - "proto": "DUNSPARCE_PURIFIED" - } - }, - "default_form_id": 1250, - "pokedex_id": 206, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 131, - "defense": 128, - "stamina": 225, - "height": 1.5, - "weight": 14, - "flee_rate": 0.2, - "capture_rate": 0.3, - "quick_moves": [ - "Bite", - "Astonish" - ], - "charged_moves": [ - "Dig", - "Rock Slide", - "Drill Run" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 206 - }, - "207": { - "name": "Gligar", - "forms": { - "803": { - "name": "Normal", - "proto": "GLIGAR_NORMAL", - "evolutions": [ - { - "pokemon": 472, - "form": 806 - } - ] - }, - "804": { - "name": "Shadow", - "proto": "GLIGAR_SHADOW", - "evolutions": [ - { - "pokemon": 472, - "form": 807 - } - ] - }, - "805": { - "name": "Purified", - "proto": "GLIGAR_PURIFIED", - "evolutions": [ - { - "pokemon": 472, - "form": 808 - } - ] - } - }, - "default_form_id": 803, - "pokedex_id": 207, - "genId": "2", - "generation": "Johto", - "types": [ - "Ground", - "Flying" - ], - "attack": 143, - "defense": 184, - "stamina": 163, - "height": 1.09, - "weight": 64.8, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Fury Cutter", - "Wing Attack" - ], - "charged_moves": [ - "Dig", - "Aerial Ace", - "Night Slash" - ], - "evolutions": [ - { - "pokemon": 472, - "form": 806 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 207, - "little": true - }, - "208": { - "name": "Steelix", - "forms": { - "905": { - "name": "Normal", - "proto": "STEELIX_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "906": { - "name": "Shadow", - "proto": "STEELIX_SHADOW" - }, - "907": { - "name": "Purified", - "proto": "STEELIX_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 905, - "pokedex_id": 208, - "genId": "2", - "generation": "Johto", - "types": [ - "Steel", - "Ground" - ], - "attack": 148, - "defense": 272, - "stamina": 181, - "height": 9.19, - "weight": 400, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Iron Tail", - "Dragon Tail", - "Thunder Fang" - ], - "charged_moves": [ - "Earthquake", - "Heavy Slam", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 95, - "temp_evolutions": { - "1": { - "attack": 212, - "defense": 327, - "stamina": 181, - "unreleased": true - } - } - }, - "209": { - "name": "Snubbull", - "forms": { - "1253": { - "name": "Normal", - "proto": "SNUBBULL_NORMAL", - "evolutions": [ - { - "pokemon": 210, - "form": 1256 - } - ] - }, - "1254": { - "name": "Shadow", - "proto": "SNUBBULL_SHADOW", - "evolutions": [ - { - "pokemon": 210, - "form": 1257 - } - ] - }, - "1255": { - "name": "Purified", - "proto": "SNUBBULL_PURIFIED", - "evolutions": [ - { - "pokemon": 210, - "form": 1258 - } - ] - } - }, - "default_form_id": 1253, - "pokedex_id": 209, - "genId": "2", - "generation": "Johto", - "types": [ - "Fairy" - ], - "attack": 137, - "defense": 85, - "stamina": 155, - "height": 0.61, - "weight": 7.8, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Dazzling Gleam", - "Brick Break" - ], - "evolutions": [ - { - "pokemon": 210, - "form": 1256 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 209, - "little": true - }, - "210": { - "name": "Granbull", - "forms": { - "1256": { - "name": "Normal", - "proto": "GRANBULL_NORMAL" - }, - "1257": { - "name": "Shadow", - "proto": "GRANBULL_SHADOW" - }, - "1258": { - "name": "Purified", - "proto": "GRANBULL_PURIFIED" - } - }, - "default_form_id": 1256, - "pokedex_id": 210, - "genId": "2", - "generation": "Johto", - "types": [ - "Fairy" - ], - "attack": 212, - "defense": 131, - "stamina": 207, - "height": 1.4, - "weight": 48.7, - "flee_rate": 0.08, - "capture_rate": 0.15, - "quick_moves": [ - "Bite", - "Snarl", - "Charm" - ], - "charged_moves": [ - "Crunch", - "Play Rough", - "Close Combat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 209 - }, - "211": { - "name": "Qwilfish", - "forms": { - "1259": { - "name": "Normal", - "proto": "QWILFISH_NORMAL" - }, - "1260": { - "name": "Shadow", - "proto": "QWILFISH_SHADOW" - }, - "1261": { - "name": "Purified", - "proto": "QWILFISH_PURIFIED" - } - }, - "default_form_id": 1259, - "pokedex_id": 211, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Poison" - ], - "attack": 184, - "defense": 138, - "stamina": 163, - "height": 0.51, - "weight": 3.9, - "flee_rate": 0.08, - "capture_rate": 0.3, - "quick_moves": [ - "Poison Sting", - "Water Gun" - ], - "charged_moves": [ - "Aqua Tail", - "Ice Beam", - "Sludge Wave", - "Acid Spray", - "Fell Stinger" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 211 - }, - "212": { - "name": "Scizor", - "forms": { - "250": { - "name": "Normal", - "proto": "SCIZOR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "251": { - "name": "Shadow", - "proto": "SCIZOR_SHADOW" - }, - "252": { - "name": "Purified", - "proto": "SCIZOR_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 250, - "pokedex_id": 212, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Steel" - ], - "attack": 236, - "defense": 181, - "stamina": 172, - "height": 2.01, - "weight": 125, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Bullet Punch", - "Fury Cutter" - ], - "charged_moves": [ - "X Scissor", - "Iron Head", - "Night Slash" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 123, - "temp_evolutions": { - "1": { - "attack": 279, - "defense": 250, - "stamina": 172, - "unreleased": true - } - } - }, - "213": { - "name": "Shuckle", - "forms": { - "827": { - "name": "Normal", - "proto": "SHUCKLE_NORMAL" - }, - "828": { - "name": "Shadow", - "proto": "SHUCKLE_SHADOW" - }, - "829": { - "name": "Purified", - "proto": "SHUCKLE_PURIFIED" - } - }, - "default_form_id": 827, - "pokedex_id": 213, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Rock" - ], - "attack": 17, - "defense": 396, - "stamina": 85, - "height": 0.61, - "weight": 20.5, - "flee_rate": 0.07, - "capture_rate": 0.3, - "quick_moves": [ - "Struggle Bug", - "Rock Throw" - ], - "charged_moves": [ - "Rock Blast", - "Stone Edge", - "Gyro Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 213 - }, - "214": { - "name": "Heracross", - "forms": { - "1262": { - "name": "Normal", - "proto": "HERACROSS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1263": { - "name": "Shadow", - "proto": "HERACROSS_SHADOW" - }, - "1264": { - "name": "Purified", - "proto": "HERACROSS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1262, - "pokedex_id": 214, - "genId": "2", - "generation": "Johto", - "types": [ - "Bug", - "Fighting" - ], - "attack": 234, - "defense": 179, - "stamina": 190, - "height": 1.5, - "weight": 54, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Counter", - "Struggle Bug" - ], - "charged_moves": [ - "Megahorn", - "Close Combat", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 214, - "temp_evolutions": { - "1": { - "attack": 334, - "defense": 223, - "stamina": 190, - "unreleased": true - } - } - }, - "215": { - "name": "Sneasel", - "forms": { - "797": { - "name": "Normal", - "proto": "SNEASEL_NORMAL", - "evolutions": [ - { - "pokemon": 461, - "form": 800 - } - ] - }, - "798": { - "name": "Shadow", - "proto": "SNEASEL_SHADOW", - "evolutions": [ - { - "pokemon": 461, - "form": 801 - } - ] - }, - "799": { - "name": "Purified", - "proto": "SNEASEL_PURIFIED", - "evolutions": [ - { - "pokemon": 461, - "form": 802 - } - ] - } - }, - "default_form_id": 797, - "pokedex_id": 215, - "genId": "2", - "generation": "Johto", - "types": [ - "Dark", - "Ice" - ], - "attack": 189, - "defense": 146, - "stamina": 146, - "height": 0.89, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Ice Shard", - "Feint Attack" - ], - "charged_moves": [ - "Avalanche", - "Ice Punch", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 461, - "form": 800 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 215, - "little": true - }, - "216": { - "name": "Teddiursa", - "forms": { - "1265": { - "name": "Normal", - "proto": "TEDDIURSA_NORMAL", - "evolutions": [ - { - "pokemon": 217, - "form": 1268 - } - ] - }, - "1266": { - "name": "Shadow", - "proto": "TEDDIURSA_SHADOW", - "evolutions": [ - { - "pokemon": 217, - "form": 1269 - } - ] - }, - "1267": { - "name": "Purified", - "proto": "TEDDIURSA_PURIFIED", - "evolutions": [ - { - "pokemon": 217, - "form": 1270 - } - ] - } - }, - "default_form_id": 1265, - "pokedex_id": 216, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 142, - "defense": 93, - "stamina": 155, - "height": 0.61, - "weight": 8.8, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Lick" - ], - "charged_moves": [ - "Cross Chop", - "Crunch", - "Play Rough" - ], - "evolutions": [ - { - "pokemon": 217, - "form": 1268 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 216, - "little": true - }, - "217": { - "name": "Ursaring", - "forms": { - "1268": { - "name": "Normal", - "proto": "URSARING_NORMAL" - }, - "1269": { - "name": "Shadow", - "proto": "URSARING_SHADOW" - }, - "1270": { - "name": "Purified", - "proto": "URSARING_PURIFIED" - } - }, - "default_form_id": 1268, - "pokedex_id": 217, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 236, - "defense": 144, - "stamina": 207, - "height": 1.8, - "weight": 125.8, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Metal Claw", - "Counter", - "Shadow Claw" - ], - "charged_moves": [ - "Close Combat", - "Hyper Beam", - "Play Rough" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 216 - }, - "218": { - "name": "Slugma", - "forms": { - "1271": { - "name": "Normal", - "proto": "SLUGMA_NORMAL" - }, - "1272": { - "name": "Shadow", - "proto": "SLUGMA_SHADOW" - }, - "1273": { - "name": "Purified", - "proto": "SLUGMA_PURIFIED" - } - }, - "default_form_id": 1271, - "pokedex_id": 218, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 118, - "defense": 71, - "stamina": 120, - "height": 0.71, - "weight": 35, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Ember", - "Rock Throw" - ], - "charged_moves": [ - "Flame Burst", - "Flame Charge", - "Rock Slide" - ], - "evolutions": [ - { - "pokemon": 219 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 218, - "little": true - }, - "219": { - "name": "Magcargo", - "forms": { - "1274": { - "name": "Normal", - "proto": "MAGCARGO_NORMAL" - }, - "1275": { - "name": "Shadow", - "proto": "MAGCARGO_SHADOW" - }, - "1276": { - "name": "Purified", - "proto": "MAGCARGO_PURIFIED" - } - }, - "default_form_id": 1274, - "pokedex_id": 219, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire", - "Rock" - ], - "attack": 139, - "defense": 191, - "stamina": 137, - "height": 0.79, - "weight": 55, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Ember", - "Rock Throw" - ], - "charged_moves": [ - "Heat Wave", - "Overheat", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 218 - }, - "220": { - "name": "Swinub", - "forms": { - "1277": { - "name": "Normal", - "proto": "SWINUB_NORMAL", - "evolutions": [ - { - "pokemon": 221, - "form": 1280 - } - ] - }, - "1278": { - "name": "Shadow", - "proto": "SWINUB_SHADOW", - "evolutions": [ - { - "pokemon": 221, - "form": 1281 - } - ] - }, - "1279": { - "name": "Purified", - "proto": "SWINUB_PURIFIED", - "evolutions": [ - { - "pokemon": 221, - "form": 1282 - } - ] - } - }, - "default_form_id": 1277, - "pokedex_id": 220, - "genId": "2", - "generation": "Johto", - "types": [ - "Ice", - "Ground" - ], - "attack": 90, - "defense": 69, - "stamina": 137, - "height": 0.41, - "weight": 6.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Powder Snow" - ], - "charged_moves": [ - "Icy Wind", - "Body Slam", - "Rock Slide" - ], - "evolutions": [ - { - "pokemon": 221, - "form": 1280 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 220, - "little": true - }, - "221": { - "name": "Piloswine", - "forms": { - "1280": { - "name": "Normal", - "proto": "PILOSWINE_NORMAL", - "evolutions": [ - { - "pokemon": 473, - "form": 1838 - } - ] - }, - "1281": { - "name": "Shadow", - "proto": "PILOSWINE_SHADOW", - "evolutions": [ - { - "pokemon": 473, - "form": 1839 - } - ] - }, - "1282": { - "name": "Purified", - "proto": "PILOSWINE_PURIFIED", - "evolutions": [ - { - "pokemon": 473, - "form": 1840 - } - ] - } - }, - "default_form_id": 1280, - "pokedex_id": 221, - "genId": "2", - "generation": "Johto", - "types": [ - "Ice", - "Ground" - ], - "attack": 181, - "defense": 138, - "stamina": 225, - "height": 1.09, - "weight": 55.8, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Ice Shard", - "Powder Snow" - ], - "charged_moves": [ - "Avalanche", - "Bulldoze", - "Stone Edge" - ], - "evolutions": [ - { - "pokemon": 473, - "form": 1838 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 220 - }, - "222": { - "name": "Corsola", - "forms": { - "1283": { - "name": "Normal", - "proto": "CORSOLA_NORMAL" - }, - "1284": { - "name": "Shadow", - "proto": "CORSOLA_SHADOW" - }, - "1285": { - "name": "Purified", - "proto": "CORSOLA_PURIFIED" - }, - "2340": { - "name": "Galarian", - "proto": "CORSOLA_GALARIAN" - } - }, - "default_form_id": 1283, - "pokedex_id": 222, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Rock" - ], - "attack": 118, - "defense": 156, - "stamina": 146, - "height": 0.61, - "weight": 5, - "flee_rate": 0.12, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Bubble" - ], - "charged_moves": [ - "Rock Blast", - "Power Gem", - "Bubble Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 222 - }, - "223": { - "name": "Remoraid", - "forms": { - "1286": { - "name": "Normal", - "proto": "REMORAID_NORMAL" - }, - "1287": { - "name": "Shadow", - "proto": "REMORAID_SHADOW" - }, - "1288": { - "name": "Purified", - "proto": "REMORAID_PURIFIED" - } - }, - "default_form_id": 1286, - "pokedex_id": 223, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 127, - "defense": 69, - "stamina": 111, - "height": 0.61, - "weight": 12, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Aurora Beam", - "Water Pulse", - "Rock Blast" - ], - "evolutions": [ - { - "pokemon": 224 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 223, - "little": true - }, - "224": { - "name": "Octillery", - "forms": { - "1289": { - "name": "Normal", - "proto": "OCTILLERY_NORMAL" - }, - "1290": { - "name": "Shadow", - "proto": "OCTILLERY_SHADOW" - }, - "1291": { - "name": "Purified", - "proto": "OCTILLERY_PURIFIED" - } - }, - "default_form_id": 1289, - "pokedex_id": 224, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 197, - "defense": 141, - "stamina": 181, - "height": 0.89, - "weight": 28.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Gunk Shot", - "Water Pulse", - "Aurora Beam", - "Acid Spray", - "Octazooka" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 223 - }, - "225": { - "name": "Delibird", - "forms": { - "938": { - "name": "Normal", - "proto": "DELIBIRD_NORMAL" - }, - "939": { - "name": "Shadow", - "proto": "DELIBIRD_SHADOW" - }, - "940": { - "name": "Purified", - "proto": "DELIBIRD_PURIFIED" - }, - "2671": { - "name": "Winter 2020", - "proto": "DELIBIRD_WINTER_2020" - } - }, - "default_form_id": 938, - "pokedex_id": 225, - "genId": "2", - "generation": "Johto", - "types": [ - "Ice", - "Flying" - ], - "attack": 128, - "defense": 90, - "stamina": 128, - "height": 0.89, - "weight": 16, - "flee_rate": 0.2, - "capture_rate": 0.2, - "quick_moves": [ - "Present" - ], - "charged_moves": [ - "Ice Punch", - "Icy Wind", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 225 - }, - "226": { - "name": "Mantine", - "forms": { - "1292": { - "name": "Normal", - "proto": "MANTINE_NORMAL" - }, - "1293": { - "name": "Shadow", - "proto": "MANTINE_SHADOW" - }, - "1294": { - "name": "Purified", - "proto": "MANTINE_PURIFIED" - } - }, - "default_form_id": 1292, - "pokedex_id": 226, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Flying" - ], - "attack": 148, - "defense": 226, - "stamina": 163, - "height": 2.11, - "weight": 220, - "flee_rate": 0.07, - "capture_rate": 0.3, - "quick_moves": [ - "Bubble", - "Wing Attack", - "Bullet Seed" - ], - "charged_moves": [ - "Water Pulse", - "Ice Beam", - "Aerial Ace", - "Bubble Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 226 - }, - "227": { - "name": "Skarmory", - "forms": { - "1295": { - "name": "Normal", - "proto": "SKARMORY_NORMAL" - }, - "1296": { - "name": "Shadow", - "proto": "SKARMORY_SHADOW" - }, - "1297": { - "name": "Purified", - "proto": "SKARMORY_PURIFIED" - } - }, - "default_form_id": 1295, - "pokedex_id": 227, - "genId": "2", - "generation": "Johto", - "types": [ - "Steel", - "Flying" - ], - "attack": 148, - "defense": 226, - "stamina": 163, - "height": 1.7, - "weight": 50.5, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Steel Wing", - "Air Slash" - ], - "charged_moves": [ - "Brave Bird", - "Sky Attack", - "Flash Cannon" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 227 - }, - "228": { - "name": "Houndour", - "forms": { - "229": { - "name": "Normal", - "proto": "HOUNDOUR_NORMAL", - "evolutions": [ - { - "pokemon": 229, - "form": 232 - } - ] - }, - "230": { - "name": "Shadow", - "proto": "HOUNDOUR_SHADOW", - "evolutions": [ - { - "pokemon": 229, - "form": 233 - } - ] - }, - "231": { - "name": "Purified", - "proto": "HOUNDOUR_PURIFIED", - "evolutions": [ - { - "pokemon": 229, - "form": 234 - } - ] - } - }, - "default_form_id": 229, - "pokedex_id": 228, - "genId": "2", - "generation": "Johto", - "types": [ - "Dark", - "Fire" - ], - "attack": 152, - "defense": 83, - "stamina": 128, - "height": 0.61, - "weight": 10.8, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Feint Attack", - "Ember" - ], - "charged_moves": [ - "Crunch", - "Flamethrower", - "Dark Pulse" - ], - "evolutions": [ - { - "pokemon": 229, - "form": 232 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 228, - "little": true - }, - "229": { - "name": "Houndoom", - "forms": { - "232": { - "name": "Normal", - "proto": "HOUNDOOM_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "233": { - "name": "Shadow", - "proto": "HOUNDOOM_SHADOW" - }, - "234": { - "name": "Purified", - "proto": "HOUNDOOM_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 232, - "pokedex_id": 229, - "genId": "2", - "generation": "Johto", - "types": [ - "Dark", - "Fire" - ], - "attack": 224, - "defense": 144, - "stamina": 181, - "height": 1.4, - "weight": 35, - "flee_rate": 0.06, - "capture_rate": 0.15, - "quick_moves": [ - "Snarl", - "Fire Fang" - ], - "charged_moves": [ - "Crunch", - "Fire Blast", - "Foul Play", - "Flamethrower" - ], - "temp_evolutions": { - "1": { - "attack": 289, - "defense": 194, - "stamina": 181, - "height": 1.9, - "weight": 49.5 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 228 - }, - "230": { - "name": "Kingdra", - "forms": { - "1298": { - "name": "Normal", - "proto": "KINGDRA_NORMAL" - }, - "1299": { - "name": "Shadow", - "proto": "KINGDRA_SHADOW" - }, - "1300": { - "name": "Purified", - "proto": "KINGDRA_PURIFIED" - } - }, - "default_form_id": 1298, - "pokedex_id": 230, - "genId": "2", - "generation": "Johto", - "types": [ - "Water", - "Dragon" - ], - "attack": 194, - "defense": 194, - "stamina": 181, - "height": 1.8, - "weight": 152, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Waterfall", - "Dragon Breath" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Outrage", - "Octazooka" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 116 - }, - "231": { - "name": "Phanpy", - "forms": { - "1301": { - "name": "Normal", - "proto": "PHANPY_NORMAL" - }, - "1302": { - "name": "Shadow", - "proto": "PHANPY_SHADOW" - }, - "1303": { - "name": "Purified", - "proto": "PHANPY_PURIFIED" - } - }, - "default_form_id": 1301, - "pokedex_id": 231, - "genId": "2", - "generation": "Johto", - "types": [ - "Ground" - ], - "attack": 107, - "defense": 98, - "stamina": 207, - "height": 0.51, - "weight": 33.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Rock Smash" - ], - "charged_moves": [ - "Bulldoze", - "Rock Slide", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 232 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 231, - "little": true - }, - "232": { - "name": "Donphan", - "forms": { - "1304": { - "name": "Normal", - "proto": "DONPHAN_NORMAL" - }, - "1305": { - "name": "Shadow", - "proto": "DONPHAN_SHADOW" - }, - "1306": { - "name": "Purified", - "proto": "DONPHAN_PURIFIED" - } - }, - "default_form_id": 1304, - "pokedex_id": 232, - "genId": "2", - "generation": "Johto", - "types": [ - "Ground" - ], - "attack": 214, - "defense": 185, - "stamina": 207, - "height": 1.09, - "weight": 120, - "flee_rate": 0.07, - "capture_rate": 0.125, - "quick_moves": [ - "Tackle", - "Counter", - "Mud Slap", - "Charm" - ], - "charged_moves": [ - "Earthquake", - "Heavy Slam", - "Play Rough" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 231 - }, - "233": { - "name": "Porygon2", - "forms": { - "680": { - "name": "Normal", - "proto": "PORYGON2_NORMAL", - "evolutions": [ - { - "pokemon": 474, - "form": 683 - } - ] - }, - "681": { - "name": "Shadow", - "proto": "PORYGON2_SHADOW", - "evolutions": [ - { - "pokemon": 474, - "form": 684 - } - ] - }, - "682": { - "name": "Purified", - "proto": "PORYGON2_PURIFIED", - "evolutions": [ - { - "pokemon": 474, - "form": 685 - } - ] - } - }, - "default_form_id": 680, - "pokedex_id": 233, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 198, - "defense": 180, - "stamina": 198, - "height": 0.61, - "weight": 32.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Hidden Power", - "Charge Beam", - "Lock On" - ], - "charged_moves": [ - "Solar Beam", - "Hyper Beam", - "Zap Cannon", - "Tri Attack" - ], - "evolutions": [ - { - "pokemon": 474, - "form": 683 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 137 - }, - "234": { - "name": "Stantler", - "forms": { - "941": { - "name": "Normal", - "proto": "STANTLER_NORMAL" - }, - "942": { - "name": "Shadow", - "proto": "STANTLER_SHADOW" - }, - "943": { - "name": "Purified", - "proto": "STANTLER_PURIFIED" - } - }, - "default_form_id": 941, - "pokedex_id": 234, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 192, - "defense": 131, - "stamina": 177, - "height": 1.4, - "weight": 71.2, - "flee_rate": 0.08, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Zen Headbutt" - ], - "charged_moves": [ - "Stomp", - "Wild Charge", - "Megahorn" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 234 - }, - "235": { - "name": "Smeargle", - "forms": { - "1307": { - "name": "Normal", - "proto": "SMEARGLE_NORMAL" - }, - "1308": { - "name": "Shadow", - "proto": "SMEARGLE_SHADOW" - }, - "1309": { - "name": "Purified", - "proto": "SMEARGLE_PURIFIED" - } - }, - "default_form_id": 1307, - "pokedex_id": 235, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 40, - "defense": 83, - "stamina": 146, - "height": 1.19, - "weight": 58, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [], - "charged_moves": [], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_candy": 9999999, - "gym_defender_eligible": true, - "family": 235 - }, - "236": { - "name": "Tyrogue", - "forms": { - "1310": { - "name": "Normal", - "proto": "TYROGUE_NORMAL" - }, - "1311": { - "name": "Shadow", - "proto": "TYROGUE_SHADOW" - }, - "1312": { - "name": "Purified", - "proto": "TYROGUE_PURIFIED" - } - }, - "default_form_id": 1310, - "pokedex_id": 236, - "genId": "2", - "generation": "Johto", - "types": [ - "Fighting" - ], - "attack": 64, - "defense": 64, - "stamina": 111, - "height": 0.71, - "weight": 21, - "flee_rate": 0.2, - "quick_moves": [ - "Rock Smash", - "Tackle" - ], - "charged_moves": [ - "Brick Break", - "Rock Slide", - "Low Sweep" - ], - "evolutions": [ - { - "pokemon": 106 - }, - { - "pokemon": 107 - }, - { - "pokemon": 237 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 236, - "little": true - }, - "237": { - "name": "Hitmontop", - "forms": { - "1313": { - "name": "Normal", - "proto": "HITMONTOP_NORMAL" - }, - "1314": { - "name": "Shadow", - "proto": "HITMONTOP_SHADOW" - }, - "1315": { - "name": "Purified", - "proto": "HITMONTOP_PURIFIED" - } - }, - "default_form_id": 1313, - "pokedex_id": 237, - "genId": "2", - "generation": "Johto", - "types": [ - "Fighting" - ], - "attack": 173, - "defense": 207, - "stamina": 137, - "height": 1.4, - "weight": 48, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Rock Smash", - "Counter" - ], - "charged_moves": [ - "Close Combat", - "Gyro Ball", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 236 - }, - "238": { - "name": "Smoochum", - "forms": { - "1316": { - "name": "Normal", - "proto": "SMOOCHUM_NORMAL" - }, - "1317": { - "name": "Shadow", - "proto": "SMOOCHUM_SHADOW" - }, - "1318": { - "name": "Purified", - "proto": "SMOOCHUM_PURIFIED" - } - }, - "default_form_id": 1316, - "pokedex_id": 238, - "genId": "2", - "generation": "Johto", - "types": [ - "Ice", - "Psychic" - ], - "attack": 153, - "defense": 91, - "stamina": 128, - "height": 0.41, - "weight": 6, - "flee_rate": 0.2, - "capture_rate": 0.25, - "quick_moves": [ - "Powder Snow", - "Pound" - ], - "charged_moves": [ - "Ice Beam", - "Ice Punch", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 124 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 124, - "little": true - }, - "239": { - "name": "Elekid", - "forms": { - "1319": { - "name": "Normal", - "proto": "ELEKID_NORMAL" - }, - "1320": { - "name": "Shadow", - "proto": "ELEKID_SHADOW" - }, - "1321": { - "name": "Purified", - "proto": "ELEKID_PURIFIED" - } - }, - "default_form_id": 1319, - "pokedex_id": 239, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 135, - "defense": 101, - "stamina": 128, - "height": 0.61, - "weight": 23.5, - "flee_rate": 0.2, - "quick_moves": [ - "Thunder Shock", - "Low Kick" - ], - "charged_moves": [ - "Thunder Punch", - "Brick Break", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 125 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 125, - "little": true - }, - "240": { - "name": "Magby", - "forms": { - "1322": { - "name": "Normal", - "proto": "MAGBY_NORMAL" - }, - "1323": { - "name": "Shadow", - "proto": "MAGBY_SHADOW" - }, - "1324": { - "name": "Purified", - "proto": "MAGBY_PURIFIED" - } - }, - "default_form_id": 1322, - "pokedex_id": 240, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 151, - "defense": 99, - "stamina": 128, - "height": 0.71, - "weight": 21.4, - "flee_rate": 0.2, - "quick_moves": [ - "Ember", - "Karate Chop" - ], - "charged_moves": [ - "Brick Break", - "Fire Punch", - "Flame Burst" - ], - "evolutions": [ - { - "pokemon": 126 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 126, - "little": true - }, - "241": { - "name": "Miltank", - "forms": { - "1325": { - "name": "Normal", - "proto": "MILTANK_NORMAL" - }, - "1326": { - "name": "Shadow", - "proto": "MILTANK_SHADOW" - }, - "1327": { - "name": "Purified", - "proto": "MILTANK_PURIFIED" - } - }, - "default_form_id": 1325, - "pokedex_id": 241, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 157, - "defense": 193, - "stamina": 216, - "height": 1.19, - "weight": 75.5, - "flee_rate": 0.08, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Zen Headbutt" - ], - "charged_moves": [ - "Stomp", - "Body Slam", - "Gyro Ball", - "Thunderbolt", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 241 - }, - "242": { - "name": "Blissey", - "forms": { - "1328": { - "name": "Normal", - "proto": "BLISSEY_NORMAL" - }, - "1329": { - "name": "Shadow", - "proto": "BLISSEY_SHADOW" - }, - "1330": { - "name": "Purified", - "proto": "BLISSEY_PURIFIED" - } - }, - "default_form_id": 1328, - "pokedex_id": 242, - "genId": "2", - "generation": "Johto", - "types": [ - "Normal" - ], - "attack": 129, - "defense": 169, - "stamina": 496, - "height": 1.5, - "weight": 46.8, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic", - "Hyper Beam", - "Dazzling Gleam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 113 - }, - "243": { - "name": "Raikou", - "forms": { - "1331": { - "name": "Normal", - "proto": "RAIKOU_NORMAL" - }, - "1332": { - "name": "Shadow", - "proto": "RAIKOU_SHADOW" - }, - "1333": { - "name": "Purified", - "proto": "RAIKOU_PURIFIED" - } - }, - "default_form_id": 1331, - "pokedex_id": 243, - "genId": "2", - "generation": "Johto", - "types": [ - "Electric" - ], - "attack": 241, - "defense": 195, - "stamina": 207, - "height": 1.91, - "weight": 178, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Thunder Shock", - "Volt Switch" - ], - "charged_moves": [ - "Thunder", - "Thunderbolt", - "Wild Charge", - "Shadow Ball" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 243 - }, - "244": { - "name": "Entei", - "forms": { - "1334": { - "name": "Normal", - "proto": "ENTEI_NORMAL" - }, - "1335": { - "name": "Shadow", - "proto": "ENTEI_SHADOW" - }, - "1336": { - "name": "Purified", - "proto": "ENTEI_PURIFIED" - } - }, - "default_form_id": 1334, - "pokedex_id": 244, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire" - ], - "attack": 235, - "defense": 171, - "stamina": 251, - "height": 2.11, - "weight": 198, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Fire Spin", - "Fire Fang" - ], - "charged_moves": [ - "Flamethrower", - "Fire Blast", - "Overheat", - "Iron Head", - "Flame Charge" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 244 - }, - "245": { - "name": "Suicune", - "forms": { - "1337": { - "name": "Normal", - "proto": "SUICUNE_NORMAL" - }, - "1338": { - "name": "Shadow", - "proto": "SUICUNE_SHADOW" - }, - "1339": { - "name": "Purified", - "proto": "SUICUNE_PURIFIED" - } - }, - "default_form_id": 1337, - "pokedex_id": 245, - "genId": "2", - "generation": "Johto", - "types": [ - "Water" - ], - "attack": 180, - "defense": 235, - "stamina": 225, - "height": 2.01, - "weight": 187, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Extrasensory", - "Snarl", - "Ice Fang" - ], - "charged_moves": [ - "Hydro Pump", - "Bubble Beam", - "Water Pulse", - "Ice Beam" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 245 - }, - "246": { - "name": "Larvitar", - "forms": { - "313": { - "name": "Normal", - "proto": "LARVITAR_NORMAL", - "evolutions": [ - { - "pokemon": 247, - "form": 316 - } - ] - }, - "314": { - "name": "Shadow", - "proto": "LARVITAR_SHADOW", - "evolutions": [ - { - "pokemon": 247, - "form": 317 - } - ] - }, - "315": { - "name": "Purified", - "proto": "LARVITAR_PURIFIED", - "evolutions": [ - { - "pokemon": 247, - "form": 318 - } - ] - } - }, - "default_form_id": 313, - "pokedex_id": 246, - "genId": "2", - "generation": "Johto", - "types": [ - "Rock", - "Ground" - ], - "attack": 115, - "defense": 93, - "stamina": 137, - "height": 0.61, - "weight": 72, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Bite", - "Rock Smash" - ], - "charged_moves": [ - "Stomp", - "Crunch", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 247, - "form": 316 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 246, - "little": true - }, - "247": { - "name": "Pupitar", - "forms": { - "316": { - "name": "Normal", - "proto": "PUPITAR_NORMAL", - "evolutions": [ - { - "pokemon": 248, - "form": 319 - } - ] - }, - "317": { - "name": "Shadow", - "proto": "PUPITAR_SHADOW", - "evolutions": [ - { - "pokemon": 248, - "form": 320 - } - ] - }, - "318": { - "name": "Purified", - "proto": "PUPITAR_PURIFIED", - "evolutions": [ - { - "pokemon": 248, - "form": 321 - } - ] - } - }, - "default_form_id": 316, - "pokedex_id": 247, - "genId": "2", - "generation": "Johto", - "types": [ - "Rock", - "Ground" - ], - "attack": 155, - "defense": 133, - "stamina": 172, - "height": 1.19, - "weight": 152, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Bite", - "Rock Smash" - ], - "charged_moves": [ - "Dig", - "Crunch", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 248, - "form": 319 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 246 - }, - "248": { - "name": "Tyranitar", - "forms": { - "319": { - "name": "Normal", - "proto": "TYRANITAR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "320": { - "name": "Shadow", - "proto": "TYRANITAR_SHADOW" - }, - "321": { - "name": "Purified", - "proto": "TYRANITAR_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 319, - "pokedex_id": 248, - "genId": "2", - "generation": "Johto", - "types": [ - "Rock", - "Dark" - ], - "attack": 251, - "defense": 207, - "stamina": 225, - "height": 2.01, - "weight": 202, - "flee_rate": 0.04, - "capture_rate": 0.05, - "quick_moves": [ - "Bite", - "Iron Tail" - ], - "charged_moves": [ - "Fire Blast", - "Crunch", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 246, - "temp_evolutions": { - "1": { - "attack": 309, - "defense": 276, - "stamina": 225, - "unreleased": true - } - } - }, - "249": { - "name": "Lugia", - "forms": { - "1340": { - "name": "Normal", - "proto": "LUGIA_NORMAL" - }, - "1341": { - "name": "Shadow", - "proto": "LUGIA_SHADOW" - }, - "1342": { - "name": "Purified", - "proto": "LUGIA_PURIFIED" - } - }, - "default_form_id": 1340, - "pokedex_id": 249, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic", - "Flying" - ], - "attack": 193, - "defense": 310, - "stamina": 235, - "height": 5.21, - "weight": 216, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Extrasensory", - "Dragon Tail" - ], - "charged_moves": [ - "Sky Attack", - "Hydro Pump", - "Futuresight" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 249 - }, - "250": { - "name": "Ho Oh", - "forms": { - "1343": { - "name": "Normal", - "proto": "HO_OH_NORMAL" - }, - "1344": { - "name": "Shadow", - "proto": "HO_OH_SHADOW" - }, - "1345": { - "name": "Purified", - "proto": "HO_OH_PURIFIED" - } - }, - "default_form_id": 1343, - "pokedex_id": 250, - "genId": "2", - "generation": "Johto", - "types": [ - "Fire", - "Flying" - ], - "attack": 239, - "defense": 244, - "stamina": 214, - "height": 3.81, - "weight": 199, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Extrasensory", - "Steel Wing", - "Hidden Power", - "Incinerate" - ], - "charged_moves": [ - "Brave Bird", - "Fire Blast", - "Solar Beam" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 250 - }, - "251": { - "name": "Celebi", - "forms": { - "1346": { - "name": "Normal", - "proto": "CELEBI_NORMAL" - }, - "1347": { - "name": "Shadow", - "proto": "CELEBI_SHADOW" - }, - "1348": { - "name": "Purified", - "proto": "CELEBI_PURIFIED" - } - }, - "default_form_id": 1346, - "pokedex_id": 251, - "genId": "2", - "generation": "Johto", - "types": [ - "Psychic", - "Grass" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.61, - "weight": 5, - "capture_rate": 100, - "quick_moves": [ - "Confusion", - "Charge Beam" - ], - "charged_moves": [ - "Hyper Beam", - "Psychic", - "Dazzling Gleam", - "Seed Bomb", - "Leaf Storm" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 251 - }, - "252": { - "name": "Treecko", - "forms": { - "1349": { - "name": "Normal", - "proto": "TREECKO_NORMAL" - }, - "1350": { - "name": "Shadow", - "proto": "TREECKO_SHADOW" - }, - "1351": { - "name": "Purified", - "proto": "TREECKO_PURIFIED" - } - }, - "default_form_id": 1349, - "pokedex_id": 252, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 124, - "defense": 94, - "stamina": 120, - "height": 0.51, - "weight": 5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Pound", - "Bullet Seed" - ], - "charged_moves": [ - "Energy Ball", - "Aerial Ace", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 253 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 252, - "little": true - }, - "253": { - "name": "Grovyle", - "forms": { - "1352": { - "name": "Normal", - "proto": "GROVYLE_NORMAL" - }, - "1353": { - "name": "Shadow", - "proto": "GROVYLE_SHADOW" - }, - "1354": { - "name": "Purified", - "proto": "GROVYLE_PURIFIED" - } - }, - "default_form_id": 1352, - "pokedex_id": 253, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 172, - "defense": 120, - "stamina": 137, - "height": 0.89, - "weight": 21.6, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Quick Attack", - "Bullet Seed" - ], - "charged_moves": [ - "Leaf Blade", - "Aerial Ace", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 254 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 252 - }, - "254": { - "name": "Sceptile", - "forms": { - "1355": { - "name": "Normal", - "proto": "SCEPTILE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1356": { - "name": "Shadow", - "proto": "SCEPTILE_SHADOW" - }, - "1357": { - "name": "Purified", - "proto": "SCEPTILE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1355, - "pokedex_id": 254, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 223, - "defense": 169, - "stamina": 172, - "height": 1.7, - "weight": 52.2, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Fury Cutter", - "Bullet Seed" - ], - "charged_moves": [ - "Leaf Blade", - "Aerial Ace", - "Earthquake", - "Dragon Claw" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 252, - "temp_evolutions": { - "1": { - "attack": 320, - "defense": 186, - "stamina": 172, - "unreleased": true, - "types": [ - "Grass", - "Dragon" - ] - } - } - }, - "255": { - "name": "Torchic", - "forms": { - "1358": { - "name": "Normal", - "proto": "TORCHIC_NORMAL", - "evolutions": [ - { - "pokemon": 256, - "form": 1361 - } - ] - }, - "1359": { - "name": "Shadow", - "proto": "TORCHIC_SHADOW", - "evolutions": [ - { - "pokemon": 256, - "form": 1362 - } - ] - }, - "1360": { - "name": "Purified", - "proto": "TORCHIC_PURIFIED", - "evolutions": [ - { - "pokemon": 256, - "form": 1363 - } - ] - } - }, - "default_form_id": 1358, - "pokedex_id": 255, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire" - ], - "attack": 130, - "defense": 87, - "stamina": 128, - "height": 0.41, - "weight": 2.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flamethrower", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 256, - "form": 1361 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 255, - "little": true - }, - "256": { - "name": "Combusken", - "forms": { - "1361": { - "name": "Normal", - "proto": "COMBUSKEN_NORMAL", - "evolutions": [ - { - "pokemon": 257, - "form": 1364 - } - ] - }, - "1362": { - "name": "Shadow", - "proto": "COMBUSKEN_SHADOW", - "evolutions": [ - { - "pokemon": 257, - "form": 1365 - } - ] - }, - "1363": { - "name": "Purified", - "proto": "COMBUSKEN_PURIFIED", - "evolutions": [ - { - "pokemon": 257, - "form": 1366 - } - ] - } - }, - "default_form_id": 1361, - "pokedex_id": 256, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire", - "Fighting" - ], - "attack": 163, - "defense": 115, - "stamina": 155, - "height": 0.89, - "weight": 19.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Peck", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flamethrower", - "Rock Slide" - ], - "evolutions": [ - { - "pokemon": 257, - "form": 1364 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 255 - }, - "257": { - "name": "Blaziken", - "forms": { - "1364": { - "name": "Normal", - "proto": "BLAZIKEN_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1365": { - "name": "Shadow", - "proto": "BLAZIKEN_SHADOW" - }, - "1366": { - "name": "Purified", - "proto": "BLAZIKEN_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1364, - "pokedex_id": 257, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire", - "Fighting" - ], - "attack": 240, - "defense": 141, - "stamina": 190, - "height": 1.91, - "weight": 52, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Counter", - "Fire Spin" - ], - "charged_moves": [ - "Focus Blast", - "Overheat", - "Brave Bird", - "Blaze Kick" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 255, - "temp_evolutions": { - "1": { - "attack": 329, - "defense": 168, - "stamina": 190, - "unreleased": true - } - } - }, - "258": { - "name": "Mudkip", - "forms": { - "205": { - "name": "Normal", - "proto": "MUDKIP_NORMAL", - "evolutions": [ - { - "pokemon": 259, - "form": 208 - } - ] - }, - "206": { - "name": "Shadow", - "proto": "MUDKIP_SHADOW", - "evolutions": [ - { - "pokemon": 259, - "form": 209 - } - ] - }, - "207": { - "name": "Purified", - "proto": "MUDKIP_PURIFIED", - "evolutions": [ - { - "pokemon": 259, - "form": 210 - } - ] - } - }, - "default_form_id": 205, - "pokedex_id": 258, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 126, - "defense": 93, - "stamina": 137, - "height": 0.41, - "weight": 7.6, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Water Gun" - ], - "charged_moves": [ - "Dig", - "Sludge", - "Stomp" - ], - "evolutions": [ - { - "pokemon": 259, - "form": 208 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 258, - "little": true - }, - "259": { - "name": "Marshtomp", - "forms": { - "208": { - "name": "Normal", - "proto": "MARSHTOMP_NORMAL", - "evolutions": [ - { - "pokemon": 260, - "form": 211 - } - ] - }, - "209": { - "name": "Shadow", - "proto": "MARSHTOMP_SHADOW", - "evolutions": [ - { - "pokemon": 260, - "form": 212 - } - ] - }, - "210": { - "name": "Purified", - "proto": "MARSHTOMP_PURIFIED", - "evolutions": [ - { - "pokemon": 260, - "form": 213 - } - ] - } - }, - "default_form_id": 208, - "pokedex_id": 259, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Ground" - ], - "attack": 156, - "defense": 133, - "stamina": 172, - "height": 0.71, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Mud Shot", - "Water Gun" - ], - "charged_moves": [ - "Mud Bomb", - "Sludge", - "Surf" - ], - "evolutions": [ - { - "pokemon": 260, - "form": 211 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 258 - }, - "260": { - "name": "Swampert", - "forms": { - "211": { - "name": "Normal", - "proto": "SWAMPERT_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "212": { - "name": "Shadow", - "proto": "SWAMPERT_SHADOW" - }, - "213": { - "name": "Purified", - "proto": "SWAMPERT_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 211, - "pokedex_id": 260, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Ground" - ], - "attack": 208, - "defense": 175, - "stamina": 225, - "height": 1.5, - "weight": 81.9, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Mud Shot", - "Water Gun" - ], - "charged_moves": [ - "Earthquake", - "Sludge Wave", - "Surf", - "Muddy Water" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 258, - "temp_evolutions": { - "1": { - "attack": 283, - "defense": 218, - "stamina": 225, - "unreleased": true - } - } - }, - "261": { - "name": "Poochyena", - "forms": { - "1367": { - "name": "Normal", - "proto": "POOCHYENA_NORMAL", - "evolutions": [ - { - "pokemon": 262, - "form": 1370 - } - ] - }, - "1368": { - "name": "Shadow", - "proto": "POOCHYENA_SHADOW", - "evolutions": [ - { - "pokemon": 262, - "form": 1371 - } - ] - }, - "1369": { - "name": "Purified", - "proto": "POOCHYENA_PURIFIED", - "evolutions": [ - { - "pokemon": 262, - "form": 1372 - } - ] - } - }, - "default_form_id": 1367, - "pokedex_id": 261, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dark" - ], - "attack": 96, - "defense": 61, - "stamina": 111, - "height": 0.51, - "weight": 13.6, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Snarl" - ], - "charged_moves": [ - "Crunch", - "Dig", - "Poison Fang" - ], - "evolutions": [ - { - "pokemon": 262, - "form": 1370 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 261, - "little": true - }, - "262": { - "name": "Mightyena", - "forms": { - "1370": { - "name": "Normal", - "proto": "MIGHTYENA_NORMAL" - }, - "1371": { - "name": "Shadow", - "proto": "MIGHTYENA_SHADOW" - }, - "1372": { - "name": "Purified", - "proto": "MIGHTYENA_PURIFIED" - } - }, - "default_form_id": 1370, - "pokedex_id": 262, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dark" - ], - "attack": 171, - "defense": 132, - "stamina": 172, - "height": 0.99, - "weight": 37, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Fire Fang", - "Thunder Fang", - "Ice Fang" - ], - "charged_moves": [ - "Crunch", - "Play Rough", - "Poison Fang" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 261 - }, - "263": { - "name": "Zigzagoon", - "forms": { - "945": { - "name": "Normal", - "proto": "ZIGZAGOON_NORMAL", - "evolutions": [ - { - "pokemon": 264, - "form": 947 - } - ] - }, - "946": { - "name": "Galarian", - "proto": "ZIGZAGOON_GALARIAN", - "evolutions": [ - { - "pokemon": 264, - "form": 948 - } - ], - "quick_moves": [ - "Tackle", - "Take Down" - ], - "charged_moves": [ - "Dig", - "Body Slam", - "Swift" - ], - "types": [ - "Dark", - "Normal" - ] - }, - "1373": { - "name": "Shadow", - "proto": "ZIGZAGOON_SHADOW", - "evolutions": [ - { - "pokemon": 264, - "form": 1375 - } - ] - }, - "1374": { - "name": "Purified", - "proto": "ZIGZAGOON_PURIFIED", - "evolutions": [ - { - "pokemon": 264, - "form": 1376 - } - ] - } - }, - "default_form_id": 945, - "pokedex_id": 263, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 58, - "defense": 80, - "stamina": 116, - "height": 0.4, - "weight": 17.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Rock Smash" - ], - "charged_moves": [ - "Dig", - "Grass Knot", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 264, - "form": 947 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 263, - "little": true - }, - "264": { - "name": "Linoone", - "forms": { - "947": { - "name": "Normal", - "proto": "LINOONE_NORMAL" - }, - "948": { - "name": "Galarian", - "proto": "LINOONE_GALARIAN", - "evolutions": [ - { - "pokemon": 862, - "form": 2501 - } - ], - "quick_moves": [ - "Snarl", - "Lick" - ], - "charged_moves": [ - "Dig", - "Body Slam", - "Gunk Shot" - ], - "types": [ - "Dark", - "Normal" - ] - }, - "1375": { - "name": "Shadow", - "proto": "LINOONE_SHADOW" - }, - "1376": { - "name": "Purified", - "proto": "LINOONE_PURIFIED" - } - }, - "default_form_id": 947, - "pokedex_id": 264, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 142, - "defense": 128, - "stamina": 186, - "height": 0.5, - "weight": 32.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Shadow Claw", - "Tackle" - ], - "charged_moves": [ - "Dig", - "Grass Knot", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 263 - }, - "265": { - "name": "Wurmple", - "forms": { - "600": { - "name": "Normal", - "proto": "WURMPLE_NORMAL" - }, - "1377": { - "name": "Shadow", - "proto": "WURMPLE_SHADOW" - }, - "1378": { - "name": "Purified", - "proto": "WURMPLE_PURIFIED" - }, - "2327": { - "name": "Spring 2020", - "proto": "WURMPLE_SPRING_2020" - } - }, - "default_form_id": 600, - "pokedex_id": 265, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug" - ], - "attack": 75, - "defense": 59, - "stamina": 128, - "height": 0.3, - "weight": 3.6, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 266 - }, - { - "pokemon": 268 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 265, - "little": true - }, - "266": { - "name": "Silcoon", - "forms": { - "1379": { - "name": "Normal", - "proto": "SILCOON_NORMAL" - }, - "1380": { - "name": "Shadow", - "proto": "SILCOON_SHADOW" - }, - "1381": { - "name": "Purified", - "proto": "SILCOON_PURIFIED" - } - }, - "default_form_id": 1379, - "pokedex_id": 266, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug" - ], - "attack": 60, - "defense": 77, - "stamina": 137, - "height": 0.61, - "weight": 10, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Poison Sting", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 267 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 265 - }, - "267": { - "name": "Beautifly", - "forms": { - "1382": { - "name": "Normal", - "proto": "BEAUTIFLY_NORMAL" - }, - "1383": { - "name": "Shadow", - "proto": "BEAUTIFLY_SHADOW" - }, - "1384": { - "name": "Purified", - "proto": "BEAUTIFLY_PURIFIED" - } - }, - "default_form_id": 1382, - "pokedex_id": 267, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Flying" - ], - "attack": 189, - "defense": 98, - "stamina": 155, - "height": 0.99, - "weight": 28.4, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Struggle Bug", - "Infestation" - ], - "charged_moves": [ - "Silver Wind", - "Air Cutter", - "Bug Buzz" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 265 - }, - "268": { - "name": "Cascoon", - "forms": { - "1385": { - "name": "Normal", - "proto": "CASCOON_NORMAL" - }, - "1386": { - "name": "Shadow", - "proto": "CASCOON_SHADOW" - }, - "1387": { - "name": "Purified", - "proto": "CASCOON_PURIFIED" - } - }, - "default_form_id": 1385, - "pokedex_id": 268, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug" - ], - "attack": 60, - "defense": 77, - "stamina": 137, - "height": 0.71, - "weight": 11.5, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Poison Sting", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 269 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 265 - }, - "269": { - "name": "Dustox", - "forms": { - "1388": { - "name": "Normal", - "proto": "DUSTOX_NORMAL" - }, - "1389": { - "name": "Shadow", - "proto": "DUSTOX_SHADOW" - }, - "1390": { - "name": "Purified", - "proto": "DUSTOX_PURIFIED" - } - }, - "default_form_id": 1388, - "pokedex_id": 269, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Poison" - ], - "attack": 98, - "defense": 162, - "stamina": 155, - "height": 1.19, - "weight": 31.6, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Struggle Bug", - "Confusion" - ], - "charged_moves": [ - "Silver Wind", - "Sludge Bomb", - "Bug Buzz" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 265 - }, - "270": { - "name": "Lotad", - "forms": { - "1391": { - "name": "Normal", - "proto": "LOTAD_NORMAL" - }, - "1392": { - "name": "Shadow", - "proto": "LOTAD_SHADOW" - }, - "1393": { - "name": "Purified", - "proto": "LOTAD_PURIFIED" - } - }, - "default_form_id": 1391, - "pokedex_id": 270, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Grass" - ], - "attack": 71, - "defense": 77, - "stamina": 120, - "height": 0.51, - "weight": 2.6, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Razor Leaf" - ], - "charged_moves": [ - "Bubble Beam", - "Energy Ball" - ], - "evolutions": [ - { - "pokemon": 271 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 270, - "little": true - }, - "271": { - "name": "Lombre", - "forms": { - "1394": { - "name": "Normal", - "proto": "LOMBRE_NORMAL" - }, - "1395": { - "name": "Shadow", - "proto": "LOMBRE_SHADOW" - }, - "1396": { - "name": "Purified", - "proto": "LOMBRE_PURIFIED" - } - }, - "default_form_id": 1394, - "pokedex_id": 271, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Grass" - ], - "attack": 112, - "defense": 119, - "stamina": 155, - "height": 1.19, - "weight": 32.5, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Bubble", - "Razor Leaf" - ], - "charged_moves": [ - "Bubble Beam", - "Ice Beam", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 272 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 270 - }, - "272": { - "name": "Ludicolo", - "forms": { - "1397": { - "name": "Normal", - "proto": "LUDICOLO_NORMAL" - }, - "1398": { - "name": "Shadow", - "proto": "LUDICOLO_SHADOW" - }, - "1399": { - "name": "Purified", - "proto": "LUDICOLO_PURIFIED" - } - }, - "default_form_id": 1397, - "pokedex_id": 272, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Grass" - ], - "attack": 173, - "defense": 176, - "stamina": 190, - "height": 1.5, - "weight": 55, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Bubble", - "Razor Leaf" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Solar Beam", - "Ice Beam", - "Energy Ball", - "Leaf Storm" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 270 - }, - "273": { - "name": "Seedot", - "forms": { - "625": { - "name": "Normal", - "proto": "SEEDOT_NORMAL", - "evolutions": [ - { - "pokemon": 274, - "form": 628 - } - ] - }, - "626": { - "name": "Shadow", - "proto": "SEEDOT_SHADOW", - "evolutions": [ - { - "pokemon": 274, - "form": 629 - } - ] - }, - "627": { - "name": "Purified", - "proto": "SEEDOT_PURIFIED", - "evolutions": [ - { - "pokemon": 274, - "form": 630 - } - ] - } - }, - "default_form_id": 625, - "pokedex_id": 273, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 71, - "defense": 77, - "stamina": 120, - "height": 0.51, - "weight": 4, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Bullet Seed", - "Quick Attack" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 274, - "form": 628 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 273, - "little": true - }, - "274": { - "name": "Nuzleaf", - "forms": { - "628": { - "name": "Normal", - "proto": "NUZLEAF_NORMAL", - "evolutions": [ - { - "pokemon": 275, - "form": 631 - } - ] - }, - "629": { - "name": "Shadow", - "proto": "NUZLEAF_SHADOW", - "evolutions": [ - { - "pokemon": 275, - "form": 632 - } - ] - }, - "630": { - "name": "Purified", - "proto": "NUZLEAF_PURIFIED", - "evolutions": [ - { - "pokemon": 275, - "form": 633 - } - ] - } - }, - "default_form_id": 628, - "pokedex_id": 274, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Dark" - ], - "attack": 134, - "defense": 78, - "stamina": 172, - "height": 0.99, - "weight": 28, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Razor Leaf", - "Feint Attack" - ], - "charged_moves": [ - "Leaf Blade", - "Grass Knot", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 275, - "form": 631 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 273 - }, - "275": { - "name": "Shiftry", - "forms": { - "631": { - "name": "Normal", - "proto": "SHIFTRY_NORMAL" - }, - "632": { - "name": "Shadow", - "proto": "SHIFTRY_SHADOW" - }, - "633": { - "name": "Purified", - "proto": "SHIFTRY_PURIFIED" - } - }, - "default_form_id": 631, - "pokedex_id": 275, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Dark" - ], - "attack": 200, - "defense": 121, - "stamina": 207, - "height": 1.3, - "weight": 59.6, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Razor Leaf", - "Feint Attack", - "Snarl" - ], - "charged_moves": [ - "Leaf Blade", - "Hurricane", - "Foul Play", - "Leaf Tornado" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 273 - }, - "276": { - "name": "Taillow", - "forms": { - "1400": { - "name": "Normal", - "proto": "TAILLOW_NORMAL" - }, - "1401": { - "name": "Shadow", - "proto": "TAILLOW_SHADOW" - }, - "1402": { - "name": "Purified", - "proto": "TAILLOW_PURIFIED" - } - }, - "default_form_id": 1400, - "pokedex_id": 276, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal", - "Flying" - ], - "attack": 106, - "defense": 61, - "stamina": 120, - "height": 0.3, - "weight": 2.3, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Quick Attack" - ], - "charged_moves": [ - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 277 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 276, - "little": true - }, - "277": { - "name": "Swellow", - "forms": { - "1403": { - "name": "Normal", - "proto": "SWELLOW_NORMAL" - }, - "1404": { - "name": "Shadow", - "proto": "SWELLOW_SHADOW" - }, - "1405": { - "name": "Purified", - "proto": "SWELLOW_PURIFIED" - } - }, - "default_form_id": 1403, - "pokedex_id": 277, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal", - "Flying" - ], - "attack": 185, - "defense": 124, - "stamina": 155, - "height": 0.71, - "weight": 19.8, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Wing Attack", - "Steel Wing" - ], - "charged_moves": [ - "Aerial Ace", - "Brave Bird", - "Sky Attack" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 276 - }, - "278": { - "name": "Wingull", - "forms": { - "1406": { - "name": "Normal", - "proto": "WINGULL_NORMAL" - }, - "1407": { - "name": "Shadow", - "proto": "WINGULL_SHADOW" - }, - "1408": { - "name": "Purified", - "proto": "WINGULL_PURIFIED" - } - }, - "default_form_id": 1406, - "pokedex_id": 278, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Flying" - ], - "attack": 106, - "defense": 61, - "stamina": 120, - "height": 0.61, - "weight": 9.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Quick Attack" - ], - "charged_moves": [ - "Water Pulse", - "Air Cutter", - "Ice Beam" - ], - "evolutions": [ - { - "pokemon": 279 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 278, - "little": true - }, - "279": { - "name": "Pelipper", - "forms": { - "1409": { - "name": "Normal", - "proto": "PELIPPER_NORMAL" - }, - "1410": { - "name": "Shadow", - "proto": "PELIPPER_SHADOW" - }, - "1411": { - "name": "Purified", - "proto": "PELIPPER_PURIFIED" - } - }, - "default_form_id": 1409, - "pokedex_id": 279, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Flying" - ], - "attack": 175, - "defense": 174, - "stamina": 155, - "height": 1.19, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Wing Attack" - ], - "charged_moves": [ - "Hydro Pump", - "Hurricane", - "Blizzard", - "Weather Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 278 - }, - "280": { - "name": "Ralts", - "forms": { - "292": { - "name": "Normal", - "proto": "RALTS_NORMAL", - "evolutions": [ - { - "pokemon": 281, - "form": 295 - } - ] - }, - "293": { - "name": "Shadow", - "proto": "RALTS_SHADOW", - "evolutions": [ - { - "pokemon": 281, - "form": 296 - } - ] - }, - "294": { - "name": "Purified", - "proto": "RALTS_PURIFIED", - "evolutions": [ - { - "pokemon": 281, - "form": 297 - } - ] - } - }, - "default_form_id": 292, - "pokedex_id": 280, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic", - "Fairy" - ], - "attack": 79, - "defense": 59, - "stamina": 99, - "height": 0.41, - "weight": 6.6, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Confusion", - "Charge Beam" - ], - "charged_moves": [ - "Psyshock", - "Disarming Voice", - "Shadow Sneak" - ], - "evolutions": [ - { - "pokemon": 281, - "form": 295 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 280, - "little": true - }, - "281": { - "name": "Kirlia", - "forms": { - "295": { - "name": "Normal", - "proto": "KIRLIA_NORMAL", - "evolutions": [ - { - "pokemon": 475, - "form": 301, - "gender_requirement": 1 - }, - { - "pokemon": 282, - "form": 298 - } - ] - }, - "296": { - "name": "Shadow", - "proto": "KIRLIA_SHADOW", - "evolutions": [ - { - "pokemon": 475, - "form": 302, - "gender_requirement": 1 - }, - { - "pokemon": 282, - "form": 299 - } - ] - }, - "297": { - "name": "Purified", - "proto": "KIRLIA_PURIFIED", - "evolutions": [ - { - "pokemon": 475, - "form": 303, - "gender_requirement": 1 - }, - { - "pokemon": 282, - "form": 300 - } - ] - } - }, - "default_form_id": 295, - "pokedex_id": 281, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic", - "Fairy" - ], - "attack": 117, - "defense": 90, - "stamina": 116, - "height": 0.79, - "weight": 20.2, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Confusion", - "Charge Beam" - ], - "charged_moves": [ - "Psychic", - "Disarming Voice", - "Shadow Sneak" - ], - "evolutions": [ - { - "pokemon": 475, - "form": 301, - "gender_requirement": 1 - }, - { - "pokemon": 282, - "form": 298 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 280 - }, - "282": { - "name": "Gardevoir", - "forms": { - "298": { - "name": "Normal", - "proto": "GARDEVOIR_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "299": { - "name": "Shadow", - "proto": "GARDEVOIR_SHADOW" - }, - "300": { - "name": "Purified", - "proto": "GARDEVOIR_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 298, - "pokedex_id": 282, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic", - "Fairy" - ], - "attack": 237, - "defense": 195, - "stamina": 169, - "height": 1.6, - "weight": 48.4, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Confusion", - "Charge Beam", - "Charm" - ], - "charged_moves": [ - "Psychic", - "Dazzling Gleam", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 280, - "temp_evolutions": { - "1": { - "attack": 326, - "defense": 229, - "stamina": 169, - "unreleased": true - } - } - }, - "283": { - "name": "Surskit", - "forms": { - "1412": { - "name": "Normal", - "proto": "SURSKIT_NORMAL" - }, - "1413": { - "name": "Shadow", - "proto": "SURSKIT_SHADOW" - }, - "1414": { - "name": "Purified", - "proto": "SURSKIT_PURIFIED" - } - }, - "default_form_id": 1412, - "pokedex_id": 283, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Water" - ], - "attack": 93, - "defense": 87, - "stamina": 120, - "height": 0.51, - "weight": 1.7, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Bubble", - "Bug Bite" - ], - "charged_moves": [ - "Aqua Jet", - "Bubble Beam", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 284 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 283, - "little": true - }, - "284": { - "name": "Masquerain", - "forms": { - "1415": { - "name": "Normal", - "proto": "MASQUERAIN_NORMAL" - }, - "1416": { - "name": "Shadow", - "proto": "MASQUERAIN_SHADOW" - }, - "1417": { - "name": "Purified", - "proto": "MASQUERAIN_PURIFIED" - } - }, - "default_form_id": 1415, - "pokedex_id": 284, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Flying" - ], - "attack": 192, - "defense": 150, - "stamina": 172, - "height": 0.79, - "weight": 3.6, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Infestation", - "Air Slash" - ], - "charged_moves": [ - "Air Cutter", - "Ominous Wind", - "Silver Wind", - "Bubble Beam", - "Lunge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 283 - }, - "285": { - "name": "Shroomish", - "forms": { - "1418": { - "name": "Normal", - "proto": "SHROOMISH_NORMAL" - }, - "1419": { - "name": "Shadow", - "proto": "SHROOMISH_SHADOW" - }, - "1420": { - "name": "Purified", - "proto": "SHROOMISH_PURIFIED" - } - }, - "default_form_id": 1418, - "pokedex_id": 285, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 74, - "defense": 110, - "stamina": 155, - "height": 0.41, - "weight": 4.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bullet Seed" - ], - "charged_moves": [ - "Seed Bomb", - "Grass Knot", - "Energy Ball" - ], - "evolutions": [ - { - "pokemon": 286 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 285, - "little": true - }, - "286": { - "name": "Breloom", - "forms": { - "1421": { - "name": "Normal", - "proto": "BRELOOM_NORMAL" - }, - "1422": { - "name": "Shadow", - "proto": "BRELOOM_SHADOW" - }, - "1423": { - "name": "Purified", - "proto": "BRELOOM_PURIFIED" - } - }, - "default_form_id": 1421, - "pokedex_id": 286, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Fighting" - ], - "attack": 241, - "defense": 144, - "stamina": 155, - "height": 1.19, - "weight": 39.2, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Counter", - "Bullet Seed" - ], - "charged_moves": [ - "Dynamic Punch", - "Seed Bomb", - "Sludge Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 285 - }, - "287": { - "name": "Slakoth", - "forms": { - "1424": { - "name": "Normal", - "proto": "SLAKOTH_NORMAL" - }, - "1425": { - "name": "Shadow", - "proto": "SLAKOTH_SHADOW" - }, - "1426": { - "name": "Purified", - "proto": "SLAKOTH_PURIFIED" - } - }, - "default_form_id": 1424, - "pokedex_id": 287, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 104, - "defense": 92, - "stamina": 155, - "height": 0.79, - "weight": 24, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Yawn" - ], - "charged_moves": [ - "Body Slam", - "Night Slash", - "Brick Break" - ], - "evolutions": [ - { - "pokemon": 288 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 287, - "little": true - }, - "288": { - "name": "Vigoroth", - "forms": { - "1427": { - "name": "Normal", - "proto": "VIGOROTH_NORMAL" - }, - "1428": { - "name": "Shadow", - "proto": "VIGOROTH_SHADOW" - }, - "1429": { - "name": "Purified", - "proto": "VIGOROTH_PURIFIED" - } - }, - "default_form_id": 1427, - "pokedex_id": 288, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 159, - "defense": 145, - "stamina": 190, - "height": 1.4, - "weight": 46.5, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Scratch", - "Counter" - ], - "charged_moves": [ - "Body Slam", - "Bulldoze", - "Brick Break" - ], - "evolutions": [ - { - "pokemon": 289 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 287 - }, - "289": { - "name": "Slaking", - "forms": { - "1430": { - "name": "Normal", - "proto": "SLAKING_NORMAL" - }, - "1431": { - "name": "Shadow", - "proto": "SLAKING_SHADOW" - }, - "1432": { - "name": "Purified", - "proto": "SLAKING_PURIFIED" - } - }, - "default_form_id": 1430, - "pokedex_id": 289, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 290, - "defense": 166, - "stamina": 284, - "height": 2.01, - "weight": 130.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Yawn" - ], - "charged_moves": [ - "Hyper Beam", - "Play Rough", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 287 - }, - "290": { - "name": "Nincada", - "forms": { - "1433": { - "name": "Normal", - "proto": "NINCADA_NORMAL" - }, - "1434": { - "name": "Shadow", - "proto": "NINCADA_SHADOW" - }, - "1435": { - "name": "Purified", - "proto": "NINCADA_PURIFIED" - } - }, - "default_form_id": 1433, - "pokedex_id": 290, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Ground" - ], - "attack": 80, - "defense": 126, - "stamina": 104, - "height": 0.51, - "weight": 5.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Bug Bite" - ], - "charged_moves": [ - "Night Slash", - "Bug Buzz", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 291 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 290, - "little": true - }, - "291": { - "name": "Ninjask", - "forms": { - "1436": { - "name": "Normal", - "proto": "NINJASK_NORMAL" - }, - "1437": { - "name": "Shadow", - "proto": "NINJASK_SHADOW" - }, - "1438": { - "name": "Purified", - "proto": "NINJASK_PURIFIED" - } - }, - "default_form_id": 1436, - "pokedex_id": 291, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Flying" - ], - "attack": 199, - "defense": 112, - "stamina": 156, - "height": 0.79, - "weight": 12, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Fury Cutter", - "Metal Claw" - ], - "charged_moves": [ - "Shadow Ball", - "Bug Buzz", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 290 - }, - "292": { - "name": "Shedinja", - "forms": { - "1439": { - "name": "Normal", - "proto": "SHEDINJA_NORMAL" - }, - "1440": { - "name": "Shadow", - "proto": "SHEDINJA_SHADOW" - }, - "1441": { - "name": "Purified", - "proto": "SHEDINJA_PURIFIED" - } - }, - "default_form_id": 1439, - "pokedex_id": 292, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug", - "Ghost" - ], - "attack": 153, - "defense": 73, - "stamina": 1, - "height": 0.79, - "weight": 1.2, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Bug Bite", - "Shadow Claw" - ], - "charged_moves": [ - "Shadow Sneak", - "Aerial Ace", - "Dig" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 290 - }, - "293": { - "name": "Whismur", - "forms": { - "1442": { - "name": "Normal", - "proto": "WHISMUR_NORMAL" - }, - "1443": { - "name": "Shadow", - "proto": "WHISMUR_SHADOW" - }, - "1444": { - "name": "Purified", - "proto": "WHISMUR_PURIFIED" - } - }, - "default_form_id": 1442, - "pokedex_id": 293, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 92, - "defense": 42, - "stamina": 162, - "height": 0.61, - "weight": 16.3, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Astonish" - ], - "charged_moves": [ - "Stomp", - "Disarming Voice", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 294 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 293, - "little": true - }, - "294": { - "name": "Loudred", - "forms": { - "1445": { - "name": "Normal", - "proto": "LOUDRED_NORMAL" - }, - "1446": { - "name": "Shadow", - "proto": "LOUDRED_SHADOW" - }, - "1447": { - "name": "Purified", - "proto": "LOUDRED_PURIFIED" - } - }, - "default_form_id": 1445, - "pokedex_id": 294, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 134, - "defense": 81, - "stamina": 197, - "height": 0.99, - "weight": 40.5, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Bite", - "Rock Smash" - ], - "charged_moves": [ - "Stomp", - "Disarming Voice", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 295 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 293 - }, - "295": { - "name": "Exploud", - "forms": { - "1448": { - "name": "Normal", - "proto": "EXPLOUD_NORMAL" - }, - "1449": { - "name": "Shadow", - "proto": "EXPLOUD_SHADOW" - }, - "1450": { - "name": "Purified", - "proto": "EXPLOUD_PURIFIED" - } - }, - "default_form_id": 1448, - "pokedex_id": 295, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 179, - "defense": 137, - "stamina": 232, - "height": 1.5, - "weight": 84, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Bite", - "Astonish" - ], - "charged_moves": [ - "Crunch", - "Disarming Voice", - "Fire Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 293 - }, - "296": { - "name": "Makuhita", - "forms": { - "1451": { - "name": "Normal", - "proto": "MAKUHITA_NORMAL", - "evolutions": [ - { - "pokemon": 297, - "form": 1454 - } - ] - }, - "1452": { - "name": "Shadow", - "proto": "MAKUHITA_SHADOW", - "evolutions": [ - { - "pokemon": 297, - "form": 1455 - } - ] - }, - "1453": { - "name": "Purified", - "proto": "MAKUHITA_PURIFIED", - "evolutions": [ - { - "pokemon": 297, - "form": 1456 - } - ] - } - }, - "default_form_id": 1451, - "pokedex_id": 296, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fighting" - ], - "attack": 99, - "defense": 54, - "stamina": 176, - "height": 0.99, - "weight": 86.4, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Rock Smash", - "Tackle" - ], - "charged_moves": [ - "Heavy Slam", - "Low Sweep", - "Cross Chop" - ], - "evolutions": [ - { - "pokemon": 297, - "form": 1454 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 296, - "little": true - }, - "297": { - "name": "Hariyama", - "forms": { - "1454": { - "name": "Normal", - "proto": "HARIYAMA_NORMAL" - }, - "1455": { - "name": "Shadow", - "proto": "HARIYAMA_SHADOW" - }, - "1456": { - "name": "Purified", - "proto": "HARIYAMA_PURIFIED" - } - }, - "default_form_id": 1454, - "pokedex_id": 297, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fighting" - ], - "attack": 209, - "defense": 114, - "stamina": 302, - "height": 2.31, - "weight": 253.8, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Counter", - "Bullet Punch" - ], - "charged_moves": [ - "Heavy Slam", - "Close Combat", - "Dynamic Punch", - "Super Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 296 - }, - "298": { - "name": "Azurill", - "forms": { - "1457": { - "name": "Normal", - "proto": "AZURILL_NORMAL" - }, - "1458": { - "name": "Shadow", - "proto": "AZURILL_SHADOW" - }, - "1459": { - "name": "Purified", - "proto": "AZURILL_PURIFIED" - } - }, - "default_form_id": 1457, - "pokedex_id": 298, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal", - "Fairy" - ], - "attack": 36, - "defense": 71, - "stamina": 137, - "height": 0.2, - "weight": 2, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Splash", - "Bubble" - ], - "charged_moves": [ - "Bubble Beam", - "Ice Beam", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 183 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 183, - "little": true - }, - "299": { - "name": "Nosepass", - "forms": { - "1460": { - "name": "Normal", - "proto": "NOSEPASS_NORMAL", - "evolutions": [ - { - "pokemon": 476, - "form": 1841 - } - ] - }, - "1461": { - "name": "Shadow", - "proto": "NOSEPASS_SHADOW", - "evolutions": [ - { - "pokemon": 476, - "form": 1842 - } - ] - }, - "1462": { - "name": "Purified", - "proto": "NOSEPASS_PURIFIED", - "evolutions": [ - { - "pokemon": 476, - "form": 1843 - } - ] - } - }, - "default_form_id": 1460, - "pokedex_id": 299, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock" - ], - "attack": 82, - "defense": 215, - "stamina": 102, - "height": 0.99, - "weight": 97, - "flee_rate": 0.09, - "capture_rate": 0.2, - "quick_moves": [ - "Rock Throw", - "Spark" - ], - "charged_moves": [ - "Rock Blast", - "Rock Slide", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 476 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 299, - "little": true - }, - "300": { - "name": "Skitty", - "forms": { - "1463": { - "name": "Normal", - "proto": "SKITTY_NORMAL" - }, - "1464": { - "name": "Shadow", - "proto": "SKITTY_SHADOW" - }, - "1465": { - "name": "Purified", - "proto": "SKITTY_PURIFIED" - } - }, - "default_form_id": 1463, - "pokedex_id": 300, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 84, - "defense": 79, - "stamina": 137, - "height": 0.61, - "weight": 11, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Feint Attack", - "Tackle" - ], - "charged_moves": [ - "Dig", - "Disarming Voice", - "Wild Charge" - ], - "evolutions": [ - { - "pokemon": 301 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 300, - "little": true - }, - "301": { - "name": "Delcatty", - "forms": { - "1466": { - "name": "Normal", - "proto": "DELCATTY_NORMAL" - }, - "1467": { - "name": "Shadow", - "proto": "DELCATTY_SHADOW" - }, - "1468": { - "name": "Purified", - "proto": "DELCATTY_PURIFIED" - } - }, - "default_form_id": 1466, - "pokedex_id": 301, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 132, - "defense": 127, - "stamina": 172, - "height": 1.09, - "weight": 32.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Feint Attack", - "Zen Headbutt", - "Charm" - ], - "charged_moves": [ - "Play Rough", - "Disarming Voice", - "Wild Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 300 - }, - "302": { - "name": "Sableye", - "forms": { - "923": { - "name": "Normal", - "proto": "SABLEYE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "924": { - "name": "Shadow", - "proto": "SABLEYE_SHADOW" - }, - "925": { - "name": "Purified", - "proto": "SABLEYE_PURIFIED", - "temp_evolutions": { - "1": {} - } - }, - "2666": { - "name": "Costume 2020 Deprecated", - "proto": "SABLEYE_COSTUME_2020_DEPRECATED" - }, - "2668": { - "name": "Costume 2020", - "proto": "SABLEYE_COSTUME_2020" - } - }, - "default_form_id": 923, - "pokedex_id": 302, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dark", - "Ghost" - ], - "attack": 141, - "defense": 136, - "stamina": 137, - "height": 0.51, - "weight": 11, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Shadow Claw", - "Feint Attack" - ], - "charged_moves": [ - "Power Gem", - "Foul Play", - "Shadow Sneak" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 302, - "temp_evolutions": { - "1": { - "attack": 151, - "defense": 216, - "stamina": 137, - "unreleased": true - } - } - }, - "303": { - "name": "Mawile", - "forms": { - "833": { - "name": "Normal", - "proto": "MAWILE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "834": { - "name": "Shadow", - "proto": "MAWILE_SHADOW" - }, - "835": { - "name": "Purified", - "proto": "MAWILE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 833, - "pokedex_id": 303, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Fairy" - ], - "attack": 155, - "defense": 141, - "stamina": 137, - "height": 0.61, - "weight": 11.5, - "flee_rate": 0.09, - "capture_rate": 0.5, - "quick_moves": [ - "Bite", - "Astonish", - "Ice Fang", - "Fire Fang" - ], - "charged_moves": [ - "Play Rough", - "Vice Grip", - "Iron Head", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 303, - "temp_evolutions": { - "1": { - "attack": 188, - "defense": 217, - "stamina": 137, - "unreleased": true - } - } - }, - "304": { - "name": "Aron", - "forms": { - "1469": { - "name": "Normal", - "proto": "ARON_NORMAL", - "evolutions": [ - { - "pokemon": 305, - "form": 1472 - } - ] - }, - "1470": { - "name": "Shadow", - "proto": "ARON_SHADOW", - "evolutions": [ - { - "pokemon": 305, - "form": 1473 - } - ] - }, - "1471": { - "name": "Purified", - "proto": "ARON_PURIFIED", - "evolutions": [ - { - "pokemon": 305, - "form": 1474 - } - ] - } - }, - "default_form_id": 1469, - "pokedex_id": 304, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Rock" - ], - "attack": 121, - "defense": 141, - "stamina": 137, - "height": 0.41, - "weight": 60, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Metal Claw" - ], - "charged_moves": [ - "Iron Head", - "Rock Tomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 305, - "form": 1472 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 304, - "little": true - }, - "305": { - "name": "Lairon", - "forms": { - "1472": { - "name": "Normal", - "proto": "LAIRON_NORMAL", - "evolutions": [ - { - "pokemon": 306, - "form": 1475 - } - ] - }, - "1473": { - "name": "Shadow", - "proto": "LAIRON_SHADOW", - "evolutions": [ - { - "pokemon": 306, - "form": 1476 - } - ] - }, - "1474": { - "name": "Purified", - "proto": "LAIRON_PURIFIED", - "evolutions": [ - { - "pokemon": 306, - "form": 1477 - } - ] - } - }, - "default_form_id": 1472, - "pokedex_id": 305, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Rock" - ], - "attack": 158, - "defense": 198, - "stamina": 155, - "height": 0.89, - "weight": 120, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Metal Claw", - "Iron Tail" - ], - "charged_moves": [ - "Body Slam", - "Rock Slide", - "Heavy Slam" - ], - "evolutions": [ - { - "pokemon": 306, - "form": 1475 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 304 - }, - "306": { - "name": "Aggron", - "forms": { - "1475": { - "name": "Normal", - "proto": "AGGRON_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1476": { - "name": "Shadow", - "proto": "AGGRON_SHADOW" - }, - "1477": { - "name": "Purified", - "proto": "AGGRON_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1475, - "pokedex_id": 306, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Rock" - ], - "attack": 198, - "defense": 257, - "stamina": 172, - "height": 2.11, - "weight": 360, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Dragon Tail", - "Iron Tail", - "Smack Down" - ], - "charged_moves": [ - "Thunder", - "Stone Edge", - "Heavy Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 304, - "temp_evolutions": { - "1": { - "attack": 247, - "defense": 331, - "stamina": 172, - "unreleased": true, - "types": [ - "Steel" - ] - } - } - }, - "307": { - "name": "Meditite", - "forms": { - "1478": { - "name": "Normal", - "proto": "MEDITITE_NORMAL" - }, - "1479": { - "name": "Shadow", - "proto": "MEDITITE_SHADOW" - }, - "1480": { - "name": "Purified", - "proto": "MEDITITE_PURIFIED" - } - }, - "default_form_id": 1478, - "pokedex_id": 307, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fighting", - "Psychic" - ], - "attack": 78, - "defense": 107, - "stamina": 102, - "height": 0.61, - "weight": 11.2, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Confusion", - "Rock Smash" - ], - "charged_moves": [ - "Ice Punch", - "Psyshock", - "Low Sweep" - ], - "evolutions": [ - { - "pokemon": 308 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 307, - "little": true - }, - "308": { - "name": "Medicham", - "forms": { - "1481": { - "name": "Normal", - "proto": "MEDICHAM_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1482": { - "name": "Shadow", - "proto": "MEDICHAM_SHADOW" - }, - "1483": { - "name": "Purified", - "proto": "MEDICHAM_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1481, - "pokedex_id": 308, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fighting", - "Psychic" - ], - "attack": 121, - "defense": 152, - "stamina": 155, - "height": 1.3, - "weight": 31.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Psycho Cut", - "Counter" - ], - "charged_moves": [ - "Ice Punch", - "Psychic", - "Dynamic Punch", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 307, - "temp_evolutions": { - "1": { - "attack": 205, - "defense": 179, - "stamina": 155, - "unreleased": true - } - } - }, - "309": { - "name": "Electrike", - "forms": { - "1484": { - "name": "Normal", - "proto": "ELECTRIKE_NORMAL", - "evolutions": [ - { - "pokemon": 310, - "form": 1487 - } - ] - }, - "1485": { - "name": "Shadow", - "proto": "ELECTRIKE_SHADOW", - "evolutions": [ - { - "pokemon": 310, - "form": 1488 - } - ] - }, - "1486": { - "name": "Purified", - "proto": "ELECTRIKE_PURIFIED", - "evolutions": [ - { - "pokemon": 310, - "form": 1489 - } - ] - } - }, - "default_form_id": 1484, - "pokedex_id": 309, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Electric" - ], - "attack": 123, - "defense": 78, - "stamina": 120, - "height": 0.61, - "weight": 15.2, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Quick Attack", - "Spark" - ], - "charged_moves": [ - "Thunderbolt", - "Discharge", - "Swift" - ], - "evolutions": [ - { - "pokemon": 310, - "form": 1487 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 309, - "little": true - }, - "310": { - "name": "Manectric", - "forms": { - "1487": { - "name": "Normal", - "proto": "MANECTRIC_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1488": { - "name": "Shadow", - "proto": "MANECTRIC_SHADOW" - }, - "1489": { - "name": "Purified", - "proto": "MANECTRIC_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1487, - "pokedex_id": 310, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Electric" - ], - "attack": 215, - "defense": 127, - "stamina": 172, - "height": 1.5, - "weight": 40.2, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Snarl", - "Charge Beam" - ], - "charged_moves": [ - "Thunder", - "Wild Charge", - "Flame Burst" - ], - "temp_evolutions": { - "1": { - "attack": 286, - "defense": 179, - "stamina": 172, - "height": 1.8, - "weight": 44 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 309 - }, - "311": { - "name": "Plusle", - "forms": { - "1490": { - "name": "Normal", - "proto": "PLUSLE_NORMAL" - }, - "1491": { - "name": "Shadow", - "proto": "PLUSLE_SHADOW" - }, - "1492": { - "name": "Purified", - "proto": "PLUSLE_PURIFIED" - } - }, - "default_form_id": 1490, - "pokedex_id": 311, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Electric" - ], - "attack": 167, - "defense": 129, - "stamina": 155, - "height": 0.41, - "weight": 4.2, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Spark", - "Quick Attack" - ], - "charged_moves": [ - "Thunderbolt", - "Discharge", - "Swift", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 311 - }, - "312": { - "name": "Minun", - "forms": { - "1493": { - "name": "Normal", - "proto": "MINUN_NORMAL" - }, - "1494": { - "name": "Shadow", - "proto": "MINUN_SHADOW" - }, - "1495": { - "name": "Purified", - "proto": "MINUN_PURIFIED" - } - }, - "default_form_id": 1493, - "pokedex_id": 312, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Electric" - ], - "attack": 147, - "defense": 150, - "stamina": 155, - "height": 0.41, - "weight": 4.2, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Spark", - "Quick Attack" - ], - "charged_moves": [ - "Thunderbolt", - "Discharge", - "Swift", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 312 - }, - "313": { - "name": "Volbeat", - "forms": { - "1496": { - "name": "Normal", - "proto": "VOLBEAT_NORMAL" - }, - "1497": { - "name": "Shadow", - "proto": "VOLBEAT_SHADOW" - }, - "1498": { - "name": "Purified", - "proto": "VOLBEAT_PURIFIED" - } - }, - "default_form_id": 1496, - "pokedex_id": 313, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug" - ], - "attack": 143, - "defense": 166, - "stamina": 163, - "height": 0.71, - "weight": 17.7, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Struggle Bug", - "Tackle" - ], - "charged_moves": [ - "Signal Beam", - "Bug Buzz", - "Thunderbolt" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 313 - }, - "314": { - "name": "Illumise", - "forms": { - "1499": { - "name": "Normal", - "proto": "ILLUMISE_NORMAL" - }, - "1500": { - "name": "Shadow", - "proto": "ILLUMISE_SHADOW" - }, - "1501": { - "name": "Purified", - "proto": "ILLUMISE_PURIFIED" - } - }, - "default_form_id": 1499, - "pokedex_id": 314, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Bug" - ], - "attack": 143, - "defense": 166, - "stamina": 163, - "height": 0.61, - "weight": 17.7, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Struggle Bug", - "Tackle" - ], - "charged_moves": [ - "Silver Wind", - "Bug Buzz", - "Dazzling Gleam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 314 - }, - "315": { - "name": "Roselia", - "forms": { - "1502": { - "name": "Normal", - "proto": "ROSELIA_NORMAL" - }, - "1503": { - "name": "Shadow", - "proto": "ROSELIA_SHADOW" - }, - "1504": { - "name": "Purified", - "proto": "ROSELIA_PURIFIED" - } - }, - "default_form_id": 1502, - "pokedex_id": 315, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Poison" - ], - "attack": 186, - "defense": 131, - "stamina": 137, - "height": 0.3, - "weight": 2, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Poison Jab", - "Razor Leaf" - ], - "charged_moves": [ - "Petal Blizzard", - "Sludge Bomb", - "Dazzling Gleam" - ], - "evolutions": [ - { - "pokemon": 407 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 315 - }, - "316": { - "name": "Gulpin", - "forms": { - "1505": { - "name": "Normal", - "proto": "GULPIN_NORMAL" - }, - "1506": { - "name": "Shadow", - "proto": "GULPIN_SHADOW" - }, - "1507": { - "name": "Purified", - "proto": "GULPIN_PURIFIED" - } - }, - "default_form_id": 1505, - "pokedex_id": 316, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Poison" - ], - "attack": 80, - "defense": 99, - "stamina": 172, - "height": 0.41, - "weight": 10.3, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Rock Smash" - ], - "charged_moves": [ - "Sludge", - "Gunk Shot", - "Ice Beam" - ], - "evolutions": [ - { - "pokemon": 317 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 316, - "little": true - }, - "317": { - "name": "Swalot", - "forms": { - "1508": { - "name": "Normal", - "proto": "SWALOT_NORMAL" - }, - "1509": { - "name": "Shadow", - "proto": "SWALOT_SHADOW" - }, - "1510": { - "name": "Purified", - "proto": "SWALOT_PURIFIED" - } - }, - "default_form_id": 1508, - "pokedex_id": 317, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Poison" - ], - "attack": 140, - "defense": 159, - "stamina": 225, - "height": 1.7, - "weight": 80, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Rock Smash", - "Infestation" - ], - "charged_moves": [ - "Gunk Shot", - "Sludge Bomb", - "Ice Beam", - "Acid Spray" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 316 - }, - "318": { - "name": "Carvanha", - "forms": { - "734": { - "name": "Normal", - "proto": "CARVANHA_NORMAL", - "evolutions": [ - { - "pokemon": 319, - "form": 737 - } - ] - }, - "735": { - "name": "Shadow", - "proto": "CARVANHA_SHADOW", - "evolutions": [ - { - "pokemon": 319, - "form": 738 - } - ] - }, - "736": { - "name": "Purified", - "proto": "CARVANHA_PURIFIED", - "evolutions": [ - { - "pokemon": 319, - "form": 739 - } - ] - } - }, - "default_form_id": 734, - "pokedex_id": 318, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Dark" - ], - "attack": 171, - "defense": 39, - "stamina": 128, - "height": 0.79, - "weight": 20.8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Bite", - "Snarl" - ], - "charged_moves": [ - "Aqua Jet", - "Crunch", - "Poison Fang" - ], - "evolutions": [ - { - "pokemon": 319, - "form": 737 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 318, - "little": true - }, - "319": { - "name": "Sharpedo", - "forms": { - "737": { - "name": "Normal", - "proto": "SHARPEDO_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "738": { - "name": "Shadow", - "proto": "SHARPEDO_SHADOW" - }, - "739": { - "name": "Purified", - "proto": "SHARPEDO_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 737, - "pokedex_id": 319, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Dark" - ], - "attack": 243, - "defense": 83, - "stamina": 172, - "height": 1.8, - "weight": 88.8, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Waterfall" - ], - "charged_moves": [ - "Hydro Pump", - "Crunch", - "Poison Fang" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 318, - "temp_evolutions": { - "1": { - "attack": 289, - "defense": 144, - "stamina": 172, - "unreleased": true - } - } - }, - "320": { - "name": "Wailmer", - "forms": { - "1511": { - "name": "Normal", - "proto": "WAILMER_NORMAL" - }, - "1512": { - "name": "Shadow", - "proto": "WAILMER_SHADOW" - }, - "1513": { - "name": "Purified", - "proto": "WAILMER_PURIFIED" - } - }, - "default_form_id": 1511, - "pokedex_id": 320, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 136, - "defense": 68, - "stamina": 277, - "height": 2.01, - "weight": 130, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Splash", - "Water Gun" - ], - "charged_moves": [ - "Heavy Slam", - "Water Pulse", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 321 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 320, - "little": true - }, - "321": { - "name": "Wailord", - "forms": { - "1514": { - "name": "Normal", - "proto": "WAILORD_NORMAL" - }, - "1515": { - "name": "Shadow", - "proto": "WAILORD_SHADOW" - }, - "1516": { - "name": "Purified", - "proto": "WAILORD_PURIFIED" - } - }, - "default_form_id": 1514, - "pokedex_id": 321, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 175, - "defense": 87, - "stamina": 347, - "height": 14.5, - "weight": 398, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Water Gun" - ], - "charged_moves": [ - "Surf", - "Blizzard", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 320 - }, - "322": { - "name": "Numel", - "forms": { - "1517": { - "name": "Normal", - "proto": "NUMEL_NORMAL" - }, - "1518": { - "name": "Shadow", - "proto": "NUMEL_SHADOW" - }, - "1519": { - "name": "Purified", - "proto": "NUMEL_PURIFIED" - } - }, - "default_form_id": 1517, - "pokedex_id": 322, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire", - "Ground" - ], - "attack": 119, - "defense": 79, - "stamina": 155, - "height": 0.71, - "weight": 24, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Ember", - "Tackle" - ], - "charged_moves": [ - "Bulldoze", - "Heat Wave", - "Stomp" - ], - "evolutions": [ - { - "pokemon": 323 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 322, - "little": true - }, - "323": { - "name": "Camerupt", - "forms": { - "1520": { - "name": "Normal", - "proto": "CAMERUPT_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1521": { - "name": "Shadow", - "proto": "CAMERUPT_SHADOW" - }, - "1522": { - "name": "Purified", - "proto": "CAMERUPT_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1520, - "pokedex_id": 323, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire", - "Ground" - ], - "attack": 194, - "defense": 136, - "stamina": 172, - "height": 1.91, - "weight": 220, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Ember", - "Rock Smash" - ], - "charged_moves": [ - "Earthquake", - "Overheat", - "Solar Beam", - "Earth Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 322, - "temp_evolutions": { - "1": { - "attack": 253, - "defense": 183, - "stamina": 172, - "unreleased": true - } - } - }, - "324": { - "name": "Torkoal", - "forms": { - "1523": { - "name": "Normal", - "proto": "TORKOAL_NORMAL" - }, - "1524": { - "name": "Shadow", - "proto": "TORKOAL_SHADOW" - }, - "1525": { - "name": "Purified", - "proto": "TORKOAL_PURIFIED" - } - }, - "default_form_id": 1523, - "pokedex_id": 324, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Fire" - ], - "attack": 151, - "defense": 203, - "stamina": 172, - "height": 0.51, - "weight": 80.4, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Fire Spin", - "Ember" - ], - "charged_moves": [ - "Overheat", - "Solar Beam", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 324 - }, - "325": { - "name": "Spoink", - "forms": { - "1526": { - "name": "Normal", - "proto": "SPOINK_NORMAL" - }, - "1527": { - "name": "Shadow", - "proto": "SPOINK_SHADOW" - }, - "1528": { - "name": "Purified", - "proto": "SPOINK_PURIFIED" - } - }, - "default_form_id": 1526, - "pokedex_id": 325, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic" - ], - "attack": 125, - "defense": 122, - "stamina": 155, - "height": 0.71, - "weight": 30.6, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Splash", - "Zen Headbutt" - ], - "charged_moves": [ - "Psybeam", - "Shadow Ball", - "Mirror Coat" - ], - "evolutions": [ - { - "pokemon": 326 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 325, - "little": true - }, - "326": { - "name": "Grumpig", - "forms": { - "1529": { - "name": "Normal", - "proto": "GRUMPIG_NORMAL" - }, - "1530": { - "name": "Shadow", - "proto": "GRUMPIG_SHADOW" - }, - "1531": { - "name": "Purified", - "proto": "GRUMPIG_PURIFIED" - } - }, - "default_form_id": 1529, - "pokedex_id": 326, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic" - ], - "attack": 171, - "defense": 188, - "stamina": 190, - "height": 0.89, - "weight": 71.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Charge Beam", - "Extrasensory" - ], - "charged_moves": [ - "Psychic", - "Shadow Ball", - "Mirror Coat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 325 - }, - "327": { - "name": "Spinda", - "forms": { - "37": { - "name": "00", - "proto": "SPINDA_00" - }, - "38": { - "name": "01", - "proto": "SPINDA_01" - }, - "39": { - "name": "02", - "proto": "SPINDA_02" - }, - "40": { - "name": "03", - "proto": "SPINDA_03" - }, - "41": { - "name": "04", - "proto": "SPINDA_04" - }, - "42": { - "name": "05", - "proto": "SPINDA_05" - }, - "43": { - "name": "06", - "proto": "SPINDA_06" - }, - "44": { - "name": "07", - "proto": "SPINDA_07" - }, - "121": { - "name": "08", - "proto": "SPINDA_08" - }, - "122": { - "name": "09", - "proto": "SPINDA_09" - }, - "123": { - "name": "10", - "proto": "SPINDA_10" - }, - "124": { - "name": "11", - "proto": "SPINDA_11" - }, - "125": { - "name": "12", - "proto": "SPINDA_12" - }, - "126": { - "name": "13", - "proto": "SPINDA_13" - }, - "127": { - "name": "14", - "proto": "SPINDA_14" - }, - "128": { - "name": "15", - "proto": "SPINDA_15" - }, - "129": { - "name": "16", - "proto": "SPINDA_16" - }, - "130": { - "name": "17", - "proto": "SPINDA_17" - }, - "131": { - "name": "18", - "proto": "SPINDA_18" - }, - "132": { - "name": "19", - "proto": "SPINDA_19" - } - }, - "default_form_id": 37, - "pokedex_id": 327, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 116, - "defense": 116, - "stamina": 155, - "height": 1.09, - "weight": 5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Sucker Punch", - "Psycho Cut" - ], - "charged_moves": [ - "Dig", - "Rock Tomb", - "Icy Wind" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 327 - }, - "328": { - "name": "Trapinch", - "forms": { - "746": { - "name": "Normal", - "proto": "TRAPINCH_NORMAL", - "evolutions": [ - { - "pokemon": 329, - "form": 749 - } - ] - }, - "747": { - "name": "Shadow", - "proto": "TRAPINCH_SHADOW", - "evolutions": [ - { - "pokemon": 329, - "form": 750 - } - ] - }, - "748": { - "name": "Purified", - "proto": "TRAPINCH_PURIFIED", - "evolutions": [ - { - "pokemon": 329, - "form": 751 - } - ] - } - }, - "default_form_id": 746, - "pokedex_id": 328, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground" - ], - "attack": 162, - "defense": 78, - "stamina": 128, - "height": 0.71, - "weight": 15, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Mud Shot", - "Struggle Bug" - ], - "charged_moves": [ - "Sand Tomb", - "Dig", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 329, - "form": 749 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 328, - "little": true - }, - "329": { - "name": "Vibrava", - "forms": { - "749": { - "name": "Normal", - "proto": "VIBRAVA_NORMAL", - "evolutions": [ - { - "pokemon": 330, - "form": 752 - } - ] - }, - "750": { - "name": "Shadow", - "proto": "VIBRAVA_SHADOW", - "evolutions": [ - { - "pokemon": 330, - "form": 753 - } - ] - }, - "751": { - "name": "Purified", - "proto": "VIBRAVA_PURIFIED", - "evolutions": [ - { - "pokemon": 330, - "form": 754 - } - ] - } - }, - "default_form_id": 749, - "pokedex_id": 329, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground", - "Dragon" - ], - "attack": 134, - "defense": 99, - "stamina": 137, - "height": 1.09, - "weight": 15.3, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Mud Shot", - "Dragon Breath" - ], - "charged_moves": [ - "Sand Tomb", - "Bulldoze", - "Bug Buzz" - ], - "evolutions": [ - { - "pokemon": 330, - "form": 752 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 328 - }, - "330": { - "name": "Flygon", - "forms": { - "752": { - "name": "Normal", - "proto": "FLYGON_NORMAL" - }, - "753": { - "name": "Shadow", - "proto": "FLYGON_SHADOW" - }, - "754": { - "name": "Purified", - "proto": "FLYGON_PURIFIED" - } - }, - "default_form_id": 752, - "pokedex_id": 330, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground", - "Dragon" - ], - "attack": 205, - "defense": 168, - "stamina": 190, - "height": 2.01, - "weight": 82, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Mud Shot", - "Dragon Tail" - ], - "charged_moves": [ - "Earthquake", - "Dragon Claw", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 328 - }, - "331": { - "name": "Cacnea", - "forms": { - "610": { - "name": "Normal", - "proto": "CACNEA_NORMAL", - "evolutions": [ - { - "pokemon": 332, - "form": 613 - } - ] - }, - "611": { - "name": "Shadow", - "proto": "CACNEA_SHADOW", - "evolutions": [ - { - "pokemon": 332, - "form": 614 - } - ] - }, - "612": { - "name": "Purified", - "proto": "CACNEA_PURIFIED", - "evolutions": [ - { - "pokemon": 332, - "form": 615 - } - ] - } - }, - "default_form_id": 610, - "pokedex_id": 331, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass" - ], - "attack": 156, - "defense": 74, - "stamina": 137, - "height": 0.41, - "weight": 51.3, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Poison Sting", - "Sucker Punch" - ], - "charged_moves": [ - "Grass Knot", - "Brick Break", - "Seed Bomb", - "Payback" - ], - "evolutions": [ - { - "pokemon": 332, - "form": 613 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 331, - "little": true - }, - "332": { - "name": "Cacturne", - "forms": { - "613": { - "name": "Normal", - "proto": "CACTURNE_NORMAL" - }, - "614": { - "name": "Shadow", - "proto": "CACTURNE_SHADOW" - }, - "615": { - "name": "Purified", - "proto": "CACTURNE_PURIFIED" - } - }, - "default_form_id": 613, - "pokedex_id": 332, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Dark" - ], - "attack": 221, - "defense": 115, - "stamina": 172, - "height": 1.3, - "weight": 77.4, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Poison Jab", - "Sucker Punch" - ], - "charged_moves": [ - "Dark Pulse", - "Dynamic Punch", - "Grass Knot", - "Payback" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 331 - }, - "333": { - "name": "Swablu", - "forms": { - "1532": { - "name": "Normal", - "proto": "SWABLU_NORMAL" - }, - "1533": { - "name": "Shadow", - "proto": "SWABLU_SHADOW" - }, - "1534": { - "name": "Purified", - "proto": "SWABLU_PURIFIED" - } - }, - "default_form_id": 1532, - "pokedex_id": 333, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal", - "Flying" - ], - "attack": 76, - "defense": 132, - "stamina": 128, - "height": 0.41, - "weight": 1.2, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Astonish" - ], - "charged_moves": [ - "Disarming Voice", - "Aerial Ace", - "Ice Beam" - ], - "evolutions": [ - { - "pokemon": 334 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 333, - "little": true - }, - "334": { - "name": "Altaria", - "forms": { - "1535": { - "name": "Normal", - "proto": "ALTARIA_NORMAL" - }, - "1536": { - "name": "Shadow", - "proto": "ALTARIA_SHADOW" - }, - "1537": { - "name": "Purified", - "proto": "ALTARIA_PURIFIED" - } - }, - "default_form_id": 1535, - "pokedex_id": 334, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon", - "Flying" - ], - "attack": 141, - "defense": 201, - "stamina": 181, - "height": 1.09, - "weight": 20.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Dragon Breath" - ], - "charged_moves": [ - "Sky Attack", - "Dazzling Gleam", - "Dragon Pulse" - ], - "temp_evolutions": { - "1": { - "attack": 222, - "defense": 218, - "stamina": 181, - "height": 1.5, - "types": [ - "Dragon", - "Fairy" - ] - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 333 - }, - "335": { - "name": "Zangoose", - "forms": { - "1538": { - "name": "Normal", - "proto": "ZANGOOSE_NORMAL" - }, - "1539": { - "name": "Shadow", - "proto": "ZANGOOSE_SHADOW" - }, - "1540": { - "name": "Purified", - "proto": "ZANGOOSE_PURIFIED" - } - }, - "default_form_id": 1538, - "pokedex_id": 335, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 222, - "defense": 124, - "stamina": 177, - "height": 1.3, - "weight": 40.3, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Fury Cutter", - "Shadow Claw" - ], - "charged_moves": [ - "Close Combat", - "Night Slash", - "Dig" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 335 - }, - "336": { - "name": "Seviper", - "forms": { - "1541": { - "name": "Normal", - "proto": "SEVIPER_NORMAL" - }, - "1542": { - "name": "Shadow", - "proto": "SEVIPER_SHADOW" - }, - "1543": { - "name": "Purified", - "proto": "SEVIPER_PURIFIED" - } - }, - "default_form_id": 1541, - "pokedex_id": 336, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Poison" - ], - "attack": 196, - "defense": 118, - "stamina": 177, - "height": 2.69, - "weight": 52.5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Poison Jab", - "Iron Tail" - ], - "charged_moves": [ - "Poison Fang", - "Crunch", - "Wrap" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 336 - }, - "337": { - "name": "Lunatone", - "forms": { - "1544": { - "name": "Normal", - "proto": "LUNATONE_NORMAL" - }, - "1545": { - "name": "Shadow", - "proto": "LUNATONE_SHADOW" - }, - "1546": { - "name": "Purified", - "proto": "LUNATONE_PURIFIED" - } - }, - "default_form_id": 1544, - "pokedex_id": 337, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Psychic" - ], - "attack": 178, - "defense": 153, - "stamina": 207, - "height": 0.99, - "weight": 168, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Rock Throw", - "Confusion" - ], - "charged_moves": [ - "Psychic", - "Rock Slide", - "Moonblast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 337 - }, - "338": { - "name": "Solrock", - "forms": { - "1547": { - "name": "Normal", - "proto": "SOLROCK_NORMAL" - }, - "1548": { - "name": "Shadow", - "proto": "SOLROCK_SHADOW" - }, - "1549": { - "name": "Purified", - "proto": "SOLROCK_PURIFIED" - } - }, - "default_form_id": 1547, - "pokedex_id": 338, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Psychic" - ], - "attack": 178, - "defense": 153, - "stamina": 207, - "height": 1.19, - "weight": 154, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Rock Throw", - "Confusion" - ], - "charged_moves": [ - "Psychic", - "Rock Slide", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 338 - }, - "339": { - "name": "Barboach", - "forms": { - "1550": { - "name": "Normal", - "proto": "BARBOACH_NORMAL" - }, - "1551": { - "name": "Shadow", - "proto": "BARBOACH_SHADOW" - }, - "1552": { - "name": "Purified", - "proto": "BARBOACH_PURIFIED" - } - }, - "default_form_id": 1550, - "pokedex_id": 339, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Ground" - ], - "attack": 93, - "defense": 82, - "stamina": 137, - "height": 0.41, - "weight": 1.9, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Aqua Tail", - "Ice Beam", - "Mud Bomb" - ], - "evolutions": [ - { - "pokemon": 340 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 339, - "little": true - }, - "340": { - "name": "Whiscash", - "forms": { - "1553": { - "name": "Normal", - "proto": "WHISCASH_NORMAL" - }, - "1554": { - "name": "Shadow", - "proto": "WHISCASH_SHADOW" - }, - "1555": { - "name": "Purified", - "proto": "WHISCASH_PURIFIED" - } - }, - "default_form_id": 1553, - "pokedex_id": 340, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Ground" - ], - "attack": 151, - "defense": 141, - "stamina": 242, - "height": 0.89, - "weight": 23.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Mud Shot" - ], - "charged_moves": [ - "Water Pulse", - "Blizzard", - "Mud Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 339 - }, - "341": { - "name": "Corphish", - "forms": { - "1556": { - "name": "Normal", - "proto": "CORPHISH_NORMAL" - }, - "1557": { - "name": "Shadow", - "proto": "CORPHISH_SHADOW" - }, - "1558": { - "name": "Purified", - "proto": "CORPHISH_PURIFIED" - } - }, - "default_form_id": 1556, - "pokedex_id": 341, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 141, - "defense": 99, - "stamina": 125, - "height": 0.61, - "weight": 11.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Bubble", - "Rock Smash" - ], - "charged_moves": [ - "Vice Grip", - "Bubble Beam", - "Aqua Jet" - ], - "evolutions": [ - { - "pokemon": 342 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 341, - "little": true - }, - "342": { - "name": "Crawdaunt", - "forms": { - "1559": { - "name": "Normal", - "proto": "CRAWDAUNT_NORMAL" - }, - "1560": { - "name": "Shadow", - "proto": "CRAWDAUNT_SHADOW" - }, - "1561": { - "name": "Purified", - "proto": "CRAWDAUNT_PURIFIED" - } - }, - "default_form_id": 1559, - "pokedex_id": 342, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Dark" - ], - "attack": 224, - "defense": 142, - "stamina": 160, - "height": 1.09, - "weight": 32.8, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Waterfall", - "Snarl" - ], - "charged_moves": [ - "Vice Grip", - "Bubble Beam", - "Night Slash", - "Crabhammer" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 341 - }, - "343": { - "name": "Baltoy", - "forms": { - "1562": { - "name": "Normal", - "proto": "BALTOY_NORMAL" - }, - "1563": { - "name": "Shadow", - "proto": "BALTOY_SHADOW" - }, - "1564": { - "name": "Purified", - "proto": "BALTOY_PURIFIED" - } - }, - "default_form_id": 1562, - "pokedex_id": 343, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground", - "Psychic" - ], - "attack": 77, - "defense": 124, - "stamina": 120, - "height": 0.51, - "weight": 21.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Confusion", - "Extrasensory" - ], - "charged_moves": [ - "Gyro Ball", - "Psybeam", - "Dig" - ], - "evolutions": [ - { - "pokemon": 344 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 343, - "little": true - }, - "344": { - "name": "Claydol", - "forms": { - "1565": { - "name": "Normal", - "proto": "CLAYDOL_NORMAL" - }, - "1566": { - "name": "Shadow", - "proto": "CLAYDOL_SHADOW" - }, - "1567": { - "name": "Purified", - "proto": "CLAYDOL_PURIFIED" - } - }, - "default_form_id": 1565, - "pokedex_id": 344, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground", - "Psychic" - ], - "attack": 140, - "defense": 229, - "stamina": 155, - "height": 1.5, - "weight": 108, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Extrasensory", - "Confusion", - "Mud Slap" - ], - "charged_moves": [ - "Gyro Ball", - "Psychic", - "Earthquake", - "Earth Power", - "Ice Beam", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 343 - }, - "345": { - "name": "Lileep", - "forms": { - "1568": { - "name": "Normal", - "proto": "LILEEP_NORMAL", - "evolutions": [ - { - "pokemon": 346, - "form": 1571 - } - ] - }, - "1569": { - "name": "Shadow", - "proto": "LILEEP_SHADOW", - "evolutions": [ - { - "pokemon": 346, - "form": 1572 - } - ] - }, - "1570": { - "name": "Purified", - "proto": "LILEEP_PURIFIED", - "evolutions": [ - { - "pokemon": 346, - "form": 1573 - } - ] - } - }, - "default_form_id": 1568, - "pokedex_id": 345, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Grass" - ], - "attack": 105, - "defense": 150, - "stamina": 165, - "height": 0.99, - "weight": 23.8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Acid", - "Infestation" - ], - "charged_moves": [ - "Grass Knot", - "Mirror Coat", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 346, - "form": 1571 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 345, - "little": true - }, - "346": { - "name": "Cradily", - "forms": { - "1571": { - "name": "Normal", - "proto": "CRADILY_NORMAL" - }, - "1572": { - "name": "Shadow", - "proto": "CRADILY_SHADOW" - }, - "1573": { - "name": "Purified", - "proto": "CRADILY_PURIFIED" - } - }, - "default_form_id": 1571, - "pokedex_id": 346, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Grass" - ], - "attack": 152, - "defense": 194, - "stamina": 200, - "height": 1.5, - "weight": 60.4, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Acid", - "Infestation", - "Bullet Seed" - ], - "charged_moves": [ - "Grass Knot", - "Bulldoze", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 345 - }, - "347": { - "name": "Anorith", - "forms": { - "1574": { - "name": "Normal", - "proto": "ANORITH_NORMAL", - "evolutions": [ - { - "pokemon": 348, - "form": 1577 - } - ] - }, - "1575": { - "name": "Shadow", - "proto": "ANORITH_SHADOW", - "evolutions": [ - { - "pokemon": 348, - "form": 1578 - } - ] - }, - "1576": { - "name": "Purified", - "proto": "ANORITH_PURIFIED", - "evolutions": [ - { - "pokemon": 348, - "form": 1579 - } - ] - } - }, - "default_form_id": 1574, - "pokedex_id": 347, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Bug" - ], - "attack": 176, - "defense": 100, - "stamina": 128, - "height": 0.71, - "weight": 12.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Struggle Bug", - "Scratch" - ], - "charged_moves": [ - "Cross Poison", - "Aqua Jet", - "Ancient Power" - ], - "evolutions": [ - { - "pokemon": 348, - "form": 1577 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 347, - "little": true - }, - "348": { - "name": "Armaldo", - "forms": { - "1577": { - "name": "Normal", - "proto": "ARMALDO_NORMAL" - }, - "1578": { - "name": "Shadow", - "proto": "ARMALDO_SHADOW" - }, - "1579": { - "name": "Purified", - "proto": "ARMALDO_PURIFIED" - } - }, - "default_form_id": 1577, - "pokedex_id": 348, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock", - "Bug" - ], - "attack": 222, - "defense": 174, - "stamina": 181, - "height": 1.5, - "weight": 68.2, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Fury Cutter", - "Struggle Bug" - ], - "charged_moves": [ - "Cross Poison", - "Water Pulse", - "Rock Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 347 - }, - "349": { - "name": "Feebas", - "forms": { - "1580": { - "name": "Normal", - "proto": "FEEBAS_NORMAL" - }, - "1581": { - "name": "Shadow", - "proto": "FEEBAS_SHADOW" - }, - "1582": { - "name": "Purified", - "proto": "FEEBAS_PURIFIED" - } - }, - "default_form_id": 1580, - "pokedex_id": 349, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 29, - "defense": 85, - "stamina": 85, - "height": 0.61, - "weight": 7.4, - "flee_rate": 0.15, - "capture_rate": 0.7, - "quick_moves": [ - "Splash", - "Tackle" - ], - "charged_moves": [ - "Mirror Coat" - ], - "evolutions": [ - { - "pokemon": 350 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 349, - "little": true - }, - "350": { - "name": "Milotic", - "forms": { - "1583": { - "name": "Normal", - "proto": "MILOTIC_NORMAL" - }, - "1584": { - "name": "Shadow", - "proto": "MILOTIC_SHADOW" - }, - "1585": { - "name": "Purified", - "proto": "MILOTIC_PURIFIED" - } - }, - "default_form_id": 1583, - "pokedex_id": 350, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 192, - "defense": 219, - "stamina": 216, - "height": 6.2, - "weight": 162, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Waterfall", - "Dragon Tail" - ], - "charged_moves": [ - "Surf", - "Blizzard", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 349 - }, - "351": { - "name": "Castform", - "forms": { - "29": { - "name": "Normal", - "proto": "CASTFORM_NORMAL", - "charged_moves": [ - "Hurricane", - "Energy Ball", - "Weather Ball" - ] - }, - "30": { - "name": "Sunny", - "proto": "CASTFORM_SUNNY", - "quick_moves": [ - "Ember", - "Tackle" - ], - "charged_moves": [ - "Fire Blast", - "Solar Beam", - "Weather Ball" - ], - "types": [ - "Fire" - ] - }, - "31": { - "name": "Rainy", - "proto": "CASTFORM_RAINY", - "quick_moves": [ - "Water Gun", - "Tackle" - ], - "charged_moves": [ - "Hydro Pump", - "Thunder", - "Weather Ball" - ], - "types": [ - "Water" - ] - }, - "32": { - "name": "Snowy", - "proto": "CASTFORM_SNOWY", - "quick_moves": [ - "Powder Snow", - "Tackle" - ], - "charged_moves": [ - "Blizzard", - "Ice Beam", - "Weather Ball" - ], - "types": [ - "Ice" - ] - } - }, - "default_form_id": 29, - "pokedex_id": 351, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 139, - "defense": 139, - "stamina": 172, - "height": 0.3, - "weight": 0.8, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Hex" - ], - "charged_moves": [ - "Hurricane", - "Energy Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 351 - }, - "352": { - "name": "Kecleon", - "forms": { - "1586": { - "name": "Normal", - "proto": "KECLEON_NORMAL" - }, - "1587": { - "name": "Shadow", - "proto": "KECLEON_SHADOW" - }, - "1588": { - "name": "Purified", - "proto": "KECLEON_PURIFIED" - } - }, - "default_form_id": 1586, - "pokedex_id": 352, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Normal" - ], - "attack": 161, - "defense": 189, - "stamina": 155, - "height": 0.99, - "weight": 22, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Lick", - "Sucker Punch" - ], - "charged_moves": [ - "Foul Play", - "Flamethrower", - "Thunder", - "Ice Beam", - "Aerial Ace", - "Shadow Sneak" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 352 - }, - "353": { - "name": "Shuppet", - "forms": { - "908": { - "name": "Normal", - "proto": "SHUPPET_NORMAL", - "evolutions": [ - { - "pokemon": 354, - "form": 911 - } - ] - }, - "909": { - "name": "Shadow", - "proto": "SHUPPET_SHADOW", - "evolutions": [ - { - "pokemon": 354, - "form": 912 - } - ] - }, - "910": { - "name": "Purified", - "proto": "SHUPPET_PURIFIED", - "evolutions": [ - { - "pokemon": 354, - "form": 913 - } - ] - } - }, - "default_form_id": 908, - "pokedex_id": 353, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ghost" - ], - "attack": 138, - "defense": 65, - "stamina": 127, - "height": 0.61, - "weight": 2.3, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Feint Attack", - "Astonish" - ], - "charged_moves": [ - "Ominous Wind", - "Night Shade", - "Shadow Sneak" - ], - "evolutions": [ - { - "pokemon": 354, - "form": 911 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 353, - "little": true - }, - "354": { - "name": "Banette", - "forms": { - "911": { - "name": "Normal", - "proto": "BANETTE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "912": { - "name": "Shadow", - "proto": "BANETTE_SHADOW" - }, - "913": { - "name": "Purified", - "proto": "BANETTE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 911, - "pokedex_id": 354, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ghost" - ], - "attack": 218, - "defense": 126, - "stamina": 162, - "height": 1.09, - "weight": 12.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Hex", - "Shadow Claw" - ], - "charged_moves": [ - "Shadow Ball", - "Dazzling Gleam", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 353, - "temp_evolutions": { - "1": { - "attack": 312, - "defense": 160, - "stamina": 162, - "unreleased": true - } - } - }, - "355": { - "name": "Duskull", - "forms": { - "914": { - "name": "Normal", - "proto": "DUSKULL_NORMAL", - "evolutions": [ - { - "pokemon": 356, - "form": 917 - } - ] - }, - "915": { - "name": "Shadow", - "proto": "DUSKULL_SHADOW", - "evolutions": [ - { - "pokemon": 356, - "form": 918 - } - ] - }, - "916": { - "name": "Purified", - "proto": "DUSKULL_PURIFIED", - "evolutions": [ - { - "pokemon": 356, - "form": 919 - } - ] - } - }, - "default_form_id": 914, - "pokedex_id": 355, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ghost" - ], - "attack": 70, - "defense": 162, - "stamina": 85, - "height": 0.79, - "weight": 15, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Hex", - "Astonish" - ], - "charged_moves": [ - "Ominous Wind", - "Night Shade", - "Shadow Sneak" - ], - "evolutions": [ - { - "pokemon": 356, - "form": 917 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 355, - "little": true - }, - "356": { - "name": "Dusclops", - "forms": { - "917": { - "name": "Normal", - "proto": "DUSCLOPS_NORMAL", - "evolutions": [ - { - "pokemon": 477, - "form": 920 - } - ] - }, - "918": { - "name": "Shadow", - "proto": "DUSCLOPS_SHADOW", - "evolutions": [ - { - "pokemon": 477, - "form": 921 - } - ] - }, - "919": { - "name": "Purified", - "proto": "DUSCLOPS_PURIFIED", - "evolutions": [ - { - "pokemon": 477, - "form": 922 - } - ] - } - }, - "default_form_id": 917, - "pokedex_id": 356, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ghost" - ], - "attack": 124, - "defense": 234, - "stamina": 120, - "height": 1.6, - "weight": 30.6, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Hex", - "Feint Attack" - ], - "charged_moves": [ - "Shadow Punch", - "Ice Punch", - "Fire Punch" - ], - "evolutions": [ - { - "pokemon": 477, - "form": 920 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 355 - }, - "357": { - "name": "Tropius", - "forms": { - "1589": { - "name": "Normal", - "proto": "TROPIUS_NORMAL" - }, - "1590": { - "name": "Shadow", - "proto": "TROPIUS_SHADOW" - }, - "1591": { - "name": "Purified", - "proto": "TROPIUS_PURIFIED" - } - }, - "default_form_id": 1589, - "pokedex_id": 357, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Grass", - "Flying" - ], - "attack": 136, - "defense": 163, - "stamina": 223, - "height": 2.01, - "weight": 100, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Air Slash", - "Razor Leaf" - ], - "charged_moves": [ - "Stomp", - "Aerial Ace", - "Leaf Blade" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 357 - }, - "358": { - "name": "Chimecho", - "forms": { - "1592": { - "name": "Normal", - "proto": "CHIMECHO_NORMAL" - }, - "1593": { - "name": "Shadow", - "proto": "CHIMECHO_SHADOW" - }, - "1594": { - "name": "Purified", - "proto": "CHIMECHO_PURIFIED" - } - }, - "default_form_id": 1592, - "pokedex_id": 358, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic" - ], - "attack": 175, - "defense": 170, - "stamina": 181, - "height": 0.61, - "weight": 1, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Extrasensory", - "Astonish" - ], - "charged_moves": [ - "Energy Ball", - "Shadow Ball", - "Psyshock", - "Psyshock" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 358 - }, - "359": { - "name": "Absol", - "forms": { - "830": { - "name": "Normal", - "proto": "ABSOL_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "831": { - "name": "Shadow", - "proto": "ABSOL_SHADOW" - }, - "832": { - "name": "Purified", - "proto": "ABSOL_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 830, - "pokedex_id": 359, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dark" - ], - "attack": 246, - "defense": 120, - "stamina": 163, - "height": 1.19, - "weight": 47, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Psycho Cut", - "Snarl" - ], - "charged_moves": [ - "Dark Pulse", - "Thunder", - "Megahorn", - "Payback" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 359, - "temp_evolutions": { - "1": { - "attack": 314, - "defense": 130, - "stamina": 163, - "unreleased": true - } - } - }, - "360": { - "name": "Wynaut", - "forms": { - "1595": { - "name": "Normal", - "proto": "WYNAUT_NORMAL" - }, - "1596": { - "name": "Shadow", - "proto": "WYNAUT_SHADOW" - }, - "1597": { - "name": "Purified", - "proto": "WYNAUT_PURIFIED" - } - }, - "default_form_id": 1595, - "pokedex_id": 360, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic" - ], - "attack": 41, - "defense": 86, - "stamina": 216, - "height": 0.61, - "weight": 14, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Splash", - "Counter" - ], - "charged_moves": [ - "Mirror Coat" - ], - "evolutions": [ - { - "pokemon": 202 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 202, - "little": true - }, - "361": { - "name": "Snorunt", - "forms": { - "926": { - "name": "Normal", - "proto": "SNORUNT_NORMAL" - }, - "927": { - "name": "Shadow", - "proto": "SNORUNT_SHADOW" - }, - "928": { - "name": "Purified", - "proto": "SNORUNT_PURIFIED" - } - }, - "default_form_id": 926, - "pokedex_id": 361, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice" - ], - "attack": 95, - "defense": 95, - "stamina": 137, - "height": 0.71, - "weight": 16.8, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Powder Snow", - "Hex" - ], - "charged_moves": [ - "Avalanche", - "Icy Wind", - "Shadow Ball" - ], - "evolutions": [ - { - "pokemon": 478, - "gender_requirement": 2 - }, - { - "pokemon": 362 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 361, - "little": true - }, - "362": { - "name": "Glalie", - "forms": { - "929": { - "name": "Normal", - "proto": "GLALIE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "930": { - "name": "Shadow", - "proto": "GLALIE_SHADOW" - }, - "931": { - "name": "Purified", - "proto": "GLALIE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 929, - "pokedex_id": 362, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice" - ], - "attack": 162, - "defense": 162, - "stamina": 190, - "height": 1.5, - "weight": 256.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Ice Shard", - "Frost Breath" - ], - "charged_moves": [ - "Avalanche", - "Gyro Ball", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 361, - "temp_evolutions": { - "1": { - "attack": 252, - "defense": 168, - "stamina": 190, - "unreleased": true - } - } - }, - "363": { - "name": "Spheal", - "forms": { - "1598": { - "name": "Normal", - "proto": "SPHEAL_NORMAL", - "evolutions": [ - { - "pokemon": 364, - "form": 1601 - } - ] - }, - "1599": { - "name": "Shadow", - "proto": "SPHEAL_SHADOW", - "evolutions": [ - { - "pokemon": 364, - "form": 1602 - } - ] - }, - "1600": { - "name": "Purified", - "proto": "SPHEAL_PURIFIED", - "evolutions": [ - { - "pokemon": 364, - "form": 1603 - } - ] - } - }, - "default_form_id": 1598, - "pokedex_id": 363, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice", - "Water" - ], - "attack": 95, - "defense": 90, - "stamina": 172, - "height": 0.79, - "weight": 39.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Rock Smash" - ], - "charged_moves": [ - "Aurora Beam", - "Body Slam", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 364, - "form": 1601 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 363, - "little": true - }, - "364": { - "name": "Sealeo", - "forms": { - "1601": { - "name": "Normal", - "proto": "SEALEO_NORMAL", - "evolutions": [ - { - "pokemon": 365, - "form": 1604 - } - ] - }, - "1602": { - "name": "Shadow", - "proto": "SEALEO_SHADOW", - "evolutions": [ - { - "pokemon": 365, - "form": 1605 - } - ] - }, - "1603": { - "name": "Purified", - "proto": "SEALEO_PURIFIED", - "evolutions": [ - { - "pokemon": 365, - "form": 1606 - } - ] - } - }, - "default_form_id": 1601, - "pokedex_id": 364, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice", - "Water" - ], - "attack": 137, - "defense": 132, - "stamina": 207, - "height": 1.09, - "weight": 87.6, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Water Gun", - "Powder Snow" - ], - "charged_moves": [ - "Aurora Beam", - "Body Slam", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 365, - "form": 1604 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 363 - }, - "365": { - "name": "Walrein", - "forms": { - "1604": { - "name": "Normal", - "proto": "WALREIN_NORMAL" - }, - "1605": { - "name": "Shadow", - "proto": "WALREIN_SHADOW" - }, - "1606": { - "name": "Purified", - "proto": "WALREIN_PURIFIED" - } - }, - "default_form_id": 1604, - "pokedex_id": 365, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice", - "Water" - ], - "attack": 182, - "defense": 176, - "stamina": 242, - "height": 1.4, - "weight": 150.6, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Waterfall", - "Frost Breath" - ], - "charged_moves": [ - "Blizzard", - "Earthquake", - "Water Pulse" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 363 - }, - "366": { - "name": "Clamperl", - "forms": { - "1607": { - "name": "Normal", - "proto": "CLAMPERL_NORMAL" - }, - "1608": { - "name": "Shadow", - "proto": "CLAMPERL_SHADOW" - }, - "1609": { - "name": "Purified", - "proto": "CLAMPERL_PURIFIED" - } - }, - "default_form_id": 1607, - "pokedex_id": 366, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 133, - "defense": 135, - "stamina": 111, - "height": 0.41, - "weight": 52.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun" - ], - "charged_moves": [ - "Body Slam", - "Ice Beam", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 367 - }, - { - "pokemon": 368 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 366, - "little": true - }, - "367": { - "name": "Huntail", - "forms": { - "1610": { - "name": "Normal", - "proto": "HUNTAIL_NORMAL" - }, - "1611": { - "name": "Shadow", - "proto": "HUNTAIL_SHADOW" - }, - "1612": { - "name": "Purified", - "proto": "HUNTAIL_PURIFIED" - } - }, - "default_form_id": 1610, - "pokedex_id": 367, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 197, - "defense": 179, - "stamina": 146, - "height": 1.7, - "weight": 27, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Ice Beam", - "Aqua Tail" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 366 - }, - "368": { - "name": "Gorebyss", - "forms": { - "1613": { - "name": "Normal", - "proto": "GOREBYSS_NORMAL" - }, - "1614": { - "name": "Shadow", - "proto": "GOREBYSS_SHADOW" - }, - "1615": { - "name": "Purified", - "proto": "GOREBYSS_PURIFIED" - } - }, - "default_form_id": 1613, - "pokedex_id": 368, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 211, - "defense": 179, - "stamina": 146, - "height": 1.8, - "weight": 22.6, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Confusion" - ], - "charged_moves": [ - "Draining Kiss", - "Psychic", - "Water Pulse" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 366 - }, - "369": { - "name": "Relicanth", - "forms": { - "1616": { - "name": "Normal", - "proto": "RELICANTH_NORMAL" - }, - "1617": { - "name": "Shadow", - "proto": "RELICANTH_SHADOW" - }, - "1618": { - "name": "Purified", - "proto": "RELICANTH_PURIFIED" - } - }, - "default_form_id": 1616, - "pokedex_id": 369, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water", - "Rock" - ], - "attack": 162, - "defense": 203, - "stamina": 225, - "height": 0.99, - "weight": 23.4, - "flee_rate": 0.01, - "capture_rate": 0.9, - "quick_moves": [ - "Water Gun", - "Zen Headbutt" - ], - "charged_moves": [ - "Ancient Power", - "Aqua Tail", - "Hydro Pump" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 369 - }, - "370": { - "name": "Luvdisc", - "forms": { - "1619": { - "name": "Normal", - "proto": "LUVDISC_NORMAL" - }, - "1620": { - "name": "Shadow", - "proto": "LUVDISC_SHADOW" - }, - "1621": { - "name": "Purified", - "proto": "LUVDISC_PURIFIED" - } - }, - "default_form_id": 1619, - "pokedex_id": 370, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 81, - "defense": 128, - "stamina": 125, - "height": 0.61, - "weight": 8.7, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Water Gun", - "Splash" - ], - "charged_moves": [ - "Draining Kiss", - "Water Pulse", - "Aqua Jet" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 370 - }, - "371": { - "name": "Bagon", - "forms": { - "755": { - "name": "Normal", - "proto": "BAGON_NORMAL", - "evolutions": [ - { - "pokemon": 372, - "form": 758 - } - ] - }, - "756": { - "name": "Shadow", - "proto": "BAGON_SHADOW", - "evolutions": [ - { - "pokemon": 372, - "form": 759 - } - ] - }, - "757": { - "name": "Purified", - "proto": "BAGON_PURIFIED", - "evolutions": [ - { - "pokemon": 372, - "form": 760 - } - ] - } - }, - "default_form_id": 755, - "pokedex_id": 371, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon" - ], - "attack": 134, - "defense": 93, - "stamina": 128, - "height": 0.61, - "weight": 42.1, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Bite", - "Ember" - ], - "charged_moves": [ - "Flamethrower", - "Twister", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 372, - "form": 758 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 371, - "little": true - }, - "372": { - "name": "Shelgon", - "forms": { - "758": { - "name": "Normal", - "proto": "SHELGON_NORMAL", - "evolutions": [ - { - "pokemon": 373, - "form": 761 - } - ] - }, - "759": { - "name": "Shadow", - "proto": "SHELGON_SHADOW", - "evolutions": [ - { - "pokemon": 373, - "form": 762 - } - ] - }, - "760": { - "name": "Purified", - "proto": "SHELGON_PURIFIED", - "evolutions": [ - { - "pokemon": 373, - "form": 763 - } - ] - } - }, - "default_form_id": 758, - "pokedex_id": 372, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon" - ], - "attack": 172, - "defense": 155, - "stamina": 163, - "height": 1.09, - "weight": 110.5, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Ember", - "Dragon Breath" - ], - "charged_moves": [ - "Flamethrower", - "Dragon Pulse", - "Twister" - ], - "evolutions": [ - { - "pokemon": 373, - "form": 761 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 371 - }, - "373": { - "name": "Salamence", - "forms": { - "761": { - "name": "Normal", - "proto": "SALAMENCE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "762": { - "name": "Shadow", - "proto": "SALAMENCE_SHADOW" - }, - "763": { - "name": "Purified", - "proto": "SALAMENCE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 761, - "pokedex_id": 373, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon", - "Flying" - ], - "attack": 277, - "defense": 168, - "stamina": 216, - "height": 1.5, - "weight": 102.6, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Dragon Tail", - "Fire Fang", - "Bite" - ], - "charged_moves": [ - "Fire Blast", - "Hydro Pump", - "Draco Meteor" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 371, - "temp_evolutions": { - "1": { - "attack": 310, - "defense": 251, - "stamina": 216, - "unreleased": true - } - } - }, - "374": { - "name": "Beldum", - "forms": { - "764": { - "name": "Normal", - "proto": "BELDUM_NORMAL", - "evolutions": [ - { - "pokemon": 375, - "form": 767 - } - ] - }, - "765": { - "name": "Shadow", - "proto": "BELDUM_SHADOW", - "evolutions": [ - { - "pokemon": 375, - "form": 768 - } - ] - }, - "766": { - "name": "Purified", - "proto": "BELDUM_PURIFIED", - "evolutions": [ - { - "pokemon": 375, - "form": 769 - } - ] - } - }, - "default_form_id": 764, - "pokedex_id": 374, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Psychic" - ], - "attack": 96, - "defense": 132, - "stamina": 120, - "height": 0.61, - "weight": 95.2, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Take Down" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 375, - "form": 767 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 374, - "little": true - }, - "375": { - "name": "Metang", - "forms": { - "767": { - "name": "Normal", - "proto": "METANG_NORMAL", - "evolutions": [ - { - "pokemon": 376, - "form": 770 - } - ] - }, - "768": { - "name": "Shadow", - "proto": "METANG_SHADOW", - "evolutions": [ - { - "pokemon": 376, - "form": 771 - } - ] - }, - "769": { - "name": "Purified", - "proto": "METANG_PURIFIED", - "evolutions": [ - { - "pokemon": 376, - "form": 772 - } - ] - } - }, - "default_form_id": 767, - "pokedex_id": 375, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Psychic" - ], - "attack": 138, - "defense": 176, - "stamina": 155, - "height": 1.19, - "weight": 202.5, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Zen Headbutt", - "Metal Claw" - ], - "charged_moves": [ - "Psychic", - "Gyro Ball", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 376, - "form": 770 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 374 - }, - "376": { - "name": "Metagross", - "forms": { - "770": { - "name": "Normal", - "proto": "METAGROSS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "771": { - "name": "Shadow", - "proto": "METAGROSS_SHADOW" - }, - "772": { - "name": "Purified", - "proto": "METAGROSS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 770, - "pokedex_id": 376, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Psychic" - ], - "attack": 257, - "defense": 228, - "stamina": 190, - "height": 1.6, - "weight": 550, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Bullet Punch", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic", - "Flash Cannon", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 374, - "temp_evolutions": { - "1": { - "attack": 300, - "defense": 289, - "stamina": 190, - "unreleased": true - } - } - }, - "377": { - "name": "Regirock", - "forms": { - "1622": { - "name": "Normal", - "proto": "REGIROCK_NORMAL" - }, - "1623": { - "name": "Shadow", - "proto": "REGIROCK_SHADOW" - }, - "1624": { - "name": "Purified", - "proto": "REGIROCK_PURIFIED" - } - }, - "default_form_id": 1622, - "pokedex_id": 377, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Rock" - ], - "attack": 179, - "defense": 309, - "stamina": 190, - "height": 1.7, - "weight": 230, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Rock Throw", - "Rock Smash", - "Lock On" - ], - "charged_moves": [ - "Stone Edge", - "Zap Cannon", - "Focus Blast" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 377 - }, - "378": { - "name": "Regice", - "forms": { - "1625": { - "name": "Normal", - "proto": "REGICE_NORMAL" - }, - "1626": { - "name": "Shadow", - "proto": "REGICE_SHADOW" - }, - "1627": { - "name": "Purified", - "proto": "REGICE_PURIFIED" - } - }, - "default_form_id": 1625, - "pokedex_id": 378, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ice" - ], - "attack": 179, - "defense": 309, - "stamina": 190, - "height": 1.8, - "weight": 175, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Frost Breath", - "Rock Smash", - "Lock On" - ], - "charged_moves": [ - "Blizzard", - "Earthquake", - "Focus Blast" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 378 - }, - "379": { - "name": "Registeel", - "forms": { - "1628": { - "name": "Normal", - "proto": "REGISTEEL_NORMAL" - }, - "1629": { - "name": "Shadow", - "proto": "REGISTEEL_SHADOW" - }, - "1630": { - "name": "Purified", - "proto": "REGISTEEL_PURIFIED" - } - }, - "default_form_id": 1628, - "pokedex_id": 379, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel" - ], - "attack": 143, - "defense": 285, - "stamina": 190, - "height": 1.91, - "weight": 205, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Metal Claw", - "Rock Smash", - "Lock On" - ], - "charged_moves": [ - "Flash Cannon", - "Hyper Beam", - "Focus Blast" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 379 - }, - "380": { - "name": "Latias", - "forms": { - "1631": { - "name": "Normal", - "proto": "LATIAS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1632": { - "name": "Shadow", - "proto": "LATIAS_SHADOW" - }, - "1633": { - "name": "Purified", - "proto": "LATIAS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1631, - "pokedex_id": 380, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon", - "Psychic" - ], - "attack": 228, - "defense": 246, - "stamina": 190, - "height": 1.4, - "weight": 40, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Zen Headbutt", - "Charm" - ], - "charged_moves": [ - "Psychic", - "Outrage", - "Thunder" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 380, - "temp_evolutions": { - "1": { - "attack": 289, - "defense": 297, - "stamina": 190, - "unreleased": true - } - } - }, - "381": { - "name": "Latios", - "forms": { - "1634": { - "name": "Normal", - "proto": "LATIOS_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1635": { - "name": "Shadow", - "proto": "LATIOS_SHADOW" - }, - "1636": { - "name": "Purified", - "proto": "LATIOS_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1634, - "pokedex_id": 381, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon", - "Psychic" - ], - "attack": 268, - "defense": 212, - "stamina": 190, - "height": 2.01, - "weight": 60, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic", - "Dragon Claw", - "Solar Beam" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 381, - "temp_evolutions": { - "1": { - "attack": 335, - "defense": 241, - "stamina": 190, - "unreleased": true - } - } - }, - "382": { - "name": "Kyogre", - "forms": { - "1637": { - "name": "Normal", - "proto": "KYOGRE_NORMAL" - }, - "1638": { - "name": "Shadow", - "proto": "KYOGRE_SHADOW" - }, - "1639": { - "name": "Purified", - "proto": "KYOGRE_PURIFIED" - } - }, - "default_form_id": 1637, - "pokedex_id": 382, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Water" - ], - "attack": 270, - "defense": 228, - "stamina": 205, - "height": 4.5, - "weight": 352, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Waterfall" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Thunder", - "Surf" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 382 - }, - "383": { - "name": "Groudon", - "forms": { - "1640": { - "name": "Normal", - "proto": "GROUDON_NORMAL" - }, - "1641": { - "name": "Shadow", - "proto": "GROUDON_SHADOW" - }, - "1642": { - "name": "Purified", - "proto": "GROUDON_PURIFIED" - } - }, - "default_form_id": 1640, - "pokedex_id": 383, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Ground" - ], - "attack": 270, - "defense": 228, - "stamina": 205, - "height": 3.51, - "weight": 950, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Mud Shot", - "Dragon Tail" - ], - "charged_moves": [ - "Earthquake", - "Fire Blast", - "Solar Beam" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 383 - }, - "384": { - "name": "Rayquaza", - "forms": { - "1643": { - "name": "Normal", - "proto": "RAYQUAZA_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1644": { - "name": "Shadow", - "proto": "RAYQUAZA_SHADOW" - }, - "1645": { - "name": "Purified", - "proto": "RAYQUAZA_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1643, - "pokedex_id": 384, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Dragon", - "Flying" - ], - "attack": 284, - "defense": 170, - "stamina": 213, - "height": 7.01, - "weight": 206.5, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Air Slash", - "Dragon Tail" - ], - "charged_moves": [ - "Outrage", - "Aerial Ace", - "Ancient Power" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 384, - "temp_evolutions": { - "1": { - "attack": 389, - "defense": 216, - "stamina": 233, - "unreleased": true - } - } - }, - "385": { - "name": "Jirachi", - "forms": { - "1646": { - "name": "Normal", - "proto": "JIRACHI_NORMAL" - }, - "1647": { - "name": "Shadow", - "proto": "JIRACHI_SHADOW" - }, - "1648": { - "name": "Purified", - "proto": "JIRACHI_PURIFIED" - } - }, - "default_form_id": 1646, - "pokedex_id": 385, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Steel", - "Psychic" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.3, - "weight": 1.1, - "capture_rate": 100, - "quick_moves": [ - "Confusion", - "Charge Beam" - ], - "charged_moves": [ - "Dazzling Gleam", - "Psychic", - "Doom Desire" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 385 - }, - "386": { - "name": "Deoxys", - "forms": { - "33": { - "name": "Normal", - "proto": "DEOXYS_NORMAL", - "charged_moves": [ - "Psycho Boost", - "Thunderbolt", - "Hyper Beam" - ] - }, - "34": { - "name": "Attack", - "proto": "DEOXYS_ATTACK", - "attack": 414, - "defense": 46, - "stamina": 137, - "quick_moves": [ - "Zen Headbutt", - "Poison Jab" - ], - "charged_moves": [ - "Psycho Boost", - "Zap Cannon", - "Dark Pulse" - ] - }, - "35": { - "name": "Defense", - "proto": "DEOXYS_DEFENSE", - "attack": 144, - "defense": 330, - "stamina": 137, - "quick_moves": [ - "Zen Headbutt", - "Counter" - ], - "charged_moves": [ - "Psycho Boost", - "Thunderbolt", - "Rock Slide" - ] - }, - "36": { - "name": "Speed", - "proto": "DEOXYS_SPEED", - "attack": 230, - "defense": 218, - "stamina": 137, - "charged_moves": [ - "Psycho Boost", - "Thunderbolt", - "Swift" - ] - } - }, - "default_form_id": 33, - "pokedex_id": 386, - "genId": "3", - "generation": "Hoenn", - "types": [ - "Psychic" - ], - "attack": 345, - "defense": 115, - "stamina": 137, - "height": 1.7, - "weight": 60.8, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Zen Headbutt", - "Charge Beam" - ], - "charged_moves": [ - "Psycho Boost", - "Zap Cannon", - "Hyper Beam" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 386 - }, - "387": { - "name": "Turtwig", - "forms": { - "688": { - "name": "Normal", - "proto": "TURTWIG_NORMAL", - "evolutions": [ - { - "pokemon": 388, - "form": 691 - } - ] - }, - "689": { - "name": "Shadow", - "proto": "TURTWIG_SHADOW", - "evolutions": [ - { - "pokemon": 388, - "form": 692 - } - ] - }, - "690": { - "name": "Purified", - "proto": "TURTWIG_PURIFIED", - "evolutions": [ - { - "pokemon": 388, - "form": 693 - } - ] - } - }, - "default_form_id": 688, - "pokedex_id": 387, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 119, - "defense": 110, - "stamina": 146, - "height": 0.4, - "weight": 10.2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Razor Leaf" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 388, - "form": 691 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 387, - "little": true - }, - "388": { - "name": "Grotle", - "forms": { - "691": { - "name": "Normal", - "proto": "GROTLE_NORMAL", - "evolutions": [ - { - "pokemon": 389, - "form": 694 - } - ] - }, - "692": { - "name": "Shadow", - "proto": "GROTLE_SHADOW", - "evolutions": [ - { - "pokemon": 389, - "form": 695 - } - ] - }, - "693": { - "name": "Purified", - "proto": "GROTLE_PURIFIED", - "evolutions": [ - { - "pokemon": 389, - "form": 696 - } - ] - } - }, - "default_form_id": 691, - "pokedex_id": 388, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 157, - "defense": 143, - "stamina": 181, - "height": 1.1, - "weight": 97, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Bite", - "Razor Leaf" - ], - "charged_moves": [ - "Energy Ball", - "Solar Beam", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 389, - "form": 694 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 387 - }, - "389": { - "name": "Torterra", - "forms": { - "694": { - "name": "Normal", - "proto": "TORTERRA_NORMAL" - }, - "695": { - "name": "Shadow", - "proto": "TORTERRA_SHADOW" - }, - "696": { - "name": "Purified", - "proto": "TORTERRA_PURIFIED" - } - }, - "default_form_id": 694, - "pokedex_id": 389, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass", - "Ground" - ], - "attack": 202, - "defense": 188, - "stamina": 216, - "height": 2.2, - "weight": 310, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Bite", - "Razor Leaf" - ], - "charged_moves": [ - "Stone Edge", - "Solar Beam", - "Earthquake", - "Sand Tomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 387 - }, - "390": { - "name": "Chimchar", - "forms": { - "818": { - "name": "Normal", - "proto": "CHIMCHAR_NORMAL", - "evolutions": [ - { - "pokemon": 391, - "form": 821 - } - ] - }, - "819": { - "name": "Shadow", - "proto": "CHIMCHAR_SHADOW", - "evolutions": [ - { - "pokemon": 391, - "form": 822 - } - ] - }, - "820": { - "name": "Purified", - "proto": "CHIMCHAR_PURIFIED", - "evolutions": [ - { - "pokemon": 391, - "form": 823 - } - ] - } - }, - "default_form_id": 818, - "pokedex_id": 390, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fire" - ], - "attack": 113, - "defense": 86, - "stamina": 127, - "height": 0.5, - "weight": 6.2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Ember", - "Scratch" - ], - "charged_moves": [ - "Flame Wheel", - "Flamethrower", - "Flame Charge" - ], - "evolutions": [ - { - "pokemon": 391, - "form": 821 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 390, - "little": true - }, - "391": { - "name": "Monferno", - "forms": { - "821": { - "name": "Normal", - "proto": "MONFERNO_NORMAL", - "evolutions": [ - { - "pokemon": 392, - "form": 824 - } - ] - }, - "822": { - "name": "Shadow", - "proto": "MONFERNO_SHADOW", - "evolutions": [ - { - "pokemon": 392, - "form": 825 - } - ] - }, - "823": { - "name": "Purified", - "proto": "MONFERNO_PURIFIED", - "evolutions": [ - { - "pokemon": 392, - "form": 826 - } - ] - } - }, - "default_form_id": 821, - "pokedex_id": 391, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fire", - "Fighting" - ], - "attack": 158, - "defense": 105, - "stamina": 162, - "height": 0.9, - "weight": 22, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Ember", - "Rock Smash" - ], - "charged_moves": [ - "Flame Wheel", - "Flamethrower", - "Low Sweep" - ], - "evolutions": [ - { - "pokemon": 392, - "form": 824 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 390 - }, - "392": { - "name": "Infernape", - "forms": { - "824": { - "name": "Normal", - "proto": "INFERNAPE_NORMAL" - }, - "825": { - "name": "Shadow", - "proto": "INFERNAPE_SHADOW" - }, - "826": { - "name": "Purified", - "proto": "INFERNAPE_PURIFIED" - } - }, - "default_form_id": 824, - "pokedex_id": 392, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fire", - "Fighting" - ], - "attack": 222, - "defense": 151, - "stamina": 183, - "height": 1.2, - "weight": 55, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Fire Spin", - "Rock Smash" - ], - "charged_moves": [ - "Solar Beam", - "Flamethrower", - "Close Combat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 390 - }, - "393": { - "name": "Piplup", - "forms": { - "1649": { - "name": "Normal", - "proto": "PIPLUP_NORMAL" - }, - "1650": { - "name": "Shadow", - "proto": "PIPLUP_SHADOW" - }, - "1651": { - "name": "Purified", - "proto": "PIPLUP_PURIFIED" - } - }, - "default_form_id": 1649, - "pokedex_id": 393, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 112, - "defense": 102, - "stamina": 142, - "height": 0.4, - "weight": 5.2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Bubble", - "Pound" - ], - "charged_moves": [ - "Bubble Beam", - "Drill Peck", - "Icy Wind" - ], - "evolutions": [ - { - "pokemon": 394 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 393, - "little": true - }, - "394": { - "name": "Prinplup", - "forms": { - "1652": { - "name": "Normal", - "proto": "PRINPLUP_NORMAL" - }, - "1653": { - "name": "Shadow", - "proto": "PRINPLUP_SHADOW" - }, - "1654": { - "name": "Purified", - "proto": "PRINPLUP_PURIFIED" - } - }, - "default_form_id": 1652, - "pokedex_id": 394, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 150, - "defense": 139, - "stamina": 162, - "height": 0.8, - "weight": 23, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Bubble", - "Metal Claw" - ], - "charged_moves": [ - "Bubble Beam", - "Hydro Pump", - "Icy Wind" - ], - "evolutions": [ - { - "pokemon": 395 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 393 - }, - "395": { - "name": "Empoleon", - "forms": { - "1655": { - "name": "Normal", - "proto": "EMPOLEON_NORMAL" - }, - "1656": { - "name": "Shadow", - "proto": "EMPOLEON_SHADOW" - }, - "1657": { - "name": "Purified", - "proto": "EMPOLEON_PURIFIED" - } - }, - "default_form_id": 1655, - "pokedex_id": 395, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water", - "Steel" - ], - "attack": 210, - "defense": 186, - "stamina": 197, - "height": 1.7, - "weight": 84.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Waterfall", - "Metal Claw" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Flash Cannon", - "Drill Peck" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 393 - }, - "396": { - "name": "Starly", - "forms": { - "1658": { - "name": "Normal", - "proto": "STARLY_NORMAL", - "evolutions": [ - { - "pokemon": 397, - "form": 1661 - } - ] - }, - "1659": { - "name": "Shadow", - "proto": "STARLY_SHADOW", - "evolutions": [ - { - "pokemon": 397, - "form": 1662 - } - ] - }, - "1660": { - "name": "Purified", - "proto": "STARLY_PURIFIED", - "evolutions": [ - { - "pokemon": 397, - "form": 1663 - } - ] - } - }, - "default_form_id": 1658, - "pokedex_id": 396, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal", - "Flying" - ], - "attack": 101, - "defense": 58, - "stamina": 120, - "height": 0.3, - "weight": 2, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Quick Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Brave Bird" - ], - "evolutions": [ - { - "pokemon": 397, - "form": 1661 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 396, - "little": true - }, - "397": { - "name": "Staravia", - "forms": { - "1661": { - "name": "Normal", - "proto": "STARAVIA_NORMAL", - "evolutions": [ - { - "pokemon": 398, - "form": 1664 - } - ] - }, - "1662": { - "name": "Shadow", - "proto": "STARAVIA_SHADOW", - "evolutions": [ - { - "pokemon": 398, - "form": 1665 - } - ] - }, - "1663": { - "name": "Purified", - "proto": "STARAVIA_PURIFIED", - "evolutions": [ - { - "pokemon": 398, - "form": 1666 - } - ] - } - }, - "default_form_id": 1661, - "pokedex_id": 397, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal", - "Flying" - ], - "attack": 142, - "defense": 94, - "stamina": 146, - "height": 0.6, - "weight": 15.5, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Wing Attack", - "Quick Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Brave Bird", - "Heat Wave" - ], - "evolutions": [ - { - "pokemon": 398, - "form": 1664 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 396 - }, - "398": { - "name": "Staraptor", - "forms": { - "1664": { - "name": "Normal", - "proto": "STARAPTOR_NORMAL" - }, - "1665": { - "name": "Shadow", - "proto": "STARAPTOR_SHADOW" - }, - "1666": { - "name": "Purified", - "proto": "STARAPTOR_PURIFIED" - } - }, - "default_form_id": 1664, - "pokedex_id": 398, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal", - "Flying" - ], - "attack": 234, - "defense": 140, - "stamina": 198, - "height": 1.2, - "weight": 24.9, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Wing Attack", - "Quick Attack" - ], - "charged_moves": [ - "Brave Bird", - "Heat Wave", - "Close Combat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 396 - }, - "399": { - "name": "Bidoof", - "forms": { - "1667": { - "name": "Normal", - "proto": "BIDOOF_NORMAL", - "evolutions": [ - { - "pokemon": 400, - "form": 1670 - } - ] - }, - "1668": { - "name": "Shadow", - "proto": "BIDOOF_SHADOW", - "evolutions": [ - { - "pokemon": 400, - "form": 1671 - } - ] - }, - "1669": { - "name": "Purified", - "proto": "BIDOOF_PURIFIED", - "evolutions": [ - { - "pokemon": 400, - "form": 1672 - } - ] - } - }, - "default_form_id": 1667, - "pokedex_id": 399, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 80, - "defense": 73, - "stamina": 153, - "height": 0.5, - "weight": 20, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Take Down" - ], - "charged_moves": [ - "Hyper Fang", - "Crunch", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 400, - "form": 1670 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 399, - "little": true - }, - "400": { - "name": "Bibarel", - "forms": { - "1670": { - "name": "Normal", - "proto": "BIBAREL_NORMAL" - }, - "1671": { - "name": "Shadow", - "proto": "BIBAREL_SHADOW" - }, - "1672": { - "name": "Purified", - "proto": "BIBAREL_PURIFIED" - } - }, - "default_form_id": 1670, - "pokedex_id": 400, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal", - "Water" - ], - "attack": 162, - "defense": 119, - "stamina": 188, - "height": 1, - "weight": 31.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Take Down" - ], - "charged_moves": [ - "Hyper Fang", - "Hyper Beam", - "Surf" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 399 - }, - "401": { - "name": "Kricketot", - "forms": { - "1673": { - "name": "Normal", - "proto": "KRICKETOT_NORMAL" - }, - "1674": { - "name": "Shadow", - "proto": "KRICKETOT_SHADOW" - }, - "1675": { - "name": "Purified", - "proto": "KRICKETOT_PURIFIED" - } - }, - "default_form_id": 1673, - "pokedex_id": 401, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug" - ], - "attack": 45, - "defense": 74, - "stamina": 114, - "height": 0.3, - "weight": 2.2, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Struggle Bug", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 402 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 401, - "little": true - }, - "402": { - "name": "Kricketune", - "forms": { - "1676": { - "name": "Normal", - "proto": "KRICKETUNE_NORMAL" - }, - "1677": { - "name": "Shadow", - "proto": "KRICKETUNE_SHADOW" - }, - "1678": { - "name": "Purified", - "proto": "KRICKETUNE_PURIFIED" - } - }, - "default_form_id": 1676, - "pokedex_id": 402, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug" - ], - "attack": 160, - "defense": 100, - "stamina": 184, - "height": 1, - "weight": 25.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Struggle Bug", - "Fury Cutter" - ], - "charged_moves": [ - "Bug Buzz", - "X Scissor", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 401 - }, - "403": { - "name": "Shinx", - "forms": { - "1679": { - "name": "Normal", - "proto": "SHINX_NORMAL" - }, - "1680": { - "name": "Shadow", - "proto": "SHINX_SHADOW" - }, - "1681": { - "name": "Purified", - "proto": "SHINX_PURIFIED" - } - }, - "default_form_id": 1679, - "pokedex_id": 403, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric" - ], - "attack": 117, - "defense": 64, - "stamina": 128, - "height": 0.5, - "weight": 9.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Spark" - ], - "charged_moves": [ - "Discharge", - "Thunderbolt", - "Swift" - ], - "evolutions": [ - { - "pokemon": 404 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 403, - "little": true - }, - "404": { - "name": "Luxio", - "forms": { - "1682": { - "name": "Normal", - "proto": "LUXIO_NORMAL" - }, - "1683": { - "name": "Shadow", - "proto": "LUXIO_SHADOW" - }, - "1684": { - "name": "Purified", - "proto": "LUXIO_PURIFIED" - } - }, - "default_form_id": 1682, - "pokedex_id": 404, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric" - ], - "attack": 159, - "defense": 95, - "stamina": 155, - "height": 0.9, - "weight": 30.5, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Spark", - "Bite" - ], - "charged_moves": [ - "Thunderbolt", - "Wild Charge", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 405 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 403 - }, - "405": { - "name": "Luxray", - "forms": { - "1685": { - "name": "Normal", - "proto": "LUXRAY_NORMAL" - }, - "1686": { - "name": "Shadow", - "proto": "LUXRAY_SHADOW" - }, - "1687": { - "name": "Purified", - "proto": "LUXRAY_PURIFIED" - } - }, - "default_form_id": 1685, - "pokedex_id": 405, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric" - ], - "attack": 232, - "defense": 156, - "stamina": 190, - "height": 1.4, - "weight": 42, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Spark", - "Snarl", - "Hidden Power" - ], - "charged_moves": [ - "Hyper Beam", - "Wild Charge", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 403 - }, - "406": { - "name": "Budew", - "forms": { - "1688": { - "name": "Normal", - "proto": "BUDEW_NORMAL" - }, - "1689": { - "name": "Shadow", - "proto": "BUDEW_SHADOW" - }, - "1690": { - "name": "Purified", - "proto": "BUDEW_PURIFIED" - } - }, - "default_form_id": 1688, - "pokedex_id": 406, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass", - "Poison" - ], - "attack": 91, - "defense": 109, - "stamina": 120, - "height": 0.2, - "weight": 1.2, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Hidden Power", - "Razor Leaf" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 315 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 315, - "little": true - }, - "407": { - "name": "Roserade", - "forms": { - "1691": { - "name": "Normal", - "proto": "ROSERADE_NORMAL" - }, - "1692": { - "name": "Shadow", - "proto": "ROSERADE_SHADOW" - }, - "1693": { - "name": "Purified", - "proto": "ROSERADE_PURIFIED" - } - }, - "default_form_id": 1691, - "pokedex_id": 407, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass", - "Poison" - ], - "attack": 243, - "defense": 185, - "stamina": 155, - "height": 0.9, - "weight": 14.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Poison Jab", - "Razor Leaf" - ], - "charged_moves": [ - "Solar Beam", - "Sludge Bomb", - "Dazzling Gleam", - "Grass Knot", - "Leaf Storm" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 315 - }, - "408": { - "name": "Cranidos", - "forms": { - "1694": { - "name": "Normal", - "proto": "CRANIDOS_NORMAL" - }, - "1695": { - "name": "Shadow", - "proto": "CRANIDOS_SHADOW" - }, - "1696": { - "name": "Purified", - "proto": "CRANIDOS_PURIFIED" - } - }, - "default_form_id": 1694, - "pokedex_id": 408, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock" - ], - "attack": 218, - "defense": 71, - "stamina": 167, - "height": 0.9, - "weight": 31.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Zen Headbutt", - "Take Down" - ], - "charged_moves": [ - "Rock Tomb", - "Ancient Power", - "Bulldoze" - ], - "evolutions": [ - { - "pokemon": 409 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 408, - "little": true - }, - "409": { - "name": "Rampardos", - "forms": { - "1697": { - "name": "Normal", - "proto": "RAMPARDOS_NORMAL" - }, - "1698": { - "name": "Shadow", - "proto": "RAMPARDOS_SHADOW" - }, - "1699": { - "name": "Purified", - "proto": "RAMPARDOS_PURIFIED" - } - }, - "default_form_id": 1697, - "pokedex_id": 409, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock" - ], - "attack": 295, - "defense": 109, - "stamina": 219, - "height": 1.6, - "weight": 102.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Smack Down" - ], - "charged_moves": [ - "Rock Slide", - "Outrage", - "Flamethrower" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 408 - }, - "410": { - "name": "Shieldon", - "forms": { - "1700": { - "name": "Normal", - "proto": "SHIELDON_NORMAL" - }, - "1701": { - "name": "Shadow", - "proto": "SHIELDON_SHADOW" - }, - "1702": { - "name": "Purified", - "proto": "SHIELDON_PURIFIED" - } - }, - "default_form_id": 1700, - "pokedex_id": 410, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock", - "Steel" - ], - "attack": 76, - "defense": 195, - "stamina": 102, - "height": 0.5, - "weight": 57, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Iron Tail" - ], - "charged_moves": [ - "Rock Tomb", - "Ancient Power", - "Heavy Slam" - ], - "evolutions": [ - { - "pokemon": 411 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 410, - "little": true - }, - "411": { - "name": "Bastiodon", - "forms": { - "1703": { - "name": "Normal", - "proto": "BASTIODON_NORMAL" - }, - "1704": { - "name": "Shadow", - "proto": "BASTIODON_SHADOW" - }, - "1705": { - "name": "Purified", - "proto": "BASTIODON_PURIFIED" - } - }, - "default_form_id": 1703, - "pokedex_id": 411, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock", - "Steel" - ], - "attack": 94, - "defense": 286, - "stamina": 155, - "height": 1.3, - "weight": 149.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Smack Down", - "Iron Tail" - ], - "charged_moves": [ - "Stone Edge", - "Flamethrower", - "Flash Cannon" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 410 - }, - "412": { - "name": "Burmy", - "forms": { - "118": { - "name": "Plant", - "proto": "BURMY_PLANT", - "evolutions": [ - { - "pokemon": 413, - "form": 87, - "gender_requirement": 2 - }, - { - "pokemon": 414, - "gender_requirement": 1 - } - ] - }, - "119": { - "name": "Sandy", - "proto": "BURMY_SANDY", - "evolutions": [ - { - "pokemon": 413, - "form": 88, - "gender_requirement": 2 - }, - { - "pokemon": 414, - "gender_requirement": 1 - } - ] - }, - "120": { - "name": "Trash", - "proto": "BURMY_TRASH", - "evolutions": [ - { - "pokemon": 413, - "form": 89, - "gender_requirement": 2 - }, - { - "pokemon": 414, - "gender_requirement": 1 - } - ] - }, - "1706": { - "name": "Normal", - "proto": "BURMY_NORMAL" - }, - "1707": { - "name": "Shadow", - "proto": "BURMY_SHADOW" - }, - "1708": { - "name": "Purified", - "proto": "BURMY_PURIFIED" - } - }, - "default_form_id": 118, - "pokedex_id": 412, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug" - ], - "attack": 53, - "defense": 83, - "stamina": 120, - "height": 0.2, - "weight": 3.4, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 413, - "form": 87, - "gender_requirement": 2 - }, - { - "pokemon": 414, - "gender_requirement": 1 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 412, - "little": true - }, - "413": { - "name": "Wormadam", - "forms": { - "87": { - "name": "Plant", - "proto": "WORMADAM_PLANT", - "quick_moves": [ - "Confusion", - "Bug Bite" - ], - "charged_moves": [ - "Psybeam", - "Energy Ball", - "Bug Buzz" - ] - }, - "88": { - "name": "Sandy", - "proto": "WORMADAM_SANDY", - "quick_moves": [ - "Confusion", - "Bug Bite" - ], - "charged_moves": [ - "Psybeam", - "Bulldoze", - "Bug Buzz" - ], - "types": [ - "Bug", - "Ground" - ] - }, - "89": { - "name": "Trash", - "proto": "WORMADAM_TRASH", - "attack": 127, - "defense": 175, - "stamina": 155, - "quick_moves": [ - "Confusion", - "Bug Bite" - ], - "charged_moves": [ - "Psybeam", - "Iron Head", - "Bug Buzz" - ], - "types": [ - "Bug", - "Steel" - ] - }, - "1709": { - "name": "Normal", - "proto": "WORMADAM_NORMAL" - }, - "1710": { - "name": "Shadow", - "proto": "WORMADAM_SHADOW" - }, - "1711": { - "name": "Purified", - "proto": "WORMADAM_PURIFIED" - } - }, - "default_form_id": 87, - "pokedex_id": 413, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug", - "Grass" - ], - "attack": 141, - "defense": 180, - "stamina": 155, - "height": 0.5, - "weight": 6.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Tackle", - "Bug Bite" - ], - "charged_moves": [ - "Struggle" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 412 - }, - "414": { - "name": "Mothim", - "forms": { - "1712": { - "name": "Normal", - "proto": "MOTHIM_NORMAL" - }, - "1713": { - "name": "Shadow", - "proto": "MOTHIM_SHADOW" - }, - "1714": { - "name": "Purified", - "proto": "MOTHIM_PURIFIED" - } - }, - "default_form_id": 1712, - "pokedex_id": 414, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug", - "Flying" - ], - "attack": 185, - "defense": 98, - "stamina": 172, - "height": 0.9, - "weight": 23.3, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Air Slash", - "Bug Bite" - ], - "charged_moves": [ - "Psybeam", - "Aerial Ace", - "Bug Buzz" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 412 - }, - "415": { - "name": "Combee", - "forms": { - "1715": { - "name": "Normal", - "proto": "COMBEE_NORMAL" - }, - "1716": { - "name": "Shadow", - "proto": "COMBEE_SHADOW" - }, - "1717": { - "name": "Purified", - "proto": "COMBEE_PURIFIED" - } - }, - "default_form_id": 1715, - "pokedex_id": 415, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug", - "Flying" - ], - "attack": 59, - "defense": 83, - "stamina": 102, - "height": 0.3, - "weight": 5.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Bug Bite" - ], - "charged_moves": [ - "Bug Buzz" - ], - "evolutions": [ - { - "pokemon": 416, - "gender_requirement": 2 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 415, - "little": true - }, - "416": { - "name": "Vespiquen", - "forms": { - "1718": { - "name": "Normal", - "proto": "VESPIQUEN_NORMAL" - }, - "1719": { - "name": "Shadow", - "proto": "VESPIQUEN_SHADOW" - }, - "1720": { - "name": "Purified", - "proto": "VESPIQUEN_PURIFIED" - } - }, - "default_form_id": 1718, - "pokedex_id": 416, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug", - "Flying" - ], - "attack": 149, - "defense": 190, - "stamina": 172, - "height": 1.2, - "weight": 38.5, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Bug Bite", - "Poison Sting", - "Fury Cutter", - "Air Slash" - ], - "charged_moves": [ - "Bug Buzz", - "Power Gem", - "X Scissor", - "Fell Stinger", - "Signal Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 415 - }, - "417": { - "name": "Pachirisu", - "forms": { - "1721": { - "name": "Normal", - "proto": "PACHIRISU_NORMAL" - }, - "1722": { - "name": "Shadow", - "proto": "PACHIRISU_SHADOW" - }, - "1723": { - "name": "Purified", - "proto": "PACHIRISU_PURIFIED" - } - }, - "default_form_id": 1721, - "pokedex_id": 417, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric" - ], - "attack": 94, - "defense": 172, - "stamina": 155, - "height": 0.4, - "weight": 3.9, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Spark", - "Volt Switch" - ], - "charged_moves": [ - "Thunder", - "Thunderbolt", - "Thunder Punch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 417 - }, - "418": { - "name": "Buizel", - "forms": { - "1724": { - "name": "Normal", - "proto": "BUIZEL_NORMAL" - }, - "1725": { - "name": "Shadow", - "proto": "BUIZEL_SHADOW" - }, - "1726": { - "name": "Purified", - "proto": "BUIZEL_PURIFIED" - } - }, - "default_form_id": 1724, - "pokedex_id": 418, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 132, - "defense": 67, - "stamina": 146, - "height": 0.7, - "weight": 29.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Quick Attack" - ], - "charged_moves": [ - "Aqua Jet", - "Water Pulse", - "Swift" - ], - "evolutions": [ - { - "pokemon": 419 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 418, - "little": true - }, - "419": { - "name": "Floatzel", - "forms": { - "1727": { - "name": "Normal", - "proto": "FLOATZEL_NORMAL" - }, - "1728": { - "name": "Shadow", - "proto": "FLOATZEL_SHADOW" - }, - "1729": { - "name": "Purified", - "proto": "FLOATZEL_PURIFIED" - } - }, - "default_form_id": 1727, - "pokedex_id": 419, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 221, - "defense": 114, - "stamina": 198, - "height": 1.1, - "weight": 33.5, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Waterfall" - ], - "charged_moves": [ - "Aqua Jet", - "Hydro Pump", - "Swift" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 418 - }, - "420": { - "name": "Cherubi", - "forms": { - "1730": { - "name": "Normal", - "proto": "CHERUBI_NORMAL" - }, - "1731": { - "name": "Shadow", - "proto": "CHERUBI_SHADOW" - }, - "1732": { - "name": "Purified", - "proto": "CHERUBI_PURIFIED" - } - }, - "default_form_id": 1730, - "pokedex_id": 420, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 108, - "defense": 92, - "stamina": 128, - "height": 0.4, - "weight": 3.3, - "flee_rate": 0.09, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bullet Seed" - ], - "charged_moves": [ - "Dazzling Gleam", - "Petal Blizzard", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 421, - "form": 94 - }, - { - "pokemon": 421, - "form": 95 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 420, - "little": true - }, - "421": { - "name": "Cherrim", - "forms": { - "94": { - "name": "Overcast", - "proto": "CHERRIM_OVERCAST" - }, - "95": { - "name": "Sunny", - "proto": "CHERRIM_SUNNY", - "charged_moves": [ - "Dazzling Gleam", - "Hyper Beam", - "Solar Beam", - "Weather Ball" - ] - }, - "1733": { - "name": "Normal", - "proto": "CHERRIM_NORMAL" - }, - "1734": { - "name": "Shadow", - "proto": "CHERRIM_SHADOW" - }, - "1735": { - "name": "Purified", - "proto": "CHERRIM_PURIFIED" - } - }, - "default_form_id": 94, - "pokedex_id": 421, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 170, - "defense": 153, - "stamina": 172, - "height": 0.5, - "weight": 9.3, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Razor Leaf", - "Bullet Seed" - ], - "charged_moves": [ - "Dazzling Gleam", - "Hyper Beam", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 420 - }, - "422": { - "name": "Shellos", - "forms": { - "96": { - "name": "West Sea", - "proto": "SHELLOS_WEST_SEA", - "evolutions": [ - { - "pokemon": 423, - "form": 98 - } - ] - }, - "97": { - "name": "East Sea", - "proto": "SHELLOS_EAST_SEA", - "evolutions": [ - { - "pokemon": 423, - "form": 99 - } - ] - }, - "1736": { - "name": "Normal", - "proto": "SHELLOS_NORMAL" - }, - "1737": { - "name": "Shadow", - "proto": "SHELLOS_SHADOW" - }, - "1738": { - "name": "Purified", - "proto": "SHELLOS_PURIFIED" - } - }, - "default_form_id": 96, - "pokedex_id": 422, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 103, - "defense": 105, - "stamina": 183, - "height": 0.3, - "weight": 6.3, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Mud Slap", - "Hidden Power" - ], - "charged_moves": [ - "Water Pulse", - "Mud Bomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 423, - "form": 99 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 422, - "little": true - }, - "423": { - "name": "Gastrodon", - "forms": { - "98": { - "name": "West Sea", - "proto": "GASTRODON_WEST_SEA" - }, - "99": { - "name": "East Sea", - "proto": "GASTRODON_EAST_SEA" - }, - "1739": { - "name": "Normal", - "proto": "GASTRODON_NORMAL" - }, - "1740": { - "name": "Shadow", - "proto": "GASTRODON_SHADOW" - }, - "1741": { - "name": "Purified", - "proto": "GASTRODON_PURIFIED" - } - }, - "default_form_id": 98, - "pokedex_id": 423, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water", - "Ground" - ], - "attack": 169, - "defense": 143, - "stamina": 244, - "height": 0.9, - "weight": 29.9, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Mud Slap", - "Hidden Power" - ], - "charged_moves": [ - "Water Pulse", - "Earth Power", - "Body Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 422 - }, - "424": { - "name": "Ambipom", - "forms": { - "1742": { - "name": "Normal", - "proto": "AMBIPOM_NORMAL" - }, - "1743": { - "name": "Shadow", - "proto": "AMBIPOM_SHADOW" - }, - "1744": { - "name": "Purified", - "proto": "AMBIPOM_PURIFIED" - } - }, - "default_form_id": 1742, - "pokedex_id": 424, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 205, - "defense": 143, - "stamina": 181, - "height": 1.2, - "weight": 20.3, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Astonish" - ], - "charged_moves": [ - "Low Sweep", - "Hyper Beam", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 190 - }, - "425": { - "name": "Drifloon", - "forms": { - "1745": { - "name": "Normal", - "proto": "DRIFLOON_NORMAL" - }, - "1746": { - "name": "Shadow", - "proto": "DRIFLOON_SHADOW" - }, - "1747": { - "name": "Purified", - "proto": "DRIFLOON_PURIFIED" - } - }, - "default_form_id": 1745, - "pokedex_id": 425, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost", - "Flying" - ], - "attack": 117, - "defense": 80, - "stamina": 207, - "height": 0.4, - "weight": 1.2, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Hex", - "Astonish" - ], - "charged_moves": [ - "Ominous Wind", - "Icy Wind", - "Shadow Ball" - ], - "evolutions": [ - { - "pokemon": 426 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 425, - "little": true - }, - "426": { - "name": "Drifblim", - "forms": { - "1748": { - "name": "Normal", - "proto": "DRIFBLIM_NORMAL" - }, - "1749": { - "name": "Shadow", - "proto": "DRIFBLIM_SHADOW" - }, - "1750": { - "name": "Purified", - "proto": "DRIFBLIM_PURIFIED" - } - }, - "default_form_id": 1748, - "pokedex_id": 426, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost", - "Flying" - ], - "attack": 180, - "defense": 102, - "stamina": 312, - "height": 1.2, - "weight": 15, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Hex", - "Astonish" - ], - "charged_moves": [ - "Ominous Wind", - "Icy Wind", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 425 - }, - "427": { - "name": "Buneary", - "forms": { - "1751": { - "name": "Normal", - "proto": "BUNEARY_NORMAL" - }, - "1752": { - "name": "Shadow", - "proto": "BUNEARY_SHADOW" - }, - "1753": { - "name": "Purified", - "proto": "BUNEARY_PURIFIED" - } - }, - "default_form_id": 1751, - "pokedex_id": 427, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 130, - "defense": 105, - "stamina": 146, - "height": 0.4, - "weight": 5.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Quick Attack" - ], - "charged_moves": [ - "Fire Punch", - "Swift" - ], - "evolutions": [ - { - "pokemon": 428 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 427, - "little": true - }, - "428": { - "name": "Lopunny", - "forms": { - "1754": { - "name": "Normal", - "proto": "LOPUNNY_NORMAL" - }, - "1755": { - "name": "Shadow", - "proto": "LOPUNNY_SHADOW" - }, - "1756": { - "name": "Purified", - "proto": "LOPUNNY_PURIFIED" - } - }, - "default_form_id": 1754, - "pokedex_id": 428, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 156, - "defense": 194, - "stamina": 163, - "height": 1.2, - "weight": 33.3, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Pound", - "Low Kick" - ], - "charged_moves": [ - "Fire Punch", - "Hyper Beam", - "Focus Blast" - ], - "temp_evolutions": { - "1": { - "attack": 282, - "defense": 214, - "stamina": 163, - "height": 1.3, - "weight": 28.3, - "types": [ - "Normal", - "Fighting" - ] - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 427 - }, - "429": { - "name": "Mismagius", - "forms": { - "722": { - "name": "Normal", - "proto": "MISMAGIUS_NORMAL" - }, - "723": { - "name": "Shadow", - "proto": "MISMAGIUS_SHADOW" - }, - "724": { - "name": "Purified", - "proto": "MISMAGIUS_PURIFIED" - } - }, - "default_form_id": 722, - "pokedex_id": 429, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost" - ], - "attack": 211, - "defense": 187, - "stamina": 155, - "height": 0.9, - "weight": 4.4, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Sucker Punch", - "Hex" - ], - "charged_moves": [ - "Shadow Ball", - "Dark Pulse", - "Dazzling Gleam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 200 - }, - "430": { - "name": "Honchkrow", - "forms": { - "858": { - "name": "Normal", - "proto": "HONCHKROW_NORMAL" - }, - "859": { - "name": "Shadow", - "proto": "HONCHKROW_SHADOW" - }, - "860": { - "name": "Purified", - "proto": "HONCHKROW_PURIFIED" - } - }, - "default_form_id": 858, - "pokedex_id": 430, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dark", - "Flying" - ], - "attack": 243, - "defense": 103, - "stamina": 225, - "height": 0.9, - "weight": 27.3, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Peck", - "Snarl" - ], - "charged_moves": [ - "Brave Bird", - "Psychic", - "Dark Pulse", - "Sky Attack" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 198 - }, - "431": { - "name": "Glameow", - "forms": { - "1757": { - "name": "Normal", - "proto": "GLAMEOW_NORMAL" - }, - "1758": { - "name": "Shadow", - "proto": "GLAMEOW_SHADOW" - }, - "1759": { - "name": "Purified", - "proto": "GLAMEOW_PURIFIED" - } - }, - "default_form_id": 1757, - "pokedex_id": 431, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 109, - "defense": 82, - "stamina": 135, - "height": 0.5, - "weight": 3.9, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Scratch", - "Quick Attack" - ], - "charged_moves": [ - "Play Rough", - "Thunderbolt", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 432 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 431, - "little": true - }, - "432": { - "name": "Purugly", - "forms": { - "1760": { - "name": "Normal", - "proto": "PURUGLY_NORMAL" - }, - "1761": { - "name": "Shadow", - "proto": "PURUGLY_SHADOW" - }, - "1762": { - "name": "Purified", - "proto": "PURUGLY_PURIFIED" - } - }, - "default_form_id": 1760, - "pokedex_id": 432, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 172, - "defense": 133, - "stamina": 174, - "height": 1, - "weight": 43.8, - "flee_rate": 0.08, - "capture_rate": 0.15, - "quick_moves": [ - "Scratch", - "Shadow Claw" - ], - "charged_moves": [ - "Play Rough", - "Thunder", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 431 - }, - "433": { - "name": "Chingling", - "forms": { - "1763": { - "name": "Normal", - "proto": "CHINGLING_NORMAL" - }, - "1764": { - "name": "Shadow", - "proto": "CHINGLING_SHADOW" - }, - "1765": { - "name": "Purified", - "proto": "CHINGLING_PURIFIED" - } - }, - "default_form_id": 1763, - "pokedex_id": 433, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic" - ], - "attack": 114, - "defense": 94, - "stamina": 128, - "height": 0.2, - "weight": 0.6, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Zen Headbutt", - "Astonish" - ], - "charged_moves": [ - "Wrap", - "Shadow Ball", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 358 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 358, - "little": true - }, - "434": { - "name": "Stunky", - "forms": { - "791": { - "name": "Normal", - "proto": "STUNKY_NORMAL", - "evolutions": [ - { - "pokemon": 435, - "form": 794 - } - ] - }, - "792": { - "name": "Shadow", - "proto": "STUNKY_SHADOW", - "evolutions": [ - { - "pokemon": 435, - "form": 795 - } - ] - }, - "793": { - "name": "Purified", - "proto": "STUNKY_PURIFIED", - "evolutions": [ - { - "pokemon": 435, - "form": 796 - } - ] - } - }, - "default_form_id": 791, - "pokedex_id": 434, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Dark" - ], - "attack": 121, - "defense": 90, - "stamina": 160, - "height": 0.4, - "weight": 19.2, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Flamethrower", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 435, - "form": 794 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 434, - "little": true - }, - "435": { - "name": "Skuntank", - "forms": { - "794": { - "name": "Normal", - "proto": "SKUNTANK_NORMAL" - }, - "795": { - "name": "Shadow", - "proto": "SKUNTANK_SHADOW" - }, - "796": { - "name": "Purified", - "proto": "SKUNTANK_PURIFIED" - } - }, - "default_form_id": 794, - "pokedex_id": 435, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Dark" - ], - "attack": 184, - "defense": 132, - "stamina": 230, - "height": 1, - "weight": 38, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Poison Jab", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Flamethrower", - "Sludge Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 434 - }, - "436": { - "name": "Bronzor", - "forms": { - "1766": { - "name": "Normal", - "proto": "BRONZOR_NORMAL" - }, - "1767": { - "name": "Shadow", - "proto": "BRONZOR_SHADOW" - }, - "1768": { - "name": "Purified", - "proto": "BRONZOR_PURIFIED" - } - }, - "default_form_id": 1766, - "pokedex_id": 436, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Steel", - "Psychic" - ], - "attack": 43, - "defense": 154, - "stamina": 149, - "height": 0.5, - "weight": 60.5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Confusion" - ], - "charged_moves": [ - "Gyro Ball", - "Psyshock", - "Heavy Slam", - "Payback" - ], - "evolutions": [ - { - "pokemon": 437 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 436, - "little": true - }, - "437": { - "name": "Bronzong", - "forms": { - "1769": { - "name": "Normal", - "proto": "BRONZONG_NORMAL" - }, - "1770": { - "name": "Shadow", - "proto": "BRONZONG_SHADOW" - }, - "1771": { - "name": "Purified", - "proto": "BRONZONG_PURIFIED" - } - }, - "default_form_id": 1769, - "pokedex_id": 437, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Steel", - "Psychic" - ], - "attack": 161, - "defense": 213, - "stamina": 167, - "height": 1.3, - "weight": 187, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Feint Attack", - "Confusion" - ], - "charged_moves": [ - "Flash Cannon", - "Psychic", - "Heavy Slam", - "Bulldoze", - "Psyshock", - "Payback" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 436 - }, - "438": { - "name": "Bonsly", - "forms": { - "1772": { - "name": "Normal", - "proto": "BONSLY_NORMAL" - }, - "1773": { - "name": "Shadow", - "proto": "BONSLY_SHADOW" - }, - "1774": { - "name": "Purified", - "proto": "BONSLY_PURIFIED" - } - }, - "default_form_id": 1772, - "pokedex_id": 438, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock" - ], - "attack": 124, - "defense": 133, - "stamina": 137, - "height": 0.5, - "weight": 15, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Rock Throw", - "Counter" - ], - "charged_moves": [ - "Rock Tomb", - "Earthquake", - "Rock Slide" - ], - "evolutions": [ - { - "pokemon": 185 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 185, - "little": true - }, - "439": { - "name": "Mime Jr", - "forms": { - "1775": { - "name": "Normal", - "proto": "MIME_JR_NORMAL" - }, - "1776": { - "name": "Shadow", - "proto": "MIME_JR_SHADOW" - }, - "1777": { - "name": "Purified", - "proto": "MIME_JR_PURIFIED" - } - }, - "default_form_id": 1775, - "pokedex_id": 439, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic", - "Fairy" - ], - "attack": 125, - "defense": 142, - "stamina": 85, - "height": 0.6, - "weight": 13, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Confusion", - "Pound" - ], - "charged_moves": [ - "Psybeam", - "Psychic", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 122 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 122, - "little": true - }, - "440": { - "name": "Happiny", - "forms": { - "1778": { - "name": "Normal", - "proto": "HAPPINY_NORMAL" - }, - "1779": { - "name": "Shadow", - "proto": "HAPPINY_SHADOW" - }, - "1780": { - "name": "Purified", - "proto": "HAPPINY_PURIFIED" - } - }, - "default_form_id": 1778, - "pokedex_id": 440, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 25, - "defense": 77, - "stamina": 225, - "height": 0.6, - "weight": 24.4, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic" - ], - "evolutions": [ - { - "pokemon": 113 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 113, - "little": true - }, - "441": { - "name": "Chatot", - "forms": { - "1781": { - "name": "Normal", - "proto": "CHATOT_NORMAL" - }, - "1782": { - "name": "Shadow", - "proto": "CHATOT_SHADOW" - }, - "1783": { - "name": "Purified", - "proto": "CHATOT_PURIFIED" - } - }, - "default_form_id": 1781, - "pokedex_id": 441, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal", - "Flying" - ], - "attack": 183, - "defense": 91, - "stamina": 183, - "height": 0.5, - "weight": 1.9, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Peck", - "Steel Wing" - ], - "charged_moves": [ - "Night Shade", - "Sky Attack", - "Heat Wave" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 441 - }, - "442": { - "name": "Spiritomb", - "forms": { - "1784": { - "name": "Normal", - "proto": "SPIRITOMB_NORMAL" - }, - "1785": { - "name": "Shadow", - "proto": "SPIRITOMB_SHADOW" - }, - "1786": { - "name": "Purified", - "proto": "SPIRITOMB_PURIFIED" - } - }, - "default_form_id": 1784, - "pokedex_id": 442, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost", - "Dark" - ], - "attack": 169, - "defense": 199, - "stamina": 137, - "height": 1, - "weight": 108, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Feint Attack", - "Sucker Punch" - ], - "charged_moves": [ - "Shadow Sneak", - "Ominous Wind", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 442 - }, - "443": { - "name": "Gible", - "forms": { - "861": { - "name": "Normal", - "proto": "GIBLE_NORMAL", - "evolutions": [ - { - "pokemon": 444, - "form": 864 - } - ] - }, - "862": { - "name": "Shadow", - "proto": "GIBLE_SHADOW", - "evolutions": [ - { - "pokemon": 444, - "form": 865 - } - ] - }, - "863": { - "name": "Purified", - "proto": "GIBLE_PURIFIED", - "evolutions": [ - { - "pokemon": 444, - "form": 866 - } - ] - } - }, - "default_form_id": 861, - "pokedex_id": 443, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dragon", - "Ground" - ], - "attack": 124, - "defense": 84, - "stamina": 151, - "height": 0.7, - "weight": 20.5, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Take Down", - "Mud Shot" - ], - "charged_moves": [ - "Dig", - "Twister", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 444, - "form": 864 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 443, - "little": true - }, - "444": { - "name": "Gabite", - "forms": { - "864": { - "name": "Normal", - "proto": "GABITE_NORMAL", - "evolutions": [ - { - "pokemon": 445, - "form": 867 - } - ] - }, - "865": { - "name": "Shadow", - "proto": "GABITE_SHADOW", - "evolutions": [ - { - "pokemon": 445, - "form": 868 - } - ] - }, - "866": { - "name": "Purified", - "proto": "GABITE_PURIFIED", - "evolutions": [ - { - "pokemon": 445, - "form": 869 - } - ] - } - }, - "default_form_id": 864, - "pokedex_id": 444, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dragon", - "Ground" - ], - "attack": 172, - "defense": 125, - "stamina": 169, - "height": 1.4, - "weight": 56, - "flee_rate": 0.06, - "capture_rate": 0.1, - "quick_moves": [ - "Take Down", - "Mud Shot" - ], - "charged_moves": [ - "Dig", - "Twister", - "Flamethrower" - ], - "evolutions": [ - { - "pokemon": 445, - "form": 867 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 443 - }, - "445": { - "name": "Garchomp", - "forms": { - "867": { - "name": "Normal", - "proto": "GARCHOMP_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "868": { - "name": "Shadow", - "proto": "GARCHOMP_SHADOW" - }, - "869": { - "name": "Purified", - "proto": "GARCHOMP_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 867, - "pokedex_id": 445, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dragon", - "Ground" - ], - "attack": 261, - "defense": 193, - "stamina": 239, - "height": 1.9, - "weight": 95, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Dragon Tail", - "Mud Shot" - ], - "charged_moves": [ - "Outrage", - "Earthquake", - "Fire Blast", - "Sand Tomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 443, - "temp_evolutions": { - "1": { - "attack": 339, - "defense": 222, - "stamina": 239, - "unreleased": true - } - } - }, - "446": { - "name": "Munchlax", - "forms": { - "1787": { - "name": "Normal", - "proto": "MUNCHLAX_NORMAL" - }, - "1788": { - "name": "Shadow", - "proto": "MUNCHLAX_SHADOW" - }, - "1789": { - "name": "Purified", - "proto": "MUNCHLAX_PURIFIED" - } - }, - "default_form_id": 1787, - "pokedex_id": 446, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 137, - "defense": 117, - "stamina": 286, - "height": 0.6, - "weight": 105, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Tackle", - "Lick" - ], - "charged_moves": [ - "Gunk Shot", - "Body Slam", - "Bulldoze" - ], - "evolutions": [ - { - "pokemon": 143 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 143, - "little": true - }, - "447": { - "name": "Riolu", - "forms": { - "1790": { - "name": "Normal", - "proto": "RIOLU_NORMAL" - }, - "1791": { - "name": "Shadow", - "proto": "RIOLU_SHADOW" - }, - "1792": { - "name": "Purified", - "proto": "RIOLU_PURIFIED" - } - }, - "default_form_id": 1790, - "pokedex_id": 447, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fighting" - ], - "attack": 127, - "defense": 78, - "stamina": 120, - "height": 0.7, - "weight": 20.2, - "flee_rate": 0.2, - "quick_moves": [ - "Counter", - "Quick Attack" - ], - "charged_moves": [ - "Brick Break", - "Low Sweep", - "Cross Chop" - ], - "evolutions": [ - { - "pokemon": 448 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 448, - "little": true - }, - "448": { - "name": "Lucario", - "forms": { - "1793": { - "name": "Normal", - "proto": "LUCARIO_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1794": { - "name": "Shadow", - "proto": "LUCARIO_SHADOW" - }, - "1795": { - "name": "Purified", - "proto": "LUCARIO_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1793, - "pokedex_id": 448, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fighting", - "Steel" - ], - "attack": 236, - "defense": 144, - "stamina": 172, - "height": 1.2, - "weight": 54, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Counter", - "Bullet Punch" - ], - "charged_moves": [ - "Flash Cannon", - "Shadow Ball", - "Close Combat", - "Power Up", - "Aura Sphere" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 448, - "temp_evolutions": { - "1": { - "attack": 310, - "defense": 175, - "stamina": 172, - "unreleased": true - } - } - }, - "449": { - "name": "Hippopotas", - "forms": { - "888": { - "name": "Normal", - "proto": "HIPPOPOTAS_NORMAL", - "evolutions": [ - { - "pokemon": 450, - "form": 891 - } - ] - }, - "889": { - "name": "Shadow", - "proto": "HIPPOPOTAS_SHADOW", - "evolutions": [ - { - "pokemon": 450, - "form": 892 - } - ] - }, - "890": { - "name": "Purified", - "proto": "HIPPOPOTAS_PURIFIED", - "evolutions": [ - { - "pokemon": 450, - "form": 893 - } - ] - } - }, - "default_form_id": 888, - "pokedex_id": 449, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ground" - ], - "attack": 124, - "defense": 118, - "stamina": 169, - "height": 0.8, - "weight": 49.5, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Bite" - ], - "charged_moves": [ - "Dig", - "Rock Tomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 450, - "form": 891 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 449, - "little": true - }, - "450": { - "name": "Hippowdon", - "forms": { - "891": { - "name": "Normal", - "proto": "HIPPOWDON_NORMAL" - }, - "892": { - "name": "Shadow", - "proto": "HIPPOWDON_SHADOW" - }, - "893": { - "name": "Purified", - "proto": "HIPPOWDON_PURIFIED" - } - }, - "default_form_id": 891, - "pokedex_id": 450, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ground" - ], - "attack": 201, - "defense": 191, - "stamina": 239, - "height": 2, - "weight": 300, - "flee_rate": 0.08, - "capture_rate": 0.15, - "quick_moves": [ - "Fire Fang", - "Bite", - "Thunder Fang", - "Ice Fang" - ], - "charged_moves": [ - "Earthquake", - "Stone Edge", - "Body Slam", - "Earth Power", - "Weather Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 449 - }, - "451": { - "name": "Skorupi", - "forms": { - "1796": { - "name": "Normal", - "proto": "SKORUPI_NORMAL", - "evolutions": [ - { - "pokemon": 452, - "form": 1799 - } - ] - }, - "1797": { - "name": "Shadow", - "proto": "SKORUPI_SHADOW", - "evolutions": [ - { - "pokemon": 452, - "form": 1800 - } - ] - }, - "1798": { - "name": "Purified", - "proto": "SKORUPI_PURIFIED", - "evolutions": [ - { - "pokemon": 452, - "form": 1801 - } - ] - } - }, - "default_form_id": 1796, - "pokedex_id": 451, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Bug" - ], - "attack": 93, - "defense": 151, - "stamina": 120, - "height": 0.8, - "weight": 12, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Poison Sting", - "Infestation" - ], - "charged_moves": [ - "Cross Poison", - "Aqua Tail", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 452, - "form": 1799 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 451, - "little": true - }, - "452": { - "name": "Drapion", - "forms": { - "1799": { - "name": "Normal", - "proto": "DRAPION_NORMAL" - }, - "1800": { - "name": "Shadow", - "proto": "DRAPION_SHADOW" - }, - "1801": { - "name": "Purified", - "proto": "DRAPION_PURIFIED" - } - }, - "default_form_id": 1799, - "pokedex_id": 452, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Dark" - ], - "attack": 180, - "defense": 202, - "stamina": 172, - "height": 1.3, - "weight": 61.5, - "flee_rate": 0.08, - "capture_rate": 0.15, - "quick_moves": [ - "Poison Sting", - "Infestation", - "Bite", - "Ice Fang" - ], - "charged_moves": [ - "Crunch", - "Aqua Tail", - "Sludge Bomb", - "Fell Stinger" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 451 - }, - "453": { - "name": "Croagunk", - "forms": { - "1802": { - "name": "Normal", - "proto": "CROAGUNK_NORMAL" - }, - "1803": { - "name": "Shadow", - "proto": "CROAGUNK_SHADOW" - }, - "1804": { - "name": "Purified", - "proto": "CROAGUNK_PURIFIED" - } - }, - "default_form_id": 1802, - "pokedex_id": 453, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Fighting" - ], - "attack": 116, - "defense": 76, - "stamina": 134, - "height": 0.7, - "weight": 23, - "flee_rate": 0.12, - "capture_rate": 0.4, - "quick_moves": [ - "Poison Sting", - "Poison Jab" - ], - "charged_moves": [ - "Brick Break", - "Low Sweep", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 454 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 453, - "little": true - }, - "454": { - "name": "Toxicroak", - "forms": { - "1805": { - "name": "Normal", - "proto": "TOXICROAK_NORMAL" - }, - "1806": { - "name": "Shadow", - "proto": "TOXICROAK_SHADOW" - }, - "1807": { - "name": "Purified", - "proto": "TOXICROAK_PURIFIED" - } - }, - "default_form_id": 1805, - "pokedex_id": 454, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Poison", - "Fighting" - ], - "attack": 211, - "defense": 133, - "stamina": 195, - "height": 1.3, - "weight": 44.4, - "flee_rate": 0.07, - "capture_rate": 0.15, - "quick_moves": [ - "Poison Jab", - "Counter" - ], - "charged_moves": [ - "Dynamic Punch", - "Mud Bomb", - "Sludge Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 453 - }, - "455": { - "name": "Carnivine", - "forms": { - "1808": { - "name": "Normal", - "proto": "CARNIVINE_NORMAL" - }, - "1809": { - "name": "Shadow", - "proto": "CARNIVINE_SHADOW" - }, - "1810": { - "name": "Purified", - "proto": "CARNIVINE_PURIFIED" - } - }, - "default_form_id": 1808, - "pokedex_id": 455, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 187, - "defense": 136, - "stamina": 179, - "height": 1.4, - "weight": 27, - "flee_rate": 0.01, - "capture_rate": 0.9, - "quick_moves": [ - "Bite", - "Vine Whip" - ], - "charged_moves": [ - "Power Whip", - "Energy Ball", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 455 - }, - "456": { - "name": "Finneon", - "forms": { - "1811": { - "name": "Normal", - "proto": "FINNEON_NORMAL" - }, - "1812": { - "name": "Shadow", - "proto": "FINNEON_SHADOW" - }, - "1813": { - "name": "Purified", - "proto": "FINNEON_PURIFIED" - } - }, - "default_form_id": 1811, - "pokedex_id": 456, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 96, - "defense": 116, - "stamina": 135, - "height": 0.4, - "weight": 7, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Water Gun" - ], - "charged_moves": [ - "Water Pulse", - "Ice Beam", - "Silver Wind" - ], - "evolutions": [ - { - "pokemon": 457 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 456, - "little": true - }, - "457": { - "name": "Lumineon", - "forms": { - "1814": { - "name": "Normal", - "proto": "LUMINEON_NORMAL" - }, - "1815": { - "name": "Shadow", - "proto": "LUMINEON_SHADOW" - }, - "1816": { - "name": "Purified", - "proto": "LUMINEON_PURIFIED" - } - }, - "default_form_id": 1814, - "pokedex_id": 457, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 142, - "defense": 170, - "stamina": 170, - "height": 1.2, - "weight": 24, - "flee_rate": 0.06, - "capture_rate": 0.2, - "quick_moves": [ - "Waterfall", - "Water Gun" - ], - "charged_moves": [ - "Water Pulse", - "Blizzard", - "Silver Wind" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 456 - }, - "458": { - "name": "Mantyke", - "forms": { - "1817": { - "name": "Normal", - "proto": "MANTYKE_NORMAL" - }, - "1818": { - "name": "Shadow", - "proto": "MANTYKE_SHADOW" - }, - "1819": { - "name": "Purified", - "proto": "MANTYKE_PURIFIED" - } - }, - "default_form_id": 1817, - "pokedex_id": 458, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water", - "Flying" - ], - "attack": 105, - "defense": 179, - "stamina": 128, - "height": 1, - "weight": 65, - "flee_rate": 0.04, - "capture_rate": 0.1, - "quick_moves": [ - "Bubble", - "Tackle" - ], - "charged_moves": [ - "Water Pulse", - "Ice Beam", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 226 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 226, - "little": true - }, - "459": { - "name": "Snover", - "forms": { - "932": { - "name": "Normal", - "proto": "SNOVER_NORMAL", - "evolutions": [ - { - "pokemon": 460, - "form": 935 - } - ] - }, - "933": { - "name": "Shadow", - "proto": "SNOVER_SHADOW", - "evolutions": [ - { - "pokemon": 460, - "form": 936 - } - ] - }, - "934": { - "name": "Purified", - "proto": "SNOVER_PURIFIED", - "evolutions": [ - { - "pokemon": 460, - "form": 937 - } - ] - } - }, - "default_form_id": 932, - "pokedex_id": 459, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass", - "Ice" - ], - "attack": 115, - "defense": 105, - "stamina": 155, - "height": 1, - "weight": 50.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Powder Snow", - "Ice Shard" - ], - "charged_moves": [ - "Ice Beam", - "Energy Ball", - "Stomp" - ], - "evolutions": [ - { - "pokemon": 460, - "form": 935 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 459, - "little": true - }, - "460": { - "name": "Abomasnow", - "forms": { - "935": { - "name": "Normal", - "proto": "ABOMASNOW_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "936": { - "name": "Shadow", - "proto": "ABOMASNOW_SHADOW" - }, - "937": { - "name": "Purified", - "proto": "ABOMASNOW_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 935, - "pokedex_id": 460, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass", - "Ice" - ], - "attack": 178, - "defense": 158, - "stamina": 207, - "height": 2.2, - "weight": 135.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Powder Snow", - "Razor Leaf" - ], - "charged_moves": [ - "Blizzard", - "Energy Ball", - "Outrage", - "Weather Ball" - ], - "temp_evolutions": { - "1": { - "attack": 240, - "defense": 191, - "stamina": 207, - "height": 2.7, - "weight": 185 - } - }, - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 459 - }, - "461": { - "name": "Weavile", - "forms": { - "800": { - "name": "Normal", - "proto": "WEAVILE_NORMAL" - }, - "801": { - "name": "Shadow", - "proto": "WEAVILE_SHADOW" - }, - "802": { - "name": "Purified", - "proto": "WEAVILE_PURIFIED" - } - }, - "default_form_id": 800, - "pokedex_id": 461, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dark", - "Ice" - ], - "attack": 243, - "defense": 171, - "stamina": 172, - "height": 1.1, - "weight": 34, - "flee_rate": 0.09, - "capture_rate": 0.15, - "quick_moves": [ - "Ice Shard", - "Feint Attack", - "Snarl" - ], - "charged_moves": [ - "Avalanche", - "Focus Blast", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 215 - }, - "462": { - "name": "Magnezone", - "forms": { - "661": { - "name": "Normal", - "proto": "MAGNEZONE_NORMAL" - }, - "662": { - "name": "Shadow", - "proto": "MAGNEZONE_SHADOW" - }, - "663": { - "name": "Purified", - "proto": "MAGNEZONE_PURIFIED" - } - }, - "default_form_id": 661, - "pokedex_id": 462, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric", - "Steel" - ], - "attack": 238, - "defense": 205, - "stamina": 172, - "height": 1.2, - "weight": 180, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Spark", - "Charge Beam" - ], - "charged_moves": [ - "Zap Cannon", - "Wild Charge", - "Flash Cannon", - "Mirror Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 81 - }, - "463": { - "name": "Lickilicky", - "forms": { - "1820": { - "name": "Normal", - "proto": "LICKILICKY_NORMAL" - }, - "1821": { - "name": "Shadow", - "proto": "LICKILICKY_SHADOW" - }, - "1822": { - "name": "Purified", - "proto": "LICKILICKY_PURIFIED" - } - }, - "default_form_id": 1820, - "pokedex_id": 463, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 161, - "defense": 181, - "stamina": 242, - "height": 1.7, - "weight": 140, - "flee_rate": 0.09, - "capture_rate": 0.15, - "quick_moves": [ - "Lick", - "Zen Headbutt" - ], - "charged_moves": [ - "Hyper Beam", - "Earthquake", - "Solar Beam", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 108 - }, - "464": { - "name": "Rhyperior", - "forms": { - "852": { - "name": "Normal", - "proto": "RHYPERIOR_NORMAL" - }, - "853": { - "name": "Shadow", - "proto": "RHYPERIOR_SHADOW" - }, - "854": { - "name": "Purified", - "proto": "RHYPERIOR_PURIFIED" - } - }, - "default_form_id": 852, - "pokedex_id": 464, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ground", - "Rock" - ], - "attack": 241, - "defense": 190, - "stamina": 251, - "height": 2.4, - "weight": 282.8, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Mud Slap", - "Smack Down" - ], - "charged_moves": [ - "Surf", - "Earthquake", - "Stone Edge", - "Skull Bash", - "Super Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 111 - }, - "465": { - "name": "Tangrowth", - "forms": { - "1823": { - "name": "Normal", - "proto": "TANGROWTH_NORMAL" - }, - "1824": { - "name": "Shadow", - "proto": "TANGROWTH_SHADOW" - }, - "1825": { - "name": "Purified", - "proto": "TANGROWTH_PURIFIED" - } - }, - "default_form_id": 1823, - "pokedex_id": 465, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 207, - "defense": 184, - "stamina": 225, - "height": 2, - "weight": 128.6, - "flee_rate": 0.1, - "capture_rate": 0.15, - "quick_moves": [ - "Vine Whip", - "Infestation" - ], - "charged_moves": [ - "Ancient Power", - "Sludge Bomb", - "Solar Beam", - "Power Whip", - "Rock Slide" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 114 - }, - "466": { - "name": "Electivire", - "forms": { - "643": { - "name": "Normal", - "proto": "ELECTIVIRE_NORMAL" - }, - "644": { - "name": "Shadow", - "proto": "ELECTIVIRE_SHADOW" - }, - "645": { - "name": "Purified", - "proto": "ELECTIVIRE_PURIFIED" - } - }, - "default_form_id": 643, - "pokedex_id": 466, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric" - ], - "attack": 249, - "defense": 163, - "stamina": 181, - "height": 1.8, - "weight": 138.6, - "flee_rate": 0.1, - "capture_rate": 0.15, - "quick_moves": [ - "Thunder Shock", - "Low Kick" - ], - "charged_moves": [ - "Thunder Punch", - "Wild Charge", - "Thunder", - "Ice Punch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 125 - }, - "467": { - "name": "Magmortar", - "forms": { - "637": { - "name": "Normal", - "proto": "MAGMORTAR_NORMAL" - }, - "638": { - "name": "Shadow", - "proto": "MAGMORTAR_SHADOW" - }, - "639": { - "name": "Purified", - "proto": "MAGMORTAR_PURIFIED" - } - }, - "default_form_id": 637, - "pokedex_id": 467, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fire" - ], - "attack": 247, - "defense": 172, - "stamina": 181, - "height": 1.6, - "weight": 68, - "flee_rate": 0.1, - "capture_rate": 0.15, - "quick_moves": [ - "Fire Spin", - "Karate Chop" - ], - "charged_moves": [ - "Brick Break", - "Fire Punch", - "Fire Blast", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 126 - }, - "468": { - "name": "Togekiss", - "forms": { - "1826": { - "name": "Normal", - "proto": "TOGEKISS_NORMAL" - }, - "1827": { - "name": "Shadow", - "proto": "TOGEKISS_SHADOW" - }, - "1828": { - "name": "Purified", - "proto": "TOGEKISS_PURIFIED" - } - }, - "default_form_id": 1826, - "pokedex_id": 468, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fairy", - "Flying" - ], - "attack": 225, - "defense": 217, - "stamina": 198, - "height": 1.5, - "weight": 38, - "flee_rate": 0.05, - "capture_rate": 0.01, - "quick_moves": [ - "Air Slash", - "Hidden Power", - "Charm" - ], - "charged_moves": [ - "Ancient Power", - "Dazzling Gleam", - "Aerial Ace", - "Flamethrower" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 175 - }, - "469": { - "name": "Yanmega", - "forms": { - "1829": { - "name": "Normal", - "proto": "YANMEGA_NORMAL" - }, - "1830": { - "name": "Shadow", - "proto": "YANMEGA_SHADOW" - }, - "1831": { - "name": "Purified", - "proto": "YANMEGA_PURIFIED" - } - }, - "default_form_id": 1829, - "pokedex_id": 469, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Bug", - "Flying" - ], - "attack": 231, - "defense": 156, - "stamina": 200, - "height": 1.9, - "weight": 51.5, - "flee_rate": 0.05, - "capture_rate": 0.175, - "quick_moves": [ - "Bug Bite", - "Wing Attack" - ], - "charged_moves": [ - "Ancient Power", - "Aerial Ace", - "Bug Buzz" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 193 - }, - "470": { - "name": "Leafeon", - "forms": { - "1832": { - "name": "Normal", - "proto": "LEAFEON_NORMAL" - }, - "1833": { - "name": "Shadow", - "proto": "LEAFEON_SHADOW" - }, - "1834": { - "name": "Purified", - "proto": "LEAFEON_PURIFIED" - } - }, - "default_form_id": 1832, - "pokedex_id": 470, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 216, - "defense": 219, - "stamina": 163, - "height": 1, - "weight": 25.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Razor Leaf", - "Quick Attack" - ], - "charged_moves": [ - "Solar Beam", - "Leaf Blade", - "Energy Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 133 - }, - "471": { - "name": "Glaceon", - "forms": { - "1835": { - "name": "Normal", - "proto": "GLACEON_NORMAL" - }, - "1836": { - "name": "Shadow", - "proto": "GLACEON_SHADOW" - }, - "1837": { - "name": "Purified", - "proto": "GLACEON_PURIFIED" - } - }, - "default_form_id": 1835, - "pokedex_id": 471, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ice" - ], - "attack": 238, - "defense": 205, - "stamina": 163, - "height": 0.8, - "weight": 25.9, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Ice Shard", - "Frost Breath" - ], - "charged_moves": [ - "Avalanche", - "Icy Wind", - "Ice Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 133 - }, - "472": { - "name": "Gliscor", - "forms": { - "806": { - "name": "Normal", - "proto": "GLISCOR_NORMAL" - }, - "807": { - "name": "Shadow", - "proto": "GLISCOR_SHADOW" - }, - "808": { - "name": "Purified", - "proto": "GLISCOR_PURIFIED" - } - }, - "default_form_id": 806, - "pokedex_id": 472, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ground", - "Flying" - ], - "attack": 185, - "defense": 222, - "stamina": 181, - "height": 2, - "weight": 42.5, - "flee_rate": 0.09, - "capture_rate": 0.125, - "quick_moves": [ - "Fury Cutter", - "Wing Attack" - ], - "charged_moves": [ - "Earthquake", - "Aerial Ace", - "Night Slash", - "Sand Tomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 207 - }, - "473": { - "name": "Mamoswine", - "forms": { - "1838": { - "name": "Normal", - "proto": "MAMOSWINE_NORMAL" - }, - "1839": { - "name": "Shadow", - "proto": "MAMOSWINE_SHADOW" - }, - "1840": { - "name": "Purified", - "proto": "MAMOSWINE_PURIFIED" - } - }, - "default_form_id": 1838, - "pokedex_id": 473, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ice", - "Ground" - ], - "attack": 247, - "defense": 146, - "stamina": 242, - "height": 2.5, - "weight": 291, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Mud Slap", - "Powder Snow" - ], - "charged_moves": [ - "Avalanche", - "Bulldoze", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 220 - }, - "474": { - "name": "Porygon Z", - "forms": { - "683": { - "name": "Normal", - "proto": "PORYGON_Z_NORMAL" - }, - "684": { - "name": "Shadow", - "proto": "PORYGON_Z_SHADOW" - }, - "685": { - "name": "Purified", - "proto": "PORYGON_Z_PURIFIED" - } - }, - "default_form_id": 683, - "pokedex_id": 474, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 264, - "defense": 150, - "stamina": 198, - "height": 0.9, - "weight": 34, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Hidden Power", - "Charge Beam", - "Lock On" - ], - "charged_moves": [ - "Solar Beam", - "Hyper Beam", - "Zap Cannon", - "Blizzard" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 137 - }, - "475": { - "name": "Gallade", - "forms": { - "301": { - "name": "Normal", - "proto": "GALLADE_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "302": { - "name": "Shadow", - "proto": "GALLADE_SHADOW" - }, - "303": { - "name": "Purified", - "proto": "GALLADE_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 301, - "pokedex_id": 475, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic", - "Fighting" - ], - "attack": 237, - "defense": 195, - "stamina": 169, - "height": 1.6, - "weight": 52, - "flee_rate": 0.05, - "capture_rate": 0.5, - "quick_moves": [ - "Confusion", - "Low Kick", - "Charm" - ], - "charged_moves": [ - "Close Combat", - "Psychic", - "Leaf Blade" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 280, - "temp_evolutions": { - "1": { - "attack": 326, - "defense": 230, - "stamina": 169, - "unreleased": true - } - } - }, - "476": { - "name": "Probopass", - "forms": { - "1841": { - "name": "Normal", - "proto": "PROBOPASS_NORMAL" - }, - "1842": { - "name": "Shadow", - "proto": "PROBOPASS_SHADOW" - }, - "1843": { - "name": "Purified", - "proto": "PROBOPASS_PURIFIED" - } - }, - "default_form_id": 1841, - "pokedex_id": 476, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Rock", - "Steel" - ], - "attack": 135, - "defense": 275, - "stamina": 155, - "height": 1.4, - "weight": 340, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Rock Throw", - "Spark" - ], - "charged_moves": [ - "Magnet Bomb", - "Rock Slide", - "Thunderbolt" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 299 - }, - "477": { - "name": "Dusknoir", - "forms": { - "920": { - "name": "Normal", - "proto": "DUSKNOIR_NORMAL" - }, - "921": { - "name": "Shadow", - "proto": "DUSKNOIR_SHADOW" - }, - "922": { - "name": "Purified", - "proto": "DUSKNOIR_PURIFIED" - } - }, - "default_form_id": 920, - "pokedex_id": 477, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost" - ], - "attack": 180, - "defense": 254, - "stamina": 128, - "height": 2.2, - "weight": 106.6, - "flee_rate": 0.05, - "capture_rate": 0.1, - "quick_moves": [ - "Hex", - "Astonish" - ], - "charged_moves": [ - "Ominous Wind", - "Psychic", - "Dark Pulse" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 355 - }, - "478": { - "name": "Froslass", - "forms": { - "1844": { - "name": "Normal", - "proto": "FROSLASS_NORMAL" - }, - "1845": { - "name": "Shadow", - "proto": "FROSLASS_SHADOW" - }, - "1846": { - "name": "Purified", - "proto": "FROSLASS_PURIFIED" - } - }, - "default_form_id": 1844, - "pokedex_id": 478, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ice", - "Ghost" - ], - "attack": 171, - "defense": 150, - "stamina": 172, - "height": 1.3, - "weight": 26.6, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Powder Snow", - "Hex" - ], - "charged_moves": [ - "Avalanche", - "Crunch", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 361 - }, - "479": { - "name": "Rotom", - "forms": { - "81": { - "name": "Normal", - "proto": "ROTOM_NORMAL" - }, - "82": { - "name": "Frost", - "proto": "ROTOM_FROST", - "attack": 204, - "defense": 219, - "stamina": 137, - "charged_moves": [ - "Blizzard", - "Thunderbolt", - "Thunder" - ], - "types": [ - "Electric", - "Ice" - ] - }, - "83": { - "name": "Fan", - "proto": "ROTOM_FAN", - "attack": 204, - "defense": 219, - "stamina": 137, - "quick_moves": [ - "Astonish", - "Air Slash" - ], - "types": [ - "Electric", - "Flying" - ] - }, - "84": { - "name": "Mow", - "proto": "ROTOM_MOW", - "attack": 204, - "defense": 219, - "stamina": 137, - "types": [ - "Electric", - "Grass" - ] - }, - "85": { - "name": "Wash", - "proto": "ROTOM_WASH", - "attack": 204, - "defense": 219, - "stamina": 137, - "charged_moves": [ - "Hydro Pump", - "Thunderbolt", - "Thunder" - ], - "types": [ - "Electric", - "Water" - ] - }, - "86": { - "name": "Heat", - "proto": "ROTOM_HEAT", - "attack": 204, - "defense": 219, - "stamina": 137, - "charged_moves": [ - "Overheat", - "Thunderbolt", - "Thunder" - ], - "types": [ - "Electric", - "Fire" - ] - } - }, - "default_form_id": 81, - "pokedex_id": 479, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Electric", - "Ghost" - ], - "attack": 185, - "defense": 159, - "stamina": 137, - "height": 0.3, - "weight": 0.3, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Thunder Shock" - ], - "charged_moves": [ - "Ominous Wind", - "Thunderbolt", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 479 - }, - "480": { - "name": "Uxie", - "forms": { - "1847": { - "name": "Normal", - "proto": "UXIE_NORMAL" - }, - "1848": { - "name": "Shadow", - "proto": "UXIE_SHADOW" - }, - "1849": { - "name": "Purified", - "proto": "UXIE_PURIFIED" - } - }, - "default_form_id": 1847, - "pokedex_id": 480, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic" - ], - "attack": 156, - "defense": 270, - "stamina": 181, - "height": 0.3, - "weight": 0.3, - "capture_rate": 0.02, - "quick_moves": [ - "Confusion", - "Extrasensory" - ], - "charged_moves": [ - "Futuresight", - "Swift", - "Thunder" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 480 - }, - "481": { - "name": "Mesprit", - "forms": { - "1850": { - "name": "Normal", - "proto": "MESPRIT_NORMAL" - }, - "1851": { - "name": "Shadow", - "proto": "MESPRIT_SHADOW" - }, - "1852": { - "name": "Purified", - "proto": "MESPRIT_PURIFIED" - } - }, - "default_form_id": 1850, - "pokedex_id": 481, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic" - ], - "attack": 212, - "defense": 212, - "stamina": 190, - "height": 0.3, - "weight": 0.3, - "capture_rate": 0.02, - "quick_moves": [ - "Confusion", - "Extrasensory" - ], - "charged_moves": [ - "Futuresight", - "Swift", - "Blizzard" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 481 - }, - "482": { - "name": "Azelf", - "forms": { - "1853": { - "name": "Normal", - "proto": "AZELF_NORMAL" - }, - "1854": { - "name": "Shadow", - "proto": "AZELF_SHADOW" - }, - "1855": { - "name": "Purified", - "proto": "AZELF_PURIFIED" - } - }, - "default_form_id": 1853, - "pokedex_id": 482, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic" - ], - "attack": 270, - "defense": 151, - "stamina": 181, - "height": 0.3, - "weight": 0.3, - "capture_rate": 0.02, - "quick_moves": [ - "Confusion", - "Extrasensory" - ], - "charged_moves": [ - "Futuresight", - "Swift", - "Fire Blast" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 482 - }, - "483": { - "name": "Dialga", - "forms": { - "1856": { - "name": "Normal", - "proto": "DIALGA_NORMAL" - }, - "1857": { - "name": "Shadow", - "proto": "DIALGA_SHADOW" - }, - "1858": { - "name": "Purified", - "proto": "DIALGA_PURIFIED" - } - }, - "default_form_id": 1856, - "pokedex_id": 483, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Steel", - "Dragon" - ], - "attack": 275, - "defense": 211, - "stamina": 205, - "height": 5.4, - "weight": 683, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Metal Claw" - ], - "charged_moves": [ - "Draco Meteor", - "Iron Head", - "Thunder" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 483 - }, - "484": { - "name": "Palkia", - "forms": { - "1859": { - "name": "Normal", - "proto": "PALKIA_NORMAL" - }, - "1860": { - "name": "Shadow", - "proto": "PALKIA_SHADOW" - }, - "1861": { - "name": "Purified", - "proto": "PALKIA_PURIFIED" - } - }, - "default_form_id": 1859, - "pokedex_id": 484, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water", - "Dragon" - ], - "attack": 280, - "defense": 215, - "stamina": 189, - "height": 4.2, - "weight": 336, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Dragon Tail" - ], - "charged_moves": [ - "Draco Meteor", - "Fire Blast", - "Hydro Pump", - "Aqua Tail" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 484 - }, - "485": { - "name": "Heatran", - "forms": { - "1862": { - "name": "Normal", - "proto": "HEATRAN_NORMAL" - }, - "1863": { - "name": "Shadow", - "proto": "HEATRAN_SHADOW" - }, - "1864": { - "name": "Purified", - "proto": "HEATRAN_PURIFIED" - } - }, - "default_form_id": 1862, - "pokedex_id": 485, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Fire", - "Steel" - ], - "attack": 251, - "defense": 213, - "stamina": 209, - "height": 1.7, - "weight": 430, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Fire Spin", - "Bug Bite" - ], - "charged_moves": [ - "Fire Blast", - "Iron Head", - "Stone Edge", - "Flamethrower" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 485 - }, - "486": { - "name": "Regigigas", - "forms": { - "1865": { - "name": "Normal", - "proto": "REGIGIGAS_NORMAL" - }, - "1866": { - "name": "Shadow", - "proto": "REGIGIGAS_SHADOW" - }, - "1867": { - "name": "Purified", - "proto": "REGIGIGAS_PURIFIED" - } - }, - "default_form_id": 1865, - "pokedex_id": 486, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 287, - "defense": 210, - "stamina": 221, - "height": 3.7, - "weight": 420, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Zen Headbutt", - "Hidden Power" - ], - "charged_moves": [ - "Giga Impact", - "Focus Blast", - "Thunder" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 486 - }, - "487": { - "name": "Giratina", - "forms": { - "90": { - "name": "Altered", - "proto": "GIRATINA_ALTERED" - }, - "91": { - "name": "Origin", - "proto": "GIRATINA_ORIGIN", - "attack": 225, - "defense": 187, - "stamina": 284, - "height": 6.9, - "weight": 650, - "quick_moves": [ - "Dragon Tail", - "Shadow Claw" - ], - "charged_moves": [ - "Dragon Pulse", - "Ominous Wind", - "Shadow Ball" - ] - }, - "1868": { - "name": "Normal", - "proto": "GIRATINA_NORMAL" - }, - "1869": { - "name": "Shadow", - "proto": "GIRATINA_SHADOW" - }, - "1870": { - "name": "Purified", - "proto": "GIRATINA_PURIFIED" - } - }, - "default_form_id": 90, - "pokedex_id": 487, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Ghost", - "Dragon" - ], - "attack": 187, - "defense": 225, - "stamina": 284, - "height": 4.5, - "weight": 750, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Shadow Claw" - ], - "charged_moves": [ - "Dragon Claw", - "Ancient Power", - "Shadow Sneak" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 487 - }, - "488": { - "name": "Cresselia", - "forms": { - "1871": { - "name": "Normal", - "proto": "CRESSELIA_NORMAL" - }, - "1872": { - "name": "Shadow", - "proto": "CRESSELIA_SHADOW" - }, - "1873": { - "name": "Purified", - "proto": "CRESSELIA_PURIFIED" - } - }, - "default_form_id": 1871, - "pokedex_id": 488, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic" - ], - "attack": 152, - "defense": 258, - "stamina": 260, - "height": 1.5, - "weight": 85.6, - "flee_rate": 0.04, - "capture_rate": 0.02, - "quick_moves": [ - "Psycho Cut", - "Confusion" - ], - "charged_moves": [ - "Aurora Beam", - "Moonblast", - "Futuresight" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 488 - }, - "489": { - "name": "Phione", - "forms": { - "1874": { - "name": "Normal", - "proto": "PHIONE_NORMAL" - }, - "1875": { - "name": "Shadow", - "proto": "PHIONE_SHADOW" - }, - "1876": { - "name": "Purified", - "proto": "PHIONE_PURIFIED" - } - }, - "default_form_id": 1874, - "pokedex_id": 489, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 162, - "defense": 162, - "stamina": 190, - "height": 0.4, - "weight": 3.1, - "capture_rate": 0.02, - "quick_moves": [ - "Waterfall", - "Bubble" - ], - "charged_moves": [ - "Bubble Beam", - "Water Pulse", - "Surf" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 489 - }, - "490": { - "name": "Manaphy", - "forms": { - "1877": { - "name": "Normal", - "proto": "MANAPHY_NORMAL" - }, - "1878": { - "name": "Shadow", - "proto": "MANAPHY_SHADOW" - }, - "1879": { - "name": "Purified", - "proto": "MANAPHY_PURIFIED" - } - }, - "default_form_id": 1877, - "pokedex_id": 490, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Water" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.3, - "weight": 1.4, - "capture_rate": 0.02, - "quick_moves": [ - "Waterfall", - "Bubble" - ], - "charged_moves": [ - "Bubble Beam", - "Psychic", - "Surf" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 490 - }, - "491": { - "name": "Darkrai", - "forms": { - "1880": { - "name": "Normal", - "proto": "DARKRAI_NORMAL" - }, - "1881": { - "name": "Shadow", - "proto": "DARKRAI_SHADOW" - }, - "1882": { - "name": "Purified", - "proto": "DARKRAI_PURIFIED" - } - }, - "default_form_id": 1880, - "pokedex_id": 491, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Dark" - ], - "attack": 285, - "defense": 198, - "stamina": 172, - "height": 1.5, - "weight": 50.5, - "capture_rate": 0.02, - "quick_moves": [ - "Snarl", - "Feint Attack" - ], - "charged_moves": [ - "Focus Blast", - "Shadow Ball", - "Dark Pulse" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 491 - }, - "492": { - "name": "Shaymin", - "forms": { - "92": { - "name": "Sky", - "proto": "SHAYMIN_SKY", - "attack": 261, - "defense": 166, - "stamina": 225, - "height": 0.4, - "weight": 5.2, - "types": [ - "Grass", - "Flying" - ] - }, - "93": { - "name": "Land", - "proto": "SHAYMIN_LAND" - }, - "1883": { - "name": "Normal", - "proto": "SHAYMIN_NORMAL" - }, - "1884": { - "name": "Shadow", - "proto": "SHAYMIN_SHADOW" - }, - "1885": { - "name": "Purified", - "proto": "SHAYMIN_PURIFIED" - } - }, - "default_form_id": 93, - "pokedex_id": 492, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Grass" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.2, - "weight": 2.1, - "capture_rate": 0.02, - "quick_moves": [ - "Hidden Power", - "Zen Headbutt" - ], - "charged_moves": [ - "Energy Ball", - "Grass Knot", - "Solar Beam" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 492 - }, - "493": { - "name": "Arceus", - "forms": { - "100": { - "name": "Normal", - "proto": "ARCEUS_NORMAL" - }, - "101": { - "name": "Fighting", - "proto": "ARCEUS_FIGHTING", - "types": [ - "Fighting" - ] - }, - "102": { - "name": "Flying", - "proto": "ARCEUS_FLYING", - "types": [ - "Flying" - ] - }, - "103": { - "name": "Poison", - "proto": "ARCEUS_POISON", - "types": [ - "Poison" - ] - }, - "104": { - "name": "Ground", - "proto": "ARCEUS_GROUND", - "types": [ - "Ground" - ] - }, - "105": { - "name": "Rock", - "proto": "ARCEUS_ROCK", - "types": [ - "Rock" - ] - }, - "106": { - "name": "Bug", - "proto": "ARCEUS_BUG", - "types": [ - "Bug" - ] - }, - "107": { - "name": "Ghost", - "proto": "ARCEUS_GHOST", - "types": [ - "Ghost" - ] - }, - "108": { - "name": "Steel", - "proto": "ARCEUS_STEEL", - "types": [ - "Steel" - ] - }, - "109": { - "name": "Fire", - "proto": "ARCEUS_FIRE", - "types": [ - "Fire" - ] - }, - "110": { - "name": "Water", - "proto": "ARCEUS_WATER", - "types": [ - "Water" - ] - }, - "111": { - "name": "Grass", - "proto": "ARCEUS_GRASS", - "types": [ - "Grass" - ] - }, - "112": { - "name": "Electric", - "proto": "ARCEUS_ELECTRIC", - "types": [ - "Electric" - ] - }, - "113": { - "name": "Psychic", - "proto": "ARCEUS_PSYCHIC", - "types": [ - "Psychic" - ] - }, - "114": { - "name": "Ice", - "proto": "ARCEUS_ICE", - "types": [ - "Ice" - ] - }, - "115": { - "name": "Dragon", - "proto": "ARCEUS_DRAGON", - "types": [ - "Dragon" - ] - }, - "116": { - "name": "Dark", - "proto": "ARCEUS_DARK", - "types": [ - "Dark" - ] - }, - "117": { - "name": "Fairy", - "proto": "ARCEUS_FAIRY", - "types": [ - "Fairy" - ] - } - }, - "default_form_id": 100, - "pokedex_id": 493, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Normal" - ], - "attack": 238, - "defense": 238, - "stamina": 237, - "height": 3.2, - "weight": 320, - "capture_rate": 0.02, - "quick_moves": [ - "Iron Tail", - "Shadow Claw" - ], - "charged_moves": [ - "Futuresight", - "Hyper Beam", - "Outrage" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 493 - }, - "494": { - "name": "Victini", - "forms": { - "1886": { - "name": "Normal", - "proto": "VICTINI_NORMAL" - }, - "1887": { - "name": "Shadow", - "proto": "VICTINI_SHADOW" - }, - "1888": { - "name": "Purified", - "proto": "VICTINI_PURIFIED" - } - }, - "default_form_id": 1886, - "pokedex_id": 494, - "genId": "4", - "generation": "Sinnoh", - "types": [ - "Psychic", - "Fire" - ], - "attack": 210, - "defense": 210, - "stamina": 225, - "height": 0.4, - "weight": 4, - "capture_rate": 100, - "quick_moves": [ - "Confusion", - "Quick Attack" - ], - "charged_moves": [ - "Overheat", - "Focus Blast", - "Psychic", - "V Create" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 494 - }, - "495": { - "name": "Snivy", - "forms": { - "1889": { - "name": "Normal", - "proto": "SNIVY_NORMAL" - }, - "1890": { - "name": "Shadow", - "proto": "SNIVY_SHADOW" - }, - "1891": { - "name": "Purified", - "proto": "SNIVY_PURIFIED" - } - }, - "default_form_id": 1889, - "pokedex_id": 495, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 88, - "defense": 107, - "stamina": 128, - "height": 0.6, - "weight": 8.1, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Vine Whip" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Wrap" - ], - "evolutions": [ - { - "pokemon": 496 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 495, - "little": true - }, - "496": { - "name": "Servine", - "forms": { - "1892": { - "name": "Normal", - "proto": "SERVINE_NORMAL" - }, - "1893": { - "name": "Shadow", - "proto": "SERVINE_SHADOW" - }, - "1894": { - "name": "Purified", - "proto": "SERVINE_PURIFIED" - } - }, - "default_form_id": 1892, - "pokedex_id": 496, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 122, - "defense": 152, - "stamina": 155, - "height": 0.8, - "weight": 16, - "flee_rate": 0.1, - "capture_rate": 0.1, - "quick_moves": [ - "Iron Tail", - "Vine Whip" - ], - "charged_moves": [ - "Grass Knot", - "Leaf Tornado", - "Wrap" - ], - "evolutions": [ - { - "pokemon": 497 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 495 - }, - "497": { - "name": "Serperior", - "forms": { - "1895": { - "name": "Normal", - "proto": "SERPERIOR_NORMAL" - }, - "1896": { - "name": "Shadow", - "proto": "SERPERIOR_SHADOW" - }, - "1897": { - "name": "Purified", - "proto": "SERPERIOR_PURIFIED" - } - }, - "default_form_id": 1895, - "pokedex_id": 497, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 161, - "defense": 204, - "stamina": 181, - "height": 3.3, - "weight": 63, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Iron Tail", - "Vine Whip" - ], - "charged_moves": [ - "Grass Knot", - "Leaf Tornado", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 495 - }, - "498": { - "name": "Tepig", - "forms": { - "1898": { - "name": "Normal", - "proto": "TEPIG_NORMAL" - }, - "1899": { - "name": "Shadow", - "proto": "TEPIG_SHADOW" - }, - "1900": { - "name": "Purified", - "proto": "TEPIG_PURIFIED" - } - }, - "default_form_id": 1898, - "pokedex_id": 498, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 115, - "defense": 85, - "stamina": 163, - "height": 0.5, - "weight": 9.9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flamethrower", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 499 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 498, - "little": true - }, - "499": { - "name": "Pignite", - "forms": { - "1901": { - "name": "Normal", - "proto": "PIGNITE_NORMAL" - }, - "1902": { - "name": "Shadow", - "proto": "PIGNITE_SHADOW" - }, - "1903": { - "name": "Purified", - "proto": "PIGNITE_PURIFIED" - } - }, - "default_form_id": 1901, - "pokedex_id": 499, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire", - "Fighting" - ], - "attack": 173, - "defense": 106, - "stamina": 207, - "height": 1, - "weight": 55.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Tackle", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flamethrower", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 500 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 498 - }, - "500": { - "name": "Emboar", - "forms": { - "1904": { - "name": "Normal", - "proto": "EMBOAR_NORMAL" - }, - "1905": { - "name": "Shadow", - "proto": "EMBOAR_SHADOW" - }, - "1906": { - "name": "Purified", - "proto": "EMBOAR_PURIFIED" - } - }, - "default_form_id": 1904, - "pokedex_id": 500, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire", - "Fighting" - ], - "attack": 235, - "defense": 127, - "stamina": 242, - "height": 1.6, - "weight": 150, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Low Kick", - "Ember" - ], - "charged_moves": [ - "Heat Wave", - "Rock Slide", - "Focus Blast", - "Flame Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 498 - }, - "501": { - "name": "Oshawott", - "forms": { - "1907": { - "name": "Normal", - "proto": "OSHAWOTT_NORMAL" - }, - "1908": { - "name": "Shadow", - "proto": "OSHAWOTT_SHADOW" - }, - "1909": { - "name": "Purified", - "proto": "OSHAWOTT_PURIFIED" - } - }, - "default_form_id": 1907, - "pokedex_id": 501, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 117, - "defense": 85, - "stamina": 146, - "height": 0.5, - "weight": 5.9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Water Gun" - ], - "charged_moves": [ - "Aqua Tail", - "Water Pulse", - "Night Slash" - ], - "evolutions": [ - { - "pokemon": 502 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 501, - "little": true - }, - "502": { - "name": "Dewott", - "forms": { - "1910": { - "name": "Normal", - "proto": "DEWOTT_NORMAL" - }, - "1911": { - "name": "Shadow", - "proto": "DEWOTT_SHADOW" - }, - "1912": { - "name": "Purified", - "proto": "DEWOTT_PURIFIED" - } - }, - "default_form_id": 1910, - "pokedex_id": 502, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 159, - "defense": 116, - "stamina": 181, - "height": 0.8, - "weight": 24.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Fury Cutter", - "Water Gun" - ], - "charged_moves": [ - "Aqua Tail", - "Water Pulse", - "X Scissor" - ], - "evolutions": [ - { - "pokemon": 503 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 501 - }, - "503": { - "name": "Samurott", - "forms": { - "1913": { - "name": "Normal", - "proto": "SAMUROTT_NORMAL" - }, - "1914": { - "name": "Shadow", - "proto": "SAMUROTT_SHADOW" - }, - "1915": { - "name": "Purified", - "proto": "SAMUROTT_PURIFIED" - } - }, - "default_form_id": 1913, - "pokedex_id": 503, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 212, - "defense": 157, - "stamina": 216, - "height": 1.5, - "weight": 94.6, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Fury Cutter", - "Waterfall" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Megahorn" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 501 - }, - "504": { - "name": "Patrat", - "forms": { - "1916": { - "name": "Normal", - "proto": "PATRAT_NORMAL" - }, - "1917": { - "name": "Shadow", - "proto": "PATRAT_SHADOW" - }, - "1918": { - "name": "Purified", - "proto": "PATRAT_PURIFIED" - } - }, - "default_form_id": 1916, - "pokedex_id": 504, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 98, - "defense": 73, - "stamina": 128, - "height": 0.5, - "weight": 11.6, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Bite" - ], - "charged_moves": [ - "Dig", - "Hyper Fang", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 505 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 504, - "little": true - }, - "505": { - "name": "Watchog", - "forms": { - "1919": { - "name": "Normal", - "proto": "WATCHOG_NORMAL" - }, - "1920": { - "name": "Shadow", - "proto": "WATCHOG_SHADOW" - }, - "1921": { - "name": "Purified", - "proto": "WATCHOG_PURIFIED" - } - }, - "default_form_id": 1919, - "pokedex_id": 505, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 165, - "defense": 139, - "stamina": 155, - "height": 1.1, - "weight": 27, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Low Kick", - "Bite" - ], - "charged_moves": [ - "Crunch", - "Hyper Fang", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 504 - }, - "506": { - "name": "Lillipup", - "forms": { - "1922": { - "name": "Normal", - "proto": "LILLIPUP_NORMAL" - }, - "1923": { - "name": "Shadow", - "proto": "LILLIPUP_SHADOW" - }, - "1924": { - "name": "Purified", - "proto": "LILLIPUP_PURIFIED" - } - }, - "default_form_id": 1922, - "pokedex_id": 506, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 107, - "defense": 86, - "stamina": 128, - "height": 0.4, - "weight": 4.1, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Take Down" - ], - "charged_moves": [ - "Thunderbolt", - "Rock Tomb", - "Dig" - ], - "evolutions": [ - { - "pokemon": 507 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 506, - "little": true - }, - "507": { - "name": "Herdier", - "forms": { - "1925": { - "name": "Normal", - "proto": "HERDIER_NORMAL" - }, - "1926": { - "name": "Shadow", - "proto": "HERDIER_SHADOW" - }, - "1927": { - "name": "Purified", - "proto": "HERDIER_PURIFIED" - } - }, - "default_form_id": 1925, - "pokedex_id": 507, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 145, - "defense": 126, - "stamina": 163, - "height": 0.9, - "weight": 14.7, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Lick", - "Take Down" - ], - "charged_moves": [ - "Thunderbolt", - "Play Rough", - "Dig" - ], - "evolutions": [ - { - "pokemon": 508 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 506 - }, - "508": { - "name": "Stoutland", - "forms": { - "1928": { - "name": "Normal", - "proto": "STOUTLAND_NORMAL" - }, - "1929": { - "name": "Shadow", - "proto": "STOUTLAND_SHADOW" - }, - "1930": { - "name": "Purified", - "proto": "STOUTLAND_PURIFIED" - } - }, - "default_form_id": 1928, - "pokedex_id": 508, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 206, - "defense": 182, - "stamina": 198, - "height": 1.2, - "weight": 61, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Lick", - "Take Down", - "Ice Fang" - ], - "charged_moves": [ - "Wild Charge", - "Play Rough", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 506 - }, - "509": { - "name": "Purrloin", - "forms": { - "1931": { - "name": "Normal", - "proto": "PURRLOIN_NORMAL" - }, - "1932": { - "name": "Shadow", - "proto": "PURRLOIN_SHADOW" - }, - "1933": { - "name": "Purified", - "proto": "PURRLOIN_PURIFIED" - } - }, - "default_form_id": 1931, - "pokedex_id": 509, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark" - ], - "attack": 98, - "defense": 73, - "stamina": 121, - "height": 0.4, - "weight": 10.1, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Sucker Punch" - ], - "charged_moves": [ - "Night Slash", - "Play Rough", - "Dark Pulse" - ], - "evolutions": [ - { - "pokemon": 510 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 509, - "little": true - }, - "510": { - "name": "Liepard", - "forms": { - "1934": { - "name": "Normal", - "proto": "LIEPARD_NORMAL" - }, - "1935": { - "name": "Shadow", - "proto": "LIEPARD_SHADOW" - }, - "1936": { - "name": "Purified", - "proto": "LIEPARD_PURIFIED" - } - }, - "default_form_id": 1934, - "pokedex_id": 510, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark" - ], - "attack": 187, - "defense": 106, - "stamina": 162, - "height": 1.1, - "weight": 37.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Charm", - "Snarl" - ], - "charged_moves": [ - "Gunk Shot", - "Play Rough", - "Dark Pulse", - "Payback" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 509 - }, - "511": { - "name": "Pansage", - "forms": { - "1937": { - "name": "Normal", - "proto": "PANSAGE_NORMAL" - }, - "1938": { - "name": "Shadow", - "proto": "PANSAGE_SHADOW" - }, - "1939": { - "name": "Purified", - "proto": "PANSAGE_PURIFIED" - } - }, - "default_form_id": 1937, - "pokedex_id": 511, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 104, - "defense": 94, - "stamina": 137, - "height": 0.6, - "weight": 10.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Vine Whip" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 512 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 511, - "little": true - }, - "512": { - "name": "Simisage", - "forms": { - "1940": { - "name": "Normal", - "proto": "SIMISAGE_NORMAL" - }, - "1941": { - "name": "Shadow", - "proto": "SIMISAGE_SHADOW" - }, - "1942": { - "name": "Purified", - "proto": "SIMISAGE_PURIFIED" - } - }, - "default_form_id": 1940, - "pokedex_id": 512, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 206, - "defense": 133, - "stamina": 181, - "height": 1.1, - "weight": 30.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Vine Whip" - ], - "charged_moves": [ - "Solar Beam", - "Grass Knot", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 511 - }, - "513": { - "name": "Pansear", - "forms": { - "1943": { - "name": "Normal", - "proto": "PANSEAR_NORMAL" - }, - "1944": { - "name": "Shadow", - "proto": "PANSEAR_SHADOW" - }, - "1945": { - "name": "Purified", - "proto": "PANSEAR_PURIFIED" - } - }, - "default_form_id": 1943, - "pokedex_id": 513, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 104, - "defense": 94, - "stamina": 137, - "height": 0.6, - "weight": 11, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Fire Spin" - ], - "charged_moves": [ - "Flame Burst", - "Flame Charge", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 514 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 513, - "little": true - }, - "514": { - "name": "Simisear", - "forms": { - "1946": { - "name": "Normal", - "proto": "SIMISEAR_NORMAL" - }, - "1947": { - "name": "Shadow", - "proto": "SIMISEAR_SHADOW" - }, - "1948": { - "name": "Purified", - "proto": "SIMISEAR_PURIFIED" - } - }, - "default_form_id": 1946, - "pokedex_id": 514, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 206, - "defense": 133, - "stamina": 181, - "height": 1, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Fire Spin" - ], - "charged_moves": [ - "Flamethrower", - "Fire Blast", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 513 - }, - "515": { - "name": "Panpour", - "forms": { - "1949": { - "name": "Normal", - "proto": "PANPOUR_NORMAL" - }, - "1950": { - "name": "Shadow", - "proto": "PANPOUR_SHADOW" - }, - "1951": { - "name": "Purified", - "proto": "PANPOUR_PURIFIED" - } - }, - "default_form_id": 1949, - "pokedex_id": 515, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 104, - "defense": 94, - "stamina": 137, - "height": 0.6, - "weight": 13.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Water Gun" - ], - "charged_moves": [ - "Surf", - "Water Pulse", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 516 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 515, - "little": true - }, - "516": { - "name": "Simipour", - "forms": { - "1952": { - "name": "Normal", - "proto": "SIMIPOUR_NORMAL" - }, - "1953": { - "name": "Shadow", - "proto": "SIMIPOUR_SHADOW" - }, - "1954": { - "name": "Purified", - "proto": "SIMIPOUR_PURIFIED" - } - }, - "default_form_id": 1952, - "pokedex_id": 516, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 206, - "defense": 133, - "stamina": 181, - "height": 1, - "weight": 29, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Water Gun" - ], - "charged_moves": [ - "Surf", - "Hydro Pump", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 515 - }, - "517": { - "name": "Munna", - "forms": { - "1955": { - "name": "Normal", - "proto": "MUNNA_NORMAL" - }, - "1956": { - "name": "Shadow", - "proto": "MUNNA_SHADOW" - }, - "1957": { - "name": "Purified", - "proto": "MUNNA_PURIFIED" - } - }, - "default_form_id": 1955, - "pokedex_id": 517, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 111, - "defense": 92, - "stamina": 183, - "height": 0.6, - "weight": 23.3, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Zen Headbutt", - "Charge Beam" - ], - "charged_moves": [ - "Psybeam", - "Dazzling Gleam", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 518 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 517, - "little": true - }, - "518": { - "name": "Musharna", - "forms": { - "1958": { - "name": "Normal", - "proto": "MUSHARNA_NORMAL" - }, - "1959": { - "name": "Shadow", - "proto": "MUSHARNA_SHADOW" - }, - "1960": { - "name": "Purified", - "proto": "MUSHARNA_PURIFIED" - } - }, - "default_form_id": 1958, - "pokedex_id": 518, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 183, - "defense": 166, - "stamina": 253, - "height": 1.1, - "weight": 60.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Charge Beam" - ], - "charged_moves": [ - "Futuresight", - "Dazzling Gleam", - "Psyshock" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 517 - }, - "519": { - "name": "Pidove", - "forms": { - "1961": { - "name": "Normal", - "proto": "PIDOVE_NORMAL" - }, - "1962": { - "name": "Shadow", - "proto": "PIDOVE_SHADOW" - }, - "1963": { - "name": "Purified", - "proto": "PIDOVE_PURIFIED" - } - }, - "default_form_id": 1961, - "pokedex_id": 519, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Flying" - ], - "attack": 98, - "defense": 80, - "stamina": 137, - "height": 0.3, - "weight": 2.1, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Quick Attack", - "Air Slash" - ], - "charged_moves": [ - "Heat Wave", - "Aerial Ace", - "Air Cutter" - ], - "evolutions": [ - { - "pokemon": 520 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 519, - "little": true - }, - "520": { - "name": "Tranquill", - "forms": { - "1964": { - "name": "Normal", - "proto": "TRANQUILL_NORMAL" - }, - "1965": { - "name": "Shadow", - "proto": "TRANQUILL_SHADOW" - }, - "1966": { - "name": "Purified", - "proto": "TRANQUILL_PURIFIED" - } - }, - "default_form_id": 1964, - "pokedex_id": 520, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Flying" - ], - "attack": 144, - "defense": 107, - "stamina": 158, - "height": 0.6, - "weight": 15, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Air Slash", - "Steel Wing" - ], - "charged_moves": [ - "Heat Wave", - "Aerial Ace", - "Sky Attack" - ], - "evolutions": [ - { - "pokemon": 521 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 519 - }, - "521": { - "name": "Unfezant", - "forms": { - "1967": { - "name": "Normal", - "proto": "UNFEZANT_NORMAL" - }, - "1968": { - "name": "Shadow", - "proto": "UNFEZANT_SHADOW" - }, - "1969": { - "name": "Purified", - "proto": "UNFEZANT_PURIFIED" - } - }, - "default_form_id": 1967, - "pokedex_id": 521, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Flying" - ], - "attack": 226, - "defense": 146, - "stamina": 190, - "height": 1.2, - "weight": 29, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Air Slash", - "Steel Wing" - ], - "charged_moves": [ - "Heat Wave", - "Hyper Beam", - "Sky Attack" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 519 - }, - "522": { - "name": "Blitzle", - "forms": { - "1970": { - "name": "Normal", - "proto": "BLITZLE_NORMAL" - }, - "1971": { - "name": "Shadow", - "proto": "BLITZLE_SHADOW" - }, - "1972": { - "name": "Purified", - "proto": "BLITZLE_PURIFIED" - } - }, - "default_form_id": 1970, - "pokedex_id": 522, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric" - ], - "attack": 118, - "defense": 64, - "stamina": 128, - "height": 0.8, - "weight": 29.8, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Quick Attack", - "Spark" - ], - "charged_moves": [ - "Flame Charge", - "Discharge", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 523 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 522, - "little": true - }, - "523": { - "name": "Zebstrika", - "forms": { - "1973": { - "name": "Normal", - "proto": "ZEBSTRIKA_NORMAL" - }, - "1974": { - "name": "Shadow", - "proto": "ZEBSTRIKA_SHADOW" - }, - "1975": { - "name": "Purified", - "proto": "ZEBSTRIKA_PURIFIED" - } - }, - "default_form_id": 1973, - "pokedex_id": 523, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric" - ], - "attack": 211, - "defense": 136, - "stamina": 181, - "height": 1.6, - "weight": 79.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Low Kick", - "Spark" - ], - "charged_moves": [ - "Flame Charge", - "Discharge", - "Wild Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 522 - }, - "524": { - "name": "Roggenrola", - "forms": { - "1976": { - "name": "Normal", - "proto": "ROGGENROLA_NORMAL" - }, - "1977": { - "name": "Shadow", - "proto": "ROGGENROLA_SHADOW" - }, - "1978": { - "name": "Purified", - "proto": "ROGGENROLA_PURIFIED" - } - }, - "default_form_id": 1976, - "pokedex_id": 524, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock" - ], - "attack": 121, - "defense": 110, - "stamina": 146, - "height": 0.4, - "weight": 18, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Tackle", - "Smack Down" - ], - "charged_moves": [ - "Bulldoze", - "Rock Blast", - "Stone Edge" - ], - "evolutions": [ - { - "pokemon": 525 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 524, - "little": true - }, - "525": { - "name": "Boldore", - "forms": { - "1979": { - "name": "Normal", - "proto": "BOLDORE_NORMAL" - }, - "1980": { - "name": "Shadow", - "proto": "BOLDORE_SHADOW" - }, - "1981": { - "name": "Purified", - "proto": "BOLDORE_PURIFIED" - } - }, - "default_form_id": 1979, - "pokedex_id": 525, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock" - ], - "attack": 174, - "defense": 143, - "stamina": 172, - "height": 0.9, - "weight": 102, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Mud Slap", - "Smack Down" - ], - "charged_moves": [ - "Rock Slide", - "Bulldoze", - "Stone Edge" - ], - "evolutions": [ - { - "pokemon": 526 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 524 - }, - "526": { - "name": "Gigalith", - "forms": { - "1982": { - "name": "Normal", - "proto": "GIGALITH_NORMAL" - }, - "1983": { - "name": "Shadow", - "proto": "GIGALITH_SHADOW" - }, - "1984": { - "name": "Purified", - "proto": "GIGALITH_PURIFIED" - } - }, - "default_form_id": 1982, - "pokedex_id": 526, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock" - ], - "attack": 226, - "defense": 201, - "stamina": 198, - "height": 1.7, - "weight": 260, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Mud Slap", - "Smack Down" - ], - "charged_moves": [ - "Rock Slide", - "Solar Beam", - "Super Power", - "Heavy Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 524 - }, - "527": { - "name": "Woobat", - "forms": { - "1985": { - "name": "Normal", - "proto": "WOOBAT_NORMAL" - }, - "1986": { - "name": "Shadow", - "proto": "WOOBAT_SHADOW" - }, - "1987": { - "name": "Purified", - "proto": "WOOBAT_PURIFIED" - } - }, - "default_form_id": 1985, - "pokedex_id": 527, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic", - "Flying" - ], - "attack": 107, - "defense": 85, - "stamina": 163, - "height": 0.4, - "weight": 2.1, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Confusion", - "Air Slash" - ], - "charged_moves": [ - "Air Cutter", - "Aerial Ace", - "Psyshock" - ], - "evolutions": [ - { - "pokemon": 528 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 527, - "little": true - }, - "528": { - "name": "Swoobat", - "forms": { - "1988": { - "name": "Normal", - "proto": "SWOOBAT_NORMAL" - }, - "1989": { - "name": "Shadow", - "proto": "SWOOBAT_SHADOW" - }, - "1990": { - "name": "Purified", - "proto": "SWOOBAT_PURIFIED" - } - }, - "default_form_id": 1988, - "pokedex_id": 528, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic", - "Flying" - ], - "attack": 161, - "defense": 119, - "stamina": 167, - "height": 0.9, - "weight": 10.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Confusion", - "Air Slash" - ], - "charged_moves": [ - "Psychic", - "Aerial Ace", - "Futuresight" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 527 - }, - "529": { - "name": "Drilbur", - "forms": { - "1991": { - "name": "Normal", - "proto": "DRILBUR_NORMAL" - }, - "1992": { - "name": "Shadow", - "proto": "DRILBUR_SHADOW" - }, - "1993": { - "name": "Purified", - "proto": "DRILBUR_PURIFIED" - } - }, - "default_form_id": 1991, - "pokedex_id": 529, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground" - ], - "attack": 154, - "defense": 85, - "stamina": 155, - "height": 0.3, - "weight": 8.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Scratch", - "Mud Slap" - ], - "charged_moves": [ - "Rock Tomb", - "Dig", - "Drill Run" - ], - "evolutions": [ - { - "pokemon": 530 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 529, - "little": true - }, - "530": { - "name": "Excadrill", - "forms": { - "1994": { - "name": "Normal", - "proto": "EXCADRILL_NORMAL" - }, - "1995": { - "name": "Shadow", - "proto": "EXCADRILL_SHADOW" - }, - "1996": { - "name": "Purified", - "proto": "EXCADRILL_PURIFIED" - } - }, - "default_form_id": 1994, - "pokedex_id": 530, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Steel" - ], - "attack": 255, - "defense": 129, - "stamina": 242, - "height": 0.7, - "weight": 40.4, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Metal Claw", - "Mud Slap", - "Mud Shot" - ], - "charged_moves": [ - "Rock Slide", - "Earthquake", - "Drill Run", - "Iron Head" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 529 - }, - "531": { - "name": "Audino", - "forms": { - "1997": { - "name": "Normal", - "proto": "AUDINO_NORMAL", - "temp_evolutions": { - "1": {} - } - }, - "1998": { - "name": "Shadow", - "proto": "AUDINO_SHADOW" - }, - "1999": { - "name": "Purified", - "proto": "AUDINO_PURIFIED", - "temp_evolutions": { - "1": {} - } - } - }, - "default_form_id": 1997, - "pokedex_id": 531, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 114, - "defense": 163, - "stamina": 230, - "height": 1.1, - "weight": 31, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Pound", - "Zen Headbutt" - ], - "charged_moves": [ - "Disarming Voice", - "Dazzling Gleam", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 531, - "temp_evolutions": { - "1": { - "attack": 147, - "defense": 239, - "stamina": 230, - "unreleased": true, - "types": [ - "Normal", - "Fairy" - ] - } - } - }, - "532": { - "name": "Timburr", - "forms": { - "2000": { - "name": "Normal", - "proto": "TIMBURR_NORMAL" - }, - "2001": { - "name": "Shadow", - "proto": "TIMBURR_SHADOW" - }, - "2002": { - "name": "Purified", - "proto": "TIMBURR_PURIFIED" - } - }, - "default_form_id": 2000, - "pokedex_id": 532, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 134, - "defense": 87, - "stamina": 181, - "height": 0.6, - "weight": 12.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Low Kick", - "Pound" - ], - "charged_moves": [ - "Low Sweep", - "Brick Break", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 533 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 532, - "little": true - }, - "533": { - "name": "Gurdurr", - "forms": { - "2003": { - "name": "Normal", - "proto": "GURDURR_NORMAL" - }, - "2004": { - "name": "Shadow", - "proto": "GURDURR_SHADOW" - }, - "2005": { - "name": "Purified", - "proto": "GURDURR_PURIFIED" - } - }, - "default_form_id": 2003, - "pokedex_id": 533, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 180, - "defense": 134, - "stamina": 198, - "height": 1.2, - "weight": 40, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Low Kick", - "Poison Jab" - ], - "charged_moves": [ - "Low Sweep", - "Brick Break", - "Stone Edge" - ], - "evolutions": [ - { - "pokemon": 534 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 532 - }, - "534": { - "name": "Conkeldurr", - "forms": { - "2006": { - "name": "Normal", - "proto": "CONKELDURR_NORMAL" - }, - "2007": { - "name": "Shadow", - "proto": "CONKELDURR_SHADOW" - }, - "2008": { - "name": "Purified", - "proto": "CONKELDURR_PURIFIED" - } - }, - "default_form_id": 2006, - "pokedex_id": 534, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 243, - "defense": 158, - "stamina": 233, - "height": 1.4, - "weight": 87, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Counter", - "Poison Jab" - ], - "charged_moves": [ - "Dynamic Punch", - "Focus Blast", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 532 - }, - "535": { - "name": "Tympole", - "forms": { - "2009": { - "name": "Normal", - "proto": "TYMPOLE_NORMAL" - }, - "2010": { - "name": "Shadow", - "proto": "TYMPOLE_SHADOW" - }, - "2011": { - "name": "Purified", - "proto": "TYMPOLE_PURIFIED" - } - }, - "default_form_id": 2009, - "pokedex_id": 535, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 98, - "defense": 78, - "stamina": 137, - "height": 0.5, - "weight": 4.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Mud Shot", - "Bubble" - ], - "charged_moves": [ - "Water Pulse", - "Mud Bomb", - "Sludge Wave" - ], - "evolutions": [ - { - "pokemon": 536 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 535, - "little": true - }, - "536": { - "name": "Palpitoad", - "forms": { - "2012": { - "name": "Normal", - "proto": "PALPITOAD_NORMAL" - }, - "2013": { - "name": "Shadow", - "proto": "PALPITOAD_SHADOW" - }, - "2014": { - "name": "Purified", - "proto": "PALPITOAD_PURIFIED" - } - }, - "default_form_id": 2012, - "pokedex_id": 536, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Ground" - ], - "attack": 128, - "defense": 109, - "stamina": 181, - "height": 0.8, - "weight": 17, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Mud Shot", - "Bubble" - ], - "charged_moves": [ - "Water Pulse", - "Earth Power", - "Sludge Wave" - ], - "evolutions": [ - { - "pokemon": 537 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 535 - }, - "537": { - "name": "Seismitoad", - "forms": { - "2015": { - "name": "Normal", - "proto": "SEISMITOAD_NORMAL" - }, - "2016": { - "name": "Shadow", - "proto": "SEISMITOAD_SHADOW" - }, - "2017": { - "name": "Purified", - "proto": "SEISMITOAD_PURIFIED" - } - }, - "default_form_id": 2015, - "pokedex_id": 537, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Ground" - ], - "attack": 188, - "defense": 150, - "stamina": 233, - "height": 1.5, - "weight": 62, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Mud Shot", - "Bubble" - ], - "charged_moves": [ - "Muddy Water", - "Earth Power", - "Sludge Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 535 - }, - "538": { - "name": "Throh", - "forms": { - "2018": { - "name": "Normal", - "proto": "THROH_NORMAL" - }, - "2019": { - "name": "Shadow", - "proto": "THROH_SHADOW" - }, - "2020": { - "name": "Purified", - "proto": "THROH_PURIFIED" - } - }, - "default_form_id": 2018, - "pokedex_id": 538, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 172, - "defense": 160, - "stamina": 260, - "height": 1.3, - "weight": 55.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Low Kick", - "Zen Headbutt" - ], - "charged_moves": [ - "Focus Blast", - "Low Sweep", - "Body Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 538 - }, - "539": { - "name": "Sawk", - "forms": { - "2021": { - "name": "Normal", - "proto": "SAWK_NORMAL" - }, - "2022": { - "name": "Shadow", - "proto": "SAWK_SHADOW" - }, - "2023": { - "name": "Purified", - "proto": "SAWK_PURIFIED" - } - }, - "default_form_id": 2021, - "pokedex_id": 539, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 231, - "defense": 153, - "stamina": 181, - "height": 1.4, - "weight": 51, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Low Kick", - "Poison Jab" - ], - "charged_moves": [ - "Focus Blast", - "Low Sweep", - "Body Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 539 - }, - "540": { - "name": "Sewaddle", - "forms": { - "2024": { - "name": "Normal", - "proto": "SEWADDLE_NORMAL" - }, - "2025": { - "name": "Shadow", - "proto": "SEWADDLE_SHADOW" - }, - "2026": { - "name": "Purified", - "proto": "SEWADDLE_PURIFIED" - } - }, - "default_form_id": 2024, - "pokedex_id": 540, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Grass" - ], - "attack": 96, - "defense": 124, - "stamina": 128, - "height": 0.3, - "weight": 2.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Struggle Bug", - "Bug Bite" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Silver Wind" - ], - "evolutions": [ - { - "pokemon": 541 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 540, - "little": true - }, - "541": { - "name": "Swadloon", - "forms": { - "2027": { - "name": "Normal", - "proto": "SWADLOON_NORMAL" - }, - "2028": { - "name": "Shadow", - "proto": "SWADLOON_SHADOW" - }, - "2029": { - "name": "Purified", - "proto": "SWADLOON_PURIFIED" - } - }, - "default_form_id": 2027, - "pokedex_id": 541, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Grass" - ], - "attack": 115, - "defense": 162, - "stamina": 146, - "height": 0.5, - "weight": 7.3, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Struggle Bug", - "Bug Bite" - ], - "charged_moves": [ - "Energy Ball", - "Bug Buzz", - "Silver Wind" - ], - "evolutions": [ - { - "pokemon": 542 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 540 - }, - "542": { - "name": "Leavanny", - "forms": { - "2030": { - "name": "Normal", - "proto": "LEAVANNY_NORMAL" - }, - "2031": { - "name": "Shadow", - "proto": "LEAVANNY_SHADOW" - }, - "2032": { - "name": "Purified", - "proto": "LEAVANNY_PURIFIED" - } - }, - "default_form_id": 2030, - "pokedex_id": 542, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Grass" - ], - "attack": 205, - "defense": 165, - "stamina": 181, - "height": 1.2, - "weight": 20.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Razor Leaf", - "Bug Bite" - ], - "charged_moves": [ - "Leaf Blade", - "X Scissor", - "Silver Wind", - "Leaf Storm" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 540 - }, - "543": { - "name": "Venipede", - "forms": { - "2033": { - "name": "Normal", - "proto": "VENIPEDE_NORMAL" - }, - "2034": { - "name": "Shadow", - "proto": "VENIPEDE_SHADOW" - }, - "2035": { - "name": "Purified", - "proto": "VENIPEDE_PURIFIED" - } - }, - "default_form_id": 2033, - "pokedex_id": 543, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Poison" - ], - "attack": 83, - "defense": 99, - "stamina": 102, - "height": 0.4, - "weight": 5.3, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Bug Bite", - "Poison Sting" - ], - "charged_moves": [ - "Signal Beam", - "Sludge Bomb", - "Gyro Ball" - ], - "evolutions": [ - { - "pokemon": 544 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 543, - "little": true - }, - "544": { - "name": "Whirlipede", - "forms": { - "2036": { - "name": "Normal", - "proto": "WHIRLIPEDE_NORMAL" - }, - "2037": { - "name": "Shadow", - "proto": "WHIRLIPEDE_SHADOW" - }, - "2038": { - "name": "Purified", - "proto": "WHIRLIPEDE_PURIFIED" - } - }, - "default_form_id": 2036, - "pokedex_id": 544, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Poison" - ], - "attack": 100, - "defense": 173, - "stamina": 120, - "height": 1.2, - "weight": 58.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Bug Bite", - "Poison Sting" - ], - "charged_moves": [ - "Signal Beam", - "Sludge Bomb", - "Gyro Ball" - ], - "evolutions": [ - { - "pokemon": 545 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 543 - }, - "545": { - "name": "Scolipede", - "forms": { - "2039": { - "name": "Normal", - "proto": "SCOLIPEDE_NORMAL" - }, - "2040": { - "name": "Shadow", - "proto": "SCOLIPEDE_SHADOW" - }, - "2041": { - "name": "Purified", - "proto": "SCOLIPEDE_PURIFIED" - } - }, - "default_form_id": 2039, - "pokedex_id": 545, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Poison" - ], - "attack": 203, - "defense": 175, - "stamina": 155, - "height": 2.5, - "weight": 200.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bug Bite", - "Poison Jab" - ], - "charged_moves": [ - "Megahorn", - "Sludge Bomb", - "Gyro Ball", - "X Scissor" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 543 - }, - "546": { - "name": "Cottonee", - "forms": { - "2042": { - "name": "Normal", - "proto": "COTTONEE_NORMAL" - }, - "2043": { - "name": "Shadow", - "proto": "COTTONEE_SHADOW" - }, - "2044": { - "name": "Purified", - "proto": "COTTONEE_PURIFIED" - } - }, - "default_form_id": 2042, - "pokedex_id": 546, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Fairy" - ], - "attack": 71, - "defense": 111, - "stamina": 120, - "height": 0.3, - "weight": 0.6, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Charm", - "Razor Leaf" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 547 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 546, - "little": true - }, - "547": { - "name": "Whimsicott", - "forms": { - "2045": { - "name": "Normal", - "proto": "WHIMSICOTT_NORMAL" - }, - "2046": { - "name": "Shadow", - "proto": "WHIMSICOTT_SHADOW" - }, - "2047": { - "name": "Purified", - "proto": "WHIMSICOTT_PURIFIED" - } - }, - "default_form_id": 2045, - "pokedex_id": 547, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Fairy" - ], - "attack": 164, - "defense": 176, - "stamina": 155, - "height": 0.7, - "weight": 6.6, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Charm", - "Razor Leaf" - ], - "charged_moves": [ - "Grass Knot", - "Hurricane", - "Moonblast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 546 - }, - "548": { - "name": "Petilil", - "forms": { - "2048": { - "name": "Normal", - "proto": "PETILIL_NORMAL" - }, - "2049": { - "name": "Shadow", - "proto": "PETILIL_SHADOW" - }, - "2050": { - "name": "Purified", - "proto": "PETILIL_PURIFIED" - } - }, - "default_form_id": 2048, - "pokedex_id": 548, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 119, - "defense": 91, - "stamina": 128, - "height": 0.5, - "weight": 6.6, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Charm", - "Hidden Power" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 549 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 548, - "little": true - }, - "549": { - "name": "Lilligant", - "forms": { - "2051": { - "name": "Normal", - "proto": "LILLIGANT_NORMAL" - }, - "2052": { - "name": "Shadow", - "proto": "LILLIGANT_SHADOW" - }, - "2053": { - "name": "Purified", - "proto": "LILLIGANT_PURIFIED" - } - }, - "default_form_id": 2051, - "pokedex_id": 549, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 214, - "defense": 155, - "stamina": 172, - "height": 1.1, - "weight": 16.3, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Charm", - "Hidden Power" - ], - "charged_moves": [ - "Petal Blizzard", - "Hyper Beam", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 548 - }, - "550": { - "name": "Basculin", - "forms": { - "136": { - "name": "Red Striped", - "proto": "BASCULIN_RED_STRIPED" - }, - "137": { - "name": "Blue Striped", - "proto": "BASCULIN_BLUE_STRIPED" - } - }, - "default_form_id": 136, - "pokedex_id": 550, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 189, - "defense": 129, - "stamina": 172, - "height": 1, - "weight": 18, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Water Gun" - ], - "charged_moves": [ - "Aqua Jet", - "Aqua Tail", - "Muddy Water" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 550 - }, - "551": { - "name": "Sandile", - "forms": { - "2054": { - "name": "Normal", - "proto": "SANDILE_NORMAL" - }, - "2055": { - "name": "Shadow", - "proto": "SANDILE_SHADOW" - }, - "2056": { - "name": "Purified", - "proto": "SANDILE_PURIFIED" - } - }, - "default_form_id": 2054, - "pokedex_id": 551, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Dark" - ], - "attack": 132, - "defense": 69, - "stamina": 137, - "height": 0.7, - "weight": 15.2, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Bite", - "Mud Slap" - ], - "charged_moves": [ - "Dig", - "Crunch", - "Bulldoze" - ], - "evolutions": [ - { - "pokemon": 552 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 551, - "little": true - }, - "552": { - "name": "Krokorok", - "forms": { - "2057": { - "name": "Normal", - "proto": "KROKOROK_NORMAL" - }, - "2058": { - "name": "Shadow", - "proto": "KROKOROK_SHADOW" - }, - "2059": { - "name": "Purified", - "proto": "KROKOROK_PURIFIED" - } - }, - "default_form_id": 2057, - "pokedex_id": 552, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Dark" - ], - "attack": 155, - "defense": 90, - "stamina": 155, - "height": 1, - "weight": 33.4, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Bite", - "Mud Slap" - ], - "charged_moves": [ - "Earthquake", - "Crunch", - "Bulldoze" - ], - "evolutions": [ - { - "pokemon": 553 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 551 - }, - "553": { - "name": "Krookodile", - "forms": { - "2060": { - "name": "Normal", - "proto": "KROOKODILE_NORMAL" - }, - "2061": { - "name": "Shadow", - "proto": "KROOKODILE_SHADOW" - }, - "2062": { - "name": "Purified", - "proto": "KROOKODILE_PURIFIED" - } - }, - "default_form_id": 2060, - "pokedex_id": 553, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Dark" - ], - "attack": 229, - "defense": 158, - "stamina": 216, - "height": 1.5, - "weight": 96.3, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Snarl", - "Mud Slap" - ], - "charged_moves": [ - "Earthquake", - "Crunch", - "Outrage" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 551 - }, - "554": { - "name": "Darumaka", - "forms": { - "2063": { - "name": "Normal", - "proto": "DARUMAKA_NORMAL", - "evolutions": [ - { - "pokemon": 555, - "form": 138 - } - ] - }, - "2064": { - "name": "Shadow", - "proto": "DARUMAKA_SHADOW" - }, - "2065": { - "name": "Purified", - "proto": "DARUMAKA_PURIFIED" - }, - "2341": { - "name": "Galarian", - "proto": "DARUMAKA_GALARIAN", - "evolutions": [ - { - "pokemon": 555, - "form": 2342 - } - ], - "height": 0.7, - "weight": 40, - "quick_moves": [ - "Tackle", - "Ice Fang" - ], - "charged_moves": [ - "Ice Punch", - "Ice Beam" - ], - "types": [ - "Ice" - ] - } - }, - "default_form_id": 2063, - "pokedex_id": 554, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 153, - "defense": 86, - "stamina": 172, - "height": 0.6, - "weight": 37.5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Fire Fang" - ], - "charged_moves": [ - "Fire Punch", - "Flame Charge" - ], - "evolutions": [ - { - "pokemon": 555, - "form": 138 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 554, - "little": true - }, - "555": { - "name": "Darmanitan", - "forms": { - "138": { - "name": "Standard", - "proto": "DARMANITAN_STANDARD" - }, - "139": { - "name": "Zen", - "proto": "DARMANITAN_ZEN", - "attack": 243, - "defense": 202, - "stamina": 233, - "types": [ - "Fire", - "Psychic" - ] - }, - "2342": { - "name": "Galarian Standard", - "proto": "DARMANITAN_GALARIAN_STANDARD", - "height": 1.7, - "weight": 120, - "quick_moves": [ - "Tackle", - "Ice Fang" - ], - "charged_moves": [ - "Overheat", - "Avalanche", - "Super Power", - "Ice Punch" - ], - "types": [ - "Ice" - ] - }, - "2343": { - "name": "Galarian Zen", - "proto": "DARMANITAN_GALARIAN_ZEN", - "attack": 323, - "defense": 123, - "stamina": 233, - "height": 1.7, - "weight": 120, - "quick_moves": [ - "Tackle", - "Ice Fang" - ], - "charged_moves": [ - "Overheat", - "Avalanche", - "Super Power", - "Ice Punch" - ], - "types": [ - "Ice", - "Fire" - ] - } - }, - "default_form_id": 138, - "pokedex_id": 555, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 263, - "defense": 114, - "stamina": 233, - "height": 1.3, - "weight": 92.9, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Tackle", - "Fire Fang", - "Incinerate" - ], - "charged_moves": [ - "Overheat", - "Focus Blast", - "Psychic", - "Rock Slide" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 554 - }, - "556": { - "name": "Maractus", - "forms": { - "2066": { - "name": "Normal", - "proto": "MARACTUS_NORMAL" - }, - "2067": { - "name": "Shadow", - "proto": "MARACTUS_SHADOW" - }, - "2068": { - "name": "Purified", - "proto": "MARACTUS_PURIFIED" - } - }, - "default_form_id": 2066, - "pokedex_id": 556, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass" - ], - "attack": 201, - "defense": 130, - "stamina": 181, - "height": 1, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bullet Seed", - "Poison Jab" - ], - "charged_moves": [ - "Aerial Ace", - "Petal Blizzard", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 556 - }, - "557": { - "name": "Dwebble", - "forms": { - "2069": { - "name": "Normal", - "proto": "DWEBBLE_NORMAL" - }, - "2070": { - "name": "Shadow", - "proto": "DWEBBLE_SHADOW" - }, - "2071": { - "name": "Purified", - "proto": "DWEBBLE_PURIFIED" - } - }, - "default_form_id": 2069, - "pokedex_id": 557, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Rock" - ], - "attack": 118, - "defense": 128, - "stamina": 137, - "height": 0.3, - "weight": 14.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Cut", - "Smack Down" - ], - "charged_moves": [ - "Rock Blast", - "X Scissor", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 558 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 557, - "little": true - }, - "558": { - "name": "Crustle", - "forms": { - "2072": { - "name": "Normal", - "proto": "CRUSTLE_NORMAL" - }, - "2073": { - "name": "Shadow", - "proto": "CRUSTLE_SHADOW" - }, - "2074": { - "name": "Purified", - "proto": "CRUSTLE_PURIFIED" - } - }, - "default_form_id": 2072, - "pokedex_id": 558, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Rock" - ], - "attack": 188, - "defense": 200, - "stamina": 172, - "height": 1.4, - "weight": 200, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Fury Cutter", - "Smack Down" - ], - "charged_moves": [ - "Rock Blast", - "X Scissor", - "Rock Slide" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 557 - }, - "559": { - "name": "Scraggy", - "forms": { - "2075": { - "name": "Normal", - "proto": "SCRAGGY_NORMAL" - }, - "2076": { - "name": "Shadow", - "proto": "SCRAGGY_SHADOW" - }, - "2077": { - "name": "Purified", - "proto": "SCRAGGY_PURIFIED" - } - }, - "default_form_id": 2075, - "pokedex_id": 559, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Fighting" - ], - "attack": 132, - "defense": 132, - "stamina": 137, - "height": 0.6, - "weight": 11.8, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Rock Smash", - "Feint Attack" - ], - "charged_moves": [ - "Acid Spray", - "Brick Break", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 560 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 559, - "little": true - }, - "560": { - "name": "Scrafty", - "forms": { - "2078": { - "name": "Normal", - "proto": "SCRAFTY_NORMAL" - }, - "2079": { - "name": "Shadow", - "proto": "SCRAFTY_SHADOW" - }, - "2080": { - "name": "Purified", - "proto": "SCRAFTY_PURIFIED" - } - }, - "default_form_id": 2078, - "pokedex_id": 560, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Fighting" - ], - "attack": 163, - "defense": 222, - "stamina": 163, - "height": 1.1, - "weight": 30, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Counter", - "Snarl" - ], - "charged_moves": [ - "Acid Spray", - "Power Up", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 559 - }, - "561": { - "name": "Sigilyph", - "forms": { - "2081": { - "name": "Normal", - "proto": "SIGILYPH_NORMAL" - }, - "2082": { - "name": "Shadow", - "proto": "SIGILYPH_SHADOW" - }, - "2083": { - "name": "Purified", - "proto": "SIGILYPH_PURIFIED" - } - }, - "default_form_id": 2081, - "pokedex_id": 561, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic", - "Flying" - ], - "attack": 204, - "defense": 167, - "stamina": 176, - "height": 1.4, - "weight": 14, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Air Slash", - "Zen Headbutt" - ], - "charged_moves": [ - "Air Cutter", - "Psybeam", - "Ancient Power", - "Signal Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 561 - }, - "562": { - "name": "Yamask", - "forms": { - "2084": { - "name": "Normal", - "proto": "YAMASK_NORMAL", - "evolutions": [ - { - "pokemon": 563, - "form": 2087 - } - ] - }, - "2085": { - "name": "Shadow", - "proto": "YAMASK_SHADOW", - "evolutions": [ - { - "pokemon": 563, - "form": 2088 - } - ] - }, - "2086": { - "name": "Purified", - "proto": "YAMASK_PURIFIED", - "evolutions": [ - { - "pokemon": 563, - "form": 2089 - } - ] - }, - "2344": { - "name": "Galarian", - "proto": "YAMASK_GALARIAN", - "evolutions": [ - { - "pokemon": 867, - "form": 2516 - } - ], - "quick_moves": [ - "Astonish" - ], - "charged_moves": [ - "Night Shade", - "Rock Tomb" - ], - "types": [ - "Ground", - "Ghost" - ] - } - }, - "default_form_id": 2084, - "pokedex_id": 562, - "genId": "5", - "generation": "Unova", - "types": [ - "Ghost" - ], - "attack": 95, - "defense": 141, - "stamina": 116, - "height": 0.5, - "weight": 1.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Zen Headbutt" - ], - "charged_moves": [ - "Shadow Ball", - "Dark Pulse", - "Ominous Wind" - ], - "evolutions": [ - { - "pokemon": 563, - "form": 2087 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 562, - "little": true - }, - "563": { - "name": "Cofagrigus", - "forms": { - "2087": { - "name": "Normal", - "proto": "COFAGRIGUS_NORMAL" - }, - "2088": { - "name": "Shadow", - "proto": "COFAGRIGUS_SHADOW" - }, - "2089": { - "name": "Purified", - "proto": "COFAGRIGUS_PURIFIED" - } - }, - "default_form_id": 2087, - "pokedex_id": 563, - "genId": "5", - "generation": "Unova", - "types": [ - "Ghost" - ], - "attack": 163, - "defense": 237, - "stamina": 151, - "height": 1.7, - "weight": 76.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Astonish", - "Zen Headbutt" - ], - "charged_moves": [ - "Shadow Ball", - "Dark Pulse", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 562 - }, - "564": { - "name": "Tirtouga", - "forms": { - "2090": { - "name": "Normal", - "proto": "TIRTOUGA_NORMAL" - }, - "2091": { - "name": "Shadow", - "proto": "TIRTOUGA_SHADOW" - }, - "2092": { - "name": "Purified", - "proto": "TIRTOUGA_PURIFIED" - } - }, - "default_form_id": 2090, - "pokedex_id": 564, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Rock" - ], - "attack": 134, - "defense": 146, - "stamina": 144, - "height": 0.7, - "weight": 16.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Water Gun", - "Bite" - ], - "charged_moves": [ - "Surf", - "Ancient Power", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 565 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 564, - "little": true - }, - "565": { - "name": "Carracosta", - "forms": { - "2093": { - "name": "Normal", - "proto": "CARRACOSTA_NORMAL" - }, - "2094": { - "name": "Shadow", - "proto": "CARRACOSTA_SHADOW" - }, - "2095": { - "name": "Purified", - "proto": "CARRACOSTA_PURIFIED" - } - }, - "default_form_id": 2093, - "pokedex_id": 565, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Rock" - ], - "attack": 192, - "defense": 197, - "stamina": 179, - "height": 1.2, - "weight": 81, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Water Gun", - "Rock Throw" - ], - "charged_moves": [ - "Surf", - "Ancient Power", - "Body Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 564 - }, - "566": { - "name": "Archen", - "forms": { - "2096": { - "name": "Normal", - "proto": "ARCHEN_NORMAL" - }, - "2097": { - "name": "Shadow", - "proto": "ARCHEN_SHADOW" - }, - "2098": { - "name": "Purified", - "proto": "ARCHEN_PURIFIED" - } - }, - "default_form_id": 2096, - "pokedex_id": 566, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock", - "Flying" - ], - "attack": 213, - "defense": 89, - "stamina": 146, - "height": 0.5, - "weight": 9.5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Quick Attack", - "Wing Attack" - ], - "charged_moves": [ - "Dragon Claw", - "Ancient Power", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 567 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 566, - "little": true - }, - "567": { - "name": "Archeops", - "forms": { - "2099": { - "name": "Normal", - "proto": "ARCHEOPS_NORMAL" - }, - "2100": { - "name": "Shadow", - "proto": "ARCHEOPS_SHADOW" - }, - "2101": { - "name": "Purified", - "proto": "ARCHEOPS_PURIFIED" - } - }, - "default_form_id": 2099, - "pokedex_id": 567, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock", - "Flying" - ], - "attack": 292, - "defense": 139, - "stamina": 181, - "height": 1.4, - "weight": 32, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Steel Wing", - "Wing Attack" - ], - "charged_moves": [ - "Dragon Claw", - "Ancient Power", - "Crunch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 566 - }, - "568": { - "name": "Trubbish", - "forms": { - "2102": { - "name": "Normal", - "proto": "TRUBBISH_NORMAL" - }, - "2103": { - "name": "Shadow", - "proto": "TRUBBISH_SHADOW" - }, - "2104": { - "name": "Purified", - "proto": "TRUBBISH_PURIFIED" - } - }, - "default_form_id": 2102, - "pokedex_id": 568, - "genId": "5", - "generation": "Unova", - "types": [ - "Poison" - ], - "attack": 96, - "defense": 122, - "stamina": 137, - "height": 0.6, - "weight": 31, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Pound", - "Take Down" - ], - "charged_moves": [ - "Gunk Shot", - "Seed Bomb", - "Gunk Shot" - ], - "evolutions": [ - { - "pokemon": 569 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 568, - "little": true - }, - "569": { - "name": "Garbodor", - "forms": { - "2105": { - "name": "Normal", - "proto": "GARBODOR_NORMAL" - }, - "2106": { - "name": "Shadow", - "proto": "GARBODOR_SHADOW" - }, - "2107": { - "name": "Purified", - "proto": "GARBODOR_PURIFIED" - } - }, - "default_form_id": 2105, - "pokedex_id": 569, - "genId": "5", - "generation": "Unova", - "types": [ - "Poison" - ], - "attack": 181, - "defense": 164, - "stamina": 190, - "height": 1.9, - "weight": 107.3, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Infestation", - "Take Down" - ], - "charged_moves": [ - "Acid Spray", - "Seed Bomb", - "Gunk Shot", - "Body Slam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 568 - }, - "570": { - "name": "Zorua", - "forms": { - "2108": { - "name": "Normal", - "proto": "ZORUA_NORMAL" - }, - "2109": { - "name": "Shadow", - "proto": "ZORUA_SHADOW" - }, - "2110": { - "name": "Purified", - "proto": "ZORUA_PURIFIED" - } - }, - "default_form_id": 2108, - "pokedex_id": 570, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark" - ], - "attack": 153, - "defense": 78, - "stamina": 120, - "height": 0.7, - "weight": 12.5, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Scratch", - "Feint Attack" - ], - "charged_moves": [ - "Foul Play", - "Aerial Ace", - "Dark Pulse" - ], - "evolutions": [ - { - "pokemon": 571 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 570, - "little": true - }, - "571": { - "name": "Zoroark", - "forms": { - "2111": { - "name": "Normal", - "proto": "ZOROARK_NORMAL" - }, - "2112": { - "name": "Shadow", - "proto": "ZOROARK_SHADOW" - }, - "2113": { - "name": "Purified", - "proto": "ZOROARK_PURIFIED" - } - }, - "default_form_id": 2111, - "pokedex_id": 571, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark" - ], - "attack": 250, - "defense": 127, - "stamina": 155, - "height": 1.6, - "weight": 81.1, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Shadow Claw", - "Snarl" - ], - "charged_moves": [ - "Foul Play", - "Sludge Bomb", - "Flamethrower" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 570 - }, - "572": { - "name": "Minccino", - "forms": { - "2114": { - "name": "Normal", - "proto": "MINCCINO_NORMAL" - }, - "2115": { - "name": "Shadow", - "proto": "MINCCINO_SHADOW" - }, - "2116": { - "name": "Purified", - "proto": "MINCCINO_PURIFIED" - } - }, - "default_form_id": 2114, - "pokedex_id": 572, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 98, - "defense": 80, - "stamina": 146, - "height": 0.4, - "weight": 5.8, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Pound", - "Charm" - ], - "charged_moves": [ - "Swift", - "Thunderbolt", - "Aqua Tail" - ], - "evolutions": [ - { - "pokemon": 573 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 572, - "little": true - }, - "573": { - "name": "Cinccino", - "forms": { - "2117": { - "name": "Normal", - "proto": "CINCCINO_NORMAL" - }, - "2118": { - "name": "Shadow", - "proto": "CINCCINO_SHADOW" - }, - "2119": { - "name": "Purified", - "proto": "CINCCINO_PURIFIED" - } - }, - "default_form_id": 2117, - "pokedex_id": 573, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 198, - "defense": 130, - "stamina": 181, - "height": 0.5, - "weight": 7.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Pound", - "Charm" - ], - "charged_moves": [ - "Hyper Beam", - "Thunderbolt", - "Aqua Tail" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 572 - }, - "574": { - "name": "Gothita", - "forms": { - "2120": { - "name": "Normal", - "proto": "GOTHITA_NORMAL" - }, - "2121": { - "name": "Shadow", - "proto": "GOTHITA_SHADOW" - }, - "2122": { - "name": "Purified", - "proto": "GOTHITA_PURIFIED" - } - }, - "default_form_id": 2120, - "pokedex_id": 574, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 98, - "defense": 112, - "stamina": 128, - "height": 0.4, - "weight": 5.8, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Pound", - "Confusion" - ], - "charged_moves": [ - "Psybeam", - "Psyshock", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 575 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 574, - "little": true - }, - "575": { - "name": "Gothorita", - "forms": { - "2123": { - "name": "Normal", - "proto": "GOTHORITA_NORMAL" - }, - "2124": { - "name": "Shadow", - "proto": "GOTHORITA_SHADOW" - }, - "2125": { - "name": "Purified", - "proto": "GOTHORITA_PURIFIED" - } - }, - "default_form_id": 2123, - "pokedex_id": 575, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 137, - "defense": 153, - "stamina": 155, - "height": 0.7, - "weight": 18, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Pound", - "Confusion" - ], - "charged_moves": [ - "Psybeam", - "Futuresight", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 576 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 574 - }, - "576": { - "name": "Gothitelle", - "forms": { - "2126": { - "name": "Normal", - "proto": "GOTHITELLE_NORMAL" - }, - "2127": { - "name": "Shadow", - "proto": "GOTHITELLE_SHADOW" - }, - "2128": { - "name": "Purified", - "proto": "GOTHITELLE_PURIFIED" - } - }, - "default_form_id": 2126, - "pokedex_id": 576, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 176, - "defense": 205, - "stamina": 172, - "height": 1.5, - "weight": 44, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Charm", - "Confusion" - ], - "charged_moves": [ - "Rock Slide", - "Futuresight", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 574 - }, - "577": { - "name": "Solosis", - "forms": { - "2129": { - "name": "Normal", - "proto": "SOLOSIS_NORMAL" - }, - "2130": { - "name": "Shadow", - "proto": "SOLOSIS_SHADOW" - }, - "2131": { - "name": "Purified", - "proto": "SOLOSIS_PURIFIED" - } - }, - "default_form_id": 2129, - "pokedex_id": 577, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 170, - "defense": 83, - "stamina": 128, - "height": 0.3, - "weight": 1, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Hidden Power", - "Zen Headbutt" - ], - "charged_moves": [ - "Psyshock", - "Night Shade", - "Thunder" - ], - "evolutions": [ - { - "pokemon": 578 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 577, - "little": true - }, - "578": { - "name": "Duosion", - "forms": { - "2132": { - "name": "Normal", - "proto": "DUOSION_NORMAL" - }, - "2133": { - "name": "Shadow", - "proto": "DUOSION_SHADOW" - }, - "2134": { - "name": "Purified", - "proto": "DUOSION_PURIFIED" - } - }, - "default_form_id": 2132, - "pokedex_id": 578, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 208, - "defense": 103, - "stamina": 163, - "height": 0.6, - "weight": 8, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Hidden Power", - "Zen Headbutt" - ], - "charged_moves": [ - "Psyshock", - "Night Shade", - "Thunder" - ], - "evolutions": [ - { - "pokemon": 579 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 577 - }, - "579": { - "name": "Reuniclus", - "forms": { - "2135": { - "name": "Normal", - "proto": "REUNICLUS_NORMAL" - }, - "2136": { - "name": "Shadow", - "proto": "REUNICLUS_SHADOW" - }, - "2137": { - "name": "Purified", - "proto": "REUNICLUS_PURIFIED" - } - }, - "default_form_id": 2135, - "pokedex_id": 579, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 214, - "defense": 148, - "stamina": 242, - "height": 1, - "weight": 20.1, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Hidden Power", - "Zen Headbutt" - ], - "charged_moves": [ - "Futuresight", - "Shadow Ball", - "Thunder" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 577 - }, - "580": { - "name": "Ducklett", - "forms": { - "2138": { - "name": "Normal", - "proto": "DUCKLETT_NORMAL" - }, - "2139": { - "name": "Shadow", - "proto": "DUCKLETT_SHADOW" - }, - "2140": { - "name": "Purified", - "proto": "DUCKLETT_PURIFIED" - } - }, - "default_form_id": 2138, - "pokedex_id": 580, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Flying" - ], - "attack": 84, - "defense": 96, - "stamina": 158, - "height": 0.5, - "weight": 5.5, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Water Gun", - "Wing Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Bubble Beam", - "Brave Bird" - ], - "evolutions": [ - { - "pokemon": 581 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 580, - "little": true - }, - "581": { - "name": "Swanna", - "forms": { - "2141": { - "name": "Normal", - "proto": "SWANNA_NORMAL" - }, - "2142": { - "name": "Shadow", - "proto": "SWANNA_SHADOW" - }, - "2143": { - "name": "Purified", - "proto": "SWANNA_PURIFIED" - } - }, - "default_form_id": 2141, - "pokedex_id": 581, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Flying" - ], - "attack": 182, - "defense": 132, - "stamina": 181, - "height": 1.3, - "weight": 24.2, - "flee_rate": 0.12, - "capture_rate": 0.4, - "quick_moves": [ - "Water Gun", - "Air Slash" - ], - "charged_moves": [ - "Ice Beam", - "Bubble Beam", - "Hurricane" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 580 - }, - "582": { - "name": "Vanillite", - "forms": { - "2144": { - "name": "Normal", - "proto": "VANILLITE_NORMAL" - }, - "2145": { - "name": "Shadow", - "proto": "VANILLITE_SHADOW" - }, - "2146": { - "name": "Purified", - "proto": "VANILLITE_PURIFIED" - } - }, - "default_form_id": 2144, - "pokedex_id": 582, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 118, - "defense": 106, - "stamina": 113, - "height": 0.4, - "weight": 5.7, - "flee_rate": 0.07, - "capture_rate": 0.4, - "quick_moves": [ - "Powder Snow", - "Astonish" - ], - "charged_moves": [ - "Icy Wind", - "Ice Beam", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 583 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 582, - "little": true - }, - "583": { - "name": "Vanillish", - "forms": { - "2147": { - "name": "Normal", - "proto": "VANILLISH_NORMAL" - }, - "2148": { - "name": "Shadow", - "proto": "VANILLISH_SHADOW" - }, - "2149": { - "name": "Purified", - "proto": "VANILLISH_PURIFIED" - } - }, - "default_form_id": 2147, - "pokedex_id": 583, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 151, - "defense": 138, - "stamina": 139, - "height": 1.1, - "weight": 41, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Frost Breath", - "Astonish" - ], - "charged_moves": [ - "Icy Wind", - "Ice Beam", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 584 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 582 - }, - "584": { - "name": "Vanilluxe", - "forms": { - "2150": { - "name": "Normal", - "proto": "VANILLUXE_NORMAL" - }, - "2151": { - "name": "Shadow", - "proto": "VANILLUXE_SHADOW" - }, - "2152": { - "name": "Purified", - "proto": "VANILLUXE_PURIFIED" - } - }, - "default_form_id": 2150, - "pokedex_id": 584, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 218, - "defense": 184, - "stamina": 174, - "height": 1.3, - "weight": 57.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Frost Breath", - "Astonish" - ], - "charged_moves": [ - "Blizzard", - "Flash Cannon", - "Signal Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 582 - }, - "585": { - "name": "Deerling", - "forms": { - "585": { - "name": "Spring", - "proto": "DEERLING_SPRING", - "evolutions": [ - { - "pokemon": 586, - "form": 589 - } - ] - }, - "586": { - "name": "Summer", - "proto": "DEERLING_SUMMER", - "evolutions": [ - { - "pokemon": 586, - "form": 590 - } - ] - }, - "587": { - "name": "Autumn", - "proto": "DEERLING_AUTUMN", - "evolutions": [ - { - "pokemon": 586, - "form": 591 - } - ] - }, - "588": { - "name": "Winter", - "proto": "DEERLING_WINTER", - "evolutions": [ - { - "pokemon": 586, - "form": 592 - } - ] - } - }, - "default_form_id": 585, - "pokedex_id": 585, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Grass" - ], - "attack": 115, - "defense": 100, - "stamina": 155, - "height": 0.6, - "weight": 19.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Take Down" - ], - "charged_moves": [ - "Energy Ball", - "Seed Bomb", - "Wild Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 585, - "little": true - }, - "586": { - "name": "Sawsbuck", - "forms": { - "589": { - "name": "Spring", - "proto": "SAWSBUCK_SPRING" - }, - "590": { - "name": "Summer", - "proto": "SAWSBUCK_SUMMER" - }, - "591": { - "name": "Autumn", - "proto": "SAWSBUCK_AUTUMN" - }, - "592": { - "name": "Winter", - "proto": "SAWSBUCK_WINTER" - } - }, - "default_form_id": 589, - "pokedex_id": 586, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Grass" - ], - "attack": 198, - "defense": 146, - "stamina": 190, - "height": 1.9, - "weight": 92.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Feint Attack", - "Take Down" - ], - "charged_moves": [ - "Megahorn", - "Solar Beam", - "Wild Charge", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 585 - }, - "587": { - "name": "Emolga", - "forms": { - "2153": { - "name": "Normal", - "proto": "EMOLGA_NORMAL" - }, - "2154": { - "name": "Shadow", - "proto": "EMOLGA_SHADOW" - }, - "2155": { - "name": "Purified", - "proto": "EMOLGA_PURIFIED" - } - }, - "default_form_id": 2153, - "pokedex_id": 587, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric", - "Flying" - ], - "attack": 158, - "defense": 127, - "stamina": 146, - "height": 0.4, - "weight": 5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Thunder Shock", - "Quick Attack" - ], - "charged_moves": [ - "Discharge", - "Aerial Ace", - "Thunderbolt" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 587 - }, - "588": { - "name": "Karrablast", - "forms": { - "2156": { - "name": "Normal", - "proto": "KARRABLAST_NORMAL" - }, - "2157": { - "name": "Shadow", - "proto": "KARRABLAST_SHADOW" - }, - "2158": { - "name": "Purified", - "proto": "KARRABLAST_PURIFIED" - } - }, - "default_form_id": 2156, - "pokedex_id": 588, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug" - ], - "attack": 137, - "defense": 87, - "stamina": 137, - "height": 0.5, - "weight": 5.9, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Peck", - "Fury Cutter" - ], - "charged_moves": [ - "Signal Beam", - "X Scissor", - "Drill Run", - "Aerial Ace" - ], - "evolutions": [ - { - "pokemon": 589 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 588, - "little": true - }, - "589": { - "name": "Escavalier", - "forms": { - "2159": { - "name": "Normal", - "proto": "ESCAVALIER_NORMAL" - }, - "2160": { - "name": "Shadow", - "proto": "ESCAVALIER_SHADOW" - }, - "2161": { - "name": "Purified", - "proto": "ESCAVALIER_PURIFIED" - } - }, - "default_form_id": 2159, - "pokedex_id": 589, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Steel" - ], - "attack": 223, - "defense": 187, - "stamina": 172, - "height": 1, - "weight": 33, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Counter", - "Bug Bite" - ], - "charged_moves": [ - "Megahorn", - "Acid Spray", - "Drill Run", - "Aerial Ace" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 588 - }, - "590": { - "name": "Foongus", - "forms": { - "2162": { - "name": "Normal", - "proto": "FOONGUS_NORMAL" - }, - "2163": { - "name": "Shadow", - "proto": "FOONGUS_SHADOW" - }, - "2164": { - "name": "Purified", - "proto": "FOONGUS_PURIFIED" - } - }, - "default_form_id": 2162, - "pokedex_id": 590, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Poison" - ], - "attack": 97, - "defense": 91, - "stamina": 170, - "height": 0.2, - "weight": 1, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Feint Attack" - ], - "charged_moves": [ - "Energy Ball", - "Body Slam", - "Grass Knot" - ], - "evolutions": [ - { - "pokemon": 591 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 590, - "little": true - }, - "591": { - "name": "Amoonguss", - "forms": { - "2165": { - "name": "Normal", - "proto": "AMOONGUSS_NORMAL" - }, - "2166": { - "name": "Shadow", - "proto": "AMOONGUSS_SHADOW" - }, - "2167": { - "name": "Purified", - "proto": "AMOONGUSS_PURIFIED" - } - }, - "default_form_id": 2165, - "pokedex_id": 591, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Poison" - ], - "attack": 155, - "defense": 139, - "stamina": 249, - "height": 0.6, - "weight": 10.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Astonish", - "Feint Attack" - ], - "charged_moves": [ - "Foul Play", - "Sludge Bomb", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 590 - }, - "592": { - "name": "Frillish", - "forms": { - "2168": { - "name": "Normal", - "proto": "FRILLISH_NORMAL", - "evolutions": [ - { - "pokemon": 593, - "form": 2171 - } - ] - }, - "2169": { - "name": "Shadow", - "proto": "FRILLISH_SHADOW" - }, - "2170": { - "name": "Purified", - "proto": "FRILLISH_PURIFIED" - }, - "2330": { - "name": "Female", - "proto": "FRILLISH_FEMALE", - "evolutions": [ - { - "pokemon": 593, - "form": 2331 - } - ] - } - }, - "default_form_id": 2168, - "pokedex_id": 592, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Ghost" - ], - "attack": 115, - "defense": 134, - "stamina": 146, - "height": 1.2, - "weight": 33, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Bubble", - "Hex" - ], - "charged_moves": [ - "Night Shade", - "Ice Beam", - "Ominous Wind" - ], - "evolutions": [ - { - "pokemon": 593 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 592, - "little": true - }, - "593": { - "name": "Jellicent", - "forms": { - "2171": { - "name": "Normal", - "proto": "JELLICENT_NORMAL" - }, - "2172": { - "name": "Shadow", - "proto": "JELLICENT_SHADOW" - }, - "2173": { - "name": "Purified", - "proto": "JELLICENT_PURIFIED" - }, - "2331": { - "name": "Female", - "proto": "JELLICENT_FEMALE" - } - }, - "default_form_id": 2171, - "pokedex_id": 593, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Ghost" - ], - "attack": 159, - "defense": 178, - "stamina": 225, - "height": 2.2, - "weight": 135, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Bubble", - "Hex" - ], - "charged_moves": [ - "Shadow Ball", - "Ice Beam", - "Bubble Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 592 - }, - "594": { - "name": "Alomomola", - "forms": { - "2174": { - "name": "Normal", - "proto": "ALOMOMOLA_NORMAL" - }, - "2175": { - "name": "Shadow", - "proto": "ALOMOMOLA_SHADOW" - }, - "2176": { - "name": "Purified", - "proto": "ALOMOMOLA_PURIFIED" - } - }, - "default_form_id": 2174, - "pokedex_id": 594, - "genId": "5", - "generation": "Unova", - "types": [ - "Water" - ], - "attack": 138, - "defense": 131, - "stamina": 338, - "height": 1.2, - "weight": 31.6, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Waterfall", - "Hidden Power" - ], - "charged_moves": [ - "Hydro Pump", - "Blizzard", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 594 - }, - "595": { - "name": "Joltik", - "forms": { - "2177": { - "name": "Normal", - "proto": "JOLTIK_NORMAL" - }, - "2178": { - "name": "Shadow", - "proto": "JOLTIK_SHADOW" - }, - "2179": { - "name": "Purified", - "proto": "JOLTIK_PURIFIED" - } - }, - "default_form_id": 2177, - "pokedex_id": 595, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Electric" - ], - "attack": 110, - "defense": 98, - "stamina": 137, - "height": 0.1, - "weight": 0.6, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Charge Beam", - "Sucker Punch" - ], - "charged_moves": [ - "Cross Poison", - "Bug Buzz", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 596 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 595, - "little": true - }, - "596": { - "name": "Galvantula", - "forms": { - "2180": { - "name": "Normal", - "proto": "GALVANTULA_NORMAL" - }, - "2181": { - "name": "Shadow", - "proto": "GALVANTULA_SHADOW" - }, - "2182": { - "name": "Purified", - "proto": "GALVANTULA_PURIFIED" - } - }, - "default_form_id": 2180, - "pokedex_id": 596, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Electric" - ], - "attack": 201, - "defense": 128, - "stamina": 172, - "height": 0.8, - "weight": 14.3, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Volt Switch", - "Fury Cutter" - ], - "charged_moves": [ - "Cross Poison", - "Bug Buzz", - "Discharge", - "Energy Ball", - "Lunge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 595 - }, - "597": { - "name": "Ferroseed", - "forms": { - "2183": { - "name": "Normal", - "proto": "FERROSEED_NORMAL" - }, - "2184": { - "name": "Shadow", - "proto": "FERROSEED_SHADOW" - }, - "2185": { - "name": "Purified", - "proto": "FERROSEED_PURIFIED" - } - }, - "default_form_id": 2183, - "pokedex_id": 597, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Steel" - ], - "attack": 82, - "defense": 155, - "stamina": 127, - "height": 0.6, - "weight": 18.8, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Tackle", - "Metal Claw" - ], - "charged_moves": [ - "Gyro Ball", - "Flash Cannon", - "Iron Head" - ], - "evolutions": [ - { - "pokemon": 598 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 597, - "little": true - }, - "598": { - "name": "Ferrothorn", - "forms": { - "2186": { - "name": "Normal", - "proto": "FERROTHORN_NORMAL" - }, - "2187": { - "name": "Shadow", - "proto": "FERROTHORN_SHADOW" - }, - "2188": { - "name": "Purified", - "proto": "FERROTHORN_PURIFIED" - } - }, - "default_form_id": 2186, - "pokedex_id": 598, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Steel" - ], - "attack": 158, - "defense": 223, - "stamina": 179, - "height": 1, - "weight": 110, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Bullet Seed", - "Metal Claw" - ], - "charged_moves": [ - "Power Whip", - "Flash Cannon", - "Acid Spray", - "Thunder", - "Mirror Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 597 - }, - "599": { - "name": "Klink", - "forms": { - "2189": { - "name": "Normal", - "proto": "KLINK_NORMAL" - }, - "2190": { - "name": "Shadow", - "proto": "KLINK_SHADOW" - }, - "2191": { - "name": "Purified", - "proto": "KLINK_PURIFIED" - } - }, - "default_form_id": 2189, - "pokedex_id": 599, - "genId": "5", - "generation": "Unova", - "types": [ - "Steel" - ], - "attack": 98, - "defense": 121, - "stamina": 120, - "height": 0.3, - "weight": 21, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Volt Switch", - "Charge Beam" - ], - "charged_moves": [ - "Vice Grip", - "Discharge", - "Zap Cannon" - ], - "evolutions": [ - { - "pokemon": 600 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 599, - "little": true - }, - "600": { - "name": "Klang", - "forms": { - "2192": { - "name": "Normal", - "proto": "KLANG_NORMAL" - }, - "2193": { - "name": "Shadow", - "proto": "KLANG_SHADOW" - }, - "2194": { - "name": "Purified", - "proto": "KLANG_PURIFIED" - } - }, - "default_form_id": 2192, - "pokedex_id": 600, - "genId": "5", - "generation": "Unova", - "types": [ - "Steel" - ], - "attack": 150, - "defense": 174, - "stamina": 155, - "height": 0.6, - "weight": 51, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Thunder Shock", - "Charge Beam" - ], - "charged_moves": [ - "Vice Grip", - "Thunderbolt", - "Zap Cannon" - ], - "evolutions": [ - { - "pokemon": 601 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 599 - }, - "601": { - "name": "Klinklang", - "forms": { - "2195": { - "name": "Normal", - "proto": "KLINKLANG_NORMAL" - }, - "2196": { - "name": "Shadow", - "proto": "KLINKLANG_SHADOW" - }, - "2197": { - "name": "Purified", - "proto": "KLINKLANG_PURIFIED" - } - }, - "default_form_id": 2195, - "pokedex_id": 601, - "genId": "5", - "generation": "Unova", - "types": [ - "Steel" - ], - "attack": 199, - "defense": 214, - "stamina": 155, - "height": 0.6, - "weight": 81, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Thunder Shock", - "Charge Beam" - ], - "charged_moves": [ - "Hyper Beam", - "Flash Cannon", - "Zap Cannon", - "Mirror Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 599 - }, - "602": { - "name": "Tynamo", - "forms": { - "2198": { - "name": "Normal", - "proto": "TYNAMO_NORMAL" - }, - "2199": { - "name": "Shadow", - "proto": "TYNAMO_SHADOW" - }, - "2200": { - "name": "Purified", - "proto": "TYNAMO_PURIFIED" - } - }, - "default_form_id": 2198, - "pokedex_id": 602, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric" - ], - "attack": 105, - "defense": 78, - "stamina": 111, - "height": 0.2, - "weight": 0.3, - "flee_rate": 0.15, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Spark" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 603 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 602, - "little": true - }, - "603": { - "name": "Eelektrik", - "forms": { - "2201": { - "name": "Normal", - "proto": "EELEKTRIK_NORMAL" - }, - "2202": { - "name": "Shadow", - "proto": "EELEKTRIK_SHADOW" - }, - "2203": { - "name": "Purified", - "proto": "EELEKTRIK_PURIFIED" - } - }, - "default_form_id": 2201, - "pokedex_id": 603, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric" - ], - "attack": 156, - "defense": 130, - "stamina": 163, - "height": 1.2, - "weight": 22, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Acid", - "Spark" - ], - "charged_moves": [ - "Crunch", - "Thunderbolt", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 604 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 602 - }, - "604": { - "name": "Eelektross", - "forms": { - "2204": { - "name": "Normal", - "proto": "EELEKTROSS_NORMAL" - }, - "2205": { - "name": "Shadow", - "proto": "EELEKTROSS_SHADOW" - }, - "2206": { - "name": "Purified", - "proto": "EELEKTROSS_PURIFIED" - } - }, - "default_form_id": 2204, - "pokedex_id": 604, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric" - ], - "attack": 217, - "defense": 152, - "stamina": 198, - "height": 2.1, - "weight": 80.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Acid", - "Spark" - ], - "charged_moves": [ - "Crunch", - "Thunderbolt", - "Acid Spray", - "Dragon Claw" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 602 - }, - "605": { - "name": "Elgyem", - "forms": { - "2207": { - "name": "Normal", - "proto": "ELGYEM_NORMAL" - }, - "2208": { - "name": "Shadow", - "proto": "ELGYEM_SHADOW" - }, - "2209": { - "name": "Purified", - "proto": "ELGYEM_PURIFIED" - } - }, - "default_form_id": 2207, - "pokedex_id": 605, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 148, - "defense": 100, - "stamina": 146, - "height": 0.5, - "weight": 9, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Confusion", - "Astonish" - ], - "charged_moves": [ - "Psybeam", - "Dark Pulse", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 606 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 605, - "little": true - }, - "606": { - "name": "Beheeyem", - "forms": { - "2210": { - "name": "Normal", - "proto": "BEHEEYEM_NORMAL" - }, - "2211": { - "name": "Shadow", - "proto": "BEHEEYEM_SHADOW" - }, - "2212": { - "name": "Purified", - "proto": "BEHEEYEM_PURIFIED" - } - }, - "default_form_id": 2210, - "pokedex_id": 606, - "genId": "5", - "generation": "Unova", - "types": [ - "Psychic" - ], - "attack": 221, - "defense": 163, - "stamina": 181, - "height": 1, - "weight": 34.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Confusion", - "Astonish" - ], - "charged_moves": [ - "Rock Slide", - "Dark Pulse", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 605 - }, - "607": { - "name": "Litwick", - "forms": { - "2213": { - "name": "Normal", - "proto": "LITWICK_NORMAL" - }, - "2214": { - "name": "Shadow", - "proto": "LITWICK_SHADOW" - }, - "2215": { - "name": "Purified", - "proto": "LITWICK_PURIFIED" - } - }, - "default_form_id": 2213, - "pokedex_id": 607, - "genId": "5", - "generation": "Unova", - "types": [ - "Ghost", - "Fire" - ], - "attack": 108, - "defense": 98, - "stamina": 137, - "height": 0.3, - "weight": 3.1, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Astonish", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flame Burst", - "Heat Wave" - ], - "evolutions": [ - { - "pokemon": 608 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 607, - "little": true - }, - "608": { - "name": "Lampent", - "forms": { - "2216": { - "name": "Normal", - "proto": "LAMPENT_NORMAL" - }, - "2217": { - "name": "Shadow", - "proto": "LAMPENT_SHADOW" - }, - "2218": { - "name": "Purified", - "proto": "LAMPENT_PURIFIED" - } - }, - "default_form_id": 2216, - "pokedex_id": 608, - "genId": "5", - "generation": "Unova", - "types": [ - "Ghost", - "Fire" - ], - "attack": 169, - "defense": 115, - "stamina": 155, - "height": 0.6, - "weight": 13, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Astonish", - "Ember" - ], - "charged_moves": [ - "Energy Ball", - "Flame Burst", - "Heat Wave" - ], - "evolutions": [ - { - "pokemon": 609 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 607 - }, - "609": { - "name": "Chandelure", - "forms": { - "2219": { - "name": "Normal", - "proto": "CHANDELURE_NORMAL" - }, - "2220": { - "name": "Shadow", - "proto": "CHANDELURE_SHADOW" - }, - "2221": { - "name": "Purified", - "proto": "CHANDELURE_PURIFIED" - } - }, - "default_form_id": 2219, - "pokedex_id": 609, - "genId": "5", - "generation": "Unova", - "types": [ - "Ghost", - "Fire" - ], - "attack": 271, - "defense": 182, - "stamina": 155, - "height": 1, - "weight": 34.3, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Hex", - "Fire Spin", - "Incinerate" - ], - "charged_moves": [ - "Energy Ball", - "Shadow Ball", - "Overheat", - "Flame Charge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 607 - }, - "610": { - "name": "Axew", - "forms": { - "2222": { - "name": "Normal", - "proto": "AXEW_NORMAL" - }, - "2223": { - "name": "Shadow", - "proto": "AXEW_SHADOW" - }, - "2224": { - "name": "Purified", - "proto": "AXEW_PURIFIED" - } - }, - "default_form_id": 2222, - "pokedex_id": 610, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon" - ], - "attack": 154, - "defense": 101, - "stamina": 130, - "height": 0.6, - "weight": 18, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Scratch", - "Iron Tail" - ], - "charged_moves": [ - "Dragon Claw", - "Aqua Tail", - "Dragon Pulse" - ], - "evolutions": [ - { - "pokemon": 611 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 610, - "little": true - }, - "611": { - "name": "Fraxure", - "forms": { - "2225": { - "name": "Normal", - "proto": "FRAXURE_NORMAL" - }, - "2226": { - "name": "Shadow", - "proto": "FRAXURE_SHADOW" - }, - "2227": { - "name": "Purified", - "proto": "FRAXURE_PURIFIED" - } - }, - "default_form_id": 2225, - "pokedex_id": 611, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon" - ], - "attack": 212, - "defense": 123, - "stamina": 165, - "height": 1, - "weight": 36, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Dragon Tail", - "Iron Tail" - ], - "charged_moves": [ - "Dragon Claw", - "Aqua Tail", - "Night Slash" - ], - "evolutions": [ - { - "pokemon": 612 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 610 - }, - "612": { - "name": "Haxorus", - "forms": { - "2228": { - "name": "Normal", - "proto": "HAXORUS_NORMAL" - }, - "2229": { - "name": "Shadow", - "proto": "HAXORUS_SHADOW" - }, - "2230": { - "name": "Purified", - "proto": "HAXORUS_PURIFIED" - } - }, - "default_form_id": 2228, - "pokedex_id": 612, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon" - ], - "attack": 284, - "defense": 172, - "stamina": 183, - "height": 1.8, - "weight": 105.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Dragon Tail", - "Counter" - ], - "charged_moves": [ - "Dragon Claw", - "Surf", - "Night Slash", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 610 - }, - "613": { - "name": "Cubchoo", - "forms": { - "2231": { - "name": "Normal", - "proto": "CUBCHOO_NORMAL", - "evolutions": [ - { - "pokemon": 614 - } - ] - }, - "2232": { - "name": "Shadow", - "proto": "CUBCHOO_SHADOW" - }, - "2233": { - "name": "Purified", - "proto": "CUBCHOO_PURIFIED" - }, - "2672": { - "name": "Winter 2020", - "proto": "CUBCHOO_WINTER_2020" - } - }, - "default_form_id": 2231, - "pokedex_id": 613, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 128, - "defense": 74, - "stamina": 146, - "height": 0.5, - "weight": 8.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Powder Snow", - "Charm" - ], - "charged_moves": [ - "Ice Punch", - "Icy Wind", - "Play Rough" - ], - "evolutions": [ - { - "pokemon": 614 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 613, - "little": true - }, - "614": { - "name": "Beartic", - "forms": { - "2234": { - "name": "Normal", - "proto": "BEARTIC_NORMAL" - }, - "2235": { - "name": "Shadow", - "proto": "BEARTIC_SHADOW" - }, - "2236": { - "name": "Purified", - "proto": "BEARTIC_PURIFIED" - } - }, - "default_form_id": 2234, - "pokedex_id": 614, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 233, - "defense": 152, - "stamina": 216, - "height": 2.6, - "weight": 260, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Powder Snow", - "Charm" - ], - "charged_moves": [ - "Ice Punch", - "Surf", - "Play Rough" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 613 - }, - "615": { - "name": "Cryogonal", - "forms": { - "2237": { - "name": "Normal", - "proto": "CRYOGONAL_NORMAL" - }, - "2238": { - "name": "Shadow", - "proto": "CRYOGONAL_SHADOW" - }, - "2239": { - "name": "Purified", - "proto": "CRYOGONAL_PURIFIED" - } - }, - "default_form_id": 2237, - "pokedex_id": 615, - "genId": "5", - "generation": "Unova", - "types": [ - "Ice" - ], - "attack": 190, - "defense": 218, - "stamina": 190, - "height": 1.1, - "weight": 148, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Ice Shard", - "Frost Breath" - ], - "charged_moves": [ - "Aurora Beam", - "Night Slash", - "Solar Beam", - "Water Pulse" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 615 - }, - "616": { - "name": "Shelmet", - "forms": { - "2240": { - "name": "Normal", - "proto": "SHELMET_NORMAL" - }, - "2241": { - "name": "Shadow", - "proto": "SHELMET_SHADOW" - }, - "2242": { - "name": "Purified", - "proto": "SHELMET_PURIFIED" - } - }, - "default_form_id": 2240, - "pokedex_id": 616, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug" - ], - "attack": 72, - "defense": 140, - "stamina": 137, - "height": 0.4, - "weight": 7.7, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Acid", - "Infestation" - ], - "charged_moves": [ - "Bug Buzz", - "Body Slam", - "Signal Beam" - ], - "evolutions": [ - { - "pokemon": 617 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 616, - "little": true - }, - "617": { - "name": "Accelgor", - "forms": { - "2243": { - "name": "Normal", - "proto": "ACCELGOR_NORMAL" - }, - "2244": { - "name": "Shadow", - "proto": "ACCELGOR_SHADOW" - }, - "2245": { - "name": "Purified", - "proto": "ACCELGOR_PURIFIED" - } - }, - "default_form_id": 2243, - "pokedex_id": 617, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug" - ], - "attack": 220, - "defense": 120, - "stamina": 190, - "height": 0.8, - "weight": 25.3, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Acid", - "Infestation" - ], - "charged_moves": [ - "Bug Buzz", - "Acid Spray", - "Signal Beam", - "Focus Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 616 - }, - "618": { - "name": "Stunfisk", - "forms": { - "2246": { - "name": "Normal", - "proto": "STUNFISK_NORMAL" - }, - "2247": { - "name": "Shadow", - "proto": "STUNFISK_SHADOW" - }, - "2248": { - "name": "Purified", - "proto": "STUNFISK_PURIFIED" - }, - "2345": { - "name": "Galarian", - "proto": "STUNFISK_GALARIAN", - "height": 0.7, - "weight": 20.5, - "quick_moves": [ - "Mud Shot", - "Metal Claw" - ], - "charged_moves": [ - "Earthquake", - "Flash Cannon", - "Muddy Water", - "Rock Slide" - ], - "types": [ - "Ground", - "Steel" - ] - } - }, - "default_form_id": 2246, - "pokedex_id": 618, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Electric" - ], - "attack": 144, - "defense": 171, - "stamina": 240, - "height": 0.7, - "weight": 11, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Thunder Shock", - "Mud Shot" - ], - "charged_moves": [ - "Mud Bomb", - "Discharge", - "Muddy Water" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 618 - }, - "619": { - "name": "Mienfoo", - "forms": { - "2249": { - "name": "Normal", - "proto": "MIENFOO_NORMAL" - }, - "2250": { - "name": "Shadow", - "proto": "MIENFOO_SHADOW" - }, - "2251": { - "name": "Purified", - "proto": "MIENFOO_PURIFIED" - } - }, - "default_form_id": 2249, - "pokedex_id": 619, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 160, - "defense": 98, - "stamina": 128, - "height": 0.9, - "weight": 20, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Low Kick", - "Pound" - ], - "charged_moves": [ - "Brick Break", - "Low Sweep", - "Focus Blast" - ], - "evolutions": [ - { - "pokemon": 620 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 619, - "little": true - }, - "620": { - "name": "Mienshao", - "forms": { - "2252": { - "name": "Normal", - "proto": "MIENSHAO_NORMAL" - }, - "2253": { - "name": "Shadow", - "proto": "MIENSHAO_SHADOW" - }, - "2254": { - "name": "Purified", - "proto": "MIENSHAO_PURIFIED" - } - }, - "default_form_id": 2252, - "pokedex_id": 620, - "genId": "5", - "generation": "Unova", - "types": [ - "Fighting" - ], - "attack": 258, - "defense": 127, - "stamina": 163, - "height": 1.4, - "weight": 35.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Low Kick", - "Poison Jab" - ], - "charged_moves": [ - "Brick Break", - "Grass Knot", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 619 - }, - "621": { - "name": "Druddigon", - "forms": { - "2255": { - "name": "Normal", - "proto": "DRUDDIGON_NORMAL" - }, - "2256": { - "name": "Shadow", - "proto": "DRUDDIGON_SHADOW" - }, - "2257": { - "name": "Purified", - "proto": "DRUDDIGON_PURIFIED" - } - }, - "default_form_id": 2255, - "pokedex_id": 621, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon" - ], - "attack": 213, - "defense": 170, - "stamina": 184, - "height": 1.6, - "weight": 139, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Dragon Tail", - "Bite" - ], - "charged_moves": [ - "Dragon Claw", - "Night Slash", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 621 - }, - "622": { - "name": "Golett", - "forms": { - "2258": { - "name": "Normal", - "proto": "GOLETT_NORMAL" - }, - "2259": { - "name": "Shadow", - "proto": "GOLETT_SHADOW" - }, - "2260": { - "name": "Purified", - "proto": "GOLETT_PURIFIED" - } - }, - "default_form_id": 2258, - "pokedex_id": 622, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Ghost" - ], - "attack": 127, - "defense": 92, - "stamina": 153, - "height": 1, - "weight": 92, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Mud Slap" - ], - "charged_moves": [ - "Shadow Punch", - "Brick Break", - "Night Shade" - ], - "evolutions": [ - { - "pokemon": 623 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 622, - "little": true - }, - "623": { - "name": "Golurk", - "forms": { - "2261": { - "name": "Normal", - "proto": "GOLURK_NORMAL" - }, - "2262": { - "name": "Shadow", - "proto": "GOLURK_SHADOW" - }, - "2263": { - "name": "Purified", - "proto": "GOLURK_PURIFIED" - } - }, - "default_form_id": 2261, - "pokedex_id": 623, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Ghost" - ], - "attack": 222, - "defense": 154, - "stamina": 205, - "height": 2.8, - "weight": 330, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Astonish", - "Mud Slap" - ], - "charged_moves": [ - "Shadow Punch", - "Dynamic Punch", - "Earth Power" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 622 - }, - "624": { - "name": "Pawniard", - "forms": { - "2264": { - "name": "Normal", - "proto": "PAWNIARD_NORMAL" - }, - "2265": { - "name": "Shadow", - "proto": "PAWNIARD_SHADOW" - }, - "2266": { - "name": "Purified", - "proto": "PAWNIARD_PURIFIED" - } - }, - "default_form_id": 2264, - "pokedex_id": 624, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Steel" - ], - "attack": 154, - "defense": 114, - "stamina": 128, - "height": 0.5, - "weight": 10.2, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Scratch", - "Fury Cutter" - ], - "charged_moves": [ - "Night Slash", - "Iron Head", - "X Scissor" - ], - "evolutions": [ - { - "pokemon": 625 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 624, - "little": true - }, - "625": { - "name": "Bisharp", - "forms": { - "2267": { - "name": "Normal", - "proto": "BISHARP_NORMAL" - }, - "2268": { - "name": "Shadow", - "proto": "BISHARP_SHADOW" - }, - "2269": { - "name": "Purified", - "proto": "BISHARP_PURIFIED" - } - }, - "default_form_id": 2267, - "pokedex_id": 625, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Steel" - ], - "attack": 232, - "defense": 176, - "stamina": 163, - "height": 1.6, - "weight": 70, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Snarl", - "Metal Claw" - ], - "charged_moves": [ - "Dark Pulse", - "Iron Head", - "X Scissor", - "Focus Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 624 - }, - "626": { - "name": "Bouffalant", - "forms": { - "2270": { - "name": "Normal", - "proto": "BOUFFALANT_NORMAL" - }, - "2271": { - "name": "Shadow", - "proto": "BOUFFALANT_SHADOW" - }, - "2272": { - "name": "Purified", - "proto": "BOUFFALANT_PURIFIED" - } - }, - "default_form_id": 2270, - "pokedex_id": 626, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal" - ], - "attack": 195, - "defense": 182, - "stamina": 216, - "height": 1.6, - "weight": 94.6, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Mud Shot" - ], - "charged_moves": [ - "Megahorn", - "Stomp", - "Skull Bash", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 626 - }, - "627": { - "name": "Rufflet", - "forms": { - "2273": { - "name": "Normal", - "proto": "RUFFLET_NORMAL" - }, - "2274": { - "name": "Shadow", - "proto": "RUFFLET_SHADOW" - }, - "2275": { - "name": "Purified", - "proto": "RUFFLET_PURIFIED" - } - }, - "default_form_id": 2273, - "pokedex_id": 627, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Flying" - ], - "attack": 150, - "defense": 97, - "stamina": 172, - "height": 0.5, - "weight": 10.5, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Peck", - "Wing Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Brave Bird", - "Rock Tomb" - ], - "evolutions": [ - { - "pokemon": 628 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 627, - "little": true - }, - "628": { - "name": "Braviary", - "forms": { - "2276": { - "name": "Normal", - "proto": "BRAVIARY_NORMAL" - }, - "2277": { - "name": "Shadow", - "proto": "BRAVIARY_SHADOW" - }, - "2278": { - "name": "Purified", - "proto": "BRAVIARY_PURIFIED" - } - }, - "default_form_id": 2276, - "pokedex_id": 628, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Flying" - ], - "attack": 232, - "defense": 152, - "stamina": 225, - "height": 1.5, - "weight": 41, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Steel Wing", - "Air Slash" - ], - "charged_moves": [ - "Heat Wave", - "Brave Bird", - "Rock Slide", - "Close Combat" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 627 - }, - "629": { - "name": "Vullaby", - "forms": { - "2279": { - "name": "Normal", - "proto": "VULLABY_NORMAL" - }, - "2280": { - "name": "Shadow", - "proto": "VULLABY_SHADOW" - }, - "2281": { - "name": "Purified", - "proto": "VULLABY_PURIFIED" - } - }, - "default_form_id": 2279, - "pokedex_id": 629, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Flying" - ], - "attack": 105, - "defense": 139, - "stamina": 172, - "height": 0.5, - "weight": 9, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Feint Attack", - "Air Slash" - ], - "charged_moves": [ - "Dark Pulse", - "Brave Bird", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 630 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 629, - "little": true - }, - "630": { - "name": "Mandibuzz", - "forms": { - "2282": { - "name": "Normal", - "proto": "MANDIBUZZ_NORMAL" - }, - "2283": { - "name": "Shadow", - "proto": "MANDIBUZZ_SHADOW" - }, - "2284": { - "name": "Purified", - "proto": "MANDIBUZZ_PURIFIED" - } - }, - "default_form_id": 2282, - "pokedex_id": 630, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Flying" - ], - "attack": 129, - "defense": 205, - "stamina": 242, - "height": 1.2, - "weight": 39.5, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Snarl", - "Air Slash" - ], - "charged_moves": [ - "Dark Pulse", - "Aerial Ace", - "Foul Play", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 629 - }, - "631": { - "name": "Heatmor", - "forms": { - "2285": { - "name": "Normal", - "proto": "HEATMOR_NORMAL" - }, - "2286": { - "name": "Shadow", - "proto": "HEATMOR_SHADOW" - }, - "2287": { - "name": "Purified", - "proto": "HEATMOR_PURIFIED" - } - }, - "default_form_id": 2285, - "pokedex_id": 631, - "genId": "5", - "generation": "Unova", - "types": [ - "Fire" - ], - "attack": 204, - "defense": 129, - "stamina": 198, - "height": 1.4, - "weight": 58, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Lick", - "Fire Spin" - ], - "charged_moves": [ - "Flamethrower", - "Thunder Punch", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 631 - }, - "632": { - "name": "Durant", - "forms": { - "2288": { - "name": "Normal", - "proto": "DURANT_NORMAL" - }, - "2289": { - "name": "Shadow", - "proto": "DURANT_SHADOW" - }, - "2290": { - "name": "Purified", - "proto": "DURANT_PURIFIED" - } - }, - "default_form_id": 2288, - "pokedex_id": 632, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Steel" - ], - "attack": 217, - "defense": 188, - "stamina": 151, - "height": 0.3, - "weight": 33, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Bug Bite", - "Metal Claw" - ], - "charged_moves": [ - "X Scissor", - "Iron Head", - "Stone Edge" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 632 - }, - "633": { - "name": "Deino", - "forms": { - "2291": { - "name": "Normal", - "proto": "DEINO_NORMAL" - }, - "2292": { - "name": "Shadow", - "proto": "DEINO_SHADOW" - }, - "2293": { - "name": "Purified", - "proto": "DEINO_PURIFIED" - } - }, - "default_form_id": 2291, - "pokedex_id": 633, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Dragon" - ], - "attack": 116, - "defense": 93, - "stamina": 141, - "height": 0.8, - "weight": 17.3, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Tackle", - "Dragon Breath" - ], - "charged_moves": [ - "Dragon Pulse", - "Crunch", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 634 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 633, - "little": true - }, - "634": { - "name": "Zweilous", - "forms": { - "2294": { - "name": "Normal", - "proto": "ZWEILOUS_NORMAL" - }, - "2295": { - "name": "Shadow", - "proto": "ZWEILOUS_SHADOW" - }, - "2296": { - "name": "Purified", - "proto": "ZWEILOUS_PURIFIED" - } - }, - "default_form_id": 2294, - "pokedex_id": 634, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Dragon" - ], - "attack": 159, - "defense": 135, - "stamina": 176, - "height": 1.4, - "weight": 50, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Bite", - "Dragon Breath" - ], - "charged_moves": [ - "Dragon Pulse", - "Dark Pulse", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 635 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 633 - }, - "635": { - "name": "Hydreigon", - "forms": { - "2297": { - "name": "Normal", - "proto": "HYDREIGON_NORMAL" - }, - "2298": { - "name": "Shadow", - "proto": "HYDREIGON_SHADOW" - }, - "2299": { - "name": "Purified", - "proto": "HYDREIGON_PURIFIED" - } - }, - "default_form_id": 2297, - "pokedex_id": 635, - "genId": "5", - "generation": "Unova", - "types": [ - "Dark", - "Dragon" - ], - "attack": 256, - "defense": 188, - "stamina": 211, - "height": 1.8, - "weight": 160, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Bite", - "Dragon Breath" - ], - "charged_moves": [ - "Dragon Pulse", - "Dark Pulse", - "Flash Cannon" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 6, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 633 - }, - "636": { - "name": "Larvesta", - "forms": { - "2300": { - "name": "Normal", - "proto": "LARVESTA_NORMAL" - }, - "2301": { - "name": "Shadow", - "proto": "LARVESTA_SHADOW" - }, - "2302": { - "name": "Purified", - "proto": "LARVESTA_PURIFIED" - } - }, - "default_form_id": 2300, - "pokedex_id": 636, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Fire" - ], - "attack": 156, - "defense": 107, - "stamina": 146, - "height": 1.1, - "weight": 28.8, - "flee_rate": 0.15, - "capture_rate": 0.7, - "quick_moves": [ - "Ember", - "Bug Bite" - ], - "charged_moves": [ - "Flame Charge", - "Bug Buzz", - "Flame Wheel" - ], - "evolutions": [ - { - "pokemon": 637 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 636, - "little": true - }, - "637": { - "name": "Volcarona", - "forms": { - "2303": { - "name": "Normal", - "proto": "VOLCARONA_NORMAL" - }, - "2304": { - "name": "Shadow", - "proto": "VOLCARONA_SHADOW" - }, - "2305": { - "name": "Purified", - "proto": "VOLCARONA_PURIFIED" - } - }, - "default_form_id": 2303, - "pokedex_id": 637, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Fire" - ], - "attack": 264, - "defense": 189, - "stamina": 198, - "height": 1.6, - "weight": 46, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Fire Spin", - "Bug Bite" - ], - "charged_moves": [ - "Overheat", - "Bug Buzz", - "Solar Beam", - "Hurricane" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 636 - }, - "638": { - "name": "Cobalion", - "forms": { - "2306": { - "name": "Normal", - "proto": "COBALION_NORMAL" - }, - "2307": { - "name": "Shadow", - "proto": "COBALION_SHADOW" - }, - "2308": { - "name": "Purified", - "proto": "COBALION_PURIFIED" - } - }, - "default_form_id": 2306, - "pokedex_id": 638, - "genId": "5", - "generation": "Unova", - "types": [ - "Steel", - "Fighting" - ], - "attack": 192, - "defense": 229, - "stamina": 209, - "height": 2.1, - "weight": 250, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Metal Claw", - "Zen Headbutt" - ], - "charged_moves": [ - "Close Combat", - "Iron Head", - "Stone Edge" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 638 - }, - "639": { - "name": "Terrakion", - "forms": { - "2309": { - "name": "Normal", - "proto": "TERRAKION_NORMAL" - }, - "2310": { - "name": "Shadow", - "proto": "TERRAKION_SHADOW" - }, - "2311": { - "name": "Purified", - "proto": "TERRAKION_PURIFIED" - } - }, - "default_form_id": 2309, - "pokedex_id": 639, - "genId": "5", - "generation": "Unova", - "types": [ - "Rock", - "Fighting" - ], - "attack": 260, - "defense": 192, - "stamina": 209, - "height": 1.9, - "weight": 260, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Smack Down", - "Zen Headbutt" - ], - "charged_moves": [ - "Close Combat", - "Earthquake", - "Rock Slide" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 639 - }, - "640": { - "name": "Virizion", - "forms": { - "2312": { - "name": "Normal", - "proto": "VIRIZION_NORMAL" - }, - "2313": { - "name": "Shadow", - "proto": "VIRIZION_SHADOW" - }, - "2314": { - "name": "Purified", - "proto": "VIRIZION_PURIFIED" - } - }, - "default_form_id": 2312, - "pokedex_id": 640, - "genId": "5", - "generation": "Unova", - "types": [ - "Grass", - "Fighting" - ], - "attack": 192, - "defense": 229, - "stamina": 209, - "height": 2, - "weight": 200, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Quick Attack", - "Zen Headbutt" - ], - "charged_moves": [ - "Close Combat", - "Leaf Blade", - "Stone Edge" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 640 - }, - "641": { - "name": "Tornadus", - "forms": { - "140": { - "name": "Incarnate", - "proto": "TORNADUS_INCARNATE" - }, - "141": { - "name": "Therian", - "proto": "TORNADUS_THERIAN", - "attack": 238, - "defense": 189, - "stamina": 188, - "height": 1.4, - "weight": 63, - "quick_moves": [ - "Astonish", - "Gust" - ], - "charged_moves": [ - "Heat Wave", - "Psychic", - "Focus Blast", - "Hurricane" - ] - } - }, - "default_form_id": 140, - "pokedex_id": 641, - "genId": "5", - "generation": "Unova", - "types": [ - "Flying" - ], - "attack": 266, - "defense": 164, - "stamina": 188, - "height": 1.5, - "weight": 63, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Bite", - "Air Slash" - ], - "charged_moves": [ - "Grass Knot", - "Dark Pulse", - "Hyper Beam", - "Hurricane" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 641 - }, - "642": { - "name": "Thundurus", - "forms": { - "142": { - "name": "Incarnate", - "proto": "THUNDURUS_INCARNATE" - }, - "143": { - "name": "Therian", - "proto": "THUNDURUS_THERIAN", - "attack": 295, - "defense": 161, - "stamina": 188, - "height": 3, - "weight": 61, - "quick_moves": [ - "Bite", - "Volt Switch" - ], - "charged_moves": [ - "Sludge Wave", - "Thunder", - "Focus Blast", - "Thunderbolt" - ] - } - }, - "default_form_id": 142, - "pokedex_id": 642, - "genId": "5", - "generation": "Unova", - "types": [ - "Electric", - "Flying" - ], - "attack": 266, - "defense": 164, - "stamina": 188, - "height": 1.5, - "weight": 61, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Astonish", - "Thunder Shock" - ], - "charged_moves": [ - "Crunch", - "Thunder", - "Brick Break", - "Thunder Punch" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 642 - }, - "643": { - "name": "Reshiram", - "forms": { - "2315": { - "name": "Normal", - "proto": "RESHIRAM_NORMAL" - }, - "2316": { - "name": "Shadow", - "proto": "RESHIRAM_SHADOW" - }, - "2317": { - "name": "Purified", - "proto": "RESHIRAM_PURIFIED" - } - }, - "default_form_id": 2315, - "pokedex_id": 643, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon", - "Fire" - ], - "attack": 275, - "defense": 211, - "stamina": 205, - "height": 3.2, - "weight": 330, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Fire Fang" - ], - "charged_moves": [ - "Crunch", - "Overheat", - "Draco Meteor", - "Stone Edge" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 643 - }, - "644": { - "name": "Zekrom", - "forms": { - "2318": { - "name": "Normal", - "proto": "ZEKROM_NORMAL" - }, - "2319": { - "name": "Shadow", - "proto": "ZEKROM_SHADOW" - }, - "2320": { - "name": "Purified", - "proto": "ZEKROM_PURIFIED" - } - }, - "default_form_id": 2318, - "pokedex_id": 644, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon", - "Electric" - ], - "attack": 275, - "defense": 211, - "stamina": 205, - "height": 2.9, - "weight": 345, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Charge Beam" - ], - "charged_moves": [ - "Outrage", - "Wild Charge", - "Flash Cannon", - "Crunch" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 644 - }, - "645": { - "name": "Landorus", - "forms": { - "144": { - "name": "Incarnate", - "proto": "LANDORUS_INCARNATE" - }, - "145": { - "name": "Therian", - "proto": "LANDORUS_THERIAN", - "attack": 289, - "defense": 179, - "stamina": 205, - "height": 1.3, - "weight": 68, - "quick_moves": [ - "Mud Shot", - "Extrasensory" - ], - "charged_moves": [ - "Earthquake", - "Bulldoze", - "Stone Edge", - "Super Power" - ] - } - }, - "default_form_id": 144, - "pokedex_id": 645, - "genId": "5", - "generation": "Unova", - "types": [ - "Ground", - "Flying" - ], - "attack": 261, - "defense": 182, - "stamina": 205, - "height": 1.5, - "weight": 68, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Mud Shot", - "Rock Throw" - ], - "charged_moves": [ - "Earth Power", - "Outrage", - "Rock Slide", - "Focus Blast" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 645 - }, - "646": { - "name": "Kyurem", - "forms": { - "146": { - "name": "Normal", - "proto": "KYUREM_NORMAL" - }, - "147": { - "name": "Black", - "proto": "KYUREM_BLACK", - "attack": 310, - "defense": 183, - "stamina": 245, - "quick_moves": [ - "Dragon Tail", - "Shadow Claw" - ], - "charged_moves": [ - "Iron Head", - "Blizzard", - "Stone Edge", - "Outrage" - ] - }, - "148": { - "name": "White", - "proto": "KYUREM_WHITE", - "attack": 310, - "defense": 183, - "stamina": 245, - "charged_moves": [ - "Dragon Pulse", - "Blizzard", - "Ancient Power", - "Focus Blast" - ] - } - }, - "default_form_id": 146, - "pokedex_id": 646, - "genId": "5", - "generation": "Unova", - "types": [ - "Dragon", - "Ice" - ], - "attack": 246, - "defense": 170, - "stamina": 245, - "height": 3, - "weight": 325, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Breath", - "Steel Wing" - ], - "charged_moves": [ - "Dragon Claw", - "Blizzard", - "Draco Meteor" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 646 - }, - "647": { - "name": "Keldeo", - "forms": { - "149": { - "name": "Ordinary", - "proto": "KELDEO_ORDINARY" - }, - "150": { - "name": "Resolute", - "proto": "KELDEO_RESOLUTE" - } - }, - "default_form_id": 149, - "pokedex_id": 647, - "genId": "5", - "generation": "Unova", - "types": [ - "Water", - "Fighting" - ], - "attack": 260, - "defense": 192, - "stamina": 209, - "height": 1.4, - "weight": 48.5, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Poison Jab", - "Low Kick" - ], - "charged_moves": [ - "Aqua Jet", - "Close Combat", - "Hydro Pump", - "X Scissor" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 647 - }, - "648": { - "name": "Meloetta", - "forms": { - "151": { - "name": "Aria", - "proto": "MELOETTA_ARIA", - "quick_moves": [ - "Quick Attack", - "Confusion" - ], - "charged_moves": [ - "Psyshock", - "Thunderbolt", - "Dazzling Gleam", - "Hyper Beam" - ] - }, - "152": { - "name": "Pirouette", - "proto": "MELOETTA_PIROUETTE", - "attack": 269, - "defense": 188, - "stamina": 225, - "types": [ - "Normal", - "Fighting" - ] - } - }, - "default_form_id": 151, - "pokedex_id": 648, - "genId": "5", - "generation": "Unova", - "types": [ - "Normal", - "Psychic" - ], - "attack": 250, - "defense": 225, - "stamina": 225, - "height": 0.6, - "weight": 6.5, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Quick Attack", - "Low Kick" - ], - "charged_moves": [ - "Close Combat", - "Fire Punch", - "Ice Punch", - "Hyper Beam" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 648 - }, - "649": { - "name": "Genesect", - "forms": { - "593": { - "name": "Normal", - "proto": "GENESECT_NORMAL" - }, - "594": { - "name": "Shock", - "proto": "GENESECT_SHOCK", - "charged_moves": [ - "X Scissor", - "Magnet Bomb", - "Zap Cannon" - ] - }, - "595": { - "name": "Burn", - "proto": "GENESECT_BURN", - "charged_moves": [ - "X Scissor", - "Magnet Bomb", - "Flamethrower" - ] - }, - "596": { - "name": "Chill", - "proto": "GENESECT_CHILL", - "charged_moves": [ - "X Scissor", - "Magnet Bomb", - "Ice Beam" - ] - }, - "597": { - "name": "Douse", - "proto": "GENESECT_DOUSE", - "charged_moves": [ - "X Scissor", - "Magnet Bomb", - "Gunk Shot" - ] - } - }, - "default_form_id": 593, - "pokedex_id": 649, - "genId": "5", - "generation": "Unova", - "types": [ - "Bug", - "Steel" - ], - "attack": 252, - "defense": 199, - "stamina": 174, - "height": 1.5, - "weight": 82.5, - "flee_rate": 0.01, - "capture_rate": 0.02, - "quick_moves": [ - "Metal Claw", - "Fury Cutter" - ], - "charged_moves": [ - "X Scissor", - "Magnet Bomb", - "Hyper Beam" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 649 - }, - "650": { - "name": "Chespin", - "forms": { - "0": {} - }, - "pokedex_id": 650, - "genId": "6", - "generation": "Kalos", - "types": [ - "Grass" - ], - "attack": 110, - "defense": 106, - "stamina": 148, - "height": 0.4, - "weight": 9, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Take Down", - "Vine Whip" - ], - "charged_moves": [ - "Gyro Ball", - "Seed Bomb", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 651 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 650, - "little": true - }, - "651": { - "name": "Quilladin", - "forms": { - "0": {} - }, - "pokedex_id": 651, - "genId": "6", - "generation": "Kalos", - "types": [ - "Grass" - ], - "attack": 146, - "defense": 156, - "stamina": 156, - "height": 0.7, - "weight": 29, - "flee_rate": 0.1, - "capture_rate": 0.1, - "quick_moves": [ - "Low Kick", - "Vine Whip" - ], - "charged_moves": [ - "Gyro Ball", - "Energy Ball", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 652 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 650 - }, - "652": { - "name": "Chesnaught", - "forms": { - "0": {} - }, - "pokedex_id": 652, - "genId": "6", - "generation": "Kalos", - "types": [ - "Grass", - "Fighting" - ], - "attack": 201, - "defense": 204, - "stamina": 204, - "height": 1.6, - "weight": 90, - "flee_rate": 0.1, - "capture_rate": 0.05, - "quick_moves": [ - "Low Kick", - "Vine Whip", - "Smack Down" - ], - "charged_moves": [ - "Gyro Ball", - "Energy Ball", - "Super Power", - "Solar Beam" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 650 - }, - "653": { - "name": "Fennekin", - "forms": { - "0": {} - }, - "pokedex_id": 653, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire" - ], - "attack": 116, - "defense": 102, - "stamina": 120, - "height": 0.4, - "weight": 9.4, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Ember" - ], - "charged_moves": [ - "Psyshock", - "Flamethrower", - "Flame Charge" - ], - "evolutions": [ - { - "pokemon": 654 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 653, - "little": true - }, - "654": { - "name": "Braixen", - "forms": { - "0": {} - }, - "pokedex_id": 654, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire" - ], - "attack": 171, - "defense": 130, - "stamina": 153, - "height": 1, - "weight": 14.5, - "flee_rate": 0.1, - "capture_rate": 0.1, - "quick_moves": [ - "Scratch", - "Ember" - ], - "charged_moves": [ - "Psyshock", - "Flamethrower", - "Flame Charge" - ], - "evolutions": [ - { - "pokemon": 655 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 653 - }, - "655": { - "name": "Delphox", - "forms": { - "0": {} - }, - "pokedex_id": 655, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire", - "Psychic" - ], - "attack": 230, - "defense": 189, - "stamina": 181, - "height": 1.5, - "weight": 39, - "flee_rate": 0.1, - "capture_rate": 0.05, - "quick_moves": [ - "Scratch", - "Fire Spin", - "Zen Headbutt" - ], - "charged_moves": [ - "Psychic", - "Flamethrower", - "Flame Charge", - "Fire Blast" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 653 - }, - "656": { - "name": "Froakie", - "forms": { - "0": {} - }, - "pokedex_id": 656, - "genId": "6", - "generation": "Kalos", - "types": [ - "Water" - ], - "attack": 122, - "defense": 84, - "stamina": 121, - "height": 0.3, - "weight": 7, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Pound", - "Bubble" - ], - "charged_moves": [ - "Water Pulse", - "Aerial Ace", - "Surf" - ], - "evolutions": [ - { - "pokemon": 657 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 656, - "little": true - }, - "657": { - "name": "Frogadier", - "forms": { - "0": {} - }, - "pokedex_id": 657, - "genId": "6", - "generation": "Kalos", - "types": [ - "Water" - ], - "attack": 168, - "defense": 114, - "stamina": 144, - "height": 0.6, - "weight": 10.9, - "flee_rate": 0.1, - "capture_rate": 0.1, - "quick_moves": [ - "Pound", - "Bubble" - ], - "charged_moves": [ - "Water Pulse", - "Aerial Ace", - "Surf" - ], - "evolutions": [ - { - "pokemon": 658 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 656 - }, - "658": { - "name": "Greninja", - "forms": { - "0": {} - }, - "pokedex_id": 658, - "genId": "6", - "generation": "Kalos", - "types": [ - "Water", - "Dark" - ], - "attack": 223, - "defense": 152, - "stamina": 176, - "height": 1.5, - "weight": 40, - "flee_rate": 0.1, - "capture_rate": 0.05, - "quick_moves": [ - "Feint Attack", - "Bubble" - ], - "charged_moves": [ - "Night Slash", - "Aerial Ace", - "Surf", - "Hydro Pump" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 656 - }, - "659": { - "name": "Bunnelby", - "forms": { - "0": {} - }, - "pokedex_id": 659, - "genId": "6", - "generation": "Kalos", - "types": [ - "Normal" - ], - "attack": 68, - "defense": 72, - "stamina": 116, - "height": 0.4, - "weight": 5, - "flee_rate": 0.1, - "capture_rate": 0.5, - "quick_moves": [ - "Mud Slap", - "Quick Attack" - ], - "charged_moves": [ - "Dig", - "Bulldoze", - "Earthquake" - ], - "evolutions": [ - { - "pokemon": 660 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 659, - "little": true - }, - "660": { - "name": "Diggersby", - "forms": { - "0": {} - }, - "pokedex_id": 660, - "genId": "6", - "generation": "Kalos", - "types": [ - "Normal", - "Ground" - ], - "attack": 112, - "defense": 155, - "stamina": 198, - "height": 1, - "weight": 42.4, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Mud Shot", - "Quick Attack" - ], - "charged_moves": [ - "Dig", - "Hyper Beam", - "Earthquake", - "Fire Punch" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 659 - }, - "661": { - "name": "Fletchling", - "forms": { - "0": {} - }, - "pokedex_id": 661, - "genId": "6", - "generation": "Kalos", - "types": [ - "Normal", - "Flying" - ], - "attack": 95, - "defense": 80, - "stamina": 128, - "height": 0.3, - "weight": 1.7, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Peck", - "Quick Attack" - ], - "charged_moves": [ - "Aerial Ace", - "Heat Wave", - "Swift" - ], - "evolutions": [ - { - "pokemon": 662 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 661, - "little": true - }, - "662": { - "name": "Fletchinder", - "forms": { - "0": {} - }, - "pokedex_id": 662, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire", - "Flying" - ], - "attack": 145, - "defense": 110, - "stamina": 158, - "height": 0.7, - "weight": 16, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Peck", - "Ember", - "Steel Wing" - ], - "charged_moves": [ - "Aerial Ace", - "Heat Wave", - "Flame Charge" - ], - "evolutions": [ - { - "pokemon": 663 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 661 - }, - "663": { - "name": "Talonflame", - "forms": { - "0": {} - }, - "pokedex_id": 663, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire", - "Flying" - ], - "attack": 176, - "defense": 155, - "stamina": 186, - "height": 1.2, - "weight": 24.5, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Peck", - "Fire Spin", - "Steel Wing" - ], - "charged_moves": [ - "Brave Bird", - "Fire Blast", - "Flame Charge", - "Hurricane" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 5, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 661 - }, - "664": { - "name": "Scatterbug", - "forms": { - "0": {} - }, - "pokedex_id": 664, - "genId": "6", - "generation": "Kalos", - "types": [ - "Bug" - ], - "attack": 63, - "defense": 63, - "stamina": 116, - "height": 0.3, - "weight": 2.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Bug Bite", - "Tackle" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 665 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 664, - "little": true - }, - "665": { - "name": "Spewpa", - "forms": { - "0": {} - }, - "pokedex_id": 665, - "genId": "6", - "generation": "Kalos", - "types": [ - "Bug" - ], - "attack": 48, - "defense": 89, - "stamina": 128, - "height": 0.3, - "weight": 8.4, - "flee_rate": 0.09, - "capture_rate": 0.25, - "quick_moves": [ - "Bug Bite", - "Tackle" - ], - "charged_moves": [ - "Struggle" - ], - "evolutions": [ - { - "pokemon": 666 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 664 - }, - "666": { - "name": "Vivillon", - "forms": { - "2594": { - "name": "Archipelago", - "proto": "VIVILLON_ARCHIPELAGO" - }, - "2595": { - "name": "Continental", - "proto": "VIVILLON_CONTINENTAL" - }, - "2596": { - "name": "Elegant", - "proto": "VIVILLON_ELEGANT" - }, - "2597": { - "name": "Fancy", - "proto": "VIVILLON_FANCY" - }, - "2598": { - "name": "Garden", - "proto": "VIVILLON_GARDEN" - }, - "2599": { - "name": "High Plains", - "proto": "VIVILLON_HIGH_PLAINS" - }, - "2600": { - "name": "Icy Snow", - "proto": "VIVILLON_ICY_SNOW" - }, - "2601": { - "name": "Jungle", - "proto": "VIVILLON_JUNGLE" - }, - "2602": { - "name": "Marine", - "proto": "VIVILLON_MARINE" - }, - "2603": { - "name": "Meadow", - "proto": "VIVILLON_MEADOW" - }, - "2604": { - "name": "Modern", - "proto": "VIVILLON_MODERN" - }, - "2605": { - "name": "Monsoon", - "proto": "VIVILLON_MONSOON" - }, - "2606": { - "name": "Ocean", - "proto": "VIVILLON_OCEAN" - }, - "2607": { - "name": "Pokeball", - "proto": "VIVILLON_POKEBALL" - }, - "2608": { - "name": "Polar", - "proto": "VIVILLON_POLAR" - }, - "2609": { - "name": "River", - "proto": "VIVILLON_RIVER" - }, - "2610": { - "name": "Sandstorm", - "proto": "VIVILLON_SANDSTORM" - }, - "2611": { - "name": "Savanna", - "proto": "VIVILLON_SAVANNA" - }, - "2612": { - "name": "Sun", - "proto": "VIVILLON_SUN" - }, - "2613": { - "name": "Tundra", - "proto": "VIVILLON_TUNDRA" - } - }, - "pokedex_id": 666, - "genId": "6", - "generation": "Kalos", - "types": [ - "Bug", - "Flying" - ], - "attack": 176, - "defense": 103, - "stamina": 190, - "height": 1.2, - "weight": 17, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Bug Bite", - "Gust", - "Struggle Bug" - ], - "charged_moves": [ - "Bug Buzz", - "Aerial Ace", - "Energy Ball", - "Hurricane" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 1, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 664 - }, - "667": { - "name": "Litleo", - "forms": { - "0": {} - }, - "pokedex_id": 667, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire", - "Normal" - ], - "attack": 139, - "defense": 112, - "stamina": 158, - "height": 0.6, - "weight": 13.5, - "flee_rate": 0.2, - "capture_rate": 0.5, - "quick_moves": [ - "Fire Fang", - "Tackle", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Flamethrower", - "Crunch" - ], - "evolutions": [ - { - "pokemon": 668, - "form": 2587, - "gender_requirement": 1 - }, - { - "pokemon": 668, - "form": 2588, - "gender_requirement": 2 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 667, - "little": true - }, - "668": { - "name": "Pyroar", - "forms": { - "2587": { - "name": "Normal", - "proto": "PYROAR_NORMAL", - "quick_moves": [ - "Fire Fang", - "Take Down" - ] - }, - "2588": { - "name": "Female", - "proto": "PYROAR_FEMALE", - "quick_moves": [ - "Fire Fang", - "Take Down" - ] - } - }, - "default_form_id": 2587, - "pokedex_id": 668, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fire", - "Normal" - ], - "attack": 221, - "defense": 149, - "stamina": 200, - "height": 1.5, - "weight": 81.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Fire Fang", - "Take Down", - "Ember" - ], - "charged_moves": [ - "Flame Charge", - "Solar Beam", - "Dark Pulse", - "Overheat" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 667 - }, - "669": { - "name": "Flabebe", - "forms": { - "2614": { - "name": "Red", - "proto": "FLABEBE_RED" - }, - "2615": { - "name": "Yellow", - "proto": "FLABEBE_YELLOW" - }, - "2616": { - "name": "Orange", - "proto": "FLABEBE_ORANGE" - }, - "2617": { - "name": "Blue", - "proto": "FLABEBE_BLUE" - }, - "2618": { - "name": "White", - "proto": "FLABEBE_WHITE" - } - }, - "pokedex_id": 669, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 108, - "defense": 120, - "stamina": 127, - "height": 0.1, - "weight": 0.1, - "flee_rate": 0.15, - "capture_rate": 0.5, - "quick_moves": [ - "Vine Whip", - "Tackle" - ], - "charged_moves": [ - "Dazzling Gleam", - "Petal Blizzard", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 670 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 669, - "little": true - }, - "670": { - "name": "Floette", - "forms": { - "2619": { - "name": "Red", - "proto": "FLOETTE_RED" - }, - "2620": { - "name": "Yellow", - "proto": "FLOETTE_YELLOW" - }, - "2621": { - "name": "Orange", - "proto": "FLOETTE_ORANGE" - }, - "2622": { - "name": "Blue", - "proto": "FLOETTE_BLUE" - }, - "2623": { - "name": "White", - "proto": "FLOETTE_WHITE" - } - }, - "pokedex_id": 670, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 136, - "defense": 151, - "stamina": 144, - "height": 0.2, - "weight": 0.9, - "flee_rate": 0.07, - "capture_rate": 0.25, - "quick_moves": [ - "Vine Whip", - "Tackle" - ], - "charged_moves": [ - "Dazzling Gleam", - "Petal Blizzard", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 671 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 669 - }, - "671": { - "name": "Florges", - "forms": { - "2624": { - "name": "Red", - "proto": "FLORGES_RED" - }, - "2625": { - "name": "Yellow", - "proto": "FLORGES_YELLOW" - }, - "2626": { - "name": "Orange", - "proto": "FLORGES_ORANGE" - }, - "2627": { - "name": "Blue", - "proto": "FLORGES_BLUE" - }, - "2628": { - "name": "White", - "proto": "FLORGES_WHITE" - } - }, - "pokedex_id": 671, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 212, - "defense": 244, - "stamina": 186, - "height": 1.1, - "weight": 10, - "flee_rate": 0.05, - "capture_rate": 0.125, - "quick_moves": [ - "Vine Whip", - "Tackle", - "Razor Leaf" - ], - "charged_moves": [ - "Moonblast", - "Petal Blizzard", - "Psychic", - "Disarming Voice" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 669 - }, - "672": { - "name": "Skiddo", - "forms": { - "0": {} - }, - "pokedex_id": 672, - "genId": "6", - "generation": "Kalos", - "types": [ - "Grass" - ], - "attack": 123, - "defense": 102, - "stamina": 165, - "height": 0.9, - "weight": 31, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Rock Smash" - ], - "charged_moves": [ - "Brick Break", - "Rock Slide", - "Seed Bomb" - ], - "evolutions": [ - { - "pokemon": 673 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 672, - "little": true - }, - "673": { - "name": "Gogoat", - "forms": { - "0": {} - }, - "pokedex_id": 673, - "genId": "6", - "generation": "Kalos", - "types": [ - "Grass" - ], - "attack": 196, - "defense": 146, - "stamina": 265, - "height": 1.7, - "weight": 91, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Zen Headbutt", - "Rock Smash", - "Vine Whip" - ], - "charged_moves": [ - "Brick Break", - "Rock Slide", - "Leaf Blade", - "Seed Bomb" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 672 - }, - "674": { - "name": "Pancham", - "forms": { - "0": {} - }, - "pokedex_id": 674, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fighting" - ], - "attack": 145, - "defense": 107, - "stamina": 167, - "height": 0.6, - "weight": 8, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Low Kick", - "Tackle" - ], - "charged_moves": [ - "Low Sweep", - "Crunch", - "Body Slam" - ], - "evolutions": [ - { - "pokemon": 675 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 674, - "little": true - }, - "675": { - "name": "Pangoro", - "forms": { - "0": {} - }, - "pokedex_id": 675, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fighting", - "Dark" - ], - "attack": 226, - "defense": 146, - "stamina": 216, - "height": 2.1, - "weight": 136, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Low Kick", - "Snarl", - "Bullet Punch" - ], - "charged_moves": [ - "Close Combat", - "Night Slash", - "Iron Head", - "Rock Slide" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 674 - }, - "676": { - "name": "Furfrou", - "forms": { - "2629": { - "name": "Natural", - "proto": "FURFROU_NATURAL" - }, - "2630": { - "name": "Heart", - "proto": "FURFROU_HEART" - }, - "2631": { - "name": "Star", - "proto": "FURFROU_STAR" - }, - "2632": { - "name": "Diamond", - "proto": "FURFROU_DIAMOND" - }, - "2633": { - "name": "Debutante", - "proto": "FURFROU_DEBUTANTE" - }, - "2634": { - "name": "Matron", - "proto": "FURFROU_MATRON" - }, - "2635": { - "name": "Dandy", - "proto": "FURFROU_DANDY" - }, - "2636": { - "name": "La Reine", - "proto": "FURFROU_LA_REINE" - }, - "2637": { - "name": "Kabuki", - "proto": "FURFROU_KABUKI" - }, - "2638": { - "name": "Pharaoh", - "proto": "FURFROU_PHARAOH" - } - }, - "default_form_id": 2629, - "pokedex_id": 676, - "genId": "6", - "generation": "Kalos", - "types": [ - "Normal" - ], - "attack": 164, - "defense": 167, - "stamina": 181, - "height": 1.2, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Take Down", - "Bite", - "Sucker Punch" - ], - "charged_moves": [ - "Surf", - "Dark Pulse", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 676 - }, - "677": { - "name": "Espurr", - "forms": { - "0": {} - }, - "pokedex_id": 677, - "genId": "6", - "generation": "Kalos", - "types": [ - "Psychic" - ], - "attack": 120, - "defense": 114, - "stamina": 158, - "height": 0.3, - "weight": 3.5, - "flee_rate": 0.1, - "capture_rate": 0.4, - "quick_moves": [ - "Confusion", - "Scratch" - ], - "charged_moves": [ - "Psyshock", - "Energy Ball", - "Psychic" - ], - "evolutions": [ - { - "pokemon": 678, - "form": 2589, - "gender_requirement": 1 - }, - { - "pokemon": 678, - "form": 2590, - "gender_requirement": 2 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 1, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 677, - "little": true - }, - "678": { - "name": "Meowstic", - "forms": { - "2589": { - "name": "Normal", - "proto": "MEOWSTIC_NORMAL" - }, - "2590": { - "name": "Female", - "proto": "MEOWSTIC_FEMALE", - "quick_moves": [ - "Confusion", - "Charm" - ], - "charged_moves": [ - "Psychic", - "Energy Ball", - "Shadow Ball" - ] - } - }, - "default_form_id": 2589, - "pokedex_id": 678, - "genId": "6", - "generation": "Kalos", - "types": [ - "Psychic" - ], - "attack": 166, - "defense": 167, - "stamina": 179, - "height": 0.6, - "weight": 8.5, - "flee_rate": 0.07, - "capture_rate": 0.2, - "quick_moves": [ - "Confusion", - "Sucker Punch" - ], - "charged_moves": [ - "Psychic", - "Energy Ball", - "Thunderbolt" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 677 - }, - "679": { - "name": "Honedge", - "forms": { - "0": {} - }, - "pokedex_id": 679, - "genId": "6", - "generation": "Kalos", - "types": [ - "Steel", - "Ghost" - ], - "height": 0.8, - "weight": 2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Fury Cutter" - ], - "charged_moves": [ - "Iron Head", - "Gyro Ball" - ], - "evolutions": [ - { - "pokemon": 680 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 679, - "little": true - }, - "680": { - "name": "Doublade", - "forms": { - "0": {} - }, - "pokedex_id": 680, - "genId": "6", - "generation": "Kalos", - "types": [ - "Steel", - "Ghost" - ], - "height": 0.8, - "weight": 4.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Psycho Cut", - "Fury Cutter" - ], - "charged_moves": [ - "Iron Head", - "Gyro Ball" - ], - "evolutions": [ - { - "pokemon": 681 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 679 - }, - "681": { - "name": "Aegislash", - "forms": { - "2639": { - "name": "Shield", - "proto": "AEGISLASH_SHIELD" - }, - "2640": { - "name": "Blade", - "proto": "AEGISLASH_BLADE" - } - }, - "pokedex_id": 681, - "genId": "6", - "generation": "Kalos", - "types": [ - "Steel", - "Ghost" - ], - "height": 1.7, - "weight": 53, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Psycho Cut", - "Fury Cutter" - ], - "charged_moves": [ - "Flash Cannon", - "Gyro Ball", - "Shadow Ball" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 679 - }, - "682": { - "name": "Spritzee", - "forms": { - "0": {} - }, - "pokedex_id": 682, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 110, - "defense": 113, - "stamina": 186, - "height": 0.2, - "weight": 0.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Charm", - "Charge Beam" - ], - "charged_moves": [ - "Draining Kiss", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 683 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 682, - "little": true - }, - "683": { - "name": "Aromatisse", - "forms": { - "0": {} - }, - "pokedex_id": 683, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 173, - "defense": 150, - "stamina": 226, - "height": 0.8, - "weight": 15.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Charm", - "Charge Beam" - ], - "charged_moves": [ - "Moonblast", - "Thunderbolt", - "Psychic", - "Draining Kiss" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 682 - }, - "684": { - "name": "Swirlix", - "forms": { - "0": {} - }, - "pokedex_id": 684, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 109, - "defense": 119, - "stamina": 158, - "height": 0.4, - "weight": 3.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle" - ], - "charged_moves": [ - "Draining Kiss", - "Energy Ball" - ], - "evolutions": [ - { - "pokemon": 685 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 684, - "little": true - }, - "685": { - "name": "Slurpuff", - "forms": { - "0": {} - }, - "pokedex_id": 685, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 168, - "defense": 163, - "stamina": 193, - "height": 0.8, - "weight": 5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Charm" - ], - "charged_moves": [ - "Play Rough", - "Energy Ball", - "Flamethrower", - "Draining Kiss" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 684 - }, - "686": { - "name": "Inkay", - "forms": { - "0": {} - }, - "pokedex_id": 686, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dark", - "Psychic" - ], - "attack": 98, - "defense": 95, - "stamina": 142, - "height": 0.4, - "weight": 3.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Tackle" - ], - "charged_moves": [ - "Psybeam", - "Night Slash" - ], - "evolutions": [ - { - "pokemon": 687 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 686, - "little": true - }, - "687": { - "name": "Malamar", - "forms": { - "0": {} - }, - "pokedex_id": 687, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dark", - "Psychic" - ], - "attack": 177, - "defense": 165, - "stamina": 200, - "height": 1.5, - "weight": 47, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Peck", - "Psycho Cut" - ], - "charged_moves": [ - "Psybeam", - "Foul Play", - "Super Power", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 686 - }, - "688": { - "name": "Binacle", - "forms": { - "0": {} - }, - "pokedex_id": 688, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Water" - ], - "attack": 96, - "defense": 120, - "stamina": 123, - "height": 0.5, - "weight": 31, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Scratch", - "Mud Slap" - ], - "charged_moves": [ - "Ancient Power", - "Cross Chop", - "Dig" - ], - "evolutions": [ - { - "pokemon": 689 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 688, - "little": true - }, - "689": { - "name": "Barbaracle", - "forms": { - "0": {} - }, - "pokedex_id": 689, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Water" - ], - "attack": 194, - "defense": 205, - "stamina": 176, - "height": 1.3, - "weight": 96, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Mud Slap", - "Fury Cutter" - ], - "charged_moves": [ - "Skull Bash", - "Cross Chop", - "Stone Edge", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 688 - }, - "690": { - "name": "Skrelp", - "forms": { - "0": {} - }, - "pokedex_id": 690, - "genId": "6", - "generation": "Kalos", - "types": [ - "Poison", - "Water" - ], - "attack": 109, - "defense": 109, - "stamina": 137, - "height": 0.5, - "weight": 7.3, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Acid" - ], - "charged_moves": [ - "Aqua Tail", - "Water Pulse", - "Twister", - "Sludge Bomb" - ], - "evolutions": [ - { - "pokemon": 691 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 690, - "little": true - }, - "691": { - "name": "Dragalge", - "forms": { - "0": {} - }, - "pokedex_id": 691, - "genId": "6", - "generation": "Kalos", - "types": [ - "Poison", - "Dragon" - ], - "attack": 177, - "defense": 207, - "stamina": 163, - "height": 1.8, - "weight": 81.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Acid", - "Dragon Tail" - ], - "charged_moves": [ - "Hydro Pump", - "Aqua Tail", - "Outrage", - "Gunk Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 690 - }, - "692": { - "name": "Clauncher", - "forms": { - "0": {} - }, - "pokedex_id": 692, - "genId": "6", - "generation": "Kalos", - "types": [ - "Water" - ], - "attack": 108, - "defense": 117, - "stamina": 137, - "height": 0.5, - "weight": 8.3, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Smack Down" - ], - "charged_moves": [ - "Water Pulse", - "Crabhammer", - "Aqua Jet" - ], - "evolutions": [ - { - "pokemon": 693 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 692, - "little": true - }, - "693": { - "name": "Clawitzer", - "forms": { - "0": {} - }, - "pokedex_id": 693, - "genId": "6", - "generation": "Kalos", - "types": [ - "Water" - ], - "attack": 221, - "defense": 171, - "stamina": 174, - "height": 1.3, - "weight": 35.3, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Water Gun", - "Smack Down" - ], - "charged_moves": [ - "Water Pulse", - "Dark Pulse", - "Ice Beam", - "Crabhammer" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 692 - }, - "694": { - "name": "Helioptile", - "forms": { - "0": {} - }, - "pokedex_id": 694, - "genId": "6", - "generation": "Kalos", - "types": [ - "Electric", - "Normal" - ], - "attack": 115, - "defense": 78, - "stamina": 127, - "height": 0.5, - "weight": 6, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Quick Attack", - "Thunder Shock" - ], - "charged_moves": [ - "Parabolic Charge", - "Bulldoze", - "Discharge" - ], - "evolutions": [ - { - "pokemon": 695 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 694, - "little": true - }, - "695": { - "name": "Heliolisk", - "forms": { - "0": {} - }, - "pokedex_id": 695, - "genId": "6", - "generation": "Kalos", - "types": [ - "Electric", - "Normal" - ], - "attack": 219, - "defense": 168, - "stamina": 158, - "height": 1, - "weight": 21, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Quick Attack", - "Volt Switch", - "Mud Slap" - ], - "charged_moves": [ - "Parabolic Charge", - "Bulldoze", - "Thunderbolt", - "Grass Knot" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 694 - }, - "696": { - "name": "Tyrunt", - "forms": { - "0": {} - }, - "pokedex_id": 696, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Dragon" - ], - "attack": 158, - "defense": 123, - "stamina": 151, - "height": 0.8, - "weight": 26, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Dragon Tail", - "Tackle" - ], - "charged_moves": [ - "Stomp", - "Ancient Power", - "Dragon Claw" - ], - "evolutions": [ - { - "pokemon": 697 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 696, - "little": true - }, - "697": { - "name": "Tyrantrum", - "forms": { - "0": {} - }, - "pokedex_id": 697, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Dragon" - ], - "attack": 227, - "defense": 191, - "stamina": 193, - "height": 2.5, - "weight": 270, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Dragon Tail", - "Charm", - "Rock Throw" - ], - "charged_moves": [ - "Crunch", - "Stone Edge", - "Outrage", - "Earthquake" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 696 - }, - "698": { - "name": "Amaura", - "forms": { - "0": {} - }, - "pokedex_id": 698, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Ice" - ], - "attack": 124, - "defense": 109, - "stamina": 184, - "height": 1.3, - "weight": 25.2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Powder Snow", - "Frost Breath" - ], - "charged_moves": [ - "Weather Ball", - "Ancient Power", - "Aurora Beam", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 699 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 698, - "little": true - }, - "699": { - "name": "Aurorus", - "forms": { - "0": {} - }, - "pokedex_id": 699, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Ice" - ], - "attack": 186, - "defense": 163, - "stamina": 265, - "height": 2.7, - "weight": 225, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Powder Snow", - "Frost Breath", - "Rock Throw" - ], - "charged_moves": [ - "Weather Ball", - "Ancient Power", - "Blizzard", - "Thunderbolt", - "Hyper Beam" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 698 - }, - "700": { - "name": "Sylveon", - "forms": { - "0": {} - }, - "pokedex_id": 700, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 203, - "defense": 205, - "stamina": 216, - "height": 1, - "weight": 23.5, - "flee_rate": 0.06, - "capture_rate": 0.125, - "quick_moves": [ - "Charm", - "Quick Attack" - ], - "charged_moves": [ - "Moonblast", - "Dazzling Gleam", - "Draining Kiss" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 133 - }, - "701": { - "name": "Hawlucha", - "forms": { - "0": {} - }, - "pokedex_id": 701, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fighting", - "Flying" - ], - "attack": 195, - "defense": 153, - "stamina": 186, - "height": 0.8, - "weight": 21.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Wing Attack", - "Low Kick", - "Poison Jab" - ], - "charged_moves": [ - "Flying Press", - "Sky Attack", - "X Scissor", - "Power Up" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 701 - }, - "702": { - "name": "Dedenne", - "forms": { - "0": {} - }, - "pokedex_id": 702, - "genId": "6", - "generation": "Kalos", - "types": [ - "Electric", - "Fairy" - ], - "attack": 164, - "defense": 134, - "stamina": 167, - "height": 0.2, - "weight": 2.2, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Thunder Shock" - ], - "charged_moves": [ - "Parabolic Charge", - "Discharge", - "Play Rough" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 702 - }, - "703": { - "name": "Carbink", - "forms": { - "0": {} - }, - "pokedex_id": 703, - "genId": "6", - "generation": "Kalos", - "types": [ - "Rock", - "Fairy" - ], - "attack": 95, - "defense": 285, - "stamina": 137, - "height": 0.3, - "weight": 5.7, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Tackle", - "Rock Throw" - ], - "charged_moves": [ - "Rock Slide", - "Moonblast", - "Power Gem" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 703 - }, - "704": { - "name": "Goomy", - "forms": { - "0": {} - }, - "pokedex_id": 704, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dragon" - ], - "attack": 101, - "defense": 112, - "stamina": 128, - "height": 0.3, - "weight": 2.8, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Water Gun", - "Tackle" - ], - "charged_moves": [ - "Dragon Pulse", - "Sludge Wave", - "Muddy Water" - ], - "evolutions": [ - { - "pokemon": 705 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 704, - "little": true - }, - "705": { - "name": "Sliggoo", - "forms": { - "0": {} - }, - "pokedex_id": 705, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dragon" - ], - "attack": 159, - "defense": 176, - "stamina": 169, - "height": 0.8, - "weight": 17.5, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Water Gun", - "Tackle" - ], - "charged_moves": [ - "Dragon Pulse", - "Sludge Wave", - "Muddy Water", - "Water Pulse" - ], - "evolutions": [ - { - "pokemon": 706 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 704 - }, - "706": { - "name": "Goodra", - "forms": { - "0": {} - }, - "pokedex_id": 706, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dragon" - ], - "attack": 220, - "defense": 242, - "stamina": 207, - "height": 2, - "weight": 150.5, - "flee_rate": 0.05, - "capture_rate": 0.05, - "quick_moves": [ - "Water Gun", - "Dragon Breath" - ], - "charged_moves": [ - "Draco Meteor", - "Sludge Wave", - "Muddy Water", - "Power Whip" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 704 - }, - "707": { - "name": "Klefki", - "forms": { - "0": {} - }, - "pokedex_id": 707, - "genId": "6", - "generation": "Kalos", - "types": [ - "Steel", - "Fairy" - ], - "attack": 160, - "defense": 179, - "stamina": 149, - "height": 0.2, - "weight": 3, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Astonish", - "Tackle" - ], - "charged_moves": [ - "Flash Cannon", - "Play Rough", - "Draining Kiss", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 707 - }, - "708": { - "name": "Phantump", - "forms": { - "0": {} - }, - "pokedex_id": 708, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ghost", - "Grass" - ], - "attack": 125, - "defense": 103, - "stamina": 125, - "height": 0.4, - "weight": 7, - "flee_rate": 0.1, - "capture_rate": 0.3, - "quick_moves": [ - "Astonish", - "Tackle" - ], - "charged_moves": [ - "Seed Bomb", - "Shadow Ball", - "Foul Play" - ], - "evolutions": [ - { - "pokemon": 709 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 708, - "little": true - }, - "709": { - "name": "Trevenant", - "forms": { - "0": {} - }, - "pokedex_id": 709, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ghost", - "Grass" - ], - "attack": 201, - "defense": 154, - "stamina": 198, - "height": 1.5, - "weight": 71, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Shadow Claw", - "Sucker Punch" - ], - "charged_moves": [ - "Seed Bomb", - "Shadow Ball", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 708 - }, - "710": { - "name": "Pumpkaboo", - "forms": { - "2641": { - "name": "Small", - "proto": "PUMPKABOO_SMALL" - }, - "2642": { - "name": "Average", - "proto": "PUMPKABOO_AVERAGE" - }, - "2643": { - "name": "Large", - "proto": "PUMPKABOO_LARGE" - }, - "2644": { - "name": "Super", - "proto": "PUMPKABOO_SUPER" - } - }, - "pokedex_id": 710, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ghost", - "Grass" - ], - "attack": 121, - "defense": 123, - "stamina": 135, - "height": 0.4, - "weight": 5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Astonish", - "Razor Leaf" - ], - "charged_moves": [ - "Grass Knot", - "Shadow Sneak", - "Foul Play", - "Earthquake" - ], - "evolutions": [ - { - "pokemon": 711 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "family": 710, - "little": true - }, - "711": { - "name": "Gourgeist", - "forms": { - "2645": { - "name": "Small", - "proto": "GOURGEIST_SMALL" - }, - "2646": { - "name": "Average", - "proto": "GOURGEIST_AVERAGE" - }, - "2647": { - "name": "Large", - "proto": "GOURGEIST_LARGE" - }, - "2648": { - "name": "Super", - "proto": "GOURGEIST_SUPER" - } - }, - "pokedex_id": 711, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ghost", - "Grass" - ], - "attack": 175, - "defense": 213, - "stamina": 163, - "height": 0.9, - "weight": 12.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Hex", - "Razor Leaf" - ], - "charged_moves": [ - "Seed Bomb", - "Shadow Ball", - "Foul Play", - "Fire Blast" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "family": 710 - }, - "712": { - "name": "Bergmite", - "forms": { - "0": {} - }, - "pokedex_id": 712, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ice" - ], - "attack": 117, - "defense": 120, - "stamina": 146, - "height": 1, - "weight": 99.5, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Tackle" - ], - "charged_moves": [ - "Crunch", - "Icy Wind", - "Mirror Coat" - ], - "evolutions": [ - { - "pokemon": 713 - } - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 712, - "little": true - }, - "713": { - "name": "Avalugg", - "forms": { - "0": {} - }, - "pokedex_id": 713, - "genId": "6", - "generation": "Kalos", - "types": [ - "Ice" - ], - "attack": 196, - "defense": 240, - "stamina": 216, - "height": 2, - "weight": 505, - "flee_rate": 0.1, - "capture_rate": 0.2, - "quick_moves": [ - "Bite", - "Ice Fang" - ], - "charged_moves": [ - "Crunch", - "Avalanche", - "Earthquake", - "Body Slam", - "Mirror Coat" - ], - "legendary": false, - "mythic": false, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 712 - }, - "714": { - "name": "Noibat", - "forms": { - "0": {} - }, - "pokedex_id": 714, - "genId": "6", - "generation": "Kalos", - "types": [ - "Flying", - "Dragon" - ], - "attack": 83, - "defense": 73, - "stamina": 120, - "height": 0.5, - "weight": 8, - "flee_rate": 0.09, - "capture_rate": 0.4, - "quick_moves": [ - "Wing Attack", - "Bite" - ], - "charged_moves": [ - "Dragon Pulse", - "Air Cutter", - "Heat Wave" - ], - "evolutions": [ - { - "pokemon": 715 - } - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 4, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 714, - "little": true - }, - "715": { - "name": "Noivern", - "forms": { - "0": {} - }, - "pokedex_id": 715, - "genId": "6", - "generation": "Kalos", - "types": [ - "Flying", - "Dragon" - ], - "attack": 205, - "defense": 175, - "stamina": 198, - "height": 1.5, - "weight": 85, - "flee_rate": 0.05, - "capture_rate": 0.15, - "quick_moves": [ - "Air Slash", - "Bite" - ], - "charged_moves": [ - "Draco Meteor", - "Hurricane", - "Heat Wave", - "Psychic" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 6, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 714 - }, - "716": { - "name": "Xerneas", - "forms": { - "2649": { - "name": "Neutral", - "proto": "XERNEAS_NEUTRAL" - }, - "2650": { - "name": "Active", - "proto": "XERNEAS_ACTIVE" - } - }, - "pokedex_id": 716, - "genId": "6", - "generation": "Kalos", - "types": [ - "Fairy" - ], - "attack": 250, - "defense": 185, - "stamina": 246, - "height": 3, - "weight": 215, - "flee_rate": 0.1, - "capture_rate": 0.02, - "quick_moves": [ - "Tackle", - "Zen Headbutt" - ], - "charged_moves": [ - "Moonblast", - "Megahorn", - "Close Combat", - "Giga Impact", - "Thunder" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 716 - }, - "717": { - "name": "Yveltal", - "forms": { - "0": {} - }, - "pokedex_id": 717, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dark", - "Flying" - ], - "attack": 250, - "defense": 185, - "stamina": 246, - "height": 5.8, - "weight": 203, - "flee_rate": 0.1, - "capture_rate": 0.02, - "quick_moves": [ - "Sucker Punch", - "Snarl", - "Gust" - ], - "charged_moves": [ - "Dark Pulse", - "Hurricane", - "Focus Blast", - "Hyper Beam", - "Psychic" - ], - "legendary": true, - "mythic": false, - "buddy_group_number": 7, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 717 - }, - "718": { - "name": "Zygarde", - "forms": { - "2591": { - "name": "Ten Percent", - "proto": "ZYGARDE_TEN_PERCENT" - }, - "2592": { - "name": "Fifty Percent", - "proto": "ZYGARDE_FIFTY_PERCENT" - }, - "2593": { - "name": "Complete", - "proto": "ZYGARDE_COMPLETE" - } - }, - "pokedex_id": 718, - "genId": "6", - "generation": "Kalos", - "types": [ - "Dragon", - "Ground" - ], - "flee_rate": 0.1, - "capture_rate": 0.02, - "quick_moves": [ - "Dragon Tail", - "Bite", - "Zen Headbutt" - ], - "charged_moves": [ - "Outrage", - "Earthquake", - "Crunch", - "Hyper Beam", - "Bulldoze" - ], - "legendary": true, - "mythic": false, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "family": 718 - }, - "719": { - "name": "Diancie", - "forms": { - "0": {} - }, - "temp_evolutions": { - "1": { - "attack": 342, - "defense": 235, - "stamina": 137, - "unreleased": true, - "types": [ - "Fairy", - "Rock" - ] - } - } - }, - "720": { - "name": "Hoopa", - "forms": { - "2651": { - "name": "Confined", - "proto": "HOOPA_CONFINED" - }, - "2652": { - "name": "Unbound", - "proto": "HOOPA_UNBOUND" - } - } - }, - "721": { - "name": "Volcanion", - "forms": { - "0": {} - } - }, - "808": { - "name": "Meltan", - "forms": { - "2321": { - "name": "Normal", - "proto": "MELTAN_NORMAL" - }, - "2322": { - "name": "Shadow", - "proto": "MELTAN_SHADOW" - }, - "2323": { - "name": "Purified", - "proto": "MELTAN_PURIFIED" - } - }, - "default_form_id": 2321, - "pokedex_id": 808, - "genId": "7", - "generation": "Alola", - "types": [ - "Steel" - ], - "attack": 118, - "defense": 99, - "stamina": 130, - "height": 0.2, - "weight": 8, - "capture_rate": 0.3, - "quick_moves": [ - "Thunder Shock" - ], - "charged_moves": [ - "Flash Cannon", - "Thunderbolt" - ], - "evolutions": [ - { - "pokemon": 809 - } - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 2, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "gym_defender_eligible": true, - "family": 808, - "little": true - }, - "809": { - "name": "Melmetal", - "forms": { - "2324": { - "name": "Normal", - "proto": "MELMETAL_NORMAL" - }, - "2325": { - "name": "Shadow", - "proto": "MELMETAL_SHADOW" - }, - "2326": { - "name": "Purified", - "proto": "MELMETAL_PURIFIED" - } - }, - "default_form_id": 2324, - "pokedex_id": 809, - "genId": "7", - "generation": "Alola", - "types": [ - "Steel" - ], - "attack": 226, - "defense": 190, - "stamina": 264, - "height": 2.5, - "weight": 800, - "capture_rate": 0.3, - "quick_moves": [ - "Thunder Shock" - ], - "charged_moves": [ - "Flash Cannon", - "Thunderbolt", - "Hyper Beam", - "Rock Slide", - "Super Power" - ], - "legendary": false, - "mythic": true, - "buddy_group_number": 3, - "buddy_distance": 20, - "third_move_stardust": 100000, - "third_move_candy": 100, - "gym_defender_eligible": true, - "family": 808 - }, - "862": { - "name": "Obstagoon", - "forms": { - "2501": { - "name": "Normal", - "proto": "OBSTAGOON_NORMAL" - }, - "2502": { - "name": "Shadow", - "proto": "OBSTAGOON_SHADOW" - }, - "2503": { - "name": "Purified", - "proto": "OBSTAGOON_PURIFIED" - } - }, - "default_form_id": 2501, - "pokedex_id": 862, - "genId": "8", - "generation": "Galar", - "types": [ - "Dark", - "Normal" - ], - "attack": 180, - "defense": 194, - "stamina": 212, - "height": 1.6, - "weight": 46, - "flee_rate": 0.04, - "capture_rate": 0.04, - "quick_moves": [ - "Counter", - "Lick" - ], - "charged_moves": [ - "Cross Chop", - "Night Slash", - "Hyper Beam", - "Gunk Shot" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 10000, - "third_move_candy": 25, - "gym_defender_eligible": true, - "family": 263 - }, - "863": { - "name": "Perrserker", - "forms": { - "2504": { - "name": "Normal", - "proto": "PERRSERKER_NORMAL" - }, - "2505": { - "name": "Shadow", - "proto": "PERRSERKER_SHADOW" - }, - "2506": { - "name": "Purified", - "proto": "PERRSERKER_PURIFIED" - } - }, - "default_form_id": 2504, - "pokedex_id": 863, - "genId": "8", - "generation": "Galar", - "types": [ - "Steel" - ], - "attack": 195, - "defense": 162, - "stamina": 172, - "height": 0.8, - "weight": 28, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Metal Claw", - "Shadow Claw" - ], - "charged_moves": [ - "Iron Head", - "Close Combat", - "Play Rough", - "Foul Play" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 52 - }, - "864": { - "name": "Cursola", - "forms": { - "2507": { - "name": "Normal", - "proto": "CURSOLA_NORMAL" - }, - "2508": { - "name": "Shadow", - "proto": "CURSOLA_SHADOW" - }, - "2509": { - "name": "Purified", - "proto": "CURSOLA_PURIFIED" - } - } - }, - "865": { - "name": "Sirfetchd", - "forms": { - "2510": { - "name": "Normal", - "proto": "SIRFETCHD_NORMAL" - }, - "2511": { - "name": "Shadow", - "proto": "SIRFETCHD_SHADOW" - }, - "2512": { - "name": "Purified", - "proto": "SIRFETCHD_PURIFIED" - } - }, - "default_form_id": 2510, - "pokedex_id": 865, - "genId": "8", - "generation": "Galar", - "types": [ - "Fighting" - ], - "attack": 248, - "defense": 176, - "stamina": 158, - "height": 0.8, - "weight": 117, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Counter", - "Fury Cutter" - ], - "charged_moves": [ - "Close Combat", - "Brave Bird", - "Leaf Blade", - "Night Slash" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 2, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 83 - }, - "866": { - "name": "Mr Rime", - "forms": { - "2513": { - "name": "Normal", - "proto": "MR_RIME_NORMAL" - }, - "2514": { - "name": "Shadow", - "proto": "MR_RIME_SHADOW" - }, - "2515": { - "name": "Purified", - "proto": "MR_RIME_PURIFIED" - } - }, - "default_form_id": 2513, - "pokedex_id": 866, - "genId": "8", - "generation": "Galar", - "types": [ - "Ice", - "Psychic" - ], - "attack": 212, - "defense": 179, - "stamina": 190, - "height": 1.5, - "weight": 58.2, - "flee_rate": 0.09, - "capture_rate": 0.3, - "quick_moves": [ - "Confusion", - "Zen Headbutt", - "Ice Shard" - ], - "charged_moves": [ - "Psybeam", - "Psychic", - "Ice Punch", - "Icy Wind" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 5, - "third_move_stardust": 75000, - "third_move_candy": 75, - "gym_defender_eligible": true, - "family": 122 - }, - "867": { - "name": "Runerigus", - "forms": { - "2516": { - "name": "Normal", - "proto": "RUNERIGUS_NORMAL" - }, - "2517": { - "name": "Shadow", - "proto": "RUNERIGUS_SHADOW" - }, - "2518": { - "name": "Purified", - "proto": "RUNERIGUS_PURIFIED" - } - }, - "default_form_id": 2516, - "pokedex_id": 867, - "genId": "8", - "generation": "Galar", - "types": [ - "Ground", - "Ghost" - ], - "attack": 163, - "defense": 237, - "stamina": 151, - "height": 1.6, - "weight": 66.6, - "flee_rate": 0.07, - "capture_rate": 0.1, - "quick_moves": [ - "Astonish" - ], - "charged_moves": [ - "Shadow Ball", - "Sand Tomb", - "Rock Tomb" - ], - "legendary": false, - "mythic": false, - "buddy_group_number": 3, - "buddy_distance": 3, - "third_move_stardust": 50000, - "third_move_candy": 50, - "gym_defender_eligible": true, - "family": 562 - } - }, - "pokemon_types": { - "Normal": { - "immunes": [ - "Ghost" - ], - "weaknesses": [ - "Fighting" - ], - "resistances": [ - "None" - ], - "strengths": [] - }, - "Fighting": { - "immunes": [], - "weaknesses": [ - "Flying", - "Psychic", - "Fairy" - ], - "resistances": [ - "Bug", - "Rock", - "Dark" - ], - "strengths": [ - "Normal", - "Ice", - "Rock", - "Dark", - "Steel" - ] - }, - "Flying": { - "immunes": [ - "Flying" - ], - "weaknesses": [ - "Electric", - "Ice", - "Rock" - ], - "resistances": [ - "Grass", - "Fighting", - "Bug" - ], - "strengths": [ - "Grass", - "Fighting", - "Bug" - ] - }, - "Poison": { - "immunes": [], - "weaknesses": [ - "Ground", - "Psychic" - ], - "resistances": [ - "Grass", - "Fighting", - "Poison", - "Bug", - "Fairy" - ], - "strengths": [ - "Grass", - "Fairy" - ] - }, - "Ground": { - "immunes": [ - "Flying" - ], - "weaknesses": [ - "Water", - "Grass", - "Ice" - ], - "resistances": [ - "Poison", - "Rock" - ], - "strengths": [ - "Fire", - "Electric", - "Poison", - "Rock", - "Steel" - ] - }, - "Rock": { - "immunes": [], - "weaknesses": [ - "Water", - "Grass", - "Fighting", - "Ground", - "Steel" - ], - "resistances": [ - "Normal", - "Fire", - "Poison", - "Flying" - ], - "strengths": [ - "Fire", - "Ice", - "Flying", - "Bug" - ] - }, - "Bug": { - "immunes": [], - "weaknesses": [ - "Fire", - "Flying", - "Rock" - ], - "resistances": [ - "Grass", - "Fighting", - "Ground" - ], - "strengths": [ - "Grass", - "Psychic", - "Dark" - ] - }, - "Ghost": { - "immunes": [ - "Normal", - "Fighting" - ], - "weaknesses": [ - "Ghost", - "Dark" - ], - "resistances": [ - "Poison", - "Bug" - ], - "strengths": [ - "Psychic", - "Ghost" - ] - }, - "Steel": { - "immunes": [ - "Poison" - ], - "weaknesses": [ - "Fire", - "Fighting", - "Ground" - ], - "resistances": [ - "Normal", - "Grass", - "Ice", - "Flying", - "Psychic", - "Bug", - "Rock", - "Dragon", - "Steel", - "Fairy" - ], - "strengths": [ - "Ice", - "Rock", - "Fairy" - ] - }, - "Fire": { - "immunes": [], - "weaknesses": [ - "Water", - "Ground", - "Rock" - ], - "resistances": [ - "Fire", - "Grass", - "Ice", - "Bug", - "Steel", - "Fairy" - ], - "strengths": [ - "Grass", - "Ice", - "Bug", - "Steel" - ] - }, - "Water": { - "immunes": [], - "weaknesses": [ - "Grass", - "Electric" - ], - "resistances": [ - "Fire", - "Water", - "Ice", - "Steel" - ], - "strengths": [ - "Water", - "Ground", - "Rock" - ] - }, - "Grass": { - "immunes": [], - "weaknesses": [ - "Fire", - "Ice", - "Poison", - "Flying", - "Bug" - ], - "resistances": [ - "Water", - "Grass", - "Electric", - "Ground" - ], - "strengths": [ - "Water", - "Ground", - "Rock" - ] - }, - "Electric": { - "immunes": [], - "weaknesses": [ - "Ground" - ], - "resistances": [ - "Electric", - "Flying", - "Steel" - ], - "strengths": [ - "Water", - "Flying" - ] - }, - "Psychic": { - "immunes": [], - "weaknesses": [ - "Bug", - "Ghost", - "Dark" - ], - "resistances": [ - "Fighting", - "Psychic" - ], - "strengths": [ - "Fighting", - "Poison" - ] - }, - "Ice": { - "immunes": [], - "weaknesses": [ - "Fire", - "Fighting", - "Rock", - "Steel" - ], - "resistances": [ - "Ice" - ], - "strengths": [ - "Grass", - "Ground", - "Flying", - "Dragon" - ] - }, - "Dragon": { - "immunes": [], - "weaknesses": [ - "Ice", - "Dragon", - "Fairy" - ], - "resistances": [ - "Fire", - "Water", - "Grass", - "Electric" - ], - "strengths": [ - "Dragon" - ] - }, - "Dark": { - "immunes": [ - "Psychic" - ], - "weaknesses": [ - "Fighting", - "Bug", - "Fairy" - ], - "resistances": [ - "Ghost", - "Dark" - ], - "strengths": [ - "Psychic", - "Ghost" - ] - }, - "Fairy": { - "immunes": [ - "Dragon" - ], - "weaknesses": [ - "Poison", - "Steel" - ], - "resistances": [ - "Fighting", - "Bug", - "Dark" - ], - "strengths": [ - "Fighting", - "Dragon", - "Dark" - ] - } - }, - "moves": { - "0": { - "name": "Move Unset" - }, - "1": { - "name": "Thunder Shock" - }, - "2": { - "name": "Quick Attack" - }, - "3": { - "name": "Scratch" - }, - "4": { - "name": "Ember" - }, - "5": { - "name": "Vine Whip" - }, - "6": { - "name": "Tackle" - }, - "7": { - "name": "Razor Leaf" - }, - "8": { - "name": "Take Down" - }, - "9": { - "name": "Water Gun" - }, - "10": { - "name": "Bite" - }, - "11": { - "name": "Pound" - }, - "12": { - "name": "Double Slap" - }, - "13": { - "name": "Wrap", - "proto": "V0013_MOVE_WRAP", - "type": "Normal", - "power": 60 - }, - "14": { - "name": "Hyper Beam", - "proto": "V0014_MOVE_HYPER_BEAM", - "type": "Normal", - "power": 150 - }, - "15": { - "name": "Lick" - }, - "16": { - "name": "Dark Pulse", - "proto": "V0016_MOVE_DARK_PULSE", - "type": "Dark", - "power": 80 - }, - "17": { - "name": "Smog" - }, - "18": { - "name": "Sludge", - "proto": "V0018_MOVE_SLUDGE", - "type": "Poison", - "power": 50 - }, - "19": { - "name": "Metal Claw" - }, - "20": { - "name": "Vice Grip", - "proto": "V0020_MOVE_VICE_GRIP", - "type": "Normal", - "power": 40 - }, - "21": { - "name": "Flame Wheel", - "proto": "V0021_MOVE_FLAME_WHEEL", - "type": "Fire", - "power": 60 - }, - "22": { - "name": "Megahorn", - "proto": "V0022_MOVE_MEGAHORN", - "type": "Bug", - "power": 100 - }, - "23": { - "name": "Wing Attack" - }, - "24": { - "name": "Flamethrower", - "proto": "V0024_MOVE_FLAMETHROWER", - "type": "Fire", - "power": 90 - }, - "25": { - "name": "Sucker Punch" - }, - "26": { - "name": "Dig", - "proto": "V0026_MOVE_DIG", - "type": "Ground", - "power": 100 - }, - "27": { - "name": "Low Kick" - }, - "28": { - "name": "Cross Chop", - "proto": "V0028_MOVE_CROSS_CHOP", - "type": "Fighting", - "power": 50 - }, - "29": { - "name": "Psycho Cut" - }, - "30": { - "name": "Psybeam", - "proto": "V0030_MOVE_PSYBEAM", - "type": "Psychic", - "power": 70 - }, - "31": { - "name": "Earthquake", - "proto": "V0031_MOVE_EARTHQUAKE", - "type": "Ground", - "power": 120 - }, - "32": { - "name": "Stone Edge", - "proto": "V0032_MOVE_STONE_EDGE", - "type": "Rock", - "power": 100 - }, - "33": { - "name": "Ice Punch", - "proto": "V0033_MOVE_ICE_PUNCH", - "type": "Ice", - "power": 55 - }, - "34": { - "name": "Heart Stamp", - "proto": "V0034_MOVE_HEART_STAMP", - "type": "Psychic", - "power": 40 - }, - "35": { - "name": "Discharge", - "proto": "V0035_MOVE_DISCHARGE", - "type": "Electric", - "power": 65 - }, - "36": { - "name": "Flash Cannon", - "proto": "V0036_MOVE_FLASH_CANNON", - "type": "Steel", - "power": 110 - }, - "37": { - "name": "Peck" - }, - "38": { - "name": "Drill Peck", - "proto": "V0038_MOVE_DRILL_PECK", - "type": "Flying", - "power": 65 - }, - "39": { - "name": "Ice Beam", - "proto": "V0039_MOVE_ICE_BEAM", - "type": "Ice", - "power": 90 - }, - "40": { - "name": "Blizzard", - "proto": "V0040_MOVE_BLIZZARD", - "type": "Ice", - "power": 140 - }, - "41": { - "name": "Air Slash" - }, - "42": { - "name": "Heat Wave", - "proto": "V0042_MOVE_HEAT_WAVE", - "type": "Fire", - "power": 95 - }, - "43": { - "name": "Twineedle" - }, - "44": { - "name": "Poison Jab" - }, - "45": { - "name": "Aerial Ace", - "proto": "V0045_MOVE_AERIAL_ACE", - "type": "Flying", - "power": 55 - }, - "46": { - "name": "Drill Run", - "proto": "V0046_MOVE_DRILL_RUN", - "type": "Ground", - "power": 80 - }, - "47": { - "name": "Petal Blizzard", - "proto": "V0047_MOVE_PETAL_BLIZZARD", - "type": "Grass", - "power": 110 - }, - "48": { - "name": "Mega Drain", - "proto": "V0048_MOVE_MEGA_DRAIN", - "type": "Grass", - "power": 25 - }, - "49": { - "name": "Bug Buzz", - "proto": "V0049_MOVE_BUG_BUZZ", - "type": "Bug", - "power": 90 - }, - "50": { - "name": "Poison Fang", - "proto": "V0050_MOVE_POISON_FANG", - "type": "Poison", - "power": 40 - }, - "51": { - "name": "Night Slash", - "proto": "V0051_MOVE_NIGHT_SLASH", - "type": "Dark", - "power": 50 - }, - "52": { - "name": "Slash" - }, - "53": { - "name": "Bubble Beam", - "proto": "V0053_MOVE_BUBBLE_BEAM", - "type": "Water", - "power": 25 - }, - "54": { - "name": "Submission", - "proto": "V0054_MOVE_SUBMISSION", - "type": "Fighting", - "power": 60 - }, - "55": { - "name": "Karate Chop" - }, - "56": { - "name": "Low Sweep", - "proto": "V0056_MOVE_LOW_SWEEP", - "type": "Fighting", - "power": 40 - }, - "57": { - "name": "Aqua Jet", - "proto": "V0057_MOVE_AQUA_JET", - "type": "Water", - "power": 45 - }, - "58": { - "name": "Aqua Tail", - "proto": "V0058_MOVE_AQUA_TAIL", - "type": "Water", - "power": 50 - }, - "59": { - "name": "Seed Bomb", - "proto": "V0059_MOVE_SEED_BOMB", - "type": "Grass", - "power": 55 - }, - "60": { - "name": "Psyshock", - "proto": "V0060_MOVE_PSYSHOCK", - "type": "Psychic", - "power": 70 - }, - "61": { - "name": "Rock Throw" - }, - "62": { - "name": "Ancient Power", - "proto": "V0062_MOVE_ANCIENT_POWER", - "type": "Rock", - "power": 45 - }, - "63": { - "name": "Rock Tomb", - "proto": "V0063_MOVE_ROCK_TOMB", - "type": "Rock", - "power": 70 - }, - "64": { - "name": "Rock Slide", - "proto": "V0064_MOVE_ROCK_SLIDE", - "type": "Rock", - "power": 75 - }, - "65": { - "name": "Power Gem", - "proto": "V0065_MOVE_POWER_GEM", - "type": "Rock", - "power": 80 - }, - "66": { - "name": "Shadow Sneak", - "proto": "V0066_MOVE_SHADOW_SNEAK", - "type": "Ghost", - "power": 50 - }, - "67": { - "name": "Shadow Punch", - "proto": "V0067_MOVE_SHADOW_PUNCH", - "type": "Ghost", - "power": 40 - }, - "68": { - "name": "Shadow Claw" - }, - "69": { - "name": "Ominous Wind", - "proto": "V0069_MOVE_OMINOUS_WIND", - "type": "Ghost", - "power": 45 - }, - "70": { - "name": "Shadow Ball", - "proto": "V0070_MOVE_SHADOW_BALL", - "type": "Ghost", - "power": 100 - }, - "71": { - "name": "Bullet Punch" - }, - "72": { - "name": "Magnet Bomb", - "proto": "V0072_MOVE_MAGNET_BOMB", - "type": "Steel", - "power": 70 - }, - "73": { - "name": "Steel Wing" - }, - "74": { - "name": "Iron Head", - "proto": "V0074_MOVE_IRON_HEAD", - "type": "Steel", - "power": 70 - }, - "75": { - "name": "Parabolic Charge", - "proto": "V0075_MOVE_PARABOLIC_CHARGE", - "type": "Electric", - "power": 25 - }, - "76": { - "name": "Spark" - }, - "77": { - "name": "Thunder Punch", - "proto": "V0077_MOVE_THUNDER_PUNCH", - "type": "Electric", - "power": 55 - }, - "78": { - "name": "Thunder", - "proto": "V0078_MOVE_THUNDER", - "type": "Electric", - "power": 100 - }, - "79": { - "name": "Thunderbolt", - "proto": "V0079_MOVE_THUNDERBOLT", - "type": "Electric", - "power": 90 - }, - "80": { - "name": "Twister", - "proto": "V0080_MOVE_TWISTER", - "type": "Dragon", - "power": 45 - }, - "81": { - "name": "Dragon Breath" - }, - "82": { - "name": "Dragon Pulse", - "proto": "V0082_MOVE_DRAGON_PULSE", - "type": "Dragon", - "power": 90 - }, - "83": { - "name": "Dragon Claw", - "proto": "V0083_MOVE_DRAGON_CLAW", - "type": "Dragon", - "power": 50 - }, - "84": { - "name": "Disarming Voice", - "proto": "V0084_MOVE_DISARMING_VOICE", - "type": "Fairy", - "power": 70 - }, - "85": { - "name": "Draining Kiss", - "proto": "V0085_MOVE_DRAINING_KISS", - "type": "Fairy", - "power": 60 - }, - "86": { - "name": "Dazzling Gleam", - "proto": "V0086_MOVE_DAZZLING_GLEAM", - "type": "Fairy", - "power": 110 - }, - "87": { - "name": "Moonblast", - "proto": "V0087_MOVE_MOONBLAST", - "type": "Fairy", - "power": 110 - }, - "88": { - "name": "Play Rough", - "proto": "V0088_MOVE_PLAY_ROUGH", - "type": "Fairy", - "power": 90 - }, - "89": { - "name": "Cross Poison", - "proto": "V0089_MOVE_CROSS_POISON", - "type": "Poison", - "power": 50 - }, - "90": { - "name": "Sludge Bomb", - "proto": "V0090_MOVE_SLUDGE_BOMB", - "type": "Poison", - "power": 80 - }, - "91": { - "name": "Sludge Wave", - "proto": "V0091_MOVE_SLUDGE_WAVE", - "type": "Poison", - "power": 110 - }, - "92": { - "name": "Gunk Shot", - "proto": "V0092_MOVE_GUNK_SHOT", - "type": "Poison", - "power": 130 - }, - "93": { - "name": "Mud Shot" - }, - "94": { - "name": "Bone Club", - "proto": "V0094_MOVE_BONE_CLUB", - "type": "Ground", - "power": 40 - }, - "95": { - "name": "Bulldoze", - "proto": "V0095_MOVE_BULLDOZE", - "type": "Ground", - "power": 80 - }, - "96": { - "name": "Mud Bomb", - "proto": "V0096_MOVE_MUD_BOMB", - "type": "Ground", - "power": 55 - }, - "97": { - "name": "Fury Cutter" - }, - "98": { - "name": "Bug Bite" - }, - "99": { - "name": "Signal Beam", - "proto": "V0099_MOVE_SIGNAL_BEAM", - "type": "Bug", - "power": 75 - }, - "100": { - "name": "X Scissor", - "proto": "V0100_MOVE_X_SCISSOR", - "type": "Bug", - "power": 45 - }, - "101": { - "name": "Flame Charge", - "proto": "V0101_MOVE_FLAME_CHARGE", - "type": "Fire", - "power": 65 - }, - "102": { - "name": "Flame Burst", - "proto": "V0102_MOVE_FLAME_BURST", - "type": "Fire", - "power": 70 - }, - "103": { - "name": "Fire Blast", - "proto": "V0103_MOVE_FIRE_BLAST", - "type": "Fire", - "power": 140 - }, - "104": { - "name": "Brine", - "proto": "V0104_MOVE_BRINE", - "type": "Water", - "power": 60 - }, - "105": { - "name": "Water Pulse", - "proto": "V0105_MOVE_WATER_PULSE", - "type": "Water", - "power": 70 - }, - "106": { - "name": "Scald", - "proto": "V0106_MOVE_SCALD", - "type": "Water", - "power": 80 - }, - "107": { - "name": "Hydro Pump", - "proto": "V0107_MOVE_HYDRO_PUMP", - "type": "Water", - "power": 130 - }, - "108": { - "name": "Psychic", - "proto": "V0108_MOVE_PSYCHIC", - "type": "Psychic", - "power": 90 - }, - "109": { - "name": "Psystrike", - "proto": "V0109_MOVE_PSYSTRIKE", - "type": "Psychic", - "power": 90 - }, - "110": { - "name": "Ice Shard" - }, - "111": { - "name": "Icy Wind", - "proto": "V0111_MOVE_ICY_WIND", - "type": "Ice", - "power": 60 - }, - "112": { - "name": "Frost Breath" - }, - "113": { - "name": "Absorb" - }, - "114": { - "name": "Giga Drain", - "proto": "V0114_MOVE_GIGA_DRAIN", - "type": "Grass", - "power": 50 - }, - "115": { - "name": "Fire Punch", - "proto": "V0115_MOVE_FIRE_PUNCH", - "type": "Fire", - "power": 55 - }, - "116": { - "name": "Solar Beam", - "proto": "V0116_MOVE_SOLAR_BEAM", - "type": "Grass", - "power": 150 - }, - "117": { - "name": "Leaf Blade", - "proto": "V0117_MOVE_LEAF_BLADE", - "type": "Grass", - "power": 70 - }, - "118": { - "name": "Power Whip", - "proto": "V0118_MOVE_POWER_WHIP", - "type": "Grass", - "power": 90 - }, - "119": { - "name": "Splash" - }, - "120": { - "name": "Acid" - }, - "121": { - "name": "Air Cutter", - "proto": "V0121_MOVE_AIR_CUTTER", - "type": "Flying", - "power": 60 - }, - "122": { - "name": "Hurricane", - "proto": "V0122_MOVE_HURRICANE", - "type": "Flying", - "power": 110 - }, - "123": { - "name": "Brick Break", - "proto": "V0123_MOVE_BRICK_BREAK", - "type": "Fighting", - "power": 40 - }, - "124": { - "name": "Cut" - }, - "125": { - "name": "Swift", - "proto": "V0125_MOVE_SWIFT", - "type": "Normal", - "power": 60 - }, - "126": { - "name": "Horn Attack", - "proto": "V0126_MOVE_HORN_ATTACK", - "type": "Normal", - "power": 40 - }, - "127": { - "name": "Stomp", - "proto": "V0127_MOVE_STOMP", - "type": "Normal", - "power": 55 - }, - "128": { - "name": "Headbutt" - }, - "129": { - "name": "Hyper Fang", - "proto": "V0129_MOVE_HYPER_FANG", - "type": "Normal", - "power": 80 - }, - "130": { - "name": "Slam" - }, - "131": { - "name": "Body Slam", - "proto": "V0131_MOVE_BODY_SLAM", - "type": "Normal", - "power": 60 - }, - "132": { - "name": "Rest", - "proto": "V0132_MOVE_REST", - "type": "Normal", - "power": 50 - }, - "133": { - "name": "Struggle", - "proto": "V0133_MOVE_STRUGGLE", - "type": "Normal", - "power": 35 - }, - "134": { - "name": "Scald Blastoise", - "proto": "V0134_MOVE_SCALD_BLASTOISE", - "type": "Water", - "power": 50 - }, - "135": { - "name": "Hydro Pump Blastoise", - "proto": "V0135_MOVE_HYDRO_PUMP_BLASTOISE", - "type": "Water", - "power": 90 - }, - "136": { - "name": "Wrap Green", - "proto": "V0136_MOVE_WRAP_GREEN", - "type": "Normal", - "power": 25 - }, - "137": { - "name": "Wrap Pink", - "proto": "V0137_MOVE_WRAP_PINK", - "type": "Normal", - "power": 25 - }, - "200": { - "name": "Fury Cutter", - "proto": "V0200_MOVE_FURY_CUTTER_FAST", - "type": "Bug", - "power": 2 - }, - "201": { - "name": "Bug Bite", - "proto": "V0201_MOVE_BUG_BITE_FAST", - "type": "Bug", - "power": 3 - }, - "202": { - "name": "Bite", - "proto": "V0202_MOVE_BITE_FAST", - "type": "Dark", - "power": 4 - }, - "203": { - "name": "Sucker Punch", - "proto": "V0203_MOVE_SUCKER_PUNCH_FAST", - "type": "Dark", - "power": 5 - }, - "204": { - "name": "Dragon Breath", - "proto": "V0204_MOVE_DRAGON_BREATH_FAST", - "type": "Dragon", - "power": 4 - }, - "205": { - "name": "Thunder Shock", - "proto": "V0205_MOVE_THUNDER_SHOCK_FAST", - "type": "Electric", - "power": 3 - }, - "206": { - "name": "Spark", - "proto": "V0206_MOVE_SPARK_FAST", - "type": "Electric", - "power": 4 - }, - "207": { - "name": "Low Kick", - "proto": "V0207_MOVE_LOW_KICK_FAST", - "type": "Fighting", - "power": 4 - }, - "208": { - "name": "Karate Chop", - "proto": "V0208_MOVE_KARATE_CHOP_FAST", - "type": "Fighting", - "power": 5 - }, - "209": { - "name": "Ember", - "proto": "V0209_MOVE_EMBER_FAST", - "type": "Fire", - "power": 7 - }, - "210": { - "name": "Wing Attack", - "proto": "V0210_MOVE_WING_ATTACK_FAST", - "type": "Flying", - "power": 5 - }, - "211": { - "name": "Peck", - "proto": "V0211_MOVE_PECK_FAST", - "type": "Flying", - "power": 6 - }, - "212": { - "name": "Lick", - "proto": "V0212_MOVE_LICK_FAST", - "type": "Ghost", - "power": 3 - }, - "213": { - "name": "Shadow Claw", - "proto": "V0213_MOVE_SHADOW_CLAW_FAST", - "type": "Ghost", - "power": 6 - }, - "214": { - "name": "Vine Whip", - "proto": "V0214_MOVE_VINE_WHIP_FAST", - "type": "Grass", - "power": 5 - }, - "215": { - "name": "Razor Leaf", - "proto": "V0215_MOVE_RAZOR_LEAF_FAST", - "type": "Grass", - "power": 10 - }, - "216": { - "name": "Mud Shot", - "proto": "V0216_MOVE_MUD_SHOT_FAST", - "type": "Ground", - "power": 3 - }, - "217": { - "name": "Ice Shard", - "proto": "V0217_MOVE_ICE_SHARD_FAST", - "type": "Ice", - "power": 9 - }, - "218": { - "name": "Frost Breath", - "proto": "V0218_MOVE_FROST_BREATH_FAST", - "type": "Ice", - "power": 7 - }, - "219": { - "name": "Quick Attack", - "proto": "V0219_MOVE_QUICK_ATTACK_FAST", - "type": "Normal", - "power": 5 - }, - "220": { - "name": "Scratch", - "proto": "V0220_MOVE_SCRATCH_FAST", - "type": "Normal", - "power": 4 - }, - "221": { - "name": "Tackle", - "proto": "V0221_MOVE_TACKLE_FAST", - "type": "Normal", - "power": 3 - }, - "222": { - "name": "Pound", - "proto": "V0222_MOVE_POUND_FAST", - "type": "Normal", - "power": 5 - }, - "223": { - "name": "Cut", - "proto": "V0223_MOVE_CUT_FAST", - "type": "Normal", - "power": 3 - }, - "224": { - "name": "Poison Jab", - "proto": "V0224_MOVE_POISON_JAB_FAST", - "type": "Poison", - "power": 7 - }, - "225": { - "name": "Acid", - "proto": "V0225_MOVE_ACID_FAST", - "type": "Poison", - "power": 6 - }, - "226": { - "name": "Psycho Cut", - "proto": "V0226_MOVE_PSYCHO_CUT_FAST", - "type": "Psychic", - "power": 3 - }, - "227": { - "name": "Rock Throw", - "proto": "V0227_MOVE_ROCK_THROW_FAST", - "type": "Rock", - "power": 8 - }, - "228": { - "name": "Metal Claw", - "proto": "V0228_MOVE_METAL_CLAW_FAST", - "type": "Steel", - "power": 5 - }, - "229": { - "name": "Bullet Punch", - "proto": "V0229_MOVE_BULLET_PUNCH_FAST", - "type": "Steel", - "power": 6 - }, - "230": { - "name": "Water Gun", - "proto": "V0230_MOVE_WATER_GUN_FAST", - "type": "Water", - "power": 3 - }, - "231": { - "name": "Splash", - "proto": "V0231_MOVE_SPLASH_FAST", - "type": "Water" - }, - "232": { - "name": "Water Gun Blastoise", - "proto": "V0232_MOVE_WATER_GUN_FAST_BLASTOISE", - "type": "Water", - "power": 6 - }, - "233": { - "name": "Mud Slap", - "proto": "V0233_MOVE_MUD_SLAP_FAST", - "type": "Ground", - "power": 11 - }, - "234": { - "name": "Zen Headbutt", - "proto": "V0234_MOVE_ZEN_HEADBUTT_FAST", - "type": "Psychic", - "power": 8 - }, - "235": { - "name": "Confusion", - "proto": "V0235_MOVE_CONFUSION_FAST", - "type": "Psychic", - "power": 16 - }, - "236": { - "name": "Poison Sting", - "proto": "V0236_MOVE_POISON_STING_FAST", - "type": "Poison", - "power": 3 - }, - "237": { - "name": "Bubble", - "proto": "V0237_MOVE_BUBBLE_FAST", - "type": "Water", - "power": 7 - }, - "238": { - "name": "Feint Attack", - "proto": "V0238_MOVE_FEINT_ATTACK_FAST", - "type": "Dark", - "power": 6 - }, - "239": { - "name": "Steel Wing", - "proto": "V0239_MOVE_STEEL_WING_FAST", - "type": "Steel", - "power": 7 - }, - "240": { - "name": "Fire Fang", - "proto": "V0240_MOVE_FIRE_FANG_FAST", - "type": "Fire", - "power": 8 - }, - "241": { - "name": "Rock Smash", - "proto": "V0241_MOVE_ROCK_SMASH_FAST", - "type": "Fighting", - "power": 9 - }, - "242": { - "name": "Transform", - "proto": "V0242_MOVE_TRANSFORM_FAST", - "type": "Normal" - }, - "243": { - "name": "Counter", - "proto": "V0243_MOVE_COUNTER_FAST", - "type": "Fighting", - "power": 8 - }, - "244": { - "name": "Powder Snow", - "proto": "V0244_MOVE_POWDER_SNOW_FAST", - "type": "Ice", - "power": 5 - }, - "245": { - "name": "Close Combat", - "proto": "V0245_MOVE_CLOSE_COMBAT", - "type": "Fighting", - "power": 100 - }, - "246": { - "name": "Dynamic Punch", - "proto": "V0246_MOVE_DYNAMIC_PUNCH", - "type": "Fighting", - "power": 90 - }, - "247": { - "name": "Focus Blast", - "proto": "V0247_MOVE_FOCUS_BLAST", - "type": "Fighting", - "power": 150 - }, - "248": { - "name": "Aurora Beam", - "proto": "V0248_MOVE_AURORA_BEAM", - "type": "Ice", - "power": 80 - }, - "249": { - "name": "Charge Beam", - "proto": "V0249_MOVE_CHARGE_BEAM_FAST", - "type": "Electric", - "power": 5 - }, - "250": { - "name": "Volt Switch", - "proto": "V0250_MOVE_VOLT_SWITCH_FAST", - "type": "Electric", - "power": 12 - }, - "251": { - "name": "Wild Charge", - "proto": "V0251_MOVE_WILD_CHARGE", - "type": "Electric", - "power": 100 - }, - "252": { - "name": "Zap Cannon", - "proto": "V0252_MOVE_ZAP_CANNON", - "type": "Electric", - "power": 150 - }, - "253": { - "name": "Dragon Tail", - "proto": "V0253_MOVE_DRAGON_TAIL_FAST", - "type": "Dragon", - "power": 13 - }, - "254": { - "name": "Avalanche", - "proto": "V0254_MOVE_AVALANCHE", - "type": "Ice", - "power": 90 - }, - "255": { - "name": "Air Slash", - "proto": "V0255_MOVE_AIR_SLASH_FAST", - "type": "Flying", - "power": 9 - }, - "256": { - "name": "Brave Bird", - "proto": "V0256_MOVE_BRAVE_BIRD", - "type": "Flying", - "power": 130 - }, - "257": { - "name": "Sky Attack", - "proto": "V0257_MOVE_SKY_ATTACK", - "type": "Flying", - "power": 75 - }, - "258": { - "name": "Sand Tomb", - "proto": "V0258_MOVE_SAND_TOMB", - "type": "Ground", - "power": 25 - }, - "259": { - "name": "Rock Blast", - "proto": "V0259_MOVE_ROCK_BLAST", - "type": "Rock", - "power": 50 - }, - "260": { - "name": "Infestation", - "proto": "V0260_MOVE_INFESTATION_FAST", - "type": "Bug", - "power": 6 - }, - "261": { - "name": "Struggle Bug", - "proto": "V0261_MOVE_STRUGGLE_BUG_FAST", - "type": "Bug", - "power": 9 - }, - "262": { - "name": "Silver Wind", - "proto": "V0262_MOVE_SILVER_WIND", - "type": "Bug", - "power": 45 - }, - "263": { - "name": "Astonish", - "proto": "V0263_MOVE_ASTONISH_FAST", - "type": "Ghost", - "power": 5 - }, - "264": { - "name": "Hex", - "proto": "V0264_MOVE_HEX_FAST", - "type": "Ghost", - "power": 6 - }, - "265": { - "name": "Night Shade", - "proto": "V0265_MOVE_NIGHT_SHADE", - "type": "Ghost", - "power": 60 - }, - "266": { - "name": "Iron Tail", - "proto": "V0266_MOVE_IRON_TAIL_FAST", - "type": "Steel", - "power": 9 - }, - "267": { - "name": "Gyro Ball", - "proto": "V0267_MOVE_GYRO_BALL", - "type": "Steel", - "power": 80 - }, - "268": { - "name": "Heavy Slam", - "proto": "V0268_MOVE_HEAVY_SLAM", - "type": "Steel", - "power": 70 - }, - "269": { - "name": "Fire Spin", - "proto": "V0269_MOVE_FIRE_SPIN_FAST", - "type": "Fire", - "power": 9 - }, - "270": { - "name": "Overheat", - "proto": "V0270_MOVE_OVERHEAT", - "type": "Fire", - "power": 130 - }, - "271": { - "name": "Bullet Seed", - "proto": "V0271_MOVE_BULLET_SEED_FAST", - "type": "Grass", - "power": 5 - }, - "272": { - "name": "Grass Knot", - "proto": "V0272_MOVE_GRASS_KNOT", - "type": "Grass", - "power": 90 - }, - "273": { - "name": "Energy Ball", - "proto": "V0273_MOVE_ENERGY_BALL", - "type": "Grass", - "power": 90 - }, - "274": { - "name": "Extrasensory", - "proto": "V0274_MOVE_EXTRASENSORY_FAST", - "type": "Psychic", - "power": 8 - }, - "275": { - "name": "Futuresight", - "proto": "V0275_MOVE_FUTURESIGHT", - "type": "Psychic", - "power": 120 - }, - "276": { - "name": "Mirror Coat", - "proto": "V0276_MOVE_MIRROR_COAT", - "type": "Psychic", - "power": 60 - }, - "277": { - "name": "Outrage", - "proto": "V0277_MOVE_OUTRAGE", - "type": "Dragon", - "power": 110 - }, - "278": { - "name": "Snarl", - "proto": "V0278_MOVE_SNARL_FAST", - "type": "Dark", - "power": 5 - }, - "279": { - "name": "Crunch", - "proto": "V0279_MOVE_CRUNCH", - "type": "Dark", - "power": 70 - }, - "280": { - "name": "Foul Play", - "proto": "V0280_MOVE_FOUL_PLAY", - "type": "Dark", - "power": 70 - }, - "281": { - "name": "Hidden Power", - "proto": "V0281_MOVE_HIDDEN_POWER_FAST", - "type": "Normal", - "power": 9 - }, - "282": { - "name": "Take Down", - "proto": "V0282_MOVE_TAKE_DOWN_FAST", - "type": "Normal", - "power": 5 - }, - "283": { - "name": "Waterfall", - "proto": "V0283_MOVE_WATERFALL_FAST", - "type": "Water", - "power": 12 - }, - "284": { - "name": "Surf", - "proto": "V0284_MOVE_SURF", - "type": "Water", - "power": 65 - }, - "285": { - "name": "Draco Meteor", - "proto": "V0285_MOVE_DRACO_METEOR", - "type": "Dragon", - "power": 150 - }, - "286": { - "name": "Doom Desire", - "proto": "V0286_MOVE_DOOM_DESIRE", - "type": "Steel", - "power": 75 - }, - "287": { - "name": "Yawn", - "proto": "V0287_MOVE_YAWN_FAST", - "type": "Normal" - }, - "288": { - "name": "Psycho Boost", - "proto": "V0288_MOVE_PSYCHO_BOOST", - "type": "Psychic", - "power": 70 - }, - "289": { - "name": "Origin Pulse", - "proto": "V0289_MOVE_ORIGIN_PULSE", - "type": "Water", - "power": 130 - }, - "290": { - "name": "Precipice Blades", - "proto": "V0290_MOVE_PRECIPICE_BLADES", - "type": "Ground", - "power": 130 - }, - "291": { - "name": "Present", - "proto": "V0291_MOVE_PRESENT_FAST", - "type": "Normal", - "power": 3 - }, - "292": { - "name": "Weather Ball Fire", - "proto": "V0292_MOVE_WEATHER_BALL_FIRE", - "type": "Fire", - "power": 60 - }, - "293": { - "name": "Weather Ball Ice", - "proto": "V0293_MOVE_WEATHER_BALL_ICE", - "type": "Ice", - "power": 60 - }, - "294": { - "name": "Weather Ball Rock", - "proto": "V0294_MOVE_WEATHER_BALL_ROCK", - "type": "Rock", - "power": 60 - }, - "295": { - "name": "Weather Ball Water", - "proto": "V0295_MOVE_WEATHER_BALL_WATER", - "type": "Water", - "power": 60 - }, - "296": { - "name": "Frenzy Plant", - "proto": "V0296_MOVE_FRENZY_PLANT", - "type": "Grass", - "power": 100 - }, - "297": { - "name": "Smack Down", - "proto": "V0297_MOVE_SMACK_DOWN_FAST", - "type": "Rock", - "power": 12 - }, - "298": { - "name": "Blast Burn", - "proto": "V0298_MOVE_BLAST_BURN", - "type": "Fire", - "power": 110 - }, - "299": { - "name": "Hydro Cannon", - "proto": "V0299_MOVE_HYDRO_CANNON", - "type": "Water", - "power": 80 - }, - "300": { - "name": "Last Resort", - "proto": "V0300_MOVE_LAST_RESORT", - "type": "Normal", - "power": 90 - }, - "301": { - "name": "Meteor Mash", - "proto": "V0301_MOVE_METEOR_MASH", - "type": "Steel", - "power": 100 - }, - "302": { - "name": "Skull Bash", - "proto": "V0302_MOVE_SKULL_BASH", - "type": "Normal", - "power": 130 - }, - "303": { - "name": "Acid Spray", - "proto": "V0303_MOVE_ACID_SPRAY", - "type": "Poison", - "power": 20 - }, - "304": { - "name": "Earth Power", - "proto": "V0304_MOVE_EARTH_POWER", - "type": "Ground", - "power": 90 - }, - "305": { - "name": "Crabhammer", - "proto": "V0305_MOVE_CRABHAMMER", - "type": "Water", - "power": 85 - }, - "306": { - "name": "Lunge", - "proto": "V0306_MOVE_LUNGE", - "type": "Bug", - "power": 60 - }, - "307": { - "name": "Crush Claw" - }, - "308": { - "name": "Octazooka", - "proto": "V0308_MOVE_OCTAZOOKA", - "type": "Water", - "power": 50 - }, - "309": { - "name": "Mirror Shot", - "proto": "V0309_MOVE_MIRROR_SHOT", - "type": "Steel", - "power": 35 - }, - "310": { - "name": "Super Power", - "proto": "V0310_MOVE_SUPER_POWER", - "type": "Fighting", - "power": 85 - }, - "311": { - "name": "Fell Stinger", - "proto": "V0311_MOVE_FELL_STINGER", - "type": "Bug", - "power": 20 - }, - "312": { - "name": "Leaf Tornado", - "proto": "V0312_MOVE_LEAF_TORNADO", - "type": "Grass", - "power": 45 - }, - "313": { - "name": "Leech Life" - }, - "314": { - "name": "Drain Punch" - }, - "315": { - "name": "Shadow Bone", - "proto": "V0315_MOVE_SHADOW_BONE", - "type": "Ghost", - "power": 75 - }, - "316": { - "name": "Muddy Water", - "proto": "V0316_MOVE_MUDDY_WATER", - "type": "Water", - "power": 35 - }, - "317": { - "name": "Blaze Kick", - "proto": "V0317_MOVE_BLAZE_KICK", - "type": "Fire", - "power": 55 - }, - "318": { - "name": "Razor Shell" - }, - "319": { - "name": "Power Up Punch", - "proto": "V0319_MOVE_POWER_UP_PUNCH", - "type": "Fighting", - "power": 20 - }, - "320": { - "name": "Charm", - "proto": "V0320_MOVE_CHARM_FAST", - "type": "Fairy", - "power": 16 - }, - "321": { - "name": "Giga Impact", - "proto": "V0321_MOVE_GIGA_IMPACT", - "type": "Normal", - "power": 150 - }, - "322": { - "name": "Frustration", - "proto": "V0322_MOVE_FRUSTRATION", - "type": "Normal", - "power": 10 - }, - "323": { - "name": "Return", - "proto": "V0323_MOVE_RETURN", - "type": "Normal", - "power": 130 - }, - "324": { - "name": "Synchronoise", - "proto": "V0324_MOVE_SYNCHRONOISE", - "type": "Psychic", - "power": 80 - }, - "325": { - "name": "Lock On", - "proto": "V0325_MOVE_LOCK_ON_FAST", - "type": "Normal", - "power": 1 - }, - "326": { - "name": "Thunder Fang", - "proto": "V0326_MOVE_THUNDER_FANG_FAST", - "type": "Electric", - "power": 8 - }, - "327": { - "name": "Ice Fang", - "proto": "V0327_MOVE_ICE_FANG_FAST", - "type": "Ice", - "power": 8 - }, - "328": { - "name": "Horn Drill" - }, - "329": { - "name": "Fissure" - }, - "330": { - "name": "Sacred Sword", - "proto": "V0330_MOVE_SACRED_SWORD", - "type": "Fighting", - "power": 60 - }, - "331": { - "name": "Flying Press", - "proto": "V0331_MOVE_FLYING_PRESS", - "type": "Fighting", - "power": 90 - }, - "332": { - "name": "Aura Sphere", - "proto": "V0332_MOVE_AURA_SPHERE", - "type": "Fighting", - "power": 100 - }, - "333": { - "name": "Payback", - "proto": "V0333_MOVE_PAYBACK", - "type": "Dark", - "power": 110 - }, - "334": { - "name": "Rock Wrecker", - "proto": "V0334_MOVE_ROCK_WRECKER", - "type": "Rock", - "power": 110 - }, - "335": { - "name": "Aeroblast", - "proto": "V0335_MOVE_AEROBLAST", - "type": "Flying", - "power": 170 - }, - "336": { - "name": "Techno Blast Normal", - "proto": "V0336_MOVE_TECHNO_BLAST_NORMAL", - "type": "Normal", - "power": 120 - }, - "337": { - "name": "Techno Blast Burn", - "proto": "V0337_MOVE_TECHNO_BLAST_BURN", - "type": "Fire", - "power": 120 - }, - "338": { - "name": "Techno Blast Chill", - "proto": "V0338_MOVE_TECHNO_BLAST_CHILL", - "type": "Ice", - "power": 120 - }, - "339": { - "name": "Techno Blast Water", - "proto": "V0339_MOVE_TECHNO_BLAST_WATER", - "type": "Water", - "power": 120 - }, - "340": { - "name": "Techno Blast Shock", - "proto": "V0340_MOVE_TECHNO_BLAST_SHOCK", - "type": "Electric", - "power": 120 - }, - "341": { - "name": "Fly", - "proto": "V0341_MOVE_FLY", - "type": "Flying", - "power": 80 - }, - "342": { - "name": "V Create", - "proto": "V0342_MOVE_V_CREATE", - "type": "Fire", - "power": 95 - }, - "343": { - "name": "Leaf Storm", - "proto": "V0343_MOVE_LEAF_STORM", - "type": "Grass", - "power": 130 - }, - "344": { - "name": "Tri Attack", - "proto": "V0344_MOVE_TRI_ATTACK", - "type": "Normal", - "power": 65 - }, - "345": { - "name": "Gust", - "proto": "V0345_MOVE_GUST_FAST", - "type": "Flying", - "power": 16 - }, - "346": { - "name": "Incinerate", - "proto": "V0346_MOVE_INCINERATE_FAST", - "type": "Fire", - "power": 15 - }, - "347": { - "name": "Dark Void" - }, - "348": { - "name": "Feather Dance", - "proto": "V0348_MOVE_FEATHER_DANCE", - "type": "Flying", - "power": 35 - }, - "349": { - "name": "Fiery Dance" - }, - "350": { - "name": "Fairy Wind" - } - }, - "throw_types": { - "10": "Nice", - "11": "Great", - "12": "Excellent" - }, - "quest_types": { - "0": { - "text": "Unknown quest type" - }, - "1": { - "text": "First catch of the day" - }, - "2": { - "text": "First pokéstop of the day" - }, - "3": { - "text": "Multi part" - }, - "4": { - "text": "Catch {0} pokémon" - }, - "5": { - "text": "Spin {0} pokéstop(s)" - }, - "6": { - "text": "Hatch {0} egg(s)" - }, - "7": { - "text": "Complete {0} gym battle(s)" - }, - "8": { - "text": "Complete {0} raid battle(s)" - }, - "9": { - "text": "Complete {0} quest(s)" - }, - "10": { - "text": "Transfer {0} pokémon" - }, - "11": { - "text": "Favorite {0} pokémon" - }, - "12": { - "text": "Autocomplete" - }, - "13": { - "text": "Catch {0} pokémon with berrie(s)" - }, - "14": { - "text": "Power up a pokémon {0} times" - }, - "15": { - "text": "Evolve {0} pokémon" - }, - "16": { - "text": "Land {0} throw(s)" - }, - "17": { - "text": "Walk your buddy to earn {0} candy" - }, - "18": { - "text": "Collect {0} badge(s)" - }, - "19": { - "text": "Become level {0}" - }, - "20": { - "text": "Join {0} raid(s)" - }, - "21": { - "text": "Complete {0} raid battle(s)" - }, - "22": { - "text": "Make {0} new friends" - }, - "23": { - "text": "Trade {0} pokémon" - }, - "24": { - "text": "Send {0} gift(s)" - }, - "25": { - "text": "Evolve {0} pokémon into" - }, - "27": { - "text": "Win {0} pvp battle(s)" - }, - "28": { - "text": "Take {0} Snapshot(s)" - }, - "29": { - "text": "Battle against {0} Team GO Rocket Grunt(s)" - }, - "30": { - "text": "Purify {0} pokémon" - }, - "31": { - "text": "Find Team Rocket {0} times" - }, - "32": { - "text": "First Grunt of the day" - }, - "33": { - "text": "Give your buddy {0} treat(s)" - }, - "34": { - "text": "Earn {0} Heart(s) with your Buddy" - }, - "35": { - "text": "Play with your Buddy {0} times" - }, - "36": { - "text": "Increase your Buddy Level {0} times" - }, - "37": { - "text": "Earn {0} Friendship points by Walking with your Buddy" - }, - "38": { - "text": "Earn {0} Souvenirs from your Buddy" - }, - "39": { - "text": "Use Incense {0} times" - }, - "40": { - "text": "QUEST_BUDDY_FIND_SOUVENIR" - }, - "41": { - "text": "QUEST_COLLECT_AS_REWARDS" - }, - "42": { - "text": "QUEST_WALK" - }, - "43": { - "text": "Mega-Evolve {0} Pokemon" - }, - "44": { - "text": "QUEST_GET_STARDUST" - }, - "45": { - "text": "QUEST_MINI_COLLECTION" - }, - "46": { - "text": "AR-Scan {0} pokéstop(s)" - }, - "50": { - "text": "QUEST_BUDDY_EVOLUTION_WALK" - }, - "51": { - "text": "QUEST_GBL_RANK" - }, - "53": { - "text": "QUEST_CHARGE_ATTACK" - }, - "54": { - "text": "QUEST_CHANGE_POKEMON_FORM" - }, - "55": { - "text": "QUEST_BATTLE_EVENT_NPC" - }, - "57": { - "text": "Take {0} snapshot(s) of wild pokémon" - } - }, - "grunt_types": { - "1": { - "type": "Blanche", - "grunt": "" - }, - "2": { - "type": "Candela", - "grunt": "" - }, - "3": { - "type": "Spark", - "grunt": "" - }, - "4": { - "type": "", - "grunt": "Male" - }, - "5": { - "type": "", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "143" - ], - "second": [ - "62", - "143", - "282" - ], - "third": [ - "130", - "149" - ] - } - }, - "6": { - "type": "Bug", - "grunt": "Female" - }, - "7": { - "type": "Bug", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "213", - "347", - "451" - ], - "second": [ - "49", - "127", - "212" - ], - "third": [ - "15", - "123", - "212" - ] - } - }, - "8": { - "type": "Ghost", - "grunt": "Female" - }, - "9": { - "type": "Ghost", - "grunt": "Male" - }, - "10": { - "type": "Dark", - "grunt": "Female", - "second_reward": "true", - "encounters": { - "first": [ - "198", - "261" - ], - "second": [ - "262", - "302" - ], - "third": [ - "275", - "332" - ] - } - }, - "11": { - "type": "Dark", - "grunt": "Male" - }, - "12": { - "type": "Dragon", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "147" - ], - "second": [ - "148" - ], - "third": [ - "130" - ] - } - }, - "13": { - "type": "Dragon", - "grunt": "Male" - }, - "14": { - "type": "Fairy", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "209" - ], - "second": [ - "209", - "210" - ], - "third": [ - "210" - ] - } - }, - "15": { - "type": "Fairy", - "grunt": "Male" - }, - "16": { - "type": "Fighting", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "66", - "296" - ], - "second": [ - "67" - ], - "third": [ - "106", - "107", - "297" - ] - } - }, - "17": { - "type": "Fighting", - "grunt": "Male" - }, - "18": { - "type": "Fire", - "grunt": "Female", - "second_reward": "true", - "encounters": { - "first": [ - "37", - "126", - "228" - ], - "second": [ - "38", - "126", - "229" - ], - "third": [ - "5", - "38", - "59" - ] - } - }, - "19": { - "type": "Fire", - "grunt": "Male" - }, - "20": { - "type": "Flying", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "41", - "396" - ], - "second": [ - "42", - "397" - ], - "third": [ - "130", - "149", - "169" - ] - } - }, - "21": { - "type": "Flying", - "grunt": "Male" - }, - "22": { - "type": "Grass", - "grunt": "Female" - }, - "23": { - "type": "Grass", - "grunt": "Male", - "second_reward": "true", - "encounters": { - "first": [ - "43", - "114", - "187" - ], - "second": [ - "44", - "114", - "188" - ], - "third": [ - "45", - "71", - "275" - ] - } - }, - "24": { - "type": "Ground", - "grunt": "Female" - }, - "25": { - "type": "Ground", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "50", - "220" - ], - "second": [ - "105", - "329" - ], - "third": [ - "330", - "472" - ] - } - }, - "26": { - "type": "Ice", - "grunt": "Female", - "second_reward": "true", - "encounters": { - "first": [ - "363", - "459" - ], - "second": [ - "91", - "220", - "364" - ], - "third": [ - "131", - "460" - ] - } - }, - "27": { - "type": "Ice", - "grunt": "Male" - }, - "28": { - "type": "Metal", - "grunt": "Female" - }, - "29": { - "type": "Metal", - "grunt": "Male" - }, - "30": { - "type": "Normal", - "grunt": "Female" - }, - "31": { - "type": "Normal", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "216" - ], - "second": [ - "20", - "233" - ], - "third": [ - "143", - "474" - ] - } - }, - "32": { - "type": "Poison", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "29", - "88", - "451" - ], - "second": [ - "030", - "033" - ], - "third": [ - "30", - "89", - "110" - ] - } - }, - "33": { - "type": "Poison", - "grunt": "Male" - }, - "34": { - "type": "Psychic", - "grunt": "Female" - }, - "35": { - "type": "Psychic", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "79", - "202" - ], - "second": [ - "64", - "96", - "281" - ], - "third": [ - "97", - "103", - "281" - ] - } - }, - "36": { - "type": "Rock", - "grunt": "Female" - }, - "37": { - "type": "Rock", - "grunt": "Male", - "second_reward": "true", - "encounters": { - "first": [ - "299", - "304" - ], - "second": [ - "246", - "247", - "305" - ], - "third": [ - "247", - "248" - ] - } - }, - "38": { - "type": "Water", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "60", - "116", - "363" - ], - "second": [ - "195", - "259" - ], - "third": [ - "62", - "186" - ] - } - }, - "39": { - "type": "Water", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "129" - ], - "second": [ - "129" - ], - "third": [ - "129" - ] - } - }, - "40": { - "type": "Player Team Leader", - "grunt": "" - }, - "41": { - "type": "Executive Cliff", - "grunt": "", - "second_reward": "false", - "encounters": { - "first": [ - "273" - ], - "second": [ - "62", - "99", - "297" - ], - "third": [ - "248", - "389" - ] - } - }, - "42": { - "type": "Executive Arlo", - "grunt": "", - "second_reward": "false", - "encounters": { - "first": [ - "48" - ], - "second": [ - "169", - "310" - ], - "third": [ - "45", - "212", - "462" - ] - } - }, - "43": { - "type": "Executive Sierra", - "grunt": "", - "second_reward": "false", - "encounters": { - "first": [ - "215" - ], - "second": [ - "181", - "210", - "472" - ], - "third": [ - "229", - "230", - "452" - ] - } - }, - "44": { - "type": "Giovanni or Decoy", - "grunt": "", - "second_reward": "false", - "encounters": { - "first": [ - "146" - ], - "second": [], - "third": [] - } - }, - "45": { - "type": "Decoy", - "grunt": "Male" - }, - "46": { - "type": "Decoy", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "069_00" - ], - "second": [ - "020_00", - "070_00" - ], - "third": [ - "020_00", - "143_00" - ] - } - }, - "47": { - "type": "Ghost", - "grunt": "Female" - }, - "48": { - "type": "Ghost", - "grunt": "Male", - "second_reward": "false", - "encounters": { - "first": [ - "200", - "353", - "355" - ], - "second": [ - "354", - "356" - ], - "third": [ - "302", - "354", - "477" - ] - } - }, - "49": { - "type": "Electric", - "grunt": "Female", - "second_reward": "false", - "encounters": { - "first": [ - "125", - "179", - "309" - ], - "second": [ - "125", - "180" - ], - "third": [ - "125", - "181" - ] - } - }, - "50": { - "type": "Electric", - "grunt": "Male" - }, - "500": { - "type": "LenTao9", - "grunt": "" - }, - "501": { - "type": "oneslapguy", - "grunt": "" - }, - "502": { - "type": "DieCurryWurst", - "grunt": "" - }, - "503": { - "type": "DieCurryWurst", - "grunt": "" - }, - "504": { - "type": "Juanevoli", - "grunt": "" - }, - "506": { - "type": "CashmereFeline", - "grunt": "" - }, - "507": { - "type": "enjoyryde", - "grunt": "" - }, - "509": { - "type": "Telli997", - "grunt": "" - }, - "510": { - "type": "malibuleo", - "grunt": "" - } - }, - "items": { - "1": { - "name": "Poke Ball", - "proto": "ITEM_POKE_BALL", - "type": "Pokeball", - "category": "Pokeball", - "min_trainer_level": 1 - }, - "2": { - "name": "Great Ball", - "proto": "ITEM_GREAT_BALL", - "type": "Pokeball", - "category": "Pokeball", - "min_trainer_level": 12 - }, - "3": { - "name": "Ultra Ball", - "proto": "ITEM_ULTRA_BALL", - "type": "Pokeball", - "category": "Pokeball", - "min_trainer_level": 20 - }, - "4": { - "name": "Master Ball", - "proto": "ITEM_MASTER_BALL", - "type": "Pokeball", - "category": "Pokeball" - }, - "5": { - "name": "Premier Ball", - "proto": "ITEM_PREMIER_BALL", - "type": "Pokeball", - "category": "Pokeball" - }, - "101": { - "name": "Potion", - "proto": "ITEM_POTION", - "type": "Potion", - "category": "Medicine", - "min_trainer_level": 5 - }, - "102": { - "name": "Super Potion", - "proto": "ITEM_SUPER_POTION", - "type": "Potion", - "category": "Medicine", - "min_trainer_level": 10 - }, - "103": { - "name": "Hyper Potion", - "proto": "ITEM_HYPER_POTION", - "type": "Potion", - "category": "Medicine", - "min_trainer_level": 15 - }, - "104": { - "name": "Max Potion", - "proto": "ITEM_MAX_POTION", - "type": "Potion", - "category": "Medicine", - "min_trainer_level": 25 - }, - "201": { - "name": "Revive", - "proto": "ITEM_REVIVE", - "type": "Revive", - "category": "Medicine", - "min_trainer_level": 5 - }, - "202": { - "name": "Max Revive", - "proto": "ITEM_MAX_REVIVE", - "type": "Revive", - "category": "Medicine", - "min_trainer_level": 30 - }, - "301": { - "name": "Lucky Egg", - "proto": "ITEM_LUCKY_EGG", - "type": "Xp Boost", - "category": "Xp Boost", - "min_trainer_level": 1 - }, - "401": { - "name": "Incense Ordinary", - "proto": "ITEM_INCENSE_ORDINARY", - "type": "Incense", - "category": "Incense", - "min_trainer_level": 1 - }, - "405": { - "name": "Incense Beluga Box", - "proto": "ITEM_INCENSE_BELUGA_BOX", - "type": "Incense", - "category": "Incense", - "min_trainer_level": 1 - }, - "501": { - "name": "Troy Disk", - "proto": "ITEM_TROY_DISK", - "type": "Disk", - "category": "Disk", - "min_trainer_level": 1 - }, - "502": { - "name": "Troy Disk Glacial", - "proto": "ITEM_TROY_DISK_GLACIAL", - "type": "Disk", - "category": "Disk", - "min_trainer_level": 1 - }, - "503": { - "name": "Troy Disk Mossy", - "proto": "ITEM_TROY_DISK_MOSSY", - "type": "Disk", - "category": "Disk", - "min_trainer_level": 1 - }, - "504": { - "name": "Troy Disk Magnetic", - "proto": "ITEM_TROY_DISK_MAGNETIC", - "type": "Disk", - "category": "Disk", - "min_trainer_level": 1 - }, - "505": { - "name": "Troy Disk Rainy", - "proto": "ITEM_TROY_DISK_RAINY", - "type": "Disk", - "category": "Disk", - "min_trainer_level": 1 - }, - "602": { - "name": "X Attack", - "proto": "ITEM_X_ATTACK", - "type": "Battle", - "category": "Boost" - }, - "603": { - "name": "X Defense", - "proto": "ITEM_X_DEFENSE", - "type": "Battle", - "category": "Boost" - }, - "604": { - "name": "X Miracle", - "proto": "ITEM_X_MIRACLE", - "type": "Battle", - "category": "Boost" - }, - "701": { - "name": "Razz Berry", - "proto": "ITEM_RAZZ_BERRY", - "type": "Food", - "category": "Food", - "min_trainer_level": 8 - }, - "702": { - "name": "Bluk Berry", - "proto": "ITEM_BLUK_BERRY", - "type": "Food", - "category": "Food" - }, - "703": { - "name": "Nanab Berry", - "proto": "ITEM_NANAB_BERRY", - "type": "Food", - "category": "Food", - "min_trainer_level": 4 - }, - "704": { - "name": "Wepar Berry", - "proto": "ITEM_WEPAR_BERRY", - "type": "Food", - "category": "Food" - }, - "705": { - "name": "Pinap Berry", - "proto": "ITEM_PINAP_BERRY", - "type": "Food", - "category": "Food", - "min_trainer_level": 18 - }, - "706": { - "name": "Golden Razz Berry", - "proto": "ITEM_GOLDEN_RAZZ_BERRY", - "type": "Food", - "category": "Food", - "min_trainer_level": 10 - }, - "708": { - "name": "Golden Pinap Berry", - "proto": "ITEM_GOLDEN_PINAP_BERRY", - "type": "Food", - "category": "Food", - "min_trainer_level": 20 - }, - "709": { - "name": "Poffin", - "proto": "ITEM_POFFIN", - "type": "Food", - "category": "Buddy Exclusive Food" - }, - "801": { - "name": "Special Camera", - "proto": "ITEM_SPECIAL_CAMERA", - "type": "Camera", - "category": "Camera" - }, - "802": { - "name": "Sticker Inventory", - "proto": "ITEM_STICKER_INVENTORY", - "type": "Sticker Inventory", - "category": "Sticker" - }, - "901": { - "name": "Incubator Basic Unlimited", - "proto": "ITEM_INCUBATOR_BASIC_UNLIMITED", - "type": "Incubator", - "category": "Incubator" - }, - "902": { - "name": "Incubator Basic", - "proto": "ITEM_INCUBATOR_BASIC", - "type": "Incubator", - "category": "Incubator", - "min_trainer_level": 1 - }, - "903": { - "name": "Incubator Super", - "proto": "ITEM_INCUBATOR_SUPER", - "type": "Incubator", - "category": "Incubator", - "min_trainer_level": 1 - }, - "1001": { - "name": "Pokemon Storage Upgrade", - "proto": "ITEM_POKEMON_STORAGE_UPGRADE", - "type": "Inventory Upgrade", - "category": "Inventory Upgrade" - }, - "1002": { - "name": "Item Storage Upgrade", - "proto": "ITEM_ITEM_STORAGE_UPGRADE", - "type": "Inventory Upgrade", - "category": "Inventory Upgrade" - }, - "1101": { - "name": "Sun Stone", - "proto": "ITEM_SUN_STONE", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1102": { - "name": "Kings Rock", - "proto": "ITEM_KINGS_ROCK", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1103": { - "name": "Metal Coat", - "proto": "ITEM_METAL_COAT", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1104": { - "name": "Dragon Scale", - "proto": "ITEM_DRAGON_SCALE", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1105": { - "name": "Up Grade", - "proto": "ITEM_UP_GRADE", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1106": { - "name": "Gen4 Evolution Stone", - "proto": "ITEM_GEN4_EVOLUTION_STONE", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1107": { - "name": "Gen5 Evolution Stone", - "proto": "ITEM_GEN5_EVOLUTION_STONE", - "type": "Evolution Requirement", - "category": "Evolution Requirement", - "min_trainer_level": 10 - }, - "1201": { - "name": "Move Reroll Fast Attack", - "proto": "ITEM_MOVE_REROLL_FAST_ATTACK", - "type": "Move Reroll", - "category": "Move Reroll", - "min_trainer_level": 15 - }, - "1202": { - "name": "Move Reroll Special Attack", - "proto": "ITEM_MOVE_REROLL_SPECIAL_ATTACK", - "type": "Move Reroll", - "category": "Move Reroll", - "min_trainer_level": 25 - }, - "1203": { - "name": "Move Reroll Elite Fast Attack", - "proto": "ITEM_MOVE_REROLL_ELITE_FAST_ATTACK", - "type": "Move Reroll", - "category": "Move Reroll", - "min_trainer_level": 1 - }, - "1204": { - "name": "Move Reroll Elite Special Attack", - "proto": "ITEM_MOVE_REROLL_ELITE_SPECIAL_ATTACK", - "type": "Move Reroll", - "category": "Move Reroll", - "min_trainer_level": 1 - }, - "1301": { - "name": "Rare Candy", - "proto": "ITEM_RARE_CANDY", - "type": "Candy", - "category": "Candy", - "min_trainer_level": 5 - }, - "1302": { - "name": "Xl Rare Candy", - "proto": "ITEM_XL_RARE_CANDY", - "type": "Candy", - "category": "Candy", - "min_trainer_level": 40 - }, - "1401": { - "name": "Free Raid Ticket", - "proto": "ITEM_FREE_RAID_TICKET", - "type": "Raid Ticket", - "category": "Raid Ticket" - }, - "1402": { - "name": "Paid Raid Ticket", - "proto": "ITEM_PAID_RAID_TICKET", - "type": "Raid Ticket", - "category": "Raid Ticket", - "min_trainer_level": 1 - }, - "1403": { - "name": "Legendary Raid Ticket", - "proto": "ITEM_LEGENDARY_RAID_TICKET", - "type": "Raid Ticket", - "category": "Raid Ticket" - }, - "1404": { - "name": "Star Piece", - "proto": "ITEM_STAR_PIECE", - "type": "Stardust Boost", - "category": "Stardust Boost", - "min_trainer_level": 1 - }, - "1405": { - "name": "Friend Gift Box", - "proto": "ITEM_FRIEND_GIFT_BOX", - "type": "Friend Gift Box", - "category": "Friend Gift Box" - }, - "1406": { - "name": "Team Change", - "proto": "ITEM_TEAM_CHANGE", - "type": "Team Change", - "category": "Team Change" - }, - "1408": { - "name": "Remote Raid Ticket", - "proto": "ITEM_REMOTE_RAID_TICKET", - "type": "Raid Ticket", - "category": "Raid Ticket", - "min_trainer_level": 5 - }, - "1501": { - "name": "Leader Map Fragment", - "proto": "ITEM_LEADER_MAP_FRAGMENT", - "type": "Incident Ticket", - "category": "Incident Ticket", - "min_trainer_level": 8 - }, - "1502": { - "name": "Leader Map", - "proto": "ITEM_LEADER_MAP", - "type": "Incident Ticket", - "category": "Incident Ticket", - "min_trainer_level": 8 - }, - "1503": { - "name": "Giovanni Map", - "proto": "ITEM_GIOVANNI_MAP", - "type": "Incident Ticket", - "category": "Incident Ticket", - "min_trainer_level": 8 - }, - "1600": { - "name": "Global Event Ticket", - "proto": "ITEM_GLOBAL_EVENT_TICKET", - "type": "Global Event Ticket", - "category": "Global Event Ticket" - }, - "1601": { - "name": "Event Ticket Pink", - "proto": "ITEM_EVENT_TICKET_PINK", - "type": "Global Event Ticket", - "category": "Global Event Ticket" - } - }, - "quest_reward_types": { - "0": { - "prototext": "UNSET", - "text": "Unset" - }, - "1": { - "prototext": "EXPERIENCE", - "text": "Experience" - }, - "2": { - "prototext": "ITEM", - "text": "Item" - }, - "3": { - "prototext": "STARDUST", - "text": "Stardust" - }, - "4": { - "prototext": "CANDY", - "text": "Candy" - }, - "5": { - "prototext": "AVATAR_CLOTHING", - "text": "Avatar Clothing" - }, - "6": { - "prototext": "QUEST", - "text": "Quest" - }, - "7": { - "prototext": "POKEMON_ENCOUNTER", - "text": "Pokemon Encounter" - }, - "8": { - "prototext": "POKECOIN", - "text": "Pokecoin" - }, - "9": { - "prototext": "XL_CANDY", - "text": "XL Candy" - }, - "10": { - "prototext": "LEVEL_CAP", - "text": "Level Cap" - }, - "11": { - "prototext": "STICKER", - "text": "Sticker" - }, - "12": { - "prototext": "MEGA_RESOURCE", - "text": "Mega Resource" - } - }, - "quest_conditions": { - "0": { - "prototext": "UNSET", - "text": "Unset" - }, - "1": { - "prototext": "WITH_POKEMON_TYPE", - "text": "With Pokemon Type" - }, - "2": { - "prototext": "WITH_POKEMON_CATEGORY", - "text": "With Pokemon Category" - }, - "3": { - "prototext": "WITH_WEATHER_BOOST", - "text": "With Weather Boost" - }, - "4": { - "prototext": "WITH_DAILY_CAPTURE_BONUS", - "text": "With Daily Capture Bonus" - }, - "5": { - "prototext": "WITH_DAILY_SPIN_BONUS", - "text": "With Daily Spin Bonus" - }, - "6": { - "prototext": "WITH_WIN_RAID_STATUS", - "text": "With Win Raid Status" - }, - "7": { - "prototext": "WITH_RAID_LEVEL", - "text": "With Raid Level" - }, - "8": { - "prototext": "WITH_THROW_TYPE", - "text": "With Throw Type" - }, - "9": { - "prototext": "WITH_WIN_GYM_BATTLE_STATUS", - "text": "With Win Gym Battle Status" - }, - "10": { - "prototext": "WITH_SUPER_EFFECTIVE_CHARGE", - "text": "With Super Effective Charge" - }, - "11": { - "prototext": "WITH_ITEM", - "text": "With Item" - }, - "12": { - "prototext": "WITH_UNIQUE_POKESTOP", - "text": "With Unique Pokestop" - }, - "13": { - "prototext": "WITH_QUEST_CONTEXT", - "text": "With Quest Context" - }, - "14": { - "prototext": "WITH_THROW_TYPE_IN_A_ROW", - "text": "With Throw Type In A Row" - }, - "15": { - "prototext": "WITH_CURVE_BALL", - "text": "With Curve Ball" - }, - "16": { - "prototext": "WITH_BADGE_TYPE", - "text": "With Badge Type" - }, - "17": { - "prototext": "WITH_PLAYER_LEVEL", - "text": "With Player Level" - }, - "18": { - "prototext": "WITH_WIN_BATTLE_STATUS", - "text": "With Win Battle Status" - }, - "19": { - "prototext": "WITH_NEW_FRIEND", - "text": "With New Friend" - }, - "20": { - "prototext": "WITH_DAYS_IN_A_ROW", - "text": "With Days In A Row" - }, - "21": { - "prototext": "WITH_UNIQUE_POKEMON", - "text": "With Unique Pokemon" - }, - "22": { - "prototext": "WITH_NPC_COMBAT", - "text": "With NPC Combat" - }, - "23": { - "prototext": "WITH_PVP_COMBAT", - "text": "With PVP Combat" - }, - "24": { - "prototext": "WITH_LOCATION", - "text": "With Location" - }, - "25": { - "prototext": "WITH_DISTANCE", - "text": "With Distance" - }, - "26": { - "prototext": "WITH_POKEMON_ALIGNMENT", - "text": "With Pokemon Alignment" - }, - "27": { - "prototext": "WITH_INVASION_CHARACTER", - "text": "With Invasion Character" - }, - "28": { - "prototext": "WITH_BUDDY", - "text": "With Buddy" - }, - "29": { - "prototext": "WITH_BUDDY_INTERESTING_POI", - "text": "With Buddy Interesting POI" - }, - "30": { - "prototext": "WITH_DAILY_BUDDY_AFFECTION", - "text": "With Daily Buddy Affection" - }, - "31": { - "prototext": "WITH_POKEMON_LEVEL", - "text": "With Pokemon Level" - }, - "32": { - "prototext": "WITH_SINGLE_DAY", - "text": "With Single Day" - }, - "33": { - "prototext": "WITH_UNIQUE_POKEMON_TEAM", - "text": "With Unique Pokemon Team" - }, - "34": { - "prototext": "WITH_MAX_CP", - "text": "With Max CP" - }, - "35": { - "prototext": "WITH_LUCKY_POKEMON", - "text": "With Lucky Pokemon" - }, - "36": { - "prototext": "WITH_LEGENDARY_POKEMON", - "text": "With Legendary Pokemon" - }, - "37": { - "prototext": "WITH_TEMP_EVO_POKEMON", - "text": "With Temp Evo Pokemon" - }, - "38": { - "prototext": "WITH_GBL_RANK", - "text": "With GBL Rank" - }, - "39": { - "prototext": "WITH_CATCHES_IN_A_ROW", - "text": "With Catches In A Row" - }, - "40": { - "prototext": "WITH_ENCOUNTER_TYPE", - "text": "With Encounter Type" - }, - "41": { - "prototext": "WITH_COMBAT_TYPE", - "text": "With Combat Type" - }, - "42": { - "prototext": "WITH_GEOTARGETED_POI", - "text": "With Geotargeted POI" - }, - "43": { - "prototext": "WITH_ITEM_TYPE", - "text": "With Item Type" - } - } -}